@fluid-topics/ft-reader-attachments 1.1.70 → 1.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ft-reader-attachments.light.js +171 -163
- package/build/ft-reader-attachments.min.js +361 -301
- package/package.json +9 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";(()=>{var ur=Object.create;var bt=Object.defineProperty;var br=Object.getOwnPropertyDescriptor;var xr=Object.getOwnPropertyNames;var Sr=Object.getPrototypeOf,Or=Object.prototype.hasOwnProperty;var re=(t,o)=>()=>(o||t((o={exports:{}}).exports,o),o.exports);var Cr=(t,o,i,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let a of xr(o))!Or.call(t,a)&&a!==i&&bt(t,a,{get:()=>o[a],enumerable:!(l=br(o,a))||l.enumerable});return t};var y=(t,o,i)=>(i=t!=null?ur(Sr(t)):{},Cr(o||!t||!t.__esModule?bt(i,"default",{value:t,enumerable:!0}):i,t));var S=re((zr,xt)=>{xt.exports=ftGlobals.wcUtils});var A=re(($r,St)=>{St.exports=ftGlobals.lit});var H=re((Hr,Ot)=>{Ot.exports=ftGlobals.litDecorators});var Tt=re((Yr,Pt)=>{Pt.exports=ftGlobals.litRepeat});var Qt=re((pi,Jt)=>{Jt.exports=ftGlobals.litUnsafeHTML});var ut=re((lp,sr)=>{sr.exports=ftGlobals.litClassMap});var mr=y(S());var oe=y(A()),ue=y(H()),Xe=y(S());var Wt=y(A()),O=y(S());var Rt=y(A()),N=y(S()),Ct=N.FtCssVariableFactory.extend("--ft-ripple-color","",N.designSystemVariables.colorContent),z={color:Ct,backgroundColor:N.FtCssVariableFactory.extend("--ft-ripple-background-color","",Ct),opacityContentOnSurfacePressed:N.FtCssVariableFactory.external(N.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:N.FtCssVariableFactory.external(N.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:N.FtCssVariableFactory.external(N.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:N.FtCssVariableFactory.external(N.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:N.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},vt=N.FtCssVariableFactory.extend("--ft-ripple-color","",N.designSystemVariables.colorPrimary),Nt={color:vt,backgroundColor:N.FtCssVariableFactory.extend("--ft-ripple-background-color","",vt)},Et=N.FtCssVariableFactory.extend("--ft-ripple-color","",N.designSystemVariables.colorSecondary),wt={color:Et,backgroundColor:N.FtCssVariableFactory.extend("--ft-ripple-background-color","",Et)},At=Rt.css`
|
|
2
2
|
:host {
|
|
3
3
|
display: contents;
|
|
4
4
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
.ft-ripple:not(.ft-ripple--unbounded) {
|
|
13
13
|
overflow: hidden;
|
|
14
|
-
border-radius: ${
|
|
14
|
+
border-radius: ${z.borderRadius};
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.ft-ripple .ft-ripple--background,
|
|
@@ -45,27 +45,27 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.ft-ripple .ft-ripple--background {
|
|
48
|
-
background-color: ${
|
|
48
|
+
background-color: ${z.backgroundColor};
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.ft-ripple .ft-ripple--effect {
|
|
52
|
-
background-color: ${
|
|
52
|
+
background-color: ${z.color};
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.ft-ripple.ft-ripple--secondary .ft-ripple--background {
|
|
56
|
-
background-color: ${
|
|
56
|
+
background-color: ${wt.backgroundColor};
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.ft-ripple.ft-ripple--secondary .ft-ripple--effect {
|
|
60
|
-
background-color: ${
|
|
60
|
+
background-color: ${wt.color};
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.ft-ripple.ft-ripple--primary .ft-ripple--background {
|
|
64
|
-
background-color: ${
|
|
64
|
+
background-color: ${Nt.backgroundColor};
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.ft-ripple.ft-ripple--primary .ft-ripple--effect {
|
|
68
|
-
background-color: ${
|
|
68
|
+
background-color: ${Nt.color};
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.ft-ripple .ft-ripple--background {
|
|
@@ -95,22 +95,22 @@
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.ft-ripple.ft-ripple--hovered .ft-ripple--background {
|
|
98
|
-
opacity: ${
|
|
98
|
+
opacity: ${z.opacityContentOnSurfaceHover};
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.ft-ripple.ft-ripple--selected .ft-ripple--background {
|
|
102
|
-
opacity: ${
|
|
102
|
+
opacity: ${z.opacityContentOnSurfaceSelected};
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.ft-ripple.ft-ripple--focused .ft-ripple--background {
|
|
106
|
-
opacity: ${
|
|
106
|
+
opacity: ${z.opacityContentOnSurfaceFocused};
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.ft-ripple.ft-ripple--pressed .ft-ripple--effect {
|
|
110
|
-
opacity: ${
|
|
110
|
+
opacity: ${z.opacityContentOnSurfacePressed};
|
|
111
111
|
transform: translate(-50%, -50%) scale(1);
|
|
112
112
|
}
|
|
113
|
-
|
|
113
|
+
`;var Lt=y(A()),G=y(S()),I={size:G.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:G.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",G.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:G.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",G.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:G.FtCssVariableFactory.extend("--ft-icon-material-font-family","",G.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:G.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},It=Lt.css`
|
|
114
114
|
:host, i.ft-icon {
|
|
115
115
|
display: inline-flex;
|
|
116
116
|
align-items: center;
|
|
@@ -119,14 +119,14 @@
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
:host {
|
|
122
|
-
width: ${
|
|
123
|
-
height: ${
|
|
122
|
+
width: ${I.size};
|
|
123
|
+
height: ${I.size};
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
i.ft-icon {
|
|
127
127
|
width: 100%;
|
|
128
128
|
height: 100%;
|
|
129
|
-
font-size: ${
|
|
129
|
+
font-size: ${I.size};
|
|
130
130
|
line-height: 1;
|
|
131
131
|
font-weight: normal;
|
|
132
132
|
text-transform: none;
|
|
@@ -137,40 +137,40 @@
|
|
|
137
137
|
text-rendering: auto;
|
|
138
138
|
-webkit-font-smoothing: antialiased;
|
|
139
139
|
-moz-osx-font-smoothing: grayscale;
|
|
140
|
-
vertical-align: ${
|
|
140
|
+
vertical-align: ${I.verticalAlign};
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
i.ft-icon.ft-icon--fluid-topics {
|
|
144
|
-
font-family: ${
|
|
144
|
+
font-family: ${I.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
|
|
145
145
|
|
|
146
146
|
/* Ugly fix because font is broken */
|
|
147
|
-
font-size: calc(0.75 * ${
|
|
148
|
-
line-height: ${
|
|
147
|
+
font-size: calc(0.75 * ${I.size});
|
|
148
|
+
line-height: ${I.size};
|
|
149
149
|
position: relative;
|
|
150
150
|
top: -4%;
|
|
151
151
|
justify-content: center;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
.ft-icon--file-format {
|
|
155
|
-
font-family: ${
|
|
155
|
+
font-family: ${I.fileFormatFontFamily}, ft-mime, sans-serif;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
.ft-icon--material {
|
|
159
|
-
font-family: ${
|
|
159
|
+
font-family: ${I.materialFontFamily}, "Material Icons", sans-serif;
|
|
160
160
|
}
|
|
161
|
-
|
|
161
|
+
`;var W={itemsGap:O.FtCssVariableFactory.create("--ft-reader-attachments-items-gap","","SIZE","8px"),itemPadding:O.FtCssVariableFactory.create("--ft-reader-attachments-item-padding","","SIZE","8px"),itemBorderWidth:O.FtCssVariableFactory.create("--ft-reader-attachments-item-border-width","","SIZE","1px"),itemBorderColor:O.FtCssVariableFactory.extend("--ft-reader-attachments-item-border-color","",O.designSystemVariables.colorOutline),itemBorderRadius:O.FtCssVariableFactory.extend("--ft-reader-attachments-item-border-radius","",O.designSystemVariables.borderRadiusS),itemBackgroundColor:O.FtCssVariableFactory.extend("--ft-reader-attachments-item-background-color","",O.designSystemVariables.colorSurface),itemTextColor:O.FtCssVariableFactory.extend("--ft-reader-attachments-item-text-color","",O.designSystemVariables.colorOnSurfaceMedium),itemHoverBackgroundColor:O.FtCssVariableFactory.extend("--ft-reader-attachments-item-hover-background-color","",O.designSystemVariables.colorPrimary),itemHoverTextColor:O.FtCssVariableFactory.extend("--ft-reader-attachments-item-hover-text-color","",O.designSystemVariables.colorOnSurfaceHigh),fileFormatIconSize:O.FtCssVariableFactory.create("--ft-reader-attachments-file-format-icon-size","","SIZE","30px"),downloadIconSize:O.FtCssVariableFactory.create("--ft-reader-attachments-down-icon-size","","SIZE","20px")},Bt=Wt.css`
|
|
162
162
|
[part="container"] {
|
|
163
163
|
display: flex;
|
|
164
164
|
flex-direction: column;
|
|
165
|
-
gap: ${
|
|
165
|
+
gap: ${W.itemsGap};
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
[part="attachment"] {
|
|
169
169
|
border-style: solid;
|
|
170
|
-
border-width: ${
|
|
171
|
-
border-color: ${
|
|
172
|
-
border-radius: ${
|
|
173
|
-
background-color: ${
|
|
170
|
+
border-width: ${W.itemBorderWidth};
|
|
171
|
+
border-color: ${W.itemBorderColor};
|
|
172
|
+
border-radius: ${W.itemBorderRadius};
|
|
173
|
+
background-color: ${W.itemBackgroundColor};
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
[part="attachment"], [part="viewer-link"], [part="download-link"] {
|
|
@@ -180,14 +180,14 @@
|
|
|
180
180
|
|
|
181
181
|
[part="viewer-link"], [part="download-link"] {
|
|
182
182
|
position: relative;
|
|
183
|
-
color: ${
|
|
183
|
+
color: ${W.itemTextColor};
|
|
184
184
|
text-decoration: none;
|
|
185
|
-
padding: ${
|
|
185
|
+
padding: ${W.itemPadding};
|
|
186
186
|
align-items: center;
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
[part="viewer-link"]:hover, [part="download-link"]:hover {
|
|
190
|
-
color: ${
|
|
190
|
+
color: ${W.itemHoverTextColor};
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
[part="viewer-link"] {
|
|
@@ -202,16 +202,16 @@
|
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
[part~="ripple"] {
|
|
205
|
-
${
|
|
206
|
-
${
|
|
205
|
+
${(0,O.setVariable)(z.color,W.itemHoverBackgroundColor)};
|
|
206
|
+
${(0,O.setVariable)(z.borderRadius,W.itemBorderRadius)};
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
[part="file-format-icon"] {
|
|
210
|
-
${
|
|
210
|
+
${(0,O.setVariable)(I.size,W.fileFormatIconSize)};
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
[part="download-icon"] {
|
|
214
|
-
${
|
|
214
|
+
${(0,O.setVariable)(I.size,W.downloadIconSize)};
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
.hide-file-format-icon [part="file-format-icon"] {
|
|
@@ -225,174 +225,182 @@
|
|
|
225
225
|
.hide-download-icon [part="download-link"] {
|
|
226
226
|
display: none;
|
|
227
227
|
}
|
|
228
|
-
`;var
|
|
229
|
-
|
|
230
|
-
|
|
228
|
+
`;var _t=y(S()),kt=y(H());var Ut;(function(t){t.FEEDBACK="FEEDBACK",t.RATING="RATING",t.PRINT="PRINT",t.BOOKMARK="BOOKMARK",t.COLLECTIONS="COLLECTIONS",t.PERSONAL_BOOKS="PERSONAL_BOOKS"})(Ut||(Ut={}));var vr=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},Je=class extends Event{constructor(){super("register-ft-reader-component",{bubbles:!0,composed:!0})}},qe=Symbol("registerInterval");function Nr(t){var o;class i extends t{constructor(){super(...arguments),this[o]=0}setReaderStateManager(a){this.clearStateManager(),this.stateManager=a,this.addStore(a.store,"reader")}clearStateManager(){this.stateManager&&(this.removeStore("reader"),this.stateManager=void 0)}get service(){var a;return(a=this.stateManager)===null||a===void 0?void 0:a.service}connectedCallback(){super.connectedCallback(),this[qe]=window.setInterval(()=>this.tryToRegisterToContext(),50)}tryToRegisterToContext(){this.stateManager!=null?window.clearInterval(this[qe]):this.dispatchEvent(new Je)}disconnectedCallback(){super.disconnectedCallback(),this.clearStateManager()}}return o=qe,vr([(0,kt.state)()],i.prototype,"stateManager",void 0),i}var Ae=class extends Nr(_t.FtLitElementRedux){};var hr=y(Tt());var Xt=y(S());var ze=y(A()),$e=y(H()),He=y(S());var zt=y(A());var $t=zt.css`
|
|
229
|
+
`;var Pe=y(S());var Vt=y(S());var Zt=y(A()),B=y(H()),k=y(S());var Ht=y(A());var Gt=Ht.css`
|
|
230
|
+
`;var Dt=y(S()),Er="ft-app-info",wr={},u=Dt.FtReduxStore.get({name:Er,reducers:wr,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var V=y(S());var Qe=y(S());var q=class t{static get(o){let{baseUrl:i,apiIntegrationIdentifier:l}=u.getState(),a=o??l;if(i&&a&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(i,a,!0)}static await(o){return new Promise(i=>{let l=t.get(o);if(l)i(l);else{let a=u.subscribe(()=>{l=t.get(o),l&&(a(),i(l))})}})}};var F=class{constructor(o=!0,i){var l;this.overrideApi=i;let a=this.constructor;a.commonCache=(l=a.commonCache)!==null&&l!==void 0?l:new Qe.CacheRegistry,this.cache=o?a.commonCache:new Qe.CacheRegistry}get api(){var o;return(o=this.overrideApi)!==null&&o!==void 0?o:q.get()}get awaitApi(){var o;return(o=this.overrideApi)!==null&&o!==void 0?o:q.await()}clearCache(){this.cache.clearAll()}};var Mt,Rr=Symbol("clearAfterUnitTest"),Le=class extends F{constructor(o){super(),this.messageContextProvider=o,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[Mt]=()=>{this.defaultMessages={},this.cache=new V.CacheRegistry,this.listeners={}},this.currentUiLocale=u.getState().uiLocale,u.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:o}=u.getState();this.currentUiLocale!==o&&(this.currentUiLocale=o,this.cache.clearAll(),this.notifyAll())}addContext(o){let i=o.name.toLowerCase();this.cache.setFinal(i,o),this.notify(i)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(o,i){var l;if(o=o.toLowerCase(),Object.keys(i).length>0){let a={...(l=this.defaultMessages[o])!==null&&l!==void 0?l:{},...i};(0,V.deepEqual)(this.defaultMessages[o],a)||(this.defaultMessages[o]=a,await this.notify(o))}await this.fetchContext(o)}resolveMessage(o,i,...l){var a,c,p;o=o.toLowerCase(),this.fetchContext(o);let s=(c=(a=this.cache.getNow(o))===null||a===void 0?void 0:a.messages)!==null&&c!==void 0?c:{};return new V.ParametrizedLabelResolver((p=this.defaultMessages[o])!==null&&p!==void 0?p:{},s).resolve(i,...l)}async fetchContext(o){if(!this.cache.has(o))try{await this.cache.get(o,()=>this.messageContextProvider(this.currentUiLocale,o)),await this.notify(o)}catch(i){console.error(i)}}subscribe(o,i){var l;return o=o.toLowerCase(),this.listeners[o]=(l=this.listeners[o])!==null&&l!==void 0?l:new Set,this.listeners[o].add(i),()=>{var a;return(a=this.listeners[o])===null||a===void 0?void 0:a.delete(i)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(o=>this.notify(o)))}async notify(o){this.listeners[o]!=null&&await Promise.all([...this.listeners[o].values()].map(i=>(0,V.delay)(0).then(()=>i()).catch(()=>null)))}};Mt=Rr;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends Le{constructor(){super(async(t,o)=>(await this.awaitApi).getFluidTopicsMessageContext(t,o))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends Le{constructor(){super(async(t,o)=>(await this.awaitApi).getCustomMessageContext(t,o))}});var ae=window.FluidTopicsI18nService,Kt=window.FluidTopicsCustomI18nService;var R=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},v=class extends k.FtLitElement{constructor(){super(...arguments),this.apiIntegrationIdentifier="ft-integration",this.uiLocale="en-US",this.editorMode=!1,this.noCustom=!1,this.openExternalDocumentInNewTab=!1,this.noCustomComponent=!1,this.withManualResources=!1,this.navigatorOnline=!1,this.forcedOffline=!1,this.apiProvider=()=>q.get(),this.messageContexts=[],this.cache=new k.CacheRegistry,this.cleanSessionDebouncer=new k.Debouncer}render(){return Zt.html`
|
|
231
231
|
<slot></slot>
|
|
232
|
-
`}update(
|
|
232
|
+
`}update(o){super.update(o),o.has("baseUrl")&&(u.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),o.has("apiIntegrationIdentifier")&&u.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),o.has("uiLocale")&&u.actions.uiLocale(this.uiLocale),o.has("metadataConfiguration")&&u.actions.metadataConfiguration(this.metadataConfiguration),o.has("noCustom")&&u.actions.noCustom(this.noCustom),o.has("editorMode")&&u.actions.editorMode(this.editorMode),o.has("noCustomComponent")&&u.actions.noCustomComponent(this.noCustomComponent),o.has("session")&&u.actions.session(this.session),o.has("availableUiLocales")&&u.actions.availableUiLocales(Array.isArray(this.availableUiLocales)?this.availableUiLocales:[]),o.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(i=>ae.addContext(i)),o.has("openExternalDocumentInNewTab")&&u.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),o.has("navigatorOnline")&&u.actions.navigatorOnline(this.navigatorOnline),o.has("forcedOffline")&&u.actions.forcedOffline(this.forcedOffline),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){!this.withManualResources&&this.apiProvider()&&(this.session==null&&this.updateSession(),this.availableUiLocales==null&&this.updateUiLocales(),this.metadataConfiguration==null&&this.updateMetadataConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let o=await this.apiProvider().getCurrentSession();return o.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},o.idleTimeoutInMillis),o})}async updateUiLocales(){this.availableUiLocales=await this.cache.get("availableUiLocales",()=>this.apiProvider().getAvailableUiLocales())}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}};v.elementDefinitions={};v.styles=Gt;R([(0,B.property)()],v.prototype,"baseUrl",void 0);R([(0,B.property)()],v.prototype,"apiIntegrationIdentifier",void 0);R([(0,B.property)()],v.prototype,"uiLocale",void 0);R([(0,k.jsonProperty)(null)],v.prototype,"availableUiLocales",void 0);R([(0,k.jsonProperty)(null)],v.prototype,"metadataConfiguration",void 0);R([(0,B.property)({type:Boolean})],v.prototype,"editorMode",void 0);R([(0,B.property)({type:Boolean})],v.prototype,"noCustom",void 0);R([(0,B.property)({type:Boolean})],v.prototype,"openExternalDocumentInNewTab",void 0);R([(0,B.property)({converter:{fromAttribute(t){return t==="false"?!1:t==="true"||(t??!1)}}})],v.prototype,"noCustomComponent",void 0);R([(0,B.property)({type:Boolean})],v.prototype,"withManualResources",void 0);R([(0,B.property)({type:Boolean})],v.prototype,"navigatorOnline",void 0);R([(0,B.property)({type:Boolean})],v.prototype,"forcedOffline",void 0);R([(0,B.property)({type:Object})],v.prototype,"apiProvider",void 0);R([(0,k.jsonProperty)([])],v.prototype,"messageContexts",void 0);R([(0,k.jsonProperty)(void 0)],v.prototype,"session",void 0);var Ue=y(S());var Ie=class extends F{async listMySearches(){let o=u.getState().session;return o?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(o.profile.userId),5*60*1e3):[]}};var We=class extends F{async listMyBookmarks(){let o=u.getState().session;return o?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(o.profile.userId),5*60*1e3):[]}};var Ar="ft-user-assets",Be=Ue.FtReduxStore.get({name:Ar,initialState:{savedSearches:void 0,bookmarks:void 0}}),et=class{constructor(){this.currentSession=u.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new We,this.savedSearchesService=new Ie,u.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var o;let{session:i}=u.getState();(0,Ue.deepEqual)((o=this.currentSession)===null||o===void 0?void 0:o.profile,i?.profile)||(this.currentSession=i,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),Be.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Be.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let o=await this.savedSearchesService.listMySearches();Be.actions.savedSearches(o)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var o;if(this.bookmarksAreUsed){let i=!((o=this.currentSession)===null||o===void 0)&&o.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;Be.actions.bookmarks(i)}}},Ca=new et;var tt=class{addCommand(o,i=!1){u.commands.add(o,i)}consumeCommand(o){return u.commands.consume(o)}};window.FluidTopicsAppInfoStoreService=new tt;var Ft=y(S()),ot=class{highlightHtml(o,i){(0,Ft.highlightHtml)(o,i)}};window.FluidTopicsHighlightHtmlService=new ot;(0,Vt.customElement)("ft-app-context")(v);var Yt=y(H()),Lr=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},rt=Symbol("i18nAttributes"),_e=Symbol("i18nProperties"),be=Symbol("i18nUnsubs");function Te(t){var o;class i extends t{constructor(){super(...arguments),this.useCustomMessageContexts=!1,this[o]=new Map}get i18nService(){return this.useCustomMessageContexts?Kt:ae}i18n(a,c,...p){var s;if(typeof a=="string")return this.i18nService.resolveMessage(a,c,...p);let g=(s=a.args)!==null&&s!==void 0?s:a.argsProvider?a.argsProvider(this):[];return this.i18nService.resolveMessage(a.context,a.key,...g)}onI18nUpdate(a){var c,p;(c=this[rt])===null||c===void 0||c.forEach((s,g)=>{var m;let x=this.getI18nAttributeValue(g);((m=x?.context)===null||m===void 0?void 0:m.toLowerCase())===a.toLowerCase()&&this.updateI18nAttributeMessage(g,x,s)}),(p=this[_e])===null||p===void 0||p.forEach((s,g)=>{s.context.toLowerCase()===a.toLowerCase()&&(this[g]=this.i18n(s))}),setTimeout(()=>this.requestUpdate(),0)}updateI18nAttributeMessage(a,c,p){this[a]={...c,message:this.i18n({context:c.context,key:c.key,...p})}}update(a){var c,p;super.update(a),(c=this[rt])===null||c===void 0||c.forEach((s,g)=>{let m=this.getI18nAttributeValue(g);m?.context&&m.key&&(a.has(g)||s.argsProvider!=null)&&(a.has(g)&&this.addI18nContext(m.context),this.updateI18nAttributeMessage(g,m,s))}),(p=this[_e])===null||p===void 0||p.forEach((s,g)=>{s.argsProvider!=null&&(this[g]=this.i18n(s))})}getI18nAttributeValue(a){return this[a]}connectedCallback(){var a,c,p,s;super.connectedCallback(),new Set([...(c=(a=this[_e])===null||a===void 0?void 0:a.values())!==null&&c!==void 0?c:[],...[...(s=(p=this[rt])===null||p===void 0?void 0:p.keys())!==null&&s!==void 0?s:[]].map(g=>this.getI18nAttributeValue(g))].map(g=>g?.context)).forEach(g=>g&&this.addI18nMessages(g))}addI18nMessages(a,c){a=a.toLowerCase(),this[be].has(a)||this[be].set(a,this.i18nService.subscribe(a,()=>this.onI18nUpdate(a))),this.i18nService.prepareContext(a,c??{})}addI18nContext(a,c){this.addI18nMessages(typeof a=="string"?a:a.name,c)}disconnectedCallback(){super.disconnectedCallback(),this[be].forEach(a=>a()),this[be].clear()}}return o=be,Lr([(0,Yt.property)({type:Boolean})],i.prototype,"useCustomMessageContexts",void 0),i}var jt=class extends Te(Pe.FtLitElement){},ke=class extends Te(Pe.FtLitElementRedux){};var xe=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},P=class extends ke{constructor(){super(),this.editorMode=!1,this.addStore(u)}render(){return!this.key||!this.context?this.editorMode?"Select a context and a label key.":ze.nothing:ze.html`
|
|
233
233
|
<span class="ft-i18n">
|
|
234
234
|
${this.i18n(this.context,this.key,...Array.isArray(this.args)?this.args:[])}
|
|
235
235
|
</span>
|
|
236
|
-
`:this.editorMode?"Select a context and a label key.":e.nothing}update(t){var o;super.update(t),["context","key","defaultMessage"].some((o=>t.has(o)))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:null!==(o=this.defaultMessage)&&void 0!==o?o:""})}}Y.elementDefinitions={},Y.styles=C,_([o.redux()],Y.prototype,"editorMode",void 0),_([r.property()],Y.prototype,"context",void 0),_([r.property()],Y.prototype,"key",void 0),_([o.jsonProperty([])],Y.prototype,"args",void 0),_([r.property()],Y.prototype,"defaultMessage",void 0);class q{static build(t){return new q(t)}static fromGwt(t){return new q(t)}constructor(t){this.name=t,this.properties=new Proxy({},{get:(t,o)=>{const e=o;return t=>({context:this.name,key:e,args:"function"==typeof t?void 0:t,argsProvider:"function"==typeof t?t:void 0})}}),this.messages=new Proxy({},{get:(t,o)=>(...t)=>L.resolveMessage(this.name,o,...t)})}}o.customElement("ft-i18n")(Y);const V=q.build("designedReaderAttachments"),X={download:"Download “{0}”"};var J,Q;!function(t){t.THUMBS_DOWN="",t.THUMBS_DOWN_PLAIN="",t.THUMBS_UP="",t.THUMBS_UP_PLAIN="",t.STAR="",t.STAR_PLAIN="",t.DESKTOP="",t.LIFE_RING="",t.GLOBE="",t.PIGGY_BANK="",t.TABLET_LANDSCAPE="",t.TABLET_PORTRAIT="",t.MOBILE_LANDSCAPE="",t.MOBILE_PORTRAIT="",t.ARROW_RIGHT_TO_LINE="",t.THIN_ARROW_UP="",t.CONTEXTUAL="",t.CHART_SIMPLE="",t.BARS_PROGRESS="",t.LINE_CHART="",t.STACKED_CHART="",t.CHART_BAR_NORMALIZED="",t.BOOK_OPEN_GEAR="",t.BOOK_OPEN_GEAR_SLASH="",t.DIAGRAM_SUNBURST="",t.DIAGRAM_SANKEY="",t.UNSTRUCTURED_DOC="",t.RESET="",t.THIN_ARROW_LEFT="",t.THIN_ARROW_RIGHT="",t.MY_COLLECTIONS="",t.OFFLINE_SETTINGS="",t.MY_LIBRARY="",t.RATE_PLAIN="",t.RATE="",t.FEEDBACK_PLAIN="",t.PAUSE="",t.PLAY="",t.RELATIVES_PLAIN="",t.RELATIVES="",t.SHORTCUT_MENU="",t.PRINT="",t.DEFAULT_ROLES="",t.ACCOUNT_SETTINGS="",t.ONLINE="",t.OFFLINE="",t.UPLOAD="",t.BOOK_PLAIN="",t.SYNC="",t.SHARED_PBK="",t.COLLECTIONS="",t.SEARCH_IN_PUBLICATION="",t.BOOKS="",t.LOCKER="",t.ARROW_DOWN="",t.ARROW_LEFT="",t.ARROW_RIGHT="",t.ARROW_UP="",t.SAVE="",t.MAILS_AND_NOTIFICATIONS="",t.DOT="",t.MINUS="",t.PLUS="",t.FILTERS="",t.STRIPE_ARROW_RIGHT="",t.STRIPE_ARROW_LEFT="",t.ATTACHMENTS="",t.ADD_BOOKMARK="",t.BOOKMARK="",t.EXPORT="",t.MENU="",t.TAG="",t.TAG_PLAIN="",t.COPY_TO_CLIPBOARD="",t.COLUMNS="",t.ARTICLE="",t.CLOSE="",t.OCTAGON_XMARK="",t.CLOSE_PLAIN="",t.CHECK_PLAIN="",t.LOGOUT="",t.SIGN_IN="",t.THIN_ARROW="",t.TRIANGLE_BOTTOM="",t.TRIANGLE_LEFT="",t.TRIANGLE_RIGHT="",t.TRIANGLE_TOP="",t.FACET_HAS_DESCENDANT="",t.MINUS_PLAIN="",t.PLUS_PLAIN="",t.INFO="",t.ICON_EXPAND="",t.ICON_COLLAPSE="",t.ADD_TO_PBK="",t.ALERT="",t.ADD_ALERT="",t.BACK_TO_SEARCH="",t.DOWNLOAD="",t.EDIT="",t.FEEDBACK="",t.MODIFY_PBK="",t.SCHEDULED="",t.SEARCH="",t.SHARE="󨃱",t.TOC="",t.WRITE_UGC="",t.TRASH="",t.EXTLINK="",t.EXTLINK_LIGHT="",t.CALENDAR="",t.BOOK="",t.DOWNLOAD_PLAIN="",t.CHECK="",t.TOPICS="",t.EYE="",t.EYE_SLASH="",t.DISC="",t.CIRCLE="",t.SHARED="",t.SORT_UNSORTED="",t.SORT_UP="",t.SORT_DOWN="",t.WORKING="",t.ZOOM_OUT="",t.ZOOM_IN="",t.ZOOM_REALSIZE="",t.ZOOM_FULLSCREEN="",t.ADMIN_RESTRICTED="",t.ADMIN_THEME="",t.WARNING="",t.CONTEXT="",t.SEARCH_HOME="",t.STEPS="",t.HOME="",t.TRANSLATE="",t.USER="",t.ADMIN="",t.ANALYTICS="",t.ADMIN_KHUB="",t.ADMIN_USERS="",t.ADMIN_INTEGRATION="",t.ADMIN_PORTAL="",t.COMMENT_QUESTION="",t.COMMENT_QUESTION_PLAIN="",t.MESSAGE_BOT="",t.PIP="",t.PIP_WIDE="",t.EXPAND_WIDE="",t.X_MARK="",t.CLONE="",t.CLONE_LINK_SIMPLE="",t.CONSUMER="",t.HOURGLASS_HALF="",t.CLOCK_THREE="",t.CALENDAR_DAY="",t.COMPUTER_MOUSE_MAGNIFYING_GLASS="",t.WAND_MAGIC_SPARKLES="",t.PAPER_PLANE=""}(J||(J={})),function(t){t.UNKNOWN="",t.ABW="",t.AUDIO="",t.AVI="",t.CHM="",t.CODE="",t.CSV="",t.DITA="",t.EPUB="",t.EXCEL="",t.FLAC="",t.GIF="",t.GZIP="",t.HTML="",t.IMAGE="",t.JPEG="",t.JSON="",t.M4A="",t.MOV="",t.MP3="",t.MP4="",t.OGG="",t.PDF="",t.PNG="",t.POWERPOINT="",t.RAR="",t.STP="",t.TEXT="",t.VIDEO="",t.WAV="",t.WMA="",t.WORD="",t.XML="",t.YAML="",t.ZIP=""}(Q||(Q={}));const tt=new Map([...["abw"].map((t=>[t,Q.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,Q.AUDIO])),...["avi"].map((t=>[t,Q.AVI])),...["chm","xhs"].map((t=>[t,Q.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,Q.CODE])),...["csv"].map((t=>[t,Q.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,Q.DITA])),...["epub"].map((t=>[t,Q.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,Q.EXCEL])),...["flac"].map((t=>[t,Q.FLAC])),...["gif"].map((t=>[t,Q.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,Q.GZIP])),...["html","htm","xhtml"].map((t=>[t,Q.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map((t=>[t,Q.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,Q.JPEG])),...["json"].map((t=>[t,Q.JSON])),...["m4a","m4p"].map((t=>[t,Q.M4A])),...["mov","qt"].map((t=>[t,Q.MOV])),...["mp3"].map((t=>[t,Q.MP3])),...["mp4","m4v"].map((t=>[t,Q.MP4])),...["ogg","oga"].map((t=>[t,Q.OGG])),...["pdf","ps"].map((t=>[t,Q.PDF])),...["png"].map((t=>[t,Q.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,Q.POWERPOINT])),...["rar"].map((t=>[t,Q.RAR])),...["stp"].map((t=>[t,Q.STP])),...["txt","rtf","md","mdown"].map((t=>[t,Q.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,Q.VIDEO])),...["wav"].map((t=>[t,Q.WAV])),...["wma"].map((t=>[t,Q.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,Q.WORD])),...["xml","xsl","rdf"].map((t=>[t,Q.XML])),...["yaml","yml","x-yaml"].map((t=>[t,Q.YAML])),...["zip"].map((t=>[t,Q.ZIP]))]),ot=new Map([["application/msword","application/doc"],["application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/docx"],["application/vnd.openxmlformats-officedocument.wordprocessingml.template","application/dotx"],["application/vnd.ms-word.document.macroEnabled.12","application/docm"],["application/vnd.ms-word.template.macroEnabled.12","application/dotm"],["application/vnd.ms-excel","application/xls"],["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/xlsx"],["application/vnd.openxmlformats-officedocument.spreadsheetml.template","application/xltx"],["application/vnd.ms-excel.sheet.macroEnabled.12","application/xlsm"],["application/vnd.ms-excel.template.macroEnabled.12","application/xltm"],["application/vnd.ms-excel.addin.macroEnabled.12","application/xlam"],["application/vnd.ms-excel.sheet.binary.macroEnabled.12","application/xlsb"],["application/vnd.ms-powerpoint","application/ppt"],["application/vnd.openxmlformats-officedocument.presentationml.presentation","application/pptx"],["application/vnd.openxmlformats-officedocument.presentationml.template","application/potx"],["application/vnd.openxmlformats-officedocument.presentationml.slideshow","application/ppsx"],["application/vnd.ms-powerpoint.addin.macroEnabled.12","application/ppam"],["application/vnd.ms-powerpoint.presentation.macroEnabled.12","application/pptm"],["application/vnd.ms-powerpoint.template.macroEnabled.12","application/potm"],["application/vnd.ms-powerpoint.slideshow.macroEnabled.12","application/ppsm"],["application/vnd.ms-access","application/mdb"]]);const et={[Q.ABW]:"#91ABC6",[Q.AUDIO]:"#1795E3",[Q.AVI]:"#E63324",[Q.CHM]:"#71C3EB",[Q.CODE]:"#71C3EB",[Q.CSV]:"#1F7345",[Q.DITA]:"#71C3EB",[Q.EPUB]:"#85B926",[Q.EXCEL]:"#1F7345",[Q.FLAC]:"#1795E3",[Q.GIF]:"#59B031",[Q.GZIP]:"#F8AB36",[Q.HTML]:"#71C3EB",[Q.IMAGE]:"#59B031",[Q.JPEG]:"#59B031",[Q.JSON]:"#71C3EB",[Q.M4A]:"#1795E3",[Q.MOV]:"#E63324",[Q.MP3]:"#1795E3",[Q.MP4]:"#E63324",[Q.OGG]:"#1795E3",[Q.PDF]:"#E44948",[Q.PNG]:"#59B031",[Q.POWERPOINT]:"#B54A2B",[Q.RAR]:"#F8AB36",[Q.STP]:"#3764B1",[Q.TEXT]:"#3162AB",[Q.UNKNOWN]:"#999999",[Q.VIDEO]:"#E63324",[Q.WAV]:"#1795E3",[Q.WMA]:"#1795E3",[Q.WORD]:"#3162AB",[Q.XML]:"#71C3EB",[Q.YAML]:"#71C3EB",[Q.ZIP]:"#F8AB36"};var rt;!function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(rt||(rt={}));var at=function(t,o,e,r){for(var a,i=arguments.length,n=i<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(a=t[l])&&(n=(i<3?a(n):i>3?a(o,e,n):a(o,e))||n);return i>3&&n&&Object.defineProperty(o,e,n),n};class it extends o.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=e.nothing}render(){const t=this.variant&&Object.values(rt).includes(this.variant)?this.variant:rt.fluid_topics,o=t!==rt.material||!!this.value;return e.html`
|
|
237
|
-
<i class="ft-icon ft-icon--${
|
|
238
|
-
${
|
|
239
|
-
<slot ?hidden=${
|
|
236
|
+
`}update(o){var i;super.update(o),["context","key","defaultMessage"].some(l=>o.has(l))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:(i=this.defaultMessage)!==null&&i!==void 0?i:""})}};P.elementDefinitions={};P.styles=$t;xe([(0,He.redux)()],P.prototype,"editorMode",void 0);xe([(0,$e.property)()],P.prototype,"context",void 0);xe([(0,$e.property)()],P.prototype,"key",void 0);xe([(0,He.jsonProperty)([])],P.prototype,"args",void 0);xe([(0,$e.property)()],P.prototype,"defaultMessage",void 0);var Ge=class t{static build(o){return new t(o)}static fromGwt(o){return new t(o)}constructor(o){this.name=o,this.properties=new Proxy({},{get:(i,l)=>{let a=l;return c=>({context:this.name,key:a,args:typeof c=="function"?void 0:c,argsProvider:typeof c=="function"?c:void 0})}}),this.messages=new Proxy({},{get:(i,l)=>(...a)=>ae.resolveMessage(this.name,l,...a)})}};(0,Xt.customElement)("ft-i18n")(P);var at=Ge.build("designedReaderAttachments"),qt={download:"Download \u201C{0}\u201D"};var ro=y(S());var Se=y(A()),J=y(H()),to=y(S()),oo=y(Qt());var De;(function(t){t.THUMBS_DOWN="",t.THUMBS_DOWN_PLAIN="",t.THUMBS_UP="",t.THUMBS_UP_PLAIN="",t.STAR="",t.STAR_PLAIN="",t.DESKTOP="",t.LIFE_RING="",t.GLOBE="",t.PIGGY_BANK="",t.TABLET_LANDSCAPE="",t.TABLET_PORTRAIT="",t.MOBILE_LANDSCAPE="",t.MOBILE_PORTRAIT="",t.ARROW_RIGHT_TO_LINE="",t.THIN_ARROW_UP="",t.CONTEXTUAL="",t.CHART_SIMPLE="",t.BARS_PROGRESS="",t.LINE_CHART="",t.STACKED_CHART="",t.CHART_BAR_NORMALIZED="",t.BOOK_OPEN_GEAR="",t.BOOK_OPEN_GEAR_SLASH="",t.DIAGRAM_SUNBURST="",t.DIAGRAM_SANKEY="",t.UNSTRUCTURED_DOC="",t.RESET="",t.THIN_ARROW_LEFT="",t.THIN_ARROW_RIGHT="",t.MY_COLLECTIONS="",t.OFFLINE_SETTINGS="",t.MY_LIBRARY="",t.RATE_PLAIN="",t.RATE="",t.FEEDBACK_PLAIN="",t.PAUSE="",t.PLAY="",t.RELATIVES_PLAIN="",t.RELATIVES="",t.SHORTCUT_MENU="",t.PRINT="",t.DEFAULT_ROLES="",t.ACCOUNT_SETTINGS="",t.ONLINE="",t.OFFLINE="",t.UPLOAD="",t.BOOK_PLAIN="",t.SYNC="",t.SHARED_PBK="",t.COLLECTIONS="",t.SEARCH_IN_PUBLICATION="",t.BOOKS="",t.LOCKER="",t.ARROW_DOWN="",t.ARROW_LEFT="",t.ARROW_RIGHT="",t.ARROW_UP="",t.SAVE="",t.MAILS_AND_NOTIFICATIONS="",t.DOT="",t.MINUS="",t.PLUS="",t.FILTERS="",t.STRIPE_ARROW_RIGHT="",t.STRIPE_ARROW_LEFT="",t.ATTACHMENTS="",t.ADD_BOOKMARK="",t.BOOKMARK="",t.EXPORT="",t.MENU="",t.TAG="",t.TAG_PLAIN="",t.COPY_TO_CLIPBOARD="",t.COLUMNS="",t.ARTICLE="",t.CLOSE="",t.OCTAGON_XMARK="",t.CLOSE_PLAIN="",t.CHECK_PLAIN="",t.LOGOUT="",t.SIGN_IN="",t.THIN_ARROW="",t.TRIANGLE_BOTTOM="",t.TRIANGLE_LEFT="",t.TRIANGLE_RIGHT="",t.TRIANGLE_TOP="",t.FACET_HAS_DESCENDANT="",t.MINUS_PLAIN="",t.PLUS_PLAIN="",t.INFO="",t.ICON_EXPAND="",t.ICON_COLLAPSE="",t.ADD_TO_PBK="",t.ALERT="",t.ADD_ALERT="",t.BACK_TO_SEARCH="",t.DOWNLOAD="",t.EDIT="",t.FEEDBACK="",t.MODIFY_PBK="",t.SCHEDULED="",t.SEARCH="",t.SHARE="󨃱",t.TOC="",t.WRITE_UGC="",t.TRASH="",t.EXTLINK="",t.EXTLINK_LIGHT="",t.CALENDAR="",t.BOOK="",t.DOWNLOAD_PLAIN="",t.CHECK="",t.TOPICS="",t.EYE="",t.EYE_SLASH="",t.DISC="",t.CIRCLE="",t.SHARED="",t.SORT_UNSORTED="",t.SORT_UP="",t.SORT_DOWN="",t.WORKING="",t.ZOOM_OUT="",t.ZOOM_IN="",t.ZOOM_REALSIZE="",t.ZOOM_FULLSCREEN="",t.ADMIN_RESTRICTED="",t.ADMIN_THEME="",t.WARNING="",t.CONTEXT="",t.SEARCH_HOME="",t.STEPS="",t.HOME="",t.TRANSLATE="",t.USER="",t.ADMIN="",t.ANALYTICS="",t.ADMIN_KHUB="",t.ADMIN_USERS="",t.ADMIN_INTEGRATION="",t.ADMIN_PORTAL="",t.COMMENT_QUESTION="",t.COMMENT_QUESTION_PLAIN="",t.MESSAGE_BOT="",t.PIP="",t.PIP_WIDE="",t.EXPAND_WIDE="",t.X_MARK="",t.CLONE="",t.CLONE_LINK_SIMPLE="",t.CONSUMER="",t.HOURGLASS_HALF="",t.CLOCK_THREE="",t.CALENDAR_DAY="",t.COMPUTER_MOUSE_MAGNIFYING_GLASS="",t.WAND_MAGIC_SPARKLES="",t.PAPER_PLANE=""})(De||(De={}));var d;(function(t){t.UNKNOWN="",t.ABW="",t.AUDIO="",t.AVI="",t.CHM="",t.CODE="",t.CSV="",t.DITA="",t.EPUB="",t.EXCEL="",t.FLAC="",t.GIF="",t.GZIP="",t.HTML="",t.IMAGE="",t.JPEG="",t.JSON="",t.M4A="",t.MOV="",t.MP3="",t.MP4="",t.OGG="",t.PDF="",t.PNG="",t.POWERPOINT="",t.RAR="",t.STP="",t.TEXT="",t.VIDEO="",t.WAV="",t.WMA="",t.WORD="",t.XML="",t.YAML="",t.ZIP=""})(d||(d={}));var it=new Map([...["abw"].map(t=>[t,d.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,d.AUDIO]),...["avi"].map(t=>[t,d.AVI]),...["chm","xhs"].map(t=>[t,d.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,d.CODE]),...["csv"].map(t=>[t,d.CSV]),...["dita","ditamap","ditaval"].map(t=>[t,d.DITA]),...["epub"].map(t=>[t,d.EPUB]),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map(t=>[t,d.EXCEL]),...["flac"].map(t=>[t,d.FLAC]),...["gif"].map(t=>[t,d.GIF]),...["gzip","x-gzip","giz","gz","tgz"].map(t=>[t,d.GZIP]),...["html","htm","xhtml"].map(t=>[t,d.HTML]),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map(t=>[t,d.IMAGE]),...["jpeg","jpg","jpe"].map(t=>[t,d.JPEG]),...["json"].map(t=>[t,d.JSON]),...["m4a","m4p"].map(t=>[t,d.M4A]),...["mov","qt"].map(t=>[t,d.MOV]),...["mp3"].map(t=>[t,d.MP3]),...["mp4","m4v"].map(t=>[t,d.MP4]),...["ogg","oga"].map(t=>[t,d.OGG]),...["pdf","ps"].map(t=>[t,d.PDF]),...["png"].map(t=>[t,d.PNG]),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map(t=>[t,d.POWERPOINT]),...["rar"].map(t=>[t,d.RAR]),...["stp"].map(t=>[t,d.STP]),...["txt","rtf","md","mdown"].map(t=>[t,d.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,d.VIDEO]),...["wav"].map(t=>[t,d.WAV]),...["wma"].map(t=>[t,d.WMA]),...["doc","dot","docx","docm","dotx","dotm","docb"].map(t=>[t,d.WORD]),...["xml","xsl","rdf"].map(t=>[t,d.XML]),...["yaml","yml","x-yaml"].map(t=>[t,d.YAML]),...["zip"].map(t=>[t,d.ZIP])]),Ir=new Map([["application/msword","application/doc"],["application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/docx"],["application/vnd.openxmlformats-officedocument.wordprocessingml.template","application/dotx"],["application/vnd.ms-word.document.macroEnabled.12","application/docm"],["application/vnd.ms-word.template.macroEnabled.12","application/dotm"],["application/vnd.ms-excel","application/xls"],["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","application/xlsx"],["application/vnd.openxmlformats-officedocument.spreadsheetml.template","application/xltx"],["application/vnd.ms-excel.sheet.macroEnabled.12","application/xlsm"],["application/vnd.ms-excel.template.macroEnabled.12","application/xltm"],["application/vnd.ms-excel.addin.macroEnabled.12","application/xlam"],["application/vnd.ms-excel.sheet.binary.macroEnabled.12","application/xlsb"],["application/vnd.ms-powerpoint","application/ppt"],["application/vnd.openxmlformats-officedocument.presentationml.presentation","application/pptx"],["application/vnd.openxmlformats-officedocument.presentationml.template","application/potx"],["application/vnd.openxmlformats-officedocument.presentationml.slideshow","application/ppsx"],["application/vnd.ms-powerpoint.addin.macroEnabled.12","application/ppam"],["application/vnd.ms-powerpoint.presentation.macroEnabled.12","application/pptm"],["application/vnd.ms-powerpoint.template.macroEnabled.12","application/potm"],["application/vnd.ms-powerpoint.slideshow.macroEnabled.12","application/ppsm"],["application/vnd.ms-access","application/mdb"]]);function eo(t,o){var i,l,a,c;t=(t??"").toLowerCase(),o=(o??"").toLowerCase();let[p,s]=(((i=Ir.get(t))!==null&&i!==void 0?i:t)+"/").split("/");return(c=(a=(l=it.get(s))!==null&&l!==void 0?l:it.get(o))!==null&&a!==void 0?a:it.get(p))!==null&&c!==void 0?c:d.UNKNOWN}var nt={[d.ABW]:"#91ABC6",[d.AUDIO]:"#1795E3",[d.AVI]:"#E63324",[d.CHM]:"#71C3EB",[d.CODE]:"#71C3EB",[d.CSV]:"#1F7345",[d.DITA]:"#71C3EB",[d.EPUB]:"#85B926",[d.EXCEL]:"#1F7345",[d.FLAC]:"#1795E3",[d.GIF]:"#59B031",[d.GZIP]:"#F8AB36",[d.HTML]:"#71C3EB",[d.IMAGE]:"#59B031",[d.JPEG]:"#59B031",[d.JSON]:"#71C3EB",[d.M4A]:"#1795E3",[d.MOV]:"#E63324",[d.MP3]:"#1795E3",[d.MP4]:"#E63324",[d.OGG]:"#1795E3",[d.PDF]:"#E44948",[d.PNG]:"#59B031",[d.POWERPOINT]:"#B54A2B",[d.RAR]:"#F8AB36",[d.STP]:"#3764B1",[d.TEXT]:"#3162AB",[d.UNKNOWN]:"#999999",[d.VIDEO]:"#E63324",[d.WAV]:"#1795E3",[d.WMA]:"#1795E3",[d.WORD]:"#3162AB",[d.XML]:"#71C3EB",[d.YAML]:"#71C3EB",[d.ZIP]:"#F8AB36"};var j;(function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"})(j||(j={}));var Me=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},U=class extends to.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=Se.nothing}render(){let o=this.variant&&Object.values(j).includes(this.variant)?this.variant:j.fluid_topics,i=o!==j.material||!!this.value;return Se.html`
|
|
237
|
+
<i class="ft-icon ft-icon--${o}" part="icon icon-${o}">
|
|
238
|
+
${(0,oo.unsafeHTML)(this.resolvedIcon)}
|
|
239
|
+
<slot ?hidden=${i}></slot>
|
|
240
240
|
</i>
|
|
241
|
-
`}get textContent(){var
|
|
242
|
-
|
|
243
|
-
* @license
|
|
244
|
-
* Copyright 2017 Google LLC
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
const Gt=Symbol.for(""),Mt=t=>{if(t?.r===Gt)return t?._$litStatic$},jt=t=>({_$litStatic$:t,r:Gt}),Pt=new Map,Tt=(t=>(o,...e)=>{const r=e.length;let a,i;const n=[],l=[];let c,p=0,s=!1;for(;p<r;){for(c=o[p];p<r&&void 0!==(i=e[p],a=Mt(i));)c+=a+o[++p],s=!0;p!==r&&l.push(i),n.push(c),p++}if(p===r&&n.push(o[r]),s){const t=n.join("$$lit$$");void 0===(o=Pt.get(t))&&(n.raw=n,Pt.set(t,o=n)),e=l}return t(o,...e)})(Ct);var _t;!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"}(_t||(_t={}));const Yt=t=>"string"==typeof t?e.unsafeCSS(t):t;class qt{static create(t,o,r,a){const i=t=>Yt(null!=t?t:a),n=e.css`var(${Yt(t)}, ${i(a)})`;return n.name=t,n.description=o,n.category=r,n.defaultValue=a,n.defaultCssValue=i,n.get=o=>e.css`var(${Yt(t)}, ${i(o)})`,n.breadcrumb=()=>[],n.lastResortDefaultValue=()=>a,n}static extend(t,o,r,a){const i=t=>r.get(null!=t?t:a),n=e.css`var(${Yt(t)}, ${i(a)})`;return n.name=t,n.description=o,n.category=r.category,n.fallbackVariable=r,n.defaultValue=a,n.defaultCssValue=i,n.get=o=>e.css`var(${Yt(t)}, ${i(o)})`,n.breadcrumb=()=>[r.name,...r.breadcrumb()],n.lastResortDefaultValue=()=>null!=a?a:r.lastResortDefaultValue(),n}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):Yt(null!=o?o:t.lastResortDefaultValue()),a=e.css`var(${Yt(t.name)}, ${r(t.defaultValue)})`;return a.name=t.name,a.category=t.category,a.fallbackVariable=t.fallbackVariable,a.defaultValue=t.defaultValue,a.context=o,a.defaultCssValue=r,a.get=o=>e.css`var(${Yt(t.name)}, ${r(o)})`,a.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],a.lastResortDefaultValue=()=>t.lastResortDefaultValue(),a}}const Vt={colorWhite:qt.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:qt.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:qt.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:qt.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:qt.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:qt.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:qt.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:qt.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:qt.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:qt.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:qt.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:qt.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:qt.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:qt.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:qt.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:qt.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:qt.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:qt.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:qt.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:qt.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:qt.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:qt.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:qt.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:qt.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:qt.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:qt.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:qt.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:qt.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:qt.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:qt.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:qt.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:qt.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:qt.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:qt.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:qt.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:qt.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:qt.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:qt.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:qt.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:qt.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:qt.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:qt.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:qt.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:qt.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:qt.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:qt.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:qt.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:qt.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:qt.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:qt.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:qt.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:qt.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:qt.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:qt.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:qt.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:qt.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:qt.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:qt.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:qt.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:qt.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:qt.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:qt.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:qt.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:qt.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:qt.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:qt.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:qt.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:qt.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:qt.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:qt.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:qt.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:qt.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:qt.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:qt.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:qt.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:qt.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:qt.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:qt.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:qt.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:qt.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:qt.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:qt.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:qt.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:qt.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:qt.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:qt.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:qt.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:qt.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:qt.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:qt.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:qt.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:qt.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:qt.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:qt.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:qt.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:qt.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:qt.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:qt.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:qt.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:qt.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:qt.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:qt.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:qt.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:qt.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:qt.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:qt.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:qt.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:qt.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:qt.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:qt.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:qt.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:qt.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:qt.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:qt.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:qt.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:qt.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:qt.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:qt.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:qt.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:qt.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:qt.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:qt.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:qt.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:qt.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:qt.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:qt.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:qt.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:qt.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:qt.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:qt.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:qt.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:qt.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:qt.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:qt.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:qt.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:qt.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:qt.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:qt.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:qt.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:qt.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:qt.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:qt.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:qt.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:qt.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:qt.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:qt.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:qt.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:qt.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:qt.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:qt.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:qt.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:qt.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:qt.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:qt.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:qt.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:qt.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:qt.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:qt.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:qt.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:qt.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:qt.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:qt.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:qt.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:qt.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:qt.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:qt.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:qt.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:qt.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:qt.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:qt.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:qt.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:qt.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:qt.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:qt.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:qt.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:qt.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:qt.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:qt.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:qt.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:qt.create("--ft-icon-size-6","","SIZE","48px"),opacity0:qt.create("--ft-opacity-0","","NUMBER","0"),opacity8:qt.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:qt.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:qt.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:qt.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:qt.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:qt.create("--ft-shadow-elevation-01","","SHADOW","0px 1px 4px 0px rgba(0,0,0,0.06), 0px 1px 2px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation02:qt.create("--ft-shadow-elevation-02","","SHADOW","0px 4px 10px 0px rgba(0,0,0,0.06), 0px 2px 5px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation03:qt.create("--ft-shadow-elevation-03","","SHADOW","0px 6px 13px 0px rgba(0,0,0,0.06), 0px 3px 7px 0px rgba(0,0,0,0.14), 0px 1px 2px 0px rgba(0,0,0,0.06)"),shadowElevation04:qt.create("--ft-shadow-elevation-04","","SHADOW","0px 8px 16px 0px rgba(0,0,0,0.06), 0px 4px 9px 0px rgba(0,0,0,0.14), 0px 2px 3px 0px rgba(0,0,0,0.06)"),shadowElevation06:qt.create("--ft-shadow-elevation-06","","SHADOW","0px 12px 22px 0px rgba(0,0,0,0.06), 0px 6px 13px 0px rgba(0,0,0,0.14), 0px 4px 5px 0px rgba(0,0,0,0.06)"),shadowElevation08:qt.create("--ft-shadow-elevation-08","","SHADOW","0px 16px 28px 0px rgba(0,0,0,0.06), 0px 8px 17px 0px rgba(0,0,0,0.14), 0px 6px 7px 0px rgba(0,0,0,0.06)"),shadowElevation12:qt.create("--ft-shadow-elevation-12","","SHADOW","0px 22px 40px 0px rgba(0,0,0,0.06), 0px 12px 23px 0px rgba(0,0,0,0.14), 0px 10px 11px 0px rgba(0,0,0,0.06)"),shadowElevation16:qt.create("--ft-shadow-elevation-16","","SHADOW","0px 28px 52px 0px rgba(0,0,0,0.06), 0px 16px 29px 0px rgba(0,0,0,0.14), 0px 14px 15px 0px rgba(0,0,0,0.06)"),shadowElevation24:qt.create("--ft-shadow-elevation-24","","SHADOW","0px 40px 76px 0px rgba(0,0,0,0.06), 0px 24px 41px 0px rgba(0,0,0,0.14), 0px 22px 23px 0px rgba(0,0,0,0.06)")},Xt={display:{fontFamily:qt.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:qt.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:qt.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:qt.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:qt.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:qt.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:qt.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:qt.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:qt.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:qt.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:qt.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:qt.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:qt.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:qt.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:qt.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:qt.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:qt.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:qt.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:qt.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:qt.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:qt.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:qt.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:qt.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:qt.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:qt.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:qt.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-medium-underline":{fontFamily:qt.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:qt.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:qt.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},"body-2-semibold":{fontFamily:qt.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:qt.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:qt.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:qt.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:qt.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:qt.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:qt.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:qt.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:qt.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:qt.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:qt.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:qt.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:qt.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:qt.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:qt.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:qt.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:qt.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:qt.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:qt.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:qt.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:qt.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:qt.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:qt.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:qt.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:qt.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:qt.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:qt.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:qt.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:qt.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:qt.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:qt.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:qt.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:qt.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:qt.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:qt.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:qt.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:qt.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:qt.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:qt.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:qt.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:qt.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:qt.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:qt.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:qt.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:qt.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:qt.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:qt.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:qt.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},"caption-3-medium":{fontFamily:qt.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:qt.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:qt.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},"caption-3-semibold":{fontFamily:qt.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:qt.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:qt.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},"caption-3-bold":{fontFamily:qt.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:qt.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:qt.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:qt.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:qt.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:qt.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:qt.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:qt.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:qt.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")}},Jt={backgroundActionPrimary:qt.extend("--ft-background-action-primary","Used as backgorund of primary action components.",Vt.colorBrand0),backgroundErrorSubtle:qt.extend("--ft-background-error-subtle","Used as background of subtle error components.",Vt.colorRed10),backgroundInfoSubtle:qt.extend("--ft-background-info-subtle","Used as background of subtle information components.",Vt.colorCyan10),backgroundWarningSubtle:qt.extend("--ft-background-warning-subtle","Used as background of subtle information components.",Vt.colorOrange10),backgroundSuccessSubtle:qt.extend("--ft-background-success-subtle","Used as background of subtle success components.",Vt.colorGreen10),backgroundGlobalSurface:qt.extend("--ft-background-global-surface","Used as app background.",Vt.colorWhite),backgroundGlobalOnSurface:qt.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",Vt.colorGray10),backgroundGlobalOnSurfaceDark:qt.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",Vt.colorGray30),contentActionPrimary:qt.extend("--ft-content-action-primary","Used on label of primary action on light surface.",Vt.colorBrand0),contentWarningPrimary:qt.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",Vt.colorOrange200),contentWarningIconOnly:qt.extend("--ft-content-warning-icon-only","Used on warning status icons alone",Vt.colorOrange0),contentErrorPrimary:qt.extend("--ft-content-error-primary","Used on label of error messages on light surface.",Vt.colorRed0),contentErrorIconOnly:qt.extend("--ft-content-error-icon-only","Used on error status icons alone",Vt.colorRed70),contentInfoPrimary:qt.extend("--ft-content-info-primary","Used on label of information messages on light surface.",Vt.colorCyan200),contentInfoIconOnly:qt.extend("--ft-content-info-icon-only","Used on info status icons alone",Vt.colorCyan0),contentSuccessPrimary:qt.extend("--ft-content-success-primary","Used on label of success messages on light surface.",Vt.colorGreen200),contentSuccessIconOnly:qt.extend("--ft-content-success-icon-only","Used on success status icons alone",Vt.colorGreen0),contentGlobalPrimary:qt.extend("--ft-content-global-primary","Used for main content on the page.",Vt.colorGray500),contentGlobalSecondary:qt.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",Vt.colorGray200),contentGlobalSubtle:qt.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",Vt.colorGray0),contentGlobalOnColor:qt.extend("--ft-content-global-on-color","Used for content on a dominant color.",Vt.colorWhite),borderActionPrimary:qt.extend("--ft-border-action-primary","Used as border for primary action components.",Vt.colorBrand0),borderActionFocusRing:qt.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",Vt.colorCyan0),borderWarningPrimary:qt.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",Vt.colorOrange200),borderWarningSubtle:qt.extend("--ft-border-warning-subtle","Used as border for warning components.",Vt.colorOrange30),borderSuccessPrimary:qt.extend("--ft-border-success-primary","Used as border for success buttons.",Vt.colorGreen200),borderSuccessSubtle:qt.extend("--ft-border-success-subtle","Used as border for success components.",Vt.colorGreen30),borderErrorPrimary:qt.extend("--ft-border-error-primary","Used as border for text fields in error states.",Vt.colorRed0),borderErrorSubtle:qt.extend("--ft-border-error-subtle","Used as border for error components.",Vt.colorRed30),borderInfoPrimary:qt.extend("--ft-border-info-primary","Used as border for buttons in info color.",Vt.colorCyan200),borderInfoSubtle:qt.extend("--ft-border-info-subtle","Used as border for information components.",Vt.colorCyan30),borderGlobalPrimary:qt.extend("--ft-border-global-primary","Used as border for element like input.",Vt.colorGray50),borderGlobalSubtle:qt.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",Vt.colorGray30),borderInputPrimary:qt.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",Vt.colorGray80)};qt.create("--ft-button-large-height","","SIZE","40px"),qt.extend("--ft-button-large-horizontal-padding","",Vt.spacing4),qt.extend("--ft-button-large-gap","",Vt.spacing2),qt.extend("--ft-button-large-border-radius","",Vt.borderRadiusS),qt.extend("--ft-button-large-icon-size","",Vt.iconSize3),qt.create("--ft-button-large-border-width","","SIZE","1px"),qt.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),qt.create("--ft-button-large-focus-outline-width","","SIZE","2px"),qt.create("--ft-button-large-icon-only-width","","SIZE","40px"),qt.create("--ft-button-small-height","","SIZE","30px"),qt.extend("--ft-button-small-horizontal-padding","",Vt.spacing3),qt.extend("--ft-button-small-gap","",Vt.spacing2),qt.extend("--ft-button-small-border-radius","",Vt.borderRadiusS),qt.extend("--ft-button-small-icon-size","",Vt.iconSize2),qt.create("--ft-button-small-border-width","","SIZE","1px"),qt.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),qt.create("--ft-button-small-focus-outline-width","","SIZE","2px"),qt.create("--ft-button-small-icon-only-width","","SIZE","30px"),qt.extend("--ft-button-primary-background-color","",Jt.backgroundActionPrimary),qt.extend("--ft-button-primary-color","",Jt.contentGlobalOnColor),qt.extend("--ft-button-primary-icon-color","",Jt.contentGlobalOnColor),qt.extend("--ft-button-primary-state-layer-color","",Jt.contentGlobalOnColor),qt.extend("--ft-button-primary-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-button-primary-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-button-primary-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-button-primary-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-button-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),qt.extend("--ft-button-tertiary-color","",Jt.contentActionPrimary),qt.extend("--ft-button-tertiary-icon-color","",Jt.contentActionPrimary),qt.extend("--ft-button-tertiary-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-button-tertiary-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-button-tertiary-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-button-tertiary-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-button-tertiary-disabled-component-opacity","",Vt.opacity40),qt.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),qt.extend("--ft-button-secondary-color","",Jt.contentActionPrimary),qt.extend("--ft-button-secondary-icon-color","",Jt.contentActionPrimary),qt.extend("--ft-button-secondary-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-button-secondary-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-button-secondary-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-button-secondary-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-button-secondary-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-button-secondary-border-color","",Jt.borderActionPrimary),qt.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),qt.extend("--ft-button-neutral-icon-color","",Jt.contentGlobalSecondary),qt.extend("--ft-button-neutral-color","",Jt.contentGlobalSecondary),qt.extend("--ft-button-neutral-state-layer-color","",Jt.contentGlobalSecondary),qt.extend("--ft-button-neutral-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-button-neutral-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-button-neutral-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-button-neutral-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-banner-icon-size","",Vt.iconSize5),qt.create("--ft-banner-border-width","","SIZE","1px"),qt.extend("--ft-banner-horizontal-padding","",Vt.spacing6),qt.extend("--ft-banner-vertical-padding","",Vt.spacing6),qt.extend("--ft-banner-horizontal-side-gap","",Vt.spacing6),qt.extend("--ft-banner-horizontal-mobile-gap","",Vt.spacing4),qt.extend("--ft-banner-vertical-mobile-gap","",Vt.spacing6),qt.extend("--ft-banner-horizontal-middle-gap","",Vt.spacing20),qt.extend("--ft-banner-info-background-color","",Jt.backgroundInfoSubtle),qt.extend("--ft-banner-info-color","",Jt.contentInfoPrimary),qt.extend("--ft-banner-info-icon-color","",Jt.contentInfoIconOnly),qt.extend("--ft-breadcrumb-horizontal-gap","",Vt.spacing1),qt.extend("--ft-breadcrumb-vertical-gap","",Vt.spacing2),qt.extend("--ft-breadcrumb-current-element-color","",Jt.contentGlobalPrimary),qt.extend("--ft-breadcrumb-icon-color","",Jt.contentGlobalSubtle),qt.extend("--ft-page-header-horizontal-padding","",Vt.spacing12),qt.extend("--ft-page-header-horizontal-gap","",Vt.spacing4),qt.extend("--ft-page-header-vertical-gap","",Vt.spacing2),qt.extend("--ft-page-header-classic-vertical-padding","",Vt.spacing6),qt.extend("--ft-page-header-multiline-vertical-padding","",Vt.spacing4),qt.extend("--ft-page-header-inline-vertical-padding","",Vt.spacing2),qt.extend("--ft-page-header-background-color","",Vt.colorWhite),qt.extend("--ft-page-header-bottom-border-color","",Jt.borderGlobalSubtle),qt.extend("--ft-page-header-title-color","",Jt.contentGlobalPrimary),qt.extend("--ft-page-header-subtitle-color","",Jt.contentGlobalSecondary),qt.create("--ft-modal-small-container-width","","SIZE","600px"),qt.create("--ft-modal-large-container-width","","SIZE","900px"),qt.extend("--ft-modal-overlay-background-color","",Vt.colorGray700),qt.extend("--ft-modal-overlay-opacity","",Vt.opacity40),qt.extend("--ft-modal-shadow","",Vt.shadowElevation03),qt.extend("--ft-modal-body-background-color","",Vt.colorWhite),qt.extend("--ft-modal-body-color","",Jt.contentGlobalPrimary),qt.extend("--ft-modal-body-horizontal-padding","",Vt.spacing6),qt.extend("--ft-modal-body-vertical-padding","",Vt.spacing6),qt.extend("--ft-modal-body-vertical-gap","",Vt.spacing6),qt.extend("--ft-modal-container-margin","",Vt.spacing3),qt.extend("--ft-modal-header-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-modal-header-border-color","",Jt.borderGlobalSubtle),qt.extend("--ft-modal-header-color","",Jt.contentGlobalPrimary),qt.extend("--ft-modal-header-trailing-icon-color","",Jt.contentGlobalSecondary),qt.extend("--ft-modal-header-vertical-padding","",Vt.spacing1),qt.extend("--ft-modal-header-right-padding","",Vt.spacing1),qt.extend("--ft-modal-header-left-padding","",Vt.spacing6),qt.extend("--ft-modal-header-gap","",Vt.spacing2),qt.create("--ft-modal-header-border-bottom","","SIZE","1px"),qt.extend("--ft-modal-border-radius","",Vt.borderRadiusM),qt.extend("--ft-drawer-overlay-opacity","",Vt.opacity40),qt.extend("--ft-drawer-shadow","",Vt.shadowElevation03),qt.extend("--ft-drawer-body-color","",Jt.contentGlobalPrimary),qt.extend("--ft-drawer-body-horizontal-padding","",Vt.spacing6),qt.extend("--ft-drawer-body-vertical-padding","",Vt.spacing6),qt.extend("--ft-drawer-body-gap","",Vt.spacing6),qt.extend("--ft-drawer-body-background-color","",Vt.colorWhite),qt.extend("--ft-drawer-header-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-drawer-header-border-color","",Jt.borderGlobalSubtle),qt.extend("--ft-drawer-header-color","",Jt.contentGlobalPrimary),qt.extend("--ft-drawer-header-trailing-icon-color","",Jt.contentGlobalSecondary),qt.create("--ft-drawer-header-height","","SIZE","50px"),qt.extend("--ft-drawer-header-horizontal-padding","",Vt.spacing2),qt.create("--ft-drawer-header-border-width","","SIZE","1px"),qt.extend("--ft-drawer-header-gap","",Vt.spacing3),qt.extend("--ft-drawer-buttons-bar-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-drawer-buttons-bar-border-color","",Jt.borderGlobalSubtle),qt.extend("--ft-drawer-buttons-bar-color","",Jt.contentGlobalPrimary),qt.extend("--ft-drawer-buttons-bar-horizontal-padding","",Vt.spacing4),qt.extend("--ft-drawer-buttons-bar-vertical-padding","",Vt.spacing4),qt.extend("--ft-drawer-buttons-bar-gap","",Vt.spacing3),qt.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),qt.create("--ft-drawer-container-width","","SIZE","66%"),qt.create("--ft-drawer-container-min-width","","SIZE","500px"),qt.create("--ft-drawer-container-max-width","","SIZE","1000px"),qt.create("--ft-drawer-container-height","","SIZE","100%"),qt.extend("--ft-drawer-overlay-background-color","",Vt.colorGray700),qt.extend("--ft-text-input-field-horizontal-padding","",Vt.spacing4),qt.extend("--ft-text-input-field-horizontal-gap","",Vt.spacing3),qt.extend("--ft-text-input-field-vertical-gap","",Vt.spacing05),qt.extend("--ft-text-input-field-icon-size","",Vt.iconSize3),qt.create("--ft-text-input-field-height","","SIZE","50px"),qt.extend("--ft-text-input-helper-horizontal-padding","",Vt.spacing4),qt.extend("--ft-text-input-helper-horizontal-gap","",Vt.spacing1),qt.extend("--ft-text-input-helper-icon-size","",Vt.iconSize2),qt.extend("--ft-text-input-border-radius","",Vt.borderRadiusM),qt.extend("--ft-text-input-background-color","",Vt.colorWhite),qt.extend("--ft-text-input-content-value-color","",Jt.contentGlobalPrimary),qt.extend("--ft-text-input-trailing-icon-color","",Jt.contentGlobalSubtle),qt.extend("--ft-text-input-label-color","",Jt.contentGlobalSubtle),qt.extend("--ft-text-input-default-border-color","",Jt.borderInputPrimary),qt.extend("--ft-text-input-default-helper-text-color","",Jt.contentGlobalSubtle),qt.create("--ft-text-input-default-border-width","","SIZE","1px"),qt.create("--ft-text-input-error-border-width","","SIZE","2px"),qt.extend("--ft-text-input-error-border-color","",Jt.borderErrorPrimary),qt.extend("--ft-text-input-error-helper-text-color","",Jt.contentErrorPrimary),qt.extend("--ft-text-input-error-helper-icon-color","",Jt.contentErrorIconOnly),qt.create("--ft-text-input-warning-border-width","","SIZE","2px"),qt.create("--ft-text-input-focus-outline-width","","SIZE","2px"),qt.extend("--ft-text-input-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),qt.extend("--ft-text-input-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-text-area-background-color","",Vt.colorWhite),qt.extend("--ft-text-area-content-value-color","",Jt.contentGlobalPrimary),qt.extend("--ft-text-area-label-color","",Jt.contentGlobalSubtle),qt.extend("--ft-text-area-default-border-color","",Jt.borderInputPrimary),qt.extend("--ft-text-area-default-helper-text-color","",Jt.contentGlobalSubtle),qt.create("--ft-text-area-default-border-width","","SIZE","1px"),qt.create("--ft-text-area-error-border-width","","SIZE","2px"),qt.extend("--ft-text-area-error-border-color","",Jt.borderErrorPrimary),qt.extend("--ft-text-area-error-helper-text-color","",Jt.contentErrorPrimary),qt.extend("--ft-text-area-error-helper-icon-color","",Jt.contentErrorIconOnly),qt.extend("--ft-text-area-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-text-area-focus-outline-width","","SIZE","2px"),qt.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),qt.extend("--ft-text-area-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-text-area-field-horizontal-left-padding","",Vt.spacing4),qt.extend("--ft-text-area-field-horizontal-gap","",Vt.spacing3),qt.extend("--ft-text-area-field-vertical-gap","",Vt.spacing05),qt.create("--ft-text-area-field-min-height","","SIZE","64px"),qt.extend("--ft-text-area-helper-horizontal-padding","",Vt.spacing4),qt.extend("--ft-text-area-helper-horizontal-gap","",Vt.spacing1),qt.extend("--ft-text-area-helper-icon-size","",Vt.iconSize2),qt.extend("--ft-text-area-border-radius","",Vt.borderRadiusM),qt.create("--ft-floating-menu-height","","SIZE","50px"),qt.extend("--ft-floating-menu-horizontal-padding","",Vt.spacing4),qt.extend("--ft-floating-menu-off-icon-color","",Jt.contentGlobalPrimary),qt.extend("--ft-floating-menu-off-color","",Jt.contentGlobalPrimary),qt.extend("--ft-floating-menu-on-color","",Jt.contentActionPrimary),qt.extend("--ft-floating-menu-on-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-floating-menu-gap","",Vt.spacing3),qt.extend("--ft-floating-menu-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),qt.extend("--ft-floating-menu-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-floating-menu-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-floating-menu-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-floating-menu-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-floating-menu-icon-size","",Vt.iconSize3),qt.extend("--ft-floating-menu-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-combobox-single-select-field-horizontal-padding","",Vt.spacing4),qt.extend("--ft-combobox-single-select-field-horizontal-gap","",Vt.spacing3),qt.extend("--ft-combobox-single-select-field-vertical-gap","",Vt.spacing05),qt.extend("--ft-combobox-single-select-field-icon-size","",Vt.iconSize3),qt.create("--ft-combobox-single-select-field-height","","SIZE","50px"),qt.extend("--ft-combobox-single-select-helper-horizontal-padding","",Vt.spacing4),qt.extend("--ft-combobox-single-select-helper-horizontal-gap","",Vt.spacing1),qt.extend("--ft-combobox-single-select-helper-vertical-gap","",Vt.spacing1),qt.extend("--ft-combobox-single-select-helper-icon-size","",Vt.iconSize2),qt.extend("--ft-combobox-single-select-menu-vertical-gap","",Vt.spacing2),qt.extend("--ft-combobox-single-select-border-radius","",Vt.borderRadiusM),qt.extend("--ft-combobox-single-select-background-color","",Vt.colorWhite),qt.extend("--ft-combobox-single-select-label-color","",Jt.contentGlobalSubtle),qt.extend("--ft-combobox-single-select-content-value-color","",Jt.contentGlobalPrimary),qt.extend("--ft-combobox-single-select-trailing-icon-color","",Jt.contentGlobalSubtle),qt.extend("--ft-combobox-single-select-default-border-color","",Jt.borderInputPrimary),qt.extend("--ft-combobox-single-select-default-helper-text-color","",Jt.contentGlobalSubtle),qt.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),qt.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),qt.extend("--ft-combobox-single-select-error-border-color","",Jt.borderErrorPrimary),qt.extend("--ft-combobox-single-select-error-helper-text-color","",Jt.contentErrorPrimary),qt.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),qt.extend("--ft-combobox-single-select-warning-border-color","",Jt.borderWarningPrimary),qt.extend("--ft-combobox-single-select-warning-helper-text-color","",Jt.contentWarningPrimary),qt.extend("--ft-combobox-single-select-warning-helper-icon-color","",Jt.contentWarningIconOnly),qt.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),qt.extend("--ft-combobox-single-select-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),qt.extend("--ft-combobox-single-select-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-combobox-multi-select-background-color","",Vt.colorWhite),qt.extend("--ft-combobox-multi-select-label-color","",Jt.contentGlobalSubtle),qt.extend("--ft-combobox-multi-select-trailing-icon-color","",Jt.contentGlobalSubtle),qt.extend("--ft-combobox-multi-select-default-border-color","",Jt.borderInputPrimary),qt.extend("--ft-combobox-multi-select-default-helper-text-color","",Jt.contentGlobalSubtle),qt.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),qt.extend("--ft-combobox-multi-select-error-border-color","",Jt.borderErrorPrimary),qt.extend("--ft-combobox-multi-select-error-helper-text-color","",Jt.contentErrorPrimary),qt.extend("--ft-combobox-multi-select-error-helper-icon","",Jt.contentErrorIconOnly),qt.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),qt.extend("--ft-combobox-multi-select-warning-border-color","",Jt.borderWarningPrimary),qt.extend("--ft-combobox-multi-select-warning-helper-text-color","",Jt.contentWarningPrimary),qt.extend("--ft-combobox-multi-select-warning-helper-icon-color","",Jt.contentWarningIconOnly),qt.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),qt.extend("--ft-combobox-multi-select-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),qt.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),qt.extend("--ft-combobox-multi-select-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-combobox-multi-select-helper-horizontal-padding","",Vt.spacing4),qt.extend("--ft-combobox-multi-select-helper-horizontal-gap","",Vt.spacing1),qt.extend("--ft-combobox-multi-select-helper-vertical-gap","",Vt.spacing1),qt.extend("--ft-combobox-multi-select-helper-icon-size","",Vt.iconSize2),qt.extend("--ft-combobox-multi-select-field-horizontal-padding","",Vt.spacing4),qt.extend("--ft-combobox-multi-select-field-horizontal-gap","",Vt.spacing3),qt.extend("--ft-combobox-multi-select-field-vertical-gap","",Vt.spacing05),qt.extend("--ft-combobox-multi-select-field-icon-size","",Vt.iconSize3),qt.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),qt.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",Vt.spacing1),qt.extend("--ft-combobox-multi-select-content-values-vertical-gap","",Vt.spacing1),qt.extend("--ft-combobox-multi-select-border-radius","",Vt.borderRadiusM),qt.extend("--ft-popover-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-popover-horizontal-padding","",Vt.spacing6),qt.extend("--ft-popover-vertical-padding","",Vt.spacing6),qt.extend("--ft-popover-icon-color","",Jt.contentGlobalSecondary),qt.extend("--ft-popover-icon-size","",Vt.iconSize2),qt.extend("--ft-popover-title-color","",Jt.contentGlobalPrimary),qt.extend("--ft-popover-body-color","",Jt.contentGlobalSecondary),qt.extend("--ft-popover-link-color","",Jt.contentActionPrimary),qt.extend("--ft-popover-gap","",Vt.spacing3),qt.extend("--ft-popover-border-radius","",Vt.borderRadiusM),qt.extend("--ft-popover-shadow","",Vt.shadowElevation02),qt.extend("--ft-tabs-top-left-border-radius","",Vt.borderRadiusS),qt.extend("--ft-tabs-top-right-border-radius","",Vt.borderRadiusS),qt.extend("--ft-tabs-label-horizontal-padding","",Vt.spacing4),qt.extend("--ft-tabs-label-vertical-padding","",Vt.spacing3),qt.extend("--ft-tabs-label-gap","",Vt.spacing1),qt.extend("--ft-tabs-off-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-tabs-off-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-tabs-off-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-tabs-off-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-tabs-off-color","",Jt.contentGlobalSubtle),qt.extend("--ft-tabs-off-state-layer-color","",Jt.contentGlobalSubtle),qt.extend("--ft-tabs-on-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-tabs-on-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-tabs-on-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-tabs-on-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-tabs-on-color","",Jt.contentActionPrimary),qt.extend("--ft-tabs-on-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-tabs-icon-horizontal-padding","",Vt.spacing1),qt.extend("--ft-tabs-icon-vertical-padding","",Vt.spacing4),qt.create("--ft-tabs-focus-outline-width","","SIZE","2px"),qt.extend("--ft-tabs-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.extend("--ft-collapsible-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-collapsible-focus-state-layer-opacity","",Vt.opacity8),qt.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),qt.extend("--ft-collapsible-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.extend("--ft-collapsible-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-collapsible-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-collapsible-horizontal-padding","",Vt.spacing4),qt.extend("--ft-collapsible-vertical-padding","",Vt.spacing3),qt.extend("--ft-collapsible-color","",Jt.contentGlobalPrimary),qt.extend("--ft-collapsible-state-layer-color","",Jt.contentGlobalPrimary),qt.extend("--ft-collapsible-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-collapsible-border-color","",Jt.borderGlobalSubtle),qt.extend("--ft-collapsible-icon-size","",Vt.iconSize3),qt.extend("--ft-switch-group-horizontal-padding","",Vt.spacing1),qt.extend("--ft-switch-group-vertical-padding","",Vt.spacing1),qt.extend("--ft-switch-group-gap","",Vt.spacing1),qt.extend("--ft-switch-group-background-color","",Jt.backgroundGlobalSurface),qt.extend("--ft-switch-group-border-color","",Jt.borderGlobalSubtle),qt.create("--ft-switch-group-border-radius","","SIZE","6px"),qt.extend("--ft-switch-label-horizontal-padding","",Vt.spacing2),qt.extend("--ft-switch-label-vertical-padding","",Vt.spacing1),qt.extend("--ft-switch-off-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-switch-off-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-switch-off-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-switch-off-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-switch-off-color","",Jt.contentGlobalSubtle),qt.extend("--ft-switch-off-state-layer-color","",Jt.contentGlobalSubtle),qt.extend("--ft-switch-on-hover-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-switch-on-focus-state-layer-opacity","",Vt.opacity8),qt.extend("--ft-switch-on-active-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-switch-on-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-switch-on-color","",Jt.contentActionPrimary),qt.extend("--ft-switch-on-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-switch-icon-horizontal-padding","",Vt.spacing1),qt.extend("--ft-switch-icon-vertical-padding","",Vt.spacing1),qt.create("--ft-switch-focus-outline-width","","SIZE","2px"),qt.extend("--ft-switch-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.extend("--ft-switch-option-border-radius","",Vt.borderRadiusS),qt.extend("--ft-chart-1-light","for area color charts",Vt.colorBrand40),qt.extend("--ft-chart-1-base","for line charts",Vt.colorBrand0),qt.extend("--ft-chart-2-light","for area color charts",Vt.colorYellow60),qt.extend("--ft-chart-2-base","for line charts",Vt.colorYellow100),qt.extend("--ft-chart-3-light","",Vt.colorUltramarine40),qt.extend("--ft-chart-3-base","",Vt.colorUltramarine70),qt.extend("--ft-chart-4-light","",Vt.colorCyan50),qt.extend("--ft-chart-4-base","",Vt.colorCyan100),qt.extend("--ft-chart-5-light","",Vt.colorRed40),qt.extend("--ft-chart-5-base","",Vt.colorRed60),qt.extend("--ft-chart-6-light","",Vt.colorGreen40),qt.extend("--ft-chart-6-base","",Vt.colorGreen70),qt.extend("--ft-chart-7-light","",Vt.colorOrange70),qt.extend("--ft-chart-7-base","",Vt.colorOrange100),qt.extend("--ft-chart-8-light","",Vt.colorAvocado70),qt.extend("--ft-chart-8-base","",Vt.colorAvocado200),qt.extend("--ft-chart-9-light","",Vt.colorBrown50),qt.extend("--ft-chart-9-base","",Vt.colorBrown200),qt.extend("--ft-chart-10-light","",Vt.colorGray50),qt.extend("--ft-chart-10-base","",Vt.colorGray80),qt.extend("--ft-chart-monochrome-10","",Vt.colorBrand10),qt.extend("--ft-chart-monochrome-20","",Vt.colorBrand20),qt.extend("--ft-chart-monochrome-30","",Vt.colorBrand40),qt.extend("--ft-chart-monochrome-40","",Vt.colorBrand60),qt.extend("--ft-chart-monochrome-50","",Vt.colorBrand0),qt.extend("--ft-chart-monochrome-60","",Vt.colorBrand200),qt.extend("--ft-chip-large-horizontal-padding","",Vt.spacing4),qt.extend("--ft-chip-large-vertical-padding","",Vt.spacing2),qt.extend("--ft-chip-large-gap","",Vt.spacing1),qt.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),qt.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),qt.extend("--ft-chip-large-border-radius","",Vt.borderRadiusPill),qt.create("--ft-chip-large-border-width","","SIZE","1px"),qt.extend("--ft-chip-large-icon-size","",Vt.iconSize3),qt.extend("--ft-chip-medium-horizontal-padding","",Vt.spacing3),qt.extend("--ft-chip-medium-vertical-padding","",Vt.spacing1),qt.extend("--ft-chip-medium-gap","",Vt.spacing1),qt.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),qt.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),qt.extend("--ft-chip-medium-border-radius","",Vt.borderRadiusPill),qt.create("--ft-chip-medium-border-width","","SIZE","1px"),qt.extend("--ft-chip-medium-icon-size","",Vt.iconSize2),qt.extend("--ft-chip-small-horizontal-padding","",Vt.spacing2),qt.extend("--ft-chip-small-vertical-padding","",Vt.spacing05),qt.extend("--ft-chip-small-gap","",Vt.spacing1),qt.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),qt.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),qt.extend("--ft-chip-small-border-radius","",Vt.borderRadiusPill),qt.create("--ft-chip-small-border-width","","SIZE","1px"),qt.extend("--ft-chip-small-icon-size","",Vt.iconSize1),qt.extend("--ft-chip-neutral-background-color","",Jt.backgroundGlobalOnSurface),qt.extend("--ft-chip-neutral-color","",Jt.contentGlobalPrimary),qt.extend("--ft-chip-neutral-icon-color","",Jt.contentGlobalPrimary),qt.extend("--ft-chip-neutral-border-color","",Jt.borderGlobalSubtle),qt.extend("--ft-chip-info-background-color","",Jt.backgroundInfoSubtle),qt.extend("--ft-chip-info-color","",Jt.contentInfoPrimary),qt.extend("--ft-chip-info-icon-color","",Jt.contentInfoIconOnly),qt.extend("--ft-chip-info-border-color","",Jt.borderInfoSubtle),qt.extend("--ft-chip-success-background-color","",Jt.backgroundSuccessSubtle),qt.extend("--ft-chip-success-color","",Jt.contentSuccessPrimary),qt.extend("--ft-chip-success-icon-color","",Jt.contentSuccessIconOnly),qt.extend("--ft-chip-success-border-color","",Jt.borderSuccessSubtle),qt.extend("--ft-chip-warning-background-color","",Jt.backgroundWarningSubtle),qt.extend("--ft-chip-warning-color","",Jt.contentWarningPrimary),qt.extend("--ft-chip-warning-icon-color","",Jt.contentWarningIconOnly),qt.extend("--ft-chip-warning-border-color","",Jt.borderWarningSubtle),qt.extend("--ft-chip-error-background-color","",Jt.backgroundErrorSubtle),qt.extend("--ft-chip-error-color","",Jt.contentErrorPrimary),qt.extend("--ft-chip-error-icon-color","",Jt.contentErrorIconOnly),qt.extend("--ft-chip-error-border-color","",Jt.borderErrorSubtle),qt.extend("--ft-border-info-border-color","",Jt.borderInfoSubtle),qt.create("--ft-notice-border-width","","SIZE","1px"),qt.extend("--ft-notice-horizontal-padding","",Vt.spacing2),qt.extend("--ft-notice-vertical-padding","",Vt.spacing1),qt.extend("--ft-notice-border-radius","",Vt.borderRadiusS),qt.extend("--ft-notice-gap","",Vt.spacing2),qt.extend("--ft-notice-icon-size","",Vt.iconSize3),qt.extend("--ft-notice-info-background-color","",Jt.backgroundInfoSubtle),qt.extend("--ft-notice-info-border-color","",Jt.borderInfoSubtle),qt.extend("--ft-notice-info-color","",Jt.contentInfoPrimary),qt.extend("--ft-notice-info-icon-color","",Jt.contentInfoIconOnly),qt.extend("--ft-notice-warning-background-color","",Jt.backgroundWarningSubtle),qt.extend("--ft-notice-warning-border-color","",Jt.borderWarningSubtle),qt.extend("--ft-notice-warning-color","",Jt.contentWarningPrimary),qt.extend("--ft-notice-warning-icon-color","",Jt.contentWarningIconOnly),qt.extend("--ft-notice-error-background-color","",Jt.backgroundErrorSubtle),qt.extend("--ft-notice-error-border-color","",Jt.borderErrorSubtle),qt.extend("--ft-notice-error-color","",Jt.contentErrorPrimary),qt.extend("--ft-notice-error-icon-color","",Jt.contentErrorIconOnly),qt.extend("--ft-notice-success-background-color","",Jt.backgroundSuccessSubtle),qt.extend("--ft-notice-success-border-color","",Jt.borderSuccessSubtle),qt.extend("--ft-notice-success-color","",Jt.contentSuccessPrimary),qt.extend("--ft-notice-success-icon-color","",Jt.contentSuccessIconOnly),qt.extend("--ft-checkbox-color","",Jt.contentGlobalPrimary),qt.extend("--ft-checkbox-checked-background-color","",Jt.contentActionPrimary),qt.extend("--ft-checkbox-checked-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-checkbox-checked-icon-color","",Jt.contentGlobalOnColor),qt.extend("--ft-checkbox-checked-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-checkbox-checked-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-checkbox-checked-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-checkbox-checked-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-checkbox-unchecked-border-color","",Vt.colorGray80),qt.extend("--ft-checkbox-unchecked-state-layer-color","",Vt.colorGray80),qt.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-checkbox-unchecked-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-checkbox-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),qt.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),qt.extend("--ft-checkbox-gap","",Vt.spacing3),qt.extend("--ft-toggle-off-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-toggle-off-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-toggle-off-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-toggle-off-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-toggle-off-background-color","",Jt.contentGlobalSubtle),qt.extend("--ft-toggle-off-icon-color","",Jt.contentGlobalSubtle),qt.extend("--ft-toggle-off-state-layer-color","",Jt.contentGlobalSubtle),qt.extend("--ft-toggle-on-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-toggle-on-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-toggle-on-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-toggle-on-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-toggle-on-background-color","",Jt.contentActionPrimary),qt.extend("--ft-toggle-on-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-toggle-on-icon-color","",Jt.contentActionPrimary),qt.extend("--ft-toggle-color","",Jt.contentGlobalPrimary),qt.extend("--ft-toggle-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.extend("--ft-toggle-gap","",Vt.spacing3),qt.extend("--ft-radio-color","",Jt.contentGlobalPrimary),qt.extend("--ft-radio-selected-radio-color","",Jt.contentActionPrimary),qt.extend("--ft-radio-selected-state-layer-color","",Jt.contentActionPrimary),qt.extend("--ft-radio-selected-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-radio-selected-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-radio-selected-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-radio-selected-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-radio-unselected-state-layer-color","",Jt.borderInputPrimary),qt.extend("--ft-radio-unselected-border-color","",Jt.borderInputPrimary),qt.extend("--ft-radio-unselected-hover-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-radio-unselected-focus-state-layer-opacity","",Vt.opacity16),qt.extend("--ft-radio-unselected-active-state-layer-opacity","",Vt.opacity24),qt.extend("--ft-radio-unselected-disabled-component-opacity","",Vt.opacity40),qt.extend("--ft-radio-focus-focus-ring-color","",Jt.borderActionFocusRing),qt.create("--ft-radio-focus-outline-offset","","SIZE","3px"),qt.create("--ft-radio-focus-outline-width","","SIZE","2px"),qt.extend("--ft-radio-gap","",Vt.spacing3),qt.extend("--ft-notification-icon-size","",Vt.iconSize4),qt.extend("--ft-notification-horizontal-padding","",Vt.spacing4),qt.extend("--ft-notification-vertical-padding","",Vt.spacing4),qt.extend("--ft-notification-info-background-color","",Jt.backgroundInfoSubtle),qt.extend("--ft-notification-info-color","",Jt.contentInfoPrimary),qt.extend("--ft-notification-info-icon-color","",Jt.contentInfoIconOnly),qt.extend("--ft-notification-info-border-color","",Jt.borderInfoSubtle),qt.extend("--ft-notification-success-background-color","",Jt.backgroundSuccessSubtle),qt.extend("--ft-notification-success-color","",Jt.contentSuccessPrimary),qt.extend("--ft-notification-success-icon-color","",Jt.contentSuccessIconOnly),qt.extend("--ft-notification-success-border-color","",Jt.borderSuccessSubtle),qt.extend("--ft-notification-warning-background-color","",Jt.backgroundWarningSubtle),qt.extend("--ft-notification-warning-color","",Jt.contentWarningPrimary),qt.extend("--ft-notification-warning-icon-color","",Jt.contentWarningIconOnly),qt.extend("--ft-notification-warning-border-color","",Jt.borderWarningSubtle),qt.extend("--ft-notification-error-background-color","",Jt.backgroundErrorSubtle),qt.extend("--ft-notification-error-color","",Jt.contentErrorPrimary),qt.extend("--ft-notification-error-icon-color","",Jt.contentErrorIconOnly),qt.extend("--ft-notification-error-border-color","",Jt.borderErrorSubtle),qt.extend("--ft-notification-border-radius","",Vt.borderRadiusPill),qt.create("--ft-notification-border-width","","SIZE","1px"),qt.extend("--ft-notification-leading-gap","",Vt.spacing2),qt.extend("--ft-notification-trailing-gap","",Vt.spacing8),qt.extend("--ft-tooltip-horizontal-padding","",Vt.spacing2),qt.extend("--ft-tooltip-vertical-padding","",Vt.spacing2),qt.extend("--ft-tooltip-border-radius","",Vt.borderRadiusS),qt.extend("--ft-tooltip-color","",Jt.contentGlobalOnColor),qt.extend("--ft-tooltip-background-color","",Jt.contentGlobalPrimary),qt.extend("--ft-tooltip-background-opacity","",Vt.opacity80),qt.extend("--ft-tooltip-shadow","",Vt.shadowElevation03),qt.create("--ft-tooltip-max-width","","SIZE","256px"),qt.extend("--ft-tooltip-gap","",Vt.spacing05);const Qt=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),to=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),oo={fontFamily:to,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")},eo=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",Qt),ro=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",oo.fontSize,"20px"),ao=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",oo.fontWeight,"normal"),io=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",oo.letterSpacing,"0.15px"),no=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",oo.lineHeight,"1.2"),lo=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",oo.textTransform,"inherit"),co=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",Qt),po=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",oo.fontSize,"14px"),so=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",oo.fontWeight,"normal"),fo=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",oo.letterSpacing,"0.105px"),ho=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",oo.lineHeight,"1.7"),go=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",oo.textTransform,"inherit"),yo=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",to),bo=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",oo.fontSize,"16px"),mo=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",oo.fontWeight,"600"),uo=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",oo.letterSpacing,"0.144px"),xo=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",oo.lineHeight,"1.5"),Oo=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",oo.textTransform,"inherit"),No=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",to),vo=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",oo.fontSize,"14px"),So=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",oo.fontWeight,"normal"),wo=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",oo.letterSpacing,"0.098px"),Co=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",oo.lineHeight,"1.7"),Io=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",oo.textTransform,"inherit"),Eo=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",to),Uo=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",oo.fontSize,"16px"),Wo=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",oo.fontWeight,"normal"),Ro=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",oo.letterSpacing,"0.496px"),ko=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",oo.lineHeight,"1.5"),Zo=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",oo.textTransform,"inherit"),Lo=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",to),zo=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",oo.fontSize,"14px"),$o=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",oo.fontWeight,"normal"),Ko=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",oo.letterSpacing,"0.252px"),Fo=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",oo.lineHeight,"1.4"),Bo=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",oo.textTransform,"inherit"),Do=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",to),Ao=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",oo.fontSize,"12px"),Ho=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",oo.fontWeight,"normal"),Go=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",oo.letterSpacing,"0.396px"),Mo=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",oo.lineHeight,"1.33"),jo=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",oo.textTransform,"inherit"),Po=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",to),To=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",oo.fontSize,"10px"),_o=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",oo.fontWeight,"normal"),Yo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",oo.letterSpacing,"0.33px"),qo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",oo.lineHeight,"1.6"),Vo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",oo.textTransform,"inherit"),Xo=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",to),Jo=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",oo.fontSize,"10px"),Qo=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",oo.fontWeight,"normal"),te=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",oo.letterSpacing,"1.5px"),oe=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",oo.lineHeight,"1.6"),ee=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",oo.textTransform,"uppercase"),re=o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",to),ae=o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",oo.fontSize,"14px"),ie=o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",oo.fontWeight,"600"),ne=o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",oo.letterSpacing,"1.246px"),le=o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",oo.lineHeight,"1.15"),ce=o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",oo.textTransform,"uppercase"),pe=e.css`
|
|
241
|
+
`}get textContent(){var o,i;return(i=(o=this.slottedContent)===null||o===void 0?void 0:o.assignedNodes().map(l=>l.textContent).join("").trim())!==null&&i!==void 0?i:""}update(o){super.update(o),["value","variant"].some(i=>o.has(i))&&this.resolveIcon()}resolveIcon(){var o,i;let l=this.value||this.textContent;switch(this.variant){case j.file_format:this.resolvedIcon=(o=d[l.replace("-","_").toUpperCase()])!==null&&o!==void 0?o:l;break;case j.material:this.resolvedIcon=this.value||Se.nothing;break;default:this.resolvedIcon=(i=De[l.replace("-","_").toUpperCase()])!==null&&i!==void 0?i:l;break}}firstUpdated(o){super.firstUpdated(o),setTimeout(()=>this.resolveIcon())}};U.elementDefinitions={};U.styles=It;Me([(0,J.property)()],U.prototype,"variant",void 0);Me([(0,J.property)()],U.prototype,"value",void 0);Me([(0,J.state)()],U.prototype,"resolvedIcon",void 0);Me([(0,J.query)("slot")],U.prototype,"slottedContent",void 0);(0,ro.customElement)("ft-icon")(U);var pr=y(S());var gt=globalThis,Ke=gt.trustedTypes,ao=Ke?Ke.createPolicy("lit-html",{createHTML:t=>t}):void 0,so="$lit$",Y=`lit$${(Math.random()+"").slice(9)}$`,fo="?"+Y,Wr=`<${fo}>`,te=document,Ze=()=>te.createComment(""),Ce=t=>t===null||typeof t!="object"&&typeof t!="function",go=Array.isArray,Br=t=>go(t)||typeof t?.[Symbol.iterator]=="function",lt=`[
|
|
242
|
+
\f\r]`,Oe=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,io=/-->/g,no=/>/g,Q=RegExp(`>|${lt}(?:([^\\s"'>=/]+)(${lt}*=${lt}*(?:[^
|
|
243
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),lo=/'/g,co=/"/g,ho=/^(?:script|style|textarea|title)$/i,yo=t=>(o,...i)=>({_$litType$:t,strings:o,values:i}),mo=yo(1),uo=yo(2),ve=Symbol.for("lit-noChange"),E=Symbol.for("lit-nothing"),po=new WeakMap,ee=te.createTreeWalker(te,129);function bo(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return ao!==void 0?ao.createHTML(o):o}var Ur=(t,o)=>{let i=t.length-1,l=[],a,c=o===2?"<svg>":"",p=Oe;for(let s=0;s<i;s++){let g=t[s],m,x,b=-1,$=0;for(;$<g.length&&(p.lastIndex=$,x=p.exec(g),x!==null);)$=p.lastIndex,p===Oe?x[1]==="!--"?p=io:x[1]!==void 0?p=no:x[2]!==void 0?(ho.test(x[2])&&(a=RegExp("</"+x[2],"g")),p=Q):x[3]!==void 0&&(p=Q):p===Q?x[0]===">"?(p=a??Oe,b=-1):x[1]===void 0?b=-2:(b=p.lastIndex-x[2].length,m=x[1],p=x[3]===void 0?Q:x[3]==='"'?co:lo):p===co||p===lo?p=Q:p===io||p===no?p=Oe:(p=Q,a=void 0);let Z=p===Q&&t[s+1].startsWith("/>")?" ":"";c+=p===Oe?g+Wr:b>=0?(l.push(m),g.slice(0,b)+so+g.slice(b)+Y+Z):g+Y+(b===-2?s:Z)}return[bo(t,c+(t[i]||"<?>")+(o===2?"</svg>":"")),l]},Ne=class t{constructor({strings:o,_$litType$:i},l){let a;this.parts=[];let c=0,p=0,s=o.length-1,g=this.parts,[m,x]=Ur(o,i);if(this.el=t.createElement(m,l),ee.currentNode=this.el.content,i===2){let b=this.el.content.firstChild;b.replaceWith(...b.childNodes)}for(;(a=ee.nextNode())!==null&&g.length<s;){if(a.nodeType===1){if(a.hasAttributes())for(let b of a.getAttributeNames())if(b.endsWith(so)){let $=x[p++],Z=a.getAttribute(b).split(Y),Re=/([.?@])?(.*)/.exec($);g.push({type:1,index:c,name:Re[2],strings:Z,ctor:Re[1]==="."?pt:Re[1]==="?"?st:Re[1]==="@"?dt:ne}),a.removeAttribute(b)}else b.startsWith(Y)&&(g.push({type:6,index:c}),a.removeAttribute(b));if(ho.test(a.tagName)){let b=a.textContent.split(Y),$=b.length-1;if($>0){a.textContent=Ke?Ke.emptyScript:"";for(let Z=0;Z<$;Z++)a.append(b[Z],Ze()),ee.nextNode(),g.push({type:2,index:++c});a.append(b[$],Ze())}}}else if(a.nodeType===8)if(a.data===fo)g.push({type:2,index:c});else{let b=-1;for(;(b=a.data.indexOf(Y,b+1))!==-1;)g.push({type:7,index:c}),b+=Y.length-1}c++}}static createElement(o,i){let l=te.createElement("template");return l.innerHTML=o,l}};function ie(t,o,i=t,l){if(o===ve)return o;let a=l!==void 0?i._$Co?.[l]:i._$Cl,c=Ce(o)?void 0:o._$litDirective$;return a?.constructor!==c&&(a?._$AO?.(!1),c===void 0?a=void 0:(a=new c(t),a._$AT(t,i,l)),l!==void 0?(i._$Co??=[])[l]=a:i._$Cl=a),a!==void 0&&(o=ie(t,a._$AS(t,o.values),a,l)),o}var ct=class{constructor(o,i){this._$AV=[],this._$AN=void 0,this._$AD=o,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(o){let{el:{content:i},parts:l}=this._$AD,a=(o?.creationScope??te).importNode(i,!0);ee.currentNode=a;let c=ee.nextNode(),p=0,s=0,g=l[0];for(;g!==void 0;){if(p===g.index){let m;g.type===2?m=new Fe(c,c.nextSibling,this,o):g.type===1?m=new g.ctor(c,g.name,g.strings,this,o):g.type===6&&(m=new ft(c,this,o)),this._$AV.push(m),g=l[++s]}p!==g?.index&&(c=ee.nextNode(),p++)}return ee.currentNode=te,a}p(o){let i=0;for(let l of this._$AV)l!==void 0&&(l.strings!==void 0?(l._$AI(o,l,i),i+=l.strings.length-2):l._$AI(o[i])),i++}},Fe=class t{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(o,i,l,a){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=o,this._$AB=i,this._$AM=l,this.options=a,this._$Cv=a?.isConnected??!0}get parentNode(){let o=this._$AA.parentNode,i=this._$AM;return i!==void 0&&o?.nodeType===11&&(o=i.parentNode),o}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(o,i=this){o=ie(this,o,i),Ce(o)?o===E||o==null||o===""?(this._$AH!==E&&this._$AR(),this._$AH=E):o!==this._$AH&&o!==ve&&this._(o):o._$litType$!==void 0?this.g(o):o.nodeType!==void 0?this.$(o):Br(o)?this.T(o):this._(o)}k(o){return this._$AA.parentNode.insertBefore(o,this._$AB)}$(o){this._$AH!==o&&(this._$AR(),this._$AH=this.k(o))}_(o){this._$AH!==E&&Ce(this._$AH)?this._$AA.nextSibling.data=o:this.$(te.createTextNode(o)),this._$AH=o}g(o){let{values:i,_$litType$:l}=o,a=typeof l=="number"?this._$AC(o):(l.el===void 0&&(l.el=Ne.createElement(bo(l.h,l.h[0]),this.options)),l);if(this._$AH?._$AD===a)this._$AH.p(i);else{let c=new ct(a,this),p=c.u(this.options);c.p(i),this.$(p),this._$AH=c}}_$AC(o){let i=po.get(o.strings);return i===void 0&&po.set(o.strings,i=new Ne(o)),i}T(o){go(this._$AH)||(this._$AH=[],this._$AR());let i=this._$AH,l,a=0;for(let c of o)a===i.length?i.push(l=new t(this.k(Ze()),this.k(Ze()),this,this.options)):l=i[a],l._$AI(c),a++;a<i.length&&(this._$AR(l&&l._$AB.nextSibling,a),i.length=a)}_$AR(o=this._$AA.nextSibling,i){for(this._$AP?.(!1,!0,i);o&&o!==this._$AB;){let l=o.nextSibling;o.remove(),o=l}}setConnected(o){this._$AM===void 0&&(this._$Cv=o,this._$AP?.(o))}},ne=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(o,i,l,a,c){this.type=1,this._$AH=E,this._$AN=void 0,this.element=o,this.name=i,this._$AM=a,this.options=c,l.length>2||l[0]!==""||l[1]!==""?(this._$AH=Array(l.length-1).fill(new String),this.strings=l):this._$AH=E}_$AI(o,i=this,l,a){let c=this.strings,p=!1;if(c===void 0)o=ie(this,o,i,0),p=!Ce(o)||o!==this._$AH&&o!==ve,p&&(this._$AH=o);else{let s=o,g,m;for(o=c[0],g=0;g<c.length-1;g++)m=ie(this,s[l+g],i,g),m===ve&&(m=this._$AH[g]),p||=!Ce(m)||m!==this._$AH[g],m===E?o=E:o!==E&&(o+=(m??"")+c[g+1]),this._$AH[g]=m}p&&!a&&this.O(o)}O(o){o===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,o??"")}},pt=class extends ne{constructor(){super(...arguments),this.type=3}O(o){this.element[this.name]=o===E?void 0:o}},st=class extends ne{constructor(){super(...arguments),this.type=4}O(o){this.element.toggleAttribute(this.name,!!o&&o!==E)}},dt=class extends ne{constructor(o,i,l,a,c){super(o,i,l,a,c),this.type=5}_$AI(o,i=this){if((o=ie(this,o,i,0)??E)===ve)return;let l=this._$AH,a=o===E&&l!==E||o.capture!==l.capture||o.once!==l.once||o.passive!==l.passive,c=o!==E&&(l===E||a);a&&this.element.removeEventListener(this.name,this,l),c&&this.element.addEventListener(this.name,this,o),this._$AH=o}handleEvent(o){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,o):this._$AH.handleEvent(o)}},ft=class{constructor(o,i,l){this.element=o,this.type=6,this._$AN=void 0,this._$AM=i,this.options=l}get _$AU(){return this._$AM._$AU}_$AI(o){ie(this,o)}};var _r=gt.litHtmlPolyfillSupport;_r?.(Ne,Fe),(gt.litHtmlVersions??=[]).push("3.1.0");var So=Symbol.for(""),kr=t=>{if(t?.r===So)return t?._$litStatic$},ht=t=>({_$litStatic$:t,r:So});var xo=new Map,Oo=t=>(o,...i)=>{let l=i.length,a,c,p=[],s=[],g,m=0,x=!1;for(;m<l;){for(g=o[m];m<l&&(c=i[m],(a=kr(c))!==void 0);)g+=a+o[++m],x=!0;m!==l&&s.push(c),p.push(g),m++}if(m===l&&p.push(o[l]),x){let b=p.join("$$lit$$");(o=xo.get(b))===void 0&&(p.raw=p,xo.set(b,o=p)),i=s}return t(o,...i)},yt=Oo(mo),Ni=Oo(uo);var mt=y(H()),cr=y(S());var Ve;(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"})(Ve||(Ve={}));var _=y(A()),f=y(S());var D=y(A(),1),X=t=>typeof t=="string"?(0,D.unsafeCSS)(t):t,e=class{static create(o,i,l,a){let c=s=>X(s??a),p=D.css`var(${X(o)}, ${c(a)})`;return p.name=o,p.description=i,p.category=l,p.defaultValue=a,p.defaultCssValue=c,p.get=s=>D.css`var(${X(o)}, ${c(s)})`,p.breadcrumb=()=>[],p.lastResortDefaultValue=()=>a,p}static extend(o,i,l,a){let c=s=>l.get(s??a),p=D.css`var(${X(o)}, ${c(a)})`;return p.name=o,p.description=i,p.category=l.category,p.fallbackVariable=l,p.defaultValue=a,p.defaultCssValue=c,p.get=s=>D.css`var(${X(o)}, ${c(s)})`,p.breadcrumb=()=>[l.name,...l.breadcrumb()],p.lastResortDefaultValue=()=>a??l.lastResortDefaultValue(),p}static external(o,i){let l=c=>o.fallbackVariable?o.fallbackVariable.get(c??o.defaultValue):X(c??o.lastResortDefaultValue()),a=D.css`var(${X(o.name)}, ${l(o.defaultValue)})`;return a.name=o.name,a.category=o.category,a.fallbackVariable=o.fallbackVariable,a.defaultValue=o.defaultValue,a.context=i,a.defaultCssValue=l,a.get=c=>D.css`var(${X(o.name)}, ${l(c)})`,a.breadcrumb=()=>o.fallbackVariable?[o.fallbackVariable.name,...o.fallbackVariable.breadcrumb()]:[],a.lastResortDefaultValue=()=>o.lastResortDefaultValue(),a}};var r={colorWhite:e.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:e.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:e.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:e.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:e.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:e.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:e.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:e.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:e.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:e.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:e.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:e.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:e.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:e.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:e.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:e.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:e.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:e.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:e.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:e.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:e.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:e.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:e.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:e.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:e.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:e.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:e.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:e.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:e.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:e.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:e.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:e.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:e.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:e.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:e.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:e.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:e.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:e.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:e.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:e.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:e.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:e.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:e.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:e.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:e.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:e.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:e.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:e.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:e.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:e.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:e.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:e.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:e.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:e.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:e.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:e.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:e.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:e.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:e.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:e.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:e.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:e.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:e.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:e.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:e.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:e.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:e.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:e.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:e.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:e.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:e.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:e.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:e.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:e.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:e.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:e.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:e.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:e.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:e.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:e.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:e.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:e.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:e.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:e.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:e.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:e.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:e.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:e.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:e.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:e.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:e.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:e.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:e.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:e.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:e.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:e.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:e.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:e.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:e.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:e.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:e.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:e.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:e.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:e.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:e.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:e.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:e.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:e.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:e.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:e.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:e.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:e.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:e.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:e.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:e.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:e.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:e.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:e.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:e.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:e.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:e.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:e.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:e.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:e.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:e.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:e.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:e.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:e.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:e.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:e.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:e.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:e.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:e.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:e.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:e.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:e.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:e.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:e.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:e.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:e.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:e.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:e.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:e.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:e.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:e.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:e.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:e.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:e.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:e.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:e.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:e.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:e.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:e.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:e.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:e.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:e.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:e.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:e.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:e.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:e.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:e.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:e.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:e.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:e.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:e.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:e.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:e.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:e.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:e.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:e.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:e.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:e.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:e.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:e.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:e.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:e.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:e.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:e.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:e.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:e.create("--ft-icon-size-6","","SIZE","48px"),opacity0:e.create("--ft-opacity-0","","NUMBER","0"),opacity8:e.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:e.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:e.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:e.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:e.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:e.create("--ft-shadow-elevation-01","","SHADOW","0px 1px 4px 0px rgba(0,0,0,0.06), 0px 1px 2px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation02:e.create("--ft-shadow-elevation-02","","SHADOW","0px 4px 10px 0px rgba(0,0,0,0.06), 0px 2px 5px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation03:e.create("--ft-shadow-elevation-03","","SHADOW","0px 6px 13px 0px rgba(0,0,0,0.06), 0px 3px 7px 0px rgba(0,0,0,0.14), 0px 1px 2px 0px rgba(0,0,0,0.06)"),shadowElevation04:e.create("--ft-shadow-elevation-04","","SHADOW","0px 8px 16px 0px rgba(0,0,0,0.06), 0px 4px 9px 0px rgba(0,0,0,0.14), 0px 2px 3px 0px rgba(0,0,0,0.06)"),shadowElevation06:e.create("--ft-shadow-elevation-06","","SHADOW","0px 12px 22px 0px rgba(0,0,0,0.06), 0px 6px 13px 0px rgba(0,0,0,0.14), 0px 4px 5px 0px rgba(0,0,0,0.06)"),shadowElevation08:e.create("--ft-shadow-elevation-08","","SHADOW","0px 16px 28px 0px rgba(0,0,0,0.06), 0px 8px 17px 0px rgba(0,0,0,0.14), 0px 6px 7px 0px rgba(0,0,0,0.06)"),shadowElevation12:e.create("--ft-shadow-elevation-12","","SHADOW","0px 22px 40px 0px rgba(0,0,0,0.06), 0px 12px 23px 0px rgba(0,0,0,0.14), 0px 10px 11px 0px rgba(0,0,0,0.06)"),shadowElevation16:e.create("--ft-shadow-elevation-16","","SHADOW","0px 28px 52px 0px rgba(0,0,0,0.06), 0px 16px 29px 0px rgba(0,0,0,0.14), 0px 14px 15px 0px rgba(0,0,0,0.06)"),shadowElevation24:e.create("--ft-shadow-elevation-24","","SHADOW","0px 40px 76px 0px rgba(0,0,0,0.06), 0px 24px 41px 0px rgba(0,0,0,0.14), 0px 22px 23px 0px rgba(0,0,0,0.06)")},Co={fontFamily:e.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:e.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:e.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:e.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-display-textCase","","UNKNOWN","none")},vo={fontFamily:e.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:e.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:e.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:e.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},No={fontFamily:e.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:e.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:e.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:e.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},Eo={fontFamily:e.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:e.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:e.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:e.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},wo={fontFamily:e.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:e.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:e.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},Ro={fontFamily:e.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:e.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},Ao={fontFamily:e.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:e.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},Lo={fontFamily:e.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:e.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},Io={fontFamily:e.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},Pr={fontFamily:e.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:e.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:e.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},Wo={fontFamily:e.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:e.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:e.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:e.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},Bo={fontFamily:e.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:e.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:e.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:e.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},Uo={fontFamily:e.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:e.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:e.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:e.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},_o={fontFamily:e.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:e.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:e.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:e.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:e.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:e.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},ko={fontFamily:e.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:e.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:e.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:e.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:e.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},Po={fontFamily:e.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:e.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:e.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:e.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:e.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},To={fontFamily:e.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:e.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:e.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:e.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:e.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:e.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},zo={fontFamily:e.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:e.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},$o={fontFamily:e.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:e.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},Ho={fontFamily:e.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:e.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:e.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},Go={fontFamily:e.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:e.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},Do={fontFamily:e.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:e.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},Mo={fontFamily:e.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:e.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:e.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},Ko={fontFamily:e.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:e.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:e.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},Zo={fontFamily:e.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:e.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:e.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},Fo={fontFamily:e.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:e.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:e.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:e.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:e.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:e.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:e.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:e.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:e.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")},je={display:Co,"title-1":vo,"title-2":No,"title-3":Eo,"body-1-regular":wo,"body-1-medium":Ro,"body-1-semibold":Ao,"body-2-regular":Lo,"body-2-medium":Io,"body-2-medium-underline":Pr,"body-2-semibold":Wo,"label-1-medium":Bo,"label-1-semibold":Uo,"label-1-bold":_o,"label-2-medium":ko,"label-2-semibold":Po,"label-2-bold":To,"caption-1-medium":zo,"caption-1-semibold":$o,"caption-1-bold":Ho,"caption-2-medium":Go,"caption-2-semibold":Do,"caption-2-bold":Mo,"caption-3-medium":Ko,"caption-3-semibold":Zo,"caption-3-bold":Fo};var n={backgroundActionPrimary:e.extend("--ft-background-action-primary","Used as backgorund of primary action components.",r.colorBrand0),backgroundErrorSubtle:e.extend("--ft-background-error-subtle","Used as background of subtle error components.",r.colorRed10),backgroundInfoSubtle:e.extend("--ft-background-info-subtle","Used as background of subtle information components.",r.colorCyan10),backgroundWarningSubtle:e.extend("--ft-background-warning-subtle","Used as background of subtle information components.",r.colorOrange10),backgroundSuccessSubtle:e.extend("--ft-background-success-subtle","Used as background of subtle success components.",r.colorGreen10),backgroundGlobalSurface:e.extend("--ft-background-global-surface","Used as app background.",r.colorWhite),backgroundGlobalOnSurface:e.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",r.colorGray10),backgroundGlobalOnSurfaceDark:e.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",r.colorGray30),contentActionPrimary:e.extend("--ft-content-action-primary","Used on label of primary action on light surface.",r.colorBrand0),contentWarningPrimary:e.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",r.colorOrange200),contentWarningIconOnly:e.extend("--ft-content-warning-icon-only","Used on warning status icons alone",r.colorOrange0),contentErrorPrimary:e.extend("--ft-content-error-primary","Used on label of error messages on light surface.",r.colorRed0),contentErrorIconOnly:e.extend("--ft-content-error-icon-only","Used on error status icons alone",r.colorRed70),contentInfoPrimary:e.extend("--ft-content-info-primary","Used on label of information messages on light surface.",r.colorCyan200),contentInfoIconOnly:e.extend("--ft-content-info-icon-only","Used on info status icons alone",r.colorCyan0),contentSuccessPrimary:e.extend("--ft-content-success-primary","Used on label of success messages on light surface.",r.colorGreen200),contentSuccessIconOnly:e.extend("--ft-content-success-icon-only","Used on success status icons alone",r.colorGreen0),contentGlobalPrimary:e.extend("--ft-content-global-primary","Used for main content on the page.",r.colorGray500),contentGlobalSecondary:e.extend("--ft-content-global-secondary",`Used for secondary content, often paired with primary content.
|
|
244
|
+
Also for action icons.`,r.colorGray200),contentGlobalSubtle:e.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",r.colorGray0),contentGlobalOnColor:e.extend("--ft-content-global-on-color","Used for content on a dominant color.",r.colorWhite),borderActionPrimary:e.extend("--ft-border-action-primary","Used as border for primary action components.",r.colorBrand0),borderActionFocusRing:e.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",r.colorCyan0),borderWarningPrimary:e.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",r.colorOrange200),borderWarningSubtle:e.extend("--ft-border-warning-subtle","Used as border for warning components.",r.colorOrange30),borderSuccessPrimary:e.extend("--ft-border-success-primary","Used as border for success buttons.",r.colorGreen200),borderSuccessSubtle:e.extend("--ft-border-success-subtle","Used as border for success components.",r.colorGreen30),borderErrorPrimary:e.extend("--ft-border-error-primary","Used as border for text fields in error states.",r.colorRed0),borderErrorSubtle:e.extend("--ft-border-error-subtle","Used as border for error components.",r.colorRed30),borderInfoPrimary:e.extend("--ft-border-info-primary","Used as border for buttons in info color.",r.colorCyan200),borderInfoSubtle:e.extend("--ft-border-info-subtle","Used as border for information components.",r.colorCyan30),borderGlobalPrimary:e.extend("--ft-border-global-primary","Used as border for element like input.",r.colorGray50),borderGlobalSubtle:e.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",r.colorGray30),borderInputPrimary:e.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",r.colorGray80)};var zi={largeHeight:e.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:e.extend("--ft-button-large-horizontal-padding","",r.spacing4),largeGap:e.extend("--ft-button-large-gap","",r.spacing2),largeBorderRadius:e.extend("--ft-button-large-border-radius","",r.borderRadiusS),largeIconSize:e.extend("--ft-button-large-icon-size","",r.iconSize3),largeBorderWidth:e.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:e.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:e.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:e.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:e.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:e.extend("--ft-button-small-horizontal-padding","",r.spacing3),smallGap:e.extend("--ft-button-small-gap","",r.spacing2),smallBorderRadius:e.extend("--ft-button-small-border-radius","",r.borderRadiusS),smallIconSize:e.extend("--ft-button-small-icon-size","",r.iconSize2),smallBorderWidth:e.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:e.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:e.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:e.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:e.extend("--ft-button-primary-background-color","",n.backgroundActionPrimary),primaryColor:e.extend("--ft-button-primary-color","",n.contentGlobalOnColor),primaryIconColor:e.extend("--ft-button-primary-icon-color","",n.contentGlobalOnColor),primaryStateLayerColor:e.extend("--ft-button-primary-state-layer-color","",n.contentGlobalOnColor),primaryHoverStateLayerOpacity:e.extend("--ft-button-primary-hover-state-layer-opacity","",r.opacity16),primaryFocusStateLayerOpacity:e.extend("--ft-button-primary-focus-state-layer-opacity","",r.opacity16),primaryActiveStateLayerOpacity:e.extend("--ft-button-primary-active-state-layer-opacity","",r.opacity24),primaryDisabledComponentOpacity:e.extend("--ft-button-primary-disabled-component-opacity","",r.opacity40),focusFocusRingColor:e.extend("--ft-button-focus-focus-ring-color","",n.borderActionFocusRing),tertiaryBackgroundColor:e.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:e.extend("--ft-button-tertiary-color","",n.contentActionPrimary),tertiaryIconColor:e.extend("--ft-button-tertiary-icon-color","",n.contentActionPrimary),tertiaryStateLayerColor:e.extend("--ft-button-tertiary-state-layer-color","",n.contentActionPrimary),tertiaryHoverStateLayerOpacity:e.extend("--ft-button-tertiary-hover-state-layer-opacity","",r.opacity8),tertiaryFocusStateLayerOpacity:e.extend("--ft-button-tertiary-focus-state-layer-opacity","",r.opacity8),tertiaryActiveStateLayerOpacity:e.extend("--ft-button-tertiary-active-state-layer-opacity","",r.opacity16),tertiaryDisabledComponentOpacity:e.extend("--ft-button-tertiary-disabled-component-opacity","",r.opacity40),secondaryBackgroundColor:e.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:e.extend("--ft-button-secondary-color","",n.contentActionPrimary),secondaryIconColor:e.extend("--ft-button-secondary-icon-color","",n.contentActionPrimary),secondaryStateLayerColor:e.extend("--ft-button-secondary-state-layer-color","",n.contentActionPrimary),secondaryHoverStateLayerOpacity:e.extend("--ft-button-secondary-hover-state-layer-opacity","",r.opacity8),secondaryFocusStateLayerOpacity:e.extend("--ft-button-secondary-focus-state-layer-opacity","",r.opacity8),secondaryActiveStateLayerOpacity:e.extend("--ft-button-secondary-active-state-layer-opacity","",r.opacity16),secondaryDisabledComponentOpacity:e.extend("--ft-button-secondary-disabled-component-opacity","",r.opacity40),secondaryBorderColor:e.extend("--ft-button-secondary-border-color","",n.borderActionPrimary),neutralBackgroundColor:e.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:e.extend("--ft-button-neutral-icon-color","",n.contentGlobalSecondary),neutralColor:e.extend("--ft-button-neutral-color","",n.contentGlobalSecondary),neutralStateLayerColor:e.extend("--ft-button-neutral-state-layer-color","",n.contentGlobalSecondary),neutralHoverStateLayerOpacity:e.extend("--ft-button-neutral-hover-state-layer-opacity","",r.opacity8),neutralFocusStateLayerOpacity:e.extend("--ft-button-neutral-focus-state-layer-opacity","",r.opacity8),neutralActiveStateLayerOpacity:e.extend("--ft-button-neutral-active-state-layer-opacity","",r.opacity16),neutralDisabledComponentOpacity:e.extend("--ft-button-neutral-disabled-component-opacity","",r.opacity40)};var Mi={iconSize:e.extend("--ft-banner-icon-size","",r.iconSize5),borderWidth:e.create("--ft-banner-border-width","","SIZE","1px"),horizontalPadding:e.extend("--ft-banner-horizontal-padding","",r.spacing6),verticalPadding:e.extend("--ft-banner-vertical-padding","",r.spacing6),horizontalSideGap:e.extend("--ft-banner-horizontal-side-gap","",r.spacing6),horizontalMobileGap:e.extend("--ft-banner-horizontal-mobile-gap","",r.spacing4),verticalMobileGap:e.extend("--ft-banner-vertical-mobile-gap","",r.spacing6),horizontalMiddleGap:e.extend("--ft-banner-horizontal-middle-gap","",r.spacing20),infoBackgroundColor:e.extend("--ft-banner-info-background-color","",n.backgroundInfoSubtle),infoColor:e.extend("--ft-banner-info-color","",n.contentInfoPrimary),infoIconColor:e.extend("--ft-banner-info-icon-color","",n.contentInfoIconOnly)};var ji={horizontalGap:e.extend("--ft-breadcrumb-horizontal-gap","",r.spacing1),verticalGap:e.extend("--ft-breadcrumb-vertical-gap","",r.spacing2),currentElementColor:e.extend("--ft-breadcrumb-current-element-color","",n.contentGlobalPrimary),iconColor:e.extend("--ft-breadcrumb-icon-color","",n.contentGlobalSubtle)};var Qi={horizontalPadding:e.extend("--ft-page-header-horizontal-padding","",r.spacing12),horizontalGap:e.extend("--ft-page-header-horizontal-gap","",r.spacing4),verticalGap:e.extend("--ft-page-header-vertical-gap","",r.spacing2),classicVerticalPadding:e.extend("--ft-page-header-classic-vertical-padding","",r.spacing6),multilineVerticalPadding:e.extend("--ft-page-header-multiline-vertical-padding","",r.spacing4),inlineVerticalPadding:e.extend("--ft-page-header-inline-vertical-padding","",r.spacing2),backgroundColor:e.extend("--ft-page-header-background-color","",r.colorWhite),bottomBorderColor:e.extend("--ft-page-header-bottom-border-color","",n.borderGlobalSubtle),titleColor:e.extend("--ft-page-header-title-color","",n.contentGlobalPrimary),subtitleColor:e.extend("--ft-page-header-subtitle-color","",n.contentGlobalSecondary)};var an={smallContainerWidth:e.create("--ft-modal-small-container-width","","SIZE","600px"),largeContainerWidth:e.create("--ft-modal-large-container-width","","SIZE","900px"),overlayBackgroundColor:e.extend("--ft-modal-overlay-background-color","",r.colorGray700),overlayOpacity:e.extend("--ft-modal-overlay-opacity","",r.opacity40),shadow:e.extend("--ft-modal-shadow","",r.shadowElevation03),bodyBackgroundColor:e.extend("--ft-modal-body-background-color","",r.colorWhite),bodyColor:e.extend("--ft-modal-body-color","",n.contentGlobalPrimary),bodyHorizontalPadding:e.extend("--ft-modal-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:e.extend("--ft-modal-body-vertical-padding","",r.spacing6),bodyVerticalGap:e.extend("--ft-modal-body-vertical-gap","",r.spacing6),containerMargin:e.extend("--ft-modal-container-margin","",r.spacing3),headerBackgroundColor:e.extend("--ft-modal-header-background-color","",n.backgroundGlobalOnSurface),headerBorderColor:e.extend("--ft-modal-header-border-color","",n.borderGlobalSubtle),headerColor:e.extend("--ft-modal-header-color","",n.contentGlobalPrimary),headerTrailingIconColor:e.extend("--ft-modal-header-trailing-icon-color","",n.contentGlobalSecondary),headerVerticalPadding:e.extend("--ft-modal-header-vertical-padding","",r.spacing1),headerRightPadding:e.extend("--ft-modal-header-right-padding","",r.spacing1),headerLeftPadding:e.extend("--ft-modal-header-left-padding","",r.spacing6),headerGap:e.extend("--ft-modal-header-gap","",r.spacing2),headerBorderBottom:e.create("--ft-modal-header-border-bottom","","SIZE","1px"),borderRadius:e.extend("--ft-modal-border-radius","",r.borderRadiusM)};var sn={overlayOpacity:e.extend("--ft-drawer-overlay-opacity","",r.opacity40),shadow:e.extend("--ft-drawer-shadow","",r.shadowElevation03),bodyColor:e.extend("--ft-drawer-body-color","",n.contentGlobalPrimary),bodyHorizontalPadding:e.extend("--ft-drawer-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:e.extend("--ft-drawer-body-vertical-padding","",r.spacing6),bodyGap:e.extend("--ft-drawer-body-gap","",r.spacing6),bodyBackgroundColor:e.extend("--ft-drawer-body-background-color","",r.colorWhite),headerBackgroundColor:e.extend("--ft-drawer-header-background-color","",n.backgroundGlobalOnSurface),headerBorderColor:e.extend("--ft-drawer-header-border-color","",n.borderGlobalSubtle),headerColor:e.extend("--ft-drawer-header-color","",n.contentGlobalPrimary),headerTrailingIconColor:e.extend("--ft-drawer-header-trailing-icon-color","",n.contentGlobalSecondary),headerHeight:e.create("--ft-drawer-header-height","","SIZE","50px"),headerHorizontalPadding:e.extend("--ft-drawer-header-horizontal-padding","",r.spacing2),headerBorderWidth:e.create("--ft-drawer-header-border-width","","SIZE","1px"),headerGap:e.extend("--ft-drawer-header-gap","",r.spacing3),buttonsBarBackgroundColor:e.extend("--ft-drawer-buttons-bar-background-color","",n.backgroundGlobalOnSurface),buttonsBarBorderColor:e.extend("--ft-drawer-buttons-bar-border-color","",n.borderGlobalSubtle),buttonsBarColor:e.extend("--ft-drawer-buttons-bar-color","",n.contentGlobalPrimary),buttonsBarHorizontalPadding:e.extend("--ft-drawer-buttons-bar-horizontal-padding","",r.spacing4),buttonsBarVerticalPadding:e.extend("--ft-drawer-buttons-bar-vertical-padding","",r.spacing4),buttonsBarGap:e.extend("--ft-drawer-buttons-bar-gap","",r.spacing3),buttonsBarBorderWidth:e.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),containerWidth:e.create("--ft-drawer-container-width","","SIZE","66%"),containerMinWidth:e.create("--ft-drawer-container-min-width","","SIZE","500px"),containerMaxWidth:e.create("--ft-drawer-container-max-width","","SIZE","1000px"),containerHeight:e.create("--ft-drawer-container-height","","SIZE","100%"),overlayBackgroundColor:e.extend("--ft-drawer-overlay-background-color","",r.colorGray700)};var yn={fieldHorizontalPadding:e.extend("--ft-text-input-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:e.extend("--ft-text-input-field-horizontal-gap","",r.spacing3),fieldVerticalGap:e.extend("--ft-text-input-field-vertical-gap","",r.spacing05),fieldIconSize:e.extend("--ft-text-input-field-icon-size","",r.iconSize3),fieldHeight:e.create("--ft-text-input-field-height","","SIZE","50px"),helperHorizontalPadding:e.extend("--ft-text-input-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:e.extend("--ft-text-input-helper-horizontal-gap","",r.spacing1),helperIconSize:e.extend("--ft-text-input-helper-icon-size","",r.iconSize2),borderRadius:e.extend("--ft-text-input-border-radius","",r.borderRadiusM),backgroundColor:e.extend("--ft-text-input-background-color","",r.colorWhite),contentValueColor:e.extend("--ft-text-input-content-value-color","",n.contentGlobalPrimary),trailingIconColor:e.extend("--ft-text-input-trailing-icon-color","",n.contentGlobalSubtle),labelColor:e.extend("--ft-text-input-label-color","",n.contentGlobalSubtle),defaultBorderColor:e.extend("--ft-text-input-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:e.extend("--ft-text-input-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:e.create("--ft-text-input-default-border-width","","SIZE","1px"),errorBorderWidth:e.create("--ft-text-input-error-border-width","","SIZE","2px"),errorBorderColor:e.extend("--ft-text-input-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:e.extend("--ft-text-input-error-helper-text-color","",n.contentErrorPrimary),errorHelperIconColor:e.extend("--ft-text-input-error-helper-icon-color","",n.contentErrorIconOnly),warningBorderWidth:e.create("--ft-text-input-warning-border-width","","SIZE","2px"),focusOutlineWidth:e.create("--ft-text-input-focus-outline-width","","SIZE","2px"),focusFocusRingColor:e.extend("--ft-text-input-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:e.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:e.extend("--ft-text-input-disabled-component-opacity","",r.opacity40)};var Sn={backgroundColor:e.extend("--ft-text-area-background-color","",r.colorWhite),contentValueColor:e.extend("--ft-text-area-content-value-color","",n.contentGlobalPrimary),labelColor:e.extend("--ft-text-area-label-color","",n.contentGlobalSubtle),defaultBorderColor:e.extend("--ft-text-area-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:e.extend("--ft-text-area-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:e.create("--ft-text-area-default-border-width","","SIZE","1px"),errorBorderWidth:e.create("--ft-text-area-error-border-width","","SIZE","2px"),errorBorderColor:e.extend("--ft-text-area-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:e.extend("--ft-text-area-error-helper-text-color","",n.contentErrorPrimary),errorHelperIconColor:e.extend("--ft-text-area-error-helper-icon-color","",n.contentErrorIconOnly),focusFocusRingColor:e.extend("--ft-text-area-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineWidth:e.create("--ft-text-area-focus-outline-width","","SIZE","2px"),focusOutlineOffset:e.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:e.extend("--ft-text-area-disabled-component-opacity","",r.opacity40),fieldHorizontalLeftPadding:e.extend("--ft-text-area-field-horizontal-left-padding","",r.spacing4),fieldHorizontalGap:e.extend("--ft-text-area-field-horizontal-gap","",r.spacing3),fieldVerticalGap:e.extend("--ft-text-area-field-vertical-gap","",r.spacing05),fieldMinHeight:e.create("--ft-text-area-field-min-height","","SIZE","64px"),helperHorizontalPadding:e.extend("--ft-text-area-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:e.extend("--ft-text-area-helper-horizontal-gap","",r.spacing1),helperIconSize:e.extend("--ft-text-area-helper-icon-size","",r.iconSize2),borderRadius:e.extend("--ft-text-area-border-radius","",r.borderRadiusM)};var En={height:e.create("--ft-floating-menu-height","","SIZE","50px"),horizontalPadding:e.extend("--ft-floating-menu-horizontal-padding","",r.spacing4),offIconColor:e.extend("--ft-floating-menu-off-icon-color","",n.contentGlobalPrimary),offColor:e.extend("--ft-floating-menu-off-color","",n.contentGlobalPrimary),onColor:e.extend("--ft-floating-menu-on-color","",n.contentActionPrimary),onStateLayerColor:e.extend("--ft-floating-menu-on-state-layer-color","",n.contentActionPrimary),gap:e.extend("--ft-floating-menu-gap","",r.spacing3),focusFocusRingColor:e.extend("--ft-floating-menu-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineWidth:e.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),focusStateLayerOpacity:e.extend("--ft-floating-menu-focus-state-layer-opacity","",r.opacity8),hoverStateLayerOpacity:e.extend("--ft-floating-menu-hover-state-layer-opacity","",r.opacity8),activeStateLayerOpacity:e.extend("--ft-floating-menu-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:e.extend("--ft-floating-menu-disabled-component-opacity","",r.opacity40),iconSize:e.extend("--ft-floating-menu-icon-size","",r.iconSize3),backgroundColor:e.extend("--ft-floating-menu-background-color","",n.backgroundGlobalOnSurface)};var In={fieldHorizontalPadding:e.extend("--ft-combobox-single-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:e.extend("--ft-combobox-single-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:e.extend("--ft-combobox-single-select-field-vertical-gap","",r.spacing05),fieldIconSize:e.extend("--ft-combobox-single-select-field-icon-size","",r.iconSize3),fieldHeight:e.create("--ft-combobox-single-select-field-height","","SIZE","50px"),helperHorizontalPadding:e.extend("--ft-combobox-single-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:e.extend("--ft-combobox-single-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:e.extend("--ft-combobox-single-select-helper-vertical-gap","",r.spacing1),helperIconSize:e.extend("--ft-combobox-single-select-helper-icon-size","",r.iconSize2),menuVerticalGap:e.extend("--ft-combobox-single-select-menu-vertical-gap","",r.spacing2),borderRadius:e.extend("--ft-combobox-single-select-border-radius","",r.borderRadiusM),backgroundColor:e.extend("--ft-combobox-single-select-background-color","",r.colorWhite),labelColor:e.extend("--ft-combobox-single-select-label-color","",n.contentGlobalSubtle),contentValueColor:e.extend("--ft-combobox-single-select-content-value-color","",n.contentGlobalPrimary),trailingIconColor:e.extend("--ft-combobox-single-select-trailing-icon-color","",n.contentGlobalSubtle),defaultBorderColor:e.extend("--ft-combobox-single-select-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:e.extend("--ft-combobox-single-select-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:e.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),errorBorderWidth:e.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),errorBorderColor:e.extend("--ft-combobox-single-select-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:e.extend("--ft-combobox-single-select-error-helper-text-color","",n.contentErrorPrimary),warningBorderWidth:e.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),warningBorderColor:e.extend("--ft-combobox-single-select-warning-border-color","",n.borderWarningPrimary),warningHelperTextColor:e.extend("--ft-combobox-single-select-warning-helper-text-color","",n.contentWarningPrimary),warningHelperIconColor:e.extend("--ft-combobox-single-select-warning-helper-icon-color","",n.contentWarningIconOnly),focusOutlineWidth:e.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),focusFocusRingColor:e.extend("--ft-combobox-single-select-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:e.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:e.extend("--ft-combobox-single-select-disabled-component-opacity","",r.opacity40)};var kn={backgroundColor:e.extend("--ft-combobox-multi-select-background-color","",r.colorWhite),labelColor:e.extend("--ft-combobox-multi-select-label-color","",n.contentGlobalSubtle),trailingIconColor:e.extend("--ft-combobox-multi-select-trailing-icon-color","",n.contentGlobalSubtle),defaultBorderColor:e.extend("--ft-combobox-multi-select-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:e.extend("--ft-combobox-multi-select-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:e.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),errorBorderColor:e.extend("--ft-combobox-multi-select-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:e.extend("--ft-combobox-multi-select-error-helper-text-color","",n.contentErrorPrimary),errorHelperIcon:e.extend("--ft-combobox-multi-select-error-helper-icon","",n.contentErrorIconOnly),errorBorderWidth:e.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),warningBorderColor:e.extend("--ft-combobox-multi-select-warning-border-color","",n.borderWarningPrimary),warningHelperTextColor:e.extend("--ft-combobox-multi-select-warning-helper-text-color","",n.contentWarningPrimary),warningHelperIconColor:e.extend("--ft-combobox-multi-select-warning-helper-icon-color","",n.contentWarningIconOnly),warningBorderWidth:e.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),focusFocusRingColor:e.extend("--ft-combobox-multi-select-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineWidth:e.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),focusOutlineOffset:e.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:e.extend("--ft-combobox-multi-select-disabled-component-opacity","",r.opacity40),helperHorizontalPadding:e.extend("--ft-combobox-multi-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:e.extend("--ft-combobox-multi-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:e.extend("--ft-combobox-multi-select-helper-vertical-gap","",r.spacing1),helperIconSize:e.extend("--ft-combobox-multi-select-helper-icon-size","",r.iconSize2),fieldHorizontalPadding:e.extend("--ft-combobox-multi-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:e.extend("--ft-combobox-multi-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:e.extend("--ft-combobox-multi-select-field-vertical-gap","",r.spacing05),fieldIconSize:e.extend("--ft-combobox-multi-select-field-icon-size","",r.iconSize3),fieldMaxHeight:e.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),contentValuesHorizontalGap:e.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",r.spacing1),contentValuesVerticalGap:e.extend("--ft-combobox-multi-select-content-values-vertical-gap","",r.spacing1),borderRadius:e.extend("--ft-combobox-multi-select-border-radius","",r.borderRadiusM)};var Hn={backgroundColor:e.extend("--ft-popover-background-color","",n.backgroundGlobalOnSurface),horizontalPadding:e.extend("--ft-popover-horizontal-padding","",r.spacing6),verticalPadding:e.extend("--ft-popover-vertical-padding","",r.spacing6),iconColor:e.extend("--ft-popover-icon-color","",n.contentGlobalSecondary),iconSize:e.extend("--ft-popover-icon-size","",r.iconSize2),titleColor:e.extend("--ft-popover-title-color","",n.contentGlobalPrimary),bodyColor:e.extend("--ft-popover-body-color","",n.contentGlobalSecondary),linkColor:e.extend("--ft-popover-link-color","",n.contentActionPrimary),gap:e.extend("--ft-popover-gap","",r.spacing3),borderRadius:e.extend("--ft-popover-border-radius","",r.borderRadiusM),shadow:e.extend("--ft-popover-shadow","",r.shadowElevation02)};var Zn={topLeftBorderRadius:e.extend("--ft-tabs-top-left-border-radius","",r.borderRadiusS),topRightBorderRadius:e.extend("--ft-tabs-top-right-border-radius","",r.borderRadiusS),labelHorizontalPadding:e.extend("--ft-tabs-label-horizontal-padding","",r.spacing4),labelVerticalPadding:e.extend("--ft-tabs-label-vertical-padding","",r.spacing3),labelGap:e.extend("--ft-tabs-label-gap","",r.spacing1),offHoverStateLayerOpacity:e.extend("--ft-tabs-off-hover-state-layer-opacity","",r.opacity8),offFocusStateLayerOpacity:e.extend("--ft-tabs-off-focus-state-layer-opacity","",r.opacity8),offActiveStateLayerOpacity:e.extend("--ft-tabs-off-active-state-layer-opacity","",r.opacity16),offDisabledComponentOpacity:e.extend("--ft-tabs-off-disabled-component-opacity","",r.opacity40),offColor:e.extend("--ft-tabs-off-color","",n.contentGlobalSubtle),offStateLayerColor:e.extend("--ft-tabs-off-state-layer-color","",n.contentGlobalSubtle),onHoverStateLayerOpacity:e.extend("--ft-tabs-on-hover-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:e.extend("--ft-tabs-on-focus-state-layer-opacity","",r.opacity8),onActiveStateLayerOpacity:e.extend("--ft-tabs-on-active-state-layer-opacity","",r.opacity16),onDisabledComponentOpacity:e.extend("--ft-tabs-on-disabled-component-opacity","",r.opacity40),onColor:e.extend("--ft-tabs-on-color","",n.contentActionPrimary),onStateLayerColor:e.extend("--ft-tabs-on-state-layer-color","",n.contentActionPrimary),iconHorizontalPadding:e.extend("--ft-tabs-icon-horizontal-padding","",r.spacing1),iconVerticalPadding:e.extend("--ft-tabs-icon-vertical-padding","",r.spacing4),focusOutlineWidth:e.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:e.extend("--ft-tabs-focus-focus-ring-color","",n.borderActionFocusRing)};var Xn={hoverStateLayerOpacity:e.extend("--ft-collapsible-hover-state-layer-opacity","",r.opacity8),focusStateLayerOpacity:e.extend("--ft-collapsible-focus-state-layer-opacity","",r.opacity8),focusOutlineWidth:e.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:e.extend("--ft-collapsible-focus-focus-ring-color","",n.borderActionFocusRing),activeStateLayerOpacity:e.extend("--ft-collapsible-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:e.extend("--ft-collapsible-disabled-component-opacity","",r.opacity40),horizontalPadding:e.extend("--ft-collapsible-horizontal-padding","",r.spacing4),verticalPadding:e.extend("--ft-collapsible-vertical-padding","",r.spacing3),color:e.extend("--ft-collapsible-color","",n.contentGlobalPrimary),stateLayerColor:e.extend("--ft-collapsible-state-layer-color","",n.contentGlobalPrimary),backgroundColor:e.extend("--ft-collapsible-background-color","",n.backgroundGlobalOnSurface),borderColor:e.extend("--ft-collapsible-border-color","",n.borderGlobalSubtle),iconSize:e.extend("--ft-collapsible-icon-size","",r.iconSize3)};var tl={groupHorizontalPadding:e.extend("--ft-switch-group-horizontal-padding","",r.spacing1),groupVerticalPadding:e.extend("--ft-switch-group-vertical-padding","",r.spacing1),groupGap:e.extend("--ft-switch-group-gap","",r.spacing1),groupBackgroundColor:e.extend("--ft-switch-group-background-color","",n.backgroundGlobalSurface),groupBorderColor:e.extend("--ft-switch-group-border-color","",n.borderGlobalSubtle),groupBorderRadius:e.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:e.extend("--ft-switch-label-horizontal-padding","",r.spacing2),labelVerticalPadding:e.extend("--ft-switch-label-vertical-padding","",r.spacing1),offHoverStateLayerOpacity:e.extend("--ft-switch-off-hover-state-layer-opacity","",r.opacity8),offFocusStateLayerOpacity:e.extend("--ft-switch-off-focus-state-layer-opacity","",r.opacity8),offActiveStateLayerOpacity:e.extend("--ft-switch-off-active-state-layer-opacity","",r.opacity16),offDisabledComponentOpacity:e.extend("--ft-switch-off-disabled-component-opacity","",r.opacity40),offColor:e.extend("--ft-switch-off-color","",n.contentGlobalSubtle),offStateLayerColor:e.extend("--ft-switch-off-state-layer-color","",n.contentGlobalSubtle),onHoverStateLayerOpacity:e.extend("--ft-switch-on-hover-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:e.extend("--ft-switch-on-focus-state-layer-opacity","",r.opacity8),onActiveStateLayerOpacity:e.extend("--ft-switch-on-active-state-layer-opacity","",r.opacity16),onDisabledComponentOpacity:e.extend("--ft-switch-on-disabled-component-opacity","",r.opacity40),onColor:e.extend("--ft-switch-on-color","",n.contentActionPrimary),onStateLayerColor:e.extend("--ft-switch-on-state-layer-color","",n.contentActionPrimary),iconHorizontalPadding:e.extend("--ft-switch-icon-horizontal-padding","",r.spacing1),iconVerticalPadding:e.extend("--ft-switch-icon-vertical-padding","",r.spacing1),focusOutlineWidth:e.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:e.extend("--ft-switch-focus-focus-ring-color","",n.borderActionFocusRing),optionBorderRadius:e.extend("--ft-switch-option-border-radius","",r.borderRadiusS)};var il={color1Light:e.extend("--ft-chart-1-light","for area color charts",r.colorBrand40),color1Base:e.extend("--ft-chart-1-base","for line charts",r.colorBrand0),color2Light:e.extend("--ft-chart-2-light","for area color charts",r.colorYellow60),color2Base:e.extend("--ft-chart-2-base","for line charts",r.colorYellow100),color3Light:e.extend("--ft-chart-3-light","",r.colorUltramarine40),color3Base:e.extend("--ft-chart-3-base","",r.colorUltramarine70),color4Light:e.extend("--ft-chart-4-light","",r.colorCyan50),color4Base:e.extend("--ft-chart-4-base","",r.colorCyan100),color5Light:e.extend("--ft-chart-5-light","",r.colorRed40),color5Base:e.extend("--ft-chart-5-base","",r.colorRed60),color6Light:e.extend("--ft-chart-6-light","",r.colorGreen40),color6Base:e.extend("--ft-chart-6-base","",r.colorGreen70),color7Light:e.extend("--ft-chart-7-light","",r.colorOrange70),color7Base:e.extend("--ft-chart-7-base","",r.colorOrange100),color8Light:e.extend("--ft-chart-8-light","",r.colorAvocado70),color8Base:e.extend("--ft-chart-8-base","",r.colorAvocado200),color9Light:e.extend("--ft-chart-9-light","",r.colorBrown50),color9Base:e.extend("--ft-chart-9-base","",r.colorBrown200),color10Light:e.extend("--ft-chart-10-light","",r.colorGray50),color10Base:e.extend("--ft-chart-10-base","",r.colorGray80),monochrome10:e.extend("--ft-chart-monochrome-10","",r.colorBrand10),monochrome20:e.extend("--ft-chart-monochrome-20","",r.colorBrand20),monochrome30:e.extend("--ft-chart-monochrome-30","",r.colorBrand40),monochrome40:e.extend("--ft-chart-monochrome-40","",r.colorBrand60),monochrome50:e.extend("--ft-chart-monochrome-50","",r.colorBrand0),monochrome60:e.extend("--ft-chart-monochrome-60","",r.colorBrand200)};var sl={largeHorizontalPadding:e.extend("--ft-chip-large-horizontal-padding","",r.spacing4),largeVerticalPadding:e.extend("--ft-chip-large-vertical-padding","",r.spacing2),largeGap:e.extend("--ft-chip-large-gap","",r.spacing1),largeFocusOutlineOffset:e.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:e.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:e.extend("--ft-chip-large-border-radius","",r.borderRadiusPill),largeBorderWidth:e.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:e.extend("--ft-chip-large-icon-size","",r.iconSize3),mediumHorizontalPadding:e.extend("--ft-chip-medium-horizontal-padding","",r.spacing3),mediumVerticalPadding:e.extend("--ft-chip-medium-vertical-padding","",r.spacing1),mediumGap:e.extend("--ft-chip-medium-gap","",r.spacing1),mediumFocusOutlineOffset:e.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:e.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:e.extend("--ft-chip-medium-border-radius","",r.borderRadiusPill),mediumBorderWidth:e.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:e.extend("--ft-chip-medium-icon-size","",r.iconSize2),smallHorizontalPadding:e.extend("--ft-chip-small-horizontal-padding","",r.spacing2),smallVerticalPadding:e.extend("--ft-chip-small-vertical-padding","",r.spacing05),smallGap:e.extend("--ft-chip-small-gap","",r.spacing1),smallFocusOutlineOffset:e.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:e.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:e.extend("--ft-chip-small-border-radius","",r.borderRadiusPill),smallBorderWidth:e.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:e.extend("--ft-chip-small-icon-size","",r.iconSize1),neutralBackgroundColor:e.extend("--ft-chip-neutral-background-color","",n.backgroundGlobalOnSurface),neutralColor:e.extend("--ft-chip-neutral-color","",n.contentGlobalPrimary),neutralIconColor:e.extend("--ft-chip-neutral-icon-color","",n.contentGlobalPrimary),neutralBorderColor:e.extend("--ft-chip-neutral-border-color","",n.borderGlobalSubtle),infoBackgroundColor:e.extend("--ft-chip-info-background-color","",n.backgroundInfoSubtle),infoColor:e.extend("--ft-chip-info-color","",n.contentInfoPrimary),infoIconColor:e.extend("--ft-chip-info-icon-color","",n.contentInfoIconOnly),infoBorderColor:e.extend("--ft-chip-info-border-color","",n.borderInfoSubtle),successBackgroundColor:e.extend("--ft-chip-success-background-color","",n.backgroundSuccessSubtle),successColor:e.extend("--ft-chip-success-color","",n.contentSuccessPrimary),successIconColor:e.extend("--ft-chip-success-icon-color","",n.contentSuccessIconOnly),successBorderColor:e.extend("--ft-chip-success-border-color","",n.borderSuccessSubtle),warningBackgroundColor:e.extend("--ft-chip-warning-background-color","",n.backgroundWarningSubtle),warningColor:e.extend("--ft-chip-warning-color","",n.contentWarningPrimary),warningIconColor:e.extend("--ft-chip-warning-icon-color","",n.contentWarningIconOnly),warningBorderColor:e.extend("--ft-chip-warning-border-color","",n.borderWarningSubtle),errorBackgroundColor:e.extend("--ft-chip-error-background-color","",n.backgroundErrorSubtle),errorColor:e.extend("--ft-chip-error-color","",n.contentErrorPrimary),errorIconColor:e.extend("--ft-chip-error-icon-color","",n.contentErrorIconOnly),errorBorderColor:e.extend("--ft-chip-error-border-color","",n.borderErrorSubtle)};var hl={infoBorderColor:e.extend("--ft-border-info-border-color","",n.borderInfoSubtle)};var xl={borderWidth:e.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:e.extend("--ft-notice-horizontal-padding","",r.spacing2),verticalPadding:e.extend("--ft-notice-vertical-padding","",r.spacing1),borderRadius:e.extend("--ft-notice-border-radius","",r.borderRadiusS),gap:e.extend("--ft-notice-gap","",r.spacing2),iconSize:e.extend("--ft-notice-icon-size","",r.iconSize3),infoBackgroundColor:e.extend("--ft-notice-info-background-color","",n.backgroundInfoSubtle),infoBorderColor:e.extend("--ft-notice-info-border-color","",n.borderInfoSubtle),infoColor:e.extend("--ft-notice-info-color","",n.contentInfoPrimary),infoIconColor:e.extend("--ft-notice-info-icon-color","",n.contentInfoIconOnly),warningBackgroundColor:e.extend("--ft-notice-warning-background-color","",n.backgroundWarningSubtle),warningBorderColor:e.extend("--ft-notice-warning-border-color","",n.borderWarningSubtle),warningColor:e.extend("--ft-notice-warning-color","",n.contentWarningPrimary),warningIconColor:e.extend("--ft-notice-warning-icon-color","",n.contentWarningIconOnly),errorBackgroundColor:e.extend("--ft-notice-error-background-color","",n.backgroundErrorSubtle),errorBorderColor:e.extend("--ft-notice-error-border-color","",n.borderErrorSubtle),errorColor:e.extend("--ft-notice-error-color","",n.contentErrorPrimary),errorIconColor:e.extend("--ft-notice-error-icon-color","",n.contentErrorIconOnly),successBackgroundColor:e.extend("--ft-notice-success-background-color","",n.backgroundSuccessSubtle),successBorderColor:e.extend("--ft-notice-success-border-color","",n.borderSuccessSubtle),successColor:e.extend("--ft-notice-success-color","",n.contentSuccessPrimary),successIconColor:e.extend("--ft-notice-success-icon-color","",n.contentSuccessIconOnly)};var Nl={color:e.extend("--ft-checkbox-color","",n.contentGlobalPrimary),checkedBackgroundColor:e.extend("--ft-checkbox-checked-background-color","",n.contentActionPrimary),checkedStateLayerColor:e.extend("--ft-checkbox-checked-state-layer-color","",n.contentActionPrimary),checkedIconColor:e.extend("--ft-checkbox-checked-icon-color","",n.contentGlobalOnColor),checkedHoverStateLayerOpacity:e.extend("--ft-checkbox-checked-hover-state-layer-opacity","",r.opacity16),checkedFocusStateLayerOpacity:e.extend("--ft-checkbox-checked-focus-state-layer-opacity","",r.opacity16),checkedActiveStateLayerOpacity:e.extend("--ft-checkbox-checked-active-state-layer-opacity","",r.opacity24),checkedDisabledComponentOpacity:e.extend("--ft-checkbox-checked-disabled-component-opacity","",r.opacity40),uncheckedBorderColor:e.extend("--ft-checkbox-unchecked-border-color","",r.colorGray80),uncheckedStateLayerColor:e.extend("--ft-checkbox-unchecked-state-layer-color","",r.colorGray80),uncheckedHoverStateLayerOpacity:e.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",r.opacity16),uncheckedFocusStateLayerOpacity:e.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",r.opacity16),uncheckedActiveStateLayerOpacity:e.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",r.opacity24),uncheckedDisabledComponentOpacity:e.extend("--ft-checkbox-unchecked-disabled-component-opacity","",r.opacity40),focusFocusRingColor:e.extend("--ft-checkbox-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:e.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:e.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:e.extend("--ft-checkbox-gap","",r.spacing3)};var Ll={offHoverStateLayerOpacity:e.extend("--ft-toggle-off-hover-state-layer-opacity","",r.opacity16),offFocusStateLayerOpacity:e.extend("--ft-toggle-off-focus-state-layer-opacity","",r.opacity16),offActiveStateLayerOpacity:e.extend("--ft-toggle-off-active-state-layer-opacity","",r.opacity24),offDisabledComponentOpacity:e.extend("--ft-toggle-off-disabled-component-opacity","",r.opacity40),offBackgroundColor:e.extend("--ft-toggle-off-background-color","",n.contentGlobalSubtle),offIconColor:e.extend("--ft-toggle-off-icon-color","",n.contentGlobalSubtle),offStateLayerColor:e.extend("--ft-toggle-off-state-layer-color","",n.contentGlobalSubtle),onHoverStateLayerOpacity:e.extend("--ft-toggle-on-hover-state-layer-opacity","",r.opacity16),onFocusStateLayerOpacity:e.extend("--ft-toggle-on-focus-state-layer-opacity","",r.opacity16),onActiveStateLayerOpacity:e.extend("--ft-toggle-on-active-state-layer-opacity","",r.opacity24),onDisabledComponentOpacity:e.extend("--ft-toggle-on-disabled-component-opacity","",r.opacity40),onBackgroundColor:e.extend("--ft-toggle-on-background-color","",n.contentActionPrimary),onStateLayerColor:e.extend("--ft-toggle-on-state-layer-color","",n.contentActionPrimary),onIconColor:e.extend("--ft-toggle-on-icon-color","",n.contentActionPrimary),color:e.extend("--ft-toggle-color","",n.contentGlobalPrimary),focusFocusRingColor:e.extend("--ft-toggle-focus-focus-ring-color","",n.borderActionFocusRing),gap:e.extend("--ft-toggle-gap","",r.spacing3)};var _l={color:e.extend("--ft-radio-color","",n.contentGlobalPrimary),selectedRadioColor:e.extend("--ft-radio-selected-radio-color","",n.contentActionPrimary),selectedStateLayerColor:e.extend("--ft-radio-selected-state-layer-color","",n.contentActionPrimary),selectedHoverStateLayerOpacity:e.extend("--ft-radio-selected-hover-state-layer-opacity","",r.opacity16),selectedFocusStateLayerOpacity:e.extend("--ft-radio-selected-focus-state-layer-opacity","",r.opacity16),selectedActiveStateLayerOpacity:e.extend("--ft-radio-selected-active-state-layer-opacity","",r.opacity24),selectedDisabledComponentOpacity:e.extend("--ft-radio-selected-disabled-component-opacity","",r.opacity40),unselectedStateLayerColor:e.extend("--ft-radio-unselected-state-layer-color","",n.borderInputPrimary),unselectedBorderColor:e.extend("--ft-radio-unselected-border-color","",n.borderInputPrimary),unselectedHoverStateLayerOpacity:e.extend("--ft-radio-unselected-hover-state-layer-opacity","",r.opacity16),unselectedFocusStateLayerOpacity:e.extend("--ft-radio-unselected-focus-state-layer-opacity","",r.opacity16),unselectedActiveStateLayerOpacity:e.extend("--ft-radio-unselected-active-state-layer-opacity","",r.opacity24),unselectedDisabledComponentOpacity:e.extend("--ft-radio-unselected-disabled-component-opacity","",r.opacity40),focusFocusRingColor:e.extend("--ft-radio-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:e.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:e.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:e.extend("--ft-radio-gap","",r.spacing3)};var $l={iconSize:e.extend("--ft-notification-icon-size","",r.iconSize4),horizontalPadding:e.extend("--ft-notification-horizontal-padding","",r.spacing4),verticalPadding:e.extend("--ft-notification-vertical-padding","",r.spacing4),infoBackgroundColor:e.extend("--ft-notification-info-background-color","",n.backgroundInfoSubtle),infoColor:e.extend("--ft-notification-info-color","",n.contentInfoPrimary),infoIconColor:e.extend("--ft-notification-info-icon-color","",n.contentInfoIconOnly),infoBorderColor:e.extend("--ft-notification-info-border-color","",n.borderInfoSubtle),successBackgroundColor:e.extend("--ft-notification-success-background-color","",n.backgroundSuccessSubtle),successColor:e.extend("--ft-notification-success-color","",n.contentSuccessPrimary),successIconColor:e.extend("--ft-notification-success-icon-color","",n.contentSuccessIconOnly),successBorderColor:e.extend("--ft-notification-success-border-color","",n.borderSuccessSubtle),warningBackgroundColor:e.extend("--ft-notification-warning-background-color","",n.backgroundWarningSubtle),warningColor:e.extend("--ft-notification-warning-color","",n.contentWarningPrimary),warningIconColor:e.extend("--ft-notification-warning-icon-color","",n.contentWarningIconOnly),warningBorderColor:e.extend("--ft-notification-warning-border-color","",n.borderWarningSubtle),errorBackgroundColor:e.extend("--ft-notification-error-background-color","",n.backgroundErrorSubtle),errorColor:e.extend("--ft-notification-error-color","",n.contentErrorPrimary),errorIconColor:e.extend("--ft-notification-error-icon-color","",n.contentErrorIconOnly),errorBorderColor:e.extend("--ft-notification-error-border-color","",n.borderErrorSubtle),borderRadius:e.extend("--ft-notification-border-radius","",r.borderRadiusPill),borderWidth:e.create("--ft-notification-border-width","","SIZE","1px"),leadingGap:e.extend("--ft-notification-leading-gap","",r.spacing2),trailingGap:e.extend("--ft-notification-trailing-gap","",r.spacing8)};var Kl={horizontalPadding:e.extend("--ft-tooltip-horizontal-padding","",r.spacing2),verticalPadding:e.extend("--ft-tooltip-vertical-padding","",r.spacing2),borderRadius:e.extend("--ft-tooltip-border-radius","",r.borderRadiusS),color:e.extend("--ft-tooltip-color","",n.contentGlobalOnColor),backgroundColor:e.extend("--ft-tooltip-background-color","",n.contentGlobalPrimary),backgroundOpacity:e.extend("--ft-tooltip-background-opacity","",r.opacity80),shadow:e.extend("--ft-tooltip-shadow","",r.shadowElevation03),maxWidth:e.create("--ft-tooltip-max-width","","SIZE","256px"),gap:e.extend("--ft-tooltip-gap","",r.spacing05)};var Ye=y(A());function Vo(t){let o=je[t];return Ye.css`
|
|
245
|
+
.ft-typography--${(0,Ye.unsafeCSS)(t)} {
|
|
246
|
+
font-family: ${o.fontFamily};
|
|
247
|
+
font-size: ${o.fontSize};
|
|
248
|
+
font-weight: ${o.fontWeight};
|
|
249
|
+
letter-spacing: ${o.letterSpacing};
|
|
250
|
+
line-height: ${o.lineHeight};
|
|
251
|
+
text-transform: ${o.textCase};
|
|
252
|
+
}
|
|
253
|
+
`}var jo=f.FtCssVariableFactory.extend("--ft-typography-font-family","",f.designSystemVariables.titleFont),M=f.FtCssVariableFactory.extend("--ft-typography-font-family","",f.designSystemVariables.contentFont),h={fontFamily:M,fontSize:f.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:f.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:f.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:f.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:f.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},le={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-title-font-family","",jo),fontSize:f.FtCssVariableFactory.extend("--ft-typography-title-font-size","",h.fontSize,"20px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",h.letterSpacing,"0.15px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-title-line-height","",h.lineHeight,"1.2"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",h.textTransform,"inherit")},ce={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",jo),fontSize:f.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",h.fontSize,"14px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",h.letterSpacing,"0.105px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",h.lineHeight,"1.7"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",h.textTransform,"inherit")},pe={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",h.fontSize,"16px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",h.fontWeight,"600"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",h.letterSpacing,"0.144px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",h.lineHeight,"1.5"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",h.textTransform,"inherit")},se={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",h.fontSize,"14px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",h.letterSpacing,"0.098px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",h.lineHeight,"1.7"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",h.textTransform,"inherit")},de={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",h.fontSize,"16px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",h.letterSpacing,"0.496px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",h.lineHeight,"1.5"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",h.textTransform,"inherit")},fe={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",h.fontSize,"14px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",h.letterSpacing,"0.252px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",h.lineHeight,"1.4"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",h.textTransform,"inherit")},ge={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",h.fontSize,"12px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",h.letterSpacing,"0.396px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",h.lineHeight,"1.33"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",h.textTransform,"inherit")},he={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",h.fontSize,"10px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",h.letterSpacing,"0.33px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",h.lineHeight,"1.6"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",h.textTransform,"inherit")},ye={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",h.fontSize,"10px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",h.fontWeight,"normal"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",h.letterSpacing,"1.5px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",h.lineHeight,"1.6"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",h.textTransform,"uppercase")},me={fontFamily:f.FtCssVariableFactory.extend("--ft-typography-button-font-family","",M),fontSize:f.FtCssVariableFactory.extend("--ft-typography-button-font-size","",h.fontSize,"14px"),fontWeight:f.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",h.fontWeight,"600"),letterSpacing:f.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",h.letterSpacing,"1.246px"),lineHeight:f.FtCssVariableFactory.extend("--ft-typography-button-line-height","",h.lineHeight,"1.15"),textTransform:f.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",h.textTransform,"uppercase")},Yo=_.css`
|
|
254
254
|
.ft-typography--title {
|
|
255
|
-
font-family: ${
|
|
256
|
-
font-size: ${
|
|
257
|
-
font-weight: ${
|
|
258
|
-
letter-spacing: ${
|
|
259
|
-
line-height: ${
|
|
260
|
-
text-transform: ${
|
|
261
|
-
}
|
|
262
|
-
`,
|
|
255
|
+
font-family: ${le.fontFamily};
|
|
256
|
+
font-size: ${le.fontSize};
|
|
257
|
+
font-weight: ${le.fontWeight};
|
|
258
|
+
letter-spacing: ${le.letterSpacing};
|
|
259
|
+
line-height: ${le.lineHeight};
|
|
260
|
+
text-transform: ${le.textTransform};
|
|
261
|
+
}
|
|
262
|
+
`,Xo=_.css`
|
|
263
263
|
.ft-typography--title-dense {
|
|
264
|
-
font-family: ${
|
|
265
|
-
font-size: ${
|
|
266
|
-
font-weight: ${
|
|
267
|
-
letter-spacing: ${
|
|
268
|
-
line-height: ${
|
|
269
|
-
text-transform: ${
|
|
270
|
-
}
|
|
271
|
-
`,
|
|
264
|
+
font-family: ${ce.fontFamily};
|
|
265
|
+
font-size: ${ce.fontSize};
|
|
266
|
+
font-weight: ${ce.fontWeight};
|
|
267
|
+
letter-spacing: ${ce.letterSpacing};
|
|
268
|
+
line-height: ${ce.lineHeight};
|
|
269
|
+
text-transform: ${ce.textTransform};
|
|
270
|
+
}
|
|
271
|
+
`,qo=_.css`
|
|
272
272
|
.ft-typography--subtitle1 {
|
|
273
|
-
font-family: ${
|
|
274
|
-
font-size: ${
|
|
275
|
-
font-weight: ${
|
|
276
|
-
letter-spacing: ${
|
|
277
|
-
line-height: ${
|
|
278
|
-
text-transform: ${
|
|
279
|
-
}
|
|
280
|
-
`,
|
|
273
|
+
font-family: ${pe.fontFamily};
|
|
274
|
+
font-size: ${pe.fontSize};
|
|
275
|
+
font-weight: ${pe.fontWeight};
|
|
276
|
+
letter-spacing: ${pe.letterSpacing};
|
|
277
|
+
line-height: ${pe.lineHeight};
|
|
278
|
+
text-transform: ${pe.textTransform};
|
|
279
|
+
}
|
|
280
|
+
`,Jo=_.css`
|
|
281
281
|
.ft-typography--subtitle2 {
|
|
282
|
-
font-family: ${
|
|
283
|
-
font-size: ${
|
|
284
|
-
font-weight: ${
|
|
285
|
-
letter-spacing: ${
|
|
286
|
-
line-height: ${
|
|
287
|
-
text-transform: ${
|
|
282
|
+
font-family: ${se.fontFamily};
|
|
283
|
+
font-size: ${se.fontSize};
|
|
284
|
+
font-weight: ${se.fontWeight};
|
|
285
|
+
letter-spacing: ${se.letterSpacing};
|
|
286
|
+
line-height: ${se.lineHeight};
|
|
287
|
+
text-transform: ${se.textTransform};
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
`,
|
|
290
|
+
`,Qo=_.css`
|
|
291
291
|
.ft-typography--body1 {
|
|
292
|
-
font-family: ${
|
|
293
|
-
font-size: ${
|
|
294
|
-
font-weight: ${
|
|
295
|
-
letter-spacing: ${
|
|
296
|
-
line-height: ${
|
|
297
|
-
text-transform: ${
|
|
298
|
-
}
|
|
299
|
-
`,
|
|
292
|
+
font-family: ${de.fontFamily};
|
|
293
|
+
font-size: ${de.fontSize};
|
|
294
|
+
font-weight: ${de.fontWeight};
|
|
295
|
+
letter-spacing: ${de.letterSpacing};
|
|
296
|
+
line-height: ${de.lineHeight};
|
|
297
|
+
text-transform: ${de.textTransform};
|
|
298
|
+
}
|
|
299
|
+
`,er=_.css`
|
|
300
300
|
.ft-typography--body2 {
|
|
301
|
-
font-family: ${
|
|
302
|
-
font-size: ${
|
|
303
|
-
font-weight: ${
|
|
304
|
-
letter-spacing: ${
|
|
305
|
-
line-height: ${
|
|
306
|
-
text-transform: ${
|
|
307
|
-
}
|
|
308
|
-
`,
|
|
301
|
+
font-family: ${fe.fontFamily};
|
|
302
|
+
font-size: ${fe.fontSize};
|
|
303
|
+
font-weight: ${fe.fontWeight};
|
|
304
|
+
letter-spacing: ${fe.letterSpacing};
|
|
305
|
+
line-height: ${fe.lineHeight};
|
|
306
|
+
text-transform: ${fe.textTransform};
|
|
307
|
+
}
|
|
308
|
+
`,tr=_.css`
|
|
309
309
|
.ft-typography--caption {
|
|
310
|
-
font-family: ${
|
|
311
|
-
font-size: ${
|
|
312
|
-
font-weight: ${
|
|
313
|
-
letter-spacing: ${
|
|
314
|
-
line-height: ${
|
|
315
|
-
text-transform: ${
|
|
316
|
-
}
|
|
317
|
-
`,
|
|
310
|
+
font-family: ${ge.fontFamily};
|
|
311
|
+
font-size: ${ge.fontSize};
|
|
312
|
+
font-weight: ${ge.fontWeight};
|
|
313
|
+
letter-spacing: ${ge.letterSpacing};
|
|
314
|
+
line-height: ${ge.lineHeight};
|
|
315
|
+
text-transform: ${ge.textTransform};
|
|
316
|
+
}
|
|
317
|
+
`,or=_.css`
|
|
318
318
|
.ft-typography--breadcrumb {
|
|
319
|
-
font-family: ${
|
|
320
|
-
font-size: ${
|
|
321
|
-
font-weight: ${
|
|
322
|
-
letter-spacing: ${
|
|
323
|
-
line-height: ${
|
|
324
|
-
text-transform: ${
|
|
325
|
-
}
|
|
326
|
-
`,
|
|
319
|
+
font-family: ${he.fontFamily};
|
|
320
|
+
font-size: ${he.fontSize};
|
|
321
|
+
font-weight: ${he.fontWeight};
|
|
322
|
+
letter-spacing: ${he.letterSpacing};
|
|
323
|
+
line-height: ${he.lineHeight};
|
|
324
|
+
text-transform: ${he.textTransform};
|
|
325
|
+
}
|
|
326
|
+
`,rr=_.css`
|
|
327
327
|
.ft-typography--overline {
|
|
328
|
-
font-family: ${
|
|
329
|
-
font-size: ${
|
|
330
|
-
font-weight: ${
|
|
331
|
-
letter-spacing: ${
|
|
332
|
-
line-height: ${
|
|
333
|
-
text-transform: ${
|
|
334
|
-
}
|
|
335
|
-
`,
|
|
328
|
+
font-family: ${ye.fontFamily};
|
|
329
|
+
font-size: ${ye.fontSize};
|
|
330
|
+
font-weight: ${ye.fontWeight};
|
|
331
|
+
letter-spacing: ${ye.letterSpacing};
|
|
332
|
+
line-height: ${ye.lineHeight};
|
|
333
|
+
text-transform: ${ye.textTransform};
|
|
334
|
+
}
|
|
335
|
+
`,ar=_.css`
|
|
336
336
|
.ft-typography--button {
|
|
337
|
-
font-family: ${
|
|
338
|
-
font-size: ${
|
|
339
|
-
font-weight: ${
|
|
340
|
-
letter-spacing: ${
|
|
341
|
-
line-height: ${
|
|
342
|
-
text-transform: ${
|
|
343
|
-
}
|
|
344
|
-
`,
|
|
337
|
+
font-family: ${me.fontFamily};
|
|
338
|
+
font-size: ${me.fontSize};
|
|
339
|
+
font-weight: ${me.fontWeight};
|
|
340
|
+
letter-spacing: ${me.letterSpacing};
|
|
341
|
+
line-height: ${me.lineHeight};
|
|
342
|
+
text-transform: ${me.textTransform};
|
|
343
|
+
}
|
|
344
|
+
`,ir=_.css`
|
|
345
345
|
.ft-typography {
|
|
346
346
|
vertical-align: inherit;
|
|
347
347
|
}
|
|
348
|
-
`,
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
font-size: ${o.fontSize};
|
|
352
|
-
font-weight: ${o.fontWeight};
|
|
353
|
-
letter-spacing: ${o.letterSpacing};
|
|
354
|
-
line-height: ${o.lineHeight};
|
|
355
|
-
text-transform: ${o.textCase};
|
|
356
|
-
}
|
|
357
|
-
`}(t)))];var Ne=function(t,o,e,r){for(var a,i=arguments.length,n=i<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(a=t[l])&&(n=(i<3?a(n):i>3?a(o,e,n):a(o,e))||n);return i>3&&n&&Object.defineProperty(o,e,n),n};class ve extends o.FtLitElement{constructor(){super(...arguments),this.variant=_t.body1}render(){return this.element?Tt`
|
|
358
|
-
<${jt(this.element)}
|
|
348
|
+
`,nr=[Object.keys(je).map(t=>Vo(t))];var lr=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},K=class extends cr.FtLitElement{constructor(){super(...arguments),this.variant=Ve.body1}render(){return this.element?yt`
|
|
349
|
+
<${ht(this.element)}
|
|
350
|
+
part="text"
|
|
359
351
|
class="ft-typography ft-typography--${this.variant}">
|
|
360
352
|
<slot></slot>
|
|
361
|
-
</${
|
|
362
|
-
`:
|
|
363
|
-
<slot class="ft-typography ft-typography--${this.variant}"></slot>
|
|
364
|
-
`}}
|
|
353
|
+
</${ht(this.element)}>
|
|
354
|
+
`:yt`
|
|
355
|
+
<slot part="text" class="ft-typography ft-typography--${this.variant}"></slot>
|
|
356
|
+
`}};K.styles=[Yo,Xo,qo,Jo,Qo,er,tr,or,rr,ar,ir,...nr];lr([(0,mt.property)()],K.prototype,"element",void 0);lr([(0,mt.property)()],K.prototype,"variant",void 0);(0,pr.customElement)("ft-typography")(K);var yr=y(ut());var gr=y(S());var dr=y(A()),w=y(H()),fr=y(ut()),Ee=y(S());var L=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},C=class extends Ee.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 Ee.Debouncer(1e3),this.onTransitionStart=o=>{o.propertyName==="transform"&&(this.rippling=this.pressed,this.debouncer.run(()=>this.rippling=!1))},this.onTransitionEnd=o=>{o.propertyName==="transform"&&(this.rippling=!1)},this.setupDebouncer=new Ee.Debouncer(10),this.moveRipple=o=>{var i,l;let{x:a,y:c}=this.getCoordinates(o),p=(l=(i=this.ripple)===null||i===void 0?void 0:i.getBoundingClientRect())!==null&&l!==void 0?l:{x:0,y:0,width:0,height:0};this.originX=Math.round(a!=null?a-p.x:p.width/2),this.originY=Math.round(c!=null?c-p.y:p.height/2)},this.startPress=o=>{this.moveRipple(o),this.pressed=!this.isIgnored(o)},this.endPress=()=>{this.pressed=!1},this.startHover=o=>{this.hovered=!this.isIgnored(o)},this.endHover=()=>{this.hovered=!1},this.startFocus=o=>{this.focused=this.isFocusVisible(o?.target)&&!this.isIgnored(o)},this.endFocus=()=>{this.focused=!1}}render(){let o={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return dr.html`
|
|
365
357
|
<style>
|
|
366
358
|
.ft-ripple .ft-ripple--effect {
|
|
367
359
|
left: ${this.originX}px;
|
|
368
360
|
top: ${this.originY}px;
|
|
369
361
|
}
|
|
370
362
|
</style>
|
|
371
|
-
<div class="${
|
|
363
|
+
<div class="${(0,fr.classMap)(o)}">
|
|
372
364
|
<div class="ft-ripple--background"></div>
|
|
373
365
|
<div class="ft-ripple--effect"></div>
|
|
374
366
|
</div>
|
|
375
|
-
`}contentAvailableCallback(
|
|
376
|
-
<div part="container" class="${
|
|
377
|
-
${
|
|
367
|
+
`}contentAvailableCallback(o){super.contentAvailableCallback(o),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(o){var i,l;super.update(o),o.has("disabled")&&(this.disabled?(this.endRipple(),(i=this.target)===null||i===void 0||i.removeAttribute("data-is-ft-ripple-target")):(l=this.target)===null||l===void 0||l.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run(()=>this.defaultSetup())}defaultSetup(){var o,i;let l=(o=this.shadowRoot)===null||o===void 0?void 0:o.host.parentElement;l&&this.setupFor((i=this.target)!==null&&i!==void 0?i:l)}setupFor(o){if(this.setupDebouncer.cancel(),this.target===o)return;this.onDisconnect&&this.onDisconnect(),this.target=o,o.setAttribute("data-is-ft-ripple-target","true");let i=(...s)=>g=>{s.forEach(m=>window.addEventListener(m,this.endPress,{once:!0})),this.startPress(g)},l=i("mouseup","contextmenu"),a=i("touchend","touchcancel"),c=s=>{["Enter"," "].includes(s.key)&&i("keyup")(s)},p={passive:!0};o.addEventListener("mouseover",this.startHover,p),o.addEventListener("mousemove",this.moveRipple,p),o.addEventListener("mouseleave",this.endHover,p),o.addEventListener("mousedown",l,p),o.addEventListener("touchstart",a,p),o.addEventListener("touchmove",this.moveRipple,p),o.addEventListener("keydown",c,p),o.addEventListener("focus",this.startFocus,p),o.addEventListener("blur",this.endFocus,p),o.addEventListener("focusin",this.startFocus,p),o.addEventListener("focusout",this.endFocus,p),this.onDisconnect=()=>{o.removeAttribute("data-is-ft-ripple-target"),o.removeEventListener("mouseover",this.startHover,p),o.removeEventListener("mousemove",this.moveRipple,p),o.removeEventListener("mouseleave",this.endHover,p),o.removeEventListener("mousedown",l,p),o.removeEventListener("touchstart",a,p),o.removeEventListener("touchmove",this.moveRipple,p),o.removeEventListener("keydown",c,p),o.removeEventListener("focus",this.startFocus,p),o.removeEventListener("blur",this.endFocus,p),o.removeEventListener("focusin",this.startFocus,p),o.removeEventListener("focusout",this.endFocus,p),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(o){let i=o,l=o,a,c;return i.x!=null?{x:a,y:c}=i:l.touches!=null&&(a=l.touches[0].clientX,c=l.touches[0].clientY),{x:a,y:c}}isFocusVisible(o){return o instanceof HTMLElement?o.matches(":focus-visible"):!0}isIgnored(o){if(this.disabled)return!0;if(o!=null)for(let i of o.composedPath()){if(i===this.target)break;if("hasAttribute"in i&&i.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}};C.elementDefinitions={};C.styles=At;L([(0,w.property)({type:Boolean})],C.prototype,"primary",void 0);L([(0,w.property)({type:Boolean})],C.prototype,"secondary",void 0);L([(0,w.property)({type:Boolean})],C.prototype,"unbounded",void 0);L([(0,w.property)({type:Boolean})],C.prototype,"activated",void 0);L([(0,w.property)({type:Boolean})],C.prototype,"selected",void 0);L([(0,w.property)({type:Boolean})],C.prototype,"disabled",void 0);L([(0,w.state)()],C.prototype,"hovered",void 0);L([(0,w.state)()],C.prototype,"focused",void 0);L([(0,w.state)()],C.prototype,"pressed",void 0);L([(0,w.state)()],C.prototype,"rippling",void 0);L([(0,w.state)()],C.prototype,"originX",void 0);L([(0,w.state)()],C.prototype,"originY",void 0);L([(0,w.query)(".ft-ripple")],C.prototype,"ripple",void 0);L([(0,w.query)(".ft-ripple--effect")],C.prototype,"rippleEffect",void 0);(0,gr.customElement)("ft-ripple")(C);var we=function(t,o,i,l){var a=arguments.length,c=a<3?o:l===null?l=Object.getOwnPropertyDescriptor(o,i):l,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(t,o,i,l);else for(var s=t.length-1;s>=0;s--)(p=t[s])&&(c=(a<3?p(c):a>3?p(o,i,c):p(o,i))||c);return a>3&&c&&Object.defineProperty(o,i,c),c},T=class extends Te(Ae){constructor(){super(),this.hideFileFormatIcon=!1,this.hideFilename=!1,this.hideDownloadIcon=!1,this.addI18nContext(at,qt)}render(){var o,i;if(((i=(o=this.attachments)===null||o===void 0?void 0:o.length)!==null&&i!==void 0?i:0)>0){let l={"hide-file-format-icon":this.hideFileFormatIcon,"hide-filename":this.hideFilename,"hide-download-icon":this.hideDownloadIcon};return oe.html`
|
|
368
|
+
<div part="container" class="${(0,yr.classMap)(l)}">
|
|
369
|
+
${(0,hr.repeat)(this.attachments,a=>a.id,a=>{var c,p,s,g;let m=eo(a.mimeType,(0,Xe.last)(a.file.split("."))),x=a.externalLink?a.viewerUrl:(c=this.service)===null||c===void 0?void 0:c.makeAbsolute((p=a.viewerUrl)!==null&&p!==void 0?p:"");return oe.html`
|
|
378
370
|
<div part="attachment">
|
|
379
|
-
<a part="viewer-link" href="${
|
|
371
|
+
<a part="viewer-link" href="${x}">
|
|
380
372
|
<ft-ripple part="ripple viewer-link-ripple"></ft-ripple>
|
|
381
373
|
<ft-icon part="file-format-icon"
|
|
382
374
|
variant="file-format"
|
|
383
|
-
value="${
|
|
384
|
-
style="color: ${
|
|
385
|
-
<ft-typography part="name" variant="body2">${
|
|
375
|
+
value="${m}"
|
|
376
|
+
style="color: ${(s=nt[m])!==null&&s!==void 0?s:nt[d.UNKNOWN]}"></ft-icon>
|
|
377
|
+
<ft-typography part="name" variant="body2">${a.name}</ft-typography>
|
|
386
378
|
</a>
|
|
387
|
-
${
|
|
379
|
+
${a.externalLink?oe.nothing:oe.html`
|
|
388
380
|
<a part="download-link"
|
|
389
|
-
href="${
|
|
390
|
-
title="${
|
|
381
|
+
href="${(g=this.service)===null||g===void 0?void 0:g.getAttachmentDownloadLink(a.id)}"
|
|
382
|
+
title="${at.messages.download(a.file)}">
|
|
391
383
|
<ft-ripple part="ripple download-link-ripple"></ft-ripple>
|
|
392
384
|
<ft-icon part="download-icon">DOWNLOAD</ft-icon>
|
|
393
385
|
</a>
|
|
394
386
|
`}
|
|
395
387
|
</div>
|
|
396
|
-
`})
|
|
388
|
+
`})}
|
|
397
389
|
</div>
|
|
398
|
-
`}return
|
|
390
|
+
`}return oe.nothing}update(o){var i;super.update(o),o.has("map")&&(this.map?(i=this.service)===null||i===void 0||i.getAttachments().then(l=>this.attachments=l):this.attachments=void 0)}};T.elementDefinitions={"ft-icon":U,"ft-ripple":C,"ft-typography":K};T.styles=Bt;we([(0,ue.property)({type:Boolean})],T.prototype,"hideFileFormatIcon",void 0);we([(0,ue.property)({type:Boolean})],T.prototype,"hideFilename",void 0);we([(0,ue.property)({type:Boolean})],T.prototype,"hideDownloadIcon",void 0);we([(0,Xe.redux)({store:"reader"})],T.prototype,"map",void 0);we([(0,ue.state)()],T.prototype,"attachments",void 0);(0,mr.customElement)("ft-reader-attachments")(T);})();
|
|
391
|
+
/*! Bundled license information:
|
|
392
|
+
|
|
393
|
+
lit-html/lit-html.js:
|
|
394
|
+
(**
|
|
395
|
+
* @license
|
|
396
|
+
* Copyright 2017 Google LLC
|
|
397
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
398
|
+
*)
|
|
399
|
+
|
|
400
|
+
lit-html/static.js:
|
|
401
|
+
(**
|
|
402
|
+
* @license
|
|
403
|
+
* Copyright 2020 Google LLC
|
|
404
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
405
|
+
*)
|
|
406
|
+
*/
|