@fluid-topics/ft-in-product-help 1.1.115 → 1.1.116
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-in-product-help.light.js +441 -220
- package/build/ft-in-product-help.min.js +466 -245
- package/package.json +3 -3
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
"use strict";(()=>{var
|
|
1
|
+
"use strict";(()=>{var ka=Object.create;var yo=Object.defineProperty;var Ha=Object.getOwnPropertyDescriptor;var _a=Object.getOwnPropertyNames;var Da=Object.getPrototypeOf,Ua=Object.prototype.hasOwnProperty;var ae=(e,o)=>()=>(o||e((o={exports:{}}).exports,o),o.exports);var Ma=(e,o,a,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let c of _a(o))!Ua.call(e,c)&&c!==a&&yo(e,c,{get:()=>o[c],enumerable:!(i=Ha(o,c))||i.enumerable});return e};var x=(e,o,a)=>(a=e!=null?ka(Da(e)):{},Ma(o||!e||!e.__esModule?yo(a,"default",{value:e,enumerable:!0}):a,e));var L=ae((bn,uo)=>{uo.exports=ftGlobals.wcUtils});var U=ae((xn,go)=>{go.exports=ftGlobals.lit});var pt=ae((Sn,ho)=>{ho.exports=ftGlobals.litDecorators});var So=ae((vn,xo)=>{xo.exports=ftGlobals.litUnsafeHTML});var ve=ae((_n,wo)=>{wo.exports=ftGlobals.litClassMap});var Pa=x(L());var rt=x(U()),W=x(pt()),Ba=x(L());var P;(function(e){e.STANDARD="standard",e.THEATER="theater",e.FULLSCREEN="fullscreen"})(P||(P={}));var Oe=class extends CustomEvent{constructor(o,a){super("visibility-change",{detail:{opened:o,displayMode:a}})}};var mo=x(U()),E=x(L()),A={standardSizeWidth:E.FtCssVariableFactory.create("--ft-in-product-help-standard-width","","SIZE","400px"),standardSizeHeight:E.FtCssVariableFactory.create("--ft-in-product-help-standard-height","","SIZE","630px"),topPosition:E.FtCssVariableFactory.create("--ft-in-product-help-top","","SIZE","unset"),rightPosition:E.FtCssVariableFactory.create("--ft-in-product-help-right","","SIZE","1rem"),bottomPosition:E.FtCssVariableFactory.create("--ft-in-product-help-bottom","","SIZE","1rem"),leftPosition:E.FtCssVariableFactory.create("--ft-in-product-help-left","","SIZE","unset"),zIndex:E.FtCssVariableFactory.create("--ft-in-product-help-zindex","","NUMBER","10"),theaterSizeWidth:E.FtCssVariableFactory.create("--ft-in-product-help-theater-width","","SIZE","90%"),theaterSizeHeight:E.FtCssVariableFactory.create("--ft-in-product-help-theater-height","","SIZE","60%"),fullscreenSizeWidth:E.FtCssVariableFactory.create("--ft-in-product-help-fullscreen-width","","SIZE","100%"),fullscreenSizeHeight:E.FtCssVariableFactory.create("--ft-in-product-help-fullscreen-height","","SIZE","100%"),borderStyle:E.FtCssVariableFactory.create("--ft-in-product-help-border-style","","BORDER-STYLE","solid"),borderWidth:E.FtCssVariableFactory.create("--ft-in-product-help-border-width","","SIZE","0"),borderColor:E.FtCssVariableFactory.extend("--ft-in-product-help-border-color","",E.designSystemVariables.colorPrimary),borderRadius:E.FtCssVariableFactory.extend("--ft-in-product-help-border-radius","",E.designSystemVariables.borderRadiusM),shadow:E.FtCssVariableFactory.extend("--ft-in-product-help-shadow","",E.designSystemVariables.elevation02),topBarHeight:E.FtCssVariableFactory.create("--ft-in-product-help-top-bar-height","","SIZE","28px"),iconColor:E.FtCssVariableFactory.extend("--ft-in-product-help-icon-color","",E.designSystemVariables.colorOnSurface),iconGap:E.FtCssVariableFactory.create("--ft-in-product-help-icon-gap","","SIZE","8px"),tabletBreakpoint:E.FtCssVariableFactory.create("--ft-in-product-help-tablet-breakpoint","","SIZE","768px"),desktopBreakpoint:E.FtCssVariableFactory.create("--ft-in-product-help-desktop-breakpoint","","SIZE","1280px"),colorSurface:E.FtCssVariableFactory.external(E.designSystemVariables.colorSurface,"Design system"),colorPrimary:E.FtCssVariableFactory.external(E.designSystemVariables.colorPrimary,"Design system")},bo=mo.css`
|
|
2
2
|
.ft-in-product-help {
|
|
3
3
|
display: none;
|
|
4
4
|
position: fixed;
|
|
5
|
-
width: ${
|
|
6
|
-
height: ${
|
|
7
|
-
top: ${
|
|
8
|
-
right: ${
|
|
9
|
-
bottom: ${
|
|
10
|
-
left: ${
|
|
11
|
-
z-index: ${
|
|
12
|
-
|
|
13
|
-
border-style: ${
|
|
14
|
-
border-width: ${
|
|
15
|
-
border-color: ${
|
|
16
|
-
border-radius: ${
|
|
17
|
-
box-shadow: ${
|
|
5
|
+
width: ${A.standardSizeWidth};
|
|
6
|
+
height: ${A.standardSizeHeight};
|
|
7
|
+
top: ${A.topPosition};
|
|
8
|
+
right: ${A.rightPosition};
|
|
9
|
+
bottom: ${A.bottomPosition};
|
|
10
|
+
left: ${A.leftPosition};
|
|
11
|
+
z-index: ${A.zIndex};
|
|
12
|
+
|
|
13
|
+
border-style: ${A.borderStyle};
|
|
14
|
+
border-width: ${A.borderWidth};
|
|
15
|
+
border-color: ${A.borderColor};
|
|
16
|
+
border-radius: ${A.borderRadius};
|
|
17
|
+
box-shadow: ${A.shadow};
|
|
18
18
|
overflow: hidden;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.ft-in-product-help.ft-in-product-help--theater {
|
|
22
|
-
width: ${
|
|
23
|
-
height: ${
|
|
22
|
+
width: ${A.theaterSizeWidth};
|
|
23
|
+
height: ${A.theaterSizeHeight};
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.ft-in-product-help.ft-in-product-help--fullscreen {
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.ft-in-product-help--top-bar {
|
|
39
|
-
height: ${
|
|
40
|
-
background-color: ${
|
|
39
|
+
height: ${A.topBarHeight};
|
|
40
|
+
background-color: ${A.colorSurface};
|
|
41
41
|
display: flex;
|
|
42
42
|
justify-content: flex-end;
|
|
43
|
-
gap: ${
|
|
43
|
+
gap: ${A.iconGap};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.ft-in-product-help--top-bar ft-button:not(.ft-in-product-help--active-mode) {
|
|
47
|
-
--ft-button-color: ${
|
|
47
|
+
--ft-button-color: ${A.iconColor};
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.ft-in-product-help--home-button {
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
|
|
54
54
|
iframe {
|
|
55
55
|
width: 100%;
|
|
56
|
-
height: calc(100% - ${
|
|
56
|
+
height: calc(100% - ${A.topBarHeight});
|
|
57
57
|
border: none;
|
|
58
58
|
}
|
|
59
|
-
`;var
|
|
59
|
+
`;var Eo=x(L());var ne=x(U()),It=x(pt()),vo=x(L()),No=x(So());var it;(function(e){e.ADD_TO_PBK="",e.ALERT="",e.ADD_ALERT="",e.BACK_TO_SEARCH="",e.ADD_BOOKMARK="",e.BOOKMARK="",e.BOOKS="",e.MENU="",e.DOWNLOAD="",e.EDIT="",e.FEEDBACK="",e.HOME="",e.MODIFY_PBK="",e.SCHEDULED="",e.SEARCH="",e.EXPORT="",e.TOC="",e.WRITE_UGC="",e.TRASH="",e.USER="",e.EXTLINK="",e.CALENDAR="",e.OFFLINE="",e.BOOK="",e.DOWNLOAD_PLAIN="",e.CHECK="",e.STAR_PLAIN="",e.TOPICS="",e.DISC="",e.CIRCLE="",e.SHARED="",e.SORT_UNSORTED="",e.SORT_UP="",e.SORT_DOWN="",e.WORKING="",e.CLOSE="",e.ZOOM_OUT="",e.ZOOM_IN="",e.ZOOM_REALSIZE="",e.ZOOM_FULLSCREEN="",e.ADMIN_RESTRICTED="",e.ADMIN="",e.ADMIN_KHUB="",e.ADMIN_THEME="",e.ADMIN_USERS="",e.WARNING="",e.CONTEXT="",e.SEARCH_HOME="",e.STEPS="",e.ICON_EXPAND="",e.ICON_COLLAPSE="",e.INFO="",e.MINUS_PLAIN="",e.PLUS_PLAIN="",e.FACET_HAS_DESCENDANT="",e.TRIANGLE_BOTTOM="",e.TRIANGLE_LEFT="",e.TRIANGLE_RIGHT="",e.TRIANGLE_TOP="",e.THIN_ARROW="",e.SIGN_IN="",e.LOGOUT="",e.TRANSLATE="",e.CLOSE_PLAIN="",e.CHECK_PLAIN="",e.ARTICLE="",e.COLUMNS="",e.ANALYTICS="",e.COLLECTIONS="",e.ARROW_DOWN="",e.ARROW_LEFT="",e.ARROW_RIGHT="",e.ARROW_UP="",e.SEARCH_IN_PUBLICATION="",e.COPY_TO_CLIPBOARD="",e.SHARED_PBK="",e.ATTACHMENTS="",e.STRIPE_ARROW_LEFT="",e.STRIPE_ARROW_RIGHT="",e.FILTERS="",e.DOT="",e.MINUS="",e.PLUS="",e.MAILS_AND_NOTIFICATIONS="",e.SAVE="",e.LOCKER="",e.ADMIN_INTEGRATION="",e.SYNC="",e.TAG="",e.BOOK_PLAIN="",e.UPLOAD="",e.ONLINE="",e.TAG_PLAIN="",e.ACCOUNT_SETTINGS="",e.PRINT="",e.DEFAULT_ROLES="",e.SHORTCUT_MENU="",e.RELATIVES_PLAIN="",e.RELATIVES="",e.PAUSE="",e.PLAY="",e.ADMIN_PORTAL="",e.STAR="",e.THUMBS_DOWN="",e.THUMBS_DOWN_PLAIN="",e.THUMBS_UP="",e.THUMBS_UP_PLAIN="",e.FEEDBACK_PLAIN="",e.RATE_PLAIN="",e.RATE="",e.OFFLINE_SETTINGS="",e.MY_COLLECTIONS="",e.THIN_ARROW_LEFT="",e.THIN_ARROW_RIGHT="",e.RESET="",e.MY_LIBRARY="",e.UNSTRUCTURED_DOC="",e.CONTEXTUAL="",e.THIN_ARROW_UP="",e.ARROW_RIGHT_TO_LINE="",e.DESKTOP="",e.TABLET_LANDSCAPE="",e.TABLET_PORTRAIT="",e.MOBILE_LANDSCAPE="",e.MOBILE_PORTRAIT="",e.DIAGRAM_SUNBURST="",e.DIAGRAM_SANKEY="",e.COMMENT_QUESTION="",e.COMMENT_QUESTION_PLAIN="",e.MESSAGE_BOT="",e.CHART_SIMPLE="",e.BARS_PROGRESS="",e.BOOK_OPEN_GEAR="",e.BOOK_OPEN_GEAR_SLASH="",e.LINE_CHART="",e.STACKED_CHART="",e.CHART_BAR_STACKED="",e.CHART_BAR_GROUPED="",e.EYE_SLASH="",e.X_MARK="",e.EXPAND_WIDE="",e.PIP="",e.PIP_WIDE="",e.LIFE_RING="",e.GLOBE="",e.PIGGY_BANK="",e.EXTLINK_LIGHT="",e.CLONE="",e.CLONE_LINK_SIMPLE="",e.CHART_BAR_NORMALIZED="",e.CONSUMER="",e.OCTAGON_XMARK="",e.HOURGLASS_HALF="",e.CLOCK="",e.CLOCK_THREE="",e.CALENDAR_DAY="",e.COMPUTER_MOUSE_MAGNIFYING_GLASS="",e.WAND_MAGIC_SPARKLES="",e.PAPER_PLANE="",e.CIRCLE_STOP="",e.ARROW_ROTATE_RIGHT="",e.ARROWS_ROTATE="",e.ALIGN_RIGHT="",e.FORMAT_CLEAR="",e.ALIGN_CENTER="",e.ALIGN_LEFT="",e.PALETTE="",e.BOLD="",e.ITALIC="",e.UNDERLINE="",e.STRIKETHROUGH="",e.LINK_SIMPLE_SLASH="",e.LINK_SIMPLE="",e.ROUTE="",e.CIRCLE_USER_SLASH="",e.CIRCLE_USER_CHECK="",e.LIST_MAGNIFYING_GLASS="",e.MEDAL="",e.THUMBS_UP_THUMBS_DOWN_SOLID="",e.ARROW_TURN_DOWN_RIGHT="",e.FLASK="",e.LOCK_KEYHOLE_OPEN_SOLID="",e.HOURGLASS_END="",e.CIRCLE_QUESTION="",e.EYE="",e.SHARE="󨃱"})(it||(it={}));var g;(function(e){e.UNKNOWN="",e.ABW="",e.AUDIO="",e.AVI="",e.CHM="",e.CODE="",e.CSV="",e.DITA="",e.EPUB="",e.EXCEL="",e.FLAC="",e.GIF="",e.GZIP="",e.HTML="",e.IMAGE="",e.JPEG="",e.JSON="",e.M4A="",e.MOV="",e.MP3="",e.MP4="",e.OGG="",e.PDF="",e.PNG="",e.POWERPOINT="",e.RAR="",e.STP="",e.TEXT="",e.VIDEO="",e.WAV="",e.WMA="",e.WORD="",e.XML="",e.YAML="",e.ZIP=""})(g||(g={}));var Nn=new Map([...["abw"].map(e=>[e,g.ABW]),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map(e=>[e,g.AUDIO]),...["avi"].map(e=>[e,g.AVI]),...["chm","xhs"].map(e=>[e,g.CHM]),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map(e=>[e,g.CODE]),...["csv"].map(e=>[e,g.CSV]),...["dita","ditamap","ditaval"].map(e=>[e,g.DITA]),...["epub"].map(e=>[e,g.EPUB]),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map(e=>[e,g.EXCEL]),...["flac"].map(e=>[e,g.FLAC]),...["gif"].map(e=>[e,g.GIF]),...["gzip","x-gzip","giz","gz","tgz"].map(e=>[e,g.GZIP]),...["html","htm","xhtml"].map(e=>[e,g.HTML]),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map(e=>[e,g.IMAGE]),...["jpeg","jpg","jpe"].map(e=>[e,g.JPEG]),...["json"].map(e=>[e,g.JSON]),...["m4a","m4p"].map(e=>[e,g.M4A]),...["mov","qt"].map(e=>[e,g.MOV]),...["mp3"].map(e=>[e,g.MP3]),...["mp4","m4v"].map(e=>[e,g.MP4]),...["ogg","oga"].map(e=>[e,g.OGG]),...["pdf","ps"].map(e=>[e,g.PDF]),...["png"].map(e=>[e,g.PNG]),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map(e=>[e,g.POWERPOINT]),...["rar"].map(e=>[e,g.RAR]),...["stp"].map(e=>[e,g.STP]),...["txt","rtf","md","mdown"].map(e=>[e,g.TEXT]),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map(e=>[e,g.VIDEO]),...["wav"].map(e=>[e,g.WAV]),...["wma"].map(e=>[e,g.WMA]),...["doc","dot","docx","docm","dotx","dotm","docb"].map(e=>[e,g.WORD]),...["xml","xsl","rdf"].map(e=>[e,g.XML]),...["yaml","yml","x-yaml"].map(e=>[e,g.YAML]),...["zip"].map(e=>[e,g.ZIP])]);var En={[g.ABW]:"#91ABC6",[g.AUDIO]:"#1795E3",[g.AVI]:"#E63324",[g.CHM]:"#71C3EB",[g.CODE]:"#71C3EB",[g.CSV]:"#1F7345",[g.DITA]:"#71C3EB",[g.EPUB]:"#85B926",[g.EXCEL]:"#1F7345",[g.FLAC]:"#1795E3",[g.GIF]:"#59B031",[g.GZIP]:"#F8AB36",[g.HTML]:"#71C3EB",[g.IMAGE]:"#59B031",[g.JPEG]:"#59B031",[g.JSON]:"#71C3EB",[g.M4A]:"#1795E3",[g.MOV]:"#E63324",[g.MP3]:"#1795E3",[g.MP4]:"#E63324",[g.OGG]:"#1795E3",[g.PDF]:"#E44948",[g.PNG]:"#59B031",[g.POWERPOINT]:"#B54A2B",[g.RAR]:"#F8AB36",[g.STP]:"#3764B1",[g.TEXT]:"#3162AB",[g.UNKNOWN]:"#999999",[g.VIDEO]:"#E63324",[g.WAV]:"#1795E3",[g.WMA]:"#1795E3",[g.WORD]:"#3162AB",[g.XML]:"#71C3EB",[g.YAML]:"#71C3EB",[g.ZIP]:"#F8AB36"};var Oo=x(U()),ht=x(L()),X={size:ht.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:ht.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",ht.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:ht.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",ht.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:ht.FtCssVariableFactory.extend("--ft-icon-material-font-family","",ht.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:ht.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},Co=Oo.css`
|
|
60
60
|
:host, i.ft-icon {
|
|
61
61
|
display: inline-flex;
|
|
62
62
|
align-items: center;
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
:host {
|
|
68
|
-
width: ${
|
|
69
|
-
height: ${
|
|
68
|
+
width: ${X.size};
|
|
69
|
+
height: ${X.size};
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
i.ft-icon {
|
|
73
73
|
width: 100%;
|
|
74
74
|
height: 100%;
|
|
75
|
-
font-size: ${
|
|
75
|
+
font-size: ${X.size};
|
|
76
76
|
line-height: 1;
|
|
77
77
|
font-weight: normal;
|
|
78
78
|
text-transform: none;
|
|
@@ -83,33 +83,33 @@
|
|
|
83
83
|
text-rendering: auto;
|
|
84
84
|
-webkit-font-smoothing: antialiased;
|
|
85
85
|
-moz-osx-font-smoothing: grayscale;
|
|
86
|
-
vertical-align: ${
|
|
86
|
+
vertical-align: ${X.verticalAlign};
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
i.ft-icon.ft-icon--fluid-topics {
|
|
90
|
-
font-family: ${
|
|
90
|
+
font-family: ${X.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
|
|
91
91
|
|
|
92
92
|
/* Ugly fix because font is broken */
|
|
93
|
-
font-size: calc(0.75 * ${
|
|
94
|
-
line-height: ${
|
|
93
|
+
font-size: calc(0.75 * ${X.size});
|
|
94
|
+
line-height: ${X.size};
|
|
95
95
|
position: relative;
|
|
96
96
|
top: -4%;
|
|
97
97
|
justify-content: center;
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
.ft-icon--file-format {
|
|
101
|
-
font-family: ${
|
|
101
|
+
font-family: ${X.fileFormatFontFamily}, ft-mime, sans-serif;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.ft-icon--material {
|
|
105
|
-
font-family: ${
|
|
105
|
+
font-family: ${X.materialFontFamily}, "Material Icons", sans-serif;
|
|
106
106
|
}
|
|
107
|
-
`;var ft;(function(e){e.fluid_topics="fluid-topics",e.file_format="file-format",e.material="material"})(ft||(ft={}));var Ce=function(e,o,
|
|
107
|
+
`;var ft;(function(e){e.fluid_topics="fluid-topics",e.file_format="file-format",e.material="material"})(ft||(ft={}));var Ce=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},at=class extends vo.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=ne.nothing}render(){let o=this.variant&&Object.values(ft).includes(this.variant)?this.variant:ft.fluid_topics,a=o!==ft.material||!!this.value;return ne.html`
|
|
108
108
|
<i class="ft-icon ft-icon--${o}" part="icon icon-${o}">
|
|
109
109
|
${(0,No.unsafeHTML)(this.resolvedIcon)}
|
|
110
|
-
<slot ?hidden=${
|
|
110
|
+
<slot ?hidden=${a}></slot>
|
|
111
111
|
</i>
|
|
112
|
-
`}get textContent(){var o,
|
|
112
|
+
`}get textContent(){var o,a;return(a=(o=this.slottedContent)===null||o===void 0?void 0:o.assignedNodes().map(i=>i.textContent).join("").trim())!==null&&a!==void 0?a:""}update(o){super.update(o),["value","variant"].some(a=>o.has(a))&&this.resolveIcon()}resolveIcon(){var o,a;let i=this.value||this.textContent;switch(this.variant){case ft.file_format:this.resolvedIcon=(o=g[i.replace("-","_").toUpperCase()])!==null&&o!==void 0?o:i;break;case ft.material:this.resolvedIcon=this.value||ne.nothing;break;default:this.resolvedIcon=(a=it[i.replace("-","_").toUpperCase()])!==null&&a!==void 0?a:i;break}}firstUpdated(o){super.firstUpdated(o),setTimeout(()=>this.resolveIcon())}};at.elementDefinitions={};at.styles=Co;Ce([(0,It.property)()],at.prototype,"variant",void 0);Ce([(0,It.property)()],at.prototype,"value",void 0);Ce([(0,It.state)()],at.prototype,"resolvedIcon",void 0);Ce([(0,It.query)("slot")],at.prototype,"slottedContent",void 0);(0,Eo.customElement)("ft-icon")(at);var Wa=x(ve());var co=x(L());var be=x(pt()),Ea=x(L());var vr=x(U()),C=x(L());var Bo=x(U()),H=x(L()),Lo=H.FtCssVariableFactory.extend("--ft-ripple-color","",H.designSystemVariables.colorContent),u={color:Lo,backgroundColor:H.FtCssVariableFactory.extend("--ft-ripple-background-color","",Lo),opacityContentOnSurfacePressed:H.FtCssVariableFactory.external(H.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:H.FtCssVariableFactory.external(H.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:H.FtCssVariableFactory.external(H.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:H.FtCssVariableFactory.external(H.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:H.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},Ro=H.FtCssVariableFactory.extend("--ft-ripple-color","",H.designSystemVariables.colorPrimary),Ao={color:Ro,backgroundColor:H.FtCssVariableFactory.extend("--ft-ripple-background-color","",Ro)},$o=H.FtCssVariableFactory.extend("--ft-ripple-color","",H.designSystemVariables.colorSecondary),Io={color:$o,backgroundColor:H.FtCssVariableFactory.extend("--ft-ripple-background-color","",$o)},Wo=Bo.css`
|
|
113
113
|
:host {
|
|
114
114
|
display: contents;
|
|
115
115
|
}
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
|
|
123
123
|
.ft-ripple:not(.ft-ripple--unbounded) {
|
|
124
124
|
overflow: hidden;
|
|
125
|
-
border-radius: ${
|
|
125
|
+
border-radius: ${u.borderRadius};
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
.ft-ripple .ft-ripple--background,
|
|
@@ -156,11 +156,11 @@
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
.ft-ripple .ft-ripple--background {
|
|
159
|
-
background-color: ${
|
|
159
|
+
background-color: ${u.backgroundColor};
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
.ft-ripple .ft-ripple--effect {
|
|
163
|
-
background-color: ${
|
|
163
|
+
background-color: ${u.color};
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
.ft-ripple.ft-ripple--secondary .ft-ripple--background {
|
|
@@ -172,11 +172,11 @@
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.ft-ripple.ft-ripple--primary .ft-ripple--background {
|
|
175
|
-
background-color: ${
|
|
175
|
+
background-color: ${Ao.backgroundColor};
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.ft-ripple.ft-ripple--primary .ft-ripple--effect {
|
|
179
|
-
background-color: ${
|
|
179
|
+
background-color: ${Ao.color};
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
.ft-ripple .ft-ripple--background {
|
|
@@ -206,24 +206,24 @@
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
.ft-ripple.ft-ripple--hovered .ft-ripple--background {
|
|
209
|
-
opacity: ${
|
|
209
|
+
opacity: ${u.opacityContentOnSurfaceHover};
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
.ft-ripple.ft-ripple--selected .ft-ripple--background {
|
|
213
|
-
opacity: ${
|
|
213
|
+
opacity: ${u.opacityContentOnSurfaceSelected};
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
.ft-ripple.ft-ripple--focused .ft-ripple--background {
|
|
217
|
-
opacity: ${
|
|
217
|
+
opacity: ${u.opacityContentOnSurfaceFocused};
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.ft-ripple.ft-ripple--pressed .ft-ripple--effect {
|
|
221
|
-
opacity: ${
|
|
221
|
+
opacity: ${u.opacityContentOnSurfacePressed};
|
|
222
222
|
transform: translate(-50%, -50%) scale(1);
|
|
223
223
|
}
|
|
224
|
-
`;var at=y(U()),u=y(R());var yt=y(U(),1),Et=e=>typeof e=="string"?(0,yt.unsafeCSS)(e):e,t=class{static create(o,n,a,l){let c=p=>Et(p??l),s=yt.css`var(${Et(o)}, ${c(l)})`;return s.name=o,s.description=n,s.category=a,s.defaultValue=l,s.defaultCssValue=c,s.get=p=>yt.css`var(${Et(o)}, ${c(p)})`,s.breadcrumb=()=>[],s.lastResortDefaultValue=()=>l,s}static extend(o,n,a,l){let c=p=>a.get(p??l),s=yt.css`var(${Et(o)}, ${c(l)})`;return s.name=o,s.description=n,s.category=a.category,s.fallbackVariable=a,s.defaultValue=l,s.defaultCssValue=c,s.get=p=>yt.css`var(${Et(o)}, ${c(p)})`,s.breadcrumb=()=>[a.name,...a.breadcrumb()],s.lastResortDefaultValue=()=>l??a.lastResortDefaultValue(),s}static external(o,n){let a=c=>o.fallbackVariable?o.fallbackVariable.get(c??o.defaultValue):Et(c??o.lastResortDefaultValue()),l=yt.css`var(${Et(o.name)}, ${a(o.defaultValue)})`;return l.name=o.name,l.category=o.category,l.fallbackVariable=o.fallbackVariable,l.defaultValue=o.defaultValue,l.context=n,l.defaultCssValue=a,l.get=c=>yt.css`var(${Et(o.name)}, ${a(c)})`,l.breadcrumb=()=>o.fallbackVariable?[o.fallbackVariable.name,...o.fallbackVariable.breadcrumb()]:[],l.lastResortDefaultValue=()=>o.lastResortDefaultValue(),l}};var r={colorWhite:t.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:t.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:t.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:t.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:t.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:t.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:t.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:t.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:t.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:t.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:t.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:t.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:t.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:t.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:t.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:t.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:t.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:t.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:t.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:t.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:t.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:t.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:t.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:t.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:t.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:t.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:t.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:t.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:t.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:t.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:t.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:t.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:t.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:t.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:t.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:t.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:t.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:t.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:t.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:t.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:t.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:t.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:t.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:t.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:t.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:t.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:t.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:t.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:t.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:t.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:t.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:t.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:t.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:t.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:t.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:t.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:t.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:t.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:t.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:t.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:t.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:t.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:t.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:t.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:t.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:t.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:t.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:t.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:t.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:t.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:t.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:t.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:t.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:t.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:t.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:t.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:t.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:t.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:t.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:t.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:t.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:t.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:t.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:t.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:t.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:t.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:t.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:t.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:t.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:t.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:t.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:t.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:t.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:t.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:t.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:t.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:t.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:t.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:t.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:t.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:t.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:t.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:t.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:t.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:t.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:t.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:t.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:t.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:t.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:t.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:t.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:t.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:t.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:t.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:t.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:t.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:t.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:t.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:t.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:t.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:t.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:t.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:t.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:t.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:t.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:t.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:t.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:t.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:t.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:t.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:t.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:t.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:t.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:t.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:t.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:t.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:t.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:t.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:t.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:t.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:t.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:t.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:t.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:t.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:t.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:t.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:t.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:t.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:t.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:t.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:t.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:t.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:t.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:t.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:t.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:t.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:t.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:t.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:t.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:t.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:t.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:t.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:t.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:t.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:t.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:t.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:t.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:t.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:t.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:t.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:t.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:t.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:t.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:t.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:t.create("--ft-icon-size-1","","SIZE","0.75rem"),iconSize2:t.create("--ft-icon-size-2","","SIZE","1rem"),iconSize3:t.create("--ft-icon-size-3","","SIZE","1.25rem"),iconSize4:t.create("--ft-icon-size-4","","SIZE","1.5rem"),iconSize5:t.create("--ft-icon-size-5","","SIZE","2rem"),iconSize6:t.create("--ft-icon-size-6","","SIZE","3rem"),opacity0:t.create("--ft-opacity-0","","NUMBER","0"),opacity8:t.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:t.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:t.create("--ft-opacity-24","","NUMBER","0.24"),opacity32:t.create("--ft-opacity-32","","NUMBER","0.32"),opacity40:t.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:t.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:t.create("--ft-shadow-elevation-01","","SHADOW","0px 1px 4px 0px rgba(0,0,0,0.06), 0px 1px 2px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation02:t.create("--ft-shadow-elevation-02","","SHADOW","0px 4px 10px 0px rgba(0,0,0,0.06), 0px 2px 5px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation03:t.create("--ft-shadow-elevation-03","","SHADOW","0px 6px 13px 0px rgba(0,0,0,0.06), 0px 3px 7px 0px rgba(0,0,0,0.14), 0px 1px 2px 0px rgba(0,0,0,0.06)"),shadowElevation04:t.create("--ft-shadow-elevation-04","","SHADOW","0px 8px 16px 0px rgba(0,0,0,0.06), 0px 4px 9px 0px rgba(0,0,0,0.14), 0px 2px 3px 0px rgba(0,0,0,0.06)"),shadowElevation06:t.create("--ft-shadow-elevation-06","","SHADOW","0px 12px 22px 0px rgba(0,0,0,0.06), 0px 6px 13px 0px rgba(0,0,0,0.14), 0px 4px 5px 0px rgba(0,0,0,0.06)"),shadowElevation08:t.create("--ft-shadow-elevation-08","","SHADOW","0px 16px 28px 0px rgba(0,0,0,0.06), 0px 8px 17px 0px rgba(0,0,0,0.14), 0px 6px 7px 0px rgba(0,0,0,0.06)"),shadowElevation12:t.create("--ft-shadow-elevation-12","","SHADOW","0px 22px 40px 0px rgba(0,0,0,0.06), 0px 12px 23px 0px rgba(0,0,0,0.14), 0px 10px 11px 0px rgba(0,0,0,0.06)"),shadowElevation16:t.create("--ft-shadow-elevation-16","","SHADOW","0px 28px 52px 0px rgba(0,0,0,0.06), 0px 16px 29px 0px rgba(0,0,0,0.14), 0px 14px 15px 0px rgba(0,0,0,0.06)"),shadowElevation24:t.create("--ft-shadow-elevation-24","","SHADOW","0px 40px 76px 0px rgba(0,0,0,0.06), 0px 24px 41px 0px rgba(0,0,0,0.14), 0px 22px 23px 0px rgba(0,0,0,0.06)")},To={fontFamily:t.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:t.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-display-textCase","","UNKNOWN","none")},Bo={fontFamily:t.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:t.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},zo={fontFamily:t.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:t.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},Ho={fontFamily:t.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:t.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:t.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},ko={fontFamily:t.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},_o={fontFamily:t.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},Uo={fontFamily:t.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},Do={fontFamily:t.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},Mo={fontFamily:t.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},Zn={fontFamily:t.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:t.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:t.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},Go={fontFamily:t.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},Zo={fontFamily:t.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},Ko={fontFamily:t.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},Fo={fontFamily:t.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},Vo={fontFamily:t.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},jo={fontFamily:t.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},Yo={fontFamily:t.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},Xo={fontFamily:t.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},qo={fontFamily:t.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},Jo={fontFamily:t.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},Qo={fontFamily:t.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},tr={fontFamily:t.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},er={fontFamily:t.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},or={fontFamily:t.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},rr={fontFamily:t.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},nr={fontFamily:t.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")},Ne={display:To,"title-1":Bo,"title-2":zo,"title-3":Ho,"body-1-regular":ko,"body-1-medium":_o,"body-1-semibold":Uo,"body-2-regular":Do,"body-2-medium":Mo,"body-2-medium-underline":Zn,"body-2-semibold":Go,"label-1-medium":Zo,"label-1-semibold":Ko,"label-1-bold":Fo,"label-2-medium":Vo,"label-2-semibold":jo,"label-2-bold":Yo,"caption-1-medium":Xo,"caption-1-semibold":qo,"caption-1-bold":Jo,"caption-2-medium":Qo,"caption-2-semibold":tr,"caption-2-bold":er,"caption-3-medium":or,"caption-3-semibold":rr,"caption-3-bold":nr};var i={backgroundActionPrimary:t.extend("--ft-background-action-primary","Used as backgorund of primary action components.",r.colorBrand0),backgroundErrorSubtle:t.extend("--ft-background-error-subtle","Used as background of subtle error components.",r.colorRed10),backgroundInfoSubtle:t.extend("--ft-background-info-subtle","Used as background of subtle information components.",r.colorCyan10),backgroundWarningSubtle:t.extend("--ft-background-warning-subtle","Used as background of subtle information components.",r.colorOrange10),backgroundSuccessSubtle:t.extend("--ft-background-success-subtle","Used as background of subtle success components.",r.colorGreen10),backgroundGlobalSurface:t.extend("--ft-background-global-surface","Used as app background.",r.colorWhite),backgroundGlobalOnSurface:t.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",r.colorGray10),backgroundGlobalOnSurfaceDark:t.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",r.colorGray30),contentActionPrimary:t.extend("--ft-content-action-primary","Used on label of primary action on light surface.",r.colorBrand0),contentWarningPrimary:t.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",r.colorOrange200),contentWarningIconOnly:t.extend("--ft-content-warning-icon-only","Used on warning status icons alone",r.colorOrange0),contentErrorPrimary:t.extend("--ft-content-error-primary","Used on label of error messages on light surface.",r.colorRed0),contentErrorIconOnly:t.extend("--ft-content-error-icon-only","Used on error status icons alone",r.colorRed70),contentInfoPrimary:t.extend("--ft-content-info-primary","Used on label of information messages on light surface.",r.colorCyan200),contentInfoIconOnly:t.extend("--ft-content-info-icon-only","Used on info status icons alone",r.colorCyan0),contentSuccessPrimary:t.extend("--ft-content-success-primary","Used on label of success messages on light surface.",r.colorGreen200),contentSuccessIconOnly:t.extend("--ft-content-success-icon-only","Used on success status icons alone",r.colorGreen0),contentGlobalPrimary:t.extend("--ft-content-global-primary","Used for main content on the page.",r.colorGray500),contentGlobalSecondary:t.extend("--ft-content-global-secondary",`Used for secondary content, often paired with primary content.
|
|
225
|
-
Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",r.colorGray0),contentGlobalOnColor:t.extend("--ft-content-global-on-color","Used for content on a dominant color.",r.colorWhite),borderActionPrimary:t.extend("--ft-border-action-primary","Used as border for primary action components.",r.colorBrand0),borderActionFocusRing:t.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",r.colorCyan0),borderWarningPrimary:t.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",r.colorOrange200),borderWarningSubtle:t.extend("--ft-border-warning-subtle","Used as border for warning components.",r.colorOrange30),borderSuccessPrimary:t.extend("--ft-border-success-primary","Used as border for success buttons.",r.colorGreen200),borderSuccessSubtle:t.extend("--ft-border-success-subtle","Used as border for success components.",r.colorGreen30),borderErrorPrimary:t.extend("--ft-border-error-primary","Used as border for text fields in error states.",r.colorRed0),borderErrorSubtle:t.extend("--ft-border-error-subtle","Used as border for error components.",r.colorRed30),borderInfoPrimary:t.extend("--ft-border-info-primary","Used as border for buttons in info color.",r.colorCyan200),borderInfoSubtle:t.extend("--ft-border-info-subtle","Used as border for information components.",r.colorCyan30),borderGlobalPrimary:t.extend("--ft-border-global-primary","Used as border for element like input.",r.colorGray50),borderGlobalSubtle:t.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",r.colorGray30),borderInputPrimary:t.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",r.colorGray80)};var f={largeHeight:t.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:t.extend("--ft-button-large-horizontal-padding","",r.spacing4),largeGap:t.extend("--ft-button-large-gap","",r.spacing2),largeBorderRadius:t.extend("--ft-button-large-border-radius","",r.borderRadiusS),largeIconSize:t.extend("--ft-button-large-icon-size","",r.iconSize3),largeBorderWidth:t.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:t.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:t.create("--ft-button-large-icon-only-width","","SIZE","40px"),mediumHeight:t.create("--ft-button-medium-height","","SIZE","30px"),mediumHorizontalPadding:t.extend("--ft-button-medium-horizontal-padding","",r.spacing3),mediumGap:t.extend("--ft-button-medium-gap","",r.spacing2),mediumBorderRadius:t.extend("--ft-button-medium-border-radius","",r.borderRadiusS),mediumIconSize:t.extend("--ft-button-medium-icon-size","",r.iconSize2),mediumBorderWidth:t.create("--ft-button-medium-border-width","","SIZE","1px"),mediumFocusOutlineOffset:t.create("--ft-button-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:t.create("--ft-button-medium-focus-outline-width","","SIZE","2px"),mediumIconOnlyWidth:t.create("--ft-button-medium-icon-only-width","","SIZE","30px"),smallHeight:t.create("--ft-button-small-height","","SIZE","20px"),smallHorizontalPadding:t.extend("--ft-button-small-horizontal-padding","",r.spacing2),smallGap:t.extend("--ft-button-small-gap","",r.spacing1),smallBorderRadius:t.extend("--ft-button-small-border-radius","",r.borderRadiusS),smallIconSize:t.extend("--ft-button-small-icon-size","",r.iconSize1),smallBorderWidth:t.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:t.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:t.create("--ft-button-small-icon-only-width","","SIZE","20px"),xSmallHeight:t.create("--ft-button-x-small-height","","SIZE","16px"),xSmallIconSize:t.extend("--ft-button-x-small-icon-size","",r.iconSize1),xSmallFocusOutlineOffset:t.create("--ft-button-x-small-focus-outline-offset","","SIZE","2px"),xSmallFocusOutlineWidth:t.create("--ft-button-x-small-focus-outline-width","","SIZE","2px"),xSmallIconOnlyWidth:t.create("--ft-button-x-small-icon-only-width","","SIZE","16px"),roundBorderRadius:t.extend("--ft-button-round-border-radius","",r.borderRadiusPill),primaryBackgroundColor:t.extend("--ft-button-primary-background-color","",i.backgroundActionPrimary),primaryColor:t.extend("--ft-button-primary-color","",i.contentGlobalOnColor),primaryIconColor:t.extend("--ft-button-primary-icon-color","",i.contentGlobalOnColor),primaryStateLayerColor:t.extend("--ft-button-primary-state-layer-color","",i.contentGlobalOnColor),primaryHoverStateLayerOpacity:t.extend("--ft-button-primary-hover-state-layer-opacity","",r.opacity16),primaryFocusStateLayerOpacity:t.extend("--ft-button-primary-focus-state-layer-opacity","",r.opacity16),primaryActiveStateLayerOpacity:t.extend("--ft-button-primary-active-state-layer-opacity","",r.opacity24),primaryDisabledComponentOpacity:t.extend("--ft-button-primary-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-button-focus-focus-ring-color","",i.borderActionFocusRing),tertiaryBackgroundColor:t.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:t.extend("--ft-button-tertiary-color","",i.contentActionPrimary),tertiaryIconColor:t.extend("--ft-button-tertiary-icon-color","",i.contentActionPrimary),tertiaryStateLayerColor:t.extend("--ft-button-tertiary-state-layer-color","",i.contentActionPrimary),tertiaryHoverStateLayerOpacity:t.extend("--ft-button-tertiary-hover-state-layer-opacity","",r.opacity8),tertiaryFocusStateLayerOpacity:t.extend("--ft-button-tertiary-focus-state-layer-opacity","",r.opacity8),tertiaryActiveStateLayerOpacity:t.extend("--ft-button-tertiary-active-state-layer-opacity","",r.opacity16),tertiaryDisabledComponentOpacity:t.extend("--ft-button-tertiary-disabled-component-opacity","",r.opacity40),secondaryBackgroundColor:t.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:t.extend("--ft-button-secondary-color","",i.contentActionPrimary),secondaryIconColor:t.extend("--ft-button-secondary-icon-color","",i.contentActionPrimary),secondaryStateLayerColor:t.extend("--ft-button-secondary-state-layer-color","",i.contentActionPrimary),secondaryHoverStateLayerOpacity:t.extend("--ft-button-secondary-hover-state-layer-opacity","",r.opacity8),secondaryFocusStateLayerOpacity:t.extend("--ft-button-secondary-focus-state-layer-opacity","",r.opacity8),secondaryActiveStateLayerOpacity:t.extend("--ft-button-secondary-active-state-layer-opacity","",r.opacity16),secondaryDisabledComponentOpacity:t.extend("--ft-button-secondary-disabled-component-opacity","",r.opacity40),secondaryBorderColor:t.extend("--ft-button-secondary-border-color","",i.borderActionPrimary),neutralBackgroundColor:t.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:t.extend("--ft-button-neutral-icon-color","",i.contentGlobalSecondary),neutralColor:t.extend("--ft-button-neutral-color","",i.contentGlobalSecondary),neutralStateLayerColor:t.extend("--ft-button-neutral-state-layer-color","",i.contentGlobalSecondary),neutralHoverStateLayerOpacity:t.extend("--ft-button-neutral-hover-state-layer-opacity","",r.opacity8),neutralFocusStateLayerOpacity:t.extend("--ft-button-neutral-focus-state-layer-opacity","",r.opacity8),neutralActiveStateLayerOpacity:t.extend("--ft-button-neutral-active-state-layer-opacity","",r.opacity16),neutralDisabledComponentOpacity:t.extend("--ft-button-neutral-disabled-component-opacity","",r.opacity40)};var ti={neutralOffHoverStateLayerOpacity:t.extend("--ft-chip-choice-neutral-off-hover-state-layer-opacity","",r.opacity8),neutralOffFocusStateLayerOpacity:t.extend("--ft-chip-choice-neutral-off-focus-state-layer-opacity","",r.opacity8),neutralOffFocusFocusRingColor:t.extend("--ft-chip-choice-neutral-off-focus-focus-ring-color","",i.borderActionFocusRing),neutralOffActiveStateLayerOpacity:t.extend("--ft-chip-choice-neutral-off-active-state-layer-opacity","",r.opacity16),neutralOffBackgroundColor:t.extend("--ft-chip-choice-neutral-off-background-color","",i.backgroundGlobalOnSurface),neutralOffBorderColor:t.extend("--ft-chip-choice-neutral-off-border-color","",i.borderGlobalPrimary),neutralOffColor:t.extend("--ft-chip-choice-neutral-off-color","",i.contentGlobalSecondary),neutralOffStateLayerColor:t.extend("--ft-chip-choice-neutral-off-state-layer-color","",i.contentGlobalSecondary),neutralOnDefaultStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-default-state-layer-opacity","",r.opacity16),neutralOnHoverStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-hover-state-layer-opacity","",r.opacity24),neutralOnFocusStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-focus-state-layer-opacity","",r.opacity24),neutralOnFocusFocusRingColor:t.extend("--ft-chip-choice-neutral-on-focus-focus-ring-color","",i.borderActionFocusRing),neutralOnActiveStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-active-state-layer-opacity","",r.opacity32),neutralOnBackgroundColor:t.extend("--ft-chip-choice-neutral-on-background-color","",i.backgroundGlobalOnSurface),neutralOnBorderColor:t.extend("--ft-chip-choice-neutral-on-border-color","",i.borderGlobalPrimary),neutralOnColor:t.extend("--ft-chip-choice-neutral-on-color","",i.contentGlobalPrimary),neutralOnIconColor:t.extend("--ft-chip-choice-neutral-on-icon-color","",i.contentGlobalPrimary),neutralOnStateLayerColor:t.extend("--ft-chip-choice-neutral-on-state-layer-color","",i.contentGlobalPrimary),largeMinHeight:t.create("--ft-chip-choice-large-min-height","","SIZE","36px"),largeHorizontalPadding:t.extend("--ft-chip-choice-large-horizontal-padding","",r.spacing3),largeGap:t.extend("--ft-chip-choice-large-gap","",r.spacing1),largeBorderRadius:t.create("--ft-chip-choice-large-border-radius","","SIZE","18px"),largeBorderWidth:t.create("--ft-chip-choice-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-choice-large-icon-size","",r.iconSize3),mediumMinHeight:t.create("--ft-chip-choice-medium-min-height","","SIZE","24px"),mediumHorizontalPadding:t.extend("--ft-chip-choice-medium-horizontal-padding","",r.spacing2),mediumGap:t.extend("--ft-chip-choice-medium-gap","",r.spacing1),mediumBorderRadius:t.create("--ft-chip-choice-medium-border-radius","","SIZE","12px"),mediumBorderWidth:t.create("--ft-chip-choice-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-choice-medium-icon-size","",r.iconSize2)};var ai={largeMinHeight:t.create("--ft-chip-large-min-height","","SIZE","36px"),largeHorizontalPadding:t.extend("--ft-chip-large-horizontal-padding","",r.spacing3),largeButtonRightPadding:t.extend("--ft-chip-large-button-right-padding","",r.spacing1),largeGap:t.extend("--ft-chip-large-gap","",r.spacing1),largeFocusOutlineOffset:t.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:t.create("--ft-chip-large-border-radius","","SIZE","18px"),largeBorderWidth:t.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-large-icon-size","",r.iconSize3),mediumMinHeight:t.create("--ft-chip-medium-min-height","","SIZE","24px"),mediumHorizontalPadding:t.extend("--ft-chip-medium-horizontal-padding","",r.spacing2),mediumButtonRightPadding:t.extend("--ft-chip-medium-button-right-padding","",r.spacing05),mediumGap:t.extend("--ft-chip-medium-gap","",r.spacing1),mediumFocusOutlineOffset:t.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:t.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:t.create("--ft-chip-medium-border-radius","","SIZE","12px"),mediumBorderWidth:t.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-medium-icon-size","",r.iconSize2),smallMinHeight:t.create("--ft-chip-small-min-height","","SIZE","20px"),smallHorizontalPadding:t.extend("--ft-chip-small-horizontal-padding","",r.spacing1),smallButtonRightPadding:t.extend("--ft-chip-small-button-right-padding","",r.spacing05),smallGap:t.extend("--ft-chip-small-gap","",r.spacing1),smallFocusOutlineOffset:t.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:t.create("--ft-chip-small-border-radius","","SIZE","10px"),smallBorderWidth:t.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:t.extend("--ft-chip-small-icon-size","",r.iconSize1),neutralBackgroundColor:t.extend("--ft-chip-neutral-background-color","",i.backgroundGlobalOnSurface),neutralColor:t.extend("--ft-chip-neutral-color","",i.contentGlobalSecondary),neutralIconColor:t.extend("--ft-chip-neutral-icon-color","",i.contentGlobalSecondary),neutralBorderColor:t.extend("--ft-chip-neutral-border-color","",i.borderGlobalSubtle),infoBackgroundColor:t.extend("--ft-chip-info-background-color","",i.backgroundInfoSubtle),infoColor:t.extend("--ft-chip-info-color","",i.contentInfoPrimary),infoIconColor:t.extend("--ft-chip-info-icon-color","",i.contentInfoIconOnly),infoBorderColor:t.extend("--ft-chip-info-border-color","",i.borderInfoSubtle),successBackgroundColor:t.extend("--ft-chip-success-background-color","",i.backgroundSuccessSubtle),successColor:t.extend("--ft-chip-success-color","",i.contentSuccessPrimary),successIconColor:t.extend("--ft-chip-success-icon-color","",i.contentSuccessIconOnly),successBorderColor:t.extend("--ft-chip-success-border-color","",i.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-chip-warning-background-color","",i.backgroundWarningSubtle),warningColor:t.extend("--ft-chip-warning-color","",i.contentWarningPrimary),warningIconColor:t.extend("--ft-chip-warning-icon-color","",i.contentWarningIconOnly),warningBorderColor:t.extend("--ft-chip-warning-border-color","",i.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-chip-error-background-color","",i.backgroundErrorSubtle),errorColor:t.extend("--ft-chip-error-color","",i.contentErrorPrimary),errorIconColor:t.extend("--ft-chip-error-icon-color","",i.contentErrorIconOnly),errorBorderColor:t.extend("--ft-chip-error-border-color","",i.borderErrorSubtle)};var pi={brandHoverOpacity:t.extend("--ft-link-brand-hover-opacity","",r.opacity80),brandHoverColor:t.extend("--ft-link-brand-hover-color","",i.contentActionPrimary),brandFocusFocusRingColor:t.extend("--ft-link-brand-focus-focus-ring-color","",i.borderActionFocusRing),brandFocusColor:t.extend("--ft-link-brand-focus-color","",i.contentActionPrimary),brandDefaultColor:t.extend("--ft-link-brand-default-color","",i.contentActionPrimary),brandActiveColor:t.extend("--ft-link-brand-active-color","",i.contentActionPrimary),infoHoverOpacity:t.extend("--ft-link-info-hover-opacity","",r.opacity80),infoHoverColor:t.extend("--ft-link-info-hover-color","",i.contentInfoPrimary),infoFocusFocusRingColor:t.extend("--ft-link-info-focus-focus-ring-color","",i.borderActionFocusRing),infoFocusColor:t.extend("--ft-link-info-focus-color","",i.contentInfoPrimary),infoDefaultColor:t.extend("--ft-link-info-default-color","",i.contentInfoPrimary),infoActiveColor:t.extend("--ft-link-info-active-color","",i.contentInfoPrimary),neutralFocusFocusRingColor:t.extend("--ft-link-neutral-focus-focus-ring-color","",i.borderActionFocusRing),neutralFocusColor:t.extend("--ft-link-neutral-focus-color","",i.contentActionPrimary),neutralDefaultColor:t.extend("--ft-link-neutral-default-color","",i.contentGlobalPrimary),neutralHoverColor:t.extend("--ft-link-neutral-hover-color","",i.contentActionPrimary),neutralActiveColor:t.extend("--ft-link-neutral-active-color","",i.contentActionPrimary)};var gi={iconSize:t.extend("--ft-banner-icon-size","",r.iconSize5),borderWidth:t.create("--ft-banner-border-width","","SIZE","1px"),leftPadding:t.extend("--ft-banner-left-padding","",r.spacing6),rightPadding:t.extend("--ft-banner-right-padding","",r.spacing6),verticalPadding:t.extend("--ft-banner-vertical-padding","",r.spacing6),horizontalSideGap:t.extend("--ft-banner-horizontal-side-gap","",r.spacing6),horizontalMobileGap:t.extend("--ft-banner-horizontal-mobile-gap","",r.spacing4),verticalMobileGap:t.extend("--ft-banner-vertical-mobile-gap","",r.spacing6),horizontalMiddleGap:t.extend("--ft-banner-horizontal-middle-gap","",r.spacing20),infoBackgroundColor:t.extend("--ft-banner-info-background-color","",i.backgroundInfoSubtle),infoColor:t.extend("--ft-banner-info-color","",i.contentInfoPrimary),infoIconColor:t.extend("--ft-banner-info-icon-color","",i.contentInfoIconOnly),infoBorderColor:t.extend("--ft-banner-info-border-color","",i.borderInfoSubtle)};var Si={horizontalPadding:t.extend("--ft-badge-horizontal-padding","",r.spacing1),verticalPadding:t.extend("--ft-badge-vertical-padding","",r.spacing1),borderRadius:t.extend("--ft-badge-border-radius","",r.borderRadiusPill),color:t.extend("--ft-badge-color","",i.contentGlobalOnColor),backgroundColor:t.extend("--ft-badge-background-color","",i.contentActionPrimary)};var wi={horizontalGap:t.extend("--ft-breadcrumb-horizontal-gap","",r.spacing1),verticalGap:t.extend("--ft-breadcrumb-vertical-gap","",r.spacing2),currentColor:t.extend("--ft-breadcrumb-current-color","",i.contentGlobalPrimary),previousNonClickableColor:t.extend("--ft-breadcrumb-previous-non-clickable-color","",i.contentGlobalSecondary),iconColor:t.extend("--ft-breadcrumb-icon-color","",i.contentGlobalSubtle)};var $i={horizontalPadding:t.extend("--ft-page-header-horizontal-padding","",r.spacing6),horizontalGap:t.extend("--ft-page-header-horizontal-gap","",r.spacing4),verticalGap:t.extend("--ft-page-header-vertical-gap","",r.spacing2),classicVerticalPadding:t.extend("--ft-page-header-classic-vertical-padding","",r.spacing6),multilineVerticalPadding:t.extend("--ft-page-header-multiline-vertical-padding","",r.spacing4),inlineVerticalPadding:t.extend("--ft-page-header-inline-vertical-padding","",r.spacing2),backgroundColor:t.extend("--ft-page-header-background-color","",r.colorWhite),bottomBorderColor:t.extend("--ft-page-header-bottom-border-color","",i.borderGlobalSubtle),titleColor:t.extend("--ft-page-header-title-color","",i.contentGlobalPrimary),subtitleColor:t.extend("--ft-page-header-subtitle-color","",i.contentGlobalSecondary)};var Bi={smallContainerWidth:t.create("--ft-modal-small-container-width","","SIZE","600px"),largeContainerWidth:t.create("--ft-modal-large-container-width","","SIZE","900px"),overlayBackgroundColor:t.extend("--ft-modal-overlay-background-color","",r.colorGray700),overlayOpacity:t.extend("--ft-modal-overlay-opacity","",r.opacity40),shadow:t.extend("--ft-modal-shadow","",r.shadowElevation03),bodyBackgroundColor:t.extend("--ft-modal-body-background-color","",r.colorWhite),bodyColor:t.extend("--ft-modal-body-color","",i.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-modal-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:t.extend("--ft-modal-body-vertical-padding","",r.spacing6),bodyVerticalGap:t.extend("--ft-modal-body-vertical-gap","",r.spacing6),containerMargin:t.extend("--ft-modal-container-margin","",r.spacing3),headerBackgroundColor:t.extend("--ft-modal-header-background-color","",i.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-modal-header-border-color","",i.borderGlobalSubtle),headerColor:t.extend("--ft-modal-header-color","",i.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-modal-header-trailing-icon-color","",i.contentGlobalSecondary),headerVerticalPadding:t.extend("--ft-modal-header-vertical-padding","",r.spacing1),headerRightPadding:t.extend("--ft-modal-header-right-padding","",r.spacing1),headerLeftPadding:t.extend("--ft-modal-header-left-padding","",r.spacing6),headerGap:t.extend("--ft-modal-header-gap","",r.spacing2),headerBorderBottom:t.create("--ft-modal-header-border-bottom","","SIZE","1px"),borderRadius:t.extend("--ft-modal-border-radius","",r.borderRadiusM)};var Ui={overlayOpacity:t.extend("--ft-drawer-overlay-opacity","",r.opacity40),shadow:t.extend("--ft-drawer-shadow","",r.shadowElevation03),bodyColor:t.extend("--ft-drawer-body-color","",i.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-drawer-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:t.extend("--ft-drawer-body-vertical-padding","",r.spacing6),bodyGap:t.extend("--ft-drawer-body-gap","",r.spacing6),bodyBackgroundColor:t.extend("--ft-drawer-body-background-color","",r.colorWhite),headerBackgroundColor:t.extend("--ft-drawer-header-background-color","",i.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-drawer-header-border-color","",i.borderGlobalSubtle),headerColor:t.extend("--ft-drawer-header-color","",i.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-drawer-header-trailing-icon-color","",i.contentGlobalSecondary),headerHeight:t.create("--ft-drawer-header-height","","SIZE","50px"),headerHorizontalPadding:t.extend("--ft-drawer-header-horizontal-padding","",r.spacing2),headerBorderWidth:t.create("--ft-drawer-header-border-width","","SIZE","1px"),headerGap:t.extend("--ft-drawer-header-gap","",r.spacing3),buttonsBarBackgroundColor:t.extend("--ft-drawer-buttons-bar-background-color","",i.backgroundGlobalOnSurface),buttonsBarBorderColor:t.extend("--ft-drawer-buttons-bar-border-color","",i.borderGlobalSubtle),buttonsBarColor:t.extend("--ft-drawer-buttons-bar-color","",i.contentGlobalPrimary),buttonsBarHorizontalPadding:t.extend("--ft-drawer-buttons-bar-horizontal-padding","",r.spacing6),buttonsBarVerticalPadding:t.extend("--ft-drawer-buttons-bar-vertical-padding","",r.spacing4),buttonsBarGap:t.extend("--ft-drawer-buttons-bar-gap","",r.spacing3),buttonsBarBorderWidth:t.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),containerWidth:t.create("--ft-drawer-container-width","","SIZE","66%"),containerMinWidth:t.create("--ft-drawer-container-min-width","","SIZE","500px"),containerMaxWidth:t.create("--ft-drawer-container-max-width","","SIZE","1000px"),containerHeight:t.create("--ft-drawer-container-height","","SIZE","100%"),overlayBackgroundColor:t.extend("--ft-drawer-overlay-background-color","",r.colorGray700)};var Ki={offBorderBottomWidth:t.create("--ft-tabs-off-border-bottom-width","","SIZE","1px"),offHoverStateLayerOpacity:t.extend("--ft-tabs-off-hover-state-layer-opacity","",r.opacity8),offDefaultStateLayerOpacity:t.extend("--ft-tabs-off-default-state-layer-opacity","",r.opacity0),offFocusStateLayerOpacity:t.extend("--ft-tabs-off-focus-state-layer-opacity","",r.opacity8),offDisabledComponentOpacity:t.extend("--ft-tabs-off-disabled-component-opacity","",r.opacity40),offColor:t.extend("--ft-tabs-off-color","",i.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-tabs-off-state-layer-color","",i.contentGlobalSubtle),offBorderBottomColor:t.extend("--ft-tabs-off-border-bottom-color","",i.borderGlobalSubtle),activeTabIndicatorHeight:t.create("--ft-tabs-active-tab-indicator-height","","SIZE","3px"),topLeftBorderRadius:t.extend("--ft-tabs-top-left-border-radius","",r.borderRadiusS),topRightBorderRadius:t.extend("--ft-tabs-top-right-border-radius","",r.borderRadiusS),withLabelHorizontalPadding:t.extend("--ft-tabs-with-label-horizontal-padding","",r.spacing4),withLabelVerticalPadding:t.extend("--ft-tabs-with-label-vertical-padding","",r.spacing3),horizontalGap:t.extend("--ft-tabs-horizontal-gap","",r.spacing1),verticalGap:t.extend("--ft-tabs-vertical-gap","",r.spacing1),onHoverStateLayerOpacity:t.extend("--ft-tabs-on-hover-state-layer-opacity","",r.opacity16),onDefaultStateLayerOpacity:t.extend("--ft-tabs-on-default-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:t.extend("--ft-tabs-on-focus-state-layer-opacity","",r.opacity16),onActiveStateLayerOpacity:t.extend("--ft-tabs-on-active-state-layer-opacity","",r.opacity24),onColor:t.extend("--ft-tabs-on-color","",i.contentActionPrimary),onStateLayerColor:t.extend("--ft-tabs-on-state-layer-color","",i.contentActionPrimary),onActiveTabIndicatorColor:t.extend("--ft-tabs-on-active-tab-indicator-color","",i.contentActionPrimary),iconOnlyHorizontalPadding:t.extend("--ft-tabs-icon-only-horizontal-padding","",r.spacing4),iconOnlyVerticalPadding:t.extend("--ft-tabs-icon-only-vertical-padding","",r.spacing4),alertTopPadding:t.extend("--ft-tabs-alert-top-padding","",r.spacing1),alertRightPadding:t.extend("--ft-tabs-alert-right-padding","",r.spacing05),focusOutlineWidth:t.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-tabs-focus-focus-ring-color","",i.borderActionFocusRing)};var Xi={fieldHorizontalPadding:t.extend("--ft-text-input-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-text-input-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-text-input-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-text-input-field-icon-size","",r.iconSize3),fieldHeight:t.create("--ft-text-input-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-text-input-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-text-input-helper-horizontal-gap","",r.spacing1),helperIconSize:t.extend("--ft-text-input-helper-icon-size","",r.iconSize2),borderRadius:t.extend("--ft-text-input-border-radius","",r.borderRadiusM),backgroundColor:t.extend("--ft-text-input-background-color","",r.colorWhite),contentValueColor:t.extend("--ft-text-input-content-value-color","",i.contentGlobalPrimary),trailingIconColor:t.extend("--ft-text-input-trailing-icon-color","",i.contentGlobalSubtle),labelColor:t.extend("--ft-text-input-label-color","",i.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-input-default-border-color","",i.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-input-default-helper-text-color","",i.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-input-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-input-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-input-error-border-color","",i.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-input-error-helper-text-color","",i.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-input-error-helper-icon-color","",i.contentErrorIconOnly),warningBorderWidth:t.create("--ft-text-input-warning-border-width","","SIZE","2px"),focusOutlineWidth:t.create("--ft-text-input-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-text-input-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineOffset:t.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-input-disabled-component-opacity","",r.opacity40)};var el={backgroundColor:t.extend("--ft-text-area-background-color","",r.colorWhite),contentValueColor:t.extend("--ft-text-area-content-value-color","",i.contentGlobalPrimary),labelColor:t.extend("--ft-text-area-label-color","",i.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-area-default-border-color","",i.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-area-default-helper-text-color","",i.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-area-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-area-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-area-error-border-color","",i.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-area-error-helper-text-color","",i.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-area-error-helper-icon-color","",i.contentErrorIconOnly),focusFocusRingColor:t.extend("--ft-text-area-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineWidth:t.create("--ft-text-area-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-area-disabled-component-opacity","",r.opacity40),fieldHorizontalLeftPadding:t.extend("--ft-text-area-field-horizontal-left-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-text-area-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-text-area-field-vertical-gap","",r.spacing05),fieldMinHeight:t.create("--ft-text-area-field-min-height","","SIZE","64px"),helperHorizontalPadding:t.extend("--ft-text-area-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-text-area-helper-horizontal-gap","",r.spacing1),helperIconSize:t.extend("--ft-text-area-helper-icon-size","",r.iconSize2),borderRadius:t.extend("--ft-text-area-border-radius","",r.borderRadiusM)};var il={height:t.create("--ft-floating-menu-height","","SIZE","50px"),horizontalPadding:t.extend("--ft-floating-menu-horizontal-padding","",r.spacing4),offIconColor:t.extend("--ft-floating-menu-off-icon-color","",i.contentGlobalPrimary),offColor:t.extend("--ft-floating-menu-off-color","",i.contentGlobalPrimary),onColor:t.extend("--ft-floating-menu-on-color","",i.contentActionPrimary),onStateLayerColor:t.extend("--ft-floating-menu-on-state-layer-color","",i.contentActionPrimary),gap:t.extend("--ft-floating-menu-gap","",r.spacing3),focusFocusRingColor:t.extend("--ft-floating-menu-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineWidth:t.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),focusStateLayerOpacity:t.extend("--ft-floating-menu-focus-state-layer-opacity","",r.opacity8),hoverStateLayerOpacity:t.extend("--ft-floating-menu-hover-state-layer-opacity","",r.opacity8),activeStateLayerOpacity:t.extend("--ft-floating-menu-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:t.extend("--ft-floating-menu-disabled-component-opacity","",r.opacity40),iconSize:t.extend("--ft-floating-menu-icon-size","",r.iconSize3),backgroundColor:t.extend("--ft-floating-menu-background-color","",i.backgroundGlobalOnSurface),shadow:t.extend("--ft-floating-menu-shadow","",r.shadowElevation02)};var dl={fieldHorizontalPadding:t.extend("--ft-combobox-single-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-single-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-combobox-single-select-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-combobox-single-select-field-icon-size","",r.iconSize3),fieldHeight:t.create("--ft-combobox-single-select-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-combobox-single-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-combobox-single-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:t.extend("--ft-combobox-single-select-helper-vertical-gap","",r.spacing1),helperIconSize:t.extend("--ft-combobox-single-select-helper-icon-size","",r.iconSize2),menuVerticalGap:t.extend("--ft-combobox-single-select-menu-vertical-gap","",r.spacing2),borderRadius:t.extend("--ft-combobox-single-select-border-radius","",r.borderRadiusM),backgroundColor:t.extend("--ft-combobox-single-select-background-color","",r.colorWhite),labelColor:t.extend("--ft-combobox-single-select-label-color","",i.contentGlobalSubtle),contentValueColor:t.extend("--ft-combobox-single-select-content-value-color","",i.contentGlobalPrimary),trailingIconColor:t.extend("--ft-combobox-single-select-trailing-icon-color","",i.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-single-select-default-border-color","",i.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-single-select-default-helper-text-color","",i.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-combobox-single-select-error-border-color","",i.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-single-select-error-helper-text-color","",i.contentErrorPrimary),warningBorderWidth:t.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-single-select-warning-border-color","",i.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-single-select-warning-helper-text-color","",i.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-single-select-warning-helper-icon-color","",i.contentWarningIconOnly),focusOutlineWidth:t.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-single-select-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineOffset:t.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-single-select-disabled-component-opacity","",r.opacity40)};var ml={backgroundColor:t.extend("--ft-combobox-multi-select-background-color","",r.colorWhite),labelColor:t.extend("--ft-combobox-multi-select-label-color","",i.contentGlobalSubtle),trailingIconColor:t.extend("--ft-combobox-multi-select-trailing-icon-color","",i.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-multi-select-default-border-color","",i.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-multi-select-default-helper-text-color","",i.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),errorBorderColor:t.extend("--ft-combobox-multi-select-error-border-color","",i.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-multi-select-error-helper-text-color","",i.contentErrorPrimary),errorHelperIcon:t.extend("--ft-combobox-multi-select-error-helper-icon","",i.contentErrorIconOnly),errorBorderWidth:t.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-multi-select-warning-border-color","",i.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-multi-select-warning-helper-text-color","",i.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-multi-select-warning-helper-icon-color","",i.contentWarningIconOnly),warningBorderWidth:t.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-multi-select-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineWidth:t.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-multi-select-disabled-component-opacity","",r.opacity40),helperHorizontalPadding:t.extend("--ft-combobox-multi-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-combobox-multi-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:t.extend("--ft-combobox-multi-select-helper-vertical-gap","",r.spacing1),helperIconSize:t.extend("--ft-combobox-multi-select-helper-icon-size","",r.iconSize2),fieldHorizontalPadding:t.extend("--ft-combobox-multi-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-multi-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-combobox-multi-select-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-combobox-multi-select-field-icon-size","",r.iconSize3),fieldMaxHeight:t.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),contentValuesHorizontalGap:t.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",r.spacing1),contentValuesVerticalGap:t.extend("--ft-combobox-multi-select-content-values-vertical-gap","",r.spacing1),borderRadius:t.extend("--ft-combobox-multi-select-border-radius","",r.borderRadiusM)};var Ol={backgroundColor:t.extend("--ft-popover-background-color","",i.backgroundGlobalOnSurface),horizontalPadding:t.extend("--ft-popover-horizontal-padding","",r.spacing6),verticalPadding:t.extend("--ft-popover-vertical-padding","",r.spacing6),titleColor:t.extend("--ft-popover-title-color","",i.contentGlobalPrimary),bodyColor:t.extend("--ft-popover-body-color","",i.contentGlobalSecondary),linkColor:t.extend("--ft-popover-link-color","",i.contentActionPrimary),gap:t.extend("--ft-popover-gap","",r.spacing3),borderRadius:t.extend("--ft-popover-border-radius","",r.borderRadiusM),shadow:t.extend("--ft-popover-shadow","",r.shadowElevation02)};var El={hoverStateLayerOpacity:t.extend("--ft-collapsible-hover-state-layer-opacity","",r.opacity8),focusStateLayerOpacity:t.extend("--ft-collapsible-focus-state-layer-opacity","",r.opacity8),focusOutlineWidth:t.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:t.extend("--ft-collapsible-focus-focus-ring-color","",i.borderActionFocusRing),activeStateLayerOpacity:t.extend("--ft-collapsible-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:t.extend("--ft-collapsible-disabled-component-opacity","",r.opacity40),horizontalPadding:t.extend("--ft-collapsible-horizontal-padding","",r.spacing4),verticalPadding:t.extend("--ft-collapsible-vertical-padding","",r.spacing3),color:t.extend("--ft-collapsible-color","",i.contentGlobalPrimary),stateLayerColor:t.extend("--ft-collapsible-state-layer-color","",i.contentGlobalPrimary),backgroundColor:t.extend("--ft-collapsible-background-color","",i.backgroundGlobalOnSurface),borderColor:t.extend("--ft-collapsible-border-color","",i.borderGlobalSubtle),iconSize:t.extend("--ft-collapsible-icon-size","",r.iconSize3)};var Il={groupHorizontalPadding:t.extend("--ft-switch-group-horizontal-padding","",r.spacing1),groupVerticalPadding:t.extend("--ft-switch-group-vertical-padding","",r.spacing1),groupGap:t.extend("--ft-switch-group-gap","",r.spacing1),groupBackgroundColor:t.extend("--ft-switch-group-background-color","",i.backgroundGlobalSurface),groupBorderColor:t.extend("--ft-switch-group-border-color","",i.borderGlobalSubtle),groupBorderRadius:t.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:t.extend("--ft-switch-label-horizontal-padding","",r.spacing2),labelVerticalPadding:t.extend("--ft-switch-label-vertical-padding","",r.spacing1),offHoverStateLayerOpacity:t.extend("--ft-switch-off-hover-state-layer-opacity","",r.opacity8),offFocusStateLayerOpacity:t.extend("--ft-switch-off-focus-state-layer-opacity","",r.opacity8),offActiveStateLayerOpacity:t.extend("--ft-switch-off-active-state-layer-opacity","",r.opacity16),offDisabledComponentOpacity:t.extend("--ft-switch-off-disabled-component-opacity","",r.opacity40),offColor:t.extend("--ft-switch-off-color","",i.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-switch-off-state-layer-color","",i.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-switch-on-hover-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:t.extend("--ft-switch-on-focus-state-layer-opacity","",r.opacity8),onActiveStateLayerOpacity:t.extend("--ft-switch-on-active-state-layer-opacity","",r.opacity16),onDisabledComponentOpacity:t.extend("--ft-switch-on-disabled-component-opacity","",r.opacity40),onColor:t.extend("--ft-switch-on-color","",i.contentActionPrimary),onStateLayerColor:t.extend("--ft-switch-on-state-layer-color","",i.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-switch-icon-horizontal-padding","",r.spacing1),iconVerticalPadding:t.extend("--ft-switch-icon-vertical-padding","",r.spacing1),focusOutlineWidth:t.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-switch-focus-focus-ring-color","",i.borderActionFocusRing),optionBorderRadius:t.extend("--ft-switch-option-border-radius","",r.borderRadiusS)};var Bl={color1Light:t.extend("--ft-chart-1-light","for area color charts",r.colorBrand40),color1Base:t.extend("--ft-chart-1-base","for line charts",r.colorBrand0),color2Light:t.extend("--ft-chart-2-light","for area color charts",r.colorYellow60),color2Base:t.extend("--ft-chart-2-base","for line charts",r.colorYellow100),color3Light:t.extend("--ft-chart-3-light","",r.colorUltramarine40),color3Base:t.extend("--ft-chart-3-base","",r.colorUltramarine70),color4Light:t.extend("--ft-chart-4-light","",r.colorCyan50),color4Base:t.extend("--ft-chart-4-base","",r.colorCyan100),color5Light:t.extend("--ft-chart-5-light","",r.colorRed40),color5Base:t.extend("--ft-chart-5-base","",r.colorRed60),color6Light:t.extend("--ft-chart-6-light","",r.colorGreen40),color6Base:t.extend("--ft-chart-6-base","",r.colorGreen70),color7Light:t.extend("--ft-chart-7-light","",r.colorOrange70),color7Base:t.extend("--ft-chart-7-base","",r.colorOrange100),color8Light:t.extend("--ft-chart-8-light","",r.colorAvocado70),color8Base:t.extend("--ft-chart-8-base","",r.colorAvocado200),color9Light:t.extend("--ft-chart-9-light","",r.colorBrown50),color9Base:t.extend("--ft-chart-9-base","",r.colorBrown200),color10Light:t.extend("--ft-chart-10-light","",r.colorGray50),color10Base:t.extend("--ft-chart-10-base","",r.colorGray80),monochrome10:t.extend("--ft-chart-monochrome-10","",r.colorBrand10),monochrome20:t.extend("--ft-chart-monochrome-20","",r.colorBrand20),monochrome30:t.extend("--ft-chart-monochrome-30","",r.colorBrand40),monochrome40:t.extend("--ft-chart-monochrome-40","",r.colorBrand60),monochrome50:t.extend("--ft-chart-monochrome-50","",r.colorBrand0),monochrome60:t.extend("--ft-chart-monochrome-60","",r.colorBrand200)};var Ul={borderWidth:t.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-notice-horizontal-padding","",r.spacing3),verticalPadding:t.extend("--ft-notice-vertical-padding","",r.spacing2),borderRadius:t.extend("--ft-notice-border-radius","",r.borderRadiusS),gap:t.extend("--ft-notice-gap","",r.spacing2),iconSize:t.extend("--ft-notice-icon-size","",r.iconSize3),infoBackgroundColor:t.extend("--ft-notice-info-background-color","",i.backgroundInfoSubtle),infoBorderColor:t.extend("--ft-notice-info-border-color","",i.borderInfoSubtle),infoColor:t.extend("--ft-notice-info-color","",i.contentInfoPrimary),infoIconColor:t.extend("--ft-notice-info-icon-color","",i.contentInfoIconOnly),warningBackgroundColor:t.extend("--ft-notice-warning-background-color","",i.backgroundWarningSubtle),warningBorderColor:t.extend("--ft-notice-warning-border-color","",i.borderWarningSubtle),warningColor:t.extend("--ft-notice-warning-color","",i.contentWarningPrimary),warningIconColor:t.extend("--ft-notice-warning-icon-color","",i.contentWarningIconOnly),errorBackgroundColor:t.extend("--ft-notice-error-background-color","",i.backgroundErrorSubtle),errorBorderColor:t.extend("--ft-notice-error-border-color","",i.borderErrorSubtle),errorColor:t.extend("--ft-notice-error-color","",i.contentErrorPrimary),errorIconColor:t.extend("--ft-notice-error-icon-color","",i.contentErrorIconOnly),successBackgroundColor:t.extend("--ft-notice-success-background-color","",i.backgroundSuccessSubtle),successBorderColor:t.extend("--ft-notice-success-border-color","",i.borderSuccessSubtle),successColor:t.extend("--ft-notice-success-color","",i.contentSuccessPrimary),successIconColor:t.extend("--ft-notice-success-icon-color","",i.contentSuccessIconOnly)};var Kl={color:t.extend("--ft-checkbox-color","",i.contentGlobalPrimary),checkedBackgroundColor:t.extend("--ft-checkbox-checked-background-color","",i.contentActionPrimary),checkedStateLayerColor:t.extend("--ft-checkbox-checked-state-layer-color","",i.contentActionPrimary),checkedIconColor:t.extend("--ft-checkbox-checked-icon-color","",i.contentGlobalOnColor),checkedHoverStateLayerOpacity:t.extend("--ft-checkbox-checked-hover-state-layer-opacity","",r.opacity16),checkedFocusStateLayerOpacity:t.extend("--ft-checkbox-checked-focus-state-layer-opacity","",r.opacity16),checkedActiveStateLayerOpacity:t.extend("--ft-checkbox-checked-active-state-layer-opacity","",r.opacity24),checkedDisabledComponentOpacity:t.extend("--ft-checkbox-checked-disabled-component-opacity","",r.opacity40),uncheckedBorderColor:t.extend("--ft-checkbox-unchecked-border-color","",r.colorGray80),uncheckedStateLayerColor:t.extend("--ft-checkbox-unchecked-state-layer-color","",r.colorGray80),uncheckedHoverStateLayerOpacity:t.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",r.opacity16),uncheckedFocusStateLayerOpacity:t.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",r.opacity16),uncheckedActiveStateLayerOpacity:t.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",r.opacity24),uncheckedDisabledComponentOpacity:t.extend("--ft-checkbox-unchecked-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-checkbox-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineOffset:t.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-checkbox-gap","",r.spacing3)};var Xl={offHoverStateLayerOpacity:t.extend("--ft-toggle-off-hover-state-layer-opacity","",r.opacity16),offFocusStateLayerOpacity:t.extend("--ft-toggle-off-focus-state-layer-opacity","",r.opacity16),offActiveStateLayerOpacity:t.extend("--ft-toggle-off-active-state-layer-opacity","",r.opacity24),offDisabledComponentOpacity:t.extend("--ft-toggle-off-disabled-component-opacity","",r.opacity40),offBackgroundColor:t.extend("--ft-toggle-off-background-color","",i.contentGlobalSubtle),offIconColor:t.extend("--ft-toggle-off-icon-color","",i.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-toggle-off-state-layer-color","",i.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-toggle-on-hover-state-layer-opacity","",r.opacity16),onFocusStateLayerOpacity:t.extend("--ft-toggle-on-focus-state-layer-opacity","",r.opacity16),onActiveStateLayerOpacity:t.extend("--ft-toggle-on-active-state-layer-opacity","",r.opacity24),onDisabledComponentOpacity:t.extend("--ft-toggle-on-disabled-component-opacity","",r.opacity40),onBackgroundColor:t.extend("--ft-toggle-on-background-color","",i.contentActionPrimary),onStateLayerColor:t.extend("--ft-toggle-on-state-layer-color","",i.contentActionPrimary),onIconColor:t.extend("--ft-toggle-on-icon-color","",i.contentActionPrimary),color:t.extend("--ft-toggle-color","",i.contentGlobalPrimary),focusFocusRingColor:t.extend("--ft-toggle-focus-focus-ring-color","",i.borderActionFocusRing),gap:t.extend("--ft-toggle-gap","",r.spacing3)};var ec={color:t.extend("--ft-radio-color","",i.contentGlobalPrimary),selectedRadioColor:t.extend("--ft-radio-selected-radio-color","",i.contentActionPrimary),selectedStateLayerColor:t.extend("--ft-radio-selected-state-layer-color","",i.contentActionPrimary),selectedHoverStateLayerOpacity:t.extend("--ft-radio-selected-hover-state-layer-opacity","",r.opacity16),selectedFocusStateLayerOpacity:t.extend("--ft-radio-selected-focus-state-layer-opacity","",r.opacity16),selectedActiveStateLayerOpacity:t.extend("--ft-radio-selected-active-state-layer-opacity","",r.opacity24),selectedDisabledComponentOpacity:t.extend("--ft-radio-selected-disabled-component-opacity","",r.opacity40),unselectedStateLayerColor:t.extend("--ft-radio-unselected-state-layer-color","",i.borderInputPrimary),unselectedBorderColor:t.extend("--ft-radio-unselected-border-color","",i.borderInputPrimary),unselectedHoverStateLayerOpacity:t.extend("--ft-radio-unselected-hover-state-layer-opacity","",r.opacity16),unselectedFocusStateLayerOpacity:t.extend("--ft-radio-unselected-focus-state-layer-opacity","",r.opacity16),unselectedActiveStateLayerOpacity:t.extend("--ft-radio-unselected-active-state-layer-opacity","",r.opacity24),unselectedDisabledComponentOpacity:t.extend("--ft-radio-unselected-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-radio-focus-focus-ring-color","",i.borderActionFocusRing),focusOutlineOffset:t.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-radio-gap","",r.spacing3)};var ic={iconSize:t.extend("--ft-notification-icon-size","",r.iconSize4),leftPadding:t.extend("--ft-notification-left-padding","",r.spacing5),rightPadding:t.extend("--ft-notification-right-padding","",r.spacing4),verticalPadding:t.extend("--ft-notification-vertical-padding","",r.spacing3),infoBackgroundColor:t.extend("--ft-notification-info-background-color","",i.backgroundInfoSubtle),infoColor:t.extend("--ft-notification-info-color","",i.contentInfoPrimary),infoIconColor:t.extend("--ft-notification-info-icon-color","",i.contentInfoIconOnly),infoBorderColor:t.extend("--ft-notification-info-border-color","",i.borderInfoSubtle),successBackgroundColor:t.extend("--ft-notification-success-background-color","",i.backgroundSuccessSubtle),successColor:t.extend("--ft-notification-success-color","",i.contentSuccessPrimary),successIconColor:t.extend("--ft-notification-success-icon-color","",i.contentSuccessIconOnly),successBorderColor:t.extend("--ft-notification-success-border-color","",i.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-notification-warning-background-color","",i.backgroundWarningSubtle),warningColor:t.extend("--ft-notification-warning-color","",i.contentWarningPrimary),warningIconColor:t.extend("--ft-notification-warning-icon-color","",i.contentWarningIconOnly),warningBorderColor:t.extend("--ft-notification-warning-border-color","",i.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-notification-error-background-color","",i.backgroundErrorSubtle),errorColor:t.extend("--ft-notification-error-color","",i.contentErrorPrimary),errorIconColor:t.extend("--ft-notification-error-icon-color","",i.contentErrorIconOnly),errorBorderColor:t.extend("--ft-notification-error-border-color","",i.borderErrorSubtle),borderRadius:t.extend("--ft-notification-border-radius","",r.borderRadiusPill),borderWidth:t.create("--ft-notification-border-width","","SIZE","1px"),leadingGap:t.extend("--ft-notification-leading-gap","",r.spacing2),trailingGap:t.extend("--ft-notification-trailing-gap","",r.spacing8)};var dc={horizontalPadding:t.extend("--ft-tooltip-horizontal-padding","",r.spacing2),verticalPadding:t.extend("--ft-tooltip-vertical-padding","",r.spacing2),borderRadius:t.extend("--ft-tooltip-border-radius","",r.borderRadiusS),color:t.extend("--ft-tooltip-color","",i.contentGlobalOnColor),backgroundColor:t.extend("--ft-tooltip-background-color","",i.contentGlobalPrimary),backgroundOpacity:t.extend("--ft-tooltip-background-opacity","",r.opacity80),shadow:t.extend("--ft-tooltip-shadow","",r.shadowElevation02),maxWidth:t.create("--ft-tooltip-max-width","","SIZE","256px"),gap:t.extend("--ft-tooltip-gap","",r.spacing05)};var we;(function(e){e.brand="brand",e.neutral="neutral",e.info="info",e.success="success",e.warning="warning",e.error="error"})(we||(we={}));var _t;(function(e){e.large="large",e.medium="medium",e.small="small"})(_t||(_t={}));var Ee=y(U());function ar(e){let o=Ne[e];return Ee.css`
|
|
226
|
-
.ft-typography--${(0,
|
|
224
|
+
`;var nt=x(U()),h=x(L());var mt=x(U(),1),wt=e=>typeof e=="string"?(0,mt.unsafeCSS)(e):e,t=class{static create(o,a,i,c){let l=p=>wt(p??c),s=mt.css`var(${wt(o)}, ${l(c)})`;return s.name=o,s.description=a,s.category=i,s.defaultValue=c,s.defaultCssValue=l,s.get=p=>mt.css`var(${wt(o)}, ${l(p)})`,s.breadcrumb=()=>[],s.lastResortDefaultValue=()=>c,s}static extend(o,a,i,c){let l=p=>i.get(p??c),s=mt.css`var(${wt(o)}, ${l(c)})`;return s.name=o,s.description=a,s.category=i.category,s.fallbackVariable=i,s.defaultValue=c,s.defaultCssValue=l,s.get=p=>mt.css`var(${wt(o)}, ${l(p)})`,s.breadcrumb=()=>[i.name,...i.breadcrumb()],s.lastResortDefaultValue=()=>c??i.lastResortDefaultValue(),s}static external(o,a){let i=l=>o.fallbackVariable?o.fallbackVariable.get(l??o.defaultValue):wt(l??o.lastResortDefaultValue()),c=mt.css`var(${wt(o.name)}, ${i(o.defaultValue)})`;return c.name=o.name,c.category=o.category,c.fallbackVariable=o.fallbackVariable,c.defaultValue=o.defaultValue,c.context=a,c.defaultCssValue=i,c.get=l=>mt.css`var(${wt(o.name)}, ${i(l)})`,c.breadcrumb=()=>o.fallbackVariable?[o.fallbackVariable.name,...o.fallbackVariable.breadcrumb()]:[],c.lastResortDefaultValue=()=>o.lastResortDefaultValue(),c}};var r={colorWhite:t.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:t.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:t.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:t.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:t.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:t.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:t.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:t.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:t.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:t.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:t.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:t.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:t.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:t.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:t.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:t.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:t.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:t.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:t.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:t.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:t.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:t.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:t.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:t.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:t.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:t.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:t.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:t.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:t.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:t.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:t.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:t.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:t.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:t.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:t.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:t.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:t.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:t.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:t.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:t.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:t.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:t.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:t.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:t.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:t.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:t.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:t.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:t.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:t.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:t.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:t.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:t.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:t.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:t.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:t.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:t.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:t.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:t.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:t.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:t.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:t.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:t.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:t.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:t.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:t.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:t.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:t.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:t.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:t.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:t.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:t.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:t.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:t.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:t.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:t.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:t.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:t.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:t.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:t.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:t.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:t.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:t.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:t.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:t.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:t.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:t.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:t.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:t.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:t.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:t.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:t.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:t.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:t.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:t.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:t.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:t.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:t.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:t.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:t.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:t.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:t.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:t.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:t.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:t.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:t.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:t.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:t.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:t.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:t.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:t.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:t.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:t.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:t.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:t.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:t.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:t.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:t.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:t.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:t.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:t.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:t.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:t.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:t.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:t.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:t.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:t.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:t.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:t.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:t.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:t.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:t.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:t.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:t.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:t.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:t.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:t.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:t.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:t.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:t.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:t.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:t.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:t.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:t.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:t.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:t.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:t.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:t.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:t.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:t.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:t.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:t.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:t.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:t.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:t.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:t.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:t.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:t.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:t.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:t.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:t.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:t.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:t.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:t.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:t.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:t.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:t.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:t.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:t.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:t.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:t.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:t.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:t.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:t.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:t.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:t.create("--ft-icon-size-1","","SIZE","0.75rem"),iconSize2:t.create("--ft-icon-size-2","","SIZE","1rem"),iconSize3:t.create("--ft-icon-size-3","","SIZE","1.25rem"),iconSize4:t.create("--ft-icon-size-4","","SIZE","1.5rem"),iconSize5:t.create("--ft-icon-size-5","","SIZE","2rem"),iconSize6:t.create("--ft-icon-size-6","","SIZE","3rem"),opacity0:t.create("--ft-opacity-0","","NUMBER","0"),opacity8:t.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:t.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:t.create("--ft-opacity-24","","NUMBER","0.24"),opacity32:t.create("--ft-opacity-32","","NUMBER","0.32"),opacity40:t.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:t.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:t.create("--ft-shadow-elevation-01","","SHADOW","0px 1px 4px 0px rgba(0,0,0,0.06), 0px 1px 2px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation02:t.create("--ft-shadow-elevation-02","","SHADOW","0px 4px 10px 0px rgba(0,0,0,0.06), 0px 2px 5px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation03:t.create("--ft-shadow-elevation-03","","SHADOW","0px 6px 13px 0px rgba(0,0,0,0.06), 0px 3px 7px 0px rgba(0,0,0,0.14), 0px 1px 2px 0px rgba(0,0,0,0.06)"),shadowElevation04:t.create("--ft-shadow-elevation-04","","SHADOW","0px 8px 16px 0px rgba(0,0,0,0.06), 0px 4px 9px 0px rgba(0,0,0,0.14), 0px 2px 3px 0px rgba(0,0,0,0.06)"),shadowElevation06:t.create("--ft-shadow-elevation-06","","SHADOW","0px 12px 22px 0px rgba(0,0,0,0.06), 0px 6px 13px 0px rgba(0,0,0,0.14), 0px 4px 5px 0px rgba(0,0,0,0.06)"),shadowElevation08:t.create("--ft-shadow-elevation-08","","SHADOW","0px 16px 28px 0px rgba(0,0,0,0.06), 0px 8px 17px 0px rgba(0,0,0,0.14), 0px 6px 7px 0px rgba(0,0,0,0.06)"),shadowElevation12:t.create("--ft-shadow-elevation-12","","SHADOW","0px 22px 40px 0px rgba(0,0,0,0.06), 0px 12px 23px 0px rgba(0,0,0,0.14), 0px 10px 11px 0px rgba(0,0,0,0.06)"),shadowElevation16:t.create("--ft-shadow-elevation-16","","SHADOW","0px 28px 52px 0px rgba(0,0,0,0.06), 0px 16px 29px 0px rgba(0,0,0,0.14), 0px 14px 15px 0px rgba(0,0,0,0.06)"),shadowElevation24:t.create("--ft-shadow-elevation-24","","SHADOW","0px 40px 76px 0px rgba(0,0,0,0.06), 0px 24px 41px 0px rgba(0,0,0,0.14), 0px 22px 23px 0px rgba(0,0,0,0.06)")},Po={fontFamily:t.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:t.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-display-textCase","","UNKNOWN","none")},To={fontFamily:t.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:t.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},zo={fontFamily:t.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:t.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},ko={fontFamily:t.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:t.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:t.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},Ho={fontFamily:t.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},_o={fontFamily:t.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},Do={fontFamily:t.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},Uo={fontFamily:t.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},Mo={fontFamily:t.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},Ga={fontFamily:t.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:t.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:t.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},Go={fontFamily:t.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},Zo={fontFamily:t.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},Fo={fontFamily:t.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},Ko={fontFamily:t.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},Vo={fontFamily:t.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},jo={fontFamily:t.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},Yo={fontFamily:t.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},Xo={fontFamily:t.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},qo={fontFamily:t.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},Jo={fontFamily:t.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},Qo={fontFamily:t.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},tr={fontFamily:t.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},er={fontFamily:t.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},or={fontFamily:t.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},rr={fontFamily:t.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},ar={fontFamily:t.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")},Ne={display:Po,"title-1":To,"title-2":zo,"title-3":ko,"body-1-regular":Ho,"body-1-medium":_o,"body-1-semibold":Do,"body-2-regular":Uo,"body-2-medium":Mo,"body-2-medium-underline":Ga,"body-2-semibold":Go,"label-1-medium":Zo,"label-1-semibold":Fo,"label-1-bold":Ko,"label-2-medium":Vo,"label-2-semibold":jo,"label-2-bold":Yo,"caption-1-medium":Xo,"caption-1-semibold":qo,"caption-1-bold":Jo,"caption-2-medium":Qo,"caption-2-semibold":tr,"caption-2-bold":er,"caption-3-medium":or,"caption-3-semibold":rr,"caption-3-bold":ar};var n={backgroundActionPrimary:t.extend("--ft-background-action-primary","Used as backgorund of primary action components.",r.colorBrand0),backgroundErrorSubtle:t.extend("--ft-background-error-subtle","Used as background of subtle error components.",r.colorRed10),backgroundInfoSubtle:t.extend("--ft-background-info-subtle","Used as background of subtle information components.",r.colorCyan10),backgroundWarningSubtle:t.extend("--ft-background-warning-subtle","Used as background of subtle information components.",r.colorOrange10),backgroundSuccessSubtle:t.extend("--ft-background-success-subtle","Used as background of subtle success components.",r.colorGreen10),backgroundGlobalSurface:t.extend("--ft-background-global-surface","Used as app background.",r.colorWhite),backgroundGlobalOnSurface:t.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",r.colorGray10),backgroundGlobalOnSurfaceDark:t.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",r.colorGray30),contentActionPrimary:t.extend("--ft-content-action-primary","Used on label of primary action on light surface.",r.colorBrand0),contentWarningPrimary:t.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",r.colorOrange200),contentWarningIconOnly:t.extend("--ft-content-warning-icon-only","Used on warning status icons alone",r.colorOrange0),contentErrorPrimary:t.extend("--ft-content-error-primary","Used on label of error messages on light surface.",r.colorRed0),contentErrorIconOnly:t.extend("--ft-content-error-icon-only","Used on error status icons alone",r.colorRed70),contentInfoPrimary:t.extend("--ft-content-info-primary","Used on label of information messages on light surface.",r.colorCyan200),contentInfoIconOnly:t.extend("--ft-content-info-icon-only","Used on info status icons alone",r.colorCyan0),contentSuccessPrimary:t.extend("--ft-content-success-primary","Used on label of success messages on light surface.",r.colorGreen200),contentSuccessIconOnly:t.extend("--ft-content-success-icon-only","Used on success status icons alone",r.colorGreen0),contentGlobalPrimary:t.extend("--ft-content-global-primary","Used for main content on the page.",r.colorGray500),contentGlobalSecondary:t.extend("--ft-content-global-secondary",`Used for secondary content, often paired with primary content.
|
|
225
|
+
Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",r.colorGray0),contentGlobalOnColor:t.extend("--ft-content-global-on-color","Used for content on a dominant color.",r.colorWhite),borderActionPrimary:t.extend("--ft-border-action-primary","Used as border for primary action components.",r.colorBrand0),borderActionFocusRing:t.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",r.colorCyan0),borderWarningPrimary:t.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",r.colorOrange200),borderWarningSubtle:t.extend("--ft-border-warning-subtle","Used as border for warning components.",r.colorOrange30),borderSuccessPrimary:t.extend("--ft-border-success-primary","Used as border for success buttons.",r.colorGreen200),borderSuccessSubtle:t.extend("--ft-border-success-subtle","Used as border for success components.",r.colorGreen30),borderErrorPrimary:t.extend("--ft-border-error-primary","Used as border for text fields in error states.",r.colorRed0),borderErrorSubtle:t.extend("--ft-border-error-subtle","Used as border for error components.",r.colorRed30),borderInfoPrimary:t.extend("--ft-border-info-primary","Used as border for buttons in info color.",r.colorCyan200),borderInfoSubtle:t.extend("--ft-border-info-subtle","Used as border for information components.",r.colorCyan30),borderGlobalPrimary:t.extend("--ft-border-global-primary","Used as border for element like input.",r.colorGray50),borderGlobalSubtle:t.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",r.colorGray30),borderInputPrimary:t.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",r.colorGray80),borderNeutralPrimary:t.extend("--ft-border-neutral-primary","Used as border for neutral secondary buttons",r.colorGray200)};var d={largeHeight:t.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:t.extend("--ft-button-large-horizontal-padding","",r.spacing4),largeGap:t.extend("--ft-button-large-gap","",r.spacing2),largeBorderRadius:t.extend("--ft-button-large-border-radius","",r.borderRadiusS),largeIconSize:t.extend("--ft-button-large-icon-size","",r.iconSize3),largeBorderWidth:t.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:t.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:t.create("--ft-button-large-icon-only-width","","SIZE","40px"),mediumHeight:t.create("--ft-button-medium-height","","SIZE","30px"),mediumHorizontalPadding:t.extend("--ft-button-medium-horizontal-padding","",r.spacing3),mediumGap:t.extend("--ft-button-medium-gap","",r.spacing2),mediumBorderRadius:t.extend("--ft-button-medium-border-radius","",r.borderRadiusS),mediumIconSize:t.extend("--ft-button-medium-icon-size","",r.iconSize2),mediumBorderWidth:t.create("--ft-button-medium-border-width","","SIZE","1px"),mediumFocusOutlineOffset:t.create("--ft-button-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:t.create("--ft-button-medium-focus-outline-width","","SIZE","2px"),mediumIconOnlyWidth:t.create("--ft-button-medium-icon-only-width","","SIZE","30px"),smallHeight:t.create("--ft-button-small-height","","SIZE","20px"),smallHorizontalPadding:t.extend("--ft-button-small-horizontal-padding","",r.spacing2),smallGap:t.extend("--ft-button-small-gap","",r.spacing1),smallBorderRadius:t.extend("--ft-button-small-border-radius","",r.borderRadiusS),smallIconSize:t.extend("--ft-button-small-icon-size","",r.iconSize1),smallBorderWidth:t.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:t.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:t.create("--ft-button-small-icon-only-width","","SIZE","20px"),xSmallHeight:t.create("--ft-button-x-small-height","","SIZE","16px"),xSmallIconSize:t.extend("--ft-button-x-small-icon-size","",r.iconSize1),xSmallFocusOutlineOffset:t.create("--ft-button-x-small-focus-outline-offset","","SIZE","2px"),xSmallFocusOutlineWidth:t.create("--ft-button-x-small-focus-outline-width","","SIZE","2px"),xSmallIconOnlyWidth:t.create("--ft-button-x-small-icon-only-width","","SIZE","16px"),roundBorderRadius:t.extend("--ft-button-round-border-radius","",r.borderRadiusPill),primaryBrandBackgroundColor:t.extend("--ft-button-primary-brand-background-color","",n.backgroundActionPrimary),primaryBrandColor:t.extend("--ft-button-primary-brand-color","",n.contentGlobalOnColor),primaryBrandIconColor:t.extend("--ft-button-primary-brand-icon-color","",n.contentGlobalOnColor),primaryBrandStateLayerColor:t.extend("--ft-button-primary-brand-state-layer-color","",n.contentGlobalOnColor),primaryBrandHoverStateLayerOpacity:t.extend("--ft-button-primary-brand-hover-state-layer-opacity","",r.opacity16),primaryBrandFocusStateLayerOpacity:t.extend("--ft-button-primary-brand-focus-state-layer-opacity","",r.opacity16),primaryBrandActiveStateLayerOpacity:t.extend("--ft-button-primary-brand-active-state-layer-opacity","",r.opacity24),primaryBrandDisabledComponentOpacity:t.extend("--ft-button-primary-brand-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-button-focus-focus-ring-color","",n.borderActionFocusRing),tertiaryBrandBackgroundColor:t.create("--ft-button-tertiary-brand-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryBrandColor:t.extend("--ft-button-tertiary-brand-color","",n.contentActionPrimary),tertiaryBrandIconColor:t.extend("--ft-button-tertiary-brand-icon-color","",n.contentActionPrimary),tertiaryBrandStateLayerColor:t.extend("--ft-button-tertiary-brand-state-layer-color","",n.contentActionPrimary),tertiaryBrandHoverStateLayerOpacity:t.extend("--ft-button-tertiary-brand-hover-state-layer-opacity","",r.opacity8),tertiaryBrandFocusStateLayerOpacity:t.extend("--ft-button-tertiary-brand-focus-state-layer-opacity","",r.opacity8),tertiaryBrandActiveStateLayerOpacity:t.extend("--ft-button-tertiary-brand-active-state-layer-opacity","",r.opacity16),tertiaryBrandDisabledComponentOpacity:t.extend("--ft-button-tertiary-brand-disabled-component-opacity","",r.opacity40),tertiaryInfoBackgroundColor:t.create("--ft-button-tertiary-info-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryInfoColor:t.extend("--ft-button-tertiary-info-color","",n.contentInfoPrimary),tertiaryInfoIconColor:t.extend("--ft-button-tertiary-info-icon-color","",n.contentInfoPrimary),tertiaryInfoStateLayerColor:t.extend("--ft-button-tertiary-info-state-layer-color","",n.contentInfoPrimary),tertiaryInfoFocusStateLayerOpacity:t.extend("--ft-button-tertiary-info-focus-state-layer-opacity","",r.opacity8),tertiaryInfoHoverStateLayerOpacity:t.extend("--ft-button-tertiary-info-hover-state-layer-opacity","",r.opacity8),tertiaryInfoActiveStateLayerOpacity:t.extend("--ft-button-tertiary-info-active-state-layer-opacity","",r.opacity16),tertiaryInfoDisabledComponentOpacity:t.extend("--ft-button-tertiary-info-disabled-component-opacity","",r.opacity40),tertiarySuccessBackgroundColor:t.create("--ft-button-tertiary-success-background-color","","COLOR","rgba(0,0,0,0)"),tertiarySuccessColor:t.extend("--ft-button-tertiary-success-color","",n.contentSuccessPrimary),tertiarySuccessIconColor:t.extend("--ft-button-tertiary-success-icon-color","",n.contentSuccessPrimary),tertiarySuccessStateLayerColor:t.extend("--ft-button-tertiary-success-state-layer-color","",n.contentSuccessPrimary),tertiarySuccessHoverStateLayerOpacity:t.extend("--ft-button-tertiary-success-hover-state-layer-opacity","",r.opacity8),tertiarySuccessFocusStateLayerOpacity:t.extend("--ft-button-tertiary-success-focus-state-layer-opacity","",r.opacity8),tertiarySuccessActiveStateLayerOpacity:t.extend("--ft-button-tertiary-success-active-state-layer-opacity","",r.opacity16),tertiarySuccessDisabledComponentOpacity:t.extend("--ft-button-tertiary-success-disabled-component-opacity","",r.opacity40),tertiaryWarningBackgroundColor:t.create("--ft-button-tertiary-warning-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryWarningColor:t.extend("--ft-button-tertiary-warning-color","",n.contentWarningPrimary),tertiaryWarningIconColor:t.extend("--ft-button-tertiary-warning-icon-color","",n.contentWarningPrimary),tertiaryWarningStateLayerColor:t.extend("--ft-button-tertiary-warning-state-layer-color","",n.contentWarningPrimary),tertiaryWarningHoverStateLayerOpacity:t.extend("--ft-button-tertiary-warning-hover-state-layer-opacity","",r.opacity8),tertiaryWarningFocusStateLayerOpacity:t.extend("--ft-button-tertiary-warning-focus-state-layer-opacity","",r.opacity8),tertiaryWarningActiveStateLayerOpacity:t.extend("--ft-button-tertiary-warning-active-state-layer-opacity","",r.opacity16),tertiaryWarningDisabledComponentOpacity:t.extend("--ft-button-tertiary-warning-disabled-component-opacity","",r.opacity40),tertiaryErrorBackgroundColor:t.create("--ft-button-tertiary-error-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryErrorColor:t.extend("--ft-button-tertiary-error-color","",n.contentErrorPrimary),tertiaryErrorIconColor:t.extend("--ft-button-tertiary-error-icon-color","",n.contentErrorPrimary),tertiaryErrorStateLayerColor:t.extend("--ft-button-tertiary-error-state-layer-color","",n.contentErrorPrimary),tertiaryErrorHoverStateLayerOpacity:t.extend("--ft-button-tertiary-error-hover-state-layer-opacity","",r.opacity8),tertiaryErrorFocusStateLayerOpacity:t.extend("--ft-button-tertiary-error-focus-state-layer-opacity","",r.opacity8),tertiaryErrorActiveStateLayerOpacity:t.extend("--ft-button-tertiary-error-active-state-layer-opacity","",r.opacity16),tertiaryErrorDisabledComponentOpacity:t.extend("--ft-button-tertiary-error-disabled-component-opacity","",r.opacity40),tertiaryNeutralBackgroundColor:t.create("--ft-button-tertiary-neutral-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryNeutralIconColor:t.extend("--ft-button-tertiary-neutral-icon-color","",n.contentGlobalSecondary),tertiaryNeutralColor:t.extend("--ft-button-tertiary-neutral-color","",n.contentGlobalSecondary),tertiaryNeutralStateLayerColor:t.extend("--ft-button-tertiary-neutral-state-layer-color","",n.contentGlobalSecondary),tertiaryNeutralHoverStateLayerOpacity:t.extend("--ft-button-tertiary-neutral-hover-state-layer-opacity","",r.opacity8),tertiaryNeutralFocusStateLayerOpacity:t.extend("--ft-button-tertiary-neutral-focus-state-layer-opacity","",r.opacity8),tertiaryNeutralActiveStateLayerOpacity:t.extend("--ft-button-tertiary-neutral-active-state-layer-opacity","",r.opacity16),tertiaryNeutralDisabledComponentOpacity:t.extend("--ft-button-tertiary-neutral-disabled-component-opacity","",r.opacity40),secondaryBrandBackgroundColor:t.create("--ft-button-secondary-brand-background-color","","COLOR","rgba(0,0,0,0)"),secondaryBrandColor:t.extend("--ft-button-secondary-brand-color","",n.contentActionPrimary),secondaryBrandIconColor:t.extend("--ft-button-secondary-brand-icon-color","",n.contentActionPrimary),secondaryBrandStateLayerColor:t.extend("--ft-button-secondary-brand-state-layer-color","",n.contentActionPrimary),secondaryBrandHoverStateLayerOpacity:t.extend("--ft-button-secondary-brand-hover-state-layer-opacity","",r.opacity8),secondaryBrandFocusStateLayerOpacity:t.extend("--ft-button-secondary-brand-focus-state-layer-opacity","",r.opacity8),secondaryBrandActiveStateLayerOpacity:t.extend("--ft-button-secondary-brand-active-state-layer-opacity","",r.opacity16),secondaryBrandDisabledComponentOpacity:t.extend("--ft-button-secondary-brand-disabled-component-opacity","",r.opacity40),secondaryBrandBorderColor:t.extend("--ft-button-secondary-brand-border-color","",n.borderActionPrimary),secondaryNeutralHoverStateLayerOpacity:t.extend("--ft-button-secondary-neutral-hover-state-layer-opacity","",r.opacity8),secondaryNeutralFocusStateLayerOpacity:t.extend("--ft-button-secondary-neutral-focus-state-layer-opacity","",r.opacity8),secondaryNeutralActiveStateLayerOpacity:t.extend("--ft-button-secondary-neutral-active-state-layer-opacity","",r.opacity16),secondaryNeutralDisabledComponentOpacity:t.extend("--ft-button-secondary-neutral-disabled-component-opacity","",r.opacity40),secondaryNeutralBackgroundColor:t.create("--ft-button-secondary-neutral-background-color","","COLOR","rgba(0,0,0,0)"),secondaryNeutralColor:t.extend("--ft-button-secondary-neutral-color","",n.contentGlobalSecondary),secondaryNeutralIconColor:t.extend("--ft-button-secondary-neutral-icon-color","",n.contentGlobalSecondary),secondaryNeutralStateLayerColor:t.extend("--ft-button-secondary-neutral-state-layer-color","",n.contentGlobalSecondary),secondaryNeutralBorderColor:t.extend("--ft-button-secondary-neutral-border-color","",n.borderNeutralPrimary),secondaryInfoHoverStateLayerOpacity:t.extend("--ft-button-secondary-info-hover-state-layer-opacity","",r.opacity8),secondaryInfoFocusStateLayerOpacity:t.extend("--ft-button-secondary-info-focus-state-layer-opacity","",r.opacity8),secondaryInfoActiveStateLayerOpacity:t.extend("--ft-button-secondary-info-active-state-layer-opacity","",r.opacity16),secondaryInfoDisabledComponentOpacity:t.extend("--ft-button-secondary-info-disabled-component-opacity","",r.opacity40),secondaryInfoBackgroundColor:t.create("--ft-button-secondary-info-background-color","","COLOR","rgba(0,0,0,0)"),secondaryInfoBorderColor:t.extend("--ft-button-secondary-info-border-color","",n.borderInfoPrimary),secondaryInfoColor:t.extend("--ft-button-secondary-info-color","",n.contentInfoPrimary),secondaryInfoIconColor:t.extend("--ft-button-secondary-info-icon-color","",n.contentInfoPrimary),secondaryInfoStateLayerColor:t.extend("--ft-button-secondary-info-state-layer-color","",n.contentInfoPrimary),secondarySuccessHoverStateLayerOpacity:t.extend("--ft-button-secondary-success-hover-state-layer-opacity","",r.opacity8),secondarySuccessFocusStateLayerOpacity:t.extend("--ft-button-secondary-success-focus-state-layer-opacity","",r.opacity8),secondarySuccessActiveStateLayerOpacity:t.extend("--ft-button-secondary-success-active-state-layer-opacity","",r.opacity16),secondarySuccessDisabledComponentOpacity:t.extend("--ft-button-secondary-success-disabled-component-opacity","",r.opacity40),secondarySuccessBackgroundColor:t.create("--ft-button-secondary-success-background-color","","COLOR","rgba(0,0,0,0)"),secondarySuccessBorderColor:t.extend("--ft-button-secondary-success-border-color","",n.borderSuccessPrimary),secondarySuccessColor:t.extend("--ft-button-secondary-success-color","",n.contentSuccessPrimary),secondarySuccessIconColor:t.extend("--ft-button-secondary-success-icon-color","",n.contentSuccessPrimary),secondarySuccessStateLayerColor:t.extend("--ft-button-secondary-success-state-layer-color","",n.contentSuccessPrimary),secondaryWarningHoverStateLayerOpacity:t.extend("--ft-button-secondary-warning-hover-state-layer-opacity","",r.opacity8),secondaryWarningFocusStateLayerOpacity:t.extend("--ft-button-secondary-warning-focus-state-layer-opacity","",r.opacity8),secondaryWarningActiveStateLayerOpacity:t.extend("--ft-button-secondary-warning-active-state-layer-opacity","",r.opacity16),secondaryWarningDisabledComponentOpacity:t.extend("--ft-button-secondary-warning-disabled-component-opacity","",r.opacity40),secondaryWarningBackgroundColor:t.create("--ft-button-secondary-warning-background-color","","COLOR","rgba(0,0,0,0)"),secondaryWarningBorderColor:t.extend("--ft-button-secondary-warning-border-color","",n.borderWarningPrimary),secondaryWarningColor:t.extend("--ft-button-secondary-warning-color","",n.contentWarningPrimary),secondaryWarningIconColor:t.extend("--ft-button-secondary-warning-icon-color","",n.contentWarningPrimary),secondaryWarningStateLayerColor:t.extend("--ft-button-secondary-warning-state-layer-color","",n.contentWarningPrimary),secondaryErrorHoverStateLayerOpacity:t.extend("--ft-button-secondary-error-hover-state-layer-opacity","",r.opacity8),secondaryErrorFocusStateLayerOpacity:t.extend("--ft-button-secondary-error-focus-state-layer-opacity","",r.opacity8),secondaryErrorActiveStateLayerOpacity:t.extend("--ft-button-secondary-error-active-state-layer-opacity","",r.opacity16),secondaryErrorDisabledComponentOpacity:t.extend("--ft-button-secondary-error-disabled-component-opacity","",r.opacity40),secondaryErrorBackgroundColor:t.create("--ft-button-secondary-error-background-color","","COLOR","rgba(0,0,0,0)"),secondaryErrorBorderColor:t.extend("--ft-button-secondary-error-border-color","",n.contentErrorPrimary),secondaryErrorColor:t.extend("--ft-button-secondary-error-color","",n.contentErrorPrimary),secondaryErrorIconColor:t.extend("--ft-button-secondary-error-icon-color","",n.contentErrorPrimary),secondaryErrorStateLayerColor:t.extend("--ft-button-secondary-error-state-layer-color","",n.contentErrorPrimary)};var ti={neutralOffHoverStateLayerOpacity:t.extend("--ft-chip-choice-neutral-off-hover-state-layer-opacity","",r.opacity8),neutralOffFocusStateLayerOpacity:t.extend("--ft-chip-choice-neutral-off-focus-state-layer-opacity","",r.opacity8),neutralOffFocusFocusRingColor:t.extend("--ft-chip-choice-neutral-off-focus-focus-ring-color","",n.borderActionFocusRing),neutralOffActiveStateLayerOpacity:t.extend("--ft-chip-choice-neutral-off-active-state-layer-opacity","",r.opacity16),neutralOffBackgroundColor:t.extend("--ft-chip-choice-neutral-off-background-color","",n.backgroundGlobalOnSurface),neutralOffBorderColor:t.extend("--ft-chip-choice-neutral-off-border-color","",n.borderGlobalPrimary),neutralOffColor:t.extend("--ft-chip-choice-neutral-off-color","",n.contentGlobalSecondary),neutralOffStateLayerColor:t.extend("--ft-chip-choice-neutral-off-state-layer-color","",n.contentGlobalSecondary),neutralOnDefaultStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-default-state-layer-opacity","",r.opacity16),neutralOnHoverStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-hover-state-layer-opacity","",r.opacity24),neutralOnFocusStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-focus-state-layer-opacity","",r.opacity24),neutralOnFocusFocusRingColor:t.extend("--ft-chip-choice-neutral-on-focus-focus-ring-color","",n.borderActionFocusRing),neutralOnActiveStateLayerOpacity:t.extend("--ft-chip-choice-neutral-on-active-state-layer-opacity","",r.opacity32),neutralOnBackgroundColor:t.extend("--ft-chip-choice-neutral-on-background-color","",n.backgroundGlobalOnSurface),neutralOnBorderColor:t.extend("--ft-chip-choice-neutral-on-border-color","",n.borderGlobalPrimary),neutralOnColor:t.extend("--ft-chip-choice-neutral-on-color","",n.contentGlobalPrimary),neutralOnIconColor:t.extend("--ft-chip-choice-neutral-on-icon-color","",n.contentGlobalPrimary),neutralOnStateLayerColor:t.extend("--ft-chip-choice-neutral-on-state-layer-color","",n.contentGlobalPrimary),largeMinHeight:t.create("--ft-chip-choice-large-min-height","","SIZE","36px"),largeHorizontalPadding:t.extend("--ft-chip-choice-large-horizontal-padding","",r.spacing3),largeGap:t.extend("--ft-chip-choice-large-gap","",r.spacing1),largeBorderRadius:t.create("--ft-chip-choice-large-border-radius","","SIZE","18px"),largeBorderWidth:t.create("--ft-chip-choice-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-choice-large-icon-size","",r.iconSize3),mediumMinHeight:t.create("--ft-chip-choice-medium-min-height","","SIZE","24px"),mediumHorizontalPadding:t.extend("--ft-chip-choice-medium-horizontal-padding","",r.spacing2),mediumGap:t.extend("--ft-chip-choice-medium-gap","",r.spacing1),mediumBorderRadius:t.create("--ft-chip-choice-medium-border-radius","","SIZE","12px"),mediumBorderWidth:t.create("--ft-chip-choice-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-choice-medium-icon-size","",r.iconSize2)};var ni={largeMinHeight:t.create("--ft-chip-large-min-height","","SIZE","36px"),largeHorizontalPadding:t.extend("--ft-chip-large-horizontal-padding","",r.spacing3),largeButtonRightPadding:t.extend("--ft-chip-large-button-right-padding","",r.spacing1),largeGap:t.extend("--ft-chip-large-gap","",r.spacing1),largeFocusOutlineOffset:t.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:t.create("--ft-chip-large-border-radius","","SIZE","18px"),largeBorderWidth:t.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-large-icon-size","",r.iconSize3),mediumMinHeight:t.create("--ft-chip-medium-min-height","","SIZE","24px"),mediumHorizontalPadding:t.extend("--ft-chip-medium-horizontal-padding","",r.spacing2),mediumButtonRightPadding:t.extend("--ft-chip-medium-button-right-padding","",r.spacing05),mediumGap:t.extend("--ft-chip-medium-gap","",r.spacing1),mediumFocusOutlineOffset:t.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:t.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:t.create("--ft-chip-medium-border-radius","","SIZE","12px"),mediumBorderWidth:t.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-medium-icon-size","",r.iconSize2),smallMinHeight:t.create("--ft-chip-small-min-height","","SIZE","20px"),smallHorizontalPadding:t.extend("--ft-chip-small-horizontal-padding","",r.spacing1),smallButtonRightPadding:t.extend("--ft-chip-small-button-right-padding","",r.spacing05),smallGap:t.extend("--ft-chip-small-gap","",r.spacing1),smallFocusOutlineOffset:t.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:t.create("--ft-chip-small-border-radius","","SIZE","10px"),smallBorderWidth:t.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:t.extend("--ft-chip-small-icon-size","",r.iconSize1),neutralBackgroundColor:t.extend("--ft-chip-neutral-background-color","",n.backgroundGlobalOnSurface),neutralColor:t.extend("--ft-chip-neutral-color","",n.contentGlobalSecondary),neutralIconColor:t.extend("--ft-chip-neutral-icon-color","",n.contentGlobalSecondary),neutralBorderColor:t.extend("--ft-chip-neutral-border-color","",n.borderGlobalSubtle),infoBackgroundColor:t.extend("--ft-chip-info-background-color","",n.backgroundInfoSubtle),infoColor:t.extend("--ft-chip-info-color","",n.contentInfoPrimary),infoIconColor:t.extend("--ft-chip-info-icon-color","",n.contentInfoIconOnly),infoBorderColor:t.extend("--ft-chip-info-border-color","",n.borderInfoSubtle),successBackgroundColor:t.extend("--ft-chip-success-background-color","",n.backgroundSuccessSubtle),successColor:t.extend("--ft-chip-success-color","",n.contentSuccessPrimary),successIconColor:t.extend("--ft-chip-success-icon-color","",n.contentSuccessIconOnly),successBorderColor:t.extend("--ft-chip-success-border-color","",n.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-chip-warning-background-color","",n.backgroundWarningSubtle),warningColor:t.extend("--ft-chip-warning-color","",n.contentWarningPrimary),warningIconColor:t.extend("--ft-chip-warning-icon-color","",n.contentWarningIconOnly),warningBorderColor:t.extend("--ft-chip-warning-border-color","",n.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-chip-error-background-color","",n.backgroundErrorSubtle),errorColor:t.extend("--ft-chip-error-color","",n.contentErrorPrimary),errorIconColor:t.extend("--ft-chip-error-icon-color","",n.contentErrorIconOnly),errorBorderColor:t.extend("--ft-chip-error-border-color","",n.borderErrorSubtle)};var di={brandHoverOpacity:t.extend("--ft-link-brand-hover-opacity","",r.opacity80),brandHoverColor:t.extend("--ft-link-brand-hover-color","",n.contentActionPrimary),brandFocusFocusRingColor:t.extend("--ft-link-brand-focus-focus-ring-color","",n.borderActionFocusRing),brandFocusColor:t.extend("--ft-link-brand-focus-color","",n.contentActionPrimary),brandDefaultColor:t.extend("--ft-link-brand-default-color","",n.contentActionPrimary),brandActiveColor:t.extend("--ft-link-brand-active-color","",n.contentActionPrimary),infoHoverOpacity:t.extend("--ft-link-info-hover-opacity","",r.opacity80),infoHoverColor:t.extend("--ft-link-info-hover-color","",n.contentInfoPrimary),infoFocusFocusRingColor:t.extend("--ft-link-info-focus-focus-ring-color","",n.borderActionFocusRing),infoFocusColor:t.extend("--ft-link-info-focus-color","",n.contentInfoPrimary),infoDefaultColor:t.extend("--ft-link-info-default-color","",n.contentInfoPrimary),infoActiveColor:t.extend("--ft-link-info-active-color","",n.contentInfoPrimary),neutralFocusFocusRingColor:t.extend("--ft-link-neutral-focus-focus-ring-color","",n.borderActionFocusRing),neutralFocusColor:t.extend("--ft-link-neutral-focus-color","",n.contentActionPrimary),neutralDefaultColor:t.extend("--ft-link-neutral-default-color","",n.contentGlobalPrimary),neutralHoverColor:t.extend("--ft-link-neutral-hover-color","",n.contentActionPrimary),neutralActiveColor:t.extend("--ft-link-neutral-active-color","",n.contentActionPrimary),neutralVisitedColor:t.extend("--ft-link-neutral-visited-color","",r.colorBrand100)};var gi={iconSize:t.extend("--ft-banner-icon-size","",r.iconSize5),borderWidth:t.create("--ft-banner-border-width","","SIZE","1px"),leftPadding:t.extend("--ft-banner-left-padding","",r.spacing6),rightPadding:t.extend("--ft-banner-right-padding","",r.spacing6),verticalPadding:t.extend("--ft-banner-vertical-padding","",r.spacing6),horizontalSideGap:t.extend("--ft-banner-horizontal-side-gap","",r.spacing6),horizontalMobileGap:t.extend("--ft-banner-horizontal-mobile-gap","",r.spacing4),verticalMobileGap:t.extend("--ft-banner-vertical-mobile-gap","",r.spacing6),horizontalMiddleGap:t.extend("--ft-banner-horizontal-middle-gap","",r.spacing20),infoBackgroundColor:t.extend("--ft-banner-info-background-color","",n.backgroundInfoSubtle),infoColor:t.extend("--ft-banner-info-color","",n.contentInfoPrimary),infoIconColor:t.extend("--ft-banner-info-icon-color","",n.contentInfoIconOnly),infoBorderColor:t.extend("--ft-banner-info-border-color","",n.borderInfoSubtle)};var Si={horizontalPadding:t.extend("--ft-badge-horizontal-padding","",r.spacing1),verticalPadding:t.extend("--ft-badge-vertical-padding","",r.spacing1),borderRadius:t.extend("--ft-badge-border-radius","",r.borderRadiusPill),color:t.extend("--ft-badge-color","",n.contentGlobalOnColor),backgroundColor:t.extend("--ft-badge-background-color","",n.contentActionPrimary)};var Ei={horizontalGap:t.extend("--ft-breadcrumb-horizontal-gap","",r.spacing1),verticalGap:t.extend("--ft-breadcrumb-vertical-gap","",r.spacing2),currentColor:t.extend("--ft-breadcrumb-current-color","",n.contentGlobalPrimary),previousNonClickableColor:t.extend("--ft-breadcrumb-previous-non-clickable-color","",n.contentGlobalSecondary),iconColor:t.extend("--ft-breadcrumb-icon-color","",n.contentGlobalSubtle)};var $i={horizontalPadding:t.extend("--ft-page-header-horizontal-padding","",r.spacing6),horizontalGap:t.extend("--ft-page-header-horizontal-gap","",r.spacing4),verticalGap:t.extend("--ft-page-header-vertical-gap","",r.spacing2),classicVerticalPadding:t.extend("--ft-page-header-classic-vertical-padding","",r.spacing6),multilineVerticalPadding:t.extend("--ft-page-header-multiline-vertical-padding","",r.spacing4),inlineVerticalPadding:t.extend("--ft-page-header-inline-vertical-padding","",r.spacing2),backgroundColor:t.extend("--ft-page-header-background-color","",r.colorWhite),bottomBorderColor:t.extend("--ft-page-header-bottom-border-color","",n.borderGlobalSubtle),titleColor:t.extend("--ft-page-header-title-color","",n.contentGlobalPrimary),subtitleColor:t.extend("--ft-page-header-subtitle-color","",n.contentGlobalSecondary)};var Ti={smallContainerTargetWidth:t.create("--ft-modal-small-container-target-width","","SIZE","560px"),smallContainerMargin:t.extend("--ft-modal-small-container-margin","",r.spacing6),mediumContainerTargetWidth:t.create("--ft-modal-medium-container-target-width","","SIZE","800px"),mediumContainerMargin:t.extend("--ft-modal-medium-container-margin","",r.spacing6),largeContainerTargetWidth:t.create("--ft-modal-large-container-target-width","","SIZE","1040px"),largeContainerMargin:t.extend("--ft-modal-large-container-margin","",r.spacing6),overlayBackgroundColor:t.extend("--ft-modal-overlay-background-color","",r.colorGray700),overlayOpacity:t.extend("--ft-modal-overlay-opacity","",r.opacity40),shadow:t.extend("--ft-modal-shadow","",r.shadowElevation03),bodyBackgroundColor:t.extend("--ft-modal-body-background-color","",r.colorWhite),bodyColor:t.extend("--ft-modal-body-color","",n.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-modal-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:t.extend("--ft-modal-body-vertical-padding","",r.spacing6),bodyVerticalGap:t.extend("--ft-modal-body-vertical-gap","",r.spacing6),headerBackgroundColor:t.extend("--ft-modal-header-background-color","",n.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-modal-header-border-color","",n.borderGlobalSubtle),headerColor:t.extend("--ft-modal-header-color","",n.contentGlobalPrimary),headerLeadingIconColor:t.extend("--ft-modal-header-leading-icon-color","",n.contentGlobalPrimary),headerVerticalPadding:t.extend("--ft-modal-header-vertical-padding","",r.spacing1),headerRightPadding:t.extend("--ft-modal-header-right-padding","",r.spacing1),headerLeftPadding:t.extend("--ft-modal-header-left-padding","",r.spacing6),headerGap:t.extend("--ft-modal-header-gap","",r.spacing2),headerBorderBottomWidth:t.create("--ft-modal-header-border-bottom-width","","SIZE","1px"),borderRadius:t.extend("--ft-modal-border-radius","",r.borderRadiusM)};var Di={overlayOpacity:t.extend("--ft-drawer-overlay-opacity","",r.opacity40),shadow:t.extend("--ft-drawer-shadow","",r.shadowElevation03),bodyColor:t.extend("--ft-drawer-body-color","",n.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-drawer-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:t.extend("--ft-drawer-body-vertical-padding","",r.spacing6),bodyGap:t.extend("--ft-drawer-body-gap","",r.spacing6),bodyBackgroundColor:t.extend("--ft-drawer-body-background-color","",r.colorWhite),headerBackgroundColor:t.extend("--ft-drawer-header-background-color","",n.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-drawer-header-border-color","",n.borderGlobalSubtle),headerColor:t.extend("--ft-drawer-header-color","",n.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-drawer-header-trailing-icon-color","",n.contentGlobalSecondary),headerHeight:t.create("--ft-drawer-header-height","","SIZE","50px"),headerHorizontalPadding:t.extend("--ft-drawer-header-horizontal-padding","",r.spacing2),headerBorderWidth:t.create("--ft-drawer-header-border-width","","SIZE","1px"),headerGap:t.extend("--ft-drawer-header-gap","",r.spacing3),buttonsBarBackgroundColor:t.extend("--ft-drawer-buttons-bar-background-color","",n.backgroundGlobalOnSurface),buttonsBarBorderColor:t.extend("--ft-drawer-buttons-bar-border-color","",n.borderGlobalSubtle),buttonsBarColor:t.extend("--ft-drawer-buttons-bar-color","",n.contentGlobalPrimary),buttonsBarHorizontalPadding:t.extend("--ft-drawer-buttons-bar-horizontal-padding","",r.spacing6),buttonsBarVerticalPadding:t.extend("--ft-drawer-buttons-bar-vertical-padding","",r.spacing4),buttonsBarGap:t.extend("--ft-drawer-buttons-bar-gap","",r.spacing3),buttonsBarBorderWidth:t.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),containerWidth:t.create("--ft-drawer-container-width","","SIZE","66%"),containerMinWidth:t.create("--ft-drawer-container-min-width","","SIZE","500px"),containerMaxWidth:t.create("--ft-drawer-container-max-width","","SIZE","1000px"),containerHeight:t.create("--ft-drawer-container-height","","SIZE","100%"),overlayBackgroundColor:t.extend("--ft-drawer-overlay-background-color","",r.colorGray700)};var Fi={offBorderBottomWidth:t.create("--ft-tabs-off-border-bottom-width","","SIZE","1px"),offHoverStateLayerOpacity:t.extend("--ft-tabs-off-hover-state-layer-opacity","",r.opacity8),offDefaultStateLayerOpacity:t.extend("--ft-tabs-off-default-state-layer-opacity","",r.opacity0),offFocusStateLayerOpacity:t.extend("--ft-tabs-off-focus-state-layer-opacity","",r.opacity8),offDisabledComponentOpacity:t.extend("--ft-tabs-off-disabled-component-opacity","",r.opacity40),offColor:t.extend("--ft-tabs-off-color","",n.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-tabs-off-state-layer-color","",n.contentGlobalSubtle),offBorderBottomColor:t.extend("--ft-tabs-off-border-bottom-color","",n.borderGlobalSubtle),activeTabIndicatorHeight:t.create("--ft-tabs-active-tab-indicator-height","","SIZE","3px"),topLeftBorderRadius:t.extend("--ft-tabs-top-left-border-radius","",r.borderRadiusS),topRightBorderRadius:t.extend("--ft-tabs-top-right-border-radius","",r.borderRadiusS),withLabelHorizontalPadding:t.extend("--ft-tabs-with-label-horizontal-padding","",r.spacing4),withLabelVerticalPadding:t.extend("--ft-tabs-with-label-vertical-padding","",r.spacing3),horizontalGap:t.extend("--ft-tabs-horizontal-gap","",r.spacing1),verticalGap:t.extend("--ft-tabs-vertical-gap","",r.spacing1),onHoverStateLayerOpacity:t.extend("--ft-tabs-on-hover-state-layer-opacity","",r.opacity16),onDefaultStateLayerOpacity:t.extend("--ft-tabs-on-default-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:t.extend("--ft-tabs-on-focus-state-layer-opacity","",r.opacity16),onActiveStateLayerOpacity:t.extend("--ft-tabs-on-active-state-layer-opacity","",r.opacity24),onColor:t.extend("--ft-tabs-on-color","",n.contentActionPrimary),onStateLayerColor:t.extend("--ft-tabs-on-state-layer-color","",n.contentActionPrimary),onActiveTabIndicatorColor:t.extend("--ft-tabs-on-active-tab-indicator-color","",n.contentActionPrimary),iconOnlyHorizontalPadding:t.extend("--ft-tabs-icon-only-horizontal-padding","",r.spacing4),iconOnlyVerticalPadding:t.extend("--ft-tabs-icon-only-vertical-padding","",r.spacing4),alertTopPadding:t.extend("--ft-tabs-alert-top-padding","",r.spacing1),alertRightPadding:t.extend("--ft-tabs-alert-right-padding","",r.spacing05),focusOutlineWidth:t.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-tabs-focus-focus-ring-color","",n.borderActionFocusRing)};var Xi={fieldHorizontalPadding:t.extend("--ft-text-input-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-text-input-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-text-input-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-text-input-field-icon-size","",r.iconSize3),fieldHeight:t.create("--ft-text-input-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-text-input-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-text-input-helper-horizontal-gap","",r.spacing1),helperIconSize:t.extend("--ft-text-input-helper-icon-size","",r.iconSize2),borderRadius:t.extend("--ft-text-input-border-radius","",r.borderRadiusM),backgroundColor:t.extend("--ft-text-input-background-color","",r.colorWhite),contentValueColor:t.extend("--ft-text-input-content-value-color","",n.contentGlobalPrimary),trailingIconColor:t.extend("--ft-text-input-trailing-icon-color","",n.contentGlobalSubtle),labelColor:t.extend("--ft-text-input-label-color","",n.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-input-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-input-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-input-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-input-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-input-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-input-error-helper-text-color","",n.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-input-error-helper-icon-color","",n.contentErrorIconOnly),warningBorderWidth:t.create("--ft-text-input-warning-border-width","","SIZE","2px"),focusOutlineWidth:t.create("--ft-text-input-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-text-input-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:t.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-input-disabled-component-opacity","",r.opacity40)};var ec={backgroundColor:t.extend("--ft-text-area-background-color","",r.colorWhite),contentValueColor:t.extend("--ft-text-area-content-value-color","",n.contentGlobalPrimary),labelColor:t.extend("--ft-text-area-label-color","",n.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-area-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-area-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-area-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-area-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-area-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-area-error-helper-text-color","",n.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-area-error-helper-icon-color","",n.contentErrorIconOnly),focusFocusRingColor:t.extend("--ft-text-area-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineWidth:t.create("--ft-text-area-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-area-disabled-component-opacity","",r.opacity40),fieldHorizontalLeftPadding:t.extend("--ft-text-area-field-horizontal-left-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-text-area-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-text-area-field-vertical-gap","",r.spacing05),fieldMinHeight:t.create("--ft-text-area-field-min-height","","SIZE","64px"),helperHorizontalPadding:t.extend("--ft-text-area-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-text-area-helper-horizontal-gap","",r.spacing1),helperIconSize:t.extend("--ft-text-area-helper-icon-size","",r.iconSize2),borderRadius:t.extend("--ft-text-area-border-radius","",r.borderRadiusM)};var ic={height:t.create("--ft-floating-menu-height","","SIZE","50px"),horizontalPadding:t.extend("--ft-floating-menu-horizontal-padding","",r.spacing4),offIconColor:t.extend("--ft-floating-menu-off-icon-color","",n.contentGlobalPrimary),offColor:t.extend("--ft-floating-menu-off-color","",n.contentGlobalPrimary),onColor:t.extend("--ft-floating-menu-on-color","",n.contentActionPrimary),onStateLayerColor:t.extend("--ft-floating-menu-on-state-layer-color","",n.contentActionPrimary),gap:t.extend("--ft-floating-menu-gap","",r.spacing3),focusFocusRingColor:t.extend("--ft-floating-menu-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineWidth:t.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),focusStateLayerOpacity:t.extend("--ft-floating-menu-focus-state-layer-opacity","",r.opacity8),hoverStateLayerOpacity:t.extend("--ft-floating-menu-hover-state-layer-opacity","",r.opacity8),activeStateLayerOpacity:t.extend("--ft-floating-menu-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:t.extend("--ft-floating-menu-disabled-component-opacity","",r.opacity40),iconSize:t.extend("--ft-floating-menu-icon-size","",r.iconSize3),backgroundColor:t.extend("--ft-floating-menu-background-color","",n.backgroundGlobalOnSurface),shadow:t.extend("--ft-floating-menu-shadow","",r.shadowElevation02)};var pc={fieldHorizontalPadding:t.extend("--ft-combobox-single-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-single-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-combobox-single-select-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-combobox-single-select-field-icon-size","",r.iconSize3),fieldHeight:t.create("--ft-combobox-single-select-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-combobox-single-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-combobox-single-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:t.extend("--ft-combobox-single-select-helper-vertical-gap","",r.spacing1),helperIconSize:t.extend("--ft-combobox-single-select-helper-icon-size","",r.iconSize2),menuVerticalGap:t.extend("--ft-combobox-single-select-menu-vertical-gap","",r.spacing2),borderRadius:t.extend("--ft-combobox-single-select-border-radius","",r.borderRadiusM),backgroundColor:t.extend("--ft-combobox-single-select-background-color","",r.colorWhite),labelColor:t.extend("--ft-combobox-single-select-label-color","",n.contentGlobalSubtle),contentValueColor:t.extend("--ft-combobox-single-select-content-value-color","",n.contentGlobalPrimary),trailingIconColor:t.extend("--ft-combobox-single-select-trailing-icon-color","",n.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-single-select-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-single-select-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-combobox-single-select-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-single-select-error-helper-text-color","",n.contentErrorPrimary),warningBorderWidth:t.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-single-select-warning-border-color","",n.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-single-select-warning-helper-text-color","",n.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-single-select-warning-helper-icon-color","",n.contentWarningIconOnly),focusOutlineWidth:t.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-single-select-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:t.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-single-select-disabled-component-opacity","",r.opacity40)};var hc={backgroundColor:t.extend("--ft-combobox-multi-select-background-color","",r.colorWhite),labelColor:t.extend("--ft-combobox-multi-select-label-color","",n.contentGlobalSubtle),trailingIconColor:t.extend("--ft-combobox-multi-select-trailing-icon-color","",n.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-multi-select-default-border-color","",n.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-multi-select-default-helper-text-color","",n.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),errorBorderColor:t.extend("--ft-combobox-multi-select-error-border-color","",n.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-multi-select-error-helper-text-color","",n.contentErrorPrimary),errorHelperIcon:t.extend("--ft-combobox-multi-select-error-helper-icon","",n.contentErrorIconOnly),errorBorderWidth:t.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-multi-select-warning-border-color","",n.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-multi-select-warning-helper-text-color","",n.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-multi-select-warning-helper-icon-color","",n.contentWarningIconOnly),warningBorderWidth:t.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-multi-select-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineWidth:t.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-multi-select-disabled-component-opacity","",r.opacity40),helperHorizontalPadding:t.extend("--ft-combobox-multi-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-combobox-multi-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:t.extend("--ft-combobox-multi-select-helper-vertical-gap","",r.spacing1),helperIconSize:t.extend("--ft-combobox-multi-select-helper-icon-size","",r.iconSize2),fieldHorizontalPadding:t.extend("--ft-combobox-multi-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-multi-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-combobox-multi-select-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-combobox-multi-select-field-icon-size","",r.iconSize3),fieldMaxHeight:t.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),contentValuesHorizontalGap:t.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",r.spacing1),contentValuesVerticalGap:t.extend("--ft-combobox-multi-select-content-values-vertical-gap","",r.spacing1),borderRadius:t.extend("--ft-combobox-multi-select-border-radius","",r.borderRadiusM)};var Oc={backgroundColor:t.extend("--ft-popover-background-color","",n.backgroundGlobalOnSurface),horizontalPadding:t.extend("--ft-popover-horizontal-padding","",r.spacing6),verticalPadding:t.extend("--ft-popover-vertical-padding","",r.spacing6),titleColor:t.extend("--ft-popover-title-color","",n.contentGlobalPrimary),bodyColor:t.extend("--ft-popover-body-color","",n.contentGlobalSecondary),linkColor:t.extend("--ft-popover-link-color","",n.contentActionPrimary),gap:t.extend("--ft-popover-gap","",r.spacing3),borderRadius:t.extend("--ft-popover-border-radius","",r.borderRadiusM),shadow:t.extend("--ft-popover-shadow","",r.shadowElevation02),maxWidth:t.create("--ft-popover-max-width","","SIZE","440px")};var wc={hoverStateLayerOpacity:t.extend("--ft-collapsible-hover-state-layer-opacity","",r.opacity8),focusStateLayerOpacity:t.extend("--ft-collapsible-focus-state-layer-opacity","",r.opacity8),focusOutlineWidth:t.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:t.extend("--ft-collapsible-focus-focus-ring-color","",n.borderActionFocusRing),activeStateLayerOpacity:t.extend("--ft-collapsible-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:t.extend("--ft-collapsible-disabled-component-opacity","",r.opacity40),horizontalPadding:t.extend("--ft-collapsible-horizontal-padding","",r.spacing4),verticalPadding:t.extend("--ft-collapsible-vertical-padding","",r.spacing3),color:t.extend("--ft-collapsible-color","",n.contentGlobalPrimary),stateLayerColor:t.extend("--ft-collapsible-state-layer-color","",n.contentGlobalPrimary),backgroundColor:t.extend("--ft-collapsible-background-color","",n.backgroundGlobalOnSurface),borderColor:t.extend("--ft-collapsible-border-color","",n.borderGlobalSubtle),iconSize:t.extend("--ft-collapsible-icon-size","",r.iconSize3)};var Ic={groupHorizontalPadding:t.extend("--ft-switch-group-horizontal-padding","",r.spacing1),groupVerticalPadding:t.extend("--ft-switch-group-vertical-padding","",r.spacing1),groupGap:t.extend("--ft-switch-group-gap","",r.spacing1),groupBackgroundColor:t.extend("--ft-switch-group-background-color","",n.backgroundGlobalSurface),groupBorderColor:t.extend("--ft-switch-group-border-color","",n.borderGlobalSubtle),groupBorderRadius:t.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:t.extend("--ft-switch-label-horizontal-padding","",r.spacing2),labelVerticalPadding:t.extend("--ft-switch-label-vertical-padding","",r.spacing1),offHoverStateLayerOpacity:t.extend("--ft-switch-off-hover-state-layer-opacity","",r.opacity8),offFocusStateLayerOpacity:t.extend("--ft-switch-off-focus-state-layer-opacity","",r.opacity8),offActiveStateLayerOpacity:t.extend("--ft-switch-off-active-state-layer-opacity","",r.opacity16),offDisabledComponentOpacity:t.extend("--ft-switch-off-disabled-component-opacity","",r.opacity40),offColor:t.extend("--ft-switch-off-color","",n.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-switch-off-state-layer-color","",n.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-switch-on-hover-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:t.extend("--ft-switch-on-focus-state-layer-opacity","",r.opacity8),onActiveStateLayerOpacity:t.extend("--ft-switch-on-active-state-layer-opacity","",r.opacity16),onDisabledComponentOpacity:t.extend("--ft-switch-on-disabled-component-opacity","",r.opacity40),onColor:t.extend("--ft-switch-on-color","",n.contentActionPrimary),onStateLayerColor:t.extend("--ft-switch-on-state-layer-color","",n.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-switch-icon-horizontal-padding","",r.spacing1),iconVerticalPadding:t.extend("--ft-switch-icon-vertical-padding","",r.spacing1),focusOutlineWidth:t.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-switch-focus-focus-ring-color","",n.borderActionFocusRing),optionBorderRadius:t.extend("--ft-switch-option-border-radius","",r.borderRadiusS)};var Tc={color1Light:t.extend("--ft-chart-1-light","for area color charts",r.colorBrand40),color1Base:t.extend("--ft-chart-1-base","for line charts",r.colorBrand0),color2Light:t.extend("--ft-chart-2-light","for area color charts",r.colorYellow60),color2Base:t.extend("--ft-chart-2-base","for line charts",r.colorYellow100),color3Light:t.extend("--ft-chart-3-light","",r.colorUltramarine40),color3Base:t.extend("--ft-chart-3-base","",r.colorUltramarine70),color4Light:t.extend("--ft-chart-4-light","",r.colorCyan50),color4Base:t.extend("--ft-chart-4-base","",r.colorCyan100),color5Light:t.extend("--ft-chart-5-light","",r.colorRed40),color5Base:t.extend("--ft-chart-5-base","",r.colorRed60),color6Light:t.extend("--ft-chart-6-light","",r.colorGreen40),color6Base:t.extend("--ft-chart-6-base","",r.colorGreen70),color7Light:t.extend("--ft-chart-7-light","",r.colorOrange70),color7Base:t.extend("--ft-chart-7-base","",r.colorOrange100),color8Light:t.extend("--ft-chart-8-light","",r.colorAvocado70),color8Base:t.extend("--ft-chart-8-base","",r.colorAvocado200),color9Light:t.extend("--ft-chart-9-light","",r.colorBrown50),color9Base:t.extend("--ft-chart-9-base","",r.colorBrown200),color10Light:t.extend("--ft-chart-10-light","",r.colorGray50),color10Base:t.extend("--ft-chart-10-base","",r.colorGray80),monochrome10:t.extend("--ft-chart-monochrome-10","",r.colorBrand10),monochrome20:t.extend("--ft-chart-monochrome-20","",r.colorBrand20),monochrome30:t.extend("--ft-chart-monochrome-30","",r.colorBrand40),monochrome40:t.extend("--ft-chart-monochrome-40","",r.colorBrand60),monochrome50:t.extend("--ft-chart-monochrome-50","",r.colorBrand0),monochrome60:t.extend("--ft-chart-monochrome-60","",r.colorBrand200)};var _c={color1IconColor:t.extend("--ft-page-designer-1-icon-color","for area color charts",r.colorCyan0),color1ToolbarColor:t.extend("--ft-page-designer-1-toolbar-color","for area color charts",r.colorCyan0),color2IconColor:t.extend("--ft-page-designer-2-icon-color","for area color charts",r.colorBrand0),color2ToolbarColor:t.extend("--ft-page-designer-2-toolbar-color","for area color charts",r.colorBrand0),color3IconColor:t.extend("--ft-page-designer-3-icon-color","for area color charts",r.colorYellow200),color3ToolbarColor:t.extend("--ft-page-designer-3-toolbar-color","for area color charts",r.colorYellow200),color4IconColor:t.extend("--ft-page-designer-4-icon-color","for area color charts",r.colorUltramarine50),color4ToolbarColor:t.extend("--ft-page-designer-4-toolbar-color","for area color charts",r.colorUltramarine50),color5IconColor:t.extend("--ft-page-designer-5-icon-color","for area color charts",r.colorGreen0),color5ToolbarColor:t.extend("--ft-page-designer-5-toolbar-color","for area color charts",r.colorGreen0),color6IconColor:t.extend("--ft-page-designer-6-icon-color","for area color charts",r.colorOrange0),color6ToolbarColor:t.extend("--ft-page-designer-6-toolbar-color","for area color charts",r.colorOrange0),color7IconColor:t.extend("--ft-page-designer-7-icon-color","for area color charts",r.colorAvocado200),color7ToolbarColor:t.extend("--ft-page-designer-7-toolbar-color","for area color charts",r.colorAvocado200),color8IconColor:t.extend("--ft-page-designer-8-icon-color","for area color charts",r.colorBrown0),color8ToolbarColor:t.extend("--ft-page-designer-8-toolbar-color","for area color charts",r.colorBrown0)};var Zc={borderWidth:t.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-notice-horizontal-padding","",r.spacing3),verticalPadding:t.extend("--ft-notice-vertical-padding","",r.spacing2),borderRadius:t.extend("--ft-notice-border-radius","",r.borderRadiusS),gap:t.extend("--ft-notice-gap","",r.spacing2),iconSize:t.extend("--ft-notice-icon-size","",r.iconSize3),infoBackgroundColor:t.extend("--ft-notice-info-background-color","",n.backgroundInfoSubtle),infoBorderColor:t.extend("--ft-notice-info-border-color","",n.borderInfoSubtle),infoColor:t.extend("--ft-notice-info-color","",n.contentInfoPrimary),infoIconColor:t.extend("--ft-notice-info-icon-color","",n.contentInfoIconOnly),warningBackgroundColor:t.extend("--ft-notice-warning-background-color","",n.backgroundWarningSubtle),warningBorderColor:t.extend("--ft-notice-warning-border-color","",n.borderWarningSubtle),warningColor:t.extend("--ft-notice-warning-color","",n.contentWarningPrimary),warningIconColor:t.extend("--ft-notice-warning-icon-color","",n.contentWarningIconOnly),errorBackgroundColor:t.extend("--ft-notice-error-background-color","",n.backgroundErrorSubtle),errorBorderColor:t.extend("--ft-notice-error-border-color","",n.borderErrorSubtle),errorColor:t.extend("--ft-notice-error-color","",n.contentErrorPrimary),errorIconColor:t.extend("--ft-notice-error-icon-color","",n.contentErrorIconOnly),successBackgroundColor:t.extend("--ft-notice-success-background-color","",n.backgroundSuccessSubtle),successBorderColor:t.extend("--ft-notice-success-border-color","",n.borderSuccessSubtle),successColor:t.extend("--ft-notice-success-color","",n.contentSuccessPrimary),successIconColor:t.extend("--ft-notice-success-icon-color","",n.contentSuccessIconOnly)};var Yc={color:t.extend("--ft-checkbox-color","",n.contentGlobalPrimary),checkedBackgroundColor:t.extend("--ft-checkbox-checked-background-color","",n.contentActionPrimary),checkedStateLayerColor:t.extend("--ft-checkbox-checked-state-layer-color","",n.contentActionPrimary),checkedIconColor:t.extend("--ft-checkbox-checked-icon-color","",n.contentGlobalOnColor),checkedHoverStateLayerOpacity:t.extend("--ft-checkbox-checked-hover-state-layer-opacity","",r.opacity16),checkedFocusStateLayerOpacity:t.extend("--ft-checkbox-checked-focus-state-layer-opacity","",r.opacity16),checkedActiveStateLayerOpacity:t.extend("--ft-checkbox-checked-active-state-layer-opacity","",r.opacity24),checkedDisabledComponentOpacity:t.extend("--ft-checkbox-checked-disabled-component-opacity","",r.opacity40),uncheckedBorderColor:t.extend("--ft-checkbox-unchecked-border-color","",r.colorGray80),uncheckedStateLayerColor:t.extend("--ft-checkbox-unchecked-state-layer-color","",r.colorGray80),uncheckedHoverStateLayerOpacity:t.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",r.opacity16),uncheckedFocusStateLayerOpacity:t.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",r.opacity16),uncheckedActiveStateLayerOpacity:t.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",r.opacity24),uncheckedDisabledComponentOpacity:t.extend("--ft-checkbox-unchecked-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-checkbox-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:t.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-checkbox-gap","",r.spacing3)};var tl={offHoverStateLayerOpacity:t.extend("--ft-toggle-off-hover-state-layer-opacity","",r.opacity16),offFocusStateLayerOpacity:t.extend("--ft-toggle-off-focus-state-layer-opacity","",r.opacity16),offActiveStateLayerOpacity:t.extend("--ft-toggle-off-active-state-layer-opacity","",r.opacity24),offDisabledComponentOpacity:t.extend("--ft-toggle-off-disabled-component-opacity","",r.opacity40),offBackgroundColor:t.extend("--ft-toggle-off-background-color","",n.contentGlobalSubtle),offIconColor:t.extend("--ft-toggle-off-icon-color","",n.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-toggle-off-state-layer-color","",n.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-toggle-on-hover-state-layer-opacity","",r.opacity16),onFocusStateLayerOpacity:t.extend("--ft-toggle-on-focus-state-layer-opacity","",r.opacity16),onActiveStateLayerOpacity:t.extend("--ft-toggle-on-active-state-layer-opacity","",r.opacity24),onDisabledComponentOpacity:t.extend("--ft-toggle-on-disabled-component-opacity","",r.opacity40),onBackgroundColor:t.extend("--ft-toggle-on-background-color","",n.contentActionPrimary),onStateLayerColor:t.extend("--ft-toggle-on-state-layer-color","",n.contentActionPrimary),onIconColor:t.extend("--ft-toggle-on-icon-color","",n.contentActionPrimary),color:t.extend("--ft-toggle-color","",n.contentGlobalPrimary),focusFocusRingColor:t.extend("--ft-toggle-focus-focus-ring-color","",n.borderActionFocusRing),gap:t.extend("--ft-toggle-gap","",r.spacing3)};var nl={color:t.extend("--ft-radio-color","",n.contentGlobalPrimary),selectedRadioColor:t.extend("--ft-radio-selected-radio-color","",n.contentActionPrimary),selectedStateLayerColor:t.extend("--ft-radio-selected-state-layer-color","",n.contentActionPrimary),selectedHoverStateLayerOpacity:t.extend("--ft-radio-selected-hover-state-layer-opacity","",r.opacity16),selectedFocusStateLayerOpacity:t.extend("--ft-radio-selected-focus-state-layer-opacity","",r.opacity16),selectedActiveStateLayerOpacity:t.extend("--ft-radio-selected-active-state-layer-opacity","",r.opacity24),selectedDisabledComponentOpacity:t.extend("--ft-radio-selected-disabled-component-opacity","",r.opacity40),unselectedStateLayerColor:t.extend("--ft-radio-unselected-state-layer-color","",n.borderInputPrimary),unselectedBorderColor:t.extend("--ft-radio-unselected-border-color","",n.borderInputPrimary),unselectedHoverStateLayerOpacity:t.extend("--ft-radio-unselected-hover-state-layer-opacity","",r.opacity16),unselectedFocusStateLayerOpacity:t.extend("--ft-radio-unselected-focus-state-layer-opacity","",r.opacity16),unselectedActiveStateLayerOpacity:t.extend("--ft-radio-unselected-active-state-layer-opacity","",r.opacity24),unselectedDisabledComponentOpacity:t.extend("--ft-radio-unselected-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-radio-focus-focus-ring-color","",n.borderActionFocusRing),focusOutlineOffset:t.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-radio-gap","",r.spacing3)};var dl={iconSize:t.extend("--ft-notification-icon-size","",r.iconSize4),leftPadding:t.extend("--ft-notification-left-padding","",r.spacing5),rightPadding:t.extend("--ft-notification-right-padding","",r.spacing4),verticalPadding:t.extend("--ft-notification-vertical-padding","",r.spacing3),infoBackgroundColor:t.extend("--ft-notification-info-background-color","",n.backgroundInfoSubtle),infoColor:t.extend("--ft-notification-info-color","",n.contentInfoPrimary),infoIconColor:t.extend("--ft-notification-info-icon-color","",n.contentInfoIconOnly),infoBorderColor:t.extend("--ft-notification-info-border-color","",n.borderInfoSubtle),successBackgroundColor:t.extend("--ft-notification-success-background-color","",n.backgroundSuccessSubtle),successColor:t.extend("--ft-notification-success-color","",n.contentSuccessPrimary),successIconColor:t.extend("--ft-notification-success-icon-color","",n.contentSuccessIconOnly),successBorderColor:t.extend("--ft-notification-success-border-color","",n.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-notification-warning-background-color","",n.backgroundWarningSubtle),warningColor:t.extend("--ft-notification-warning-color","",n.contentWarningPrimary),warningIconColor:t.extend("--ft-notification-warning-icon-color","",n.contentWarningIconOnly),warningBorderColor:t.extend("--ft-notification-warning-border-color","",n.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-notification-error-background-color","",n.backgroundErrorSubtle),errorColor:t.extend("--ft-notification-error-color","",n.contentErrorPrimary),errorIconColor:t.extend("--ft-notification-error-icon-color","",n.contentErrorIconOnly),errorBorderColor:t.extend("--ft-notification-error-border-color","",n.borderErrorSubtle),borderRadius:t.extend("--ft-notification-border-radius","",r.borderRadiusPill),borderWidth:t.create("--ft-notification-border-width","","SIZE","1px"),leadingGap:t.extend("--ft-notification-leading-gap","",r.spacing2),trailingGap:t.extend("--ft-notification-trailing-gap","",r.spacing8)};var gl={horizontalPadding:t.extend("--ft-tooltip-horizontal-padding","",r.spacing2),verticalPadding:t.extend("--ft-tooltip-vertical-padding","",r.spacing2),borderRadius:t.extend("--ft-tooltip-border-radius","",r.borderRadiusS),color:t.extend("--ft-tooltip-color","",n.contentGlobalOnColor),backgroundColor:t.extend("--ft-tooltip-background-color","",n.contentGlobalPrimary),backgroundOpacity:t.extend("--ft-tooltip-background-opacity","",r.opacity80),shadow:t.extend("--ft-tooltip-shadow","",r.shadowElevation02),maxWidth:t.create("--ft-tooltip-max-width","","SIZE","256px"),gap:t.extend("--ft-tooltip-gap","",r.spacing05)};var Ee;(function(e){e.brand="brand",e.neutral="neutral",e.info="info",e.success="success",e.warning="warning",e.error="error"})(Ee||(Ee={}));var _t;(function(e){e.large="large",e.medium="medium",e.small="small"})(_t||(_t={}));var we=x(U());function nr(e){let o=Ne[e];return we.css`
|
|
226
|
+
.ft-typography--${(0,we.unsafeCSS)(e)} {
|
|
227
227
|
font-family: ${o.fontFamily};
|
|
228
228
|
font-size: ${o.fontSize};
|
|
229
229
|
font-weight: ${o.fontWeight};
|
|
@@ -231,17 +231,8 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
231
231
|
line-height: ${o.lineHeight};
|
|
232
232
|
text-transform: ${o.textCase};
|
|
233
233
|
}
|
|
234
|
-
`}var ir=
|
|
234
|
+
`}var ir=h.FtCssVariableFactory.extend("--ft-typography-font-family","",h.designSystemVariables.titleFont),bt=h.FtCssVariableFactory.extend("--ft-typography-font-family","",h.designSystemVariables.contentFont),S={fontFamily:bt,fontSize:h.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:h.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:h.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:h.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:h.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},Dt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-title-font-family","",ir),fontSize:h.FtCssVariableFactory.extend("--ft-typography-title-font-size","",S.fontSize,"20px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",S.letterSpacing,"0.15px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-title-line-height","",S.lineHeight,"1.2"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",S.textTransform,"inherit")},Ut={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",ir),fontSize:h.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",S.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",S.letterSpacing,"0.105px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",S.lineHeight,"1.7"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",S.textTransform,"inherit")},Mt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",S.fontSize,"16px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",S.fontWeight,"600"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",S.letterSpacing,"0.144px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",S.lineHeight,"1.5"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",S.textTransform,"inherit")},Gt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",S.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",S.letterSpacing,"0.098px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",S.lineHeight,"1.7"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",S.textTransform,"inherit")},Zt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",S.fontSize,"16px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",S.letterSpacing,"0.496px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",S.lineHeight,"1.5"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",S.textTransform,"inherit")},Ft={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",S.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",S.letterSpacing,"0.252px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",S.lineHeight,"1.4"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",S.textTransform,"inherit")},Kt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",S.fontSize,"12px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",S.letterSpacing,"0.396px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",S.lineHeight,"1.33"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",S.textTransform,"inherit")},Vt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",S.fontSize,"10px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",S.letterSpacing,"0.33px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",S.lineHeight,"1.6"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",S.textTransform,"inherit")},jt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",S.fontSize,"10px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",S.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",S.letterSpacing,"1.5px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",S.lineHeight,"1.6"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",S.textTransform,"uppercase")},yt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-button-font-family","",bt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-button-font-size","",S.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",S.fontWeight,"600"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",S.letterSpacing,"1.246px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-button-line-height","",S.lineHeight,"1.15"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",S.textTransform,"uppercase")},cr=nt.css`
|
|
235
235
|
.ft-typography--title {
|
|
236
|
-
font-family: ${Ut.fontFamily};
|
|
237
|
-
font-size: ${Ut.fontSize};
|
|
238
|
-
font-weight: ${Ut.fontWeight};
|
|
239
|
-
letter-spacing: ${Ut.letterSpacing};
|
|
240
|
-
line-height: ${Ut.lineHeight};
|
|
241
|
-
text-transform: ${Ut.textTransform};
|
|
242
|
-
}
|
|
243
|
-
`,cr=at.css`
|
|
244
|
-
.ft-typography--title-dense {
|
|
245
236
|
font-family: ${Dt.fontFamily};
|
|
246
237
|
font-size: ${Dt.fontSize};
|
|
247
238
|
font-weight: ${Dt.fontWeight};
|
|
@@ -249,7 +240,16 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
249
240
|
line-height: ${Dt.lineHeight};
|
|
250
241
|
text-transform: ${Dt.textTransform};
|
|
251
242
|
}
|
|
252
|
-
`,
|
|
243
|
+
`,lr=nt.css`
|
|
244
|
+
.ft-typography--title-dense {
|
|
245
|
+
font-family: ${Ut.fontFamily};
|
|
246
|
+
font-size: ${Ut.fontSize};
|
|
247
|
+
font-weight: ${Ut.fontWeight};
|
|
248
|
+
letter-spacing: ${Ut.letterSpacing};
|
|
249
|
+
line-height: ${Ut.lineHeight};
|
|
250
|
+
text-transform: ${Ut.textTransform};
|
|
251
|
+
}
|
|
252
|
+
`,sr=nt.css`
|
|
253
253
|
.ft-typography--subtitle1 {
|
|
254
254
|
font-family: ${Mt.fontFamily};
|
|
255
255
|
font-size: ${Mt.fontSize};
|
|
@@ -258,7 +258,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
258
258
|
line-height: ${Mt.lineHeight};
|
|
259
259
|
text-transform: ${Mt.textTransform};
|
|
260
260
|
}
|
|
261
|
-
`,
|
|
261
|
+
`,dr=nt.css`
|
|
262
262
|
.ft-typography--subtitle2 {
|
|
263
263
|
font-family: ${Gt.fontFamily};
|
|
264
264
|
font-size: ${Gt.fontSize};
|
|
@@ -268,7 +268,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
268
268
|
text-transform: ${Gt.textTransform};
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
-
`,
|
|
271
|
+
`,pr=nt.css`
|
|
272
272
|
.ft-typography--body1 {
|
|
273
273
|
font-family: ${Zt.fontFamily};
|
|
274
274
|
font-size: ${Zt.fontSize};
|
|
@@ -277,17 +277,8 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
277
277
|
line-height: ${Zt.lineHeight};
|
|
278
278
|
text-transform: ${Zt.textTransform};
|
|
279
279
|
}
|
|
280
|
-
`,fr=
|
|
280
|
+
`,fr=nt.css`
|
|
281
281
|
.ft-typography--body2 {
|
|
282
|
-
font-family: ${Kt.fontFamily};
|
|
283
|
-
font-size: ${Kt.fontSize};
|
|
284
|
-
font-weight: ${Kt.fontWeight};
|
|
285
|
-
letter-spacing: ${Kt.letterSpacing};
|
|
286
|
-
line-height: ${Kt.lineHeight};
|
|
287
|
-
text-transform: ${Kt.textTransform};
|
|
288
|
-
}
|
|
289
|
-
`,hr=at.css`
|
|
290
|
-
.ft-typography--caption {
|
|
291
282
|
font-family: ${Ft.fontFamily};
|
|
292
283
|
font-size: ${Ft.fontSize};
|
|
293
284
|
font-weight: ${Ft.fontWeight};
|
|
@@ -295,7 +286,16 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
295
286
|
line-height: ${Ft.lineHeight};
|
|
296
287
|
text-transform: ${Ft.textTransform};
|
|
297
288
|
}
|
|
298
|
-
`,
|
|
289
|
+
`,yr=nt.css`
|
|
290
|
+
.ft-typography--caption {
|
|
291
|
+
font-family: ${Kt.fontFamily};
|
|
292
|
+
font-size: ${Kt.fontSize};
|
|
293
|
+
font-weight: ${Kt.fontWeight};
|
|
294
|
+
letter-spacing: ${Kt.letterSpacing};
|
|
295
|
+
line-height: ${Kt.lineHeight};
|
|
296
|
+
text-transform: ${Kt.textTransform};
|
|
297
|
+
}
|
|
298
|
+
`,ur=nt.css`
|
|
299
299
|
.ft-typography--breadcrumb {
|
|
300
300
|
font-family: ${Vt.fontFamily};
|
|
301
301
|
font-size: ${Vt.fontSize};
|
|
@@ -304,7 +304,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
304
304
|
line-height: ${Vt.lineHeight};
|
|
305
305
|
text-transform: ${Vt.textTransform};
|
|
306
306
|
}
|
|
307
|
-
`,gr=
|
|
307
|
+
`,gr=nt.css`
|
|
308
308
|
.ft-typography--overline {
|
|
309
309
|
font-family: ${jt.fontFamily};
|
|
310
310
|
font-size: ${jt.fontSize};
|
|
@@ -313,20 +313,20 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
313
313
|
line-height: ${jt.lineHeight};
|
|
314
314
|
text-transform: ${jt.textTransform};
|
|
315
315
|
}
|
|
316
|
-
`,
|
|
316
|
+
`,hr=nt.css`
|
|
317
317
|
.ft-typography--button {
|
|
318
|
-
font-family: ${
|
|
319
|
-
font-size: ${
|
|
320
|
-
font-weight: ${
|
|
321
|
-
letter-spacing: ${
|
|
322
|
-
line-height: ${
|
|
323
|
-
text-transform: ${
|
|
324
|
-
}
|
|
325
|
-
`,
|
|
318
|
+
font-family: ${yt.fontFamily};
|
|
319
|
+
font-size: ${yt.fontSize};
|
|
320
|
+
font-weight: ${yt.fontWeight};
|
|
321
|
+
letter-spacing: ${yt.letterSpacing};
|
|
322
|
+
line-height: ${yt.lineHeight};
|
|
323
|
+
text-transform: ${yt.textTransform};
|
|
324
|
+
}
|
|
325
|
+
`,mr=nt.css`
|
|
326
326
|
.ft-typography {
|
|
327
327
|
vertical-align: inherit;
|
|
328
328
|
}
|
|
329
|
-
`,br=[Object.keys(Ne).map(e=>
|
|
329
|
+
`,br=[Object.keys(Ne).map(e=>nr(e))];var xr=x(U()),ie=x(L()),$={color:ie.FtCssVariableFactory.extend("--ft-loader-color","",ie.designSystemVariables.colorPrimary),size:ie.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},Sr=xr.css`
|
|
330
330
|
:host {
|
|
331
331
|
line-height: 0;
|
|
332
332
|
}
|
|
@@ -335,8 +335,8 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
335
335
|
display: inline-block;
|
|
336
336
|
position: relative;
|
|
337
337
|
|
|
338
|
-
width: ${
|
|
339
|
-
height: ${
|
|
338
|
+
width: ${$.size};
|
|
339
|
+
height: ${$.size};
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
.ft-loader div {
|
|
@@ -345,7 +345,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
345
345
|
width: 25%;
|
|
346
346
|
height: 25%;
|
|
347
347
|
border-radius: 50%;
|
|
348
|
-
background: ${
|
|
348
|
+
background: ${$.color};
|
|
349
349
|
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
350
350
|
}
|
|
351
351
|
|
|
@@ -392,10 +392,10 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
392
392
|
transform: translate(0, 0);
|
|
393
393
|
}
|
|
394
394
|
100% {
|
|
395
|
-
transform: translate(calc(0.35 * ${
|
|
395
|
+
transform: translate(calc(0.35 * ${$.size}), 0);
|
|
396
396
|
}
|
|
397
397
|
}
|
|
398
|
-
`;var Or=
|
|
398
|
+
`;var Or=C.FtCssVariableFactory.extend("--ft-button-color","",C.designSystemVariables.colorPrimary),Z={backgroundColor:C.FtCssVariableFactory.extend("--ft-button-background-color","",C.designSystemVariables.colorSurface),borderRadius:C.FtCssVariableFactory.extend("--ft-button-border-radius","",C.designSystemVariables.borderRadiusL),color:Or,fontSize:C.FtCssVariableFactory.extend("--ft-button-font-size","",yt.fontSize),iconSize:C.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:C.FtCssVariableFactory.extend("--ft-button-ripple-color","",Or),verticalPadding:C.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:C.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:C.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:C.FtCssVariableFactory.external(C.designSystemVariables.colorOpacityDisabled,"Design system")},Cr=C.FtCssVariableFactory.extend("--ft-button-primary-color","",C.FtCssVariableFactory.extend("--ft-button-color","",C.designSystemVariables.colorOnPrimary)),De={backgroundColor:C.FtCssVariableFactory.extend("--ft-button-primary-background-color","",C.FtCssVariableFactory.extend("--ft-button-background-color","",C.designSystemVariables.colorPrimary)),color:Cr,rippleColor:C.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",Cr)},ut={borderRadius:C.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",C.FtCssVariableFactory.extend("--ft-button-border-radius","",C.designSystemVariables.borderRadiusM)),verticalPadding:C.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),horizontalPadding:C.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),iconPadding:C.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px")},Nr=[vr.css`
|
|
399
399
|
:host {
|
|
400
400
|
display: inline-block;
|
|
401
401
|
max-width: 100%;
|
|
@@ -406,7 +406,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
406
406
|
box-shadow: 0px 0px 0px transparent;
|
|
407
407
|
border: 0px solid transparent;
|
|
408
408
|
text-shadow: 0px 0px 0px transparent;
|
|
409
|
-
font-size: ${
|
|
409
|
+
font-size: ${Z.fontSize};
|
|
410
410
|
}
|
|
411
411
|
|
|
412
412
|
button:hover {
|
|
@@ -435,21 +435,21 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
435
435
|
border: none;
|
|
436
436
|
pointer-events: auto;
|
|
437
437
|
|
|
438
|
-
--ft-button-internal-line-height: max(calc(${
|
|
439
|
-
--ft-button-internal-color: ${
|
|
440
|
-
${(0,
|
|
441
|
-
${(0,
|
|
438
|
+
--ft-button-internal-line-height: max(calc(${Z.fontSize} + 2px), ${Z.iconSize});
|
|
439
|
+
--ft-button-internal-color: ${Z.color};
|
|
440
|
+
${(0,C.setVariable)(X.size,Z.iconSize)};
|
|
441
|
+
${(0,C.setVariable)(u.color,Z.rippleColor)};
|
|
442
442
|
|
|
443
|
-
border-radius: ${
|
|
444
|
-
padding: ${
|
|
445
|
-
background-color: ${
|
|
443
|
+
border-radius: ${Z.borderRadius};
|
|
444
|
+
padding: ${Z.verticalPadding} ${Z.horizontalPadding};
|
|
445
|
+
background-color: ${Z.backgroundColor};
|
|
446
446
|
color: var(--ft-button-internal-color);
|
|
447
447
|
-webkit-mask-image: radial-gradient(white, black);
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
.ft-button.ft-button--outlined {
|
|
451
451
|
border: 1px solid var(--ft-button-internal-color);
|
|
452
|
-
padding: calc(${
|
|
452
|
+
padding: calc(${Z.verticalPadding} - 1px) calc(${Z.horizontalPadding} - 1px);
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
.ft-button.ft-button--dense {
|
|
@@ -467,7 +467,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
467
467
|
}
|
|
468
468
|
|
|
469
469
|
.ft-button--round {
|
|
470
|
-
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${
|
|
470
|
+
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Z.verticalPadding});
|
|
471
471
|
}
|
|
472
472
|
|
|
473
473
|
.ft-button--round.ft-button--dense {
|
|
@@ -476,13 +476,13 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
476
476
|
|
|
477
477
|
.ft-button[disabled] {
|
|
478
478
|
filter: grayscale(1);
|
|
479
|
-
opacity: ${
|
|
479
|
+
opacity: ${Z.opacityDisabled};
|
|
480
480
|
}
|
|
481
481
|
|
|
482
482
|
.ft-button.ft-button--primary {
|
|
483
|
-
background-color: ${
|
|
484
|
-
--ft-button-internal-color: ${
|
|
485
|
-
${(0,
|
|
483
|
+
background-color: ${De.backgroundColor};
|
|
484
|
+
--ft-button-internal-color: ${De.color};
|
|
485
|
+
${(0,C.setVariable)(u.color,De.rippleColor)};
|
|
486
486
|
}
|
|
487
487
|
|
|
488
488
|
.ft-button:focus {
|
|
@@ -495,9 +495,9 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
495
495
|
white-space: nowrap;
|
|
496
496
|
text-overflow: ellipsis;
|
|
497
497
|
display: block;
|
|
498
|
-
margin: 0 ${
|
|
499
|
-
${(0,
|
|
500
|
-
${(0,
|
|
498
|
+
margin: 0 ${Z.iconPadding};
|
|
499
|
+
${(0,C.setVariable)(yt.fontSize,"1em")};
|
|
500
|
+
${(0,C.setVariable)(yt.lineHeight,"var(--ft-button-internal-line-height)")};
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
.ft-button--dense .ft-button--label {
|
|
@@ -514,8 +514,8 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
514
514
|
}
|
|
515
515
|
|
|
516
516
|
.ft-button--label[hidden] + [part="icon"] {
|
|
517
|
-
margin: 0 calc(${
|
|
518
|
-
padding: 0 ${
|
|
517
|
+
margin: 0 calc(${Z.horizontalPadding} * -1);
|
|
518
|
+
padding: 0 ${Z.verticalPadding};
|
|
519
519
|
}
|
|
520
520
|
|
|
521
521
|
.ft-button--dense .ft-button--label[hidden] + [part="icon"] {
|
|
@@ -528,23 +528,23 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
528
528
|
}
|
|
529
529
|
|
|
530
530
|
ft-loader {
|
|
531
|
-
${(0,
|
|
532
|
-
${(0,
|
|
531
|
+
${(0,C.setVariable)($.size,Z.iconSize)};
|
|
532
|
+
${(0,C.setVariable)($.color,"var(--ft-button-internal-color)")};
|
|
533
533
|
}
|
|
534
|
-
`,
|
|
534
|
+
`,C.noTextSelect];var oe=x(L());var Lr=x(L());var Er=x(U()),K=x(pt()),wr=x(ve()),ce=x(L());var q=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},I=class extends ce.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new ce.Debouncer(1e3),this.onTransitionStart=o=>{o.propertyName==="transform"&&(this.rippling=this.pressed,this.debouncer.run(()=>this.rippling=!1))},this.onTransitionEnd=o=>{o.propertyName==="transform"&&(this.rippling=!1)},this.setupDebouncer=new ce.Debouncer(10),this.moveRipple=o=>{var a,i;let{x:c,y:l}=this.getCoordinates(o),s=(i=(a=this.ripple)===null||a===void 0?void 0:a.getBoundingClientRect())!==null&&i!==void 0?i:{x:0,y:0,width:0,height:0};this.originX=Math.round(c!=null?c-s.x:s.width/2),this.originY=Math.round(l!=null?l-s.y:s.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 Er.html`
|
|
535
535
|
<style>
|
|
536
536
|
.ft-ripple .ft-ripple--effect {
|
|
537
537
|
left: ${this.originX}px;
|
|
538
538
|
top: ${this.originY}px;
|
|
539
539
|
}
|
|
540
540
|
</style>
|
|
541
|
-
<div class="${(0,
|
|
541
|
+
<div class="${(0,wr.classMap)(o)}">
|
|
542
542
|
<div class="ft-ripple--background"></div>
|
|
543
543
|
<div class="ft-ripple--effect"></div>
|
|
544
544
|
</div>
|
|
545
|
-
`}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
|
|
546
|
-
\f\r]`,
|
|
547
|
-
\f\r"'\`<>=]|("|')|))|$)`,"g"),Ir=/'/g,
|
|
545
|
+
`}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 a,i;super.update(o),o.has("disabled")&&(this.disabled?(this.endRipple(),(a=this.target)===null||a===void 0||a.removeAttribute("data-is-ft-ripple-target")):(i=this.target)===null||i===void 0||i.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run(()=>this.defaultSetup())}defaultSetup(){var o,a;let i=(o=this.shadowRoot)===null||o===void 0?void 0:o.host.parentElement;i&&this.setupFor((a=this.target)!==null&&a!==void 0?a:i)}setupFor(o){if(this.setupDebouncer.cancel(),this.target===o)return;this.onDisconnect&&this.onDisconnect(),this.target=o,o.setAttribute("data-is-ft-ripple-target","true");let a=(...p)=>y=>{p.forEach(m=>window.addEventListener(m,this.endPress,{once:!0})),this.startPress(y)},i=a("mouseup","contextmenu"),c=a("touchend","touchcancel"),l=p=>{["Enter"," "].includes(p.key)&&a("keyup")(p)},s={passive:!0};o.addEventListener("mouseover",this.startHover,s),o.addEventListener("mousemove",this.moveRipple,s),o.addEventListener("mouseleave",this.endHover,s),o.addEventListener("mousedown",i,s),o.addEventListener("touchstart",c,s),o.addEventListener("touchmove",this.moveRipple,s),o.addEventListener("keydown",l,s),o.addEventListener("focus",this.startFocus,s),o.addEventListener("blur",this.endFocus,s),o.addEventListener("focusin",this.startFocus,s),o.addEventListener("focusout",this.endFocus,s),this.onDisconnect=()=>{o.removeAttribute("data-is-ft-ripple-target"),o.removeEventListener("mouseover",this.startHover,s),o.removeEventListener("mousemove",this.moveRipple,s),o.removeEventListener("mouseleave",this.endHover,s),o.removeEventListener("mousedown",i,s),o.removeEventListener("touchstart",c,s),o.removeEventListener("touchmove",this.moveRipple,s),o.removeEventListener("keydown",l,s),o.removeEventListener("focus",this.startFocus,s),o.removeEventListener("blur",this.endFocus,s),o.removeEventListener("focusin",this.startFocus,s),o.removeEventListener("focusout",this.endFocus,s),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(o){let a=o,i=o,c,l;return a.x!=null?{x:c,y:l}=a:i.touches!=null&&(c=i.touches[0].clientX,l=i.touches[0].clientY),{x:c,y:l}}isFocusVisible(o){return o instanceof HTMLElement?o.matches(":focus-visible"):!0}isIgnored(o){if(this.disabled)return!0;if(o!=null)for(let a of o.composedPath()){if(a===this.target)break;if("hasAttribute"in a&&a.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}};I.elementDefinitions={};I.styles=Wo;q([(0,K.property)({type:Boolean})],I.prototype,"primary",void 0);q([(0,K.property)({type:Boolean})],I.prototype,"secondary",void 0);q([(0,K.property)({type:Boolean})],I.prototype,"unbounded",void 0);q([(0,K.property)({type:Boolean})],I.prototype,"activated",void 0);q([(0,K.property)({type:Boolean})],I.prototype,"selected",void 0);q([(0,K.property)({type:Boolean})],I.prototype,"disabled",void 0);q([(0,K.state)()],I.prototype,"hovered",void 0);q([(0,K.state)()],I.prototype,"focused",void 0);q([(0,K.state)()],I.prototype,"pressed",void 0);q([(0,K.state)()],I.prototype,"rippling",void 0);q([(0,K.state)()],I.prototype,"originX",void 0);q([(0,K.state)()],I.prototype,"originY",void 0);q([(0,K.query)(".ft-ripple")],I.prototype,"ripple",void 0);q([(0,K.query)(".ft-ripple--effect")],I.prototype,"rippleEffect",void 0);(0,Lr.customElement)("ft-ripple")(I);var Sa=x(L());var xa=x(U()),M=x(pt()),me=x(L());var Vr=x(L());var Ve=globalThis,Le=Ve.trustedTypes,Rr=Le?Le.createPolicy("lit-html",{createHTML:e=>e}):void 0,Pr="$lit$",Lt=`lit$${(Math.random()+"").slice(9)}$`,Tr="?"+Lt,Za=`<${Tr}>`,Pt=document,Re=()=>Pt.createComment(""),se=e=>e===null||typeof e!="object"&&typeof e!="function",zr=Array.isArray,Fa=e=>zr(e)||typeof e?.[Symbol.iterator]=="function",Ue=`[
|
|
546
|
+
\f\r]`,le=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Ar=/-->/g,$r=/>/g,Bt=RegExp(`>|${Ue}(?:([^\\s"'>=/]+)(${Ue}*=${Ue}*(?:[^
|
|
547
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),Ir=/'/g,Br=/"/g,kr=/^(?:script|style|textarea|title)$/i,Hr=e=>(o,...a)=>({_$litType$:e,strings:o,values:a}),_r=Hr(1),Dr=Hr(2),de=Symbol.for("lit-noChange"),F=Symbol.for("lit-nothing"),Wr=new WeakMap,Wt=Pt.createTreeWalker(Pt,129);function Ur(e,o){if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return Rr!==void 0?Rr.createHTML(o):o}var Ka=(e,o)=>{let a=e.length-1,i=[],c,l=o===2?"<svg>":"",s=le;for(let p=0;p<a;p++){let y=e[p],m,O,b=-1,N=0;for(;N<y.length&&(s.lastIndex=N,O=s.exec(y),O!==null);)N=s.lastIndex,s===le?O[1]==="!--"?s=Ar:O[1]!==void 0?s=$r:O[2]!==void 0?(kr.test(O[2])&&(c=RegExp("</"+O[2],"g")),s=Bt):O[3]!==void 0&&(s=Bt):s===Bt?O[0]===">"?(s=c??le,b=-1):O[1]===void 0?b=-2:(b=s.lastIndex-O[2].length,m=O[1],s=O[3]===void 0?Bt:O[3]==='"'?Br:Ir):s===Br||s===Ir?s=Bt:s===Ar||s===$r?s=le:(s=Bt,c=void 0);let v=s===Bt&&e[p+1].startsWith("/>")?" ":"";l+=s===le?y+Za:b>=0?(i.push(m),y.slice(0,b)+Pr+y.slice(b)+Lt+v):y+Lt+(b===-2?p:v)}return[Ur(e,l+(e[a]||"<?>")+(o===2?"</svg>":"")),i]},pe=class e{constructor({strings:o,_$litType$:a},i){let c;this.parts=[];let l=0,s=0,p=o.length-1,y=this.parts,[m,O]=Ka(o,a);if(this.el=e.createElement(m,i),Wt.currentNode=this.el.content,a===2){let b=this.el.content.firstChild;b.replaceWith(...b.childNodes)}for(;(c=Wt.nextNode())!==null&&y.length<p;){if(c.nodeType===1){if(c.hasAttributes())for(let b of c.getAttributeNames())if(b.endsWith(Pr)){let N=O[s++],v=c.getAttribute(b).split(Lt),w=/([.?@])?(.*)/.exec(N);y.push({type:1,index:l,name:w[2],strings:v,ctor:w[1]==="."?Ge:w[1]==="?"?Ze:w[1]==="@"?Fe:Xt}),c.removeAttribute(b)}else b.startsWith(Lt)&&(y.push({type:6,index:l}),c.removeAttribute(b));if(kr.test(c.tagName)){let b=c.textContent.split(Lt),N=b.length-1;if(N>0){c.textContent=Le?Le.emptyScript:"";for(let v=0;v<N;v++)c.append(b[v],Re()),Wt.nextNode(),y.push({type:2,index:++l});c.append(b[N],Re())}}}else if(c.nodeType===8)if(c.data===Tr)y.push({type:2,index:l});else{let b=-1;for(;(b=c.data.indexOf(Lt,b+1))!==-1;)y.push({type:7,index:l}),b+=Lt.length-1}l++}}static createElement(o,a){let i=Pt.createElement("template");return i.innerHTML=o,i}};function Yt(e,o,a=e,i){if(o===de)return o;let c=i!==void 0?a._$Co?.[i]:a._$Cl,l=se(o)?void 0:o._$litDirective$;return c?.constructor!==l&&(c?._$AO?.(!1),l===void 0?c=void 0:(c=new l(e),c._$AT(e,a,i)),i!==void 0?(a._$Co??=[])[i]=c:a._$Cl=c),c!==void 0&&(o=Yt(e,c._$AS(e,o.values),c,i)),o}var Me=class{constructor(o,a){this._$AV=[],this._$AN=void 0,this._$AD=o,this._$AM=a}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(o){let{el:{content:a},parts:i}=this._$AD,c=(o?.creationScope??Pt).importNode(a,!0);Wt.currentNode=c;let l=Wt.nextNode(),s=0,p=0,y=i[0];for(;y!==void 0;){if(s===y.index){let m;y.type===2?m=new Ae(l,l.nextSibling,this,o):y.type===1?m=new y.ctor(l,y.name,y.strings,this,o):y.type===6&&(m=new Ke(l,this,o)),this._$AV.push(m),y=i[++p]}s!==y?.index&&(l=Wt.nextNode(),s++)}return Wt.currentNode=Pt,c}p(o){let a=0;for(let i of this._$AV)i!==void 0&&(i.strings!==void 0?(i._$AI(o,i,a),a+=i.strings.length-2):i._$AI(o[a])),a++}},Ae=class e{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(o,a,i,c){this.type=2,this._$AH=F,this._$AN=void 0,this._$AA=o,this._$AB=a,this._$AM=i,this.options=c,this._$Cv=c?.isConnected??!0}get parentNode(){let o=this._$AA.parentNode,a=this._$AM;return a!==void 0&&o?.nodeType===11&&(o=a.parentNode),o}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(o,a=this){o=Yt(this,o,a),se(o)?o===F||o==null||o===""?(this._$AH!==F&&this._$AR(),this._$AH=F):o!==this._$AH&&o!==de&&this._(o):o._$litType$!==void 0?this.g(o):o.nodeType!==void 0?this.$(o):Fa(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!==F&&se(this._$AH)?this._$AA.nextSibling.data=o:this.$(Pt.createTextNode(o)),this._$AH=o}g(o){let{values:a,_$litType$:i}=o,c=typeof i=="number"?this._$AC(o):(i.el===void 0&&(i.el=pe.createElement(Ur(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===c)this._$AH.p(a);else{let l=new Me(c,this),s=l.u(this.options);l.p(a),this.$(s),this._$AH=l}}_$AC(o){let a=Wr.get(o.strings);return a===void 0&&Wr.set(o.strings,a=new pe(o)),a}T(o){zr(this._$AH)||(this._$AH=[],this._$AR());let a=this._$AH,i,c=0;for(let l of o)c===a.length?a.push(i=new e(this.k(Re()),this.k(Re()),this,this.options)):i=a[c],i._$AI(l),c++;c<a.length&&(this._$AR(i&&i._$AB.nextSibling,c),a.length=c)}_$AR(o=this._$AA.nextSibling,a){for(this._$AP?.(!1,!0,a);o&&o!==this._$AB;){let i=o.nextSibling;o.remove(),o=i}}setConnected(o){this._$AM===void 0&&(this._$Cv=o,this._$AP?.(o))}},Xt=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(o,a,i,c,l){this.type=1,this._$AH=F,this._$AN=void 0,this.element=o,this.name=a,this._$AM=c,this.options=l,i.length>2||i[0]!==""||i[1]!==""?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=F}_$AI(o,a=this,i,c){let l=this.strings,s=!1;if(l===void 0)o=Yt(this,o,a,0),s=!se(o)||o!==this._$AH&&o!==de,s&&(this._$AH=o);else{let p=o,y,m;for(o=l[0],y=0;y<l.length-1;y++)m=Yt(this,p[i+y],a,y),m===de&&(m=this._$AH[y]),s||=!se(m)||m!==this._$AH[y],m===F?o=F:o!==F&&(o+=(m??"")+l[y+1]),this._$AH[y]=m}s&&!c&&this.O(o)}O(o){o===F?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,o??"")}},Ge=class extends Xt{constructor(){super(...arguments),this.type=3}O(o){this.element[this.name]=o===F?void 0:o}},Ze=class extends Xt{constructor(){super(...arguments),this.type=4}O(o){this.element.toggleAttribute(this.name,!!o&&o!==F)}},Fe=class extends Xt{constructor(o,a,i,c,l){super(o,a,i,c,l),this.type=5}_$AI(o,a=this){if((o=Yt(this,o,a,0)??F)===de)return;let i=this._$AH,c=o===F&&i!==F||o.capture!==i.capture||o.once!==i.once||o.passive!==i.passive,l=o!==F&&(i===F||c);c&&this.element.removeEventListener(this.name,this,i),l&&this.element.addEventListener(this.name,this,o),this._$AH=o}handleEvent(o){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,o):this._$AH.handleEvent(o)}},Ke=class{constructor(o,a,i){this.element=o,this.type=6,this._$AN=void 0,this._$AM=a,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(o){Yt(this,o)}};var Va=Ve.litHtmlPolyfillSupport;Va?.(pe,Ae),(Ve.litHtmlVersions??=[]).push("3.1.0");var Gr=Symbol.for(""),ja=e=>{if(e?.r===Gr)return e?._$litStatic$},je=e=>({_$litStatic$:e,r:Gr});var Mr=new Map,Zr=e=>(o,...a)=>{let i=a.length,c,l,s=[],p=[],y,m=0,O=!1;for(;m<i;){for(y=o[m];m<i&&(l=a[m],(c=ja(l))!==void 0);)y+=c+o[++m],O=!0;m!==i&&p.push(l),s.push(y),m++}if(m===i&&s.push(o[i]),O){let b=s.join("$$lit$$");(o=Mr.get(b))===void 0&&(s.raw=s,Mr.set(b,o=s)),a=p}return e(o,...a)},Ye=Zr(_r),Gs=Zr(Dr);var Xe=x(pt()),Kr=x(L());var Rt;(function(e){e.title="title",e.title_dense="title-dense",e.subtitle1="subtitle1",e.subtitle2="subtitle2",e.body1="body1",e.body2="body2",e.caption="caption",e.breadcrumb="breadcrumb",e.overline="overline",e.button="button",e.display="display",e.title1="title-1",e.title2="title-2",e.title3="title-3",e.body1regular="body-1-regular",e.body1medium="body-1-medium",e.body1semibold="body-1-semibold",e.body2regular="body-2-regular",e.body2medium="body-2-medium",e.body2semibold="body-2-semibold",e.label1medium="label-1-medium",e.label1semibold="label-1-semibold",e.label1bold="label-1-bold",e.label2medium="label-2-medium",e.label2semibold="label-2-semibold",e.label2bold="label-2-bold",e.caption1medium="caption-1-medium",e.caption1semibold="caption-1-semibold",e.caption1bold="caption-1-bold",e.caption2medium="caption-2-medium",e.caption2semibold="caption-2-semibold",e.caption2bold="caption-2-bold"})(Rt||(Rt={}));var Fr=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},ct=class extends Kr.FtLitElement{constructor(){super(...arguments),this.variant=Rt.body1}render(){return this.element?Ye`
|
|
548
548
|
<${je(this.element)}
|
|
549
549
|
part="text"
|
|
550
550
|
class="ft-typography ft-typography--${this.variant}">
|
|
@@ -552,7 +552,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
552
552
|
</${je(this.element)}>
|
|
553
553
|
`:Ye`
|
|
554
554
|
<slot part="text" class="ft-typography ft-typography--${this.variant}"></slot>
|
|
555
|
-
`}};
|
|
555
|
+
`}};ct.styles=[cr,lr,sr,dr,pr,fr,yr,ur,gr,hr,mr,...br];Fr([(0,Xe.property)()],ct.prototype,"element",void 0);Fr([(0,Xe.property)()],ct.prototype,"variant",void 0);(0,Vr.customElement)("ft-typography")(ct);var jr=x(U()),xt=x(L()),qt={distance:xt.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),color:xt.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),backgroundColor:xt.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),zIndex:xt.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),borderRadiusS:xt.FtCssVariableFactory.external(xt.designSystemVariables.borderRadiusS,"Design system"),maxWidth:xt.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px")},Yr=jr.css`
|
|
556
556
|
.ft-tooltip--container {
|
|
557
557
|
display: block;
|
|
558
558
|
}
|
|
@@ -581,7 +581,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
581
581
|
position: relative;
|
|
582
582
|
word-break: break-word;
|
|
583
583
|
}
|
|
584
|
-
`;var qr=["top","right","bottom","left"],Xr=["start","end"],Je=qr.reduce((e,o)=>e.concat(o,o+"-"+Xr[0],o+"-"+Xr[1]),[]),fe=Math.min,Lt=Math.max,he=Math.round;var St=e=>({x:e,y:e}),Xn={left:"right",right:"left",bottom:"top",top:"bottom"},qn={start:"end",end:"start"};function Qe(e,o,n){return Lt(e,fe(o,n))}function $e(e,o){return typeof e=="function"?e(o):e}function Jt(e){return e.split("-")[0]}function $t(e){return e.split("-")[1]}function to(e){return e==="x"?"y":"x"}function eo(e){return e==="y"?"height":"width"}function Ie(e){return["top","bottom"].includes(Jt(e))?"y":"x"}function oo(e){return to(Ie(e))}function Jr(e,o,n){n===void 0&&(n=!1);let a=$t(e),l=oo(e),c=eo(l),s=l==="x"?a===(n?"end":"start")?"right":"left":a==="start"?"bottom":"top";return o.reference[c]>o.floating[c]&&(s=qe(s)),[s,qe(s)]}function Qr(e){return e.replace(/start|end/g,o=>qn[o])}function qe(e){return e.replace(/left|right|bottom|top/g,o=>Xn[o])}function Jn(e){return{top:0,right:0,bottom:0,left:0,...e}}function tn(e){return typeof e!="number"?Jn(e):{top:e,right:e,bottom:e,left:e}}function Bt(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function en(e,o,n){let{reference:a,floating:l}=e,c=Ie(o),s=oo(o),p=eo(s),d=Jt(o),g=c==="y",x=a.x+a.width/2-l.width/2,m=a.y+a.height/2-l.height/2,v=a[p]/2-l[p]/2,O;switch(d){case"top":O={x,y:a.y-l.height};break;case"bottom":O={x,y:a.y+a.height};break;case"right":O={x:a.x+a.width,y:m};break;case"left":O={x:a.x-l.width,y:m};break;default:O={x:a.x,y:a.y}}switch($t(o)){case"start":O[s]-=v*(n&&g?-1:1);break;case"end":O[s]+=v*(n&&g?-1:1);break}return O}var on=async(e,o,n)=>{let{placement:a="bottom",strategy:l="absolute",middleware:c=[],platform:s}=n,p=c.filter(Boolean),d=await(s.isRTL==null?void 0:s.isRTL(o)),g=await s.getElementRects({reference:e,floating:o,strategy:l}),{x,y:m}=en(g,a,d),v=a,O={},E=0;for(let B=0;B<p.length;B++){let{name:k,fn:z}=p[B],{x:_,y:j,data:wt,reset:F}=await z({x,y:m,initialPlacement:a,placement:v,strategy:l,middlewareData:O,rects:g,platform:s,elements:{reference:e,floating:o}});if(x=_??x,m=j??m,O={...O,[k]:{...O[k],...wt}},F&&E<=50){E++,typeof F=="object"&&(F.placement&&(v=F.placement),F.rects&&(g=F.rects===!0?await s.getElementRects({reference:e,floating:o,strategy:l}):F.rects),{x,y:m}=en(g,v,d)),B=-1;continue}}return{x,y:m,placement:v,strategy:l,middlewareData:O}};async function ro(e,o){var n;o===void 0&&(o={});let{x:a,y:l,platform:c,rects:s,elements:p,strategy:d}=e,{boundary:g="clippingAncestors",rootBoundary:x="viewport",elementContext:m="floating",altBoundary:v=!1,padding:O=0}=$e(o,e),E=tn(O),k=p[v?m==="floating"?"reference":"floating":m],z=Bt(await c.getClippingRect({element:(n=await(c.isElement==null?void 0:c.isElement(k)))==null||n?k:k.contextElement||await(c.getDocumentElement==null?void 0:c.getDocumentElement(p.floating)),boundary:g,rootBoundary:x,strategy:d})),_=m==="floating"?{...s.floating,x:a,y:l}:s.reference,j=await(c.getOffsetParent==null?void 0:c.getOffsetParent(p.floating)),wt=await(c.isElement==null?void 0:c.isElement(j))?await(c.getScale==null?void 0:c.getScale(j))||{x:1,y:1}:{x:1,y:1},F=Bt(c.convertOffsetParentRelativeRectToViewportRelativeRect?await c.convertOffsetParentRelativeRectToViewportRelativeRect({rect:_,offsetParent:j,strategy:d}):_);return{top:(z.top-F.top+E.top)/wt.y,bottom:(F.bottom-z.bottom+E.bottom)/wt.y,left:(z.left-F.left+E.left)/wt.x,right:(F.right-z.right+E.right)/wt.x}}function Qn(e,o,n){return(e?[...n.filter(l=>$t(l)===e),...n.filter(l=>$t(l)!==e)]:n.filter(l=>Jt(l)===l)).filter(l=>e?$t(l)===e||(o?Qr(l)!==l:!1):!0)}var no=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(o){var n,a,l;let{rects:c,middlewareData:s,placement:p,platform:d,elements:g}=o,{crossAxis:x=!1,alignment:m,allowedPlacements:v=Je,autoAlignment:O=!0,...E}=$e(e,o),B=m!==void 0||v===Je?Qn(m||null,O,v):v,k=await ro(o,E),z=((n=s.autoPlacement)==null?void 0:n.index)||0,_=B[z];if(_==null)return{};let j=Jr(_,c,await(d.isRTL==null?void 0:d.isRTL(g.floating)));if(p!==_)return{reset:{placement:B[0]}};let wt=[k[Jt(_)],k[j[0]],k[j[1]]],F=[...((a=s.autoPlacement)==null?void 0:a.overflows)||[],{placement:_,overflows:wt}],so=B[z+1];if(so)return{data:{index:z+1,overflows:F},reset:{placement:so}};let po=F.map(pt=>{let re=$t(pt.placement);return[pt.placement,re&&x?pt.overflows.slice(0,2).reduce((zn,Hn)=>zn+Hn,0):pt.overflows[0],pt.overflows]}).sort((pt,re)=>pt[1]-re[1]),fo=((l=po.filter(pt=>pt[2].slice(0,$t(pt[0])?2:3).every(re=>re<=0))[0])==null?void 0:l[0])||po[0][0];return fo!==p?{data:{index:z+1,overflows:F},reset:{placement:fo}}:{}}}};var ao=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(o){let{x:n,y:a,placement:l}=o,{mainAxis:c=!0,crossAxis:s=!1,limiter:p={fn:k=>{let{x:z,y:_}=k;return{x:z,y:_}}},...d}=$e(e,o),g={x:n,y:a},x=await ro(o,d),m=Ie(Jt(l)),v=to(m),O=g[v],E=g[m];if(c){let k=v==="y"?"top":"left",z=v==="y"?"bottom":"right",_=O+x[k],j=O-x[z];O=Qe(_,O,j)}if(s){let k=m==="y"?"top":"left",z=m==="y"?"bottom":"right",_=E+x[k],j=E-x[z];E=Qe(_,E,j)}let B=p.fn({...o,[v]:O,[m]:E});return{...B,data:{x:B.x-n,y:B.y-a}}}}};function Ot(e){return nn(e)?(e.nodeName||"").toLowerCase():"#document"}function J(e){var o;return(e==null||(o=e.ownerDocument)==null?void 0:o.defaultView)||window}function Ct(e){var o;return(o=(nn(e)?e.ownerDocument:e.document)||window.document)==null?void 0:o.documentElement}function nn(e){return e instanceof Node||e instanceof J(e).Node}function gt(e){return e instanceof Element||e instanceof J(e).Element}function ct(e){return e instanceof HTMLElement||e instanceof J(e).HTMLElement}function rn(e){return typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof J(e).ShadowRoot}function Qt(e){let{overflow:o,overflowX:n,overflowY:a,display:l}=et(e);return/auto|scroll|overlay|hidden|clip/.test(o+a+n)&&!["inline","contents"].includes(l)}function an(e){return["table","td","th"].includes(Ot(e))}function We(e){let o=Te(),n=et(e);return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!o&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!o&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(a=>(n.willChange||"").includes(a))||["paint","layout","strict","content"].some(a=>(n.contain||"").includes(a))}function ln(e){let o=zt(e);for(;ct(o)&&!ue(o);){if(We(o))return o;o=zt(o)}return null}function Te(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function ue(e){return["html","body","#document"].includes(Ot(e))}function et(e){return J(e).getComputedStyle(e)}function ge(e){return gt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function zt(e){if(Ot(e)==="html")return e;let o=e.assignedSlot||e.parentNode||rn(e)&&e.host||Ct(e);return rn(o)?o.host:o}function cn(e){let o=zt(e);return ue(o)?e.ownerDocument?e.ownerDocument.body:e.body:ct(o)&&Qt(o)?o:cn(o)}function Pe(e,o,n){var a;o===void 0&&(o=[]),n===void 0&&(n=!0);let l=cn(e),c=l===((a=e.ownerDocument)==null?void 0:a.body),s=J(l);return c?o.concat(s,s.visualViewport||[],Qt(l)?l:[],s.frameElement&&n?Pe(s.frameElement):[]):o.concat(l,Pe(l,[],n))}function dn(e){let o=et(e),n=parseFloat(o.width)||0,a=parseFloat(o.height)||0,l=ct(e),c=l?e.offsetWidth:n,s=l?e.offsetHeight:a,p=he(n)!==c||he(a)!==s;return p&&(n=c,a=s),{width:n,height:a,$:p}}function fn(e){return gt(e)?e:e.contextElement}function te(e){let o=fn(e);if(!ct(o))return St(1);let n=o.getBoundingClientRect(),{width:a,height:l,$:c}=dn(o),s=(c?he(n.width):n.width)/a,p=(c?he(n.height):n.height)/l;return(!s||!Number.isFinite(s))&&(s=1),(!p||!Number.isFinite(p))&&(p=1),{x:s,y:p}}var oa=St(0);function hn(e){let o=J(e);return!Te()||!o.visualViewport?oa:{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}}function ra(e,o,n){return o===void 0&&(o=!1),!n||o&&n!==J(e)?!1:o}function me(e,o,n,a){o===void 0&&(o=!1),n===void 0&&(n=!1);let l=e.getBoundingClientRect(),c=fn(e),s=St(1);o&&(a?gt(a)&&(s=te(a)):s=te(e));let p=ra(c,n,a)?hn(c):St(0),d=(l.left+p.x)/s.x,g=(l.top+p.y)/s.y,x=l.width/s.x,m=l.height/s.y;if(c){let v=J(c),O=a&>(a)?J(a):a,E=v.frameElement;for(;E&&a&&O!==v;){let B=te(E),k=E.getBoundingClientRect(),z=et(E),_=k.left+(E.clientLeft+parseFloat(z.paddingLeft))*B.x,j=k.top+(E.clientTop+parseFloat(z.paddingTop))*B.y;d*=B.x,g*=B.y,x*=B.x,m*=B.y,d+=_,g+=j,E=J(E).frameElement}}return Bt({width:x,height:m,x:d,y:g})}function na(e){let{rect:o,offsetParent:n,strategy:a}=e,l=ct(n),c=Ct(n);if(n===c)return o;let s={scrollLeft:0,scrollTop:0},p=St(1),d=St(0);if((l||!l&&a!=="fixed")&&((Ot(n)!=="body"||Qt(c))&&(s=ge(n)),ct(n))){let g=me(n);p=te(n),d.x=g.x+n.clientLeft,d.y=g.y+n.clientTop}return{width:o.width*p.x,height:o.height*p.y,x:o.x*p.x-s.scrollLeft*p.x+d.x,y:o.y*p.y-s.scrollTop*p.y+d.y}}function aa(e){return Array.from(e.getClientRects())}function un(e){return me(Ct(e)).left+ge(e).scrollLeft}function ia(e){let o=Ct(e),n=ge(e),a=e.ownerDocument.body,l=Lt(o.scrollWidth,o.clientWidth,a.scrollWidth,a.clientWidth),c=Lt(o.scrollHeight,o.clientHeight,a.scrollHeight,a.clientHeight),s=-n.scrollLeft+un(e),p=-n.scrollTop;return et(a).direction==="rtl"&&(s+=Lt(o.clientWidth,a.clientWidth)-l),{width:l,height:c,x:s,y:p}}function la(e,o){let n=J(e),a=Ct(e),l=n.visualViewport,c=a.clientWidth,s=a.clientHeight,p=0,d=0;if(l){c=l.width,s=l.height;let g=Te();(!g||g&&o==="fixed")&&(p=l.offsetLeft,d=l.offsetTop)}return{width:c,height:s,x:p,y:d}}function ca(e,o){let n=me(e,!0,o==="fixed"),a=n.top+e.clientTop,l=n.left+e.clientLeft,c=ct(e)?te(e):St(1),s=e.clientWidth*c.x,p=e.clientHeight*c.y,d=l*c.x,g=a*c.y;return{width:s,height:p,x:d,y:g}}function sn(e,o,n){let a;if(o==="viewport")a=la(e,n);else if(o==="document")a=ia(Ct(e));else if(gt(o))a=ca(o,n);else{let l=hn(e);a={...o,x:o.x-l.x,y:o.y-l.y}}return Bt(a)}function gn(e,o){let n=zt(e);return n===o||!gt(n)||ue(n)?!1:et(n).position==="fixed"||gn(n,o)}function sa(e,o){let n=o.get(e);if(n)return n;let a=Pe(e,[],!1).filter(p=>gt(p)&&Ot(p)!=="body"),l=null,c=et(e).position==="fixed",s=c?zt(e):e;for(;gt(s)&&!ue(s);){let p=et(s),d=We(s);!d&&p.position==="fixed"&&(l=null),(c?!d&&!l:!d&&p.position==="static"&&!!l&&["absolute","fixed"].includes(l.position)||Qt(s)&&!d&&gn(e,s))?a=a.filter(x=>x!==s):l=p,s=zt(s)}return o.set(e,a),a}function pa(e){let{element:o,boundary:n,rootBoundary:a,strategy:l}=e,s=[...n==="clippingAncestors"?sa(o,this._c):[].concat(n),a],p=s[0],d=s.reduce((g,x)=>{let m=sn(o,x,l);return g.top=Lt(m.top,g.top),g.right=fe(m.right,g.right),g.bottom=fe(m.bottom,g.bottom),g.left=Lt(m.left,g.left),g},sn(o,p,l));return{width:d.right-d.left,height:d.bottom-d.top,x:d.left,y:d.top}}function da(e){return dn(e)}function fa(e,o,n){let a=ct(o),l=Ct(o),c=n==="fixed",s=me(e,!0,c,o),p={scrollLeft:0,scrollTop:0},d=St(0);if(a||!a&&!c)if((Ot(o)!=="body"||Qt(l))&&(p=ge(o)),a){let g=me(o,!0,c,o);d.x=g.x+o.clientLeft,d.y=g.y+o.clientTop}else l&&(d.x=un(l));return{x:s.left+p.scrollLeft-d.x,y:s.top+p.scrollTop-d.y,width:s.width,height:s.height}}function pn(e,o){return!ct(e)||et(e).position==="fixed"?null:o?o(e):e.offsetParent}function mn(e,o){let n=J(e);if(!ct(e))return n;let a=pn(e,o);for(;a&&an(a)&&et(a).position==="static";)a=pn(a,o);return a&&(Ot(a)==="html"||Ot(a)==="body"&&et(a).position==="static"&&!We(a))?n:a||ln(e)||n}var ha=async function(e){let{reference:o,floating:n,strategy:a}=e,l=this.getOffsetParent||mn,c=this.getDimensions;return{reference:fa(o,await l(n),a),floating:{x:0,y:0,...await c(n)}}};function ua(e){return et(e).direction==="rtl"}var Be={convertOffsetParentRelativeRectToViewportRelativeRect:na,getDocumentElement:Ct,getClippingRect:pa,getOffsetParent:mn,getElementRects:ha,getClientRects:aa,getDimensions:da,getScale:te,isElement:gt,isRTL:ua};var yn=(e,o,n)=>{let a=new Map,l={platform:Be,...n},c={...l.platform,_c:a};return on(e,o,{...l,platform:c})};function bn(e){return ga(e)}function io(e){return e.assignedSlot?e.assignedSlot:e.parentNode instanceof ShadowRoot?e.parentNode.host:e.parentNode}function ga(e){for(let o=e;o;o=io(o))if(o instanceof Element&&getComputedStyle(o).display==="none")return null;for(let o=io(e);o;o=io(o)){if(!(o instanceof Element))continue;let n=getComputedStyle(o);if(n.display!=="contents"&&(n.position!=="static"||n.filter!=="none"||o.tagName==="BODY"))return o}return null}async function xn(e,o,n){return yn(e,o,{platform:{...Be,getOffsetParent:a=>Be.getOffsetParent(a,bn)},middleware:[ao({crossAxis:!0}),no({allowedPlacements:[n]})]})}var Q=function(e,o,n,a){var l=arguments.length,c=l<3?o:a===null?a=Object.getOwnPropertyDescriptor(o,n):a,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")c=Reflect.decorate(e,o,n,a);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(c=(l<3?s(c):l>3?s(o,n,c):s(o,n))||c);return l>3&&c&&Object.defineProperty(o,n,c),c},I=class extends ye.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new ye.Debouncer,this.revealDebouncer=new ye.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return Sn.html`
|
|
584
|
+
`;var qr=["top","right","bottom","left"],Xr=["start","end"],Je=qr.reduce((e,o)=>e.concat(o,o+"-"+Xr[0],o+"-"+Xr[1]),[]),fe=Math.min,At=Math.max,ye=Math.round;var St=e=>({x:e,y:e}),Ya={left:"right",right:"left",bottom:"top",top:"bottom"},Xa={start:"end",end:"start"};function Qe(e,o,a){return At(e,fe(o,a))}function $e(e,o){return typeof e=="function"?e(o):e}function Jt(e){return e.split("-")[0]}function $t(e){return e.split("-")[1]}function to(e){return e==="x"?"y":"x"}function eo(e){return e==="y"?"height":"width"}function Ie(e){return["top","bottom"].includes(Jt(e))?"y":"x"}function oo(e){return to(Ie(e))}function Jr(e,o,a){a===void 0&&(a=!1);let i=$t(e),c=oo(e),l=eo(c),s=c==="x"?i===(a?"end":"start")?"right":"left":i==="start"?"bottom":"top";return o.reference[l]>o.floating[l]&&(s=qe(s)),[s,qe(s)]}function Qr(e){return e.replace(/start|end/g,o=>Xa[o])}function qe(e){return e.replace(/left|right|bottom|top/g,o=>Ya[o])}function qa(e){return{top:0,right:0,bottom:0,left:0,...e}}function ta(e){return typeof e!="number"?qa(e):{top:e,right:e,bottom:e,left:e}}function Tt(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function ea(e,o,a){let{reference:i,floating:c}=e,l=Ie(o),s=oo(o),p=eo(s),y=Jt(o),m=l==="y",O=i.x+i.width/2-c.width/2,b=i.y+i.height/2-c.height/2,N=i[p]/2-c[p]/2,v;switch(y){case"top":v={x:O,y:i.y-c.height};break;case"bottom":v={x:O,y:i.y+i.height};break;case"right":v={x:i.x+i.width,y:b};break;case"left":v={x:i.x-c.width,y:b};break;default:v={x:i.x,y:i.y}}switch($t(o)){case"start":v[s]-=N*(a&&m?-1:1);break;case"end":v[s]+=N*(a&&m?-1:1);break}return v}var oa=async(e,o,a)=>{let{placement:i="bottom",strategy:c="absolute",middleware:l=[],platform:s}=a,p=l.filter(Boolean),y=await(s.isRTL==null?void 0:s.isRTL(o)),m=await s.getElementRects({reference:e,floating:o,strategy:c}),{x:O,y:b}=ea(m,i,y),N=i,v={},w=0;for(let z=0;z<p.length;z++){let{name:_,fn:k}=p[z],{x:D,y:Y,data:Et,reset:V}=await k({x:O,y:b,initialPlacement:i,placement:N,strategy:c,middlewareData:v,rects:m,platform:s,elements:{reference:e,floating:o}});if(O=D??O,b=Y??b,v={...v,[_]:{...v[_],...Et}},V&&w<=50){w++,typeof V=="object"&&(V.placement&&(N=V.placement),V.rects&&(m=V.rects===!0?await s.getElementRects({reference:e,floating:o,strategy:c}):V.rects),{x:O,y:b}=ea(m,N,y)),z=-1;continue}}return{x:O,y:b,placement:N,strategy:c,middlewareData:v}};async function ro(e,o){var a;o===void 0&&(o={});let{x:i,y:c,platform:l,rects:s,elements:p,strategy:y}=e,{boundary:m="clippingAncestors",rootBoundary:O="viewport",elementContext:b="floating",altBoundary:N=!1,padding:v=0}=$e(o,e),w=ta(v),_=p[N?b==="floating"?"reference":"floating":b],k=Tt(await l.getClippingRect({element:(a=await(l.isElement==null?void 0:l.isElement(_)))==null||a?_:_.contextElement||await(l.getDocumentElement==null?void 0:l.getDocumentElement(p.floating)),boundary:m,rootBoundary:O,strategy:y})),D=b==="floating"?{...s.floating,x:i,y:c}:s.reference,Y=await(l.getOffsetParent==null?void 0:l.getOffsetParent(p.floating)),Et=await(l.isElement==null?void 0:l.isElement(Y))?await(l.getScale==null?void 0:l.getScale(Y))||{x:1,y:1}:{x:1,y:1},V=Tt(l.convertOffsetParentRelativeRectToViewportRelativeRect?await l.convertOffsetParentRelativeRectToViewportRelativeRect({rect:D,offsetParent:Y,strategy:y}):D);return{top:(k.top-V.top+w.top)/Et.y,bottom:(V.bottom-k.bottom+w.bottom)/Et.y,left:(k.left-V.left+w.left)/Et.x,right:(V.right-k.right+w.right)/Et.x}}function Ja(e,o,a){return(e?[...a.filter(c=>$t(c)===e),...a.filter(c=>$t(c)!==e)]:a.filter(c=>Jt(c)===c)).filter(c=>e?$t(c)===e||(o?Qr(c)!==c:!1):!0)}var ao=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(o){var a,i,c;let{rects:l,middlewareData:s,placement:p,platform:y,elements:m}=o,{crossAxis:O=!1,alignment:b,allowedPlacements:N=Je,autoAlignment:v=!0,...w}=$e(e,o),z=b!==void 0||N===Je?Ja(b||null,v,N):N,_=await ro(o,w),k=((a=s.autoPlacement)==null?void 0:a.index)||0,D=z[k];if(D==null)return{};let Y=Jr(D,l,await(y.isRTL==null?void 0:y.isRTL(m.floating)));if(p!==D)return{reset:{placement:z[0]}};let Et=[_[Jt(D)],_[Y[0]],_[Y[1]]],V=[...((i=s.autoPlacement)==null?void 0:i.overflows)||[],{placement:D,overflows:Et}],so=z[k+1];if(so)return{data:{index:k+1,overflows:V},reset:{placement:so}};let po=V.map(dt=>{let re=$t(dt.placement);return[dt.placement,re&&O?dt.overflows.slice(0,2).reduce((Ta,za)=>Ta+za,0):dt.overflows[0],dt.overflows]}).sort((dt,re)=>dt[1]-re[1]),fo=((c=po.filter(dt=>dt[2].slice(0,$t(dt[0])?2:3).every(re=>re<=0))[0])==null?void 0:c[0])||po[0][0];return fo!==p?{data:{index:k+1,overflows:V},reset:{placement:fo}}:{}}}};var no=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(o){let{x:a,y:i,placement:c}=o,{mainAxis:l=!0,crossAxis:s=!1,limiter:p={fn:_=>{let{x:k,y:D}=_;return{x:k,y:D}}},...y}=$e(e,o),m={x:a,y:i},O=await ro(o,y),b=Ie(Jt(c)),N=to(b),v=m[N],w=m[b];if(l){let _=N==="y"?"top":"left",k=N==="y"?"bottom":"right",D=v+O[_],Y=v-O[k];v=Qe(D,v,Y)}if(s){let _=b==="y"?"top":"left",k=b==="y"?"bottom":"right",D=w+O[_],Y=w-O[k];w=Qe(D,w,Y)}let z=p.fn({...o,[N]:v,[b]:w});return{...z,data:{x:z.x-a,y:z.y-i}}}}};function Ot(e){return aa(e)?(e.nodeName||"").toLowerCase():"#document"}function J(e){var o;return(e==null||(o=e.ownerDocument)==null?void 0:o.defaultView)||window}function Ct(e){var o;return(o=(aa(e)?e.ownerDocument:e.document)||window.document)==null?void 0:o.documentElement}function aa(e){return e instanceof Node||e instanceof J(e).Node}function gt(e){return e instanceof Element||e instanceof J(e).Element}function lt(e){return e instanceof HTMLElement||e instanceof J(e).HTMLElement}function ra(e){return typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof J(e).ShadowRoot}function Qt(e){let{overflow:o,overflowX:a,overflowY:i,display:c}=et(e);return/auto|scroll|overlay|hidden|clip/.test(o+i+a)&&!["inline","contents"].includes(c)}function na(e){return["table","td","th"].includes(Ot(e))}function We(e){let o=Pe(),a=et(e);return a.transform!=="none"||a.perspective!=="none"||(a.containerType?a.containerType!=="normal":!1)||!o&&(a.backdropFilter?a.backdropFilter!=="none":!1)||!o&&(a.filter?a.filter!=="none":!1)||["transform","perspective","filter"].some(i=>(a.willChange||"").includes(i))||["paint","layout","strict","content"].some(i=>(a.contain||"").includes(i))}function ia(e){let o=zt(e);for(;lt(o)&&!ue(o);){if(We(o))return o;o=zt(o)}return null}function Pe(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function ue(e){return["html","body","#document"].includes(Ot(e))}function et(e){return J(e).getComputedStyle(e)}function ge(e){return gt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function zt(e){if(Ot(e)==="html")return e;let o=e.assignedSlot||e.parentNode||ra(e)&&e.host||Ct(e);return ra(o)?o.host:o}function ca(e){let o=zt(e);return ue(o)?e.ownerDocument?e.ownerDocument.body:e.body:lt(o)&&Qt(o)?o:ca(o)}function Be(e,o,a){var i;o===void 0&&(o=[]),a===void 0&&(a=!0);let c=ca(e),l=c===((i=e.ownerDocument)==null?void 0:i.body),s=J(c);return l?o.concat(s,s.visualViewport||[],Qt(c)?c:[],s.frameElement&&a?Be(s.frameElement):[]):o.concat(c,Be(c,[],a))}function da(e){let o=et(e),a=parseFloat(o.width)||0,i=parseFloat(o.height)||0,c=lt(e),l=c?e.offsetWidth:a,s=c?e.offsetHeight:i,p=ye(a)!==l||ye(i)!==s;return p&&(a=l,i=s),{width:a,height:i,$:p}}function pa(e){return gt(e)?e:e.contextElement}function te(e){let o=pa(e);if(!lt(o))return St(1);let a=o.getBoundingClientRect(),{width:i,height:c,$:l}=da(o),s=(l?ye(a.width):a.width)/i,p=(l?ye(a.height):a.height)/c;return(!s||!Number.isFinite(s))&&(s=1),(!p||!Number.isFinite(p))&&(p=1),{x:s,y:p}}var en=St(0);function fa(e){let o=J(e);return!Pe()||!o.visualViewport?en:{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}}function on(e,o,a){return o===void 0&&(o=!1),!a||o&&a!==J(e)?!1:o}function he(e,o,a,i){o===void 0&&(o=!1),a===void 0&&(a=!1);let c=e.getBoundingClientRect(),l=pa(e),s=St(1);o&&(i?gt(i)&&(s=te(i)):s=te(e));let p=on(l,a,i)?fa(l):St(0),y=(c.left+p.x)/s.x,m=(c.top+p.y)/s.y,O=c.width/s.x,b=c.height/s.y;if(l){let N=J(l),v=i&>(i)?J(i):i,w=N.frameElement;for(;w&&i&&v!==N;){let z=te(w),_=w.getBoundingClientRect(),k=et(w),D=_.left+(w.clientLeft+parseFloat(k.paddingLeft))*z.x,Y=_.top+(w.clientTop+parseFloat(k.paddingTop))*z.y;y*=z.x,m*=z.y,O*=z.x,b*=z.y,y+=D,m+=Y,w=J(w).frameElement}}return Tt({width:O,height:b,x:y,y:m})}function rn(e){let{rect:o,offsetParent:a,strategy:i}=e,c=lt(a),l=Ct(a);if(a===l)return o;let s={scrollLeft:0,scrollTop:0},p=St(1),y=St(0);if((c||!c&&i!=="fixed")&&((Ot(a)!=="body"||Qt(l))&&(s=ge(a)),lt(a))){let m=he(a);p=te(a),y.x=m.x+a.clientLeft,y.y=m.y+a.clientTop}return{width:o.width*p.x,height:o.height*p.y,x:o.x*p.x-s.scrollLeft*p.x+y.x,y:o.y*p.y-s.scrollTop*p.y+y.y}}function an(e){return Array.from(e.getClientRects())}function ya(e){return he(Ct(e)).left+ge(e).scrollLeft}function nn(e){let o=Ct(e),a=ge(e),i=e.ownerDocument.body,c=At(o.scrollWidth,o.clientWidth,i.scrollWidth,i.clientWidth),l=At(o.scrollHeight,o.clientHeight,i.scrollHeight,i.clientHeight),s=-a.scrollLeft+ya(e),p=-a.scrollTop;return et(i).direction==="rtl"&&(s+=At(o.clientWidth,i.clientWidth)-c),{width:c,height:l,x:s,y:p}}function cn(e,o){let a=J(e),i=Ct(e),c=a.visualViewport,l=i.clientWidth,s=i.clientHeight,p=0,y=0;if(c){l=c.width,s=c.height;let m=Pe();(!m||m&&o==="fixed")&&(p=c.offsetLeft,y=c.offsetTop)}return{width:l,height:s,x:p,y}}function ln(e,o){let a=he(e,!0,o==="fixed"),i=a.top+e.clientTop,c=a.left+e.clientLeft,l=lt(e)?te(e):St(1),s=e.clientWidth*l.x,p=e.clientHeight*l.y,y=c*l.x,m=i*l.y;return{width:s,height:p,x:y,y:m}}function la(e,o,a){let i;if(o==="viewport")i=cn(e,a);else if(o==="document")i=nn(Ct(e));else if(gt(o))i=ln(o,a);else{let c=fa(e);i={...o,x:o.x-c.x,y:o.y-c.y}}return Tt(i)}function ua(e,o){let a=zt(e);return a===o||!gt(a)||ue(a)?!1:et(a).position==="fixed"||ua(a,o)}function sn(e,o){let a=o.get(e);if(a)return a;let i=Be(e,[],!1).filter(p=>gt(p)&&Ot(p)!=="body"),c=null,l=et(e).position==="fixed",s=l?zt(e):e;for(;gt(s)&&!ue(s);){let p=et(s),y=We(s);!y&&p.position==="fixed"&&(c=null),(l?!y&&!c:!y&&p.position==="static"&&!!c&&["absolute","fixed"].includes(c.position)||Qt(s)&&!y&&ua(e,s))?i=i.filter(O=>O!==s):c=p,s=zt(s)}return o.set(e,i),i}function dn(e){let{element:o,boundary:a,rootBoundary:i,strategy:c}=e,s=[...a==="clippingAncestors"?sn(o,this._c):[].concat(a),i],p=s[0],y=s.reduce((m,O)=>{let b=la(o,O,c);return m.top=At(b.top,m.top),m.right=fe(b.right,m.right),m.bottom=fe(b.bottom,m.bottom),m.left=At(b.left,m.left),m},la(o,p,c));return{width:y.right-y.left,height:y.bottom-y.top,x:y.left,y:y.top}}function pn(e){return da(e)}function fn(e,o,a){let i=lt(o),c=Ct(o),l=a==="fixed",s=he(e,!0,l,o),p={scrollLeft:0,scrollTop:0},y=St(0);if(i||!i&&!l)if((Ot(o)!=="body"||Qt(c))&&(p=ge(o)),i){let m=he(o,!0,l,o);y.x=m.x+o.clientLeft,y.y=m.y+o.clientTop}else c&&(y.x=ya(c));return{x:s.left+p.scrollLeft-y.x,y:s.top+p.scrollTop-y.y,width:s.width,height:s.height}}function sa(e,o){return!lt(e)||et(e).position==="fixed"?null:o?o(e):e.offsetParent}function ga(e,o){let a=J(e);if(!lt(e))return a;let i=sa(e,o);for(;i&&na(i)&&et(i).position==="static";)i=sa(i,o);return i&&(Ot(i)==="html"||Ot(i)==="body"&&et(i).position==="static"&&!We(i))?a:i||ia(e)||a}var yn=async function(e){let{reference:o,floating:a,strategy:i}=e,c=this.getOffsetParent||ga,l=this.getDimensions;return{reference:fn(o,await c(a),i),floating:{x:0,y:0,...await l(a)}}};function un(e){return et(e).direction==="rtl"}var Te={convertOffsetParentRelativeRectToViewportRelativeRect:rn,getDocumentElement:Ct,getClippingRect:dn,getOffsetParent:ga,getElementRects:yn,getClientRects:an,getDimensions:pn,getScale:te,isElement:gt,isRTL:un};var ha=(e,o,a)=>{let i=new Map,c={platform:Te,...a},l={...c.platform,_c:i};return oa(e,o,{...c,platform:l})};function ma(e){return gn(e)}function io(e){return e.assignedSlot?e.assignedSlot:e.parentNode instanceof ShadowRoot?e.parentNode.host:e.parentNode}function gn(e){for(let o=e;o;o=io(o))if(o instanceof Element&&getComputedStyle(o).display==="none")return null;for(let o=io(e);o;o=io(o)){if(!(o instanceof Element))continue;let a=getComputedStyle(o);if(a.display!=="contents"&&(a.position!=="static"||a.filter!=="none"||o.tagName==="BODY"))return o}return null}async function ba(e,o,a){return ha(e,o,{platform:{...Te,getOffsetParent:i=>Te.getOffsetParent(i,ma)},middleware:[no({crossAxis:!0}),ao({allowedPlacements:[a]})]})}var Q=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},B=class extends me.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new me.Debouncer,this.revealDebouncer=new me.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return xa.html`
|
|
585
585
|
<div part="container"
|
|
586
586
|
class="ft-tooltip--container ${this.inline?"ft-tooltip--inline":""}"
|
|
587
587
|
@mouseenter=${this.onHover}
|
|
@@ -599,16 +599,16 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
599
599
|
</div>
|
|
600
600
|
</div>
|
|
601
601
|
</div>
|
|
602
|
-
`}updated(o){o.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(o)}contentAvailableCallback(o){super.contentAvailableCallback(o),["visible","text"].some(
|
|
602
|
+
`}updated(o){o.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(o)}contentAvailableCallback(o){super.contentAvailableCallback(o),["visible","text"].some(a=>o.has(a))&&this.visible&&this.positionTooltip()}async show(o){this.visible=!0,o!=null&&await this.hideDebounce.run(()=>{this.hide()},o)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var o;return((o=this.slotNodes)!==null&&o!==void 0?o:[]).filter(a=>a.nodeType==Node.ELEMENT_NODE)[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){let o=this.tooltipContent.style;switch(o.transition="none",this.validPosition){case"top":o.top=this.tooltip.clientHeight+"px",o.left="0";break;case"bottom":o.top=-this.tooltip.clientHeight+"px",o.left="0";break;case"left":o.top="0",o.left=this.tooltip.clientWidth+"px";break;case"right":o.top="0",o.left=-this.tooltip.clientWidth+"px";break}}}positionTooltip(){this.resetTooltipContent(),this.tooltip&&this.slottedElement&&(this.tooltip.style.left="",this.tooltip.style.top="",ba(this.slottedElement,this.tooltip,this.position).then(({x:o,y:a})=>{this.tooltip&&(this.tooltip.style.left=`${o}px`,this.tooltip.style.top=`${a}px`)})),this.revealDebouncer.run(()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")},this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout(()=>window.addEventListener("touchstart",o=>{o.composedPath().includes(this.container)||this.onOut()},{once:!0}),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}onClick(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(o,a){return Math.max(o,Math.min(0,-a))}};B.elementDefinitions={"ft-typography":ct};B.styles=Yr;Q([(0,M.property)()],B.prototype,"text",void 0);Q([(0,M.property)({type:Boolean})],B.prototype,"manual",void 0);Q([(0,M.property)({type:Boolean})],B.prototype,"inline",void 0);Q([(0,M.property)({type:Number})],B.prototype,"delay",void 0);Q([(0,M.property)()],B.prototype,"position",void 0);Q([(0,M.queryAssignedNodes)()],B.prototype,"slotNodes",void 0);Q([(0,M.query)(".ft-tooltip--container")],B.prototype,"container",void 0);Q([(0,M.query)(".ft-tooltip")],B.prototype,"tooltip",void 0);Q([(0,M.query)(".ft-tooltip--content")],B.prototype,"tooltipContent",void 0);Q([(0,M.state)()],B.prototype,"visible",void 0);Q([(0,M.eventOptions)({passive:!0})],B.prototype,"onTouch",null);Q([(0,M.eventOptions)({passive:!0})],B.prototype,"onHover",null);Q([(0,M.eventOptions)({passive:!0})],B.prototype,"onOut",null);Q([(0,M.eventOptions)({passive:!0})],B.prototype,"onClick",null);(0,Sa.customElement)("ft-tooltip")(B);var va=x(L());var Oa=x(U()),Ca=x(L());var kt=class extends Ca.FtLitElement{render(){return Oa.html`
|
|
603
603
|
<div class="ft-loader">
|
|
604
604
|
<div></div>
|
|
605
605
|
<div></div>
|
|
606
606
|
<div></div>
|
|
607
607
|
<div></div>
|
|
608
608
|
</div>
|
|
609
|
-
`}};
|
|
609
|
+
`}};kt.styles=Sr;(0,va.customElement)("ft-loader")(kt);var ee=x(U()),Na=x(ve()),j=x(pt()),tt=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},T=class extends(0,oe.toFtFormComponent)(oe.FtLitElement,"button"){get buttonClasses(){return{}}get typographyVariant(){return""}constructor(){super(),this.role="button",this.type="button",this.disabled=!1,this.label="",this.icon=void 0,this.trailingIcon=!1,this.loading=!1,this.ariaLabel=null,this.tooltipPosition="bottom",this.hideTooltip=!1,this.forceTooltip=!1,this.addEventListener("click",o=>{var a;this.isDisabled()?(o.preventDefault(),o.stopPropagation(),o.stopImmediatePropagation()):this.type=="submit"&&((a=this.form)===null||a===void 0||a.requestSubmit())})}render(){var o;return this.addTooltipIfNeeded(ee.html`
|
|
610
610
|
<button part="button"
|
|
611
|
-
class="${(0,
|
|
611
|
+
class="${(0,Na.classMap)(this.buttonClasses)}"
|
|
612
612
|
aria-label="${(o=this.ariaLabel)!==null&&o!==void 0?o:this.getLabel()}"
|
|
613
613
|
?disabled=${this.isDisabled()}>
|
|
614
614
|
<ft-ripple part="ripple" ?disabled=${this.isDisabled()}></ft-ripple>
|
|
@@ -632,7 +632,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
632
632
|
<ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon>
|
|
633
633
|
`:ee.html`
|
|
634
634
|
<slot part="icon" name="icon"></slot>
|
|
635
|
-
`}focus(){var o;(o=this.button)===null||o===void 0||o.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(o){return o instanceof HTMLSlotElement?o.assignedNodes().map(
|
|
635
|
+
`}focus(){var o;(o=this.button)===null||o===void 0||o.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(o){return o instanceof HTMLSlotElement?o.assignedNodes().map(a=>this.unslotText(a)).join(""):o?.textContent||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}};T.elementDefinitions={"ft-ripple":I,"ft-tooltip":B,"ft-typography":ct,"ft-icon":at,"ft-loader":kt};tt([(0,j.property)({type:String,reflect:!0})],T.prototype,"role",void 0);tt([(0,j.property)()],T.prototype,"type",void 0);tt([(0,j.property)({type:Boolean})],T.prototype,"disabled",void 0);tt([(0,j.property)()],T.prototype,"label",void 0);tt([(0,j.property)()],T.prototype,"icon",void 0);tt([(0,j.property)()],T.prototype,"iconVariant",void 0);tt([(0,j.property)({type:Boolean})],T.prototype,"trailingIcon",void 0);tt([(0,j.property)({type:Boolean})],T.prototype,"loading",void 0);tt([(0,j.property)({attribute:"aria-label"})],T.prototype,"ariaLabel",void 0);tt([(0,j.property)()],T.prototype,"tooltipPosition",void 0);tt([(0,j.property)({type:Boolean})],T.prototype,"hideTooltip",void 0);tt([(0,j.property)({type:Boolean})],T.prototype,"forceTooltip",void 0);tt([(0,j.query)(".ft-button")],T.prototype,"button",void 0);tt([(0,j.query)(".ft-button--label slot")],T.prototype,"slottedContent",void 0);var ze=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},st=class extends T{constructor(){super(...arguments),this.primary=!1,this.outlined=!1,this.dense=!1,this.round=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--outlined":this.outlined,"ft-button--dense":this.dense,"ft-button--round":this.round,"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0}}get typographyVariant(){return"button"}};st.styles=[Ea.safariEllipsisFix,Nr];ze([(0,be.property)({type:Boolean})],st.prototype,"primary",void 0);ze([(0,be.property)({type:Boolean})],st.prototype,"outlined",void 0);ze([(0,be.property)({type:Boolean})],st.prototype,"dense",void 0);ze([(0,be.property)({type:Boolean})],st.prototype,"round",void 0);var xe=x(pt());var He=x(L());var wa=x(U()),f=x(L());var La=[wa.css`
|
|
636
636
|
:host {
|
|
637
637
|
display: inline-block;
|
|
638
638
|
max-width: 100%;
|
|
@@ -682,7 +682,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
682
682
|
}
|
|
683
683
|
|
|
684
684
|
.ft-button:focus-visible {
|
|
685
|
-
outline-color: ${
|
|
685
|
+
outline-color: ${d.focusFocusRingColor};
|
|
686
686
|
outline-style: solid;
|
|
687
687
|
}
|
|
688
688
|
|
|
@@ -713,170 +713,391 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
713
713
|
border-radius: 50%;
|
|
714
714
|
}
|
|
715
715
|
|
|
716
|
-
/** Primary styles **/
|
|
716
|
+
/** Brand Primary styles **/
|
|
717
|
+
|
|
718
|
+
.ftds--family-brand.ft-button--primary {
|
|
719
|
+
${(0,f.setVariable)($.color,d.primaryBrandIconColor)};
|
|
720
|
+
|
|
721
|
+
${(0,f.setVariable)(u.color,d.primaryBrandStateLayerColor)};
|
|
722
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.primaryBrandHoverStateLayerOpacity)};
|
|
723
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.primaryBrandFocusStateLayerOpacity)};
|
|
724
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.primaryBrandActiveStateLayerOpacity)};
|
|
725
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.primaryBrandActiveStateLayerOpacity)};
|
|
726
|
+
|
|
727
|
+
background-color: ${d.primaryBrandBackgroundColor};
|
|
728
|
+
color: ${d.primaryBrandColor};
|
|
729
|
+
border-style: none;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.ftds--family-brand.ft-button--primary[disabled] {
|
|
733
|
+
opacity: ${d.primaryBrandDisabledComponentOpacity};
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.ftds--family-brand.ft-button--primary ft-icon {
|
|
737
|
+
color: ${d.primaryBrandIconColor};
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
/** Brand Secondary styles **/
|
|
741
|
+
|
|
742
|
+
.ftds--family-brand.ft-button--secondary {
|
|
743
|
+
${(0,f.setVariable)($.color,d.secondaryBrandIconColor)};
|
|
744
|
+
|
|
745
|
+
${(0,f.setVariable)(u.color,d.secondaryBrandStateLayerColor)};
|
|
746
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.secondaryBrandHoverStateLayerOpacity)};
|
|
747
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.secondaryBrandFocusStateLayerOpacity)};
|
|
748
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.secondaryBrandActiveStateLayerOpacity)};
|
|
749
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.secondaryBrandActiveStateLayerOpacity)};
|
|
750
|
+
|
|
751
|
+
background-color: ${d.secondaryBrandBackgroundColor};
|
|
752
|
+
color: ${d.secondaryBrandColor};
|
|
753
|
+
border-color: ${d.secondaryBrandBorderColor};
|
|
754
|
+
border-style: solid;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.ftds--family-brand.ft-button--secondary[disabled] {
|
|
758
|
+
opacity: ${d.secondaryBrandDisabledComponentOpacity};
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.ftds--family-brand.ft-button--secondary ft-icon {
|
|
762
|
+
color: ${d.secondaryBrandIconColor};
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
/** Brand Tertiary styles **/
|
|
766
|
+
|
|
767
|
+
.ftds--family-brand.ft-button--tertiary {
|
|
768
|
+
${(0,f.setVariable)($.color,d.tertiaryBrandIconColor)};
|
|
769
|
+
|
|
770
|
+
${(0,f.setVariable)(u.color,d.tertiaryBrandStateLayerColor)};
|
|
771
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.tertiaryBrandHoverStateLayerOpacity)};
|
|
772
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.tertiaryBrandFocusStateLayerOpacity)};
|
|
773
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.tertiaryBrandActiveStateLayerOpacity)};
|
|
774
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.tertiaryBrandActiveStateLayerOpacity)};
|
|
775
|
+
|
|
776
|
+
background-color: ${d.tertiaryBrandBackgroundColor};
|
|
777
|
+
color: ${d.tertiaryBrandColor};
|
|
778
|
+
border-style: none;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.ftds--family-brand.ft-button--tertiary[disabled] {
|
|
782
|
+
opacity: ${d.tertiaryBrandDisabledComponentOpacity};
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.ftds--family-brand.ft-button--tertiary ft-icon {
|
|
786
|
+
color: ${d.tertiaryBrandIconColor};
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/** Neutral Secondary styles **/
|
|
790
|
+
|
|
791
|
+
.ftds--family-neutral.ft-button--secondary {
|
|
792
|
+
${(0,f.setVariable)($.color,d.secondaryNeutralIconColor)};
|
|
793
|
+
|
|
794
|
+
${(0,f.setVariable)(u.backgroundColor,d.secondaryNeutralStateLayerColor)};
|
|
795
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.secondaryNeutralHoverStateLayerOpacity)};
|
|
796
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.secondaryNeutralFocusStateLayerOpacity)};
|
|
797
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.secondaryNeutralActiveStateLayerOpacity)};
|
|
798
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.secondaryNeutralActiveStateLayerOpacity)};
|
|
799
|
+
|
|
800
|
+
background-color: ${d.secondaryNeutralBackgroundColor};
|
|
801
|
+
color: ${d.secondaryNeutralColor};
|
|
802
|
+
border-color: ${d.secondaryNeutralBorderColor};
|
|
803
|
+
border-style: solid;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.ftds--family-neutral.ft-button--secondary[disabled] {
|
|
807
|
+
opacity: ${d.secondaryNeutralDisabledComponentOpacity};
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.ftds--family-neutral.ft-button--secondary ft-icon {
|
|
811
|
+
color: ${d.secondaryNeutralIconColor};
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
/** Neutral Tertiary styles **/
|
|
815
|
+
|
|
816
|
+
.ftds--family-neutral.ft-button--tertiary {
|
|
817
|
+
${(0,f.setVariable)($.color,d.tertiaryNeutralIconColor)};
|
|
818
|
+
|
|
819
|
+
${(0,f.setVariable)(u.backgroundColor,d.tertiaryNeutralStateLayerColor)};
|
|
820
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.tertiaryNeutralHoverStateLayerOpacity)};
|
|
821
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.tertiaryNeutralFocusStateLayerOpacity)};
|
|
822
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.tertiaryNeutralActiveStateLayerOpacity)};
|
|
823
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.tertiaryNeutralActiveStateLayerOpacity)};
|
|
824
|
+
|
|
825
|
+
background-color: ${d.tertiaryNeutralBackgroundColor};
|
|
826
|
+
color: ${d.tertiaryNeutralColor};
|
|
827
|
+
border-style: none;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.ftds--family-neutral.ft-button--tertiary[disabled] {
|
|
831
|
+
opacity: ${d.tertiaryNeutralDisabledComponentOpacity};
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
.ftds--family-neutral.ft-button--tertiary ft-icon {
|
|
835
|
+
color: ${d.tertiaryNeutralIconColor};
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
/** Info Secondary styles **/
|
|
839
|
+
|
|
840
|
+
.ftds--family-info.ft-button--secondary {
|
|
841
|
+
${(0,f.setVariable)($.color,d.secondaryInfoIconColor)};
|
|
842
|
+
|
|
843
|
+
${(0,f.setVariable)(u.backgroundColor,d.secondaryInfoStateLayerColor)};
|
|
844
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.secondaryInfoHoverStateLayerOpacity)};
|
|
845
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.secondaryInfoFocusStateLayerOpacity)};
|
|
846
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.secondaryInfoActiveStateLayerOpacity)};
|
|
847
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.secondaryInfoActiveStateLayerOpacity)};
|
|
848
|
+
|
|
849
|
+
background-color: ${d.secondaryInfoBackgroundColor};
|
|
850
|
+
color: ${d.secondaryInfoColor};
|
|
851
|
+
border-color: ${d.secondaryInfoBorderColor};
|
|
852
|
+
border-style: solid;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.ftds--family-info.ft-button--secondary[disabled] {
|
|
856
|
+
opacity: ${d.secondaryInfoDisabledComponentOpacity};
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.ftds--family-info.ft-button--secondary ft-icon {
|
|
860
|
+
color: ${d.secondaryInfoIconColor};
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
/** Info Tertiary styles **/
|
|
717
864
|
|
|
718
|
-
.ft-button--
|
|
719
|
-
${(0,
|
|
865
|
+
.ftds--family-info.ft-button--tertiary {
|
|
866
|
+
${(0,f.setVariable)($.color,d.tertiaryInfoIconColor)};
|
|
720
867
|
|
|
721
|
-
${(0,
|
|
722
|
-
${(0,
|
|
723
|
-
${(0,
|
|
724
|
-
${(0,
|
|
725
|
-
${(0,
|
|
868
|
+
${(0,f.setVariable)(u.backgroundColor,d.tertiaryInfoStateLayerColor)};
|
|
869
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.tertiaryInfoHoverStateLayerOpacity)};
|
|
870
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.tertiaryInfoFocusStateLayerOpacity)};
|
|
871
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.tertiaryInfoActiveStateLayerOpacity)};
|
|
872
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.tertiaryInfoActiveStateLayerOpacity)};
|
|
726
873
|
|
|
727
|
-
background-color: ${
|
|
728
|
-
color: ${
|
|
874
|
+
background-color: ${d.tertiaryInfoBackgroundColor};
|
|
875
|
+
color: ${d.tertiaryInfoColor};
|
|
729
876
|
border-style: none;
|
|
730
877
|
}
|
|
731
878
|
|
|
732
|
-
.ft-button--
|
|
733
|
-
opacity: ${
|
|
879
|
+
.ftds--family-info.ft-button--tertiary[disabled] {
|
|
880
|
+
opacity: ${d.tertiaryInfoDisabledComponentOpacity};
|
|
734
881
|
}
|
|
735
882
|
|
|
736
|
-
.ft-button--
|
|
737
|
-
color: ${
|
|
883
|
+
.ftds--family-info.ft-button--tertiary ft-icon {
|
|
884
|
+
color: ${d.tertiaryInfoIconColor};
|
|
738
885
|
}
|
|
739
886
|
|
|
740
|
-
/** Secondary styles **/
|
|
887
|
+
/** Success Secondary styles **/
|
|
741
888
|
|
|
742
|
-
.ft-button--secondary {
|
|
743
|
-
${(0,
|
|
889
|
+
.ftds--family-success.ft-button--secondary {
|
|
890
|
+
${(0,f.setVariable)($.color,d.secondarySuccessIconColor)};
|
|
744
891
|
|
|
745
|
-
${(0,
|
|
746
|
-
${(0,
|
|
747
|
-
${(0,
|
|
748
|
-
${(0,
|
|
749
|
-
${(0,
|
|
892
|
+
${(0,f.setVariable)(u.backgroundColor,d.secondarySuccessStateLayerColor)};
|
|
893
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.secondarySuccessHoverStateLayerOpacity)};
|
|
894
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.secondarySuccessFocusStateLayerOpacity)};
|
|
895
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.secondarySuccessActiveStateLayerOpacity)};
|
|
896
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.secondarySuccessActiveStateLayerOpacity)};
|
|
750
897
|
|
|
751
|
-
background-color: ${
|
|
752
|
-
color: ${
|
|
753
|
-
border-color: ${
|
|
898
|
+
background-color: ${d.secondarySuccessBackgroundColor};
|
|
899
|
+
color: ${d.secondarySuccessColor};
|
|
900
|
+
border-color: ${d.secondarySuccessBorderColor};
|
|
754
901
|
border-style: solid;
|
|
755
902
|
}
|
|
756
903
|
|
|
757
|
-
.ft-button--secondary[disabled] {
|
|
758
|
-
opacity: ${
|
|
904
|
+
.ftds--family-success.ft-button--secondary[disabled] {
|
|
905
|
+
opacity: ${d.secondarySuccessDisabledComponentOpacity};
|
|
759
906
|
}
|
|
760
907
|
|
|
761
|
-
.ft-button--secondary ft-icon {
|
|
762
|
-
color: ${
|
|
908
|
+
.ftds--family-success.ft-button--secondary ft-icon {
|
|
909
|
+
color: ${d.secondarySuccessIconColor};
|
|
763
910
|
}
|
|
764
911
|
|
|
765
|
-
/** Tertiary styles **/
|
|
912
|
+
/** Success Tertiary styles **/
|
|
766
913
|
|
|
767
|
-
.ft-button--tertiary {
|
|
768
|
-
${(0,
|
|
914
|
+
.ftds--family-success.ft-button--tertiary {
|
|
915
|
+
${(0,f.setVariable)($.color,d.tertiarySuccessIconColor)};
|
|
769
916
|
|
|
770
|
-
${(0,
|
|
771
|
-
${(0,
|
|
772
|
-
${(0,
|
|
773
|
-
${(0,
|
|
774
|
-
${(0,
|
|
917
|
+
${(0,f.setVariable)(u.backgroundColor,d.tertiarySuccessStateLayerColor)};
|
|
918
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.tertiarySuccessHoverStateLayerOpacity)};
|
|
919
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.tertiarySuccessFocusStateLayerOpacity)};
|
|
920
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.tertiarySuccessActiveStateLayerOpacity)};
|
|
921
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.tertiarySuccessActiveStateLayerOpacity)};
|
|
775
922
|
|
|
776
|
-
background-color: ${
|
|
777
|
-
color: ${
|
|
923
|
+
background-color: ${d.tertiarySuccessBackgroundColor};
|
|
924
|
+
color: ${d.tertiarySuccessColor};
|
|
778
925
|
border-style: none;
|
|
779
926
|
}
|
|
780
927
|
|
|
781
|
-
.ft-button--tertiary[disabled] {
|
|
782
|
-
opacity: ${
|
|
928
|
+
.ftds--family-success.ft-button--tertiary[disabled] {
|
|
929
|
+
opacity: ${d.tertiarySuccessDisabledComponentOpacity};
|
|
783
930
|
}
|
|
784
931
|
|
|
785
|
-
.ft-button--tertiary ft-icon {
|
|
786
|
-
color: ${
|
|
932
|
+
.ftds--family-success.ft-button--tertiary ft-icon {
|
|
933
|
+
color: ${d.tertiarySuccessIconColor};
|
|
787
934
|
}
|
|
788
935
|
|
|
789
|
-
/**
|
|
936
|
+
/** Warning Secondary styles **/
|
|
790
937
|
|
|
791
|
-
.ftds--family-
|
|
792
|
-
${(0,
|
|
938
|
+
.ftds--family-warning.ft-button--secondary {
|
|
939
|
+
${(0,f.setVariable)($.color,d.secondaryWarningIconColor)};
|
|
793
940
|
|
|
794
|
-
${(0,
|
|
795
|
-
${(0,
|
|
796
|
-
${(0,
|
|
797
|
-
${(0,
|
|
798
|
-
${(0,
|
|
941
|
+
${(0,f.setVariable)(u.backgroundColor,d.secondaryWarningStateLayerColor)};
|
|
942
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.secondaryWarningHoverStateLayerOpacity)};
|
|
943
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.secondaryWarningFocusStateLayerOpacity)};
|
|
944
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.secondaryWarningActiveStateLayerOpacity)};
|
|
945
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.secondaryWarningActiveStateLayerOpacity)};
|
|
799
946
|
|
|
800
|
-
background-color: ${
|
|
801
|
-
color: ${
|
|
947
|
+
background-color: ${d.secondaryWarningBackgroundColor};
|
|
948
|
+
color: ${d.secondaryWarningColor};
|
|
949
|
+
border-color: ${d.secondaryWarningBorderColor};
|
|
950
|
+
border-style: solid;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
.ftds--family-warning.ft-button--secondary[disabled] {
|
|
954
|
+
opacity: ${d.secondaryWarningDisabledComponentOpacity};
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.ftds--family-warning.ft-button--secondary ft-icon {
|
|
958
|
+
color: ${d.secondaryWarningIconColor};
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
/** Warning Tertiary styles **/
|
|
962
|
+
|
|
963
|
+
.ftds--family-warning.ft-button--tertiary {
|
|
964
|
+
${(0,f.setVariable)($.color,d.tertiaryWarningIconColor)};
|
|
965
|
+
|
|
966
|
+
${(0,f.setVariable)(u.backgroundColor,d.tertiaryWarningStateLayerColor)};
|
|
967
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.tertiaryWarningHoverStateLayerOpacity)};
|
|
968
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.tertiaryWarningFocusStateLayerOpacity)};
|
|
969
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.tertiaryWarningActiveStateLayerOpacity)};
|
|
970
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.tertiaryWarningActiveStateLayerOpacity)};
|
|
971
|
+
|
|
972
|
+
background-color: ${d.tertiaryWarningBackgroundColor};
|
|
973
|
+
color: ${d.tertiaryWarningColor};
|
|
974
|
+
border-style: none;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.ftds--family-warning.ft-button--tertiary[disabled] {
|
|
978
|
+
opacity: ${d.tertiaryWarningDisabledComponentOpacity};
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.ftds--family-warning.ft-button--tertiary ft-icon {
|
|
982
|
+
color: ${d.tertiaryWarningIconColor};
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
/** Error Secondary styles **/
|
|
986
|
+
|
|
987
|
+
.ftds--family-error.ft-button--secondary {
|
|
988
|
+
${(0,f.setVariable)($.color,d.secondaryErrorIconColor)};
|
|
989
|
+
|
|
990
|
+
${(0,f.setVariable)(u.backgroundColor,d.secondaryErrorStateLayerColor)};
|
|
991
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.secondaryErrorHoverStateLayerOpacity)};
|
|
992
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.secondaryErrorFocusStateLayerOpacity)};
|
|
993
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.secondaryErrorActiveStateLayerOpacity)};
|
|
994
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.secondaryErrorActiveStateLayerOpacity)};
|
|
995
|
+
|
|
996
|
+
background-color: ${d.secondaryErrorBackgroundColor};
|
|
997
|
+
color: ${d.secondaryErrorColor};
|
|
998
|
+
border-color: ${d.secondaryErrorBorderColor};
|
|
999
|
+
border-style: solid;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.ftds--family-error.ft-button--secondary[disabled] {
|
|
1003
|
+
opacity: ${d.secondaryErrorDisabledComponentOpacity};
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.ftds--family-error.ft-button--secondary ft-icon {
|
|
1007
|
+
color: ${d.secondaryErrorIconColor};
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
/** Error Tertiary styles **/
|
|
1011
|
+
|
|
1012
|
+
.ftds--family-error.ft-button--tertiary {
|
|
1013
|
+
${(0,f.setVariable)($.color,d.tertiaryErrorIconColor)};
|
|
1014
|
+
|
|
1015
|
+
${(0,f.setVariable)(u.backgroundColor,d.tertiaryErrorStateLayerColor)};
|
|
1016
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceHover,d.tertiaryErrorHoverStateLayerOpacity)};
|
|
1017
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceFocused,d.tertiaryErrorFocusStateLayerOpacity)};
|
|
1018
|
+
${(0,f.setVariable)(u.opacityContentOnSurfaceSelected,d.tertiaryErrorActiveStateLayerOpacity)};
|
|
1019
|
+
${(0,f.setVariable)(u.opacityContentOnSurfacePressed,d.tertiaryErrorActiveStateLayerOpacity)};
|
|
1020
|
+
|
|
1021
|
+
background-color: ${d.tertiaryErrorBackgroundColor};
|
|
1022
|
+
color: ${d.tertiaryErrorColor};
|
|
802
1023
|
border-style: none;
|
|
803
1024
|
}
|
|
804
1025
|
|
|
805
|
-
.ftds--family-
|
|
806
|
-
opacity: ${
|
|
1026
|
+
.ftds--family-error.ft-button--tertiary[disabled] {
|
|
1027
|
+
opacity: ${d.tertiaryErrorDisabledComponentOpacity};
|
|
807
1028
|
}
|
|
808
1029
|
|
|
809
|
-
.ftds--family-
|
|
810
|
-
color: ${
|
|
1030
|
+
.ftds--family-error.ft-button--tertiary ft-icon {
|
|
1031
|
+
color: ${d.tertiaryErrorIconColor};
|
|
811
1032
|
}
|
|
812
1033
|
|
|
813
1034
|
/** Large styles **/
|
|
814
1035
|
|
|
815
1036
|
.ftds--size-large {
|
|
816
|
-
${(0,
|
|
817
|
-
${(0,
|
|
1037
|
+
${(0,f.setVariable)(X.size,d.largeIconSize)};
|
|
1038
|
+
${(0,f.setVariable)($.size,d.largeIconSize)};
|
|
818
1039
|
|
|
819
|
-
height: ${
|
|
820
|
-
padding: 0 ${
|
|
821
|
-
gap: ${
|
|
822
|
-
border-radius: ${
|
|
823
|
-
border-width: ${
|
|
1040
|
+
height: ${d.largeHeight};
|
|
1041
|
+
padding: 0 ${d.largeHorizontalPadding};
|
|
1042
|
+
gap: ${d.largeGap};
|
|
1043
|
+
border-radius: ${d.largeBorderRadius};
|
|
1044
|
+
border-width: ${d.largeBorderWidth};
|
|
824
1045
|
}
|
|
825
1046
|
|
|
826
1047
|
.ftds--size-large:focus-visible {
|
|
827
|
-
outline-width: ${
|
|
828
|
-
outline-offset: ${
|
|
1048
|
+
outline-width: ${d.largeFocusOutlineWidth};
|
|
1049
|
+
outline-offset: ${d.largeFocusOutlineOffset};
|
|
829
1050
|
}
|
|
830
1051
|
|
|
831
1052
|
.ftds--size-large.ft-button--icon-only {
|
|
832
|
-
width: ${
|
|
1053
|
+
width: ${d.largeIconOnlyWidth};
|
|
833
1054
|
}
|
|
834
1055
|
|
|
835
1056
|
/** Small styles **/
|
|
836
1057
|
|
|
837
1058
|
.ftds--size-medium {
|
|
838
|
-
${(0,
|
|
839
|
-
${(0,
|
|
1059
|
+
${(0,f.setVariable)(X.size,d.mediumIconSize)};
|
|
1060
|
+
${(0,f.setVariable)($.size,d.mediumIconSize)};
|
|
840
1061
|
|
|
841
|
-
height: ${
|
|
842
|
-
padding: 0 ${
|
|
843
|
-
gap: ${
|
|
844
|
-
border-radius: ${
|
|
845
|
-
border-width: ${
|
|
1062
|
+
height: ${d.mediumHeight};
|
|
1063
|
+
padding: 0 ${d.mediumHorizontalPadding};
|
|
1064
|
+
gap: ${d.mediumGap};
|
|
1065
|
+
border-radius: ${d.mediumBorderRadius};
|
|
1066
|
+
border-width: ${d.mediumBorderWidth};
|
|
846
1067
|
}
|
|
847
1068
|
|
|
848
1069
|
.ftds--size-medium:focus-visible {
|
|
849
|
-
outline-width: ${
|
|
850
|
-
outline-offset: ${
|
|
1070
|
+
outline-width: ${d.mediumFocusOutlineWidth};
|
|
1071
|
+
outline-offset: ${d.mediumFocusOutlineOffset};
|
|
851
1072
|
}
|
|
852
1073
|
|
|
853
1074
|
.ftds--size-medium.ft-button--icon-only {
|
|
854
|
-
width: ${
|
|
1075
|
+
width: ${d.mediumIconOnlyWidth};
|
|
855
1076
|
}
|
|
856
1077
|
|
|
857
1078
|
|
|
858
1079
|
/** Small styles **/
|
|
859
1080
|
|
|
860
1081
|
.ftds--size-small {
|
|
861
|
-
${(0,
|
|
862
|
-
${(0,
|
|
1082
|
+
${(0,f.setVariable)(X.size,d.smallIconSize)};
|
|
1083
|
+
${(0,f.setVariable)($.size,d.smallIconSize)};
|
|
863
1084
|
|
|
864
|
-
height: ${
|
|
865
|
-
padding: 0 ${
|
|
866
|
-
gap: ${
|
|
867
|
-
border-radius: ${
|
|
868
|
-
border-width: ${
|
|
1085
|
+
height: ${d.smallHeight};
|
|
1086
|
+
padding: 0 ${d.smallHorizontalPadding};
|
|
1087
|
+
gap: ${d.smallGap};
|
|
1088
|
+
border-radius: ${d.smallBorderRadius};
|
|
1089
|
+
border-width: ${d.smallBorderWidth};
|
|
869
1090
|
}
|
|
870
1091
|
|
|
871
1092
|
.ftds--size-small:focus-visible {
|
|
872
|
-
outline-width: ${
|
|
873
|
-
outline-offset: ${
|
|
1093
|
+
outline-width: ${d.smallFocusOutlineWidth};
|
|
1094
|
+
outline-offset: ${d.smallFocusOutlineOffset};
|
|
874
1095
|
}
|
|
875
1096
|
|
|
876
1097
|
.ftds--size-small.ft-button--icon-only {
|
|
877
|
-
width: ${
|
|
1098
|
+
width: ${d.smallIconOnlyWidth};
|
|
878
1099
|
}
|
|
879
|
-
`,
|
|
1100
|
+
`,f.noTextSelect];var ke=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},vt=class extends(0,He.toFtdsBase)(T){constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.tertiary=!1,this.round=!1,this.family=Ee.brand,this.iconVariant=ft.fluid_topics}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--secondary":this.secondary,"ft-button--tertiary":this.tertiary||!this.primary&&!this.secondary,"ft-button--icon-only":!this.hasTextContent(),"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0,"ft-button--no-icon":!this.icon,"ft-button--round":this.round,...this.getDesignSystemBaseClasses()}}get typographyVariant(){switch(this.size){case _t.large:return Rt.body2medium;case _t.medium:return Rt.caption1medium;case _t.small:return Rt.caption2medium}}};vt.styles=[He.safariEllipsisFix,La];ke([(0,xe.property)({type:Boolean})],vt.prototype,"primary",void 0);ke([(0,xe.property)({type:Boolean})],vt.prototype,"secondary",void 0);ke([(0,xe.property)({type:Boolean})],vt.prototype,"tertiary",void 0);ke([(0,xe.property)({type:Boolean})],vt.prototype,"round",void 0);(0,co.customElement)("ft-button")(st);(0,co.customElement)("ftds-button")(vt);var Ia=x(L());var $a=x(U()),Ht=x(pt()),_e=x(L());var Nt;(function(e){e.S="S",e.M="M",e.L="L",e.XL="XL",e.XXL="XXL"})(Nt||(Nt={}));var Ra=x(U());var Aa=Ra.css`
|
|
880
1101
|
.ft-size-watcher--pixel {
|
|
881
1102
|
width: 0;
|
|
882
1103
|
height: 0;
|
|
@@ -895,13 +1116,13 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
895
1116
|
.ft-size-watcher--local .ft-size-watcher--watcher {
|
|
896
1117
|
width: 100%;
|
|
897
1118
|
}
|
|
898
|
-
`;var Se=function(e,o,
|
|
1119
|
+
`;var Se=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},lo=class extends CustomEvent{constructor(o,a){super("change",{detail:{size:o,category:a}})}},ot=class extends _e.FtLitElement{constructor(){super(...arguments),this.debounceTimeout=100,this.local=!1,this.size=0,this.category=Nt.S,this.resizeObserver=new ResizeObserver(()=>this.updateSize()),this.debouncer=new _e.Debouncer}render(){return $a.html`
|
|
899
1120
|
<div class="ft-size-watcher--pixel ${this.local?"ft-size-watcher--local":""}">
|
|
900
1121
|
<div class="ft-size-watcher--watcher"></div>
|
|
901
1122
|
</div>
|
|
902
|
-
`}contentAvailableCallback(o){super.contentAvailableCallback(o),this.watcher&&this.resizeObserver.observe(this.watcher),this.updateSize()}updateSize(){this.debouncer.run(()=>{this.watcher&&this.size!==this.watcher.clientWidth&&(this.size=this.watcher.clientWidth,this.size<768?this.category=Nt.S:this.size<976?this.category=Nt.M:this.size<1024?this.category=Nt.L:this.size<1440?this.category=Nt.XL:this.category=Nt.XXL,this.dispatchEvent(new
|
|
1123
|
+
`}contentAvailableCallback(o){super.contentAvailableCallback(o),this.watcher&&this.resizeObserver.observe(this.watcher),this.updateSize()}updateSize(){this.debouncer.run(()=>{this.watcher&&this.size!==this.watcher.clientWidth&&(this.size=this.watcher.clientWidth,this.size<768?this.category=Nt.S:this.size<976?this.category=Nt.M:this.size<1024?this.category=Nt.L:this.size<1440?this.category=Nt.XL:this.category=Nt.XXL,this.dispatchEvent(new lo(this.size,this.category)))},this.debounceTimeout)}};ot.elementDefinitions={};ot.styles=Aa;Se([(0,Ht.property)({type:Number})],ot.prototype,"debounceTimeout",void 0);Se([(0,Ht.property)({type:Boolean})],ot.prototype,"local",void 0);Se([(0,Ht.property)({type:Number,reflect:!0})],ot.prototype,"size",void 0);Se([(0,Ht.property)({type:String,reflect:!0})],ot.prototype,"category",void 0);Se([(0,Ht.query)(".ft-size-watcher--watcher")],ot.prototype,"watcher",void 0);(0,Ia.customElement)("ft-size-watcher")(ot);var G=function(e,o,a,i){var c=arguments.length,l=c<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,a):i,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,a,i);else for(var p=e.length-1;p>=0;p--)(s=e[p])&&(l=(c<3?s(l):c>3?s(o,a,l):s(o,a))||l);return c>3&&l&&Object.defineProperty(o,a,l),l},R=class extends Ba.FtLitElement{constructor(){super(...arguments),this.portalUrl="",this.opened=!1,this.displayMode=P.STANDARD,this.closeIcon=it.X_MARK,this.standardModeIcon=it.PIP,this.disableStandardMode=!1,this.theaterModeIcon=it.PIP_WIDE,this.disableTheaterMode=!1,this.fullscreenModeIcon=it.EXPAND_WIDE,this.disableFullscreenMode=!1,this.enableHomeButton=!1,this.homeIcon=it.HOME,this.enableOpenTabButton=!1,this.openTabIcon=it.EXTLINK_LIGHT,this.allowStandardMode=!0,this.allowTheaterMode=!0,this.allowFullscreenMode=!0}render(){let o={"ft-in-product-help":!0,"ft-in-product-help--opened":this.opened,"ft-in-product-help--standard":this.displayMode==P.STANDARD,"ft-in-product-help--theater":this.displayMode==P.THEATER,"ft-in-product-help--fullscreen":this.displayMode==P.FULLSCREEN},a=this.allowStandardMode&&(this.allowTheaterMode||this.allowFullscreenMode),i=this.allowTheaterMode&&(this.allowStandardMode||this.allowFullscreenMode),c=this.allowFullscreenMode&&(this.allowStandardMode||this.allowTheaterMode);return rt.html`
|
|
903
1124
|
<ft-size-watcher @change=${this.onViewportChange}></ft-size-watcher>
|
|
904
|
-
<div class="${(0,
|
|
1125
|
+
<div class="${(0,Wa.classMap)(o)}" part="container">
|
|
905
1126
|
<div class="ft-in-product-help--top-bar" part="top-bar">
|
|
906
1127
|
${this.enableHomeButton?rt.html`
|
|
907
1128
|
<ft-button icon="${this.homeIcon}"
|
|
@@ -924,37 +1145,37 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
924
1145
|
@click=${this.openTab}
|
|
925
1146
|
></ft-button>
|
|
926
1147
|
`:rt.nothing}
|
|
927
|
-
${
|
|
1148
|
+
${c?rt.html`
|
|
928
1149
|
<ft-button icon="${this.fullscreenModeIcon}"
|
|
929
|
-
class="${this.displayMode==
|
|
1150
|
+
class="${this.displayMode==P.FULLSCREEN?"ft-in-product-help--active-mode":""}"
|
|
930
1151
|
dense
|
|
931
1152
|
.iconVariant=${this.iconVariant}
|
|
932
1153
|
part="button-fullscreen top-bar-button"
|
|
933
1154
|
label="Fullscreen mode"
|
|
934
1155
|
tooltipPosition="left"
|
|
935
|
-
@click=${()=>this.setMode(
|
|
1156
|
+
@click=${()=>this.setMode(P.FULLSCREEN)}
|
|
936
1157
|
></ft-button>
|
|
937
1158
|
`:rt.nothing}
|
|
938
|
-
${
|
|
1159
|
+
${i?rt.html`
|
|
939
1160
|
<ft-button icon="${this.theaterModeIcon}"
|
|
940
|
-
class="${this.displayMode==
|
|
1161
|
+
class="${this.displayMode==P.THEATER?"ft-in-product-help--active-mode":""}"
|
|
941
1162
|
dense
|
|
942
1163
|
.iconVariant=${this.iconVariant}
|
|
943
1164
|
part="button-theater top-bar-button"
|
|
944
1165
|
label="Theater mode"
|
|
945
1166
|
tooltipPosition="left"
|
|
946
|
-
@click=${()=>this.setMode(
|
|
1167
|
+
@click=${()=>this.setMode(P.THEATER)}
|
|
947
1168
|
></ft-button>
|
|
948
1169
|
`:rt.nothing}
|
|
949
|
-
${
|
|
1170
|
+
${a?rt.html`
|
|
950
1171
|
<ft-button icon="${this.standardModeIcon}"
|
|
951
|
-
class="${this.displayMode==
|
|
1172
|
+
class="${this.displayMode==P.STANDARD?"ft-in-product-help--active-mode":""}"
|
|
952
1173
|
dense
|
|
953
1174
|
.iconVariant=${this.iconVariant}
|
|
954
1175
|
part="button-standard top-bar-button"
|
|
955
1176
|
label="Standard mode"
|
|
956
1177
|
tooltipPosition="left"
|
|
957
|
-
@click=${()=>this.setMode(
|
|
1178
|
+
@click=${()=>this.setMode(P.STANDARD)}
|
|
958
1179
|
></ft-button>
|
|
959
1180
|
`:rt.nothing}
|
|
960
1181
|
<ft-button icon="${this.closeIcon}"
|
|
@@ -968,7 +1189,7 @@ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-conte
|
|
|
968
1189
|
</div>
|
|
969
1190
|
<iframe src="${this.portalUrl}" part="iframe"/>
|
|
970
1191
|
</div>
|
|
971
|
-
`}update(o){super.update(o),(o.has("disableStandardMode")||o.has("disableTheaterMode")||o.has("disableFullscreenMode"))&&this.computeAllowedModes(),o.has("opened")&&this.updateModeOnOpen()}updateModeOnOpen(){this.allowStandardMode?this.displayMode=
|
|
1192
|
+
`}update(o){super.update(o),(o.has("disableStandardMode")||o.has("disableTheaterMode")||o.has("disableFullscreenMode"))&&this.computeAllowedModes(),o.has("opened")&&this.updateModeOnOpen()}updateModeOnOpen(){this.allowStandardMode?this.displayMode=P.STANDARD:this.allowTheaterMode?this.displayMode=P.THEATER:this.displayMode=P.FULLSCREEN}computeAllowedModes(){this.allowStandardMode=!this.disableStandardMode&&(this.isTablet()||this.isDesktop()),this.allowTheaterMode=!this.disableTheaterMode&&this.isDesktop(),this.allowFullscreenMode=!this.disableFullscreenMode}onViewportChange(){this.computeAllowedModes(),!this.allowStandardMode&&this.displayMode==P.STANDARD&&(this.displayMode=P.THEATER),!this.allowTheaterMode&&this.displayMode==P.THEATER&&(this.displayMode=P.FULLSCREEN)}setMode(o){this.displayMode=o,this.dispatchVisibilityChange()}open(){this.opened=!0}close(){this.opened=!1,this.displayMode=P.STANDARD,this.dispatchVisibilityChange()}dispatchVisibilityChange(){this.dispatchEvent(new Oe(this.opened,this.displayMode))}isTablet(){let o=getComputedStyle(this).getPropertyValue(A.tabletBreakpoint.name)||A.tabletBreakpoint.defaultValue;return window.matchMedia(`(min-width: ${o})`).matches}isDesktop(){let o=getComputedStyle(this).getPropertyValue(A.desktopBreakpoint.name)||A.desktopBreakpoint.defaultValue;return window.matchMedia(`(min-width: ${o})`).matches}navigateTo(o){this.iframe.contentWindow.postMessage({navigateTo:o},this.portalUrl)}openTab(){this.iframe.contentWindow.postMessage({openTabToCurrentUrl:!0},this.portalUrl)}};R.elementDefinitions={"ft-button":st,"ft-size-watcher":ot};R.styles=bo;G([(0,W.property)()],R.prototype,"portalUrl",void 0);G([(0,W.property)({reflect:!0,type:Boolean})],R.prototype,"opened",void 0);G([(0,W.property)({reflect:!0})],R.prototype,"displayMode",void 0);G([(0,W.property)()],R.prototype,"closeIcon",void 0);G([(0,W.property)()],R.prototype,"standardModeIcon",void 0);G([(0,W.property)({type:Boolean})],R.prototype,"disableStandardMode",void 0);G([(0,W.property)()],R.prototype,"theaterModeIcon",void 0);G([(0,W.property)({type:Boolean})],R.prototype,"disableTheaterMode",void 0);G([(0,W.property)()],R.prototype,"fullscreenModeIcon",void 0);G([(0,W.property)({type:Boolean})],R.prototype,"disableFullscreenMode",void 0);G([(0,W.property)({type:Boolean})],R.prototype,"enableHomeButton",void 0);G([(0,W.property)()],R.prototype,"homeIcon",void 0);G([(0,W.property)({type:Boolean})],R.prototype,"enableOpenTabButton",void 0);G([(0,W.property)()],R.prototype,"openTabIcon",void 0);G([(0,W.property)()],R.prototype,"iconVariant",void 0);G([(0,W.state)()],R.prototype,"allowStandardMode",void 0);G([(0,W.state)()],R.prototype,"allowTheaterMode",void 0);G([(0,W.state)()],R.prototype,"allowFullscreenMode",void 0);G([(0,W.query)("iframe")],R.prototype,"iframe",void 0);(0,Pa.customElement)("ft-in-product-help")(R);})();
|
|
972
1193
|
/*! Bundled license information:
|
|
973
1194
|
|
|
974
1195
|
lit-html/lit-html.js:
|