@fluid-topics/ft-floating-menu 1.1.21 → 1.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,35 @@
1
- !function(t,o,e,r,i,n){const a=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorContent),l={color:a,backgroundColor:o.FtCssVariableFactory.extend("--ft-ripple-background-color","",a),opacityContentOnSurfacePressed:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:o.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},c=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorPrimary),s=c,f=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",c),p=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorSecondary),d=p,h=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",p),y=e.css`
1
+ !function(t,o,e,r,i,n){const a={zIndex:o.FtCssVariableFactory.create("--ft-floating-menu-z-index","","NUMBER","8"),maxWidth:o.FtCssVariableFactory.create("--ft-floating-menu-max-width","","SIZE","300px"),maxHeight:o.FtCssVariableFactory.create("--ft-floating-menu-max-height","","SIZE","500px"),textColor:o.FtCssVariableFactory.extend("--ft-floating-menu-text-color","",o.designSystemVariables.colorOnSurfaceHigh),colorSurface:o.FtCssVariableFactory.external(o.designSystemVariables.colorSurface,"Design system"),menuElevation:o.FtCssVariableFactory.external(o.designSystemVariables.elevation02,"Design system"),borderRadiusS:o.FtCssVariableFactory.external(o.designSystemVariables.borderRadiusS,"Design system")},l=e.css`
2
+ .ft-floating-menu {
3
+ color: ${a.textColor};
4
+ display: inline-block;
5
+ }
6
+
7
+ .ft-floating-menu--wrapper {
8
+ position: absolute;
9
+ visibility: hidden;
10
+ }
11
+
12
+ .ft-floating-menu--wrapper.ft-floating-menu--wrapper-positioned {
13
+ visibility: visible;
14
+ }
15
+
16
+ .ft-floating-menu--options {
17
+ display: none;
18
+ position: relative;
19
+ overflow: auto;
20
+ max-width: ${a.maxWidth};
21
+ max-height: ${a.maxHeight};
22
+ box-shadow: ${a.menuElevation};
23
+ background-color: ${a.colorSurface};
24
+ border-radius: ${a.borderRadiusS};
25
+ color: ${a.textColor};
26
+ z-index: ${a.zIndex};
27
+ }
28
+
29
+ .ft-floating-menu--open .ft-floating-menu--options {
30
+ display: block;
31
+ }
32
+ `,c=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorContent),s={color:c,backgroundColor:o.FtCssVariableFactory.extend("--ft-ripple-background-color","",c),opacityContentOnSurfacePressed:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:o.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},f=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorPrimary),p=f,d=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",f),h=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorSecondary),y=h,g=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",h),u=e.css`
2
33
  :host {
3
34
  display: contents;
4
35
  }
@@ -11,7 +42,7 @@
11
42
 
12
43
  .ft-ripple:not(.ft-ripple--unbounded) {
13
44
  overflow: hidden;
14
- border-radius: ${l.borderRadius};
45
+ border-radius: ${s.borderRadius};
15
46
  }
16
47
 
17
48
  .ft-ripple .ft-ripple--background,
@@ -45,27 +76,27 @@
45
76
  }
46
77
 
47
78
  .ft-ripple .ft-ripple--background {
48
- background-color: ${l.backgroundColor};
79
+ background-color: ${s.backgroundColor};
49
80
  }
50
81
 
51
82
  .ft-ripple .ft-ripple--effect {
52
- background-color: ${l.color};
83
+ background-color: ${s.color};
53
84
  }
54
85
 
55
86
  .ft-ripple.ft-ripple--secondary .ft-ripple--background {
56
- background-color: ${h};
87
+ background-color: ${g};
57
88
  }
58
89
 
59
90
  .ft-ripple.ft-ripple--secondary .ft-ripple--effect {
60
- background-color: ${d};
91
+ background-color: ${y};
61
92
  }
62
93
 
63
94
  .ft-ripple.ft-ripple--primary .ft-ripple--background {
64
- background-color: ${f};
95
+ background-color: ${d};
65
96
  }
66
97
 
67
98
  .ft-ripple.ft-ripple--primary .ft-ripple--effect {
68
- background-color: ${s};
99
+ background-color: ${p};
69
100
  }
70
101
 
71
102
  .ft-ripple .ft-ripple--background {
@@ -95,117 +126,117 @@
95
126
  }
96
127
 
97
128
  .ft-ripple.ft-ripple--hovered .ft-ripple--background {
98
- opacity: ${l.opacityContentOnSurfaceHover};
129
+ opacity: ${s.opacityContentOnSurfaceHover};
99
130
  }
100
131
 
101
132
  .ft-ripple.ft-ripple--selected .ft-ripple--background {
102
- opacity: ${l.opacityContentOnSurfaceSelected};
133
+ opacity: ${s.opacityContentOnSurfaceSelected};
103
134
  }
104
135
 
105
136
  .ft-ripple.ft-ripple--focused .ft-ripple--background {
106
- opacity: ${l.opacityContentOnSurfaceFocused};
137
+ opacity: ${s.opacityContentOnSurfaceFocused};
107
138
  }
108
139
 
109
140
  .ft-ripple.ft-ripple--pressed .ft-ripple--effect {
110
- opacity: ${l.opacityContentOnSurfacePressed};
141
+ opacity: ${s.opacityContentOnSurfacePressed};
111
142
  transform: translate(-50%, -50%) scale(1);
112
143
  }
113
- `,g=t=>"string"==typeof t?e.unsafeCSS(t):t;class u{static create(t,o,r,i){const n=t=>g(null!=t?t:i),a=e.css`var(${g(t)}, ${n(i)})`;return a.name=t,a.description=o,a.category=r,a.defaultValue=i,a.defaultCssValue=n,a.get=o=>e.css`var(${g(t)}, ${n(o)})`,a.breadcrumb=()=>[],a.lastResortDefaultValue=()=>i,a}static extend(t,o,r,i){const n=t=>r.get(null!=t?t:i),a=e.css`var(${g(t)}, ${n(i)})`;return a.name=t,a.description=o,a.category=r.category,a.fallbackVariable=r,a.defaultValue=i,a.defaultCssValue=n,a.get=o=>e.css`var(${g(t)}, ${n(o)})`,a.breadcrumb=()=>[r.name,...r.breadcrumb()],a.lastResortDefaultValue=()=>null!=i?i:r.lastResortDefaultValue(),a}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):g(null!=o?o:t.lastResortDefaultValue()),i=e.css`var(${g(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(${g(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","#ee8d17"),colorOrange10:u.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:u.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:u.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:u.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:u.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:u.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:u.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:u.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:u.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:u.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:u.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:u.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:u.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:u.create("--ft-color-orange-700","","COLOR","#140c02"),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")},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","2rem"),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","600"),lineHeight:u.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:u.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),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","600"),lineHeight:u.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:u.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),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-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")}},x={backgroundActionPrimary:u.extend("--ft-background-action-primary","Used as backgorund of primary action components.",b.colorBrand0),backgroundErrorPrimary:u.extend("--ft-background-error-primary","Used as background of error components.",b.colorRed0),backgroundErrorSubtle:u.extend("--ft-background-error-subtle","Used as background of subtle error components.",b.colorRed10),backgroundInfoPrimary:u.extend("--ft-background-info-primary","Used as background of information components.",b.colorCyan200),backgroundInfoSubtle:u.extend("--ft-background-info-subtle","Used as background of subtle information components.",b.colorCyan10),backgroundWarningPrimary:u.extend("--ft-background-warning-primary","Used as background of warning components.",b.colorOrange300),backgroundWarningSubtle:u.extend("--ft-background-warning-subtle","Used as background of subtle information components.",b.colorOrange10),backgroundSuccessPrimary:u.extend("--ft-background-success-primary","Used as background of success components.",b.colorGreen200),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.colorOrange300),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.colorRed0),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),contentSuccessIconOnly:u.extend("--ft-content-success-icon-only","Used on success status icons alone",b.colorGreen0),contentSuccessPrimary:u.extend("--ft-content-success-primary","Used on label of success messages on light surface.",b.colorGreen200),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 warning components.",b.colorOrange30),borderSuccessPrimary:u.extend("--ft-border-success-primary","Used as border for success components.",b.colorGreen30),borderErrorPrimary:u.extend("--ft-border-error-primary","Used as border for error components.",b.colorRed30),borderInfoPrimary:u.extend("--ft-border-info-primary","Used as border for information components.",b.colorCyan30),borderGlobalSubtle:u.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",b.colorGray30),borderGlobalPrimary:u.extend("--ft-border-global-primary","Used as border for element like input.",b.colorGray50),borderInputPrimary:u.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",b.colorGray80)},O={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),primaryStateLayerOpacityHover:u.extend("--ft-button-primary-state-layer-opacity-hover","",b.opacity16),primaryStateLayerOpacityFocus:u.extend("--ft-button-primary-state-layer-opacity-focus","",b.opacity16),primaryStateLayerOpacityActive:u.extend("--ft-button-primary-state-layer-opacity-active","",b.opacity24),primaryComponentOpacityDisabled:u.extend("--ft-button-primary-component-opacity-disabled","",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),tertiaryStateLayerOpacityHover:u.extend("--ft-button-tertiary-state-layer-opacity-hover","",b.opacity8),tertiaryStateLayerOpacityFocus:u.extend("--ft-button-tertiary-state-layer-opacity-focus","",b.opacity8),tertiaryStateLayerOpacityActive:u.extend("--ft-button-tertiary-state-layer-opacity-active","",b.opacity16),tertiaryComponentOpacityDisabled:u.extend("--ft-button-tertiary-component-opacity-disabled","",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),secondaryStateLayerOpacityHover:u.extend("--ft-button-secondary-state-layer-opacity-hover","",b.opacity8),secondaryStateLayerOpacityFocus:u.extend("--ft-button-secondary-state-layer-opacity-focus","",b.opacity8),secondaryStateLayerOpacityActive:u.extend("--ft-button-secondary-state-layer-opacity-active","",b.opacity16),secondaryComponentOpacityDisabled:u.extend("--ft-button-secondary-component-opacity-disabled","",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),neutralStateLayerOpacityHover:u.extend("--ft-button-neutral-state-layer-opacity-hover","",b.opacity8),neutralStateLayerOpacityFocus:u.extend("--ft-button-neutral-state-layer-opacity-focus","",b.opacity8),neutralStateLayerOpacityActive:u.extend("--ft-button-neutral-state-layer-opacity-active","",b.opacity16),neutralComponentOpacityDisabled:u.extend("--ft-button-neutral-component-opacity-disabled","",b.opacity40)};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-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-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-switch-off-state-layer-opacity-hover","",b.opacity8),u.extend("--ft-switch-off-state-layer-opacity-focus","",b.opacity8),u.extend("--ft-switch-off-state-layer-opacity-active","",b.opacity16),u.extend("--ft-switch-off-component-opacity-disabled","",b.opacity40),u.extend("--ft-switch-off-color","",x.contentGlobalSubtle),u.extend("--ft-switch-off-state-layer-color","",x.contentGlobalSubtle),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-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-border-color","",x.borderInfoPrimary),u.extend("--ft-chip-success-background-color","",x.backgroundSuccessSubtle),u.extend("--ft-chip-success-color","",x.contentSuccessPrimary),u.extend("--ft-chip-success-border-color","",x.borderSuccessPrimary),u.extend("--ft-chip-warning-background-color","",x.backgroundWarningSubtle),u.extend("--ft-chip-warning-color","",x.contentWarningPrimary),u.extend("--ft-chip-warning-border-color","",x.borderWarningPrimary),u.extend("--ft-chip-error-background-color","",x.backgroundErrorSubtle),u.extend("--ft-chip-error-color","",x.contentErrorPrimary),u.extend("--ft-chip-error-border-color","",x.borderErrorPrimary),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.borderInfoPrimary),u.extend("--ft-notice-info-color","",x.contentInfoPrimary),u.extend("--ft-notice-warning-background-color","",x.backgroundWarningSubtle),u.extend("--ft-notice-warning-border-color","",x.borderWarningPrimary),u.extend("--ft-notice-warning-color","",x.contentWarningPrimary),u.extend("--ft-checkbox-label-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-color","",x.contentGlobalOnColor),u.extend("--ft-checkbox-checked-state-layer-opacity-hover","",b.opacity16),u.extend("--ft-checkbox-checked-state-layer-opacity-focus","",b.opacity16),u.extend("--ft-checkbox-checked-state-layer-opacity-active","",b.opacity24),u.extend("--ft-checkbox-checked-component-opacity-disabled","",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-state-layer-opacity-hover","",b.opacity16),u.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",b.opacity16),u.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",b.opacity24),u.extend("--ft-checkbox-unchecked-component-opacity-disabled","",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-state-layer-opacity-hover","",b.opacity16),u.extend("--ft-toggle-off-state-layer-opacity-focus","",b.opacity16),u.extend("--ft-toggle-off-state-layer-opacity-active","",b.opacity24),u.extend("--ft-toggle-off-component-opacity-disabled","",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-state-layer-opacity-hover","",b.opacity16),u.extend("--ft-toggle-on-state-layer-opacity-focus","",b.opacity16),u.extend("--ft-toggle-on-state-layer-opacity-active","",b.opacity24),u.extend("--ft-toggle-on-component-opacity-disabled","",b.opacity40),u.extend("--ft-toggle-on-background-color","",x.contentActionPrimary),u.extend("--ft-toggle-on-icon-color","",x.contentActionPrimary),u.extend("--ft-toggle-on-state-layer-color","",x.contentActionPrimary),u.extend("--ft-toggle-label-color","",x.contentGlobalPrimary),u.extend("--ft-toggle-focus-focus-ring-color","",x.borderActionFocusRing),u.extend("--ft-toggle-gap","",b.spacing3),u.extend("--ft-radio-label-color","",x.contentGlobalPrimary),u.extend("--ft-radio-selected-color","",x.contentActionPrimary),u.extend("--ft-radio-selected-state-layer-color","",x.contentActionPrimary),u.extend("--ft-radio-selected-state-layer-opacity-hover","",b.opacity16),u.extend("--ft-radio-selected-state-layer-opacity-focus","",b.opacity16),u.extend("--ft-radio-selected-state-layer-opacity-active","",b.opacity24),u.extend("--ft-radio-selected-component-opacity-disabled","",b.opacity40),u.extend("--ft-radio-unselected-state-layer-color","",b.colorGray80),u.extend("--ft-radio-unselected-state-layer-opacity-hover","",b.opacity16),u.extend("--ft-radio-unselected-state-layer-opacity-focus","",b.opacity16),u.extend("--ft-radio-unselected-state-layer-opacity-active","",b.opacity24),u.extend("--ft-radio-unselected-component-opacity-disabled","",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-border-color","",x.borderInfoPrimary),u.extend("--ft-notification-success-background-color","",x.backgroundSuccessSubtle),u.extend("--ft-notification-success-color","",x.contentSuccessPrimary),u.extend("--ft-notification-success-border-color","",x.borderSuccessPrimary),u.extend("--ft-notification-warning-background-color","",x.backgroundWarningSubtle),u.extend("--ft-notification-warning-color","",x.contentWarningPrimary),u.extend("--ft-notification-warning-border-color","",x.borderWarningPrimary),u.extend("--ft-notification-error-background-color","",x.backgroundErrorSubtle),u.extend("--ft-notification-error-color","",x.contentErrorPrimary),u.extend("--ft-notification-error-border-color","",x.borderErrorPrimary),u.extend("--ft-notification-border-radius","",b.borderRadiusPill),u.create("--ft-notification-border-width","","SIZE","1px"),u.extend("--ft-notification-gap-leading","",b.spacing2),u.extend("--ft-notification-gap-trailing","",b.spacing8);const v=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),N=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),S={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")},w=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",v),$=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",S.fontSize,"20px"),C=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",S.fontWeight,"normal"),I=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",S.letterSpacing,"0.15px"),R=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",S.lineHeight,"1.2"),k=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",S.textTransform,"inherit"),U=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",v),W=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",S.fontSize,"14px"),E=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",S.fontWeight,"normal"),L=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",S.letterSpacing,"0.105px"),K=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",S.lineHeight,"1.7"),Z=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",S.textTransform,"inherit"),z=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",N),B=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",S.fontSize,"16px"),F=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",S.fontWeight,"600"),D=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",S.letterSpacing,"0.144px"),A=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",S.lineHeight,"1.5"),H=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",S.textTransform,"inherit"),G=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",N),P=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",S.fontSize,"14px"),j=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",S.fontWeight,"normal"),M=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",S.letterSpacing,"0.098px"),T=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",S.lineHeight,"1.7"),_=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",S.textTransform,"inherit"),Y=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",N),V=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",S.fontSize,"16px"),X=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",S.fontWeight,"normal"),q=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",S.letterSpacing,"0.496px"),J=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",S.lineHeight,"1.5"),Q=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",S.textTransform,"inherit"),tt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",N),ot=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",S.fontSize,"14px"),et=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",S.fontWeight,"normal"),rt=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",S.letterSpacing,"0.252px"),it=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",S.lineHeight,"1.4"),nt=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",S.textTransform,"inherit"),at=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",N),lt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",S.fontSize,"12px"),ct=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",S.fontWeight,"normal"),st=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",S.letterSpacing,"0.396px"),ft=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",S.lineHeight,"1.33"),pt=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",S.textTransform,"inherit"),dt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",N),ht=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",S.fontSize,"10px"),yt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",S.fontWeight,"normal"),gt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",S.letterSpacing,"0.33px"),ut=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",S.lineHeight,"1.6"),bt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",S.textTransform,"inherit"),mt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",N),xt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",S.fontSize,"10px"),Ot=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",S.fontWeight,"normal"),vt=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",S.letterSpacing,"1.5px"),Nt=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",S.lineHeight,"1.6"),St=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",S.textTransform,"uppercase"),wt={fontFamily:o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",N),fontSize:o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",S.fontSize,"14px"),fontWeight:o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",S.fontWeight,"600"),letterSpacing:o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",S.letterSpacing,"1.246px"),lineHeight:o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",S.lineHeight,"1.15"),textTransform:o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",S.textTransform,"uppercase")},$t=e.css`
144
+ `,b=t=>"string"==typeof t?e.unsafeCSS(t):t;class m{static create(t,o,r,i){const n=t=>b(null!=t?t:i),a=e.css`var(${b(t)}, ${n(i)})`;return a.name=t,a.description=o,a.category=r,a.defaultValue=i,a.defaultCssValue=n,a.get=o=>e.css`var(${b(t)}, ${n(o)})`,a.breadcrumb=()=>[],a.lastResortDefaultValue=()=>i,a}static extend(t,o,r,i){const n=t=>r.get(null!=t?t:i),a=e.css`var(${b(t)}, ${n(i)})`;return a.name=t,a.description=o,a.category=r.category,a.fallbackVariable=r,a.defaultValue=i,a.defaultCssValue=n,a.get=o=>e.css`var(${b(t)}, ${n(o)})`,a.breadcrumb=()=>[r.name,...r.breadcrumb()],a.lastResortDefaultValue=()=>null!=i?i:r.lastResortDefaultValue(),a}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):b(null!=o?o:t.lastResortDefaultValue()),i=e.css`var(${b(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(${b(t.name)}, ${r(o)})`,i.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],i.lastResortDefaultValue=()=>t.lastResortDefaultValue(),i}}const x={colorWhite:m.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:m.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:m.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:m.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:m.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:m.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:m.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:m.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:m.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:m.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:m.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:m.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:m.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:m.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:m.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:m.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:m.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:m.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:m.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:m.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:m.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:m.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:m.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:m.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:m.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:m.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:m.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:m.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:m.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:m.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:m.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:m.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:m.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:m.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:m.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:m.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:m.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:m.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:m.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:m.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:m.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:m.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:m.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:m.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:m.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:m.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:m.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:m.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:m.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:m.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:m.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:m.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:m.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:m.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:m.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:m.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:m.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:m.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:m.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:m.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:m.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:m.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:m.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:m.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:m.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:m.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:m.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:m.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:m.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:m.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:m.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:m.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:m.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:m.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:m.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:m.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:m.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:m.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:m.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:m.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:m.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:m.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:m.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:m.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:m.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:m.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:m.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:m.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:m.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:m.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:m.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:m.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:m.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:m.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:m.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:m.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:m.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:m.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:m.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:m.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:m.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:m.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:m.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:m.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:m.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:m.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:m.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:m.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:m.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:m.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:m.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:m.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:m.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:m.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:m.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:m.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:m.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:m.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:m.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:m.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:m.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:m.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:m.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:m.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:m.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:m.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:m.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:m.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:m.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:m.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:m.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:m.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:m.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:m.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:m.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:m.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:m.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:m.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:m.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:m.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:m.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:m.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:m.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:m.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:m.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:m.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:m.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:m.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:m.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:m.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:m.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:m.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:m.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:m.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:m.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:m.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:m.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:m.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:m.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:m.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:m.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:m.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:m.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:m.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:m.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:m.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:m.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:m.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:m.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:m.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:m.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:m.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:m.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:m.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:m.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:m.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:m.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:m.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:m.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:m.create("--ft-icon-size-6","","SIZE","48px"),opacity0:m.create("--ft-opacity-0","","NUMBER","0"),opacity8:m.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:m.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:m.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:m.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:m.create("--ft-opacity-80","","NUMBER","0.8")},O={display:{fontFamily:m.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:m.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:m.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:m.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:m.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:m.create("--ft-typography-title-1-fontSize","","SIZE","2rem"),letterSpacing:m.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:m.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:m.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-title-2-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:m.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),letterSpacing:m.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:m.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:m.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-title-3-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:m.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),letterSpacing:m.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:m.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:m.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:m.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:m.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:m.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:m.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:m.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:m.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:m.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:m.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:m.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:m.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:m.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:m.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:m.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:m.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:m.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:m.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:m.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:m.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:m.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:m.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:m.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:m.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:m.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-semibold":{fontFamily:m.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:m.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:m.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:m.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:m.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:m.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:m.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:m.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:m.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:m.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:m.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:m.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:m.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:m.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:m.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:m.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:m.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:m.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:m.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:m.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:m.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:m.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:m.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:m.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:m.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:m.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:m.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:m.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:m.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:m.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:m.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:m.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:m.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:m.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:m.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:m.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:m.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:m.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:m.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:m.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:m.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:m.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:m.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:m.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:m.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:m.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:m.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:m.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:m.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:m.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:m.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:m.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:m.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:m.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:m.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:m.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:m.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:m.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:m.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:m.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:m.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:m.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:m.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:m.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:m.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:m.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:m.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:m.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:m.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:m.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:m.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:m.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:m.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:m.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:m.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:m.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:m.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")}},v={backgroundActionPrimary:m.extend("--ft-background-action-primary","Used as backgorund of primary action components.",x.colorBrand0),backgroundErrorPrimary:m.extend("--ft-background-error-primary","Used as background of error components.",x.colorRed0),backgroundErrorSubtle:m.extend("--ft-background-error-subtle","Used as background of subtle error components.",x.colorRed10),backgroundInfoPrimary:m.extend("--ft-background-info-primary","Used as background of information components.",x.colorCyan200),backgroundInfoSubtle:m.extend("--ft-background-info-subtle","Used as background of subtle information components.",x.colorCyan10),backgroundWarningPrimary:m.extend("--ft-background-warning-primary","Used as background of warning components.",x.colorOrange300),backgroundWarningSubtle:m.extend("--ft-background-warning-subtle","Used as background of subtle information components.",x.colorOrange10),backgroundSuccessPrimary:m.extend("--ft-background-success-primary","Used as background of success components.",x.colorGreen200),backgroundSuccessSubtle:m.extend("--ft-background-success-subtle","Used as background of subtle success components.",x.colorGreen10),backgroundGlobalSurface:m.extend("--ft-background-global-surface","Used as app background.",x.colorWhite),backgroundGlobalOnSurface:m.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",x.colorGray10),backgroundGlobalOnSurfaceDark:m.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",x.colorGray30),contentActionPrimary:m.extend("--ft-content-action-primary","Used on label of primary action on light surface.",x.colorBrand0),contentWarningPrimary:m.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",x.colorOrange300),contentWarningIconOnly:m.extend("--ft-content-warning-icon-only","Used on warning status icons alone",x.colorOrange0),contentErrorPrimary:m.extend("--ft-content-error-primary","Used on label of error messages on light surface.",x.colorRed0),contentErrorIconOnly:m.extend("--ft-content-error-icon-only","Used on error status icons alone",x.colorRed0),contentInfoPrimary:m.extend("--ft-content-info-primary","Used on label of information messages on light surface.",x.colorCyan200),contentInfoIconOnly:m.extend("--ft-content-info-icon-only","Used on info status icons alone",x.colorCyan0),contentSuccessIconOnly:m.extend("--ft-content-success-icon-only","Used on success status icons alone",x.colorGreen0),contentSuccessPrimary:m.extend("--ft-content-success-primary","Used on label of success messages on light surface.",x.colorGreen200),contentGlobalPrimary:m.extend("--ft-content-global-primary","Used for main content on the page.",x.colorGray500),contentGlobalSecondary:m.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",x.colorGray200),contentGlobalSubtle:m.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",x.colorGray0),contentGlobalOnColor:m.extend("--ft-content-global-on-color","Used for content on a dominant color.",x.colorWhite),borderActionPrimary:m.extend("--ft-border-action-primary","Used as border for primary action components.",x.colorBrand0),borderActionFocusRing:m.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",x.colorCyan0),borderWarningPrimary:m.extend("--ft-border-warning-primary","Used as border for warning components.",x.colorOrange30),borderSuccessPrimary:m.extend("--ft-border-success-primary","Used as border for success components.",x.colorGreen30),borderErrorPrimary:m.extend("--ft-border-error-primary","Used as border for error components.",x.colorRed30),borderInfoPrimary:m.extend("--ft-border-info-primary","Used as border for information components.",x.colorCyan30),borderGlobalSubtle:m.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",x.colorGray30),borderGlobalPrimary:m.extend("--ft-border-global-primary","Used as border for element like input.",x.colorGray50),borderInputPrimary:m.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",x.colorGray80)},N={largeHeight:m.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:m.extend("--ft-button-large-horizontal-padding","",x.spacing4),largeGap:m.extend("--ft-button-large-gap","",x.spacing2),largeBorderRadius:m.extend("--ft-button-large-border-radius","",x.borderRadiusS),largeIconSize:m.extend("--ft-button-large-icon-size","",x.iconSize3),largeBorderWidth:m.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:m.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:m.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:m.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:m.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:m.extend("--ft-button-small-horizontal-padding","",x.spacing3),smallGap:m.extend("--ft-button-small-gap","",x.spacing2),smallBorderRadius:m.extend("--ft-button-small-border-radius","",x.borderRadiusS),smallIconSize:m.extend("--ft-button-small-icon-size","",x.iconSize2),smallBorderWidth:m.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:m.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:m.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:m.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:m.extend("--ft-button-primary-background-color","",v.backgroundActionPrimary),primaryColor:m.extend("--ft-button-primary-color","",v.contentGlobalOnColor),primaryIconColor:m.extend("--ft-button-primary-icon-color","",v.contentGlobalOnColor),primaryStateLayerColor:m.extend("--ft-button-primary-state-layer-color","",v.contentGlobalOnColor),primaryStateLayerOpacityHover:m.extend("--ft-button-primary-state-layer-opacity-hover","",x.opacity16),primaryStateLayerOpacityFocus:m.extend("--ft-button-primary-state-layer-opacity-focus","",x.opacity16),primaryStateLayerOpacityActive:m.extend("--ft-button-primary-state-layer-opacity-active","",x.opacity24),primaryComponentOpacityDisabled:m.extend("--ft-button-primary-component-opacity-disabled","",x.opacity40),focusFocusRingColor:m.extend("--ft-button-focus-focus-ring-color","",v.borderActionFocusRing),tertiaryBackgroundColor:m.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:m.extend("--ft-button-tertiary-color","",v.contentActionPrimary),tertiaryIconColor:m.extend("--ft-button-tertiary-icon-color","",v.contentActionPrimary),tertiaryStateLayerColor:m.extend("--ft-button-tertiary-state-layer-color","",v.contentActionPrimary),tertiaryStateLayerOpacityHover:m.extend("--ft-button-tertiary-state-layer-opacity-hover","",x.opacity8),tertiaryStateLayerOpacityFocus:m.extend("--ft-button-tertiary-state-layer-opacity-focus","",x.opacity8),tertiaryStateLayerOpacityActive:m.extend("--ft-button-tertiary-state-layer-opacity-active","",x.opacity16),tertiaryComponentOpacityDisabled:m.extend("--ft-button-tertiary-component-opacity-disabled","",x.opacity40),secondaryBackgroundColor:m.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:m.extend("--ft-button-secondary-color","",v.contentActionPrimary),secondaryIconColor:m.extend("--ft-button-secondary-icon-color","",v.contentActionPrimary),secondaryStateLayerColor:m.extend("--ft-button-secondary-state-layer-color","",v.contentActionPrimary),secondaryStateLayerOpacityHover:m.extend("--ft-button-secondary-state-layer-opacity-hover","",x.opacity8),secondaryStateLayerOpacityFocus:m.extend("--ft-button-secondary-state-layer-opacity-focus","",x.opacity8),secondaryStateLayerOpacityActive:m.extend("--ft-button-secondary-state-layer-opacity-active","",x.opacity16),secondaryComponentOpacityDisabled:m.extend("--ft-button-secondary-component-opacity-disabled","",x.opacity40),secondaryBorderColor:m.extend("--ft-button-secondary-border-color","",v.borderActionPrimary),neutralBackgroundColor:m.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:m.extend("--ft-button-neutral-icon-color","",v.contentGlobalSecondary),neutralColor:m.extend("--ft-button-neutral-color","",v.contentGlobalSecondary),neutralStateLayerColor:m.extend("--ft-button-neutral-state-layer-color","",v.contentGlobalSecondary),neutralStateLayerOpacityHover:m.extend("--ft-button-neutral-state-layer-opacity-hover","",x.opacity8),neutralStateLayerOpacityFocus:m.extend("--ft-button-neutral-state-layer-opacity-focus","",x.opacity8),neutralStateLayerOpacityActive:m.extend("--ft-button-neutral-state-layer-opacity-active","",x.opacity16),neutralComponentOpacityDisabled:m.extend("--ft-button-neutral-component-opacity-disabled","",x.opacity40)};m.extend("--ft-tabs-top-left-border-radius","",x.borderRadiusS),m.extend("--ft-tabs-top-right-border-radius","",x.borderRadiusS),m.extend("--ft-tabs-label-horizontal-padding","",x.spacing4),m.extend("--ft-tabs-label-vertical-padding","",x.spacing3),m.extend("--ft-tabs-label-gap","",x.spacing1),m.extend("--ft-switch-group-horizontal-padding","",x.spacing1),m.extend("--ft-switch-group-vertical-padding","",x.spacing1),m.extend("--ft-switch-group-gap","",x.spacing1),m.extend("--ft-switch-group-background-color","",v.backgroundGlobalSurface),m.extend("--ft-switch-group-border-color","",v.borderGlobalSubtle),m.create("--ft-switch-group-border-radius","","SIZE","6px"),m.extend("--ft-switch-label-horizontal-padding","",x.spacing2),m.extend("--ft-switch-label-vertical-padding","",x.spacing1),m.extend("--ft-switch-icon-horizontal-padding","",x.spacing1),m.extend("--ft-switch-icon-vertical-padding","",x.spacing1),m.create("--ft-switch-focus-outline-width","","SIZE","2px"),m.extend("--ft-switch-focus-focus-ring-color","",v.borderActionFocusRing),m.extend("--ft-switch-option-border-radius","",x.borderRadiusS),m.extend("--ft-switch-off-state-layer-opacity-hover","",x.opacity8),m.extend("--ft-switch-off-state-layer-opacity-focus","",x.opacity8),m.extend("--ft-switch-off-state-layer-opacity-active","",x.opacity16),m.extend("--ft-switch-off-component-opacity-disabled","",x.opacity40),m.extend("--ft-switch-off-color","",v.contentGlobalSubtle),m.extend("--ft-switch-off-state-layer-color","",v.contentGlobalSubtle),m.extend("--ft-chart-1-light","for area color charts",x.colorBrand40),m.extend("--ft-chart-1-base","for line charts",x.colorBrand0),m.extend("--ft-chart-2-light","for area color charts",x.colorYellow60),m.extend("--ft-chart-2-base","for line charts",x.colorYellow100),m.extend("--ft-chart-3-light","",x.colorUltramarine40),m.extend("--ft-chart-3-base","",x.colorUltramarine70),m.extend("--ft-chart-4-light","",x.colorCyan50),m.extend("--ft-chart-4-base","",x.colorCyan100),m.extend("--ft-chart-5-light","",x.colorRed40),m.extend("--ft-chart-5-base","",x.colorRed60),m.extend("--ft-chart-6-light","",x.colorGreen40),m.extend("--ft-chart-6-base","",x.colorGreen70),m.extend("--ft-chart-7-light","",x.colorOrange70),m.extend("--ft-chart-7-base","",x.colorOrange100),m.extend("--ft-chart-8-light","",x.colorAvocado70),m.extend("--ft-chart-8-base","",x.colorAvocado200),m.extend("--ft-chart-9-light","",x.colorBrown50),m.extend("--ft-chart-9-base","",x.colorBrown200),m.extend("--ft-chart-10-light","",x.colorGray50),m.extend("--ft-chart-10-base","",x.colorGray80),m.extend("--ft-chart-monochrome-10","",x.colorBrand10),m.extend("--ft-chart-monochrome-20","",x.colorBrand20),m.extend("--ft-chart-monochrome-30","",x.colorBrand40),m.extend("--ft-chart-monochrome-40","",x.colorBrand60),m.extend("--ft-chart-monochrome-50","",x.colorBrand0),m.extend("--ft-chart-monochrome-60","",x.colorBrand200),m.extend("--ft-chip-large-horizontal-padding","",x.spacing4),m.extend("--ft-chip-large-vertical-padding","",x.spacing2),m.extend("--ft-chip-large-gap","",x.spacing1),m.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),m.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),m.extend("--ft-chip-large-border-radius","",x.borderRadiusPill),m.create("--ft-chip-large-border-width","","SIZE","1px"),m.extend("--ft-chip-large-icon-size","",x.iconSize3),m.extend("--ft-chip-medium-horizontal-padding","",x.spacing3),m.extend("--ft-chip-medium-vertical-padding","",x.spacing1),m.extend("--ft-chip-medium-gap","",x.spacing1),m.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),m.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),m.extend("--ft-chip-medium-border-radius","",x.borderRadiusPill),m.create("--ft-chip-medium-border-width","","SIZE","1px"),m.extend("--ft-chip-medium-icon-size","",x.iconSize2),m.extend("--ft-chip-small-horizontal-padding","",x.spacing2),m.extend("--ft-chip-small-vertical-padding","",x.spacing05),m.extend("--ft-chip-small-gap","",x.spacing1),m.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),m.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),m.extend("--ft-chip-small-border-radius","",x.borderRadiusPill),m.create("--ft-chip-small-border-width","","SIZE","1px"),m.extend("--ft-chip-small-icon-size","",x.iconSize1),m.extend("--ft-chip-neutral-background-color","",v.backgroundGlobalOnSurface),m.extend("--ft-chip-neutral-color","",v.contentGlobalPrimary),m.extend("--ft-chip-neutral-border-color","",v.borderGlobalSubtle),m.extend("--ft-chip-info-background-color","",v.backgroundInfoSubtle),m.extend("--ft-chip-info-color","",v.contentInfoPrimary),m.extend("--ft-chip-info-border-color","",v.borderInfoPrimary),m.extend("--ft-chip-success-background-color","",v.backgroundSuccessSubtle),m.extend("--ft-chip-success-color","",v.contentSuccessPrimary),m.extend("--ft-chip-success-border-color","",v.borderSuccessPrimary),m.extend("--ft-chip-warning-background-color","",v.backgroundWarningSubtle),m.extend("--ft-chip-warning-color","",v.contentWarningPrimary),m.extend("--ft-chip-warning-border-color","",v.borderWarningPrimary),m.extend("--ft-chip-error-background-color","",v.backgroundErrorSubtle),m.extend("--ft-chip-error-color","",v.contentErrorPrimary),m.extend("--ft-chip-error-border-color","",v.borderErrorPrimary),m.create("--ft-notice-border-width","","SIZE","1px"),m.extend("--ft-notice-horizontal-padding","",x.spacing2),m.extend("--ft-notice-vertical-padding","",x.spacing1),m.extend("--ft-notice-border-radius","",x.borderRadiusS),m.extend("--ft-notice-gap","",x.spacing2),m.extend("--ft-notice-icon-size","",x.iconSize3),m.extend("--ft-notice-info-background-color","",v.backgroundInfoSubtle),m.extend("--ft-notice-info-border-color","",v.borderInfoPrimary),m.extend("--ft-notice-info-color","",v.contentInfoPrimary),m.extend("--ft-notice-warning-background-color","",v.backgroundWarningSubtle),m.extend("--ft-notice-warning-border-color","",v.borderWarningPrimary),m.extend("--ft-notice-warning-color","",v.contentWarningPrimary),m.extend("--ft-checkbox-label-color","",v.contentGlobalPrimary),m.extend("--ft-checkbox-checked-background-color","",v.contentActionPrimary),m.extend("--ft-checkbox-checked-state-layer-color","",v.contentActionPrimary),m.extend("--ft-checkbox-checked-color","",v.contentGlobalOnColor),m.extend("--ft-checkbox-checked-state-layer-opacity-hover","",x.opacity16),m.extend("--ft-checkbox-checked-state-layer-opacity-focus","",x.opacity16),m.extend("--ft-checkbox-checked-state-layer-opacity-active","",x.opacity24),m.extend("--ft-checkbox-checked-component-opacity-disabled","",x.opacity40),m.extend("--ft-checkbox-unchecked-border-color","",x.colorGray80),m.extend("--ft-checkbox-unchecked-state-layer-color","",x.colorGray80),m.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",x.opacity16),m.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",x.opacity16),m.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",x.opacity24),m.extend("--ft-checkbox-unchecked-component-opacity-disabled","",x.opacity40),m.extend("--ft-checkbox-focus-focus-ring-color","",v.borderActionFocusRing),m.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),m.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),m.extend("--ft-checkbox-gap","",x.spacing3),m.extend("--ft-toggle-off-state-layer-opacity-hover","",x.opacity16),m.extend("--ft-toggle-off-state-layer-opacity-focus","",x.opacity16),m.extend("--ft-toggle-off-state-layer-opacity-active","",x.opacity24),m.extend("--ft-toggle-off-component-opacity-disabled","",x.opacity40),m.extend("--ft-toggle-off-background-color","",v.contentGlobalSubtle),m.extend("--ft-toggle-off-icon-color","",v.contentGlobalSubtle),m.extend("--ft-toggle-off-state-layer-color","",v.contentGlobalSubtle),m.extend("--ft-toggle-on-state-layer-opacity-hover","",x.opacity16),m.extend("--ft-toggle-on-state-layer-opacity-focus","",x.opacity16),m.extend("--ft-toggle-on-state-layer-opacity-active","",x.opacity24),m.extend("--ft-toggle-on-component-opacity-disabled","",x.opacity40),m.extend("--ft-toggle-on-background-color","",v.contentActionPrimary),m.extend("--ft-toggle-on-icon-color","",v.contentActionPrimary),m.extend("--ft-toggle-on-state-layer-color","",v.contentActionPrimary),m.extend("--ft-toggle-label-color","",v.contentGlobalPrimary),m.extend("--ft-toggle-focus-focus-ring-color","",v.borderActionFocusRing),m.extend("--ft-toggle-gap","",x.spacing3),m.extend("--ft-radio-label-color","",v.contentGlobalPrimary),m.extend("--ft-radio-selected-color","",v.contentActionPrimary),m.extend("--ft-radio-selected-state-layer-color","",v.contentActionPrimary),m.extend("--ft-radio-selected-state-layer-opacity-hover","",x.opacity16),m.extend("--ft-radio-selected-state-layer-opacity-focus","",x.opacity16),m.extend("--ft-radio-selected-state-layer-opacity-active","",x.opacity24),m.extend("--ft-radio-selected-component-opacity-disabled","",x.opacity40),m.extend("--ft-radio-unselected-state-layer-color","",x.colorGray80),m.extend("--ft-radio-unselected-state-layer-opacity-hover","",x.opacity16),m.extend("--ft-radio-unselected-state-layer-opacity-focus","",x.opacity16),m.extend("--ft-radio-unselected-state-layer-opacity-active","",x.opacity24),m.extend("--ft-radio-unselected-component-opacity-disabled","",x.opacity40),m.extend("--ft-radio-focus-focus-ring-color","",v.borderActionFocusRing),m.create("--ft-radio-focus-outline-offset","","SIZE","3px"),m.create("--ft-radio-focus-outline-width","","SIZE","2px"),m.extend("--ft-radio-gap","",x.spacing3),m.extend("--ft-notification-icon-size","",x.iconSize4),m.extend("--ft-notification-horizontal-padding","",x.spacing4),m.extend("--ft-notification-vertical-padding","",x.spacing4),m.extend("--ft-notification-info-background-color","",v.backgroundInfoSubtle),m.extend("--ft-notification-info-color","",v.contentInfoPrimary),m.extend("--ft-notification-info-border-color","",v.borderInfoPrimary),m.extend("--ft-notification-success-background-color","",v.backgroundSuccessSubtle),m.extend("--ft-notification-success-color","",v.contentSuccessPrimary),m.extend("--ft-notification-success-border-color","",v.borderSuccessPrimary),m.extend("--ft-notification-warning-background-color","",v.backgroundWarningSubtle),m.extend("--ft-notification-warning-color","",v.contentWarningPrimary),m.extend("--ft-notification-warning-border-color","",v.borderWarningPrimary),m.extend("--ft-notification-error-background-color","",v.backgroundErrorSubtle),m.extend("--ft-notification-error-color","",v.contentErrorPrimary),m.extend("--ft-notification-error-border-color","",v.borderErrorPrimary),m.extend("--ft-notification-border-radius","",x.borderRadiusPill),m.create("--ft-notification-border-width","","SIZE","1px"),m.extend("--ft-notification-gap-leading","",x.spacing2),m.extend("--ft-notification-gap-trailing","",x.spacing8);const S=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),w=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),$={fontFamily:w,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")},C=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",S),I=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",$.fontSize,"20px"),R=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",$.fontWeight,"normal"),k=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",$.letterSpacing,"0.15px"),U=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",$.lineHeight,"1.2"),W=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",$.textTransform,"inherit"),E=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",S),L=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",$.fontSize,"14px"),K=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",$.fontWeight,"normal"),Z=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",$.letterSpacing,"0.105px"),z=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",$.lineHeight,"1.7"),B=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",$.textTransform,"inherit"),F=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",w),D=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",$.fontSize,"16px"),A=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",$.fontWeight,"600"),H=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",$.letterSpacing,"0.144px"),G=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",$.lineHeight,"1.5"),P=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",$.textTransform,"inherit"),j=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",w),M=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",$.fontSize,"14px"),T=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",$.fontWeight,"normal"),_=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",$.letterSpacing,"0.098px"),Y=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",$.lineHeight,"1.7"),V=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",$.textTransform,"inherit"),X=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",w),q=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",$.fontSize,"16px"),J=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",$.fontWeight,"normal"),Q=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",$.letterSpacing,"0.496px"),tt=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",$.lineHeight,"1.5"),ot=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",$.textTransform,"inherit"),et=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",w),rt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",$.fontSize,"14px"),it=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",$.fontWeight,"normal"),nt=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",$.letterSpacing,"0.252px"),at=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",$.lineHeight,"1.4"),lt=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",$.textTransform,"inherit"),ct=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",w),st=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",$.fontSize,"12px"),ft=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",$.fontWeight,"normal"),pt=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",$.letterSpacing,"0.396px"),dt=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",$.lineHeight,"1.33"),ht=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",$.textTransform,"inherit"),yt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",w),gt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",$.fontSize,"10px"),ut=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",$.fontWeight,"normal"),bt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",$.letterSpacing,"0.33px"),mt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",$.lineHeight,"1.6"),xt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",$.textTransform,"inherit"),Ot=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",w),vt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",$.fontSize,"10px"),Nt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",$.fontWeight,"normal"),St=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",$.letterSpacing,"1.5px"),wt=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",$.lineHeight,"1.6"),$t=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",$.textTransform,"uppercase"),Ct={fontFamily:o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",w),fontSize:o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",$.fontSize,"14px"),fontWeight:o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",$.fontWeight,"600"),letterSpacing:o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",$.letterSpacing,"1.246px"),lineHeight:o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",$.lineHeight,"1.15"),textTransform:o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",$.textTransform,"uppercase")},It=e.css`
114
145
  .ft-typography--title {
115
- font-family: ${w};
116
- font-size: ${$};
117
- font-weight: ${C};
118
- letter-spacing: ${I};
119
- line-height: ${R};
120
- text-transform: ${k};
121
- }
122
- `,Ct=e.css`
123
- .ft-typography--title-dense {
124
- font-family: ${U};
125
- font-size: ${W};
126
- font-weight: ${E};
127
- letter-spacing: ${L};
128
- line-height: ${K};
129
- text-transform: ${Z};
130
- }
131
- `,It=e.css`
132
- .ft-typography--subtitle1 {
133
- font-family: ${z};
134
- font-size: ${B};
135
- font-weight: ${F};
136
- letter-spacing: ${D};
137
- line-height: ${A};
138
- text-transform: ${H};
146
+ font-family: ${C};
147
+ font-size: ${I};
148
+ font-weight: ${R};
149
+ letter-spacing: ${k};
150
+ line-height: ${U};
151
+ text-transform: ${W};
139
152
  }
140
153
  `,Rt=e.css`
141
- .ft-typography--subtitle2 {
142
- font-family: ${G};
143
- font-size: ${P};
144
- font-weight: ${j};
145
- letter-spacing: ${M};
146
- line-height: ${T};
147
- text-transform: ${_};
154
+ .ft-typography--title-dense {
155
+ font-family: ${E};
156
+ font-size: ${L};
157
+ font-weight: ${K};
158
+ letter-spacing: ${Z};
159
+ line-height: ${z};
160
+ text-transform: ${B};
148
161
  }
149
-
150
162
  `,kt=e.css`
151
- .ft-typography--body1 {
152
- font-family: ${Y};
153
- font-size: ${V};
154
- font-weight: ${X};
155
- letter-spacing: ${q};
156
- line-height: ${J};
157
- text-transform: ${Q};
163
+ .ft-typography--subtitle1 {
164
+ font-family: ${F};
165
+ font-size: ${D};
166
+ font-weight: ${A};
167
+ letter-spacing: ${H};
168
+ line-height: ${G};
169
+ text-transform: ${P};
158
170
  }
159
171
  `,Ut=e.css`
160
- .ft-typography--body2 {
161
- font-family: ${tt};
162
- font-size: ${ot};
163
- font-weight: ${et};
164
- letter-spacing: ${rt};
165
- line-height: ${it};
166
- text-transform: ${nt};
172
+ .ft-typography--subtitle2 {
173
+ font-family: ${j};
174
+ font-size: ${M};
175
+ font-weight: ${T};
176
+ letter-spacing: ${_};
177
+ line-height: ${Y};
178
+ text-transform: ${V};
167
179
  }
180
+
168
181
  `,Wt=e.css`
169
- .ft-typography--caption {
170
- font-family: ${at};
171
- font-size: ${lt};
172
- font-weight: ${ct};
173
- letter-spacing: ${st};
174
- line-height: ${ft};
175
- text-transform: ${pt};
182
+ .ft-typography--body1 {
183
+ font-family: ${X};
184
+ font-size: ${q};
185
+ font-weight: ${J};
186
+ letter-spacing: ${Q};
187
+ line-height: ${tt};
188
+ text-transform: ${ot};
176
189
  }
177
190
  `,Et=e.css`
178
- .ft-typography--breadcrumb {
179
- font-family: ${dt};
180
- font-size: ${ht};
181
- font-weight: ${yt};
182
- letter-spacing: ${gt};
183
- line-height: ${ut};
184
- text-transform: ${bt};
191
+ .ft-typography--body2 {
192
+ font-family: ${et};
193
+ font-size: ${rt};
194
+ font-weight: ${it};
195
+ letter-spacing: ${nt};
196
+ line-height: ${at};
197
+ text-transform: ${lt};
185
198
  }
186
199
  `,Lt=e.css`
187
- .ft-typography--overline {
188
- font-family: ${mt};
189
- font-size: ${xt};
190
- font-weight: ${Ot};
191
- letter-spacing: ${vt};
192
- line-height: ${Nt};
193
- text-transform: ${St};
200
+ .ft-typography--caption {
201
+ font-family: ${ct};
202
+ font-size: ${st};
203
+ font-weight: ${ft};
204
+ letter-spacing: ${pt};
205
+ line-height: ${dt};
206
+ text-transform: ${ht};
194
207
  }
195
208
  `,Kt=e.css`
196
- .ft-typography--button {
197
- font-family: ${wt.fontFamily};
198
- font-size: ${wt.fontSize};
199
- font-weight: ${wt.fontWeight};
200
- letter-spacing: ${wt.letterSpacing};
201
- line-height: ${wt.lineHeight};
202
- text-transform: ${wt.textTransform};
209
+ .ft-typography--breadcrumb {
210
+ font-family: ${yt};
211
+ font-size: ${gt};
212
+ font-weight: ${ut};
213
+ letter-spacing: ${bt};
214
+ line-height: ${mt};
215
+ text-transform: ${xt};
203
216
  }
204
217
  `,Zt=e.css`
218
+ .ft-typography--overline {
219
+ font-family: ${Ot};
220
+ font-size: ${vt};
221
+ font-weight: ${Nt};
222
+ letter-spacing: ${St};
223
+ line-height: ${wt};
224
+ text-transform: ${$t};
225
+ }
226
+ `,zt=e.css`
227
+ .ft-typography--button {
228
+ font-family: ${Ct.fontFamily};
229
+ font-size: ${Ct.fontSize};
230
+ font-weight: ${Ct.fontWeight};
231
+ letter-spacing: ${Ct.letterSpacing};
232
+ line-height: ${Ct.lineHeight};
233
+ text-transform: ${Ct.textTransform};
234
+ }
235
+ `,Bt=e.css`
205
236
  .ft-typography {
206
237
  vertical-align: inherit;
207
238
  }
208
- `,zt=[Object.keys(m).map((t=>function(t){const o=m[t];return e.css`
239
+ `,Ft=[Object.keys(O).map((t=>function(t){const o=O[t];return e.css`
209
240
  .ft-typography--${e.unsafeCSS(t)} {
210
241
  font-family: ${o.fontFamily};
211
242
  font-size: ${o.fontSize};
@@ -214,7 +245,7 @@
214
245
  line-height: ${o.lineHeight};
215
246
  text-transform: ${o.textCase};
216
247
  }
217
- `}(t)))],Bt={color:o.FtCssVariableFactory.extend("--ft-loader-color","",o.designSystemVariables.colorPrimary),size:o.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},Ft=e.css`
248
+ `}(t)))],Dt={color:o.FtCssVariableFactory.extend("--ft-loader-color","",o.designSystemVariables.colorPrimary),size:o.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},At=e.css`
218
249
  :host {
219
250
  line-height: 0;
220
251
  }
@@ -223,8 +254,8 @@
223
254
  display: inline-block;
224
255
  position: relative;
225
256
 
226
- width: ${Bt.size};
227
- height: ${Bt.size};
257
+ width: ${Dt.size};
258
+ height: ${Dt.size};
228
259
  }
229
260
 
230
261
  .ft-loader div {
@@ -233,7 +264,7 @@
233
264
  width: 25%;
234
265
  height: 25%;
235
266
  border-radius: 50%;
236
- background: ${Bt.color};
267
+ background: ${Dt.color};
237
268
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
238
269
  }
239
270
 
@@ -280,10 +311,10 @@
280
311
  transform: translate(0, 0);
281
312
  }
282
313
  100% {
283
- transform: translate(calc(0.35 * ${Bt.size}), 0);
314
+ transform: translate(calc(0.35 * ${Dt.size}), 0);
284
315
  }
285
316
  }
286
- `,Dt={size:o.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:o.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:o.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:o.FtCssVariableFactory.extend("--ft-icon-material-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:o.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},At=e.css`
317
+ `,Ht={size:o.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:o.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:o.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:o.FtCssVariableFactory.extend("--ft-icon-material-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:o.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},Gt=e.css`
287
318
  :host, i.ft-icon {
288
319
  display: inline-flex;
289
320
  align-items: center;
@@ -292,14 +323,14 @@
292
323
  }
293
324
 
294
325
  :host {
295
- width: ${Dt.size};
296
- height: ${Dt.size};
326
+ width: ${Ht.size};
327
+ height: ${Ht.size};
297
328
  }
298
329
 
299
330
  i.ft-icon {
300
331
  width: 100%;
301
332
  height: 100%;
302
- font-size: ${Dt.size};
333
+ font-size: ${Ht.size};
303
334
  line-height: 1;
304
335
  font-weight: normal;
305
336
  text-transform: none;
@@ -310,28 +341,28 @@
310
341
  text-rendering: auto;
311
342
  -webkit-font-smoothing: antialiased;
312
343
  -moz-osx-font-smoothing: grayscale;
313
- vertical-align: ${Dt.verticalAlign};
344
+ vertical-align: ${Ht.verticalAlign};
314
345
  }
315
346
 
316
347
  i.ft-icon.ft-icon--fluid-topics {
317
- font-family: ${Dt.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
348
+ font-family: ${Ht.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
318
349
 
319
350
  /* Ugly fix because font is broken */
320
- font-size: calc(0.75 * ${Dt.size});
321
- line-height: ${Dt.size};
351
+ font-size: calc(0.75 * ${Ht.size});
352
+ line-height: ${Ht.size};
322
353
  position: relative;
323
354
  top: -4%;
324
355
  justify-content: center;
325
356
  }
326
357
 
327
358
  .ft-icon--file-format {
328
- font-family: ${Dt.fileFormatFontFamily}, ft-mime, sans-serif;
359
+ font-family: ${Ht.fileFormatFontFamily}, ft-mime, sans-serif;
329
360
  }
330
361
 
331
362
  .ft-icon--material {
332
- font-family: ${Dt.materialFontFamily}, "Material Icons", sans-serif;
363
+ font-family: ${Ht.materialFontFamily}, "Material Icons", sans-serif;
333
364
  }
334
- `,Ht=o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorPrimary),Gt={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorSurface),borderRadius:o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusL),color:Ht,fontSize:o.FtCssVariableFactory.extend("--ft-button-font-size","",wt.fontSize),iconSize:o.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:o.FtCssVariableFactory.extend("--ft-button-ripple-color","",Ht),verticalPadding:o.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:o.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:o.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:o.FtCssVariableFactory.external(o.designSystemVariables.colorOpacityDisabled,"Design system")},Pt=o.FtCssVariableFactory.extend("--ft-button-primary-color","",o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorOnPrimary)),jt={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-primary-background-color","",o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorPrimary)),color:Pt,rippleColor:o.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",Pt)},Mt=o.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusM)),Tt=o.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),_t=o.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),Yt=o.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px"),Vt=[e.css`
365
+ `,Pt=o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorPrimary),jt={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorSurface),borderRadius:o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusL),color:Pt,fontSize:o.FtCssVariableFactory.extend("--ft-button-font-size","",Ct.fontSize),iconSize:o.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:o.FtCssVariableFactory.extend("--ft-button-ripple-color","",Pt),verticalPadding:o.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:o.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:o.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:o.FtCssVariableFactory.external(o.designSystemVariables.colorOpacityDisabled,"Design system")},Mt=o.FtCssVariableFactory.extend("--ft-button-primary-color","",o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorOnPrimary)),Tt={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-primary-background-color","",o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorPrimary)),color:Mt,rippleColor:o.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",Mt)},_t=o.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusM)),Yt=o.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),Vt=o.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),Xt=o.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px"),qt=[e.css`
335
366
  :host {
336
367
  display: inline-block;
337
368
  max-width: 100%;
@@ -342,7 +373,7 @@
342
373
  box-shadow: 0px 0px 0px transparent;
343
374
  border: 0px solid transparent;
344
375
  text-shadow: 0px 0px 0px transparent;
345
- font-size: ${Gt.fontSize};
376
+ font-size: ${jt.fontSize};
346
377
  }
347
378
 
348
379
  button:hover {
@@ -371,31 +402,31 @@
371
402
  border: none;
372
403
  pointer-events: auto;
373
404
 
374
- --ft-button-internal-line-height: max(calc(${Gt.fontSize} + 2px), ${Gt.iconSize});
375
- --ft-button-internal-color: ${Gt.color};
376
- ${o.setVariable(Dt.size,Gt.iconSize)};
377
- ${o.setVariable(l.color,Gt.rippleColor)};
405
+ --ft-button-internal-line-height: max(calc(${jt.fontSize} + 2px), ${jt.iconSize});
406
+ --ft-button-internal-color: ${jt.color};
407
+ ${o.setVariable(Ht.size,jt.iconSize)};
408
+ ${o.setVariable(s.color,jt.rippleColor)};
378
409
 
379
- border-radius: ${Gt.borderRadius};
380
- padding: ${Gt.verticalPadding} ${Gt.horizontalPadding};
381
- background-color: ${Gt.backgroundColor};
410
+ border-radius: ${jt.borderRadius};
411
+ padding: ${jt.verticalPadding} ${jt.horizontalPadding};
412
+ background-color: ${jt.backgroundColor};
382
413
  color: var(--ft-button-internal-color);
383
414
  -webkit-mask-image: radial-gradient(white, black);
384
415
  }
385
416
 
386
417
  .ft-button.ft-button--outlined {
387
418
  border: 1px solid var(--ft-button-internal-color);
388
- padding: calc(${Gt.verticalPadding} - 1px) calc(${Gt.horizontalPadding} - 1px);
419
+ padding: calc(${jt.verticalPadding} - 1px) calc(${jt.horizontalPadding} - 1px);
389
420
  }
390
421
 
391
422
  .ft-button.ft-button--dense {
392
- padding: ${Tt} ${_t};
393
- border-radius: ${Mt};
394
- gap: ${Yt};
423
+ padding: ${Yt} ${Vt};
424
+ border-radius: ${_t};
425
+ gap: ${Xt};
395
426
  }
396
427
 
397
428
  .ft-button.ft-button--dense.ft-button--outlined {
398
- padding: calc(${Tt} - 1px) calc(${_t} - 1px);
429
+ padding: calc(${Yt} - 1px) calc(${Vt} - 1px);
399
430
  }
400
431
 
401
432
  .ft-button:not([disabled]):hover {
@@ -403,22 +434,22 @@
403
434
  }
404
435
 
405
436
  .ft-button--round {
406
- border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Gt.verticalPadding});
437
+ border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${jt.verticalPadding});
407
438
  }
408
439
 
409
440
  .ft-button--round.ft-button--dense {
410
- border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Tt});
441
+ border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Yt});
411
442
  }
412
443
 
413
444
  .ft-button[disabled] {
414
445
  filter: grayscale(1);
415
- opacity: ${Gt.opacityDisabled};
446
+ opacity: ${jt.opacityDisabled};
416
447
  }
417
448
 
418
449
  .ft-button.ft-button--primary {
419
- background-color: ${jt.backgroundColor};
420
- --ft-button-internal-color: ${jt.color};
421
- ${o.setVariable(l.color,jt.rippleColor)};
450
+ background-color: ${Tt.backgroundColor};
451
+ --ft-button-internal-color: ${Tt.color};
452
+ ${o.setVariable(s.color,Tt.rippleColor)};
422
453
  }
423
454
 
424
455
  .ft-button:focus {
@@ -431,13 +462,13 @@
431
462
  white-space: nowrap;
432
463
  text-overflow: ellipsis;
433
464
  display: block;
434
- margin: 0 ${Gt.iconPadding};
435
- ${o.setVariable(wt.fontSize,"1em")};
436
- ${o.setVariable(wt.lineHeight,"var(--ft-button-internal-line-height)")};
465
+ margin: 0 ${jt.iconPadding};
466
+ ${o.setVariable(Ct.fontSize,"1em")};
467
+ ${o.setVariable(Ct.lineHeight,"var(--ft-button-internal-line-height)")};
437
468
  }
438
469
 
439
470
  .ft-button--dense .ft-button--label {
440
- margin: 0 ${Yt};
471
+ margin: 0 ${Xt};
441
472
  }
442
473
 
443
474
  .ft-button--label[hidden] {
@@ -450,13 +481,13 @@
450
481
  }
451
482
 
452
483
  .ft-button--label[hidden] + ft-icon {
453
- margin: 0 calc(${Gt.horizontalPadding} * -1);
454
- padding: 0 ${Gt.verticalPadding};
484
+ margin: 0 calc(${jt.horizontalPadding} * -1);
485
+ padding: 0 ${jt.verticalPadding};
455
486
  }
456
487
 
457
488
  .ft-button--dense .ft-button--label[hidden] + ft-icon {
458
- margin: 0 calc(${_t} * -1);
459
- padding: 0 ${Tt};
489
+ margin: 0 calc(${Vt} * -1);
490
+ padding: 0 ${Yt};
460
491
  }
461
492
 
462
493
  .ft-button:not(.ft-button--trailing-icon) ft-icon,
@@ -465,10 +496,10 @@
465
496
  }
466
497
 
467
498
  ft-loader {
468
- ${o.setVariable(Bt.size,Gt.iconSize)};
469
- ${o.setVariable(Bt.color,"var(--ft-button-internal-color)")};
499
+ ${o.setVariable(Dt.size,jt.iconSize)};
500
+ ${o.setVariable(Dt.color,"var(--ft-button-internal-color)")};
470
501
  }
471
- `,o.noTextSelect];var Xt=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class qt extends o.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new o.Debouncer(1e3),this.onTransitionStart=t=>{"transform"===t.propertyName&&(this.rippling=this.pressed,this.debouncer.run((()=>this.rippling=!1)))},this.onTransitionEnd=t=>{"transform"===t.propertyName&&(this.rippling=!1)},this.setupDebouncer=new o.Debouncer(10),this.moveRipple=t=>{var o,e;let{x:r,y:i}=this.getCoordinates(t),n=null!==(e=null===(o=this.ripple)||void 0===o?void 0:o.getBoundingClientRect())&&void 0!==e?e:{x:0,y:0,width:0,height:0};this.originX=Math.round(null!=r?r-n.x:n.width/2),this.originY=Math.round(null!=i?i-n.y:n.height/2)},this.startPress=t=>{this.moveRipple(t),this.pressed=!this.isIgnored(t)},this.endPress=()=>{this.pressed=!1},this.startHover=t=>{this.hovered=!this.isIgnored(t)},this.endHover=()=>{this.hovered=!1},this.startFocus=t=>{this.focused=this.isFocusVisible(null==t?void 0:t.target)&&!this.isIgnored(t)},this.endFocus=()=>{this.focused=!1}}render(){let t={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return e.html`
502
+ `,o.noTextSelect];var Jt=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class Qt extends o.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new o.Debouncer(1e3),this.onTransitionStart=t=>{"transform"===t.propertyName&&(this.rippling=this.pressed,this.debouncer.run((()=>this.rippling=!1)))},this.onTransitionEnd=t=>{"transform"===t.propertyName&&(this.rippling=!1)},this.setupDebouncer=new o.Debouncer(10),this.moveRipple=t=>{var o,e;let{x:r,y:i}=this.getCoordinates(t),n=null!==(e=null===(o=this.ripple)||void 0===o?void 0:o.getBoundingClientRect())&&void 0!==e?e:{x:0,y:0,width:0,height:0};this.originX=Math.round(null!=r?r-n.x:n.width/2),this.originY=Math.round(null!=i?i-n.y:n.height/2)},this.startPress=t=>{this.moveRipple(t),this.pressed=!this.isIgnored(t)},this.endPress=()=>{this.pressed=!1},this.startHover=t=>{this.hovered=!this.isIgnored(t)},this.endHover=()=>{this.hovered=!1},this.startFocus=t=>{this.focused=this.isFocusVisible(null==t?void 0:t.target)&&!this.isIgnored(t)},this.endFocus=()=>{this.focused=!1}}render(){let t={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return e.html`
472
503
  <style>
473
504
  .ft-ripple .ft-ripple--effect {
474
505
  left: ${this.originX}px;
@@ -479,26 +510,26 @@
479
510
  <div class="ft-ripple--background"></div>
480
511
  <div class="ft-ripple--effect"></div>
481
512
  </div>
482
- `}contentAvailableCallback(t){super.contentAvailableCallback(t),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(t){var o,e;super.update(t),t.has("disabled")&&(this.disabled?(this.endRipple(),null===(o=this.target)||void 0===o||o.removeAttribute("data-is-ft-ripple-target")):null===(e=this.target)||void 0===e||e.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run((()=>this.defaultSetup()))}defaultSetup(){var t,o;const e=null===(t=this.shadowRoot)||void 0===t?void 0:t.host.parentElement;e&&this.setupFor(null!==(o=this.target)&&void 0!==o?o:e)}setupFor(t){if(this.setupDebouncer.cancel(),this.target===t)return;this.onDisconnect&&this.onDisconnect(),this.target=t,t.setAttribute("data-is-ft-ripple-target","true");const o=(...t)=>o=>{t.forEach((t=>window.addEventListener(t,this.endPress,{once:!0}))),this.startPress(o)},e=o("mouseup","contextmenu"),r=o("touchend","touchcancel"),i=t=>{["Enter"," "].includes(t.key)&&o("keyup")(t)},n={passive:!0};t.addEventListener("mouseover",this.startHover,n),t.addEventListener("mousemove",this.moveRipple,n),t.addEventListener("mouseleave",this.endHover,n),t.addEventListener("mousedown",e,n),t.addEventListener("touchstart",r,n),t.addEventListener("touchmove",this.moveRipple,n),t.addEventListener("keydown",i,n),t.addEventListener("focus",this.startFocus,n),t.addEventListener("blur",this.endFocus,n),t.addEventListener("focusin",this.startFocus,n),t.addEventListener("focusout",this.endFocus,n),this.onDisconnect=()=>{t.removeAttribute("data-is-ft-ripple-target"),t.removeEventListener("mouseover",this.startHover,n),t.removeEventListener("mousemove",this.moveRipple,n),t.removeEventListener("mouseleave",this.endHover,n),t.removeEventListener("mousedown",e,n),t.removeEventListener("touchstart",r,n),t.removeEventListener("touchmove",this.moveRipple,n),t.removeEventListener("keydown",i,n),t.removeEventListener("focus",this.startFocus,n),t.removeEventListener("blur",this.endFocus,n),t.removeEventListener("focusin",this.startFocus,n),t.removeEventListener("focusout",this.endFocus,n),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(t){const o=t,e=t;let r,i;return null!=o.x?({x:r,y:i}=o):null!=e.touches&&(r=e.touches[0].clientX,i=e.touches[0].clientY),{x:r,y:i}}isFocusVisible(t){return!(t instanceof HTMLElement)||t.matches(":focus-visible")}isIgnored(t){if(this.disabled)return!0;if(null!=t)for(let o of t.composedPath()){if(o===this.target)break;if("hasAttribute"in o&&o.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}}qt.elementDefinitions={},qt.styles=y,Xt([r.property({type:Boolean})],qt.prototype,"primary",void 0),Xt([r.property({type:Boolean})],qt.prototype,"secondary",void 0),Xt([r.property({type:Boolean})],qt.prototype,"unbounded",void 0),Xt([r.property({type:Boolean})],qt.prototype,"activated",void 0),Xt([r.property({type:Boolean})],qt.prototype,"selected",void 0),Xt([r.property({type:Boolean})],qt.prototype,"disabled",void 0),Xt([r.state()],qt.prototype,"hovered",void 0),Xt([r.state()],qt.prototype,"focused",void 0),Xt([r.state()],qt.prototype,"pressed",void 0),Xt([r.state()],qt.prototype,"rippling",void 0),Xt([r.state()],qt.prototype,"originX",void 0),Xt([r.state()],qt.prototype,"originY",void 0),Xt([r.query(".ft-ripple")],qt.prototype,"ripple",void 0),Xt([r.query(".ft-ripple--effect")],qt.prototype,"rippleEffect",void 0),o.customElement("ft-ripple")(qt);
513
+ `}contentAvailableCallback(t){super.contentAvailableCallback(t),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(t){var o,e;super.update(t),t.has("disabled")&&(this.disabled?(this.endRipple(),null===(o=this.target)||void 0===o||o.removeAttribute("data-is-ft-ripple-target")):null===(e=this.target)||void 0===e||e.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run((()=>this.defaultSetup()))}defaultSetup(){var t,o;const e=null===(t=this.shadowRoot)||void 0===t?void 0:t.host.parentElement;e&&this.setupFor(null!==(o=this.target)&&void 0!==o?o:e)}setupFor(t){if(this.setupDebouncer.cancel(),this.target===t)return;this.onDisconnect&&this.onDisconnect(),this.target=t,t.setAttribute("data-is-ft-ripple-target","true");const o=(...t)=>o=>{t.forEach((t=>window.addEventListener(t,this.endPress,{once:!0}))),this.startPress(o)},e=o("mouseup","contextmenu"),r=o("touchend","touchcancel"),i=t=>{["Enter"," "].includes(t.key)&&o("keyup")(t)},n={passive:!0};t.addEventListener("mouseover",this.startHover,n),t.addEventListener("mousemove",this.moveRipple,n),t.addEventListener("mouseleave",this.endHover,n),t.addEventListener("mousedown",e,n),t.addEventListener("touchstart",r,n),t.addEventListener("touchmove",this.moveRipple,n),t.addEventListener("keydown",i,n),t.addEventListener("focus",this.startFocus,n),t.addEventListener("blur",this.endFocus,n),t.addEventListener("focusin",this.startFocus,n),t.addEventListener("focusout",this.endFocus,n),this.onDisconnect=()=>{t.removeAttribute("data-is-ft-ripple-target"),t.removeEventListener("mouseover",this.startHover,n),t.removeEventListener("mousemove",this.moveRipple,n),t.removeEventListener("mouseleave",this.endHover,n),t.removeEventListener("mousedown",e,n),t.removeEventListener("touchstart",r,n),t.removeEventListener("touchmove",this.moveRipple,n),t.removeEventListener("keydown",i,n),t.removeEventListener("focus",this.startFocus,n),t.removeEventListener("blur",this.endFocus,n),t.removeEventListener("focusin",this.startFocus,n),t.removeEventListener("focusout",this.endFocus,n),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(t){const o=t,e=t;let r,i;return null!=o.x?({x:r,y:i}=o):null!=e.touches&&(r=e.touches[0].clientX,i=e.touches[0].clientY),{x:r,y:i}}isFocusVisible(t){return!(t instanceof HTMLElement)||t.matches(":focus-visible")}isIgnored(t){if(this.disabled)return!0;if(null!=t)for(let o of t.composedPath()){if(o===this.target)break;if("hasAttribute"in o&&o.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}}Qt.elementDefinitions={},Qt.styles=u,Jt([r.property({type:Boolean})],Qt.prototype,"primary",void 0),Jt([r.property({type:Boolean})],Qt.prototype,"secondary",void 0),Jt([r.property({type:Boolean})],Qt.prototype,"unbounded",void 0),Jt([r.property({type:Boolean})],Qt.prototype,"activated",void 0),Jt([r.property({type:Boolean})],Qt.prototype,"selected",void 0),Jt([r.property({type:Boolean})],Qt.prototype,"disabled",void 0),Jt([r.state()],Qt.prototype,"hovered",void 0),Jt([r.state()],Qt.prototype,"focused",void 0),Jt([r.state()],Qt.prototype,"pressed",void 0),Jt([r.state()],Qt.prototype,"rippling",void 0),Jt([r.state()],Qt.prototype,"originX",void 0),Jt([r.state()],Qt.prototype,"originY",void 0),Jt([r.query(".ft-ripple")],Qt.prototype,"ripple",void 0),Jt([r.query(".ft-ripple--effect")],Qt.prototype,"rippleEffect",void 0),o.customElement("ft-ripple")(Qt);
483
514
  /**
484
515
  * @license
485
516
  * Copyright 2017 Google LLC
486
517
  * SPDX-License-Identifier: BSD-3-Clause
487
518
  */
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}>`,no=document,ao=()=>no.createComment(""),lo=t=>null===t||"object"!=typeof t&&"function"!=typeof t,co=Array.isArray,so="[ \t\n\f\r]",fo=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,po=/-->/g,ho=/>/g,yo=RegExp(`>|${so}(?:([^\\s"'>=/]+)(${so}*=${so}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),go=/'/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"),Oo=Symbol.for("lit-nothing"),vo=new WeakMap,No=no.createTreeWalker(no,129);function So(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==to?to.createHTML(o):o}const wo=(t,o)=>{const e=t.length-1,r=[];let i,n=2===o?"<svg>":"",a=fo;for(let o=0;o<e;o++){const e=t[o];let l,c,s=-1,f=0;for(;f<e.length&&(a.lastIndex=f,c=a.exec(e),null!==c);)f=a.lastIndex,a===fo?"!--"===c[1]?a=po:void 0!==c[1]?a=ho:void 0!==c[2]?(bo.test(c[2])&&(i=RegExp("</"+c[2],"g")),a=yo):void 0!==c[3]&&(a=yo):a===yo?">"===c[0]?(a=i??fo,s=-1):void 0===c[1]?s=-2:(s=a.lastIndex-c[2].length,l=c[1],a=void 0===c[3]?yo:'"'===c[3]?uo:go):a===uo||a===go?a=yo:a===po||a===ho?a=fo:(a=yo,i=void 0);const p=a===yo&&t[o+1].startsWith("/>")?" ":"";n+=a===fo?e+io:s>=0?(r.push(l),e.slice(0,s)+oo+e.slice(s)+eo+p):e+eo+(-2===s?o:p)}return[So(t,n+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class $o{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,n=0;const a=t.length-1,l=this.parts,[c,s]=wo(t,o);if(this.el=$o.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<a;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(oo)){const o=s[n++],e=r.getAttribute(t).split(eo),a=/([.?@])?(.*)/.exec(o);l.push({type:1,index:i,name:a[2],strings:e,ctor:"."===a[1]?Uo:"?"===a[1]?Wo:"@"===a[1]?Eo:ko}),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],ao()),No.nextNode(),l.push({type:2,index:++i});r.append(t[o],ao())}}}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=no.createElement("template");return e.innerHTML=t,e}}function Co(t,o,e=t,r){if(o===xo)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const n=lo(o)?void 0:o._$litDirective$;return i?.constructor!==n&&(i?._$AO?.(!1),void 0===n?i=void 0:(i=new n(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=Co(t,i._$AS(t,o.values),i,r)),o}class Io{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??no).importNode(o,!0);No.currentNode=r;let i=No.nextNode(),n=0,a=0,l=e[0];for(;void 0!==l;){if(n===l.index){let o;2===l.type?o=new Ro(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[++a]}n!==l?.index&&(i=No.nextNode(),n++)}return No.currentNode=no,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 Ro{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=Oo,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=Co(this,t,o),lo(t)?t===Oo||null==t||""===t?(this._$AH!==Oo&&this._$AR(),this._$AH=Oo):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!==Oo&&lo(this._$AH)?this._$AA.nextSibling.data=t:this.$(no.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=$o.createElement(So(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new Io(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=vo.get(t.strings);return void 0===o&&vo.set(t.strings,o=new $o(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 Ro(this.k(ao()),this.k(ao()),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 ko{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=Oo,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=Oo}_$AI(t,o=this,e,r){const i=this.strings;let n=!1;if(void 0===i)t=Co(this,t,o,0),n=!lo(t)||t!==this._$AH&&t!==xo,n&&(this._$AH=t);else{const r=t;let a,l;for(t=i[0],a=0;a<i.length-1;a++)l=Co(this,r[e+a],o,a),l===xo&&(l=this._$AH[a]),n||=!lo(l)||l!==this._$AH[a],l===Oo?t=Oo:t!==Oo&&(t+=(l??"")+i[a+1]),this._$AH[a]=l}n&&!r&&this.O(t)}O(t){t===Oo?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class Uo extends ko{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===Oo?void 0:t}}class Wo extends ko{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==Oo)}}class Eo extends ko{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=Co(this,t,o,0)??Oo)===xo)return;const e=this._$AH,r=t===Oo&&e!==Oo||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==Oo&&(e===Oo||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){Co(this,t)}}const Ko=Jt.litHtmlPolyfillSupport;Ko?.($o,Ro),(Jt.litHtmlVersions??=[]).push("3.1.0");
519
+ const to=globalThis,oo=to.trustedTypes,eo=oo?oo.createPolicy("lit-html",{createHTML:t=>t}):void 0,ro="$lit$",io=`lit$${(Math.random()+"").slice(9)}$`,no="?"+io,ao=`<${no}>`,lo=document,co=()=>lo.createComment(""),so=t=>null===t||"object"!=typeof t&&"function"!=typeof t,fo=Array.isArray,po="[ \t\n\f\r]",ho=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,yo=/-->/g,go=/>/g,uo=RegExp(`>|${po}(?:([^\\s"'>=/]+)(${po}*=${po}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),bo=/'/g,mo=/"/g,xo=/^(?:script|style|textarea|title)$/i,Oo=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),vo=Symbol.for("lit-noChange"),No=Symbol.for("lit-nothing"),So=new WeakMap,wo=lo.createTreeWalker(lo,129);function $o(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==eo?eo.createHTML(o):o}const Co=(t,o)=>{const e=t.length-1,r=[];let i,n=2===o?"<svg>":"",a=ho;for(let o=0;o<e;o++){const e=t[o];let l,c,s=-1,f=0;for(;f<e.length&&(a.lastIndex=f,c=a.exec(e),null!==c);)f=a.lastIndex,a===ho?"!--"===c[1]?a=yo:void 0!==c[1]?a=go:void 0!==c[2]?(xo.test(c[2])&&(i=RegExp("</"+c[2],"g")),a=uo):void 0!==c[3]&&(a=uo):a===uo?">"===c[0]?(a=i??ho,s=-1):void 0===c[1]?s=-2:(s=a.lastIndex-c[2].length,l=c[1],a=void 0===c[3]?uo:'"'===c[3]?mo:bo):a===mo||a===bo?a=uo:a===yo||a===go?a=ho:(a=uo,i=void 0);const p=a===uo&&t[o+1].startsWith("/>")?" ":"";n+=a===ho?e+ao:s>=0?(r.push(l),e.slice(0,s)+ro+e.slice(s)+io+p):e+io+(-2===s?o:p)}return[$o(t,n+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class Io{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,n=0;const a=t.length-1,l=this.parts,[c,s]=Co(t,o);if(this.el=Io.createElement(c,e),wo.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=wo.nextNode())&&l.length<a;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(ro)){const o=s[n++],e=r.getAttribute(t).split(io),a=/([.?@])?(.*)/.exec(o);l.push({type:1,index:i,name:a[2],strings:e,ctor:"."===a[1]?Eo:"?"===a[1]?Lo:"@"===a[1]?Ko:Wo}),r.removeAttribute(t)}else t.startsWith(io)&&(l.push({type:6,index:i}),r.removeAttribute(t));if(xo.test(r.tagName)){const t=r.textContent.split(io),o=t.length-1;if(o>0){r.textContent=oo?oo.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],co()),wo.nextNode(),l.push({type:2,index:++i});r.append(t[o],co())}}}else if(8===r.nodeType)if(r.data===no)l.push({type:2,index:i});else{let t=-1;for(;-1!==(t=r.data.indexOf(io,t+1));)l.push({type:7,index:i}),t+=io.length-1}i++}}static createElement(t,o){const e=lo.createElement("template");return e.innerHTML=t,e}}function Ro(t,o,e=t,r){if(o===vo)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const n=so(o)?void 0:o._$litDirective$;return i?.constructor!==n&&(i?._$AO?.(!1),void 0===n?i=void 0:(i=new n(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=Ro(t,i._$AS(t,o.values),i,r)),o}class ko{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??lo).importNode(o,!0);wo.currentNode=r;let i=wo.nextNode(),n=0,a=0,l=e[0];for(;void 0!==l;){if(n===l.index){let o;2===l.type?o=new Uo(i,i.nextSibling,this,t):1===l.type?o=new l.ctor(i,l.name,l.strings,this,t):6===l.type&&(o=new Zo(i,this,t)),this._$AV.push(o),l=e[++a]}n!==l?.index&&(i=wo.nextNode(),n++)}return wo.currentNode=lo,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 Uo{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=No,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=Ro(this,t,o),so(t)?t===No||null==t||""===t?(this._$AH!==No&&this._$AR(),this._$AH=No):t!==this._$AH&&t!==vo&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>fo(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!==No&&so(this._$AH)?this._$AA.nextSibling.data=t:this.$(lo.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=Io.createElement($o(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new ko(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=So.get(t.strings);return void 0===o&&So.set(t.strings,o=new Io(t)),o}T(t){fo(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 Uo(this.k(co()),this.k(co()),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=No,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=No}_$AI(t,o=this,e,r){const i=this.strings;let n=!1;if(void 0===i)t=Ro(this,t,o,0),n=!so(t)||t!==this._$AH&&t!==vo,n&&(this._$AH=t);else{const r=t;let a,l;for(t=i[0],a=0;a<i.length-1;a++)l=Ro(this,r[e+a],o,a),l===vo&&(l=this._$AH[a]),n||=!so(l)||l!==this._$AH[a],l===No?t=No:t!==No&&(t+=(l??"")+i[a+1]),this._$AH[a]=l}n&&!r&&this.O(t)}O(t){t===No?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class Eo extends Wo{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===No?void 0:t}}class Lo extends Wo{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==No)}}class Ko extends Wo{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=Ro(this,t,o,0)??No)===vo)return;const e=this._$AH,r=t===No&&e!==No||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==No&&(e===No||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 Zo{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){Ro(this,t)}}const zo=to.litHtmlPolyfillSupport;zo?.(Io,Uo),(to.litHtmlVersions??=[]).push("3.1.0");
489
520
  /**
490
521
  * @license
491
522
  * Copyright 2020 Google LLC
492
523
  * SPDX-License-Identifier: BSD-3-Clause
493
524
  */
494
- const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$litStatic$:t,r:Zo}),Fo=new Map,Do=(t=>(o,...e)=>{const r=e.length;let i,n;const a=[],l=[];let c,s=0,f=!1;for(;s<r;){for(c=o[s];s<r&&void 0!==(n=e[s],i=zo(n));)c+=i+o[++s],f=!0;s!==r&&l.push(n),a.push(c),s++}if(s===r&&a.push(o[r]),f){const t=a.join("$$lit$$");void 0===(o=Fo.get(t))&&(a.raw=a,Fo.set(t,o=a)),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,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class Go extends o.FtLitElement{constructor(){super(...arguments),this.variant=Ao.body1}render(){return this.element?Do`
495
- <${Bo(this.element)}
525
+ const Bo=Symbol.for(""),Fo=t=>{if(t?.r===Bo)return t?._$litStatic$},Do=t=>({_$litStatic$:t,r:Bo}),Ao=new Map,Ho=(t=>(o,...e)=>{const r=e.length;let i,n;const a=[],l=[];let c,s=0,f=!1;for(;s<r;){for(c=o[s];s<r&&void 0!==(n=e[s],i=Fo(n));)c+=i+o[++s],f=!0;s!==r&&l.push(n),a.push(c),s++}if(s===r&&a.push(o[r]),f){const t=a.join("$$lit$$");void 0===(o=Ao.get(t))&&(a.raw=a,Ao.set(t,o=a)),e=l}return t(o,...e)})(Oo);var Go;!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"}(Go||(Go={}));var Po=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class jo extends o.FtLitElement{constructor(){super(...arguments),this.variant=Go.body1}render(){return this.element?Ho`
526
+ <${Do(this.element)}
496
527
  class="ft-typography ft-typography--${this.variant}">
497
528
  <slot></slot>
498
- </${Bo(this.element)}>
499
- `:Do`
529
+ </${Do(this.element)}>
530
+ `:Ho`
500
531
  <slot class="ft-typography ft-typography--${this.variant}"></slot>
501
- `}}Go.styles=[$t,Ct,It,Rt,kt,Ut,Wt,Et,Lt,Kt,Zt,...zt],Ho([r.property()],Go.prototype,"element",void 0),Ho([r.property()],Go.prototype,"variant",void 0),o.customElement("ft-typography")(Go);const Po=o.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),jo=o.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),Mo=o.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),To=o.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),_o=o.FtCssVariableFactory.external(o.designSystemVariables.borderRadiusS,"Design system"),Yo=o.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px"),Vo=e.css`
532
+ `}}jo.styles=[It,Rt,kt,Ut,Wt,Et,Lt,Kt,Zt,zt,Bt,...Ft],Po([r.property()],jo.prototype,"element",void 0),Po([r.property()],jo.prototype,"variant",void 0),o.customElement("ft-typography")(jo);const Mo=o.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),To=o.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),_o=o.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),Yo=o.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),Vo=o.FtCssVariableFactory.external(o.designSystemVariables.borderRadiusS,"Design system"),Xo=o.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px"),qo=e.css`
502
533
  .ft-tooltip--container {
503
534
  display: block;
504
535
  }
@@ -513,21 +544,21 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
513
544
  box-sizing: border-box;
514
545
  overflow: hidden;
515
546
  width: max-content;
516
- max-width: ${Yo};
547
+ max-width: ${Xo};
517
548
  text-align: center;
518
- padding: ${Po};
519
- z-index: ${To};
549
+ padding: ${Mo};
550
+ z-index: ${Yo};
520
551
  }
521
552
 
522
553
  .ft-tooltip--content {
523
554
  padding: 4px 8px;
524
- border-radius: ${_o};
525
- background-color: ${Mo};
526
- color: ${jo};
555
+ border-radius: ${Vo};
556
+ background-color: ${_o};
557
+ color: ${To};
527
558
  position: relative;
528
559
  word-break: break-word;
529
560
  }
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 ne(t,o){return"function"==typeof t?t(o):t}function ae(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 fe(t){return["top","bottom"].includes(ae(t))?"y":"x"}function pe(t){return ce(fe(t))}function de(t){return t.replace(/left|right|bottom|top/g,(t=>ee[t]))}function he(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function ye(t,o,e){let{reference:r,floating:i}=t;const n=fe(o),a=pe(o),l=se(a),c=ae(o),s="y"===n,f=r.x+r.width/2-i.width/2,p=r.y+r.height/2-i.height/2,d=r[l]/2-i[l]/2;let h;switch(c){case"top":h={x:f,y:r.y-i.height};break;case"bottom":h={x:f,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:p};break;case"left":h={x:r.x-i.width,y:p};break;default:h={x:r.x,y:r.y}}switch(le(o)){case"start":h[a]-=d*(e&&s?-1:1);break;case"end":h[a]+=d*(e&&s?-1:1)}return h}async function ge(t,o){var e;void 0===o&&(o={});const{x:r,y:i,platform:n,rects:a,elements:l,strategy:c}=t,{boundary:s="clippingAncestors",rootBoundary:f="viewport",elementContext:p="floating",altBoundary:d=!1,padding:h=0}=ne(o,t),y=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),g=l[d?"floating"===p?"reference":"floating":p],u=he(await n.getClippingRect({element:null==(e=await(null==n.isElement?void 0:n.isElement(g)))||e?g:g.contextElement||await(null==n.getDocumentElement?void 0:n.getDocumentElement(l.floating)),boundary:s,rootBoundary:f,strategy:c})),b="floating"===p?{...a.floating,x:r,y:i}:a.reference,m=await(null==n.getOffsetParent?void 0:n.getOffsetParent(l.floating)),x=await(null==n.isElement?void 0:n.isElement(m))&&await(null==n.getScale?void 0:n.getScale(m))||{x:1,y:1},O=he(n.convertOffsetParentRelativeRectToViewportRelativeRect?await n.convertOffsetParentRelativeRectToViewportRelativeRect({rect:b,offsetParent:m,strategy:c}):b);return{top:(u.top-O.top+y.top)/x.y,bottom:(O.bottom-u.bottom+y.bottom)/x.y,left:(u.left-O.left+y.left)/x.x,right:(O.right-u.right+y.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=>ae(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:n,middlewareData:a,placement:l,platform:c,elements:s}=o,{crossAxis:f=!1,alignment:p,allowedPlacements:d=qo,autoAlignment:h=!0,...y}=ne(t,o),g=void 0!==p||d===qo?ue(p||null,h,d):d,u=await ge(o,y),b=(null==(e=a.autoPlacement)?void 0:e.index)||0,m=g[b];if(null==m)return{};const x=function(t,o,e){void 0===e&&(e=!1);const r=le(t),i=pe(t),n=se(i);let a="x"===i?r===(e?"end":"start")?"right":"left":"start"===r?"bottom":"top";return o.reference[n]>o.floating[n]&&(a=de(a)),[a,de(a)]}(m,n,await(null==c.isRTL?void 0:c.isRTL(s.floating)));if(l!==m)return{reset:{placement:g[0]}};const O=[u[ae(m)],u[x[0]],u[x[1]]],v=[...(null==(r=a.autoPlacement)?void 0:r.overflows)||[],{placement:m,overflows:O}],N=g[b+1];if(N)return{data:{index:b+1,overflows:v},reset:{placement:N}};const S=v.map((t=>{const o=le(t.placement);return[t.placement,o&&f?t.overflows.slice(0,2).reduce(((t,o)=>t+o),0):t.overflows[0],t.overflows]})).sort(((t,o)=>t[1]-o[1])),w=S.filter((t=>t[2].slice(0,le(t[0])?2:3).every((t=>t<=0)))),$=(null==(i=w[0])?void 0:i[0])||S[0][0];return $!==l?{data:{index:b+1,overflows:v},reset:{placement:$}}:{}}}},me=function(t){return void 0===t&&(t={}),{name:"shift",options:t,async fn(o){const{x:e,y:r,placement:i}=o,{mainAxis:n=!0,crossAxis:a=!1,limiter:l={fn:t=>{let{x:o,y:e}=t;return{x:o,y:e}}},...c}=ne(t,o),s={x:e,y:r},f=await ge(o,c),p=fe(ae(i)),d=ce(p);let h=s[d],y=s[p];if(n){const t="y"===d?"bottom":"right";h=ie(h+f["y"===d?"top":"left"],h,h-f[t])}if(a){const t="y"===p?"bottom":"right";y=ie(y+f["y"===p?"top":"left"],y,y-f[t])}const g=l.fn({...o,[d]:h,[p]:y});return{...g,data:{x:g.x-e,y:g.y-r}}}}};function xe(t){return Ne(t)?(t.nodeName||"").toLowerCase():"#document"}function Oe(t){var o;return(null==t||null==(o=t.ownerDocument)?void 0:o.defaultView)||window}function ve(t){var o;return null==(o=(Ne(t)?t.ownerDocument:t.document)||window.document)?void 0:o.documentElement}function Ne(t){return t instanceof Node||t instanceof Oe(t).Node}function Se(t){return t instanceof Element||t instanceof Oe(t).Element}function we(t){return t instanceof HTMLElement||t instanceof Oe(t).HTMLElement}function $e(t){return"undefined"!=typeof ShadowRoot&&(t instanceof ShadowRoot||t instanceof Oe(t).ShadowRoot)}function Ce(t){const{overflow:o,overflowX:e,overflowY:r,display:i}=We(t);return/auto|scroll|overlay|hidden|clip/.test(o+r+e)&&!["inline","contents"].includes(i)}function Ie(t){return["table","td","th"].includes(xe(t))}function Re(t){const o=ke(),e=We(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 ke(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function Ue(t){return["html","body","#document"].includes(xe(t))}function We(t){return Oe(t).getComputedStyle(t)}function Ee(t){return Se(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function Le(t){if("html"===xe(t))return t;const o=t.assignedSlot||t.parentNode||$e(t)&&t.host||ve(t);return $e(o)?o.host:o}function Ke(t){const o=Le(t);return Ue(o)?t.ownerDocument?t.ownerDocument.body:t.body:we(o)&&Ce(o)?o:Ke(o)}function Ze(t,o,e){var r;void 0===o&&(o=[]),void 0===e&&(e=!0);const i=Ke(t),n=i===(null==(r=t.ownerDocument)?void 0:r.body),a=Oe(i);return n?o.concat(a,a.visualViewport||[],Ce(i)?i:[],a.frameElement&&e?Ze(a.frameElement):[]):o.concat(i,Ze(i,[],e))}function ze(t){const o=We(t);let e=parseFloat(o.width)||0,r=parseFloat(o.height)||0;const i=we(t),n=i?t.offsetWidth:e,a=i?t.offsetHeight:r,l=te(e)!==n||te(r)!==a;return l&&(e=n,r=a),{width:e,height:r,$:l}}function Be(t){return Se(t)?t:t.contextElement}function Fe(t){const o=Be(t);if(!we(o))return oe(1);const e=o.getBoundingClientRect(),{width:r,height:i,$:n}=ze(o);let a=(n?te(e.width):e.width)/r,l=(n?te(e.height):e.height)/i;return a&&Number.isFinite(a)||(a=1),l&&Number.isFinite(l)||(l=1),{x:a,y:l}}const De=oe(0);function Ae(t){const o=Oe(t);return ke()&&o.visualViewport?{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}:De}function He(t,o,e,r){void 0===o&&(o=!1),void 0===e&&(e=!1);const i=t.getBoundingClientRect(),n=Be(t);let a=oe(1);o&&(r?Se(r)&&(a=Fe(r)):a=Fe(t));const l=function(t,o,e){return void 0===o&&(o=!1),!(!e||o&&e!==Oe(t))&&o}(n,e,r)?Ae(n):oe(0);let c=(i.left+l.x)/a.x,s=(i.top+l.y)/a.y,f=i.width/a.x,p=i.height/a.y;if(n){const t=Oe(n),o=r&&Se(r)?Oe(r):r;let e=t.frameElement;for(;e&&r&&o!==t;){const t=Fe(e),o=e.getBoundingClientRect(),r=We(e),i=o.left+(e.clientLeft+parseFloat(r.paddingLeft))*t.x,n=o.top+(e.clientTop+parseFloat(r.paddingTop))*t.y;c*=t.x,s*=t.y,f*=t.x,p*=t.y,c+=i,s+=n,e=Oe(e).frameElement}}return he({width:f,height:p,x:c,y:s})}function Ge(t){return He(ve(t)).left+Ee(t).scrollLeft}function Pe(t,o,e){let r;if("viewport"===o)r=function(t,o){const e=Oe(t),r=ve(t),i=e.visualViewport;let n=r.clientWidth,a=r.clientHeight,l=0,c=0;if(i){n=i.width,a=i.height;const t=ke();(!t||t&&"fixed"===o)&&(l=i.offsetLeft,c=i.offsetTop)}return{width:n,height:a,x:l,y:c}}(t,e);else if("document"===o)r=function(t){const o=ve(t),e=Ee(t),r=t.ownerDocument.body,i=Qo(o.scrollWidth,o.clientWidth,r.scrollWidth,r.clientWidth),n=Qo(o.scrollHeight,o.clientHeight,r.scrollHeight,r.clientHeight);let a=-e.scrollLeft+Ge(t);const l=-e.scrollTop;return"rtl"===We(r).direction&&(a+=Qo(o.clientWidth,r.clientWidth)-i),{width:i,height:n,x:a,y:l}}(ve(t));else if(Se(o))r=function(t,o){const e=He(t,!0,"fixed"===o),r=e.top+t.clientTop,i=e.left+t.clientLeft,n=we(t)?Fe(t):oe(1);return{width:t.clientWidth*n.x,height:t.clientHeight*n.y,x:i*n.x,y:r*n.y}}(o,e);else{const e=Ae(t);r={...o,x:o.x-e.x,y:o.y-e.y}}return he(r)}function je(t,o){const e=Le(t);return!(e===o||!Se(e)||Ue(e))&&("fixed"===We(e).position||je(e,o))}function Me(t,o,e){const r=we(o),i=ve(o),n="fixed"===e,a=He(t,!0,n,o);let l={scrollLeft:0,scrollTop:0};const c=oe(0);if(r||!r&&!n)if(("body"!==xe(o)||Ce(i))&&(l=Ee(o)),r){const t=He(o,!0,n,o);c.x=t.x+o.clientLeft,c.y=t.y+o.clientTop}else i&&(c.x=Ge(i));return{x:a.left+l.scrollLeft-c.x,y:a.top+l.scrollTop-c.y,width:a.width,height:a.height}}function Te(t,o){return we(t)&&"fixed"!==We(t).position?o?o(t):t.offsetParent:null}function _e(t,o){const e=Oe(t);if(!we(t))return e;let r=Te(t,o);for(;r&&Ie(r)&&"static"===We(r).position;)r=Te(r,o);return r&&("html"===xe(r)||"body"===xe(r)&&"static"===We(r).position&&!Re(r))?e:r||function(t){let o=Le(t);for(;we(o)&&!Ue(o);){if(Re(o))return o;o=Le(o)}return null}(t)||e}const Ye={convertOffsetParentRelativeRectToViewportRelativeRect:function(t){let{rect:o,offsetParent:e,strategy:r}=t;const i=we(e),n=ve(e);if(e===n)return o;let a={scrollLeft:0,scrollTop:0},l=oe(1);const c=oe(0);if((i||!i&&"fixed"!==r)&&(("body"!==xe(e)||Ce(n))&&(a=Ee(e)),we(e))){const t=He(e);l=Fe(e),c.x=t.x+e.clientLeft,c.y=t.y+e.clientTop}return{width:o.width*l.x,height:o.height*l.y,x:o.x*l.x-a.scrollLeft*l.x+c.x,y:o.y*l.y-a.scrollTop*l.y+c.y}},getDocumentElement:ve,getClippingRect:function(t){let{element:o,boundary:e,rootBoundary:r,strategy:i}=t;const n=[..."clippingAncestors"===e?function(t,o){const e=o.get(t);if(e)return e;let r=Ze(t,[],!1).filter((t=>Se(t)&&"body"!==xe(t))),i=null;const n="fixed"===We(t).position;let a=n?Le(t):t;for(;Se(a)&&!Ue(a);){const o=We(a),e=Re(a);e||"fixed"!==o.position||(i=null),(n?!e&&!i:!e&&"static"===o.position&&i&&["absolute","fixed"].includes(i.position)||Ce(a)&&!e&&je(t,a))?r=r.filter((t=>t!==a)):i=o,a=Le(a)}return o.set(t,r),r}(o,this._c):[].concat(e),r],a=n[0],l=n.reduce(((t,e)=>{const r=Pe(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}),Pe(o,a,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:_e,getElementRects:async function(t){let{reference:o,floating:e,strategy:r}=t;const i=this.getOffsetParent||_e,n=this.getDimensions;return{reference:Me(o,await i(e),r),floating:{x:0,y:0,...await n(e)}}},getClientRects:function(t){return Array.from(t.getClientRects())},getDimensions:function(t){return ze(t)},getScale:Fe,isElement:Se,isRTL:function(t){return"rtl"===We(t).direction}},Ve=(t,o,e)=>{const r=new Map,i={platform:Ye,...e},n={...i.platform,_c:r};return(async(t,o,e)=>{const{placement:r="bottom",strategy:i="absolute",middleware:n=[],platform:a}=e,l=n.filter(Boolean),c=await(null==a.isRTL?void 0:a.isRTL(o));let s=await a.getElementRects({reference:t,floating:o,strategy:i}),{x:f,y:p}=ye(s,r,c),d=r,h={},y=0;for(let e=0;e<l.length;e++){const{name:n,fn:g}=l[e],{x:u,y:b,data:m,reset:x}=await g({x:f,y:p,initialPlacement:r,placement:d,strategy:i,middlewareData:h,rects:s,platform:a,elements:{reference:t,floating:o}});f=null!=u?u:f,p=null!=b?b:p,h={...h,[n]:{...h[n],...m}},x&&y<=50&&(y++,"object"==typeof x&&(x.placement&&(d=x.placement),x.rects&&(s=!0===x.rects?await a.getElementRects({reference:t,floating:o,strategy:i}):x.rects),({x:f,y:p}=ye(s,d,c))),e=-1)}return{x:f,y:p,placement:d,strategy:i,middlewareData:h}})(t,o,{...i,platform:n})};function Xe(t){return function(t){for(let o=t;o;o=qe(o))if(o instanceof Element&&"none"===getComputedStyle(o).display)return null;for(let o=qe(t);o;o=qe(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 qe(t){return t.assignedSlot?t.assignedSlot:t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}var Je,Qe,tr,or=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class er 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`
561
+ `,Jo=["start","end"],Qo=["top","right","bottom","left"].reduce(((t,o)=>t.concat(o,o+"-"+Jo[0],o+"-"+Jo[1])),[]),te=Math.min,oe=Math.max,ee=Math.round,re=t=>({x:t,y:t}),ie={left:"right",right:"left",bottom:"top",top:"bottom"},ne={start:"end",end:"start"};function ae(t,o,e){return oe(t,te(o,e))}function le(t,o){return"function"==typeof t?t(o):t}function ce(t){return t.split("-")[0]}function se(t){return t.split("-")[1]}function fe(t){return"x"===t?"y":"x"}function pe(t){return"y"===t?"height":"width"}function de(t){return["top","bottom"].includes(ce(t))?"y":"x"}function he(t){return fe(de(t))}function ye(t){return t.replace(/left|right|bottom|top/g,(t=>ie[t]))}function ge(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function ue(t,o,e){let{reference:r,floating:i}=t;const n=de(o),a=he(o),l=pe(a),c=ce(o),s="y"===n,f=r.x+r.width/2-i.width/2,p=r.y+r.height/2-i.height/2,d=r[l]/2-i[l]/2;let h;switch(c){case"top":h={x:f,y:r.y-i.height};break;case"bottom":h={x:f,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:p};break;case"left":h={x:r.x-i.width,y:p};break;default:h={x:r.x,y:r.y}}switch(se(o)){case"start":h[a]-=d*(e&&s?-1:1);break;case"end":h[a]+=d*(e&&s?-1:1)}return h}async function be(t,o){var e;void 0===o&&(o={});const{x:r,y:i,platform:n,rects:a,elements:l,strategy:c}=t,{boundary:s="clippingAncestors",rootBoundary:f="viewport",elementContext:p="floating",altBoundary:d=!1,padding:h=0}=le(o,t),y=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),g=l[d?"floating"===p?"reference":"floating":p],u=ge(await n.getClippingRect({element:null==(e=await(null==n.isElement?void 0:n.isElement(g)))||e?g:g.contextElement||await(null==n.getDocumentElement?void 0:n.getDocumentElement(l.floating)),boundary:s,rootBoundary:f,strategy:c})),b="floating"===p?{...a.floating,x:r,y:i}:a.reference,m=await(null==n.getOffsetParent?void 0:n.getOffsetParent(l.floating)),x=await(null==n.isElement?void 0:n.isElement(m))&&await(null==n.getScale?void 0:n.getScale(m))||{x:1,y:1},O=ge(n.convertOffsetParentRelativeRectToViewportRelativeRect?await n.convertOffsetParentRelativeRectToViewportRelativeRect({rect:b,offsetParent:m,strategy:c}):b);return{top:(u.top-O.top+y.top)/x.y,bottom:(O.bottom-u.bottom+y.bottom)/x.y,left:(u.left-O.left+y.left)/x.x,right:(O.right-u.right+y.right)/x.x}}function me(t,o,e){return(t?[...e.filter((o=>se(o)===t)),...e.filter((o=>se(o)!==t))]:e.filter((t=>ce(t)===t))).filter((e=>!t||(se(e)===t||!!o&&function(t){return t.replace(/start|end/g,(t=>ne[t]))}(e)!==e)))}const xe=function(t){return void 0===t&&(t={}),{name:"autoPlacement",options:t,async fn(o){var e,r,i;const{rects:n,middlewareData:a,placement:l,platform:c,elements:s}=o,{crossAxis:f=!1,alignment:p,allowedPlacements:d=Qo,autoAlignment:h=!0,...y}=le(t,o),g=void 0!==p||d===Qo?me(p||null,h,d):d,u=await be(o,y),b=(null==(e=a.autoPlacement)?void 0:e.index)||0,m=g[b];if(null==m)return{};const x=function(t,o,e){void 0===e&&(e=!1);const r=se(t),i=he(t),n=pe(i);let a="x"===i?r===(e?"end":"start")?"right":"left":"start"===r?"bottom":"top";return o.reference[n]>o.floating[n]&&(a=ye(a)),[a,ye(a)]}(m,n,await(null==c.isRTL?void 0:c.isRTL(s.floating)));if(l!==m)return{reset:{placement:g[0]}};const O=[u[ce(m)],u[x[0]],u[x[1]]],v=[...(null==(r=a.autoPlacement)?void 0:r.overflows)||[],{placement:m,overflows:O}],N=g[b+1];if(N)return{data:{index:b+1,overflows:v},reset:{placement:N}};const S=v.map((t=>{const o=se(t.placement);return[t.placement,o&&f?t.overflows.slice(0,2).reduce(((t,o)=>t+o),0):t.overflows[0],t.overflows]})).sort(((t,o)=>t[1]-o[1])),w=S.filter((t=>t[2].slice(0,se(t[0])?2:3).every((t=>t<=0)))),$=(null==(i=w[0])?void 0:i[0])||S[0][0];return $!==l?{data:{index:b+1,overflows:v},reset:{placement:$}}:{}}}},Oe=function(t){return void 0===t&&(t={}),{name:"shift",options:t,async fn(o){const{x:e,y:r,placement:i}=o,{mainAxis:n=!0,crossAxis:a=!1,limiter:l={fn:t=>{let{x:o,y:e}=t;return{x:o,y:e}}},...c}=le(t,o),s={x:e,y:r},f=await be(o,c),p=de(ce(i)),d=fe(p);let h=s[d],y=s[p];if(n){const t="y"===d?"bottom":"right";h=ae(h+f["y"===d?"top":"left"],h,h-f[t])}if(a){const t="y"===p?"bottom":"right";y=ae(y+f["y"===p?"top":"left"],y,y-f[t])}const g=l.fn({...o,[d]:h,[p]:y});return{...g,data:{x:g.x-e,y:g.y-r}}}}};function ve(t){return we(t)?(t.nodeName||"").toLowerCase():"#document"}function Ne(t){var o;return(null==t||null==(o=t.ownerDocument)?void 0:o.defaultView)||window}function Se(t){var o;return null==(o=(we(t)?t.ownerDocument:t.document)||window.document)?void 0:o.documentElement}function we(t){return t instanceof Node||t instanceof Ne(t).Node}function $e(t){return t instanceof Element||t instanceof Ne(t).Element}function Ce(t){return t instanceof HTMLElement||t instanceof Ne(t).HTMLElement}function Ie(t){return"undefined"!=typeof ShadowRoot&&(t instanceof ShadowRoot||t instanceof Ne(t).ShadowRoot)}function Re(t){const{overflow:o,overflowX:e,overflowY:r,display:i}=Le(t);return/auto|scroll|overlay|hidden|clip/.test(o+r+e)&&!["inline","contents"].includes(i)}function ke(t){return["table","td","th"].includes(ve(t))}function Ue(t){const o=We(),e=Le(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 We(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function Ee(t){return["html","body","#document"].includes(ve(t))}function Le(t){return Ne(t).getComputedStyle(t)}function Ke(t){return $e(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function Ze(t){if("html"===ve(t))return t;const o=t.assignedSlot||t.parentNode||Ie(t)&&t.host||Se(t);return Ie(o)?o.host:o}function ze(t){const o=Ze(t);return Ee(o)?t.ownerDocument?t.ownerDocument.body:t.body:Ce(o)&&Re(o)?o:ze(o)}function Be(t,o,e){var r;void 0===o&&(o=[]),void 0===e&&(e=!0);const i=ze(t),n=i===(null==(r=t.ownerDocument)?void 0:r.body),a=Ne(i);return n?o.concat(a,a.visualViewport||[],Re(i)?i:[],a.frameElement&&e?Be(a.frameElement):[]):o.concat(i,Be(i,[],e))}function Fe(t){const o=Le(t);let e=parseFloat(o.width)||0,r=parseFloat(o.height)||0;const i=Ce(t),n=i?t.offsetWidth:e,a=i?t.offsetHeight:r,l=ee(e)!==n||ee(r)!==a;return l&&(e=n,r=a),{width:e,height:r,$:l}}function De(t){return $e(t)?t:t.contextElement}function Ae(t){const o=De(t);if(!Ce(o))return re(1);const e=o.getBoundingClientRect(),{width:r,height:i,$:n}=Fe(o);let a=(n?ee(e.width):e.width)/r,l=(n?ee(e.height):e.height)/i;return a&&Number.isFinite(a)||(a=1),l&&Number.isFinite(l)||(l=1),{x:a,y:l}}const He=re(0);function Ge(t){const o=Ne(t);return We()&&o.visualViewport?{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}:He}function Pe(t,o,e,r){void 0===o&&(o=!1),void 0===e&&(e=!1);const i=t.getBoundingClientRect(),n=De(t);let a=re(1);o&&(r?$e(r)&&(a=Ae(r)):a=Ae(t));const l=function(t,o,e){return void 0===o&&(o=!1),!(!e||o&&e!==Ne(t))&&o}(n,e,r)?Ge(n):re(0);let c=(i.left+l.x)/a.x,s=(i.top+l.y)/a.y,f=i.width/a.x,p=i.height/a.y;if(n){const t=Ne(n),o=r&&$e(r)?Ne(r):r;let e=t.frameElement;for(;e&&r&&o!==t;){const t=Ae(e),o=e.getBoundingClientRect(),r=Le(e),i=o.left+(e.clientLeft+parseFloat(r.paddingLeft))*t.x,n=o.top+(e.clientTop+parseFloat(r.paddingTop))*t.y;c*=t.x,s*=t.y,f*=t.x,p*=t.y,c+=i,s+=n,e=Ne(e).frameElement}}return ge({width:f,height:p,x:c,y:s})}function je(t){return Pe(Se(t)).left+Ke(t).scrollLeft}function Me(t,o,e){let r;if("viewport"===o)r=function(t,o){const e=Ne(t),r=Se(t),i=e.visualViewport;let n=r.clientWidth,a=r.clientHeight,l=0,c=0;if(i){n=i.width,a=i.height;const t=We();(!t||t&&"fixed"===o)&&(l=i.offsetLeft,c=i.offsetTop)}return{width:n,height:a,x:l,y:c}}(t,e);else if("document"===o)r=function(t){const o=Se(t),e=Ke(t),r=t.ownerDocument.body,i=oe(o.scrollWidth,o.clientWidth,r.scrollWidth,r.clientWidth),n=oe(o.scrollHeight,o.clientHeight,r.scrollHeight,r.clientHeight);let a=-e.scrollLeft+je(t);const l=-e.scrollTop;return"rtl"===Le(r).direction&&(a+=oe(o.clientWidth,r.clientWidth)-i),{width:i,height:n,x:a,y:l}}(Se(t));else if($e(o))r=function(t,o){const e=Pe(t,!0,"fixed"===o),r=e.top+t.clientTop,i=e.left+t.clientLeft,n=Ce(t)?Ae(t):re(1);return{width:t.clientWidth*n.x,height:t.clientHeight*n.y,x:i*n.x,y:r*n.y}}(o,e);else{const e=Ge(t);r={...o,x:o.x-e.x,y:o.y-e.y}}return ge(r)}function Te(t,o){const e=Ze(t);return!(e===o||!$e(e)||Ee(e))&&("fixed"===Le(e).position||Te(e,o))}function _e(t,o,e){const r=Ce(o),i=Se(o),n="fixed"===e,a=Pe(t,!0,n,o);let l={scrollLeft:0,scrollTop:0};const c=re(0);if(r||!r&&!n)if(("body"!==ve(o)||Re(i))&&(l=Ke(o)),r){const t=Pe(o,!0,n,o);c.x=t.x+o.clientLeft,c.y=t.y+o.clientTop}else i&&(c.x=je(i));return{x:a.left+l.scrollLeft-c.x,y:a.top+l.scrollTop-c.y,width:a.width,height:a.height}}function Ye(t,o){return Ce(t)&&"fixed"!==Le(t).position?o?o(t):t.offsetParent:null}function Ve(t,o){const e=Ne(t);if(!Ce(t))return e;let r=Ye(t,o);for(;r&&ke(r)&&"static"===Le(r).position;)r=Ye(r,o);return r&&("html"===ve(r)||"body"===ve(r)&&"static"===Le(r).position&&!Ue(r))?e:r||function(t){let o=Ze(t);for(;Ce(o)&&!Ee(o);){if(Ue(o))return o;o=Ze(o)}return null}(t)||e}const Xe={convertOffsetParentRelativeRectToViewportRelativeRect:function(t){let{rect:o,offsetParent:e,strategy:r}=t;const i=Ce(e),n=Se(e);if(e===n)return o;let a={scrollLeft:0,scrollTop:0},l=re(1);const c=re(0);if((i||!i&&"fixed"!==r)&&(("body"!==ve(e)||Re(n))&&(a=Ke(e)),Ce(e))){const t=Pe(e);l=Ae(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-a.scrollLeft*l.x+c.x,y:o.y*l.y-a.scrollTop*l.y+c.y}},getDocumentElement:Se,getClippingRect:function(t){let{element:o,boundary:e,rootBoundary:r,strategy:i}=t;const n=[..."clippingAncestors"===e?function(t,o){const e=o.get(t);if(e)return e;let r=Be(t,[],!1).filter((t=>$e(t)&&"body"!==ve(t))),i=null;const n="fixed"===Le(t).position;let a=n?Ze(t):t;for(;$e(a)&&!Ee(a);){const o=Le(a),e=Ue(a);e||"fixed"!==o.position||(i=null),(n?!e&&!i:!e&&"static"===o.position&&i&&["absolute","fixed"].includes(i.position)||Re(a)&&!e&&Te(t,a))?r=r.filter((t=>t!==a)):i=o,a=Ze(a)}return o.set(t,r),r}(o,this._c):[].concat(e),r],a=n[0],l=n.reduce(((t,e)=>{const r=Me(o,e,i);return t.top=oe(r.top,t.top),t.right=te(r.right,t.right),t.bottom=te(r.bottom,t.bottom),t.left=oe(r.left,t.left),t}),Me(o,a,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:Ve,getElementRects:async function(t){let{reference:o,floating:e,strategy:r}=t;const i=this.getOffsetParent||Ve,n=this.getDimensions;return{reference:_e(o,await i(e),r),floating:{x:0,y:0,...await n(e)}}},getClientRects:function(t){return Array.from(t.getClientRects())},getDimensions:function(t){return Fe(t)},getScale:Ae,isElement:$e,isRTL:function(t){return"rtl"===Le(t).direction}},qe=(t,o,e)=>{const r=new Map,i={platform:Xe,...e},n={...i.platform,_c:r};return(async(t,o,e)=>{const{placement:r="bottom",strategy:i="absolute",middleware:n=[],platform:a}=e,l=n.filter(Boolean),c=await(null==a.isRTL?void 0:a.isRTL(o));let s=await a.getElementRects({reference:t,floating:o,strategy:i}),{x:f,y:p}=ue(s,r,c),d=r,h={},y=0;for(let e=0;e<l.length;e++){const{name:n,fn:g}=l[e],{x:u,y:b,data:m,reset:x}=await g({x:f,y:p,initialPlacement:r,placement:d,strategy:i,middlewareData:h,rects:s,platform:a,elements:{reference:t,floating:o}});f=null!=u?u:f,p=null!=b?b:p,h={...h,[n]:{...h[n],...m}},x&&y<=50&&(y++,"object"==typeof x&&(x.placement&&(d=x.placement),x.rects&&(s=!0===x.rects?await a.getElementRects({reference:t,floating:o,strategy:i}):x.rects),({x:f,y:p}=ue(s,d,c))),e=-1)}return{x:f,y:p,placement:d,strategy:i,middlewareData:h}})(t,o,{...i,platform:n})};function Je(t){return function(t){for(let o=t;o;o=Qe(o))if(o instanceof Element&&"none"===getComputedStyle(o).display)return null;for(let o=Qe(t);o;o=Qe(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 Qe(t){return t.assignedSlot?t.assignedSlot:t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}var tr,or,er,rr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class ir 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`
531
562
  <div part="container"
532
563
  class="ft-tooltip--container ${this.inline?"ft-tooltip--inline":""}"
533
564
  @mouseenter=${this.onHover}
@@ -545,19 +576,19 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
545
576
  </div>
546
577
  </div>
547
578
  </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="",Ve(this.slottedElement,this.tooltip,{platform:{...Ye,getOffsetParent:t=>Ye.getOffsetParent(t,Xe)},middleware:[me({crossAxis:!0}),be({allowedPlacements:[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))}}er.elementDefinitions={"ft-typography":Go},er.styles=Vo,or([r.property()],er.prototype,"text",void 0),or([r.property({type:Boolean})],er.prototype,"manual",void 0),or([r.property({type:Boolean})],er.prototype,"inline",void 0),or([r.property({type:Number})],er.prototype,"delay",void 0),or([r.property()],er.prototype,"position",void 0),or([r.queryAssignedNodes()],er.prototype,"slotNodes",void 0),or([r.query(".ft-tooltip--container")],er.prototype,"container",void 0),or([r.query(".ft-tooltip")],er.prototype,"tooltip",void 0),or([r.query(".ft-tooltip--content")],er.prototype,"tooltipContent",void 0),or([r.state()],er.prototype,"visible",void 0),or([r.eventOptions({passive:!0})],er.prototype,"onTouch",null),or([r.eventOptions({passive:!0})],er.prototype,"onHover",null),or([r.eventOptions({passive:!0})],er.prototype,"onOut",null),or([r.eventOptions({passive:!0})],er.prototype,"onClick",null),o.customElement("ft-tooltip")(er),function(t){t.THUMBS_DOWN="&#xe94d;",t.THUMBS_DOWN_PLAIN="&#xe94e;",t.THUMBS_UP="&#xe94f;",t.THUMBS_UP_PLAIN="&#xe950;",t.STAR="&#xe94c;",t.STAR_PLAIN="&#xe900;",t.DESKTOP="&#xe95e;",t.LIFE_RING="&#xe975;",t.GLOBE="&#xe976;",t.PIGGY_BANK="&#xe977;",t.TABLET_LANDSCAPE="&#xe95f;",t.TABLET_PORTRAIT="&#xe960;",t.MOBILE_LANDSCAPE="&#xe961;",t.MOBILE_PORTRAIT="&#xe962;",t.ARROW_RIGHT_TO_LINE="&#xe95d;",t.THIN_ARROW_UP="&#xe95c;",t.CONTEXTUAL="&#xe95b;",t.CHART_SIMPLE="&#xe968;",t.BARS_PROGRESS="&#xe969;",t.LINE_CHART="&#xe96c;",t.STACKED_CHART="&#xe96d;",t.BOOK_OPEN_GEAR="&#xe96a;",t.BOOK_OPEN_GEAR_SLASH="&#xe96b;",t.DIAGRAM_SUNBURST="&#xe963;",t.DIAGRAM_SANKEY="&#xe964;",t.UNSTRUCTURED_DOC="&#xe95a;",t.RESET="&#xe958;",t.THIN_ARROW_LEFT="&#xe956;",t.THIN_ARROW_RIGHT="&#xe957;",t.MY_COLLECTIONS="&#xe955;",t.OFFLINE_SETTINGS="&#xe954;",t.MY_LIBRARY="&#xe959;",t.RATE_PLAIN="&#xe952;",t.RATE="&#xe953;",t.FEEDBACK_PLAIN="&#xe951;",t.PAUSE="&#xe949;",t.PLAY="&#xe94a;",t.RELATIVES_PLAIN="&#xe947;",t.RELATIVES="&#xe948;",t.SHORTCUT_MENU="&#xe946;",t.PRINT="&#xe944;",t.DEFAULT_ROLES="&#xe945;",t.ACCOUNT_SETTINGS="&#xe943;",t.ONLINE="&#xe941;",t.OFFLINE="&#xe816;",t.UPLOAD="&#xe940;",t.BOOK_PLAIN="&#xe93f;",t.SYNC="&#xe93d;",t.SHARED_PBK="&#xe931;",t.COLLECTIONS="&#xe92a;",t.SEARCH_IN_PUBLICATION="&#xe92f;",t.BOOKS="&#xe806;",t.LOCKER="&#xe93b;",t.ARROW_DOWN="&#xe92b;",t.ARROW_LEFT="&#xe92c;",t.ARROW_RIGHT="&#xe92d;",t.ARROW_UP="&#xe92e;",t.SAVE="&#xe93a;",t.MAILS_AND_NOTIFICATIONS="&#xe939;",t.DOT="&#xe936;",t.MINUS="&#xe937;",t.PLUS="&#xe938;",t.FILTERS="&#xe935;",t.STRIPE_ARROW_RIGHT="&#xe934;",t.STRIPE_ARROW_LEFT="&#xe933;",t.ATTACHMENTS="&#xe932;",t.ADD_BOOKMARK="&#xe804;",t.BOOKMARK="&#xe805;",t.EXPORT="&#xe80f;",t.MENU="&#xe807;",t.TAG="&#xe93e;",t.TAG_PLAIN="&#xe942;",t.COPY_TO_CLIPBOARD="&#xe930;",t.COLUMNS="&#xe928;",t.ARTICLE="&#xe927;",t.CLOSE_PLAIN="&#xe925;",t.CHECK_PLAIN="&#xe926;",t.LOGOUT="&#xe923;",t.SIGN_IN="&#xe922;",t.THIN_ARROW="&#xe921;",t.TRIANGLE_BOTTOM="&#xe91d;",t.TRIANGLE_LEFT="&#xe91e;",t.TRIANGLE_RIGHT="&#xe91f;",t.TRIANGLE_TOP="&#xe920;",t.FACET_HAS_DESCENDANT="&#xe91c;",t.MINUS_PLAIN="&#xe91a;",t.PLUS_PLAIN="&#xe91b;",t.INFO="&#xe919;",t.ICON_EXPAND="&#xe917;",t.ICON_COLLAPSE="&#xe918;",t.ADD_TO_PBK="&#xe800;",t.ALERT="&#xe801;",t.ADD_ALERT="&#xe802;",t.BACK_TO_SEARCH="&#xe803;",t.DOWNLOAD="&#xe808;",t.EDIT="&#xe809;",t.FEEDBACK="&#xe80a;",t.MODIFY_PBK="&#xe80c;",t.SCHEDULED="&#xe80d;",t.SEARCH="&#xe80e;",t.SHARE="&#xe80f1;",t.TOC="&#xe810;",t.WRITE_UGC="&#xe811;",t.TRASH="&#xe812;",t.EXTLINK="&#xe814;",t.EXTLINK_LIGHT="&#xe978;",t.CALENDAR="&#xe815;",t.BOOK="&#xe817;",t.DOWNLOAD_PLAIN="&#xe818;",t.CHECK="&#xe819;",t.TOPICS="&#xe901;",t.EYE="&#xf06e;",t.EYE_SLASH="&#xe970;",t.DISC="&#xe902;",t.CIRCLE="&#xe903;",t.SHARED="&#xe904;",t.SORT_UNSORTED="&#xe905;",t.SORT_UP="&#xe906;",t.SORT_DOWN="&#xe907;",t.WORKING="&#xe908;",t.CLOSE="&#xe909;",t.ZOOM_OUT="&#xe90a;",t.ZOOM_IN="&#xe90b;",t.ZOOM_REALSIZE="&#xe90c;",t.ZOOM_FULLSCREEN="&#xe90d;",t.ADMIN_RESTRICTED="&#xe90e;",t.ADMIN_THEME="&#xe911;",t.WARNING="&#xe913;",t.CONTEXT="&#xe914;",t.SEARCH_HOME="&#xe915;",t.STEPS="&#xe916;",t.HOME="&#xe80b;",t.TRANSLATE="&#xe924;",t.USER="&#xe813;",t.ADMIN="&#xe90f;",t.ANALYTICS="&#xe929;",t.ADMIN_KHUB="&#xe910;",t.ADMIN_USERS="&#xe912;",t.ADMIN_INTEGRATION="&#xe93c;",t.ADMIN_PORTAL="&#xe94b;",t.COMMENT_QUESTION="&#xe965;",t.COMMENT_QUESTION_PLAIN="&#xe966;",t.MESSAGE_BOT="&#xe967;",t.PIP="&#xe973;",t.PIP_WIDE="&#xe974;",t.EXPAND_WIDE="&#xe972;",t.X_MARK="&#xe971;",t.CLONE="&#xe979;",t.CLONE_LINK_SIMPLE="&#xe97a;"}(Je||(Je={})),function(t){t.UNKNOWN="&#xe90a;",t.ABW="&#xe900;",t.AUDIO="&#xe901;",t.AVI="&#xe902;",t.CHM="&#xe904;",t.CODE="&#xe905;",t.CSV="&#xe903;",t.DITA="&#xe906;",t.EPUB="&#xe907;",t.EXCEL="&#xe908;",t.FLAC="&#xe909;",t.GIF="&#xe90b;",t.GZIP="&#xe90c;",t.HTML="&#xe90d;",t.IMAGE="&#xe90e;",t.JPEG="&#xe90f;",t.JSON="&#xe910;",t.M4A="&#xe911;",t.MOV="&#xe912;",t.MP3="&#xe913;",t.MP4="&#xe914;",t.OGG="&#xe915;",t.PDF="&#xe916;",t.PNG="&#xe917;",t.POWERPOINT="&#xe918;",t.RAR="&#xe91a;",t.STP="&#xe91b;",t.TEXT="&#xe91c;",t.VIDEO="&#xe91e;",t.WAV="&#xe91f;",t.WMA="&#xe920;",t.WORD="&#xe921;",t.XML="&#xe922;",t.YAML="&#xe919;",t.ZIP="&#xe923;"}(Qe||(Qe={})),new Map([...["abw"].map((t=>[t,Qe.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,Qe.AUDIO])),...["avi"].map((t=>[t,Qe.AVI])),...["chm","xhs"].map((t=>[t,Qe.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,Qe.CODE])),...["csv"].map((t=>[t,Qe.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,Qe.DITA])),...["epub"].map((t=>[t,Qe.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,Qe.EXCEL])),...["flac"].map((t=>[t,Qe.FLAC])),...["gif"].map((t=>[t,Qe.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,Qe.GZIP])),...["html","htm","xhtml"].map((t=>[t,Qe.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf"].map((t=>[t,Qe.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,Qe.JPEG])),...["json"].map((t=>[t,Qe.JSON])),...["m4a","m4p"].map((t=>[t,Qe.M4A])),...["mov","qt"].map((t=>[t,Qe.MOV])),...["mp3"].map((t=>[t,Qe.MP3])),...["mp4","m4v"].map((t=>[t,Qe.MP4])),...["ogg","oga"].map((t=>[t,Qe.OGG])),...["pdf","ps"].map((t=>[t,Qe.PDF])),...["png"].map((t=>[t,Qe.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,Qe.POWERPOINT])),...["rar"].map((t=>[t,Qe.RAR])),...["stp"].map((t=>[t,Qe.STP])),...["txt","rtf","md","mdown"].map((t=>[t,Qe.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,Qe.VIDEO])),...["wav"].map((t=>[t,Qe.WAV])),...["wma"].map((t=>[t,Qe.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,Qe.WORD])),...["xml","xsl","rdf"].map((t=>[t,Qe.XML])),...["yaml","yml","x-yaml"].map((t=>[t,Qe.YAML])),...["zip"].map((t=>[t,Qe.ZIP]))]),Qe.ABW,Qe.AUDIO,Qe.AVI,Qe.CHM,Qe.CODE,Qe.CSV,Qe.DITA,Qe.EPUB,Qe.EXCEL,Qe.FLAC,Qe.GIF,Qe.GZIP,Qe.HTML,Qe.IMAGE,Qe.JPEG,Qe.JSON,Qe.M4A,Qe.MOV,Qe.MP3,Qe.MP4,Qe.OGG,Qe.PDF,Qe.PNG,Qe.POWERPOINT,Qe.RAR,Qe.STP,Qe.TEXT,Qe.UNKNOWN,Qe.VIDEO,Qe.WAV,Qe.WMA,Qe.WORD,Qe.XML,Qe.YAML,Qe.ZIP,function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(tr||(tr={}));var rr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class ir extends o.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=e.nothing}render(){const t=this.variant&&Object.values(tr).includes(this.variant)?this.variant:tr.fluid_topics,o=t!==tr.material||!!this.value;return e.html`
579
+ `}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="",qe(this.slottedElement,this.tooltip,{platform:{...Xe,getOffsetParent:t=>Xe.getOffsetParent(t,Je)},middleware:[Oe({crossAxis:!0}),xe({allowedPlacements:[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))}}ir.elementDefinitions={"ft-typography":jo},ir.styles=qo,rr([r.property()],ir.prototype,"text",void 0),rr([r.property({type:Boolean})],ir.prototype,"manual",void 0),rr([r.property({type:Boolean})],ir.prototype,"inline",void 0),rr([r.property({type:Number})],ir.prototype,"delay",void 0),rr([r.property()],ir.prototype,"position",void 0),rr([r.queryAssignedNodes()],ir.prototype,"slotNodes",void 0),rr([r.query(".ft-tooltip--container")],ir.prototype,"container",void 0),rr([r.query(".ft-tooltip")],ir.prototype,"tooltip",void 0),rr([r.query(".ft-tooltip--content")],ir.prototype,"tooltipContent",void 0),rr([r.state()],ir.prototype,"visible",void 0),rr([r.eventOptions({passive:!0})],ir.prototype,"onTouch",null),rr([r.eventOptions({passive:!0})],ir.prototype,"onHover",null),rr([r.eventOptions({passive:!0})],ir.prototype,"onOut",null),rr([r.eventOptions({passive:!0})],ir.prototype,"onClick",null),o.customElement("ft-tooltip")(ir),function(t){t.THUMBS_DOWN="&#xe94d;",t.THUMBS_DOWN_PLAIN="&#xe94e;",t.THUMBS_UP="&#xe94f;",t.THUMBS_UP_PLAIN="&#xe950;",t.STAR="&#xe94c;",t.STAR_PLAIN="&#xe900;",t.DESKTOP="&#xe95e;",t.LIFE_RING="&#xe975;",t.GLOBE="&#xe976;",t.PIGGY_BANK="&#xe977;",t.TABLET_LANDSCAPE="&#xe95f;",t.TABLET_PORTRAIT="&#xe960;",t.MOBILE_LANDSCAPE="&#xe961;",t.MOBILE_PORTRAIT="&#xe962;",t.ARROW_RIGHT_TO_LINE="&#xe95d;",t.THIN_ARROW_UP="&#xe95c;",t.CONTEXTUAL="&#xe95b;",t.CHART_SIMPLE="&#xe968;",t.BARS_PROGRESS="&#xe969;",t.LINE_CHART="&#xe96c;",t.STACKED_CHART="&#xe96d;",t.BOOK_OPEN_GEAR="&#xe96a;",t.BOOK_OPEN_GEAR_SLASH="&#xe96b;",t.DIAGRAM_SUNBURST="&#xe963;",t.DIAGRAM_SANKEY="&#xe964;",t.UNSTRUCTURED_DOC="&#xe95a;",t.RESET="&#xe958;",t.THIN_ARROW_LEFT="&#xe956;",t.THIN_ARROW_RIGHT="&#xe957;",t.MY_COLLECTIONS="&#xe955;",t.OFFLINE_SETTINGS="&#xe954;",t.MY_LIBRARY="&#xe959;",t.RATE_PLAIN="&#xe952;",t.RATE="&#xe953;",t.FEEDBACK_PLAIN="&#xe951;",t.PAUSE="&#xe949;",t.PLAY="&#xe94a;",t.RELATIVES_PLAIN="&#xe947;",t.RELATIVES="&#xe948;",t.SHORTCUT_MENU="&#xe946;",t.PRINT="&#xe944;",t.DEFAULT_ROLES="&#xe945;",t.ACCOUNT_SETTINGS="&#xe943;",t.ONLINE="&#xe941;",t.OFFLINE="&#xe816;",t.UPLOAD="&#xe940;",t.BOOK_PLAIN="&#xe93f;",t.SYNC="&#xe93d;",t.SHARED_PBK="&#xe931;",t.COLLECTIONS="&#xe92a;",t.SEARCH_IN_PUBLICATION="&#xe92f;",t.BOOKS="&#xe806;",t.LOCKER="&#xe93b;",t.ARROW_DOWN="&#xe92b;",t.ARROW_LEFT="&#xe92c;",t.ARROW_RIGHT="&#xe92d;",t.ARROW_UP="&#xe92e;",t.SAVE="&#xe93a;",t.MAILS_AND_NOTIFICATIONS="&#xe939;",t.DOT="&#xe936;",t.MINUS="&#xe937;",t.PLUS="&#xe938;",t.FILTERS="&#xe935;",t.STRIPE_ARROW_RIGHT="&#xe934;",t.STRIPE_ARROW_LEFT="&#xe933;",t.ATTACHMENTS="&#xe932;",t.ADD_BOOKMARK="&#xe804;",t.BOOKMARK="&#xe805;",t.EXPORT="&#xe80f;",t.MENU="&#xe807;",t.TAG="&#xe93e;",t.TAG_PLAIN="&#xe942;",t.COPY_TO_CLIPBOARD="&#xe930;",t.COLUMNS="&#xe928;",t.ARTICLE="&#xe927;",t.CLOSE_PLAIN="&#xe925;",t.CHECK_PLAIN="&#xe926;",t.LOGOUT="&#xe923;",t.SIGN_IN="&#xe922;",t.THIN_ARROW="&#xe921;",t.TRIANGLE_BOTTOM="&#xe91d;",t.TRIANGLE_LEFT="&#xe91e;",t.TRIANGLE_RIGHT="&#xe91f;",t.TRIANGLE_TOP="&#xe920;",t.FACET_HAS_DESCENDANT="&#xe91c;",t.MINUS_PLAIN="&#xe91a;",t.PLUS_PLAIN="&#xe91b;",t.INFO="&#xe919;",t.ICON_EXPAND="&#xe917;",t.ICON_COLLAPSE="&#xe918;",t.ADD_TO_PBK="&#xe800;",t.ALERT="&#xe801;",t.ADD_ALERT="&#xe802;",t.BACK_TO_SEARCH="&#xe803;",t.DOWNLOAD="&#xe808;",t.EDIT="&#xe809;",t.FEEDBACK="&#xe80a;",t.MODIFY_PBK="&#xe80c;",t.SCHEDULED="&#xe80d;",t.SEARCH="&#xe80e;",t.SHARE="&#xe80f1;",t.TOC="&#xe810;",t.WRITE_UGC="&#xe811;",t.TRASH="&#xe812;",t.EXTLINK="&#xe814;",t.EXTLINK_LIGHT="&#xe978;",t.CALENDAR="&#xe815;",t.BOOK="&#xe817;",t.DOWNLOAD_PLAIN="&#xe818;",t.CHECK="&#xe819;",t.TOPICS="&#xe901;",t.EYE="&#xf06e;",t.EYE_SLASH="&#xe970;",t.DISC="&#xe902;",t.CIRCLE="&#xe903;",t.SHARED="&#xe904;",t.SORT_UNSORTED="&#xe905;",t.SORT_UP="&#xe906;",t.SORT_DOWN="&#xe907;",t.WORKING="&#xe908;",t.CLOSE="&#xe909;",t.ZOOM_OUT="&#xe90a;",t.ZOOM_IN="&#xe90b;",t.ZOOM_REALSIZE="&#xe90c;",t.ZOOM_FULLSCREEN="&#xe90d;",t.ADMIN_RESTRICTED="&#xe90e;",t.ADMIN_THEME="&#xe911;",t.WARNING="&#xe913;",t.CONTEXT="&#xe914;",t.SEARCH_HOME="&#xe915;",t.STEPS="&#xe916;",t.HOME="&#xe80b;",t.TRANSLATE="&#xe924;",t.USER="&#xe813;",t.ADMIN="&#xe90f;",t.ANALYTICS="&#xe929;",t.ADMIN_KHUB="&#xe910;",t.ADMIN_USERS="&#xe912;",t.ADMIN_INTEGRATION="&#xe93c;",t.ADMIN_PORTAL="&#xe94b;",t.COMMENT_QUESTION="&#xe965;",t.COMMENT_QUESTION_PLAIN="&#xe966;",t.MESSAGE_BOT="&#xe967;",t.PIP="&#xe973;",t.PIP_WIDE="&#xe974;",t.EXPAND_WIDE="&#xe972;",t.X_MARK="&#xe971;",t.CLONE="&#xe979;",t.CLONE_LINK_SIMPLE="&#xe97a;"}(tr||(tr={})),function(t){t.UNKNOWN="&#xe90a;",t.ABW="&#xe900;",t.AUDIO="&#xe901;",t.AVI="&#xe902;",t.CHM="&#xe904;",t.CODE="&#xe905;",t.CSV="&#xe903;",t.DITA="&#xe906;",t.EPUB="&#xe907;",t.EXCEL="&#xe908;",t.FLAC="&#xe909;",t.GIF="&#xe90b;",t.GZIP="&#xe90c;",t.HTML="&#xe90d;",t.IMAGE="&#xe90e;",t.JPEG="&#xe90f;",t.JSON="&#xe910;",t.M4A="&#xe911;",t.MOV="&#xe912;",t.MP3="&#xe913;",t.MP4="&#xe914;",t.OGG="&#xe915;",t.PDF="&#xe916;",t.PNG="&#xe917;",t.POWERPOINT="&#xe918;",t.RAR="&#xe91a;",t.STP="&#xe91b;",t.TEXT="&#xe91c;",t.VIDEO="&#xe91e;",t.WAV="&#xe91f;",t.WMA="&#xe920;",t.WORD="&#xe921;",t.XML="&#xe922;",t.YAML="&#xe919;",t.ZIP="&#xe923;"}(or||(or={})),new Map([...["abw"].map((t=>[t,or.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,or.AUDIO])),...["avi"].map((t=>[t,or.AVI])),...["chm","xhs"].map((t=>[t,or.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,or.CODE])),...["csv"].map((t=>[t,or.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,or.DITA])),...["epub"].map((t=>[t,or.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,or.EXCEL])),...["flac"].map((t=>[t,or.FLAC])),...["gif"].map((t=>[t,or.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,or.GZIP])),...["html","htm","xhtml"].map((t=>[t,or.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf"].map((t=>[t,or.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,or.JPEG])),...["json"].map((t=>[t,or.JSON])),...["m4a","m4p"].map((t=>[t,or.M4A])),...["mov","qt"].map((t=>[t,or.MOV])),...["mp3"].map((t=>[t,or.MP3])),...["mp4","m4v"].map((t=>[t,or.MP4])),...["ogg","oga"].map((t=>[t,or.OGG])),...["pdf","ps"].map((t=>[t,or.PDF])),...["png"].map((t=>[t,or.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,or.POWERPOINT])),...["rar"].map((t=>[t,or.RAR])),...["stp"].map((t=>[t,or.STP])),...["txt","rtf","md","mdown"].map((t=>[t,or.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,or.VIDEO])),...["wav"].map((t=>[t,or.WAV])),...["wma"].map((t=>[t,or.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,or.WORD])),...["xml","xsl","rdf"].map((t=>[t,or.XML])),...["yaml","yml","x-yaml"].map((t=>[t,or.YAML])),...["zip"].map((t=>[t,or.ZIP]))]),or.ABW,or.AUDIO,or.AVI,or.CHM,or.CODE,or.CSV,or.DITA,or.EPUB,or.EXCEL,or.FLAC,or.GIF,or.GZIP,or.HTML,or.IMAGE,or.JPEG,or.JSON,or.M4A,or.MOV,or.MP3,or.MP4,or.OGG,or.PDF,or.PNG,or.POWERPOINT,or.RAR,or.STP,or.TEXT,or.UNKNOWN,or.VIDEO,or.WAV,or.WMA,or.WORD,or.XML,or.YAML,or.ZIP,function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(er||(er={}));var nr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class ar extends o.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=e.nothing}render(){const t=this.variant&&Object.values(er).includes(this.variant)?this.variant:er.fluid_topics,o=t!==er.material||!!this.value;return e.html`
549
580
  <i class="ft-icon ft-icon--${t}" part="icon icon-${t}">
550
581
  ${n.unsafeHTML(this.resolvedIcon)}
551
582
  <slot ?hidden=${o}></slot>
552
583
  </i>
553
- `}get textContent(){var t,o;return null!==(o=null===(t=this.slottedContent)||void 0===t?void 0:t.assignedNodes().map((t=>t.textContent)).join("").trim())&&void 0!==o?o:""}update(t){super.update(t),["value","variant"].some((o=>t.has(o)))&&this.resolveIcon()}resolveIcon(){var t,o;let r=this.value||this.textContent;switch(this.variant){case tr.file_format:this.resolvedIcon=null!==(t=Qe[r.replace("-","_").toUpperCase()])&&void 0!==t?t:r;break;case tr.material:this.resolvedIcon=this.value||e.nothing;break;default:this.resolvedIcon=null!==(o=Je[r.replace("-","_").toUpperCase()])&&void 0!==o?o:r}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}ir.elementDefinitions={},ir.styles=At,rr([r.property()],ir.prototype,"variant",void 0),rr([r.property()],ir.prototype,"value",void 0),rr([r.state()],ir.prototype,"resolvedIcon",void 0),rr([r.query("slot")],ir.prototype,"slottedContent",void 0),o.customElement("ft-icon")(ir);class nr extends o.FtLitElement{render(){return e.html`
584
+ `}get textContent(){var t,o;return null!==(o=null===(t=this.slottedContent)||void 0===t?void 0:t.assignedNodes().map((t=>t.textContent)).join("").trim())&&void 0!==o?o:""}update(t){super.update(t),["value","variant"].some((o=>t.has(o)))&&this.resolveIcon()}resolveIcon(){var t,o;let r=this.value||this.textContent;switch(this.variant){case er.file_format:this.resolvedIcon=null!==(t=or[r.replace("-","_").toUpperCase()])&&void 0!==t?t:r;break;case er.material:this.resolvedIcon=this.value||e.nothing;break;default:this.resolvedIcon=null!==(o=tr[r.replace("-","_").toUpperCase()])&&void 0!==o?o:r}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}ar.elementDefinitions={},ar.styles=Gt,nr([r.property()],ar.prototype,"variant",void 0),nr([r.property()],ar.prototype,"value",void 0),nr([r.state()],ar.prototype,"resolvedIcon",void 0),nr([r.query("slot")],ar.prototype,"slottedContent",void 0),o.customElement("ft-icon")(ar);class lr extends o.FtLitElement{render(){return e.html`
554
585
  <div class="ft-loader">
555
586
  <div></div>
556
587
  <div></div>
557
588
  <div></div>
558
589
  <div></div>
559
590
  </div>
560
- `}}nr.styles=Ft,o.customElement("ft-loader")(nr);var ar=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class lr extends(o.toFtFormComponent(o.FtLitElement,"button")){constructor(){super(...arguments),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.onclick=t=>{var o;this.isDisabled()?(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation()):"submit"==this.type&&(null===(o=this.form)||void 0===o||o.requestSubmit())}}render(){return this.addTooltipIfNeeded(e.html`
591
+ `}}lr.styles=At,o.customElement("ft-loader")(lr);var cr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class sr extends(o.toFtFormComponent(o.FtLitElement,"button")){constructor(){super(...arguments),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.onclick=t=>{var o;this.isDisabled()?(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation()):"submit"==this.type&&(null===(o=this.form)||void 0===o||o.requestSubmit())}}render(){return this.addTooltipIfNeeded(e.html`
561
592
  <button part="button"
562
593
  class="${i.classMap(this.buttonClasses)}"
563
594
  aria-label="${this.getLabel()}"
@@ -580,7 +611,7 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
580
611
  </ft-tooltip>
581
612
  `:t}resolveIcon(){return this.loading?e.html`
582
613
  <ft-loader part="loader icon"></ft-loader> `:this.icon?e.html`
583
- <ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon> `:e.nothing}focus(){var t;null===(t=this.button)||void 0===t||t.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(t){return t instanceof HTMLSlotElement?t.assignedNodes().map((t=>this.unslotText(t))).join(""):(null==t?void 0:t.textContent)||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}}lr.elementDefinitions={"ft-ripple":qt,"ft-tooltip":er,"ft-typography":Go,"ft-icon":ir,"ft-loader":nr},ar([r.property({type:String,reflect:!0})],lr.prototype,"role",void 0),ar([r.property()],lr.prototype,"type",void 0),ar([r.property({type:Boolean})],lr.prototype,"disabled",void 0),ar([r.property()],lr.prototype,"label",void 0),ar([r.property()],lr.prototype,"icon",void 0),ar([r.property()],lr.prototype,"iconVariant",void 0),ar([r.property({type:Boolean})],lr.prototype,"trailingIcon",void 0),ar([r.property({type:Boolean})],lr.prototype,"loading",void 0),ar([r.property()],lr.prototype,"tooltipPosition",void 0),ar([r.property({type:Boolean})],lr.prototype,"hideTooltip",void 0),ar([r.property({type:Boolean})],lr.prototype,"forceTooltip",void 0),ar([r.query(".ft-button")],lr.prototype,"button",void 0),ar([r.query(".ft-button--label slot")],lr.prototype,"slottedContent",void 0);var cr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class sr extends lr{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"}}sr.styles=[o.safariEllipsisFix,Vt],cr([r.property({type:Boolean})],sr.prototype,"primary",void 0),cr([r.property({type:Boolean})],sr.prototype,"outlined",void 0),cr([r.property({type:Boolean})],sr.prototype,"dense",void 0),cr([r.property({type:Boolean})],sr.prototype,"round",void 0);const fr=[e.css`
614
+ <ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon> `:e.nothing}focus(){var t;null===(t=this.button)||void 0===t||t.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(t){return t instanceof HTMLSlotElement?t.assignedNodes().map((t=>this.unslotText(t))).join(""):(null==t?void 0:t.textContent)||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}}sr.elementDefinitions={"ft-ripple":Qt,"ft-tooltip":ir,"ft-typography":jo,"ft-icon":ar,"ft-loader":lr},cr([r.property({type:String,reflect:!0})],sr.prototype,"role",void 0),cr([r.property()],sr.prototype,"type",void 0),cr([r.property({type:Boolean})],sr.prototype,"disabled",void 0),cr([r.property()],sr.prototype,"label",void 0),cr([r.property()],sr.prototype,"icon",void 0),cr([r.property()],sr.prototype,"iconVariant",void 0),cr([r.property({type:Boolean})],sr.prototype,"trailingIcon",void 0),cr([r.property({type:Boolean})],sr.prototype,"loading",void 0),cr([r.property()],sr.prototype,"tooltipPosition",void 0),cr([r.property({type:Boolean})],sr.prototype,"hideTooltip",void 0),cr([r.property({type:Boolean})],sr.prototype,"forceTooltip",void 0),cr([r.query(".ft-button")],sr.prototype,"button",void 0),cr([r.query(".ft-button--label slot")],sr.prototype,"slottedContent",void 0);var fr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class pr extends sr{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"}}pr.styles=[o.safariEllipsisFix,qt],fr([r.property({type:Boolean})],pr.prototype,"primary",void 0),fr([r.property({type:Boolean})],pr.prototype,"outlined",void 0),fr([r.property({type:Boolean})],pr.prototype,"dense",void 0),fr([r.property({type:Boolean})],pr.prototype,"round",void 0);const dr=[e.css`
584
615
  :host {
585
616
  display: inline-block;
586
617
  max-width: 100%;
@@ -630,7 +661,7 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
630
661
  }
631
662
 
632
663
  .ft-button:focus-visible {
633
- outline-color: ${O.focusFocusRingColor};
664
+ outline-color: ${N.focusFocusRingColor};
634
665
  outline-style: solid;
635
666
  }
636
667
 
@@ -659,181 +690,146 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
659
690
  /** Primary styles **/
660
691
 
661
692
  .ft-button--primary {
662
- ${o.setVariable(Bt.color,O.primaryIconColor)};
693
+ ${o.setVariable(Dt.color,N.primaryIconColor)};
663
694
 
664
- ${o.setVariable(l.color,O.primaryStateLayerColor)};
665
- ${o.setVariable(l.opacityContentOnSurfaceHover,O.primaryStateLayerOpacityHover)};
666
- ${o.setVariable(l.opacityContentOnSurfaceFocused,O.primaryStateLayerOpacityFocus)};
667
- ${o.setVariable(l.opacityContentOnSurfaceSelected,O.primaryStateLayerOpacityActive)};
668
- ${o.setVariable(l.opacityContentOnSurfacePressed,O.primaryStateLayerOpacityActive)};
695
+ ${o.setVariable(s.color,N.primaryStateLayerColor)};
696
+ ${o.setVariable(s.opacityContentOnSurfaceHover,N.primaryStateLayerOpacityHover)};
697
+ ${o.setVariable(s.opacityContentOnSurfaceFocused,N.primaryStateLayerOpacityFocus)};
698
+ ${o.setVariable(s.opacityContentOnSurfaceSelected,N.primaryStateLayerOpacityActive)};
699
+ ${o.setVariable(s.opacityContentOnSurfacePressed,N.primaryStateLayerOpacityActive)};
669
700
 
670
- background-color: ${O.primaryBackgroundColor};
671
- color: ${O.primaryColor};
701
+ background-color: ${N.primaryBackgroundColor};
702
+ color: ${N.primaryColor};
672
703
  border-style: none;
673
704
  }
674
705
 
675
706
  .ft-button--primary[disabled] {
676
- opacity: ${O.primaryComponentOpacityDisabled};
707
+ opacity: ${N.primaryComponentOpacityDisabled};
677
708
  }
678
709
 
679
710
  .ft-button--primary ft-icon {
680
- color: ${O.primaryIconColor};
711
+ color: ${N.primaryIconColor};
681
712
  }
682
713
 
683
714
  /** Secondary styles **/
684
715
 
685
716
  .ft-button--secondary {
686
- ${o.setVariable(Bt.color,O.secondaryIconColor)};
717
+ ${o.setVariable(Dt.color,N.secondaryIconColor)};
687
718
 
688
- ${o.setVariable(l.color,O.secondaryStateLayerColor)};
689
- ${o.setVariable(l.opacityContentOnSurfaceHover,O.secondaryStateLayerOpacityHover)};
690
- ${o.setVariable(l.opacityContentOnSurfaceFocused,O.secondaryStateLayerOpacityFocus)};
691
- ${o.setVariable(l.opacityContentOnSurfaceSelected,O.secondaryStateLayerOpacityActive)};
692
- ${o.setVariable(l.opacityContentOnSurfacePressed,O.secondaryStateLayerOpacityActive)};
719
+ ${o.setVariable(s.color,N.secondaryStateLayerColor)};
720
+ ${o.setVariable(s.opacityContentOnSurfaceHover,N.secondaryStateLayerOpacityHover)};
721
+ ${o.setVariable(s.opacityContentOnSurfaceFocused,N.secondaryStateLayerOpacityFocus)};
722
+ ${o.setVariable(s.opacityContentOnSurfaceSelected,N.secondaryStateLayerOpacityActive)};
723
+ ${o.setVariable(s.opacityContentOnSurfacePressed,N.secondaryStateLayerOpacityActive)};
693
724
 
694
- background-color: ${O.secondaryBackgroundColor};
695
- color: ${O.secondaryColor};
696
- border-color: ${O.secondaryBorderColor};
725
+ background-color: ${N.secondaryBackgroundColor};
726
+ color: ${N.secondaryColor};
727
+ border-color: ${N.secondaryBorderColor};
697
728
  border-style: solid;
698
729
  }
699
730
 
700
731
  .ft-button--secondary[disabled] {
701
- opacity: ${O.secondaryComponentOpacityDisabled};
732
+ opacity: ${N.secondaryComponentOpacityDisabled};
702
733
  }
703
734
 
704
735
  .ft-button--secondary ft-icon {
705
- color: ${O.secondaryIconColor};
736
+ color: ${N.secondaryIconColor};
706
737
  }
707
738
 
708
739
  /** Tertiary styles **/
709
740
 
710
741
  .ft-button--tertiary {
711
- ${o.setVariable(Bt.color,O.tertiaryIconColor)};
742
+ ${o.setVariable(Dt.color,N.tertiaryIconColor)};
712
743
 
713
- ${o.setVariable(l.color,O.tertiaryStateLayerColor)};
714
- ${o.setVariable(l.opacityContentOnSurfaceHover,O.tertiaryStateLayerOpacityHover)};
715
- ${o.setVariable(l.opacityContentOnSurfaceFocused,O.tertiaryStateLayerOpacityFocus)};
716
- ${o.setVariable(l.opacityContentOnSurfaceSelected,O.tertiaryStateLayerOpacityActive)};
717
- ${o.setVariable(l.opacityContentOnSurfacePressed,O.tertiaryStateLayerOpacityActive)};
744
+ ${o.setVariable(s.color,N.tertiaryStateLayerColor)};
745
+ ${o.setVariable(s.opacityContentOnSurfaceHover,N.tertiaryStateLayerOpacityHover)};
746
+ ${o.setVariable(s.opacityContentOnSurfaceFocused,N.tertiaryStateLayerOpacityFocus)};
747
+ ${o.setVariable(s.opacityContentOnSurfaceSelected,N.tertiaryStateLayerOpacityActive)};
748
+ ${o.setVariable(s.opacityContentOnSurfacePressed,N.tertiaryStateLayerOpacityActive)};
718
749
 
719
- background-color: ${O.tertiaryBackgroundColor};
720
- color: ${O.tertiaryColor};
750
+ background-color: ${N.tertiaryBackgroundColor};
751
+ color: ${N.tertiaryColor};
721
752
  border-style: none;
722
753
  }
723
754
 
724
755
  .ft-button--tertiary[disabled] {
725
- opacity: ${O.tertiaryComponentOpacityDisabled};
756
+ opacity: ${N.tertiaryComponentOpacityDisabled};
726
757
  }
727
758
 
728
759
  .ft-button--tertiary ft-icon {
729
- color: ${O.tertiaryIconColor};
760
+ color: ${N.tertiaryIconColor};
730
761
  }
731
762
 
732
763
  /** Neutral styles **/
733
764
 
734
765
  .ft-button--neutral {
735
- ${o.setVariable(Bt.color,O.neutralIconColor)};
766
+ ${o.setVariable(Dt.color,N.neutralIconColor)};
736
767
 
737
- ${o.setVariable(l.backgroundColor,O.neutralStateLayerColor)};
738
- ${o.setVariable(l.opacityContentOnSurfaceHover,O.neutralStateLayerOpacityHover)};
739
- ${o.setVariable(l.opacityContentOnSurfaceFocused,O.neutralStateLayerOpacityFocus)};
740
- ${o.setVariable(l.opacityContentOnSurfaceSelected,O.neutralStateLayerOpacityActive)};
741
- ${o.setVariable(l.opacityContentOnSurfacePressed,O.neutralStateLayerOpacityActive)};
768
+ ${o.setVariable(s.backgroundColor,N.neutralStateLayerColor)};
769
+ ${o.setVariable(s.opacityContentOnSurfaceHover,N.neutralStateLayerOpacityHover)};
770
+ ${o.setVariable(s.opacityContentOnSurfaceFocused,N.neutralStateLayerOpacityFocus)};
771
+ ${o.setVariable(s.opacityContentOnSurfaceSelected,N.neutralStateLayerOpacityActive)};
772
+ ${o.setVariable(s.opacityContentOnSurfacePressed,N.neutralStateLayerOpacityActive)};
742
773
 
743
- background-color: ${O.neutralBackgroundColor};
744
- color: ${O.neutralColor};
774
+ background-color: ${N.neutralBackgroundColor};
775
+ color: ${N.neutralColor};
745
776
  border-style: none;
746
777
  }
747
778
 
748
779
  .ft-button--neutral[disabled] {
749
- opacity: ${O.neutralComponentOpacityDisabled};
780
+ opacity: ${N.neutralComponentOpacityDisabled};
750
781
  }
751
782
 
752
783
  .ft-button--neutral ft-icon {
753
- color: ${O.neutralIconColor};
784
+ color: ${N.neutralIconColor};
754
785
  }
755
786
 
756
787
  /** Large styles **/
757
788
 
758
789
  .ft-button--large {
759
- ${o.setVariable(Dt.size,O.largeIconSize)};
760
- ${o.setVariable(Bt.size,O.largeIconSize)};
790
+ ${o.setVariable(Ht.size,N.largeIconSize)};
791
+ ${o.setVariable(Dt.size,N.largeIconSize)};
761
792
 
762
- height: ${O.largeHeight};
763
- padding: 0 ${O.largeHorizontalPadding};
764
- gap: ${O.largeGap};
765
- border-radius: ${O.largeBorderRadius};
766
- border-width: ${O.largeBorderWidth};
793
+ height: ${N.largeHeight};
794
+ padding: 0 ${N.largeHorizontalPadding};
795
+ gap: ${N.largeGap};
796
+ border-radius: ${N.largeBorderRadius};
797
+ border-width: ${N.largeBorderWidth};
767
798
  }
768
799
 
769
800
  .ft-button--large:focus-visible {
770
- outline-width: ${O.largeFocusOutlineWidth};
771
- outline-offset: ${O.largeFocusOutlineOffset};
801
+ outline-width: ${N.largeFocusOutlineWidth};
802
+ outline-offset: ${N.largeFocusOutlineOffset};
772
803
  }
773
804
 
774
805
  .ft-button--large.ft-button--icon-only {
775
- width: ${O.largeIconOnlyWidth};
806
+ width: ${N.largeIconOnlyWidth};
776
807
  padding: unset;
777
808
  }
778
809
 
779
810
  /** Small styles **/
780
811
 
781
812
  .ft-button--small {
782
- ${o.setVariable(Dt.size,O.smallIconSize)};
783
- ${o.setVariable(Bt.size,O.smallIconSize)};
813
+ ${o.setVariable(Ht.size,N.smallIconSize)};
814
+ ${o.setVariable(Dt.size,N.smallIconSize)};
784
815
 
785
- height: ${O.smallHeight};
786
- padding: 0 ${O.smallHorizontalPadding};
787
- gap: ${O.smallGap};
788
- border-radius: ${O.smallBorderRadius};
789
- border-width: ${O.smallBorderWidth};
816
+ height: ${N.smallHeight};
817
+ padding: 0 ${N.smallHorizontalPadding};
818
+ gap: ${N.smallGap};
819
+ border-radius: ${N.smallBorderRadius};
820
+ border-width: ${N.smallBorderWidth};
790
821
  }
791
822
 
792
823
  .ft-button--small:focus-visible {
793
- outline-width: ${O.smallFocusOutlineWidth};
794
- outline-offset: ${O.smallFocusOutlineOffset};
824
+ outline-width: ${N.smallFocusOutlineWidth};
825
+ outline-offset: ${N.smallFocusOutlineOffset};
795
826
  }
796
827
 
797
828
  .ft-button--small.ft-button--icon-only {
798
- width: ${O.smallIconOnlyWidth};
829
+ width: ${N.smallIconOnlyWidth};
799
830
  padding: unset;
800
831
  }
801
- `,o.noTextSelect];var pr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class dr extends lr{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?Ao.caption1medium:Ao.body2medium}}dr.styles=[o.safariEllipsisFix,fr],pr([r.property({type:Boolean})],dr.prototype,"primary",void 0),pr([r.property({type:Boolean})],dr.prototype,"secondary",void 0),pr([r.property({type:Boolean})],dr.prototype,"tertiary",void 0),pr([r.property({type:Boolean})],dr.prototype,"neutral",void 0),pr([r.property({type:Boolean})],dr.prototype,"small",void 0),o.customElement("ft-button")(sr),o.customElement("ftds-button")(dr);const hr={zIndex:o.FtCssVariableFactory.create("--ft-floating-menu-z-index","","NUMBER","8"),maxWidth:o.FtCssVariableFactory.create("--ft-floating-menu-max-width","","SIZE","300px"),maxHeight:o.FtCssVariableFactory.create("--ft-floating-menu-max-height","","SIZE","500px"),textColor:o.FtCssVariableFactory.extend("--ft-floating-menu-text-color","",o.designSystemVariables.colorOnSurfaceHigh),colorSurface:o.FtCssVariableFactory.external(o.designSystemVariables.colorSurface,"Design system"),menuElevation:o.FtCssVariableFactory.external(o.designSystemVariables.elevation02,"Design system"),borderRadiusS:o.FtCssVariableFactory.external(o.designSystemVariables.borderRadiusS,"Design system"),buttonBackgroundColor:o.FtCssVariableFactory.create("--ft-floating-menu-button-background-color","","COLOR",o.designSystemVariables.colorSurface)},yr=e.css`
802
- .ft-floating-menu {
803
- color: ${hr.textColor};
804
- display: inline-block;
805
- }
806
-
807
- .ft-floating-menu--wrapper {
808
- position: absolute;
809
- visibility: hidden;
810
- }
811
-
812
- .ft-floating-menu--wrapper.ft-floating-menu--wrapper-positioned {
813
- visibility: visible;
814
- }
815
-
816
- .ft-floating-menu--options {
817
- display: none;
818
- position: relative;
819
- overflow: auto;
820
- max-width: ${hr.maxWidth};
821
- max-height: ${hr.maxHeight};
822
- box-shadow: ${hr.menuElevation};
823
- background-color: ${hr.colorSurface};
824
- border-radius: ${hr.borderRadiusS};
825
- color: ${hr.textColor};
826
- z-index: ${hr.zIndex};
827
- }
828
-
829
- .ft-floating-menu--open .ft-floating-menu--options {
830
- display: block;
831
- }
832
-
833
- [part="button"] {
834
- ${o.setVariable(Gt.backgroundColor,hr.buttonBackgroundColor)}
835
- }
836
- `,gr={iconColor:o.FtCssVariableFactory.extend("--ft-floating-menu-icon-color","",o.designSystemVariables.colorOnSurfaceMedium)},ur=e.css`
832
+ `,o.noTextSelect];var hr=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class yr extends sr{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?Go.caption1medium:Go.body2medium}}yr.styles=[o.safariEllipsisFix,dr],hr([r.property({type:Boolean})],yr.prototype,"primary",void 0),hr([r.property({type:Boolean})],yr.prototype,"secondary",void 0),hr([r.property({type:Boolean})],yr.prototype,"tertiary",void 0),hr([r.property({type:Boolean})],yr.prototype,"neutral",void 0),hr([r.property({type:Boolean})],yr.prototype,"small",void 0),o.customElement("ft-button")(pr),o.customElement("ftds-button")(yr);const gr={iconColor:o.FtCssVariableFactory.extend("--ft-floating-menu-icon-color","",o.designSystemVariables.colorOnSurfaceMedium)},ur=e.css`
837
833
  .ft-floating-menu-item {
838
834
  cursor: pointer;
839
835
  display: flex;
@@ -874,7 +870,7 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
874
870
  <slot></slot>
875
871
  </ft-typography>
876
872
  </div>
877
- `}onClick(t){this.dispatchEvent(new mr(this.value))}}xr.elementDefinitions={"ft-icon":ir,"ft-ripple":qt,"ft-typography":Go},xr.styles=ur,br([r.property()],xr.prototype,"iconVariant",void 0),br([r.property()],xr.prototype,"icon",void 0),br([r.property()],xr.prototype,"value",void 0);var Or=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class vr extends o.FtLitElement{constructor(){super(...arguments),this.menuOpen=!1,this.forceMenuOpen=!1,this.primary=!1,this.secondary=!1,this.tertiary=!1,this.neutral=!1,this.small=!1,this.iconVariant=tr.fluid_topics,this.icon="SHORTCUT_MENU",this.horizontalAlignment="left",this.verticalAlignment="bottom",this.disabled=!1,this.closeMenuMatchers=[],this.hideOptions=t=>{this.menuOpen=this.menuOpen&&t.composedPath().includes(this.container),this.menuOpen||document.removeEventListener("click",this.hideOptions)}}render(){const t={"ft-floating-menu":!0,"ft-floating-menu--open":this.forceMenuOpen||this.menuOpen,["ft-floating-menu--"+this.horizontalAlignment.toLowerCase()]:!0,["ft-floating-menu--"+this.verticalAlignment.toLowerCase()]:!0};return e.html`
873
+ `}onClick(t){this.dispatchEvent(new mr(this.value))}}xr.elementDefinitions={"ft-icon":ar,"ft-ripple":Qt,"ft-typography":jo},xr.styles=ur,br([r.property()],xr.prototype,"iconVariant",void 0),br([r.property()],xr.prototype,"icon",void 0),br([r.property()],xr.prototype,"value",void 0);var Or=function(t,o,e,r){for(var i,n=arguments.length,a=n<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(o,e,a):i(o,e))||a);return n>3&&a&&Object.defineProperty(o,e,a),a};class vr extends o.FtLitElement{constructor(){super(...arguments),this.menuOpen=!1,this.forceMenuOpen=!1,this.primary=!1,this.secondary=!1,this.tertiary=!1,this.neutral=!1,this.small=!1,this.iconVariant=er.fluid_topics,this.icon="SHORTCUT_MENU",this.horizontalAlignment="left",this.verticalAlignment="bottom",this.disabled=!1,this.closeMenuMatchers=[],this.hideOptions=t=>{this.menuOpen=this.menuOpen&&t.composedPath().includes(this.container),this.menuOpen||document.removeEventListener("click",this.hideOptions)}}render(){const t={"ft-floating-menu":!0,"ft-floating-menu--open":this.forceMenuOpen||this.menuOpen,["ft-floating-menu--"+this.horizontalAlignment.toLowerCase()]:!0,["ft-floating-menu--"+this.verticalAlignment.toLowerCase()]:!0};return e.html`
878
874
  <div class="${i.classMap(t)}">
879
875
 
880
876
  <slot name="toggle"
@@ -910,7 +906,7 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
910
906
  </div>
911
907
  </div>
912
908
  </div>
913
- `}onClick(){this.menuOpen=!this.menuOpen,setTimeout((()=>document.addEventListener("click",this.hideOptions)))}onClickItem(){this.closeMenu()}closeMenu(){this.menuOpen=!1}onCloseEvent(t){t.stopPropagation(),this.closeMenu()}onContentClick(t){o.eventPathContainsMatchingElement(t,this.closeMenuMatchers,this)&&(this.closeMenu(),t.stopPropagation())}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("click",this.hideOptions)}contentAvailableCallback(t){super.contentAvailableCallback(t),["menuOpen"].some((o=>t.has(o)))&&this.menuOpen&&(this.menuWrapper.classList.remove("ft-floating-menu--wrapper-positioned"),this.positionMenuWrapper())}positionMenuWrapper(){this.menuWrapper.style.left="",this.menuWrapper.style.top="";const t=this.customToggle.length>0?this.customToggle[0]:this.actionButton;Ve(t,this.menuWrapper,{platform:{...Ye,getOffsetParent:t=>Ye.getOffsetParent(t,Xe)},middleware:[me({crossAxis:!0}),be({allowedPlacements:[this.convertPlacement()]})]}).then((({x:t,y:o})=>{this.menuWrapper.style.left=`${t}px`,this.menuWrapper.style.top=`${o}px`})),this.menuWrapper.classList.add("ft-floating-menu--wrapper-positioned")}convertPlacement(){switch(this.horizontalAlignment){case"left":return this.verticalAlignment+"-start";case"right":return this.verticalAlignment+"-end";case"center":return this.verticalAlignment+"-center"}}}vr.elementDefinitions={"ft-floating-menu-item":xr},Or([r.state()],vr.prototype,"menuOpen",void 0),Or([r.state()],vr.prototype,"forceMenuOpen",void 0),Or([r.query(".ft-floating-menu")],vr.prototype,"container",void 0),Or([r.query(".ft-floating-menu--wrapper")],vr.prototype,"menuWrapper",void 0),Or([r.query("#ft-floating-menu-options")],vr.prototype,"menuContent",void 0),Or([r.query("#actions-button")],vr.prototype,"actionButton",void 0),Or([r.queryAssignedElements({slot:"toggle"})],vr.prototype,"customToggle",void 0),Or([r.property({type:Boolean})],vr.prototype,"primary",void 0),Or([r.property({type:Boolean})],vr.prototype,"secondary",void 0),Or([r.property({type:Boolean})],vr.prototype,"tertiary",void 0),Or([r.property({type:Boolean})],vr.prototype,"neutral",void 0),Or([r.property({type:Boolean})],vr.prototype,"small",void 0),Or([r.property()],vr.prototype,"label",void 0),Or([r.property()],vr.prototype,"tooltipPosition",void 0),Or([r.property()],vr.prototype,"iconVariant",void 0),Or([r.property()],vr.prototype,"icon",void 0),Or([r.property()],vr.prototype,"text",void 0),Or([r.property()],vr.prototype,"horizontalAlignment",void 0),Or([r.property()],vr.prototype,"verticalAlignment",void 0),Or([r.property({type:Boolean})],vr.prototype,"disabled",void 0),Or([o.jsonProperty([])],vr.prototype,"closeMenuMatchers",void 0);class Nr extends vr{}Nr.elementDefinitions={"ft-or-ftds-button":sr},Nr.styles=yr;class Sr extends vr{}Sr.elementDefinitions={"ft-or-ftds-button":dr},Sr.styles=yr;const wr={color:o.FtCssVariableFactory.extend("--ft-floating-menu-label-color","",o.designSystemVariables.colorOnSurfaceMedium)},$r=e.css`
909
+ `}onClick(){this.menuOpen=!this.menuOpen,setTimeout((()=>document.addEventListener("click",this.hideOptions)))}onClickItem(){this.closeMenu()}closeMenu(){this.menuOpen=!1}onCloseEvent(t){t.stopPropagation(),this.closeMenu()}onContentClick(t){o.eventPathContainsMatchingElement(t,this.closeMenuMatchers,this)&&(this.closeMenu(),t.stopPropagation())}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("click",this.hideOptions)}contentAvailableCallback(t){super.contentAvailableCallback(t),["menuOpen"].some((o=>t.has(o)))&&this.menuOpen&&(this.menuWrapper.classList.remove("ft-floating-menu--wrapper-positioned"),this.positionMenuWrapper())}positionMenuWrapper(){this.menuWrapper.style.left="",this.menuWrapper.style.top="";const t=this.customToggle.length>0?this.customToggle[0]:this.actionButton;qe(t,this.menuWrapper,{platform:{...Xe,getOffsetParent:t=>Xe.getOffsetParent(t,Je)},middleware:[Oe({crossAxis:!0}),xe({allowedPlacements:[this.convertPlacement()]})]}).then((({x:t,y:o})=>{this.menuWrapper.style.left=`${t}px`,this.menuWrapper.style.top=`${o}px`})),this.menuWrapper.classList.add("ft-floating-menu--wrapper-positioned")}convertPlacement(){switch(this.horizontalAlignment){case"left":return this.verticalAlignment+"-start";case"right":return this.verticalAlignment+"-end";case"center":return this.verticalAlignment+"-center"}}}vr.elementDefinitions={"ft-floating-menu-item":xr},Or([r.state()],vr.prototype,"menuOpen",void 0),Or([r.state()],vr.prototype,"forceMenuOpen",void 0),Or([r.query(".ft-floating-menu")],vr.prototype,"container",void 0),Or([r.query(".ft-floating-menu--wrapper")],vr.prototype,"menuWrapper",void 0),Or([r.query("#ft-floating-menu-options")],vr.prototype,"menuContent",void 0),Or([r.query("#actions-button")],vr.prototype,"actionButton",void 0),Or([r.queryAssignedElements({slot:"toggle"})],vr.prototype,"customToggle",void 0),Or([r.property({type:Boolean})],vr.prototype,"primary",void 0),Or([r.property({type:Boolean})],vr.prototype,"secondary",void 0),Or([r.property({type:Boolean})],vr.prototype,"tertiary",void 0),Or([r.property({type:Boolean})],vr.prototype,"neutral",void 0),Or([r.property({type:Boolean})],vr.prototype,"small",void 0),Or([r.property()],vr.prototype,"label",void 0),Or([r.property()],vr.prototype,"tooltipPosition",void 0),Or([r.property()],vr.prototype,"iconVariant",void 0),Or([r.property()],vr.prototype,"icon",void 0),Or([r.property()],vr.prototype,"text",void 0),Or([r.property()],vr.prototype,"horizontalAlignment",void 0),Or([r.property()],vr.prototype,"verticalAlignment",void 0),Or([r.property({type:Boolean})],vr.prototype,"disabled",void 0),Or([o.jsonProperty([])],vr.prototype,"closeMenuMatchers",void 0);class Nr extends vr{}Nr.elementDefinitions={"ft-or-ftds-button":pr},Nr.styles=l;class Sr extends vr{}Sr.elementDefinitions={"ft-or-ftds-button":yr},Sr.styles=l;const wr={color:o.FtCssVariableFactory.extend("--ft-floating-menu-label-color","",o.designSystemVariables.colorOnSurfaceMedium)},$r=e.css`
914
910
  .ft-floating-menu-label {
915
911
  padding: 4px 8px;
916
912
  }
@@ -929,4 +925,4 @@ const Zo=Symbol.for(""),zo=t=>{if(t?.r===Zo)return t?._$litStatic$},Bo=t=>({_$li
929
925
  <slot></slot>
930
926
  </ft-typography>
931
927
  </div>
932
- `}}Cr.elementDefinitions={"ft-typography":Go},Cr.styles=$r,o.customElement("ft-floating-menu")(Nr),o.customElement("ftds-floating-menu")(Sr),o.customElement("ft-floating-menu-item")(xr),o.customElement("ft-floating-menu-label")(Cr),t.FtFloatingMenu=Nr,t.FtFloatingMenuCssVariables=hr,t.FtFloatingMenuItem=xr,t.FtFloatingMenuItemCssVariables=gr,t.FtFloatingMenuItemSelect=mr,t.FtFloatingMenuLabel=Cr,t.FtFloatingMenuLabelCssVariables=wr,t.FtdsFloatingMenu=Sr,t.itemStyles=ur,t.labelStyles=$r,t.styles=yr}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litClassMap,ftGlobals.litUnsafeHTML);
928
+ `}}Cr.elementDefinitions={"ft-typography":jo},Cr.styles=$r,o.customElement("ft-floating-menu")(Nr),o.customElement("ftds-floating-menu")(Sr),o.customElement("ft-floating-menu-item")(xr),o.customElement("ft-floating-menu-label")(Cr),t.FtFloatingMenu=Nr,t.FtFloatingMenuCssVariables=a,t.FtFloatingMenuItem=xr,t.FtFloatingMenuItemCssVariables=gr,t.FtFloatingMenuItemSelect=mr,t.FtFloatingMenuLabel=Cr,t.FtFloatingMenuLabelCssVariables=wr,t.FtdsFloatingMenu=Sr,t.itemStyles=ur,t.labelStyles=$r,t.styles=l}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litClassMap,ftGlobals.litUnsafeHTML);