@fluid-topics/ft-snap-scroll 1.0.58 → 1.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ft-snap-scroll.css.js +3 -3
- package/build/ft-snap-scroll.light.js +461 -236
- package/build/ft-snap-scroll.min.js +501 -281
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
!function(t,
|
|
1
|
+
!function(t,o,e,r,i,a){const n=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorContent),l={color:n,backgroundColor:o.FtCssVariableFactory.extend("--ft-ripple-background-color","",n),opacityContentOnSurfacePressed:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:o.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},s=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorPrimary),c=s,p=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",s),f=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorSecondary),h=f,d=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",f),g=e.css`
|
|
2
2
|
:host {
|
|
3
3
|
display: contents;
|
|
4
4
|
}
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.ft-ripple.ft-ripple--secondary .ft-ripple--effect {
|
|
60
|
-
background-color: ${
|
|
60
|
+
background-color: ${h};
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.ft-ripple.ft-ripple--primary .ft-ripple--background {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.ft-ripple.ft-ripple--primary .ft-ripple--effect {
|
|
68
|
-
background-color: ${
|
|
68
|
+
background-color: ${c};
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.ft-ripple .ft-ripple--background {
|
|
@@ -110,173 +110,109 @@
|
|
|
110
110
|
opacity: ${l.opacityContentOnSurfacePressed};
|
|
111
111
|
transform: translate(-50%, -50%) scale(1);
|
|
112
112
|
}
|
|
113
|
-
`;var x,g=function(t,i,e,o){for(var s,n=arguments.length,r=n<3?i:null===o?o=Object.getOwnPropertyDescriptor(i,e):o,l=t.length-1;l>=0;l--)(s=t[l])&&(r=(n<3?s(r):n>3?s(i,e,r):s(i,e))||r);return n>3&&r&&Object.defineProperty(i,e,r),r};class b extends i.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 i.Debouncer(1e3),this.onTransitionStart=t=>{"transform"===t.propertyName&&(this.rippling=this.pressed,this.debouncer.run((()=>this.rippling=!1)))},this.onTransitionEnd=t=>{"transform"===t.propertyName&&(this.rippling=!1)},this.setupDebouncer=new i.Debouncer(10),this.moveRipple=t=>{var i,e;let{x:o,y:s}=this.getCoordinates(t),n=null!==(e=null===(i=this.ripple)||void 0===i?void 0:i.getBoundingClientRect())&&void 0!==e?e:{x:0,y:0,width:0,height:0};this.originX=Math.round(null!=o?o-n.x:n.width/2),this.originY=Math.round(null!=s?s-n.y:n.height/2)},this.startPress=t=>{this.moveRipple(t),this.pressed=!this.isIgnored(t)},this.endPress=()=>{this.pressed=!1},this.startHover=t=>{this.hovered=!this.isIgnored(t)},this.endHover=()=>{this.hovered=!1},this.startFocus=t=>{this.focused=this.isFocusVisible(null==t?void 0:t.target)&&!this.isIgnored(t)},this.endFocus=()=>{this.focused=!1}}render(){let t={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return e.html`
|
|
114
|
-
<style>
|
|
115
|
-
.ft-ripple .ft-ripple--effect {
|
|
116
|
-
left: ${this.originX}px;
|
|
117
|
-
top: ${this.originY}px;
|
|
118
|
-
}
|
|
119
|
-
</style>
|
|
120
|
-
<div class="${s.classMap(t)}">
|
|
121
|
-
<div class="ft-ripple--background"></div>
|
|
122
|
-
<div class="ft-ripple--effect"></div>
|
|
123
|
-
</div>
|
|
124
|
-
`}contentAvailableCallback(t){super.contentAvailableCallback(t),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(t){var i,e;super.update(t),t.has("disabled")&&(this.disabled?(this.endRipple(),null===(i=this.target)||void 0===i||i.removeAttribute("data-is-ft-ripple-target")):null===(e=this.target)||void 0===e||e.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run((()=>this.defaultSetup()))}defaultSetup(){var t,i;const e=null===(t=this.shadowRoot)||void 0===t?void 0:t.host.parentElement;e&&this.setupFor(null!==(i=this.target)&&void 0!==i?i:e)}setupFor(t){if(this.setupDebouncer.cancel(),this.target===t)return;this.onDisconnect&&this.onDisconnect(),this.target=t,t.setAttribute("data-is-ft-ripple-target","true");const i=(...t)=>i=>{t.forEach((t=>window.addEventListener(t,this.endPress,{once:!0}))),this.startPress(i)},e=i("mouseup","contextmenu"),o=i("touchend","touchcancel"),s=t=>{["Enter"," "].includes(t.key)&&i("keyup")(t)};t.addEventListener("mouseover",this.startHover),t.addEventListener("mousemove",this.moveRipple),t.addEventListener("mouseleave",this.endHover),t.addEventListener("mousedown",e),t.addEventListener("touchstart",o),t.addEventListener("touchmove",this.moveRipple),t.addEventListener("keydown",s),t.addEventListener("focus",this.startFocus),t.addEventListener("blur",this.endFocus),t.addEventListener("focusin",this.startFocus),t.addEventListener("focusout",this.endFocus),this.onDisconnect=()=>{t.removeAttribute("data-is-ft-ripple-target"),t.removeEventListener("mouseover",this.startHover),t.removeEventListener("mousemove",this.moveRipple),t.removeEventListener("mouseleave",this.endHover),t.removeEventListener("mousedown",e),t.removeEventListener("touchstart",o),t.removeEventListener("touchmove",this.moveRipple),t.removeEventListener("keydown",s),t.removeEventListener("focus",this.startFocus),t.removeEventListener("blur",this.endFocus),t.removeEventListener("focusin",this.startFocus),t.removeEventListener("focusout",this.endFocus),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(t){const i=t,e=t;let o,s;return null!=i.x?({x:o,y:s}=i):null!=e.touches&&(o=e.touches[0].clientX,s=e.touches[0].clientY),{x:o,y:s}}isFocusVisible(t){return!(t instanceof HTMLElement)||t.matches(":focus-visible")}isIgnored(t){if(this.disabled)return!0;if(null!=t)for(let i of t.composedPath()){if(i===this.target)break;if("hasAttribute"in i&&i.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}}b.elementDefinitions={},b.styles=u,g([o.property({type:Boolean})],b.prototype,"primary",void 0),g([o.property({type:Boolean})],b.prototype,"secondary",void 0),g([o.property({type:Boolean})],b.prototype,"unbounded",void 0),g([o.property({type:Boolean})],b.prototype,"activated",void 0),g([o.property({type:Boolean})],b.prototype,"selected",void 0),g([o.property({type:Boolean})],b.prototype,"disabled",void 0),g([o.state()],b.prototype,"hovered",void 0),g([o.state()],b.prototype,"focused",void 0),g([o.state()],b.prototype,"pressed",void 0),g([o.state()],b.prototype,"rippling",void 0),g([o.state()],b.prototype,"originX",void 0),g([o.state()],b.prototype,"originY",void 0),g([o.query(".ft-ripple")],b.prototype,"ripple",void 0),g([o.query(".ft-ripple--effect")],b.prototype,"rippleEffect",void 0),i.customElement("ft-ripple")(b);const y=window,v=y.trustedTypes,m=v?v.createPolicy("lit-html",{createHTML:t=>t}):void 0,$="$lit$",w=`lit$${(Math.random()+"").slice(9)}$`,k="?"+w,z=`<${k}>`,S=document,O=()=>S.createComment(""),I=t=>null===t||"object"!=typeof t&&"function"!=typeof t,E=Array.isArray,N="[ \t\n\f\r]",T=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,C=/-->/g,j=/>/g,A=RegExp(`>|${N}(?:([^\\s"'>=/]+)(${N}*=${N}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),_=/'/g,B=/"/g,R=/^(?:script|style|textarea|title)$/i,F=(t=>(i,...e)=>({_$litType$:t,strings:i,values:e}))(1),M=Symbol.for("lit-noChange"),Z=Symbol.for("lit-nothing"),H=new WeakMap,U=S.createTreeWalker(S,129,null,!1),W=(t,i)=>{const e=t.length-1,o=[];let s,n=2===i?"<svg>":"",r=T;for(let i=0;i<e;i++){const e=t[i];let l,a,h=-1,p=0;for(;p<e.length&&(r.lastIndex=p,a=r.exec(e),null!==a);)p=r.lastIndex,r===T?"!--"===a[1]?r=C:void 0!==a[1]?r=j:void 0!==a[2]?(R.test(a[2])&&(s=RegExp("</"+a[2],"g")),r=A):void 0!==a[3]&&(r=A):r===A?">"===a[0]?(r=null!=s?s:T,h=-1):void 0===a[1]?h=-2:(h=r.lastIndex-a[2].length,l=a[1],r=void 0===a[3]?A:'"'===a[3]?B:_):r===B||r===_?r=A:r===C||r===j?r=T:(r=A,s=void 0);const f=r===A&&t[i+1].startsWith("/>")?" ":"";n+=r===T?e+z:h>=0?(o.push(l),e.slice(0,h)+$+e.slice(h)+w+f):e+w+(-2===h?(o.push(void 0),i):f)}const l=n+(t[e]||"<?>")+(2===i?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==m?m.createHTML(l):l,o]};class D{constructor({strings:t,_$litType$:i},e){let o;this.parts=[];let s=0,n=0;const r=t.length-1,l=this.parts,[a,h]=W(t,i);if(this.el=D.createElement(a,e),U.currentNode=this.el.content,2===i){const t=this.el.content,i=t.firstChild;i.remove(),t.append(...i.childNodes)}for(;null!==(o=U.nextNode())&&l.length<r;){if(1===o.nodeType){if(o.hasAttributes()){const t=[];for(const i of o.getAttributeNames())if(i.endsWith($)||i.startsWith(w)){const e=h[n++];if(t.push(i),void 0!==e){const t=o.getAttribute(e.toLowerCase()+$).split(w),i=/([.?@])?(.*)/.exec(e);l.push({type:1,index:s,name:i[2],strings:t,ctor:"."===i[1]?V:"?"===i[1]?X:"@"===i[1]?Y:K})}else l.push({type:6,index:s})}for(const i of t)o.removeAttribute(i)}if(R.test(o.tagName)){const t=o.textContent.split(w),i=t.length-1;if(i>0){o.textContent=v?v.emptyScript:"";for(let e=0;e<i;e++)o.append(t[e],O()),U.nextNode(),l.push({type:2,index:++s});o.append(t[i],O())}}}else if(8===o.nodeType)if(o.data===k)l.push({type:2,index:s});else{let t=-1;for(;-1!==(t=o.data.indexOf(w,t+1));)l.push({type:7,index:s}),t+=w.length-1}s++}}static createElement(t,i){const e=S.createElement("template");return e.innerHTML=t,e}}function L(t,i,e=t,o){var s,n,r,l;if(i===M)return i;let a=void 0!==o?null===(s=e._$Co)||void 0===s?void 0:s[o]:e._$Cl;const h=I(i)?void 0:i._$litDirective$;return(null==a?void 0:a.constructor)!==h&&(null===(n=null==a?void 0:a._$AO)||void 0===n||n.call(a,!1),void 0===h?a=void 0:(a=new h(t),a._$AT(t,e,o)),void 0!==o?(null!==(r=(l=e)._$Co)&&void 0!==r?r:l._$Co=[])[o]=a:e._$Cl=a),void 0!==a&&(i=L(t,a._$AS(t,i.values),a,o)),i}class P{constructor(t,i){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=i}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var i;const{el:{content:e},parts:o}=this._$AD,s=(null!==(i=null==t?void 0:t.creationScope)&&void 0!==i?i:S).importNode(e,!0);U.currentNode=s;let n=U.nextNode(),r=0,l=0,a=o[0];for(;void 0!==a;){if(r===a.index){let i;2===a.type?i=new G(n,n.nextSibling,this,t):1===a.type?i=new a.ctor(n,a.name,a.strings,this,t):6===a.type&&(i=new J(n,this,t)),this._$AV.push(i),a=o[++l]}r!==(null==a?void 0:a.index)&&(n=U.nextNode(),r++)}return s}v(t){let i=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,i),i+=e.strings.length-2):e._$AI(t[i])),i++}}class G{constructor(t,i,e,o){var s;this.type=2,this._$AH=Z,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=e,this.options=o,this._$Cp=null===(s=null==o?void 0:o.isConnected)||void 0===s||s}get _$AU(){var t,i;return null!==(i=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==i?i:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===(null==t?void 0:t.nodeType)&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=L(this,t,i),I(t)?t===Z||null==t||""===t?(this._$AH!==Z&&this._$AR(),this._$AH=Z):t!==this._$AH&&t!==M&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>E(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]))(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==Z&&I(this._$AH)?this._$AA.nextSibling.data=t:this.$(S.createTextNode(t)),this._$AH=t}g(t){var i;const{values:e,_$litType$:o}=t,s="number"==typeof o?this._$AC(t):(void 0===o.el&&(o.el=D.createElement(o.h,this.options)),o);if((null===(i=this._$AH)||void 0===i?void 0:i._$AD)===s)this._$AH.v(e);else{const t=new P(s,this),i=t.u(this.options);t.v(e),this.$(i),this._$AH=t}}_$AC(t){let i=H.get(t.strings);return void 0===i&&H.set(t.strings,i=new D(t)),i}T(t){E(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let e,o=0;for(const s of t)o===i.length?i.push(e=new G(this.k(O()),this.k(O()),this,this.options)):e=i[o],e._$AI(s),o++;o<i.length&&(this._$AR(e&&e._$AB.nextSibling,o),i.length=o)}_$AR(t=this._$AA.nextSibling,i){var e;for(null===(e=this._$AP)||void 0===e||e.call(this,!1,!0,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i}}setConnected(t){var i;void 0===this._$AM&&(this._$Cp=t,null===(i=this._$AP)||void 0===i||i.call(this,t))}}class K{constructor(t,i,e,o,s){this.type=1,this._$AH=Z,this._$AN=void 0,this.element=t,this.name=i,this._$AM=o,this.options=s,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=Z}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,i=this,e,o){const s=this.strings;let n=!1;if(void 0===s)t=L(this,t,i,0),n=!I(t)||t!==this._$AH&&t!==M,n&&(this._$AH=t);else{const o=t;let r,l;for(t=s[0],r=0;r<s.length-1;r++)l=L(this,o[e+r],i,r),l===M&&(l=this._$AH[r]),n||(n=!I(l)||l!==this._$AH[r]),l===Z?t=Z:t!==Z&&(t+=(null!=l?l:"")+s[r+1]),this._$AH[r]=l}n&&!o&&this.j(t)}j(t){t===Z?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class V extends K{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===Z?void 0:t}}const q=v?v.emptyScript:"";class X extends K{constructor(){super(...arguments),this.type=4}j(t){t&&t!==Z?this.element.setAttribute(this.name,q):this.element.removeAttribute(this.name)}}class Y extends K{constructor(t,i,e,o,s){super(t,i,e,o,s),this.type=5}_$AI(t,i=this){var e;if((t=null!==(e=L(this,t,i,0))&&void 0!==e?e:Z)===M)return;const o=this._$AH,s=t===Z&&o!==Z||t.capture!==o.capture||t.once!==o.once||t.passive!==o.passive,n=t!==Z&&(o===Z||s);s&&this.element.removeEventListener(this.name,this,o),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var i,e;"function"==typeof this._$AH?this._$AH.call(null!==(e=null===(i=this.options)||void 0===i?void 0:i.host)&&void 0!==e?e:this.element,t):this._$AH.handleEvent(t)}}class J{constructor(t,i,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){L(this,t)}}const Q=y.litHtmlPolyfillSupport;null==Q||Q(D,G),(null!==(x=y.litHtmlVersions)&&void 0!==x?x:y.litHtmlVersions=[]).push("2.7.3");
|
|
125
|
-
/**
|
|
126
|
-
* @license
|
|
127
|
-
* Copyright 2020 Google LLC
|
|
128
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
129
|
-
*/
|
|
130
|
-
const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void 0:t._$litStatic$},et=t=>({_$litStatic$:t,r:tt}),ot=new Map,st=(t=>(i,...e)=>{const o=e.length;let s,n;const r=[],l=[];let a,h=0,p=!1;for(;h<o;){for(a=i[h];h<o&&void 0!==(n=e[h],s=it(n));)a+=s+i[++h],p=!0;h!==o&&l.push(n),r.push(a),h++}if(h===o&&r.push(i[o]),p){const t=r.join("$$lit$$");void 0===(i=ot.get(t))&&(r.raw=r,ot.set(t,i=r)),e=l}return t(i,...e)})(F);var nt;!function(t){t.title="title",t.title_dense="title-dense",t.subtitle1="subtitle1",t.subtitle2="subtitle2",t.body1="body1",t.body2="body2",t.caption="caption",t.breadcrumb="breadcrumb",t.overline="overline",t.button="button"}(nt||(nt={}));const rt=i.FtCssVariableFactory.extend("--ft-typography-font-family",i.designSystemVariables.titleFont),lt=i.FtCssVariableFactory.extend("--ft-typography-font-family",i.designSystemVariables.contentFont),at={fontFamily:lt,fontSize:i.FtCssVariableFactory.create("--ft-typography-font-size","SIZE","16px"),fontWeight:i.FtCssVariableFactory.create("--ft-typography-font-weight","UNKNOWN","normal"),letterSpacing:i.FtCssVariableFactory.create("--ft-typography-letter-spacing","SIZE","0.496px"),lineHeight:i.FtCssVariableFactory.create("--ft-typography-line-height","NUMBER","1.5"),textTransform:i.FtCssVariableFactory.create("--ft-typography-text-transform","UNKNOWN","inherit")},ht=i.FtCssVariableFactory.extend("--ft-typography-title-font-family",rt),pt=i.FtCssVariableFactory.extend("--ft-typography-title-font-size",at.fontSize,"20px"),ft=i.FtCssVariableFactory.extend("--ft-typography-title-font-weight",at.fontWeight,"normal"),ct=i.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing",at.letterSpacing,"0.15px"),dt=i.FtCssVariableFactory.extend("--ft-typography-title-line-height",at.lineHeight,"1.2"),ut=i.FtCssVariableFactory.extend("--ft-typography-title-text-transform",at.textTransform,"inherit"),xt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family",rt),gt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size",at.fontSize,"14px"),bt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight",at.fontWeight,"normal"),yt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing",at.letterSpacing,"0.105px"),vt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height",at.lineHeight,"1.7"),mt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform",at.textTransform,"inherit"),$t=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family",lt),wt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size",at.fontSize,"16px"),kt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight",at.fontWeight,"600"),zt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing",at.letterSpacing,"0.144px"),St=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height",at.lineHeight,"1.5"),Ot=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform",at.textTransform,"inherit"),It=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family",lt),Et=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size",at.fontSize,"14px"),Nt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight",at.fontWeight,"normal"),Tt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing",at.letterSpacing,"0.098px"),Ct=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height",at.lineHeight,"1.7"),jt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform",at.textTransform,"inherit"),At=i.FtCssVariableFactory.extend("--ft-typography-body1-font-family",lt),_t=i.FtCssVariableFactory.extend("--ft-typography-body1-font-size",at.fontSize,"16px"),Bt=i.FtCssVariableFactory.extend("--ft-typography-body1-font-weight",at.fontWeight,"normal"),Rt=i.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing",at.letterSpacing,"0.496px"),Ft=i.FtCssVariableFactory.extend("--ft-typography-body1-line-height",at.lineHeight,"1.5"),Mt=i.FtCssVariableFactory.extend("--ft-typography-body1-text-transform",at.textTransform,"inherit"),Zt=i.FtCssVariableFactory.extend("--ft-typography-body2-font-family",lt),Ht=i.FtCssVariableFactory.extend("--ft-typography-body2-font-size",at.fontSize,"14px"),Ut=i.FtCssVariableFactory.extend("--ft-typography-body2-font-weight",at.fontWeight,"normal"),Wt=i.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing",at.letterSpacing,"0.252px"),Dt=i.FtCssVariableFactory.extend("--ft-typography-body2-line-height",at.lineHeight,"1.4"),Lt=i.FtCssVariableFactory.extend("--ft-typography-body2-text-transform",at.textTransform,"inherit"),Pt=i.FtCssVariableFactory.extend("--ft-typography-caption-font-family",lt),Gt=i.FtCssVariableFactory.extend("--ft-typography-caption-font-size",at.fontSize,"12px"),Kt=i.FtCssVariableFactory.extend("--ft-typography-caption-font-weight",at.fontWeight,"normal"),Vt=i.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing",at.letterSpacing,"0.396px"),qt=i.FtCssVariableFactory.extend("--ft-typography-caption-line-height",at.lineHeight,"1.33"),Xt=i.FtCssVariableFactory.extend("--ft-typography-caption-text-transform",at.textTransform,"inherit"),Yt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family",lt),Jt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size",at.fontSize,"10px"),Qt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight",at.fontWeight,"normal"),ti=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing",at.letterSpacing,"0.33px"),ii=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height",at.lineHeight,"1.6"),ei=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform",at.textTransform,"inherit"),oi=i.FtCssVariableFactory.extend("--ft-typography-overline-font-family",lt),si=i.FtCssVariableFactory.extend("--ft-typography-overline-font-size",at.fontSize,"10px"),ni=i.FtCssVariableFactory.extend("--ft-typography-overline-font-weight",at.fontWeight,"normal"),ri=i.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing",at.letterSpacing,"1.5px"),li=i.FtCssVariableFactory.extend("--ft-typography-overline-line-height",at.lineHeight,"1.6"),ai=i.FtCssVariableFactory.extend("--ft-typography-overline-text-transform",at.textTransform,"uppercase"),hi={fontFamily:i.FtCssVariableFactory.extend("--ft-typography-button-font-family",lt),fontSize:i.FtCssVariableFactory.extend("--ft-typography-button-font-size",at.fontSize,"14px"),fontWeight:i.FtCssVariableFactory.extend("--ft-typography-button-font-weight",at.fontWeight,"600"),letterSpacing:i.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing",at.letterSpacing,"1.246px"),lineHeight:i.FtCssVariableFactory.extend("--ft-typography-button-line-height",at.lineHeight,"1.15"),textTransform:i.FtCssVariableFactory.extend("--ft-typography-button-text-transform",at.textTransform,"uppercase")},pi=e.css`
|
|
113
|
+
`,y=t=>"string"==typeof t?e.unsafeCSS(t):t;class b{static create(t,o,r,i){const a=t=>y(null!=t?t:i),n=e.css`var(${y(t)}, ${a(i)})`;return n.name=t,n.description=t,n.category=r,n.defaultValue=i,n.defaultCssValue=a,n.get=o=>e.css`var(${y(t)}, ${a(o)})`,n.breadcrumb=()=>[],n.lastResortDefaultValue=()=>i,n}static extend(t,o,r,i){const a=t=>r.get(null!=t?t:i),n=e.css`var(${y(t)}, ${a(i)})`;return n.name=t,n.description=o,n.category=r.category,n.fallbackVariable=r,n.defaultValue=i,n.defaultCssValue=a,n.get=o=>e.css`var(${y(t)}, ${a(o)})`,n.breadcrumb=()=>[r.name,...r.breadcrumb()],n.lastResortDefaultValue=()=>null!=i?i:r.lastResortDefaultValue(),n}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):y(null!=o?o:t.lastResortDefaultValue()),i=e.css`var(${y(t.name)}, ${r(t.defaultValue)})`;return i.name=t.name,i.category=t.category,i.fallbackVariable=t.fallbackVariable,i.defaultValue=t.defaultValue,i.context=o,i.defaultCssValue=r,i.get=o=>e.css`var(${y(t.name)}, ${r(o)})`,i.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],i.lastResortDefaultValue=()=>t.lastResortDefaultValue(),i}}const u={colorWhite:b.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:b.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:b.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:b.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:b.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:b.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:b.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:b.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:b.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:b.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:b.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:b.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:b.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:b.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:b.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:b.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:b.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:b.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:b.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:b.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:b.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:b.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:b.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:b.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:b.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:b.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:b.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:b.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:b.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:b.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:b.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:b.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:b.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:b.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:b.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:b.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:b.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:b.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:b.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:b.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:b.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:b.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:b.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:b.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:b.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:b.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:b.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:b.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:b.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:b.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:b.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:b.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:b.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:b.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:b.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:b.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:b.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:b.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:b.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:b.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:b.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:b.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:b.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:b.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:b.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:b.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:b.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:b.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:b.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:b.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:b.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:b.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:b.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:b.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:b.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:b.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:b.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:b.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:b.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:b.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:b.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:b.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:b.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:b.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:b.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:b.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:b.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:b.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:b.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:b.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:b.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:b.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:b.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:b.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:b.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:b.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:b.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:b.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:b.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:b.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:b.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:b.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:b.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:b.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:b.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:b.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:b.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:b.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:b.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:b.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:b.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:b.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:b.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:b.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:b.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:b.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:b.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:b.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:b.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:b.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:b.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:b.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:b.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:b.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:b.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:b.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:b.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:b.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:b.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:b.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:b.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:b.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:b.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:b.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:b.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:b.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:b.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:b.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:b.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:b.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:b.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:b.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:b.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:b.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:b.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:b.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:b.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:b.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:b.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:b.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:b.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:b.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:b.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:b.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:b.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:b.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:b.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:b.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:b.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:b.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:b.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:b.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:b.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:b.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:b.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:b.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:b.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:b.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:b.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:b.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:b.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:b.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:b.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:b.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:b.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:b.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:b.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:b.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:b.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:b.create("--ft-icon-size-6","","SIZE","48px"),opacity0:b.create("--ft-opacity-0","","NUMBER","0"),opacity8:b.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:b.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:b.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:b.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:b.create("--ft-opacity-80","","NUMBER","0.8")},m={display:{fontFamily:b.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:b.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:b.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:b.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:b.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:b.create("--ft-typography-title-1-fontSize","","SIZE","2rem"),letterSpacing:b.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:b.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:b.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-title-2-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:b.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),letterSpacing:b.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:b.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:b.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-title-3-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:b.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),letterSpacing:b.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:b.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:b.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:b.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:b.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:b.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:b.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:b.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:b.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:b.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:b.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:b.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:b.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:b.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:b.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:b.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:b.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:b.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:b.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:b.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:b.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:b.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:b.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:b.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:b.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:b.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-semibold":{fontFamily:b.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:b.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:b.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:b.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:b.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:b.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:b.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:b.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:b.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:b.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:b.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:b.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:b.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:b.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:b.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:b.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:b.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:b.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:b.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:b.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:b.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:b.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:b.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:b.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:b.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:b.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:b.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:b.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:b.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:b.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:b.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:b.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:b.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:b.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:b.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:b.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:b.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:b.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:b.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:b.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:b.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:b.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:b.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:b.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:b.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:b.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:b.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:b.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:b.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:b.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:b.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:b.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:b.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:b.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:b.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:b.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:b.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:b.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:b.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:b.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:b.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:b.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:b.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:b.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:b.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:b.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:b.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:b.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:b.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:b.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:b.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:b.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:b.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:b.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:b.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:b.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:b.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")}},x={backgroundActionPrimary:b.extend("--ft-background-action-primary","Used as backgorund of primary action components.",u.colorBrand0),backgroundErrorPrimary:b.extend("--ft-background-error-primary","Used as background of error components.",u.colorRed0),backgroundErrorSubtle:b.extend("--ft-background-error-subtle","Used as background of subtle error components.",u.colorRed10),backgroundInfoPrimary:b.extend("--ft-background-info-primary","Used as background of information components.",u.colorCyan200),backgroundInfoSubtle:b.extend("--ft-background-info-subtle","Used as background of subtle information components.",u.colorCyan10),backgroundWarningPrimary:b.extend("--ft-background-warning-primary","Used as background of warning components.",u.colorOrange300),backgroundWarningSubtle:b.extend("--ft-background-warning-subtle","Used as background of subtle information components.",u.colorOrange10),backgroundSuccessPrimary:b.extend("--ft-background-success-primary","Used as background of success components.",u.colorGreen200),backgroundSuccessSubtle:b.extend("--ft-background-success-subtle","Used as background of subtle success components.",u.colorGreen10),backgroundGlobalSurface:b.extend("--ft-background-global-surface","Used as app background.",u.colorWhite),backgroundGlobalOnSurface:b.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",u.colorGray10),backgroundGlobalOnSurfaceDark:b.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",u.colorGray30),contentActionPrimary:b.extend("--ft-content-action-primary","Used on label of primary action on light surface.",u.colorBrand0),contentWarningPrimary:b.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",u.colorOrange300),contentWarningIconOnly:b.extend("--ft-content-warning-icon-only","Used on warning status icons alone",u.colorOrange0),contentErrorPrimary:b.extend("--ft-content-error-primary","Used on label of error messages on light surface.",u.colorRed0),contentErrorIconOnly:b.extend("--ft-content-error-icon-only","Used on error status icons alone",u.colorRed0),contentInfoPrimary:b.extend("--ft-content-info-primary","Used on label of information messages on light surface.",u.colorCyan200),contentInfoIconOnly:b.extend("--ft-content-info-icon-only","Used on info status icons alone",u.colorCyan0),contentSuccessIconOnly:b.extend("--ft-content-success-icon-only","Used on success status icons alone",u.colorGreen0),contentSuccessPrimary:b.extend("--ft-content-success-primary","Used on label of success messages on light surface.",u.colorGreen200),contentGlobalPrimary:b.extend("--ft-content-global-primary","Used for main content on the page.",u.colorGray500),contentGlobalSecondary:b.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",u.colorGray200),contentGlobalSubtle:b.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",u.colorGray0),contentGlobalOnColor:b.extend("--ft-content-global-on-color","Used for content on a dominant color.",u.colorWhite),borderActionPrimary:b.extend("--ft-border-action-primary","Used as border for primary action components.",u.colorBrand0),borderActionFocusRing:b.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",u.colorCyan0),borderWarningPrimary:b.extend("--ft-border-warning-primary","Used as border for warning components.",u.colorOrange30),borderSuccessPrimary:b.extend("--ft-border-success-primary","Used as border for success components.",u.colorGreen30),borderErrorPrimary:b.extend("--ft-border-error-primary","Used as border for error components.",u.colorRed30),borderInfoPrimary:b.extend("--ft-border-info-primary","Used as border for information components.",u.colorCyan30),borderGlobalSubtle:b.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",u.colorGray30),borderGlobalPrimary:b.extend("--ft-border-global-primary","Used as border for element like input.",u.colorGray50),borderInputPrimary:b.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",u.colorGray80)},O={largeHeight:b.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:b.extend("--ft-button-large-horizontal-padding","",u.spacing4),largeGap:b.extend("--ft-button-large-gap","",u.spacing2),largeBorderRadius:b.extend("--ft-button-large-border-radius","",u.borderRadiusS),largeIconSize:b.extend("--ft-button-large-icon-size","",u.iconSize3),largeBorderWidth:b.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:b.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:b.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:b.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:b.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:b.extend("--ft-button-small-horizontal-padding","",u.spacing3),smallGap:b.extend("--ft-button-small-gap","",u.spacing2),smallBorderRadius:b.extend("--ft-button-small-border-radius","",u.borderRadiusS),smallIconSize:b.extend("--ft-button-small-icon-size","",u.iconSize2),smallBorderWidth:b.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:b.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:b.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:b.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:b.extend("--ft-button-primary-background-color","",x.backgroundActionPrimary),primaryColor:b.extend("--ft-button-primary-color","",x.contentGlobalOnColor),primaryIconColor:b.extend("--ft-button-primary-icon-color","",x.contentGlobalOnColor),primaryStateLayerColor:b.extend("--ft-button-primary-state-layer-color","",x.contentGlobalOnColor),primaryStateLayerOpacityHover:b.extend("--ft-button-primary-state-layer-opacity-hover","",u.opacity16),primaryStateLayerOpacityFocus:b.extend("--ft-button-primary-state-layer-opacity-focus","",u.opacity16),primaryStateLayerOpacityActive:b.extend("--ft-button-primary-state-layer-opacity-active","",u.opacity24),primaryComponentOpacityDisabled:b.extend("--ft-button-primary-component-opacity-disabled","",u.opacity40),focusFocusRingColor:b.extend("--ft-button-focus-focus-ring-color","",x.borderActionFocusRing),tertiaryBackgroundColor:b.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:b.extend("--ft-button-tertiary-color","",x.contentActionPrimary),tertiaryIconColor:b.extend("--ft-button-tertiary-icon-color","",x.contentActionPrimary),tertiaryStateLayerColor:b.extend("--ft-button-tertiary-state-layer-color","",x.contentActionPrimary),tertiaryStateLayerOpacityHover:b.extend("--ft-button-tertiary-state-layer-opacity-hover","",u.opacity8),tertiaryStateLayerOpacityFocus:b.extend("--ft-button-tertiary-state-layer-opacity-focus","",u.opacity8),tertiaryStateLayerOpacityActive:b.extend("--ft-button-tertiary-state-layer-opacity-active","",u.opacity16),tertiaryComponentOpacityDisabled:b.extend("--ft-button-tertiary-component-opacity-disabled","",u.opacity40),secondaryBackgroundColor:b.extend("--ft-button-secondary-background-color","",u.colorWhite),secondaryColor:b.extend("--ft-button-secondary-color","",x.contentActionPrimary),secondaryIconColor:b.extend("--ft-button-secondary-icon-color","",x.contentActionPrimary),secondaryStateLayerColor:b.extend("--ft-button-secondary-state-layer-color","",x.contentActionPrimary),secondaryStateLayerOpacityHover:b.extend("--ft-button-secondary-state-layer-opacity-hover","",u.opacity8),secondaryStateLayerOpacityFocus:b.extend("--ft-button-secondary-state-layer-opacity-focus","",u.opacity8),secondaryStateLayerOpacityActive:b.extend("--ft-button-secondary-state-layer-opacity-active","",u.opacity16),secondaryComponentOpacityDisabled:b.extend("--ft-button-secondary-component-opacity-disabled","",u.opacity40),secondaryBorderColor:b.extend("--ft-button-secondary-border-color","",x.borderActionPrimary),neutralBackgroundColor:b.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:b.extend("--ft-button-neutral-icon-color","",x.contentGlobalSecondary),neutralColor:b.extend("--ft-button-neutral-color","",x.contentGlobalSecondary),neutralStateLayerColor:b.extend("--ft-button-neutral-state-layer-color","",x.contentGlobalSecondary),neutralStateLayerOpacityHover:b.extend("--ft-button-neutral-state-layer-opacity-hover","",u.opacity8),neutralStateLayerOpacityFocus:b.extend("--ft-button-neutral-state-layer-opacity-focus","",u.opacity8),neutralStateLayerOpacityActive:b.extend("--ft-button-neutral-state-layer-opacity-active","",u.opacity16),neutralComponentOpacityDisabled:b.extend("--ft-button-neutral-component-opacity-disabled","",u.opacity40)};b.extend("--ft-tabs-top-left-border-radius","",u.borderRadiusS),b.extend("--ft-tabs-top-right-border-radius","",u.borderRadiusS),b.extend("--ft-tabs-label-horizontal-padding","",u.spacing4),b.extend("--ft-tabs-label-vertical-padding","",u.spacing3),b.extend("--ft-tabs-label-gap","",u.spacing1),b.extend("--ft-switch-group-horizontal-padding","",u.spacing1),b.extend("--ft-switch-group-vertical-padding","",u.spacing1),b.extend("--ft-switch-group-gap","",u.spacing1),b.extend("--ft-switch-group-background-color","",x.backgroundGlobalSurface),b.extend("--ft-switch-group-border-color","",x.borderGlobalSubtle),b.create("--ft-switch-group-border-radius","","SIZE","6px"),b.extend("--ft-switch-label-horizontal-padding","",u.spacing2),b.extend("--ft-switch-label-vertical-padding","",u.spacing1),b.extend("--ft-switch-icon-horizontal-padding","",u.spacing1),b.extend("--ft-switch-icon-vertical-padding","",u.spacing1),b.create("--ft-switch-focus-outline-width","","SIZE","2px"),b.extend("--ft-switch-focus-focus-ring-color","",x.borderActionFocusRing),b.extend("--ft-switch-option-border-radius","",u.borderRadiusS),b.extend("--ft-switch-off-state-layer-opacity-hover","",u.opacity8),b.extend("--ft-switch-off-state-layer-opacity-focus","",u.opacity8),b.extend("--ft-switch-off-state-layer-opacity-active","",u.opacity16),b.extend("--ft-switch-off-component-opacity-disabled","",u.opacity40),b.extend("--ft-switch-off-color","",x.contentGlobalSubtle),b.extend("--ft-switch-off-state-layer-color","",x.contentGlobalSubtle),b.extend("--ft-chart-1-light","for area color charts",u.colorBrand40),b.extend("--ft-chart-1-base","for line charts",u.colorBrand0),b.extend("--ft-chart-2-light","for area color charts",u.colorYellow60),b.extend("--ft-chart-2-base","for line charts",u.colorYellow100),b.extend("--ft-chart-3-light","",u.colorUltramarine40),b.extend("--ft-chart-3-base","",u.colorUltramarine70),b.extend("--ft-chart-4-light","",u.colorCyan50),b.extend("--ft-chart-4-base","",u.colorCyan100),b.extend("--ft-chart-5-light","",u.colorRed40),b.extend("--ft-chart-5-base","",u.colorRed60),b.extend("--ft-chart-6-light","",u.colorGreen40),b.extend("--ft-chart-6-base","",u.colorGreen70),b.extend("--ft-chart-7-light","",u.colorOrange70),b.extend("--ft-chart-7-base","",u.colorOrange100),b.extend("--ft-chart-8-light","",u.colorAvocado70),b.extend("--ft-chart-8-base","",u.colorAvocado200),b.extend("--ft-chart-9-light","",u.colorBrown50),b.extend("--ft-chart-9-base","",u.colorBrown200),b.extend("--ft-chart-10-light","",u.colorGray50),b.extend("--ft-chart-10-base","",u.colorGray80),b.extend("--ft-chart-monochrome-10","",u.colorBrand10),b.extend("--ft-chart-monochrome-20","",u.colorBrand20),b.extend("--ft-chart-monochrome-30","",u.colorBrand40),b.extend("--ft-chart-monochrome-40","",u.colorBrand60),b.extend("--ft-chart-monochrome-50","",u.colorBrand0),b.extend("--ft-chart-monochrome-60","",u.colorBrand200),b.extend("--ft-chip-large-horizontal-padding","",u.spacing4),b.extend("--ft-chip-large-vertical-padding","",u.spacing2),b.extend("--ft-chip-large-gap","",u.spacing1),b.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),b.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),b.extend("--ft-chip-large-border-radius","",u.borderRadiusPill),b.create("--ft-chip-large-border-width","","SIZE","1px"),b.extend("--ft-chip-large-icon-size","",u.iconSize3),b.extend("--ft-chip-medium-horizontal-padding","",u.spacing3),b.extend("--ft-chip-medium-vertical-padding","",u.spacing1),b.extend("--ft-chip-medium-gap","",u.spacing1),b.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),b.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),b.extend("--ft-chip-medium-border-radius","",u.borderRadiusPill),b.create("--ft-chip-medium-border-width","","SIZE","1px"),b.extend("--ft-chip-medium-icon-size","",u.iconSize2),b.extend("--ft-chip-small-horizontal-padding","",u.spacing2),b.extend("--ft-chip-small-vertical-padding","",u.spacing05),b.extend("--ft-chip-small-gap","",u.spacing1),b.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),b.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),b.extend("--ft-chip-small-border-radius","",u.borderRadiusPill),b.create("--ft-chip-small-border-width","","SIZE","1px"),b.extend("--ft-chip-small-icon-size","",u.iconSize1),b.extend("--ft-chip-neutral-background-color","",x.backgroundGlobalOnSurface),b.extend("--ft-chip-neutral-color","",x.contentGlobalPrimary),b.extend("--ft-chip-neutral-border-color","",x.borderGlobalSubtle),b.extend("--ft-chip-info-background-color","",x.backgroundInfoSubtle),b.extend("--ft-chip-info-color","",x.contentInfoPrimary),b.extend("--ft-chip-info-border-color","",x.borderInfoPrimary),b.extend("--ft-chip-success-background-color","",x.backgroundSuccessSubtle),b.extend("--ft-chip-success-color","",x.contentSuccessPrimary),b.extend("--ft-chip-success-border-color","",x.borderSuccessPrimary),b.extend("--ft-chip-warning-background-color","",x.backgroundWarningSubtle),b.extend("--ft-chip-warning-color","",x.contentWarningPrimary),b.extend("--ft-chip-warning-border-color","",x.borderWarningPrimary),b.extend("--ft-chip-error-background-color","",x.backgroundErrorSubtle),b.extend("--ft-chip-error-color","",x.contentErrorPrimary),b.extend("--ft-chip-error-border-color","",x.borderErrorPrimary),b.create("--ft-notice-border-width","","SIZE","1px"),b.extend("--ft-notice-horizontal-padding","",u.spacing2),b.extend("--ft-notice-vertical-padding","",u.spacing1),b.extend("--ft-notice-border-radius","",u.borderRadiusS),b.extend("--ft-notice-gap","",u.spacing2),b.extend("--ft-notice-icon-size","",u.iconSize3),b.extend("--ft-notice-info-background-color","",x.backgroundInfoSubtle),b.extend("--ft-notice-info-border-color","",x.borderInfoPrimary),b.extend("--ft-notice-info-color","",x.contentInfoPrimary),b.extend("--ft-notice-warning-background-color","",x.backgroundWarningSubtle),b.extend("--ft-notice-warning-border-color","",x.borderWarningPrimary),b.extend("--ft-notice-warning-color","",x.contentWarningPrimary),b.extend("--ft-checkbox-label-color","",x.contentGlobalPrimary),b.extend("--ft-checkbox-checked-background-color","",x.contentActionPrimary),b.extend("--ft-checkbox-checked-state-layer-color","",x.contentActionPrimary),b.extend("--ft-checkbox-checked-color","",x.contentGlobalOnColor),b.extend("--ft-checkbox-checked-state-layer-opacity-hover","",u.opacity16),b.extend("--ft-checkbox-checked-state-layer-opacity-focus","",u.opacity16),b.extend("--ft-checkbox-checked-state-layer-opacity-active","",u.opacity24),b.extend("--ft-checkbox-checked-component-opacity-disabled","",u.opacity40),b.extend("--ft-checkbox-unchecked-border-color","",u.colorGray80),b.extend("--ft-checkbox-unchecked-state-layer-color","",u.colorGray80),b.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",u.opacity16),b.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",u.opacity16),b.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",u.opacity24),b.extend("--ft-checkbox-unchecked-component-opacity-disabled","",u.opacity40),b.extend("--ft-checkbox-focus-focus-ring-color","",x.borderActionFocusRing),b.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),b.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),b.extend("--ft-checkbox-gap","",u.spacing3),b.extend("--ft-toggle-off-state-layer-opacity-hover","",u.opacity16),b.extend("--ft-toggle-off-state-layer-opacity-focus","",u.opacity16),b.extend("--ft-toggle-off-state-layer-opacity-active","",u.opacity24),b.extend("--ft-toggle-off-component-opacity-disabled","",u.opacity40),b.extend("--ft-toggle-off-background-color","",x.contentGlobalSubtle),b.extend("--ft-toggle-off-icon-color","",x.contentGlobalSubtle),b.extend("--ft-toggle-off-state-layer-color","",x.contentGlobalSubtle),b.extend("--ft-toggle-on-state-layer-opacity-hover","",u.opacity16),b.extend("--ft-toggle-on-state-layer-opacity-focus","",u.opacity16),b.extend("--ft-toggle-on-state-layer-opacity-active","",u.opacity24),b.extend("--ft-toggle-on-component-opacity-disabled","",u.opacity40),b.extend("--ft-toggle-on-background-color","",x.contentActionPrimary),b.extend("--ft-toggle-on-icon-color","",x.contentActionPrimary),b.extend("--ft-toggle-on-state-layer-color","",x.contentActionPrimary),b.extend("--ft-toggle-label-color","",x.contentGlobalPrimary),b.extend("--ft-toggle-focus-focus-ring-color","",x.borderActionFocusRing),b.extend("--ft-toggle-gap","",u.spacing3),b.extend("--ft-radio-label-color","",x.contentGlobalPrimary),b.extend("--ft-radio-selected-color","",x.contentActionPrimary),b.extend("--ft-radio-selected-state-layer-color","",x.contentActionPrimary),b.extend("--ft-radio-selected-state-layer-opacity-hover","",u.opacity16),b.extend("--ft-radio-selected-state-layer-opacity-focus","",u.opacity16),b.extend("--ft-radio-selected-state-layer-opacity-active","",u.opacity24),b.extend("--ft-radio-selected-component-opacity-disabled","",u.opacity40),b.extend("--ft-radio-unselected-state-layer-color","",u.colorGray80),b.extend("--ft-radio-unselected-state-layer-opacity-hover","",u.opacity16),b.extend("--ft-radio-unselected-state-layer-opacity-focus","",u.opacity16),b.extend("--ft-radio-unselected-state-layer-opacity-active","",u.opacity24),b.extend("--ft-radio-unselected-component-opacity-disabled","",u.opacity40),b.extend("--ft-radio-focus-focus-ring-color","",x.borderActionFocusRing),b.create("--ft-radio-focus-outline-offset","","SIZE","3px"),b.create("--ft-radio-focus-outline-width","","SIZE","2px"),b.extend("--ft-radio-gap","",u.spacing3),b.extend("--ft-notification-icon-size","",u.iconSize4),b.extend("--ft-notification-horizontal-padding","",u.spacing4),b.extend("--ft-notification-vertical-padding","",u.spacing4),b.extend("--ft-notification-info-background-color","",x.backgroundInfoSubtle),b.extend("--ft-notification-info-color","",x.contentInfoPrimary),b.extend("--ft-notification-info-border-color","",x.borderInfoPrimary),b.extend("--ft-notification-success-background-color","",x.backgroundSuccessSubtle),b.extend("--ft-notification-success-color","",x.contentSuccessPrimary),b.extend("--ft-notification-success-border-color","",x.borderSuccessPrimary),b.extend("--ft-notification-warning-background-color","",x.backgroundWarningSubtle),b.extend("--ft-notification-warning-color","",x.contentWarningPrimary),b.extend("--ft-notification-warning-border-color","",x.borderWarningPrimary),b.extend("--ft-notification-error-background-color","",x.backgroundErrorSubtle),b.extend("--ft-notification-error-color","",x.contentErrorPrimary),b.extend("--ft-notification-error-border-color","",x.borderErrorPrimary),b.extend("--ft-notification-border-radius","",u.borderRadiusPill),b.create("--ft-notification-border-width","","SIZE","1px"),b.extend("--ft-notification-gap-leading","",u.spacing2),b.extend("--ft-notification-gap-trailing","",u.spacing8);const v=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),N=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),S={fontFamily:N,fontSize:o.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:o.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:o.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:o.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:o.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},$=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",v),C=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",S.fontSize,"20px"),w=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",S.fontWeight,"normal"),I=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",S.letterSpacing,"0.15px"),R=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",S.lineHeight,"1.2"),W=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",S.textTransform,"inherit"),U=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",v),k=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",S.fontSize,"14px"),E=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",S.fontWeight,"normal"),L=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",S.letterSpacing,"0.105px"),z=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",S.lineHeight,"1.7"),K=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",S.textTransform,"inherit"),Z=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",N),F=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",S.fontSize,"16px"),B=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",S.fontWeight,"600"),D=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",S.letterSpacing,"0.144px"),H=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",S.lineHeight,"1.5"),A=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",S.textTransform,"inherit"),G=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",N),j=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",S.fontSize,"14px"),T=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",S.fontWeight,"normal"),P=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",S.letterSpacing,"0.098px"),M=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",S.lineHeight,"1.7"),_=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",S.textTransform,"inherit"),Y=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",N),V=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",S.fontSize,"16px"),q=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",S.fontWeight,"normal"),X=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",S.letterSpacing,"0.496px"),J=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",S.lineHeight,"1.5"),Q=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",S.textTransform,"inherit"),tt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",N),ot=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",S.fontSize,"14px"),et=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",S.fontWeight,"normal"),rt=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",S.letterSpacing,"0.252px"),it=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",S.lineHeight,"1.4"),at=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",S.textTransform,"inherit"),nt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",N),lt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",S.fontSize,"12px"),st=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",S.fontWeight,"normal"),ct=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",S.letterSpacing,"0.396px"),pt=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",S.lineHeight,"1.33"),ft=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",S.textTransform,"inherit"),ht=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",N),dt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",S.fontSize,"10px"),gt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",S.fontWeight,"normal"),yt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",S.letterSpacing,"0.33px"),bt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",S.lineHeight,"1.6"),ut=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",S.textTransform,"inherit"),mt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",N),xt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",S.fontSize,"10px"),Ot=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",S.fontWeight,"normal"),vt=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",S.letterSpacing,"1.5px"),Nt=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",S.lineHeight,"1.6"),St=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",S.textTransform,"uppercase"),$t={fontFamily:o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",N),fontSize:o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",S.fontSize,"14px"),fontWeight:o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",S.fontWeight,"600"),letterSpacing:o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",S.letterSpacing,"1.246px"),lineHeight:o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",S.lineHeight,"1.15"),textTransform:o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",S.textTransform,"uppercase")},Ct=e.css`
|
|
131
114
|
.ft-typography--title {
|
|
132
|
-
font-family: ${
|
|
133
|
-
font-size: ${
|
|
134
|
-
font-weight: ${
|
|
135
|
-
letter-spacing: ${
|
|
136
|
-
line-height: ${
|
|
137
|
-
text-transform: ${
|
|
138
|
-
}
|
|
139
|
-
`,
|
|
115
|
+
font-family: ${$};
|
|
116
|
+
font-size: ${C};
|
|
117
|
+
font-weight: ${w};
|
|
118
|
+
letter-spacing: ${I};
|
|
119
|
+
line-height: ${R};
|
|
120
|
+
text-transform: ${W};
|
|
121
|
+
}
|
|
122
|
+
`,wt=e.css`
|
|
140
123
|
.ft-typography--title-dense {
|
|
141
|
-
font-family: ${
|
|
142
|
-
font-size: ${
|
|
143
|
-
font-weight: ${
|
|
144
|
-
letter-spacing: ${
|
|
145
|
-
line-height: ${
|
|
146
|
-
text-transform: ${
|
|
147
|
-
}
|
|
148
|
-
`,
|
|
124
|
+
font-family: ${U};
|
|
125
|
+
font-size: ${k};
|
|
126
|
+
font-weight: ${E};
|
|
127
|
+
letter-spacing: ${L};
|
|
128
|
+
line-height: ${z};
|
|
129
|
+
text-transform: ${K};
|
|
130
|
+
}
|
|
131
|
+
`,It=e.css`
|
|
149
132
|
.ft-typography--subtitle1 {
|
|
150
|
-
font-family: ${
|
|
151
|
-
font-size: ${
|
|
152
|
-
font-weight: ${
|
|
153
|
-
letter-spacing: ${
|
|
154
|
-
line-height: ${
|
|
155
|
-
text-transform: ${
|
|
156
|
-
}
|
|
157
|
-
`,
|
|
133
|
+
font-family: ${Z};
|
|
134
|
+
font-size: ${F};
|
|
135
|
+
font-weight: ${B};
|
|
136
|
+
letter-spacing: ${D};
|
|
137
|
+
line-height: ${H};
|
|
138
|
+
text-transform: ${A};
|
|
139
|
+
}
|
|
140
|
+
`,Rt=e.css`
|
|
158
141
|
.ft-typography--subtitle2 {
|
|
159
|
-
font-family: ${
|
|
160
|
-
font-size: ${
|
|
161
|
-
font-weight: ${
|
|
162
|
-
letter-spacing: ${
|
|
163
|
-
line-height: ${
|
|
164
|
-
text-transform: ${
|
|
142
|
+
font-family: ${G};
|
|
143
|
+
font-size: ${j};
|
|
144
|
+
font-weight: ${T};
|
|
145
|
+
letter-spacing: ${P};
|
|
146
|
+
line-height: ${M};
|
|
147
|
+
text-transform: ${_};
|
|
165
148
|
}
|
|
166
149
|
|
|
167
|
-
`,
|
|
150
|
+
`,Wt=e.css`
|
|
168
151
|
.ft-typography--body1 {
|
|
169
|
-
font-family: ${
|
|
170
|
-
font-size: ${
|
|
171
|
-
font-weight: ${
|
|
172
|
-
letter-spacing: ${
|
|
173
|
-
line-height: ${
|
|
174
|
-
text-transform: ${
|
|
175
|
-
}
|
|
176
|
-
`,
|
|
152
|
+
font-family: ${Y};
|
|
153
|
+
font-size: ${V};
|
|
154
|
+
font-weight: ${q};
|
|
155
|
+
letter-spacing: ${X};
|
|
156
|
+
line-height: ${J};
|
|
157
|
+
text-transform: ${Q};
|
|
158
|
+
}
|
|
159
|
+
`,Ut=e.css`
|
|
177
160
|
.ft-typography--body2 {
|
|
178
|
-
font-family: ${
|
|
179
|
-
font-size: ${
|
|
180
|
-
font-weight: ${
|
|
181
|
-
letter-spacing: ${
|
|
182
|
-
line-height: ${
|
|
183
|
-
text-transform: ${
|
|
184
|
-
}
|
|
185
|
-
`,
|
|
161
|
+
font-family: ${tt};
|
|
162
|
+
font-size: ${ot};
|
|
163
|
+
font-weight: ${et};
|
|
164
|
+
letter-spacing: ${rt};
|
|
165
|
+
line-height: ${it};
|
|
166
|
+
text-transform: ${at};
|
|
167
|
+
}
|
|
168
|
+
`,kt=e.css`
|
|
186
169
|
.ft-typography--caption {
|
|
187
|
-
font-family: ${
|
|
188
|
-
font-size: ${
|
|
189
|
-
font-weight: ${
|
|
190
|
-
letter-spacing: ${
|
|
191
|
-
line-height: ${
|
|
192
|
-
text-transform: ${
|
|
193
|
-
}
|
|
194
|
-
`,
|
|
170
|
+
font-family: ${nt};
|
|
171
|
+
font-size: ${lt};
|
|
172
|
+
font-weight: ${st};
|
|
173
|
+
letter-spacing: ${ct};
|
|
174
|
+
line-height: ${pt};
|
|
175
|
+
text-transform: ${ft};
|
|
176
|
+
}
|
|
177
|
+
`,Et=e.css`
|
|
195
178
|
.ft-typography--breadcrumb {
|
|
196
|
-
font-family: ${
|
|
197
|
-
font-size: ${
|
|
198
|
-
font-weight: ${
|
|
199
|
-
letter-spacing: ${
|
|
200
|
-
line-height: ${
|
|
201
|
-
text-transform: ${
|
|
202
|
-
}
|
|
203
|
-
`,
|
|
179
|
+
font-family: ${ht};
|
|
180
|
+
font-size: ${dt};
|
|
181
|
+
font-weight: ${gt};
|
|
182
|
+
letter-spacing: ${yt};
|
|
183
|
+
line-height: ${bt};
|
|
184
|
+
text-transform: ${ut};
|
|
185
|
+
}
|
|
186
|
+
`,Lt=e.css`
|
|
204
187
|
.ft-typography--overline {
|
|
205
|
-
font-family: ${
|
|
206
|
-
font-size: ${
|
|
207
|
-
font-weight: ${
|
|
208
|
-
letter-spacing: ${
|
|
209
|
-
line-height: ${
|
|
210
|
-
text-transform: ${
|
|
211
|
-
}
|
|
212
|
-
`,
|
|
188
|
+
font-family: ${mt};
|
|
189
|
+
font-size: ${xt};
|
|
190
|
+
font-weight: ${Ot};
|
|
191
|
+
letter-spacing: ${vt};
|
|
192
|
+
line-height: ${Nt};
|
|
193
|
+
text-transform: ${St};
|
|
194
|
+
}
|
|
195
|
+
`,zt=e.css`
|
|
213
196
|
.ft-typography--button {
|
|
214
|
-
font-family: ${
|
|
215
|
-
font-size: ${
|
|
216
|
-
font-weight: ${
|
|
217
|
-
letter-spacing: ${
|
|
218
|
-
line-height: ${
|
|
219
|
-
text-transform: ${
|
|
220
|
-
}
|
|
221
|
-
`,
|
|
197
|
+
font-family: ${$t.fontFamily};
|
|
198
|
+
font-size: ${$t.fontSize};
|
|
199
|
+
font-weight: ${$t.fontWeight};
|
|
200
|
+
letter-spacing: ${$t.letterSpacing};
|
|
201
|
+
line-height: ${$t.lineHeight};
|
|
202
|
+
text-transform: ${$t.textTransform};
|
|
203
|
+
}
|
|
204
|
+
`,Kt=e.css`
|
|
222
205
|
.ft-typography {
|
|
223
206
|
vertical-align: inherit;
|
|
224
207
|
}
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
.ft-tooltip--container {
|
|
234
|
-
display: block;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.ft-tooltip--inline {
|
|
238
|
-
display: inline-block;
|
|
239
|
-
max-width: 100%;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.ft-tooltip {
|
|
243
|
-
position: absolute;
|
|
244
|
-
box-sizing: border-box;
|
|
245
|
-
overflow: hidden;
|
|
246
|
-
width: max-content;
|
|
247
|
-
max-width: ${Ei};
|
|
248
|
-
text-align: center;
|
|
249
|
-
padding: ${ki};
|
|
250
|
-
z-index: ${Oi};
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.ft-tooltip--content {
|
|
254
|
-
padding: 4px 8px;
|
|
255
|
-
border-radius: ${Ii};
|
|
256
|
-
background-color: ${Si};
|
|
257
|
-
color: ${zi};
|
|
258
|
-
position: relative;
|
|
259
|
-
word-break: break-word;
|
|
260
|
-
}
|
|
261
|
-
`;var Ti=function(t,i,e,o){for(var s,n=arguments.length,r=n<3?i:null===o?o=Object.getOwnPropertyDescriptor(i,e):o,l=t.length-1;l>=0;l--)(s=t[l])&&(r=(n<3?s(r):n>3?s(i,e,r):s(i,e))||r);return n>3&&r&&Object.defineProperty(i,e,r),r};class Ci extends i.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 i.Debouncer,this.revealDebouncer=new i.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return e.html`
|
|
262
|
-
<div part="container"
|
|
263
|
-
class="ft-tooltip--container ${this.inline?"ft-tooltip--inline":""}"
|
|
264
|
-
@mouseenter=${this.onHover}
|
|
265
|
-
@mouseleave=${this.onOut}
|
|
266
|
-
@focusin=${this.onHover}
|
|
267
|
-
@focusout=${this.onOut}
|
|
268
|
-
@touchstart=${this.onTouch}>
|
|
269
|
-
<slot></slot>
|
|
270
|
-
<div part="tooltip" role="tooltip" inert
|
|
271
|
-
class="ft-tooltip ft-tooltip--${this.validPosition}"
|
|
272
|
-
?hidden=${!this.visible}>
|
|
273
|
-
<div part="tooltip-content" class="ft-tooltip--content">
|
|
274
|
-
<slot name="text"></slot>
|
|
275
|
-
<ft-typography variant="caption" ?hidden=${!this.text}>${this.text}</ft-typography>
|
|
276
|
-
</div>
|
|
277
|
-
</div>
|
|
278
|
-
</div>
|
|
279
|
-
`}update(t){t.has("visible")&&!this.visible&&this.resetTooltipContent(),super.update(t)}contentAvailableCallback(t){super.contentAvailableCallback(t),["visible","text"].some((i=>t.has(i)))&&this.visible&&this.positionTooltip()}show(t){this.visible=!0,null!=t&&this.hideDebounce.run((()=>this.hide()),t)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var t;return(null!==(t=this.slotNodes)&&void 0!==t?t:[]).filter((t=>t.nodeType==Node.ELEMENT_NODE))[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){const t=this.tooltipContent.style;switch(t.transition="none",this.validPosition){case"top":t.top=this.tooltip.clientHeight+"px",t.left="0";break;case"bottom":t.top=-this.tooltip.clientHeight+"px",t.left="0";break;case"left":t.top="0",t.left=this.tooltip.clientWidth+"px";break;case"right":t.top="0",t.left=-this.tooltip.clientWidth+"px"}}}positionTooltip(){this.resetTooltipContent();const t=this.slottedElement;if(this.tooltip&&t){const i=this.tooltip.offsetWidth,e=this.tooltip.offsetHeight,o=(t.offsetHeight-e)/2,s=(t.offsetWidth-i)/2;let n=0,r=0;switch(this.tooltip.style.top="0",this.tooltip.style.left="0",this.validPosition){case"top":r=t.offsetTop-e-this.tooltip.offsetTop,n=t.offsetLeft+s-this.tooltip.offsetLeft;break;case"bottom":r=t.offsetTop+t.offsetHeight-this.tooltip.offsetTop,n=t.offsetLeft+s-this.tooltip.offsetLeft;break;case"left":r=t.offsetTop+o-this.tooltip.offsetTop,n=t.offsetLeft-i-this.tooltip.offsetLeft;break;case"right":r=t.offsetTop+o-this.tooltip.offsetTop,n=t.offsetLeft+t.offsetWidth-this.tooltip.offsetLeft}const l=this.tooltip.style;l.left=n+"px",l.top=r+"px";const a=this.tooltip.getBoundingClientRect();let h=-a.x,p=a.x+a.width-window.innerWidth;l.left=n+Math.round(this.correctOutOfWindowPixels(h,p))+"px";let f=-a.y,c=a.y+a.height-window.innerHeight;l.top=r+Math.round(this.correctOutOfWindowPixels(f,c))+"px",l.maxWidth=`max(${t.offsetWidth}px, ${Ei})`}this.revealDebouncer.run((()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")}),this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout((()=>window.addEventListener("touchstart",(t=>{t.composedPath().includes(this.container)||this.onOut()}),{once:!0})),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(t,i){return Math.max(t,Math.min(0,-i))}}Ci.elementDefinitions={"ft-typography":wi},Ci.styles=Ni,Ti([o.property()],Ci.prototype,"text",void 0),Ti([o.property({type:Boolean})],Ci.prototype,"manual",void 0),Ti([o.property({type:Boolean})],Ci.prototype,"inline",void 0),Ti([o.property({type:Number})],Ci.prototype,"delay",void 0),Ti([o.property()],Ci.prototype,"position",void 0),Ti([o.queryAssignedNodes("",!0)],Ci.prototype,"slotNodes",void 0),Ti([o.query(".ft-tooltip--container")],Ci.prototype,"container",void 0),Ti([o.query(".ft-tooltip")],Ci.prototype,"tooltip",void 0),Ti([o.query(".ft-tooltip--content")],Ci.prototype,"tooltipContent",void 0),Ti([o.state()],Ci.prototype,"visible",void 0),i.customElement("ft-tooltip")(Ci);const ji={color:i.FtCssVariableFactory.extend("--ft-loader-color",i.designSystemVariables.colorPrimary),size:i.FtCssVariableFactory.create("--ft-loader-size","SIZE","80px")},Ai=e.css`
|
|
208
|
+
`,Zt=[Object.keys(m).map((t=>function(t){const o=m[t];return e.css`
|
|
209
|
+
font-family: ${o.fontFamily};
|
|
210
|
+
font-size: ${o.fontSize};
|
|
211
|
+
font-weight: ${o.fontWeight};
|
|
212
|
+
letter-spacing: ${o.letterSpacing};
|
|
213
|
+
line-height: ${o.lineHeight};
|
|
214
|
+
text-transform: ${o.textCase};
|
|
215
|
+
`}(t)))],Ft={color:o.FtCssVariableFactory.extend("--ft-loader-color","",o.designSystemVariables.colorPrimary),size:o.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},Bt=e.css`
|
|
280
216
|
:host {
|
|
281
217
|
line-height: 0;
|
|
282
218
|
}
|
|
@@ -285,8 +221,8 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
285
221
|
display: inline-block;
|
|
286
222
|
position: relative;
|
|
287
223
|
|
|
288
|
-
width: ${
|
|
289
|
-
height: ${
|
|
224
|
+
width: ${Ft.size};
|
|
225
|
+
height: ${Ft.size};
|
|
290
226
|
}
|
|
291
227
|
|
|
292
228
|
.ft-loader div {
|
|
@@ -295,7 +231,7 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
295
231
|
width: 25%;
|
|
296
232
|
height: 25%;
|
|
297
233
|
border-radius: 50%;
|
|
298
|
-
background: ${
|
|
234
|
+
background: ${Ft.color};
|
|
299
235
|
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
300
236
|
}
|
|
301
237
|
|
|
@@ -342,17 +278,10 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
342
278
|
transform: translate(0, 0);
|
|
343
279
|
}
|
|
344
280
|
100% {
|
|
345
|
-
transform: translate(calc(0.35 * ${
|
|
281
|
+
transform: translate(calc(0.35 * ${Ft.size}), 0);
|
|
346
282
|
}
|
|
347
283
|
}
|
|
348
|
-
|
|
349
|
-
<div class="ft-loader">
|
|
350
|
-
<div></div>
|
|
351
|
-
<div></div>
|
|
352
|
-
<div></div>
|
|
353
|
-
<div></div>
|
|
354
|
-
</div>
|
|
355
|
-
`}}var Bi,Ri;_i.styles=Ai,i.customElement("ft-loader")(_i),function(t){t.THUMBS_DOWN="",t.THUMBS_DOWN_PLAIN="",t.THUMBS_UP="",t.THUMBS_UP_PLAIN="",t.STAR="",t.STAR_PLAIN="",t.DESKTOP="",t.LIFE_RING="",t.GLOBE="",t.PIGGY_BANK="",t.TABLET_LANDSCAPE="",t.TABLET_PORTRAIT="",t.MOBILE_LANDSCAPE="",t.MOBILE_PORTRAIT="",t.ARROW_RIGHT_TO_LINE="",t.THIN_ARROW_UP="",t.CONTEXTUAL="",t.CHART_SIMPLE="",t.BARS_PROGRESS="",t.LINE_CHART="",t.STACKED_CHART="",t.BOOK_OPEN_GEAR="",t.BOOK_OPEN_GEAR_SLASH="",t.DIAGRAM_SUNBURST="",t.DIAGRAM_SANKEY="",t.UNSTRUCTURED_DOC="",t.RESET="",t.THIN_ARROW_LEFT="",t.THIN_ARROW_RIGHT="",t.MY_COLLECTIONS="",t.OFFLINE_SETTINGS="",t.MY_LIBRARY="",t.RATE_PLAIN="",t.RATE="",t.FEEDBACK_PLAIN="",t.PAUSE="",t.PLAY="",t.RELATIVES_PLAIN="",t.RELATIVES="",t.SHORTCUT_MENU="",t.PRINT="",t.DEFAULT_ROLES="",t.ACCOUNT_SETTINGS="",t.ONLINE="",t.OFFLINE="",t.UPLOAD="",t.BOOK_PLAIN="",t.SYNC="",t.SHARED_PBK="",t.COLLECTIONS="",t.SEARCH_IN_PUBLICATION="",t.BOOKS="",t.LOCKER="",t.ARROW_DOWN="",t.ARROW_LEFT="",t.ARROW_RIGHT="",t.ARROW_UP="",t.SAVE="",t.MAILS_AND_NOTIFICATIONS="",t.DOT="",t.MINUS="",t.PLUS="",t.FILTERS="",t.STRIPE_ARROW_RIGHT="",t.STRIPE_ARROW_LEFT="",t.ATTACHMENTS="",t.ADD_BOOKMARK="",t.BOOKMARK="",t.EXPORT="",t.MENU="",t.TAG="",t.TAG_PLAIN="",t.COPY_TO_CLIPBOARD="",t.COLUMNS="",t.ARTICLE="",t.CLOSE_PLAIN="",t.CHECK_PLAIN="",t.LOGOUT="",t.SIGN_IN="",t.THIN_ARROW="",t.TRIANGLE_BOTTOM="",t.TRIANGLE_LEFT="",t.TRIANGLE_RIGHT="",t.TRIANGLE_TOP="",t.FACET_HAS_DESCENDANT="",t.MINUS_PLAIN="",t.PLUS_PLAIN="",t.INFO="",t.ICON_EXPAND="",t.ICON_COLLAPSE="",t.ADD_TO_PBK="",t.ALERT="",t.ADD_ALERT="",t.BACK_TO_SEARCH="",t.DOWNLOAD="",t.EDIT="",t.FEEDBACK="",t.MODIFY_PBK="",t.SCHEDULED="",t.SEARCH="",t.SHARE="󨃱",t.TOC="",t.WRITE_UGC="",t.TRASH="",t.EXTLINK="",t.CALENDAR="",t.BOOK="",t.DOWNLOAD_PLAIN="",t.CHECK="",t.TOPICS="",t.EYE="",t.EYE_SLASH="",t.DISC="",t.CIRCLE="",t.SHARED="",t.SORT_UNSORTED="",t.SORT_UP="",t.SORT_DOWN="",t.WORKING="",t.CLOSE="",t.ZOOM_OUT="",t.ZOOM_IN="",t.ZOOM_REALSIZE="",t.ZOOM_FULLSCREEN="",t.ADMIN_RESTRICTED="",t.ADMIN_THEME="",t.WARNING="",t.CONTEXT="",t.SEARCH_HOME="",t.STEPS="",t.HOME="",t.TRANSLATE="",t.USER="",t.ADMIN="",t.ANALYTICS="",t.ADMIN_KHUB="",t.ADMIN_USERS="",t.ADMIN_INTEGRATION="",t.ADMIN_PORTAL="",t.COMMENT_QUESTION="",t.COMMENT_QUESTION_PLAIN="",t.MESSAGE_BOT="",t.PIP="",t.PIP_WIDE="",t.EXPAND_WIDE="",t.X_MARK=""}(Bi||(Bi={})),function(t){t.UNKNOWN="",t.ABW="",t.AUDIO="",t.AVI="",t.CHM="",t.CODE="",t.CSV="",t.DITA="",t.EPUB="",t.EXCEL="",t.FLAC="",t.GIF="",t.GZIP="",t.HTML="",t.IMAGE="",t.JPEG="",t.JSON="",t.M4A="",t.MOV="",t.MP3="",t.MP4="",t.OGG="",t.PDF="",t.PNG="",t.POWERPOINT="",t.RAR="",t.STP="",t.TEXT="",t.VIDEO="",t.WAV="",t.WMA="",t.WORD="",t.XML="",t.YAML="",t.ZIP=""}(Ri||(Ri={})),new Map([...["abw"].map((t=>[t,Ri.ABW])),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map((t=>[t,Ri.AUDIO])),...["avi"].map((t=>[t,Ri.AVI])),...["chm","xhs"].map((t=>[t,Ri.CHM])),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map((t=>[t,Ri.CODE])),...["csv"].map((t=>[t,Ri.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,Ri.DITA])),...["epub"].map((t=>[t,Ri.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,Ri.EXCEL])),...["flac"].map((t=>[t,Ri.FLAC])),...["gif"].map((t=>[t,Ri.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,Ri.GZIP])),...["html","htm","xhtml"].map((t=>[t,Ri.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf"].map((t=>[t,Ri.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,Ri.JPEG])),...["json"].map((t=>[t,Ri.JSON])),...["m4a","m4p"].map((t=>[t,Ri.M4A])),...["mov","qt"].map((t=>[t,Ri.MOV])),...["mp3"].map((t=>[t,Ri.MP3])),...["mp4","m4v"].map((t=>[t,Ri.MP4])),...["ogg","oga"].map((t=>[t,Ri.OGG])),...["pdf","ps"].map((t=>[t,Ri.PDF])),...["png"].map((t=>[t,Ri.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,Ri.POWERPOINT])),...["rar"].map((t=>[t,Ri.RAR])),...["stp"].map((t=>[t,Ri.STP])),...["txt","rtf","md","mdown"].map((t=>[t,Ri.TEXT])),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map((t=>[t,Ri.VIDEO])),...["wav"].map((t=>[t,Ri.WAV])),...["wma"].map((t=>[t,Ri.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,Ri.WORD])),...["xml","xsl","rdf"].map((t=>[t,Ri.XML])),...["yaml","yml","x-yaml"].map((t=>[t,Ri.YAML])),...["zip"].map((t=>[t,Ri.ZIP]))]);const Fi={size:i.FtCssVariableFactory.create("--ft-icon-font-size","SIZE","24px"),fluidTopicsFontFamily:i.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family",i.FtCssVariableFactory.create("--ft-icon-font-family","UNKNOWN","ft-icons")),fileFormatFontFamily:i.FtCssVariableFactory.extend("--ft-icon-file-format-font-family",i.FtCssVariableFactory.create("--ft-icon-font-family","UNKNOWN","ft-mime")),materialFontFamily:i.FtCssVariableFactory.extend("--ft-icon-material-font-family",i.FtCssVariableFactory.create("--ft-icon-font-family","UNKNOWN","Material Icons")),verticalAlign:i.FtCssVariableFactory.create("--ft-icon-vertical-align","UNKNOWN","unset")},Mi=e.css`
|
|
284
|
+
`,Dt={size:o.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:o.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:o.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:o.FtCssVariableFactory.extend("--ft-icon-material-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:o.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},Ht=e.css`
|
|
356
285
|
:host, i.ft-icon {
|
|
357
286
|
display: inline-flex;
|
|
358
287
|
align-items: center;
|
|
@@ -361,14 +290,14 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
361
290
|
}
|
|
362
291
|
|
|
363
292
|
:host {
|
|
364
|
-
width: ${
|
|
365
|
-
height: ${
|
|
293
|
+
width: ${Dt.size};
|
|
294
|
+
height: ${Dt.size};
|
|
366
295
|
}
|
|
367
296
|
|
|
368
297
|
i.ft-icon {
|
|
369
298
|
width: 100%;
|
|
370
299
|
height: 100%;
|
|
371
|
-
font-size: ${
|
|
300
|
+
font-size: ${Dt.size};
|
|
372
301
|
line-height: 1;
|
|
373
302
|
font-weight: normal;
|
|
374
303
|
text-transform: none;
|
|
@@ -379,33 +308,28 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
379
308
|
text-rendering: auto;
|
|
380
309
|
-webkit-font-smoothing: antialiased;
|
|
381
310
|
-moz-osx-font-smoothing: grayscale;
|
|
382
|
-
vertical-align: ${
|
|
311
|
+
vertical-align: ${Dt.verticalAlign};
|
|
383
312
|
}
|
|
384
313
|
|
|
385
314
|
i.ft-icon.ft-icon--fluid-topics {
|
|
386
|
-
font-family: ${
|
|
315
|
+
font-family: ${Dt.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
|
|
387
316
|
|
|
388
317
|
/* Ugly fix because font is broken */
|
|
389
|
-
font-size: calc(0.75 * ${
|
|
390
|
-
line-height: ${
|
|
318
|
+
font-size: calc(0.75 * ${Dt.size});
|
|
319
|
+
line-height: ${Dt.size};
|
|
391
320
|
position: relative;
|
|
392
321
|
top: -4%;
|
|
393
322
|
justify-content: center;
|
|
394
323
|
}
|
|
395
324
|
|
|
396
325
|
.ft-icon--file-format {
|
|
397
|
-
font-family: ${
|
|
326
|
+
font-family: ${Dt.fileFormatFontFamily}, ft-mime, sans-serif;
|
|
398
327
|
}
|
|
399
328
|
|
|
400
329
|
.ft-icon--material {
|
|
401
|
-
font-family: ${
|
|
330
|
+
font-family: ${Dt.materialFontFamily}, "Material Icons", sans-serif;
|
|
402
331
|
}
|
|
403
|
-
|
|
404
|
-
<i class="ft-icon ft-icon--${t}" part="icon icon-${t}">
|
|
405
|
-
${n.unsafeHTML(this.resolvedIcon)}
|
|
406
|
-
<slot ?hidden=${i}></slot>
|
|
407
|
-
</i>
|
|
408
|
-
`}get textContent(){var t,i;return null!==(i=null===(t=this.slottedContent)||void 0===t?void 0:t.assignedNodes().map((t=>t.textContent)).join("").trim())&&void 0!==i?i:""}update(t){super.update(t),["value","variant"].some((i=>t.has(i)))&&this.resolveIcon()}resolveIcon(){var t,i;let o=this.value||this.textContent;switch(this.variant){case Zi.file_format:this.resolvedIcon=null!==(t=Ri[o.replace("-","_").toUpperCase()])&&void 0!==t?t:o;break;case Zi.material:this.resolvedIcon=this.value||e.nothing;break;default:this.resolvedIcon=null!==(i=Bi[o.replace("-","_").toUpperCase()])&&void 0!==i?i:o}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}Ui.elementDefinitions={},Ui.styles=Mi,Hi([o.property()],Ui.prototype,"variant",void 0),Hi([o.property()],Ui.prototype,"value",void 0),Hi([o.state()],Ui.prototype,"resolvedIcon",void 0),Hi([o.query("slot")],Ui.prototype,"slottedContent",void 0),i.customElement("ft-icon")(Ui);const Wi=i.FtCssVariableFactory.extend("--ft-button-color",i.designSystemVariables.colorPrimary),Di={backgroundColor:i.FtCssVariableFactory.extend("--ft-button-background-color",i.designSystemVariables.colorSurface),borderRadius:i.FtCssVariableFactory.extend("--ft-button-border-radius",i.designSystemVariables.borderRadiusL),color:Wi,fontSize:i.FtCssVariableFactory.extend("--ft-button-font-size",hi.fontSize),iconSize:i.FtCssVariableFactory.create("--ft-button-icon-size","SIZE","24px"),rippleColor:i.FtCssVariableFactory.extend("--ft-button-ripple-color",Wi),verticalPadding:i.FtCssVariableFactory.create("--ft-button-vertical-padding","SIZE","6px"),horizontalPadding:i.FtCssVariableFactory.create("--ft-button-horizontal-padding","SIZE","8px"),iconPadding:i.FtCssVariableFactory.create("--ft-button-icon-padding","SIZE","8px"),opacityDisabled:i.FtCssVariableFactory.external(i.designSystemVariables.colorOpacityDisabled,"Design system")},Li=i.FtCssVariableFactory.extend("--ft-button-primary-color",i.FtCssVariableFactory.extend("--ft-button-color",i.designSystemVariables.colorOnPrimary)),Pi={backgroundColor:i.FtCssVariableFactory.extend("--ft-button-primary-background-color",i.FtCssVariableFactory.extend("--ft-button-background-color",i.designSystemVariables.colorPrimary)),color:Li,rippleColor:i.FtCssVariableFactory.extend("--ft-button-primary-ripple-color",Li)},Gi=i.FtCssVariableFactory.extend("--ft-button-dense-border-radius",i.FtCssVariableFactory.extend("--ft-button-border-radius",i.designSystemVariables.borderRadiusM)),Ki=i.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","SIZE","2px"),Vi=i.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","SIZE","4px"),qi=i.FtCssVariableFactory.create("--ft-button-dense-icon-padding","SIZE","4px"),Xi=[e.css`
|
|
332
|
+
`,At=o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorPrimary),Gt={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorSurface),borderRadius:o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusL),color:At,fontSize:o.FtCssVariableFactory.extend("--ft-button-font-size","",$t.fontSize),iconSize:o.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:o.FtCssVariableFactory.extend("--ft-button-ripple-color","",At),verticalPadding:o.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:o.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:o.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:o.FtCssVariableFactory.external(o.designSystemVariables.colorOpacityDisabled,"Design system")},jt=o.FtCssVariableFactory.extend("--ft-button-primary-color","",o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorOnPrimary)),Tt={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-primary-background-color","",o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorPrimary)),color:jt,rippleColor:o.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",jt)},Pt=o.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusM)),Mt=o.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),_t=o.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),Yt=o.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px"),Vt=[e.css`
|
|
409
333
|
:host {
|
|
410
334
|
display: inline-block;
|
|
411
335
|
max-width: 100%;
|
|
@@ -416,7 +340,7 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
416
340
|
box-shadow: 0px 0px 0px transparent;
|
|
417
341
|
border: 0px solid transparent;
|
|
418
342
|
text-shadow: 0px 0px 0px transparent;
|
|
419
|
-
font-size: ${
|
|
343
|
+
font-size: ${Gt.fontSize};
|
|
420
344
|
}
|
|
421
345
|
|
|
422
346
|
button:hover {
|
|
@@ -445,31 +369,31 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
445
369
|
border: none;
|
|
446
370
|
pointer-events: auto;
|
|
447
371
|
|
|
448
|
-
--ft-button-internal-line-height: max(calc(${
|
|
449
|
-
--ft-button-internal-color: ${
|
|
450
|
-
${
|
|
451
|
-
${
|
|
372
|
+
--ft-button-internal-line-height: max(calc(${Gt.fontSize} + 2px), ${Gt.iconSize});
|
|
373
|
+
--ft-button-internal-color: ${Gt.color};
|
|
374
|
+
${o.setVariable(Dt.size,Gt.iconSize)};
|
|
375
|
+
${o.setVariable(l.color,Gt.rippleColor)};
|
|
452
376
|
|
|
453
|
-
border-radius: ${
|
|
454
|
-
padding: ${
|
|
455
|
-
background-color: ${
|
|
377
|
+
border-radius: ${Gt.borderRadius};
|
|
378
|
+
padding: ${Gt.verticalPadding} ${Gt.horizontalPadding};
|
|
379
|
+
background-color: ${Gt.backgroundColor};
|
|
456
380
|
color: var(--ft-button-internal-color);
|
|
457
381
|
-webkit-mask-image: radial-gradient(white, black);
|
|
458
382
|
}
|
|
459
383
|
|
|
460
384
|
.ft-button.ft-button--outlined {
|
|
461
385
|
border: 1px solid var(--ft-button-internal-color);
|
|
462
|
-
padding: calc(${
|
|
386
|
+
padding: calc(${Gt.verticalPadding} - 1px) calc(${Gt.horizontalPadding} - 1px);
|
|
463
387
|
}
|
|
464
388
|
|
|
465
389
|
.ft-button.ft-button--dense {
|
|
466
|
-
padding: ${
|
|
467
|
-
border-radius: ${
|
|
468
|
-
gap: ${
|
|
390
|
+
padding: ${Mt} ${_t};
|
|
391
|
+
border-radius: ${Pt};
|
|
392
|
+
gap: ${Yt};
|
|
469
393
|
}
|
|
470
394
|
|
|
471
395
|
.ft-button.ft-button--dense.ft-button--outlined {
|
|
472
|
-
padding: calc(${
|
|
396
|
+
padding: calc(${Mt} - 1px) calc(${_t} - 1px);
|
|
473
397
|
}
|
|
474
398
|
|
|
475
399
|
.ft-button:not([disabled]):hover {
|
|
@@ -477,22 +401,22 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
477
401
|
}
|
|
478
402
|
|
|
479
403
|
.ft-button--round {
|
|
480
|
-
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${
|
|
404
|
+
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Gt.verticalPadding});
|
|
481
405
|
}
|
|
482
406
|
|
|
483
407
|
.ft-button--round.ft-button--dense {
|
|
484
|
-
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${
|
|
408
|
+
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Mt});
|
|
485
409
|
}
|
|
486
410
|
|
|
487
411
|
.ft-button[disabled] {
|
|
488
412
|
filter: grayscale(1);
|
|
489
|
-
opacity: ${
|
|
413
|
+
opacity: ${Gt.opacityDisabled};
|
|
490
414
|
}
|
|
491
415
|
|
|
492
416
|
.ft-button.ft-button--primary {
|
|
493
|
-
background-color: ${
|
|
494
|
-
--ft-button-internal-color: ${
|
|
495
|
-
${
|
|
417
|
+
background-color: ${Tt.backgroundColor};
|
|
418
|
+
--ft-button-internal-color: ${Tt.color};
|
|
419
|
+
${o.setVariable(l.color,Tt.rippleColor)};
|
|
496
420
|
}
|
|
497
421
|
|
|
498
422
|
.ft-button:focus {
|
|
@@ -505,13 +429,13 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
505
429
|
white-space: nowrap;
|
|
506
430
|
text-overflow: ellipsis;
|
|
507
431
|
display: block;
|
|
508
|
-
margin: 0 ${
|
|
509
|
-
${
|
|
510
|
-
${
|
|
432
|
+
margin: 0 ${Gt.iconPadding};
|
|
433
|
+
${o.setVariable($t.fontSize,"1em")};
|
|
434
|
+
${o.setVariable($t.lineHeight,"var(--ft-button-internal-line-height)")};
|
|
511
435
|
}
|
|
512
436
|
|
|
513
437
|
.ft-button--dense .ft-button--label {
|
|
514
|
-
margin: 0 ${
|
|
438
|
+
margin: 0 ${Yt};
|
|
515
439
|
}
|
|
516
440
|
|
|
517
441
|
.ft-button--label[hidden] {
|
|
@@ -524,13 +448,13 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
524
448
|
}
|
|
525
449
|
|
|
526
450
|
.ft-button--label[hidden] + ft-icon {
|
|
527
|
-
margin: 0 calc(${
|
|
528
|
-
padding: 0 ${
|
|
451
|
+
margin: 0 calc(${Gt.horizontalPadding} * -1);
|
|
452
|
+
padding: 0 ${Gt.verticalPadding};
|
|
529
453
|
}
|
|
530
454
|
|
|
531
455
|
.ft-button--dense .ft-button--label[hidden] + ft-icon {
|
|
532
|
-
margin: 0 calc(${
|
|
533
|
-
padding: 0 ${
|
|
456
|
+
margin: 0 calc(${_t} * -1);
|
|
457
|
+
padding: 0 ${Mt};
|
|
534
458
|
}
|
|
535
459
|
|
|
536
460
|
.ft-button:not(.ft-button--trailing-icon) ft-icon,
|
|
@@ -539,33 +463,334 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
539
463
|
}
|
|
540
464
|
|
|
541
465
|
ft-loader {
|
|
542
|
-
${
|
|
543
|
-
${
|
|
466
|
+
${o.setVariable(Ft.size,Gt.iconSize)};
|
|
467
|
+
${o.setVariable(Ft.color,"var(--ft-button-internal-color)")};
|
|
544
468
|
}
|
|
545
|
-
`,
|
|
469
|
+
`,o.noTextSelect];var qt,Xt=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class Jt extends o.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new o.Debouncer(1e3),this.onTransitionStart=t=>{"transform"===t.propertyName&&(this.rippling=this.pressed,this.debouncer.run((()=>this.rippling=!1)))},this.onTransitionEnd=t=>{"transform"===t.propertyName&&(this.rippling=!1)},this.setupDebouncer=new o.Debouncer(10),this.moveRipple=t=>{var o,e;let{x:r,y:i}=this.getCoordinates(t),a=null!==(e=null===(o=this.ripple)||void 0===o?void 0:o.getBoundingClientRect())&&void 0!==e?e:{x:0,y:0,width:0,height:0};this.originX=Math.round(null!=r?r-a.x:a.width/2),this.originY=Math.round(null!=i?i-a.y:a.height/2)},this.startPress=t=>{this.moveRipple(t),this.pressed=!this.isIgnored(t)},this.endPress=()=>{this.pressed=!1},this.startHover=t=>{this.hovered=!this.isIgnored(t)},this.endHover=()=>{this.hovered=!1},this.startFocus=t=>{this.focused=this.isFocusVisible(null==t?void 0:t.target)&&!this.isIgnored(t)},this.endFocus=()=>{this.focused=!1}}render(){let t={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return e.html`
|
|
470
|
+
<style>
|
|
471
|
+
.ft-ripple .ft-ripple--effect {
|
|
472
|
+
left: ${this.originX}px;
|
|
473
|
+
top: ${this.originY}px;
|
|
474
|
+
}
|
|
475
|
+
</style>
|
|
476
|
+
<div class="${i.classMap(t)}">
|
|
477
|
+
<div class="ft-ripple--background"></div>
|
|
478
|
+
<div class="ft-ripple--effect"></div>
|
|
479
|
+
</div>
|
|
480
|
+
`}contentAvailableCallback(t){super.contentAvailableCallback(t),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(t){var o,e;super.update(t),t.has("disabled")&&(this.disabled?(this.endRipple(),null===(o=this.target)||void 0===o||o.removeAttribute("data-is-ft-ripple-target")):null===(e=this.target)||void 0===e||e.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run((()=>this.defaultSetup()))}defaultSetup(){var t,o;const e=null===(t=this.shadowRoot)||void 0===t?void 0:t.host.parentElement;e&&this.setupFor(null!==(o=this.target)&&void 0!==o?o:e)}setupFor(t){if(this.setupDebouncer.cancel(),this.target===t)return;this.onDisconnect&&this.onDisconnect(),this.target=t,t.setAttribute("data-is-ft-ripple-target","true");const o=(...t)=>o=>{t.forEach((t=>window.addEventListener(t,this.endPress,{once:!0}))),this.startPress(o)},e=o("mouseup","contextmenu"),r=o("touchend","touchcancel"),i=t=>{["Enter"," "].includes(t.key)&&o("keyup")(t)};t.addEventListener("mouseover",this.startHover),t.addEventListener("mousemove",this.moveRipple),t.addEventListener("mouseleave",this.endHover),t.addEventListener("mousedown",e),t.addEventListener("touchstart",r),t.addEventListener("touchmove",this.moveRipple),t.addEventListener("keydown",i),t.addEventListener("focus",this.startFocus),t.addEventListener("blur",this.endFocus),t.addEventListener("focusin",this.startFocus),t.addEventListener("focusout",this.endFocus),this.onDisconnect=()=>{t.removeAttribute("data-is-ft-ripple-target"),t.removeEventListener("mouseover",this.startHover),t.removeEventListener("mousemove",this.moveRipple),t.removeEventListener("mouseleave",this.endHover),t.removeEventListener("mousedown",e),t.removeEventListener("touchstart",r),t.removeEventListener("touchmove",this.moveRipple),t.removeEventListener("keydown",i),t.removeEventListener("focus",this.startFocus),t.removeEventListener("blur",this.endFocus),t.removeEventListener("focusin",this.startFocus),t.removeEventListener("focusout",this.endFocus),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(t){const o=t,e=t;let r,i;return null!=o.x?({x:r,y:i}=o):null!=e.touches&&(r=e.touches[0].clientX,i=e.touches[0].clientY),{x:r,y:i}}isFocusVisible(t){return!(t instanceof HTMLElement)||t.matches(":focus-visible")}isIgnored(t){if(this.disabled)return!0;if(null!=t)for(let o of t.composedPath()){if(o===this.target)break;if("hasAttribute"in o&&o.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}}Jt.elementDefinitions={},Jt.styles=g,Xt([r.property({type:Boolean})],Jt.prototype,"primary",void 0),Xt([r.property({type:Boolean})],Jt.prototype,"secondary",void 0),Xt([r.property({type:Boolean})],Jt.prototype,"unbounded",void 0),Xt([r.property({type:Boolean})],Jt.prototype,"activated",void 0),Xt([r.property({type:Boolean})],Jt.prototype,"selected",void 0),Xt([r.property({type:Boolean})],Jt.prototype,"disabled",void 0),Xt([r.state()],Jt.prototype,"hovered",void 0),Xt([r.state()],Jt.prototype,"focused",void 0),Xt([r.state()],Jt.prototype,"pressed",void 0),Xt([r.state()],Jt.prototype,"rippling",void 0),Xt([r.state()],Jt.prototype,"originX",void 0),Xt([r.state()],Jt.prototype,"originY",void 0),Xt([r.query(".ft-ripple")],Jt.prototype,"ripple",void 0),Xt([r.query(".ft-ripple--effect")],Jt.prototype,"rippleEffect",void 0),o.customElement("ft-ripple")(Jt);const Qt=window,to=Qt.trustedTypes,oo=to?to.createPolicy("lit-html",{createHTML:t=>t}):void 0,eo="$lit$",ro=`lit$${(Math.random()+"").slice(9)}$`,io="?"+ro,ao=`<${io}>`,no=document,lo=()=>no.createComment(""),so=t=>null===t||"object"!=typeof t&&"function"!=typeof t,co=Array.isArray,po="[ \t\n\f\r]",fo=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,ho=/-->/g,go=/>/g,yo=RegExp(`>|${po}(?:([^\\s"'>=/]+)(${po}*=${po}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),bo=/'/g,uo=/"/g,mo=/^(?:script|style|textarea|title)$/i,xo=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),Oo=Symbol.for("lit-noChange"),vo=Symbol.for("lit-nothing"),No=new WeakMap,So=no.createTreeWalker(no,129,null,!1),$o=(t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=fo;for(let o=0;o<e;o++){const e=t[o];let l,s,c=-1,p=0;for(;p<e.length&&(n.lastIndex=p,s=n.exec(e),null!==s);)p=n.lastIndex,n===fo?"!--"===s[1]?n=ho:void 0!==s[1]?n=go:void 0!==s[2]?(mo.test(s[2])&&(i=RegExp("</"+s[2],"g")),n=yo):void 0!==s[3]&&(n=yo):n===yo?">"===s[0]?(n=null!=i?i:fo,c=-1):void 0===s[1]?c=-2:(c=n.lastIndex-s[2].length,l=s[1],n=void 0===s[3]?yo:'"'===s[3]?uo:bo):n===uo||n===bo?n=yo:n===ho||n===go?n=fo:(n=yo,i=void 0);const f=n===yo&&t[o+1].startsWith("/>")?" ":"";a+=n===fo?e+ao:c>=0?(r.push(l),e.slice(0,c)+eo+e.slice(c)+ro+f):e+ro+(-2===c?(r.push(void 0),o):f)}const l=a+(t[e]||"<?>")+(2===o?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==oo?oo.createHTML(l):l,r]};class Co{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,a=0;const n=t.length-1,l=this.parts,[s,c]=$o(t,o);if(this.el=Co.createElement(s,e),So.currentNode=this.el.content,2===o){const t=this.el.content,o=t.firstChild;o.remove(),t.append(...o.childNodes)}for(;null!==(r=So.nextNode())&&l.length<n;){if(1===r.nodeType){if(r.hasAttributes()){const t=[];for(const o of r.getAttributeNames())if(o.endsWith(eo)||o.startsWith(ro)){const e=c[a++];if(t.push(o),void 0!==e){const t=r.getAttribute(e.toLowerCase()+eo).split(ro),o=/([.?@])?(.*)/.exec(e);l.push({type:1,index:i,name:o[2],strings:t,ctor:"."===o[1]?Uo:"?"===o[1]?Eo:"@"===o[1]?Lo:Wo})}else l.push({type:6,index:i})}for(const o of t)r.removeAttribute(o)}if(mo.test(r.tagName)){const t=r.textContent.split(ro),o=t.length-1;if(o>0){r.textContent=to?to.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],lo()),So.nextNode(),l.push({type:2,index:++i});r.append(t[o],lo())}}}else if(8===r.nodeType)if(r.data===io)l.push({type:2,index:i});else{let t=-1;for(;-1!==(t=r.data.indexOf(ro,t+1));)l.push({type:7,index:i}),t+=ro.length-1}i++}}static createElement(t,o){const e=no.createElement("template");return e.innerHTML=t,e}}function wo(t,o,e=t,r){var i,a,n,l;if(o===Oo)return o;let s=void 0!==r?null===(i=e._$Co)||void 0===i?void 0:i[r]:e._$Cl;const c=so(o)?void 0:o._$litDirective$;return(null==s?void 0:s.constructor)!==c&&(null===(a=null==s?void 0:s._$AO)||void 0===a||a.call(s,!1),void 0===c?s=void 0:(s=new c(t),s._$AT(t,e,r)),void 0!==r?(null!==(n=(l=e)._$Co)&&void 0!==n?n:l._$Co=[])[r]=s:e._$Cl=s),void 0!==s&&(o=wo(t,s._$AS(t,o.values),s,r)),o}class Io{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var o;const{el:{content:e},parts:r}=this._$AD,i=(null!==(o=null==t?void 0:t.creationScope)&&void 0!==o?o:no).importNode(e,!0);So.currentNode=i;let a=So.nextNode(),n=0,l=0,s=r[0];for(;void 0!==s;){if(n===s.index){let o;2===s.type?o=new Ro(a,a.nextSibling,this,t):1===s.type?o=new s.ctor(a,s.name,s.strings,this,t):6===s.type&&(o=new zo(a,this,t)),this._$AV.push(o),s=r[++l]}n!==(null==s?void 0:s.index)&&(a=So.nextNode(),n++)}return i}v(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}}class Ro{constructor(t,o,e,r){var i;this.type=2,this._$AH=vo,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cp=null===(i=null==r?void 0:r.isConnected)||void 0===i||i}get _$AU(){var t,o;return null!==(o=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==o?o:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===(null==t?void 0:t.nodeType)&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=wo(this,t,o),so(t)?t===vo||null==t||""===t?(this._$AH!==vo&&this._$AR(),this._$AH=vo):t!==this._$AH&&t!==Oo&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>co(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]))(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==vo&&so(this._$AH)?this._$AA.nextSibling.data=t:this.$(no.createTextNode(t)),this._$AH=t}g(t){var o;const{values:e,_$litType$:r}=t,i="number"==typeof r?this._$AC(t):(void 0===r.el&&(r.el=Co.createElement(r.h,this.options)),r);if((null===(o=this._$AH)||void 0===o?void 0:o._$AD)===i)this._$AH.v(e);else{const t=new Io(i,this),o=t.u(this.options);t.v(e),this.$(o),this._$AH=t}}_$AC(t){let o=No.get(t.strings);return void 0===o&&No.set(t.strings,o=new Co(t)),o}T(t){co(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let e,r=0;for(const i of t)r===o.length?o.push(e=new Ro(this.k(lo()),this.k(lo()),this,this.options)):e=o[r],e._$AI(i),r++;r<o.length&&(this._$AR(e&&e._$AB.nextSibling,r),o.length=r)}_$AR(t=this._$AA.nextSibling,o){var e;for(null===(e=this._$AP)||void 0===e||e.call(this,!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){var o;void 0===this._$AM&&(this._$Cp=t,null===(o=this._$AP)||void 0===o||o.call(this,t))}}class Wo{constructor(t,o,e,r,i){this.type=1,this._$AH=vo,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=i,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=vo}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=wo(this,t,o,0),a=!so(t)||t!==this._$AH&&t!==Oo,a&&(this._$AH=t);else{const r=t;let n,l;for(t=i[0],n=0;n<i.length-1;n++)l=wo(this,r[e+n],o,n),l===Oo&&(l=this._$AH[n]),a||(a=!so(l)||l!==this._$AH[n]),l===vo?t=vo:t!==vo&&(t+=(null!=l?l:"")+i[n+1]),this._$AH[n]=l}a&&!r&&this.j(t)}j(t){t===vo?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class Uo extends Wo{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===vo?void 0:t}}const ko=to?to.emptyScript:"";class Eo extends Wo{constructor(){super(...arguments),this.type=4}j(t){t&&t!==vo?this.element.setAttribute(this.name,ko):this.element.removeAttribute(this.name)}}class Lo extends Wo{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){var e;if((t=null!==(e=wo(this,t,o,0))&&void 0!==e?e:vo)===Oo)return;const r=this._$AH,i=t===vo&&r!==vo||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,a=t!==vo&&(r===vo||i);i&&this.element.removeEventListener(this.name,this,r),a&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var o,e;"function"==typeof this._$AH?this._$AH.call(null!==(e=null===(o=this.options)||void 0===o?void 0:o.host)&&void 0!==e?e:this.element,t):this._$AH.handleEvent(t)}}class zo{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){wo(this,t)}}const Ko=Qt.litHtmlPolyfillSupport;null==Ko||Ko(Co,Ro),(null!==(qt=Qt.litHtmlVersions)&&void 0!==qt?qt:Qt.litHtmlVersions=[]).push("2.7.3");
|
|
481
|
+
/**
|
|
482
|
+
* @license
|
|
483
|
+
* Copyright 2020 Google LLC
|
|
484
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
485
|
+
*/
|
|
486
|
+
const Zo=Symbol.for(""),Fo=t=>{if((null==t?void 0:t.r)===Zo)return null==t?void 0:t._$litStatic$},Bo=t=>({_$litStatic$:t,r:Zo}),Do=new Map,Ho=(t=>(o,...e)=>{const r=e.length;let i,a;const n=[],l=[];let s,c=0,p=!1;for(;c<r;){for(s=o[c];c<r&&void 0!==(a=e[c],i=Fo(a));)s+=i+o[++c],p=!0;c!==r&&l.push(a),n.push(s),c++}if(c===r&&n.push(o[r]),p){const t=n.join("$$lit$$");void 0===(o=Do.get(t))&&(n.raw=n,Do.set(t,o=n)),e=l}return t(o,...e)})(xo);var Ao;!function(t){t.title="title",t.title_dense="title-dense",t.subtitle1="subtitle1",t.subtitle2="subtitle2",t.body1="body1",t.body2="body2",t.caption="caption",t.breadcrumb="breadcrumb",t.overline="overline",t.button="button",t.display="display",t.title1="title-1",t.title2="title-2",t.title3="title-3",t.body1regular="body-1-regular",t.body1medium="body-1-medium",t.body1semibold="body-1-semibold",t.body2regular="body-2-regular",t.body2medium="body-2-medium",t.body2semibold="body-2-semibold",t.label1medium="label-1-medium",t.label1semibold="label-1-semibold",t.label1bold="label-1-bold",t.label2medium="label-2-medium",t.label2semibold="label-2-semibold",t.label2bold="label-2-bold",t.caption1medium="caption-1-medium",t.caption1semibold="caption-1-semibold",t.caption1bold="caption-1-bold",t.caption2medium="caption-2-medium",t.caption2semibold="caption-2-semibold",t.caption2bold="caption-2-bold"}(Ao||(Ao={}));var Go=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class jo extends o.FtLitElement{constructor(){super(...arguments),this.variant=Ao.body1}render(){return this.element?Ho`
|
|
487
|
+
<${Bo(this.element)}
|
|
488
|
+
class="ft-typography ft-typography--${this.variant}">
|
|
489
|
+
<slot></slot>
|
|
490
|
+
</${Bo(this.element)}>
|
|
491
|
+
`:Ho`
|
|
492
|
+
<slot class="ft-typography ft-typography--${this.variant}"></slot>
|
|
493
|
+
`}}jo.styles=[Ct,wt,It,Rt,Wt,Ut,kt,Et,Lt,zt,Kt,...Zt],Go([r.property()],jo.prototype,"element",void 0),Go([r.property()],jo.prototype,"variant",void 0),o.customElement("ft-typography")(jo);const To=o.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),Po=o.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),Mo=o.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),_o=o.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),Yo=o.FtCssVariableFactory.external(o.designSystemVariables.borderRadiusS,"Design system"),Vo=o.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px"),qo=e.css`
|
|
494
|
+
.ft-tooltip--container {
|
|
495
|
+
display: block;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.ft-tooltip--inline {
|
|
499
|
+
display: inline-block;
|
|
500
|
+
max-width: 100%;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.ft-tooltip {
|
|
504
|
+
position: absolute;
|
|
505
|
+
box-sizing: border-box;
|
|
506
|
+
overflow: hidden;
|
|
507
|
+
width: max-content;
|
|
508
|
+
max-width: ${Vo};
|
|
509
|
+
text-align: center;
|
|
510
|
+
padding: ${To};
|
|
511
|
+
z-index: ${_o};
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.ft-tooltip--content {
|
|
515
|
+
padding: 4px 8px;
|
|
516
|
+
border-radius: ${Yo};
|
|
517
|
+
background-color: ${Mo};
|
|
518
|
+
color: ${Po};
|
|
519
|
+
position: relative;
|
|
520
|
+
word-break: break-word;
|
|
521
|
+
}
|
|
522
|
+
`;var Xo,Jo,Qo,te=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class oe extends o.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new o.Debouncer,this.revealDebouncer=new o.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return e.html`
|
|
523
|
+
<div part="container"
|
|
524
|
+
class="ft-tooltip--container ${this.inline?"ft-tooltip--inline":""}"
|
|
525
|
+
@mouseenter=${this.onHover}
|
|
526
|
+
@mouseleave=${this.onOut}
|
|
527
|
+
@focusin=${this.onHover}
|
|
528
|
+
@focusout=${this.onOut}
|
|
529
|
+
@touchstart=${this.onTouch}>
|
|
530
|
+
<slot></slot>
|
|
531
|
+
<div part="tooltip" role="tooltip" inert
|
|
532
|
+
class="ft-tooltip ft-tooltip--${this.validPosition}"
|
|
533
|
+
?hidden=${!this.visible}>
|
|
534
|
+
<div part="tooltip-content" class="ft-tooltip--content">
|
|
535
|
+
<slot name="text"></slot>
|
|
536
|
+
<ft-typography variant="caption" ?hidden=${!this.text}>${this.text}</ft-typography>
|
|
537
|
+
</div>
|
|
538
|
+
</div>
|
|
539
|
+
</div>
|
|
540
|
+
`}updated(t){t.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(t)}contentAvailableCallback(t){super.contentAvailableCallback(t),["visible","text"].some((o=>t.has(o)))&&this.visible&&this.positionTooltip()}show(t){this.visible=!0,null!=t&&this.hideDebounce.run((()=>this.hide()),t)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var t;return(null!==(t=this.slotNodes)&&void 0!==t?t:[]).filter((t=>t.nodeType==Node.ELEMENT_NODE))[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){const t=this.tooltipContent.style;switch(t.transition="none",this.validPosition){case"top":t.top=this.tooltip.clientHeight+"px",t.left="0";break;case"bottom":t.top=-this.tooltip.clientHeight+"px",t.left="0";break;case"left":t.top="0",t.left=this.tooltip.clientWidth+"px";break;case"right":t.top="0",t.left=-this.tooltip.clientWidth+"px"}}}positionTooltip(){this.resetTooltipContent();const t=this.slottedElement;if(this.tooltip&&t){const o=this.tooltip.offsetWidth,e=this.tooltip.offsetHeight,r=(t.offsetHeight-e)/2,i=(t.offsetWidth-o)/2;let a=0,n=0;switch(this.tooltip.style.top="0",this.tooltip.style.left="0",this.validPosition){case"top":n=t.offsetTop-e-this.tooltip.offsetTop,a=t.offsetLeft+i-this.tooltip.offsetLeft;break;case"bottom":n=t.offsetTop+t.offsetHeight-this.tooltip.offsetTop,a=t.offsetLeft+i-this.tooltip.offsetLeft;break;case"left":n=t.offsetTop+r-this.tooltip.offsetTop,a=t.offsetLeft-o-this.tooltip.offsetLeft;break;case"right":n=t.offsetTop+r-this.tooltip.offsetTop,a=t.offsetLeft+t.offsetWidth-this.tooltip.offsetLeft}const l=this.tooltip.style;l.left=a+"px",l.top=n+"px";const s=this.tooltip.getBoundingClientRect();let c=-s.x,p=s.x+s.width-window.innerWidth;l.left=a+Math.round(this.correctOutOfWindowPixels(c,p))+"px";let f=-s.y,h=s.y+s.height-window.innerHeight;l.top=n+Math.round(this.correctOutOfWindowPixels(f,h))+"px",l.maxWidth=`max(${t.offsetWidth}px, ${Vo})`}this.revealDebouncer.run((()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")}),this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout((()=>window.addEventListener("touchstart",(t=>{t.composedPath().includes(this.container)||this.onOut()}),{once:!0})),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(t,o){return Math.max(t,Math.min(0,-o))}}oe.elementDefinitions={"ft-typography":jo},oe.styles=qo,te([r.property()],oe.prototype,"text",void 0),te([r.property({type:Boolean})],oe.prototype,"manual",void 0),te([r.property({type:Boolean})],oe.prototype,"inline",void 0),te([r.property({type:Number})],oe.prototype,"delay",void 0),te([r.property()],oe.prototype,"position",void 0),te([r.queryAssignedNodes("",!0)],oe.prototype,"slotNodes",void 0),te([r.query(".ft-tooltip--container")],oe.prototype,"container",void 0),te([r.query(".ft-tooltip")],oe.prototype,"tooltip",void 0),te([r.query(".ft-tooltip--content")],oe.prototype,"tooltipContent",void 0),te([r.state()],oe.prototype,"visible",void 0),o.customElement("ft-tooltip")(oe),function(t){t.THUMBS_DOWN="",t.THUMBS_DOWN_PLAIN="",t.THUMBS_UP="",t.THUMBS_UP_PLAIN="",t.STAR="",t.STAR_PLAIN="",t.DESKTOP="",t.LIFE_RING="",t.GLOBE="",t.PIGGY_BANK="",t.TABLET_LANDSCAPE="",t.TABLET_PORTRAIT="",t.MOBILE_LANDSCAPE="",t.MOBILE_PORTRAIT="",t.ARROW_RIGHT_TO_LINE="",t.THIN_ARROW_UP="",t.CONTEXTUAL="",t.CHART_SIMPLE="",t.BARS_PROGRESS="",t.LINE_CHART="",t.STACKED_CHART="",t.BOOK_OPEN_GEAR="",t.BOOK_OPEN_GEAR_SLASH="",t.DIAGRAM_SUNBURST="",t.DIAGRAM_SANKEY="",t.UNSTRUCTURED_DOC="",t.RESET="",t.THIN_ARROW_LEFT="",t.THIN_ARROW_RIGHT="",t.MY_COLLECTIONS="",t.OFFLINE_SETTINGS="",t.MY_LIBRARY="",t.RATE_PLAIN="",t.RATE="",t.FEEDBACK_PLAIN="",t.PAUSE="",t.PLAY="",t.RELATIVES_PLAIN="",t.RELATIVES="",t.SHORTCUT_MENU="",t.PRINT="",t.DEFAULT_ROLES="",t.ACCOUNT_SETTINGS="",t.ONLINE="",t.OFFLINE="",t.UPLOAD="",t.BOOK_PLAIN="",t.SYNC="",t.SHARED_PBK="",t.COLLECTIONS="",t.SEARCH_IN_PUBLICATION="",t.BOOKS="",t.LOCKER="",t.ARROW_DOWN="",t.ARROW_LEFT="",t.ARROW_RIGHT="",t.ARROW_UP="",t.SAVE="",t.MAILS_AND_NOTIFICATIONS="",t.DOT="",t.MINUS="",t.PLUS="",t.FILTERS="",t.STRIPE_ARROW_RIGHT="",t.STRIPE_ARROW_LEFT="",t.ATTACHMENTS="",t.ADD_BOOKMARK="",t.BOOKMARK="",t.EXPORT="",t.MENU="",t.TAG="",t.TAG_PLAIN="",t.COPY_TO_CLIPBOARD="",t.COLUMNS="",t.ARTICLE="",t.CLOSE_PLAIN="",t.CHECK_PLAIN="",t.LOGOUT="",t.SIGN_IN="",t.THIN_ARROW="",t.TRIANGLE_BOTTOM="",t.TRIANGLE_LEFT="",t.TRIANGLE_RIGHT="",t.TRIANGLE_TOP="",t.FACET_HAS_DESCENDANT="",t.MINUS_PLAIN="",t.PLUS_PLAIN="",t.INFO="",t.ICON_EXPAND="",t.ICON_COLLAPSE="",t.ADD_TO_PBK="",t.ALERT="",t.ADD_ALERT="",t.BACK_TO_SEARCH="",t.DOWNLOAD="",t.EDIT="",t.FEEDBACK="",t.MODIFY_PBK="",t.SCHEDULED="",t.SEARCH="",t.SHARE="󨃱",t.TOC="",t.WRITE_UGC="",t.TRASH="",t.EXTLINK="",t.EXTLINK_LIGHT="",t.CALENDAR="",t.BOOK="",t.DOWNLOAD_PLAIN="",t.CHECK="",t.TOPICS="",t.EYE="",t.EYE_SLASH="",t.DISC="",t.CIRCLE="",t.SHARED="",t.SORT_UNSORTED="",t.SORT_UP="",t.SORT_DOWN="",t.WORKING="",t.CLOSE="",t.ZOOM_OUT="",t.ZOOM_IN="",t.ZOOM_REALSIZE="",t.ZOOM_FULLSCREEN="",t.ADMIN_RESTRICTED="",t.ADMIN_THEME="",t.WARNING="",t.CONTEXT="",t.SEARCH_HOME="",t.STEPS="",t.HOME="",t.TRANSLATE="",t.USER="",t.ADMIN="",t.ANALYTICS="",t.ADMIN_KHUB="",t.ADMIN_USERS="",t.ADMIN_INTEGRATION="",t.ADMIN_PORTAL="",t.COMMENT_QUESTION="",t.COMMENT_QUESTION_PLAIN="",t.MESSAGE_BOT="",t.PIP="",t.PIP_WIDE="",t.EXPAND_WIDE="",t.X_MARK=""}(Xo||(Xo={})),function(t){t.UNKNOWN="",t.ABW="",t.AUDIO="",t.AVI="",t.CHM="",t.CODE="",t.CSV="",t.DITA="",t.EPUB="",t.EXCEL="",t.FLAC="",t.GIF="",t.GZIP="",t.HTML="",t.IMAGE="",t.JPEG="",t.JSON="",t.M4A="",t.MOV="",t.MP3="",t.MP4="",t.OGG="",t.PDF="",t.PNG="",t.POWERPOINT="",t.RAR="",t.STP="",t.TEXT="",t.VIDEO="",t.WAV="",t.WMA="",t.WORD="",t.XML="",t.YAML="",t.ZIP=""}(Jo||(Jo={})),new Map([...["abw"].map((t=>[t,Jo.ABW])),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map((t=>[t,Jo.AUDIO])),...["avi"].map((t=>[t,Jo.AVI])),...["chm","xhs"].map((t=>[t,Jo.CHM])),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map((t=>[t,Jo.CODE])),...["csv"].map((t=>[t,Jo.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,Jo.DITA])),...["epub"].map((t=>[t,Jo.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,Jo.EXCEL])),...["flac"].map((t=>[t,Jo.FLAC])),...["gif"].map((t=>[t,Jo.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,Jo.GZIP])),...["html","htm","xhtml"].map((t=>[t,Jo.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf"].map((t=>[t,Jo.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,Jo.JPEG])),...["json"].map((t=>[t,Jo.JSON])),...["m4a","m4p"].map((t=>[t,Jo.M4A])),...["mov","qt"].map((t=>[t,Jo.MOV])),...["mp3"].map((t=>[t,Jo.MP3])),...["mp4","m4v"].map((t=>[t,Jo.MP4])),...["ogg","oga"].map((t=>[t,Jo.OGG])),...["pdf","ps"].map((t=>[t,Jo.PDF])),...["png"].map((t=>[t,Jo.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,Jo.POWERPOINT])),...["rar"].map((t=>[t,Jo.RAR])),...["stp"].map((t=>[t,Jo.STP])),...["txt","rtf","md","mdown"].map((t=>[t,Jo.TEXT])),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map((t=>[t,Jo.VIDEO])),...["wav"].map((t=>[t,Jo.WAV])),...["wma"].map((t=>[t,Jo.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,Jo.WORD])),...["xml","xsl","rdf"].map((t=>[t,Jo.XML])),...["yaml","yml","x-yaml"].map((t=>[t,Jo.YAML])),...["zip"].map((t=>[t,Jo.ZIP]))]),function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(Qo||(Qo={}));var ee=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class re extends o.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=e.nothing}render(){const t=this.variant&&Object.values(Qo).includes(this.variant)?this.variant:Qo.fluid_topics,o=t!==Qo.material||!!this.value;return e.html`
|
|
541
|
+
<i class="ft-icon ft-icon--${t}" part="icon icon-${t}">
|
|
542
|
+
${a.unsafeHTML(this.resolvedIcon)}
|
|
543
|
+
<slot ?hidden=${o}></slot>
|
|
544
|
+
</i>
|
|
545
|
+
`}get textContent(){var t,o;return null!==(o=null===(t=this.slottedContent)||void 0===t?void 0:t.assignedNodes().map((t=>t.textContent)).join("").trim())&&void 0!==o?o:""}update(t){super.update(t),["value","variant"].some((o=>t.has(o)))&&this.resolveIcon()}resolveIcon(){var t,o;let r=this.value||this.textContent;switch(this.variant){case Qo.file_format:this.resolvedIcon=null!==(t=Jo[r.replace("-","_").toUpperCase()])&&void 0!==t?t:r;break;case Qo.material:this.resolvedIcon=this.value||e.nothing;break;default:this.resolvedIcon=null!==(o=Xo[r.replace("-","_").toUpperCase()])&&void 0!==o?o:r}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}re.elementDefinitions={},re.styles=Ht,ee([r.property()],re.prototype,"variant",void 0),ee([r.property()],re.prototype,"value",void 0),ee([r.state()],re.prototype,"resolvedIcon",void 0),ee([r.query("slot")],re.prototype,"slottedContent",void 0),o.customElement("ft-icon")(re);class ie extends o.FtLitElement{render(){return e.html`
|
|
546
|
+
<div class="ft-loader">
|
|
547
|
+
<div></div>
|
|
548
|
+
<div></div>
|
|
549
|
+
<div></div>
|
|
550
|
+
<div></div>
|
|
551
|
+
</div>
|
|
552
|
+
`}}ie.styles=Bt,o.customElement("ft-loader")(ie);var ae=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class ne extends(o.toFtFormComponent(o.FtLitElement,"button")){constructor(){super(...arguments),this.role="button",this.type="button",this.disabled=!1,this.label="",this.icon=void 0,this.trailingIcon=!1,this.loading=!1,this.tooltipPosition="bottom",this.hideTooltip=!1,this.forceTooltip=!1,this.onclick=t=>{var o;this.isDisabled()?(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation()):"submit"==this.type&&(null===(o=this.form)||void 0===o||o.requestSubmit())}}render(){return this.addTooltipIfNeeded(e.html`
|
|
546
553
|
<button part="button"
|
|
547
|
-
class="${
|
|
554
|
+
class="${i.classMap(this.buttonClasses)}"
|
|
548
555
|
aria-label="${this.getLabel()}"
|
|
549
556
|
?disabled=${this.isDisabled()}>
|
|
550
557
|
<ft-ripple part="ripple" ?disabled=${this.isDisabled()}></ft-ripple>
|
|
551
558
|
<ft-typography part="label"
|
|
552
|
-
variant
|
|
559
|
+
variant=${this.typographyVariant}
|
|
553
560
|
element="span"
|
|
554
|
-
class="ft-button--label ${
|
|
561
|
+
class="ft-button--label ${o.isSafari?"ft-safari-ellipsis-fix":""}"
|
|
555
562
|
?hidden=${!this.hasTextContent()}>
|
|
556
563
|
<slot @slotchange=${this.onSlotchange}></slot>
|
|
557
564
|
</ft-typography>
|
|
558
565
|
${this.resolveIcon()}
|
|
559
566
|
</button>
|
|
560
567
|
`)}addTooltipIfNeeded(t){return this.getLabel().trim().length>0&&(this.forceTooltip||!this.hasTextContent()&&!this.hideTooltip)?e.html`
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
568
|
+
<ft-tooltip part="tooltip"
|
|
569
|
+
text="${this.getLabel()}"
|
|
570
|
+
position="${this.tooltipPosition}">
|
|
571
|
+
${t}
|
|
572
|
+
</ft-tooltip>
|
|
566
573
|
`:t}resolveIcon(){return this.loading?e.html`
|
|
567
574
|
<ft-loader part="loader icon"></ft-loader> `:this.icon?e.html`
|
|
568
|
-
|
|
575
|
+
<ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon> `:e.nothing}focus(){var t;null===(t=this.button)||void 0===t||t.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(t){return t instanceof HTMLSlotElement?t.assignedNodes().map((t=>this.unslotText(t))).join(""):(null==t?void 0:t.textContent)||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}}ne.elementDefinitions={"ft-ripple":Jt,"ft-tooltip":oe,"ft-typography":jo,"ft-icon":re,"ft-loader":ie},ae([r.property({type:String,reflect:!0})],ne.prototype,"role",void 0),ae([r.property()],ne.prototype,"type",void 0),ae([r.property({type:Boolean})],ne.prototype,"disabled",void 0),ae([r.property()],ne.prototype,"label",void 0),ae([r.property()],ne.prototype,"icon",void 0),ae([r.property()],ne.prototype,"iconVariant",void 0),ae([r.property({type:Boolean})],ne.prototype,"trailingIcon",void 0),ae([r.property({type:Boolean})],ne.prototype,"loading",void 0),ae([r.property()],ne.prototype,"tooltipPosition",void 0),ae([r.property({type:Boolean})],ne.prototype,"hideTooltip",void 0),ae([r.property({type:Boolean})],ne.prototype,"forceTooltip",void 0),ae([r.query(".ft-button")],ne.prototype,"button",void 0),ae([r.query(".ft-button--label slot")],ne.prototype,"slottedContent",void 0);var le=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class se extends ne{constructor(){super(...arguments),this.primary=!1,this.outlined=!1,this.disabled=!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"}}se.styles=[o.safariEllipsisFix,Vt],le([r.property({type:Boolean})],se.prototype,"primary",void 0),le([r.property({type:Boolean})],se.prototype,"outlined",void 0),le([r.property({type:Boolean})],se.prototype,"disabled",void 0),le([r.property({type:Boolean})],se.prototype,"dense",void 0),le([r.property({type:Boolean})],se.prototype,"round",void 0);const ce=[e.css`
|
|
576
|
+
:host {
|
|
577
|
+
display: inline-block;
|
|
578
|
+
max-width: 100%;
|
|
579
|
+
pointer-events: none;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
/** Remove default button styles **/
|
|
583
|
+
|
|
584
|
+
button {
|
|
585
|
+
box-shadow: 0 0 0 transparent;
|
|
586
|
+
border: 0 solid transparent;
|
|
587
|
+
text-shadow: 0 0 0 transparent;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
button:hover {
|
|
591
|
+
box-shadow: 0 0 0 transparent;
|
|
592
|
+
text-shadow: 0 0 0 transparent;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
button:active {
|
|
596
|
+
outline: none;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
button:focus {
|
|
600
|
+
outline: 0;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
/** Base styles **/
|
|
604
|
+
|
|
605
|
+
.ft-button {
|
|
606
|
+
position: relative;
|
|
607
|
+
display: flex;
|
|
608
|
+
justify-content: center;
|
|
609
|
+
align-items: center;
|
|
610
|
+
width: 100%;
|
|
611
|
+
overflow: hidden;
|
|
612
|
+
box-sizing: border-box;
|
|
613
|
+
pointer-events: auto;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.ft-button:not([disabled]):hover {
|
|
617
|
+
cursor: pointer;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.ft-button:focus {
|
|
621
|
+
outline: none;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.ft-button:focus-visible {
|
|
625
|
+
outline-color: ${O.focusFocusRingColor};
|
|
626
|
+
outline-style: solid;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
ft-icon {
|
|
630
|
+
flex-shrink: 0;
|
|
631
|
+
position: relative;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.ft-button:not(.ft-button--trailing-icon) ft-icon,
|
|
635
|
+
.ft-button:not(.ft-button--trailing-icon) ft-loader {
|
|
636
|
+
order: -1;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.ft-button--label {
|
|
640
|
+
position: relative;
|
|
641
|
+
overflow: hidden;
|
|
642
|
+
white-space: nowrap;
|
|
643
|
+
text-overflow: ellipsis;
|
|
644
|
+
display: block;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.ft-button--label[hidden] {
|
|
648
|
+
display: none;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
/** Primary styles **/
|
|
652
|
+
|
|
653
|
+
.ft-button--primary {
|
|
654
|
+
${o.setVariable(Ft.color,O.primaryIconColor)};
|
|
655
|
+
|
|
656
|
+
${o.setVariable(l.color,O.primaryStateLayerColor)};
|
|
657
|
+
${o.setVariable(l.opacityContentOnSurfaceHover,O.primaryStateLayerOpacityHover)};
|
|
658
|
+
${o.setVariable(l.opacityContentOnSurfaceFocused,O.primaryStateLayerOpacityFocus)};
|
|
659
|
+
${o.setVariable(l.opacityContentOnSurfaceSelected,O.primaryStateLayerOpacityActive)};
|
|
660
|
+
${o.setVariable(l.opacityContentOnSurfacePressed,O.primaryStateLayerOpacityActive)};
|
|
661
|
+
|
|
662
|
+
background-color: ${O.primaryBackgroundColor};
|
|
663
|
+
color: ${O.primaryColor};
|
|
664
|
+
border-style: none;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.ft-button--primary[disabled] {
|
|
668
|
+
opacity: ${O.primaryComponentOpacityDisabled};
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.ft-button--primary ft-icon {
|
|
672
|
+
color: ${O.primaryIconColor};
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/** Secondary styles **/
|
|
676
|
+
|
|
677
|
+
.ft-button--secondary {
|
|
678
|
+
${o.setVariable(Ft.color,O.secondaryIconColor)};
|
|
679
|
+
|
|
680
|
+
${o.setVariable(l.color,O.secondaryStateLayerColor)};
|
|
681
|
+
${o.setVariable(l.opacityContentOnSurfaceHover,O.secondaryStateLayerOpacityHover)};
|
|
682
|
+
${o.setVariable(l.opacityContentOnSurfaceFocused,O.secondaryStateLayerOpacityFocus)};
|
|
683
|
+
${o.setVariable(l.opacityContentOnSurfaceSelected,O.secondaryStateLayerOpacityActive)};
|
|
684
|
+
${o.setVariable(l.opacityContentOnSurfacePressed,O.secondaryStateLayerOpacityActive)};
|
|
685
|
+
|
|
686
|
+
background-color: ${O.secondaryBackgroundColor};
|
|
687
|
+
color: ${O.secondaryColor};
|
|
688
|
+
border-color: ${O.secondaryBorderColor};
|
|
689
|
+
border-style: solid;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.ft-button--secondary[disabled] {
|
|
693
|
+
opacity: ${O.secondaryComponentOpacityDisabled};
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.ft-button--secondary ft-icon {
|
|
697
|
+
color: ${O.secondaryIconColor};
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
/** Tertiary styles **/
|
|
701
|
+
|
|
702
|
+
.ft-button--tertiary {
|
|
703
|
+
${o.setVariable(Ft.color,O.tertiaryIconColor)};
|
|
704
|
+
|
|
705
|
+
${o.setVariable(l.color,O.tertiaryStateLayerColor)};
|
|
706
|
+
${o.setVariable(l.opacityContentOnSurfaceHover,O.tertiaryStateLayerOpacityHover)};
|
|
707
|
+
${o.setVariable(l.opacityContentOnSurfaceFocused,O.tertiaryStateLayerOpacityFocus)};
|
|
708
|
+
${o.setVariable(l.opacityContentOnSurfaceSelected,O.tertiaryStateLayerOpacityActive)};
|
|
709
|
+
${o.setVariable(l.opacityContentOnSurfacePressed,O.tertiaryStateLayerOpacityActive)};
|
|
710
|
+
|
|
711
|
+
background-color: ${O.tertiaryBackgroundColor};
|
|
712
|
+
color: ${O.tertiaryColor};
|
|
713
|
+
border-style: none;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.ft-button--tertiary[disabled] {
|
|
717
|
+
opacity: ${O.tertiaryComponentOpacityDisabled};
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.ft-button--tertiary ft-icon {
|
|
721
|
+
color: ${O.tertiaryIconColor};
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
/** Neutral styles **/
|
|
725
|
+
|
|
726
|
+
.ft-button--neutral {
|
|
727
|
+
${o.setVariable(Ft.color,O.neutralIconColor)};
|
|
728
|
+
|
|
729
|
+
${o.setVariable(l.backgroundColor,O.neutralStateLayerColor)};
|
|
730
|
+
${o.setVariable(l.opacityContentOnSurfaceHover,O.neutralStateLayerOpacityHover)};
|
|
731
|
+
${o.setVariable(l.opacityContentOnSurfaceFocused,O.neutralStateLayerOpacityFocus)};
|
|
732
|
+
${o.setVariable(l.opacityContentOnSurfaceSelected,O.neutralStateLayerOpacityActive)};
|
|
733
|
+
${o.setVariable(l.opacityContentOnSurfacePressed,O.neutralStateLayerOpacityActive)};
|
|
734
|
+
|
|
735
|
+
background-color: ${O.neutralBackgroundColor};
|
|
736
|
+
color: ${O.neutralColor};
|
|
737
|
+
border-style: none;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.ft-button--neutral[disabled] {
|
|
741
|
+
opacity: ${O.neutralComponentOpacityDisabled};
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.ft-button--neutral ft-icon {
|
|
745
|
+
color: ${O.neutralIconColor};
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
/** Large styles **/
|
|
749
|
+
|
|
750
|
+
.ft-button--large {
|
|
751
|
+
${o.setVariable(Dt.size,O.largeIconSize)};
|
|
752
|
+
${o.setVariable(Ft.size,O.largeIconSize)};
|
|
753
|
+
|
|
754
|
+
height: ${O.largeHeight};
|
|
755
|
+
padding: 0 ${O.largeHorizontalPadding};
|
|
756
|
+
gap: ${O.largeGap};
|
|
757
|
+
border-radius: ${O.largeBorderRadius};
|
|
758
|
+
border-width: ${O.largeBorderWidth};
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.ft-button--large:focus-visible {
|
|
762
|
+
outline-width: ${O.largeFocusOutlineWidth};
|
|
763
|
+
outline-offset: ${O.largeFocusOutlineOffset};
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.ft-button--large.ft-button--icon-only {
|
|
767
|
+
width: ${O.largeIconOnlyWidth};
|
|
768
|
+
padding: unset;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
/** Small styles **/
|
|
772
|
+
|
|
773
|
+
.ft-button--small {
|
|
774
|
+
${o.setVariable(Dt.size,O.smallIconSize)};
|
|
775
|
+
${o.setVariable(Ft.size,O.smallIconSize)};
|
|
776
|
+
|
|
777
|
+
height: ${O.smallHeight};
|
|
778
|
+
padding: 0 ${O.smallHorizontalPadding};
|
|
779
|
+
gap: ${O.smallGap};
|
|
780
|
+
border-radius: ${O.smallBorderRadius};
|
|
781
|
+
border-width: ${O.smallBorderWidth};
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.ft-button--small:focus-visible {
|
|
785
|
+
outline-width: ${O.smallFocusOutlineWidth};
|
|
786
|
+
outline-offset: ${O.smallFocusOutlineOffset};
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.ft-button--small.ft-button--icon-only {
|
|
790
|
+
width: ${O.smallIconOnlyWidth};
|
|
791
|
+
padding: unset;
|
|
792
|
+
}
|
|
793
|
+
`,o.noTextSelect];var pe=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class fe extends ne{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.tertiary=!1,this.neutral=!1,this.small=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--secondary":this.secondary,"ft-button--tertiary":this.tertiary||!this.primary&&!this.secondary&&!this.neutral,"ft-button--neutral":this.neutral,"ft-button--large":!this.small,"ft-button--small":this.small,"ft-button--icon-only":!this.hasTextContent(),"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0,"ft-button--no-icon":!this.icon}}get typographyVariant(){return this.small?Ao.caption1medium:Ao.body2medium}}fe.styles=[o.safariEllipsisFix,ce],pe([r.property({type:Boolean})],fe.prototype,"primary",void 0),pe([r.property({type:Boolean})],fe.prototype,"secondary",void 0),pe([r.property({type:Boolean})],fe.prototype,"tertiary",void 0),pe([r.property({type:Boolean})],fe.prototype,"neutral",void 0),pe([r.property({type:Boolean})],fe.prototype,"small",void 0),o.customElement("ft-button")(se),o.customElement("ftds-button")(fe);const he={buttonsColor:o.FtCssVariableFactory.extend("--ft-snap-scroll-buttons-color","",o.designSystemVariables.colorPrimary),buttonsZIndex:o.FtCssVariableFactory.create("--ft-snap-scroll-buttons-z-index","","COLOR","1"),gap:o.FtCssVariableFactory.create("--ft-snap-scroll-gap","","SIZE","0"),colorSurface:o.FtCssVariableFactory.external(o.designSystemVariables.colorSurface,"Design system")},de=e.css`
|
|
569
794
|
.ft-snap-scroll {
|
|
570
795
|
box-sizing: border-box;
|
|
571
796
|
position: relative;
|
|
@@ -600,7 +825,7 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
600
825
|
flex-wrap: nowrap;
|
|
601
826
|
align-items: flex-start;
|
|
602
827
|
justify-content: flex-start;
|
|
603
|
-
gap: ${
|
|
828
|
+
gap: ${he.gap};
|
|
604
829
|
}
|
|
605
830
|
|
|
606
831
|
.ft-snap-scroll--hide-scrollbar .ft-snap-scroll--content::-webkit-scrollbar {
|
|
@@ -643,11 +868,11 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
643
868
|
.ft-snap-scroll--next {
|
|
644
869
|
position: absolute;
|
|
645
870
|
display: flex;
|
|
646
|
-
z-index: ${
|
|
871
|
+
z-index: ${he.buttonsZIndex};
|
|
647
872
|
opacity: 1;
|
|
648
873
|
transition: background-color .5s ease-in-out, opacity .5s ease-in-out, z-index .5s ease-in-out;
|
|
649
|
-
${
|
|
650
|
-
${
|
|
874
|
+
${o.setVariable(Gt.backgroundColor,"transparent")};
|
|
875
|
+
${o.setVariable(Gt.color,he.buttonsColor)};
|
|
651
876
|
}
|
|
652
877
|
|
|
653
878
|
.ft-snap-scroll--previous[hidden],
|
|
@@ -660,45 +885,45 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
660
885
|
top: 0;
|
|
661
886
|
left: -1px;
|
|
662
887
|
bottom: 0;
|
|
663
|
-
background: linear-gradient(to right, ${
|
|
888
|
+
background: linear-gradient(to right, ${he.colorSurface} 50%, var(--ft-snap-scroll-transparent-color));
|
|
664
889
|
}
|
|
665
890
|
|
|
666
891
|
.ft-snap-scroll--vertical .ft-snap-scroll--previous {
|
|
667
892
|
top: -1px;
|
|
668
893
|
left: 0;
|
|
669
894
|
right: 0;
|
|
670
|
-
background: linear-gradient(to bottom, ${
|
|
895
|
+
background: linear-gradient(to bottom, ${he.colorSurface} 50%, var(--ft-snap-scroll-transparent-color));
|
|
671
896
|
}
|
|
672
897
|
|
|
673
898
|
.ft-snap-scroll--horizontal .ft-snap-scroll--next {
|
|
674
899
|
top: 0;
|
|
675
900
|
right: -1px;
|
|
676
901
|
bottom: 0;
|
|
677
|
-
background: linear-gradient(to left, ${
|
|
902
|
+
background: linear-gradient(to left, ${he.colorSurface} 50%, var(--ft-snap-scroll-transparent-color));
|
|
678
903
|
}
|
|
679
904
|
|
|
680
905
|
.ft-snap-scroll--vertical .ft-snap-scroll--next {
|
|
681
906
|
left: 0;
|
|
682
907
|
right: 0;
|
|
683
908
|
bottom: -1px;
|
|
684
|
-
background: linear-gradient(to top, ${
|
|
909
|
+
background: linear-gradient(to top, ${he.colorSurface} 50%, var(--ft-snap-scroll-transparent-color));
|
|
685
910
|
}
|
|
686
911
|
|
|
687
912
|
.ft-snap-scroll--horizontal .ft-snap-scroll--previous:hover,
|
|
688
913
|
.ft-snap-scroll--horizontal .ft-snap-scroll--next:hover,
|
|
689
914
|
.ft-snap-scroll--vertical .ft-snap-scroll--previous:hover,
|
|
690
915
|
.ft-snap-scroll--vertical .ft-snap-scroll--next:hover {
|
|
691
|
-
background-color: ${
|
|
916
|
+
background-color: ${he.colorSurface};
|
|
692
917
|
}
|
|
693
|
-
`;var
|
|
918
|
+
`;var ge=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class ye extends CustomEvent{constructor(t,o){super("current-element-change",{detail:{index:t,element:o}})}}class be extends o.FtLitElement{constructor(){super(...arguments),this.horizontal=!1,this.hideScrollbar=!1,this.controls=!1,this.limitSize=!1,this.elements=[],this.currentElement=0,this.withScroll=!1,this.startReached=!0,this.endReached=!0,this.offsetAttribute="offsetTop",this.scrollAttribute="scrollTop",this.sizeAttribute="clientHeight",this.scrollSizeAttribute="scrollHeight",this.updateScrollCallback=()=>this.onScroll(),this.resizeObserver=new ResizeObserver((()=>this.scheduleUpdateScroll())),this.scrollDebouncer=new o.Debouncer(200),this.updateScrollDebouncer=new o.Debouncer(100)}scrollToIndex(t){this.scrollToElement(this.elements[t])}scrollIndexIntoView(t){let o=this.elements[t];if(o){const t=this.contentSlot[this.scrollAttribute]+this.contentSlot[this.sizeAttribute]-this.nextSize,e=this.contentSlot[this.scrollAttribute]+this.prevSize;(o[this.offsetAttribute]<e||o[this.offsetAttribute]+o[this.sizeAttribute]>t)&&this.scrollToElement(o)}}previous(){this.scrollToElement(this.elements[Math.max(0,this.closestIndexFromStart()-1)])}next(){this.scrollToElement(this.elements[Math.min(this.closestIndexFromStart()+1,this.elements.length-1)])}render(){const t=i.classMap({"ft-snap-scroll":!0,"ft-snap-scroll--horizontal":this.horizontal,"ft-snap-scroll--vertical":!this.horizontal,"ft-snap-scroll--hide-scrollbar":this.hideScrollbar,"ft-snap-scroll--limit-size":this.limitSize,"ft-snap-scroll--safari-fix":o.isSafari}),r=this.controls&&this.withScroll;return e.html`
|
|
694
919
|
<div part="container" class="${t}">
|
|
695
920
|
<ft-button
|
|
696
921
|
class="ft-snap-scroll--previous"
|
|
697
922
|
part="controls"
|
|
698
923
|
primary
|
|
699
924
|
icon="${this.horizontal?"THIN_ARROW_LEFT":"THIN_ARROW_UP"}"
|
|
700
|
-
?hidden=${!
|
|
701
|
-
?disabled=${!
|
|
925
|
+
?hidden=${!r||this.startReached}
|
|
926
|
+
?disabled=${!r||this.startReached}
|
|
702
927
|
@click=${this.previous}
|
|
703
928
|
></ft-button>
|
|
704
929
|
<slot class="ft-snap-scroll--content"
|
|
@@ -709,9 +934,9 @@ const tt=Symbol.for(""),it=t=>{if((null==t?void 0:t.r)===tt)return null==t?void
|
|
|
709
934
|
part="controls"
|
|
710
935
|
primary
|
|
711
936
|
icon="${this.horizontal?"THIN_ARROW_RIGHT":"THIN_ARROW"}"
|
|
712
|
-
?hidden=${!
|
|
713
|
-
?disabled=${!
|
|
937
|
+
?hidden=${!r||this.endReached}
|
|
938
|
+
?disabled=${!r||this.endReached}
|
|
714
939
|
@click=${this.next}
|
|
715
940
|
></ft-button>
|
|
716
941
|
</div>
|
|
717
|
-
`}update(t){super.update(t),t.has("horizontal")&&(this.horizontal?(this.offsetAttribute="offsetLeft",this.scrollAttribute="scrollLeft",this.sizeAttribute="clientWidth",this.scrollSizeAttribute="scrollWidth"):(this.offsetAttribute="offsetTop",this.scrollAttribute="scrollTop",this.sizeAttribute="clientHeight",this.scrollSizeAttribute="scrollHeight")),t.has("currentElement")&&this.dispatchEvent(new
|
|
942
|
+
`}update(t){super.update(t),t.has("horizontal")&&(this.horizontal?(this.offsetAttribute="offsetLeft",this.scrollAttribute="scrollLeft",this.sizeAttribute="clientWidth",this.scrollSizeAttribute="scrollWidth"):(this.offsetAttribute="offsetTop",this.scrollAttribute="scrollTop",this.sizeAttribute="clientHeight",this.scrollSizeAttribute="scrollHeight")),t.has("currentElement")&&this.dispatchEvent(new ye(this.currentElement,this.elements[this.currentElement]))}contentAvailableCallback(t){var o;super.contentAvailableCallback(t),this.contentSlot&&this.listenedContainer!==this.contentSlot&&(this.resizeObserver.observe(this.contentSlot),this.listenedContainer&&this.listenedContainer.removeEventListener("scroll",this.updateScrollCallback),this.listenedContainer=this.contentSlot,null===(o=this.listenedContainer)||void 0===o||o.addEventListener("scroll",this.updateScrollCallback))}onScroll(){this.scrollDebouncer.run((()=>this.snap())),this.scheduleUpdateScroll()}snap(){let t=this.closestElementFromStart();if(null!=t){const o=this.getDistanceFromStart(t);Math.abs(this.contentSlot[this.scrollAttribute]+this.contentSlot[this.sizeAttribute]-this.contentSlot[this.scrollSizeAttribute])<o&&(t=this.lastElement),this.scrollToElement(t)}}scrollToElement(t){var o,e;t&&(this.horizontal?null===(o=this.contentSlot)||void 0===o||o.scrollTo({left:this.getOffset(t)-this.controlsSize,behavior:"smooth"}):null===(e=this.contentSlot)||void 0===e||e.scrollTo({top:this.getOffset(t)-this.controlsSize,behavior:"smooth"}),this.currentElement=this.elements.indexOf(t))}onSlotChange(){var t,o;this.elements=null!==(o=null===(t=this.contentSlot)||void 0===t?void 0:t.assignedElements().map((t=>t)))&&void 0!==o?o:[],this.scheduleUpdateScroll()}closestElementFromStart(){return this.elements[this.closestIndexFromStart()]}closestIndexFromStart(){let t=-1;for(let o=0;o<this.elements.length;o++)(t<0||this.getDistanceFromStart(this.elements[o])<this.getDistanceFromStart(this.elements[t]))&&(t=o);return t}scheduleUpdateScroll(){this.updateScrollDebouncer.run((()=>this.updateScroll()))}updateScroll(){null!=this.contentSlot?(this.withScroll=this.contentSlot[this.scrollSizeAttribute]>this.contentSlot[this.sizeAttribute],this.startReached=0===this.contentSlot[this.scrollAttribute],this.endReached=this.contentSlot[this.scrollAttribute]+this.contentSlot[this.sizeAttribute]+1>=this.contentSlot[this.scrollSizeAttribute]):(this.withScroll=!1,this.startReached=!0,this.endReached=!0)}get lastElement(){return this.elements[this.elements.length-1]}get firstElementOffset(){let t=this.elements[0];return t?t[this.offsetAttribute]:0}get controlsSize(){return this.controls?36:0}get nextSize(){return this.endReached?0:this.controlsSize}get prevSize(){return this.startReached?0:this.controlsSize}getOffset(t){return t[this.offsetAttribute]-this.firstElementOffset}getDistanceFromStart(t){const o=t===this.elements[0]?0:this.controlsSize;return Math.abs(this.getOffset(t)-this.contentSlot[this.scrollAttribute]-o)}}be.elementDefinitions={"ft-button":se},be.styles=de,ge([r.property({type:Boolean})],be.prototype,"horizontal",void 0),ge([r.property({type:Boolean})],be.prototype,"hideScrollbar",void 0),ge([r.property({type:Boolean})],be.prototype,"controls",void 0),ge([r.property({type:Boolean})],be.prototype,"limitSize",void 0),ge([r.state()],be.prototype,"elements",void 0),ge([r.state()],be.prototype,"currentElement",void 0),ge([r.state()],be.prototype,"withScroll",void 0),ge([r.state()],be.prototype,"startReached",void 0),ge([r.state()],be.prototype,"endReached",void 0),ge([r.query(".ft-snap-scroll--content")],be.prototype,"contentSlot",void 0),o.customElement("ft-snap-scroll")(be),t.CurrentElementChange=ye,t.FtSnapScroll=be,t.FtSnapScrollCssVariables=he,t.styles=de}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litClassMap,ftGlobals.litUnsafeHTML);
|