@aurodesignsystem-dev/auro-tail 0.0.0-pr6.0
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/LICENSE +201 -0
- package/NOTICE +2 -0
- package/README.md +172 -0
- package/custom-elements.json +1331 -0
- package/demo/api.html +56 -0
- package/demo/api.js +1 -0
- package/demo/api.md +702 -0
- package/demo/api.min.js +4 -0
- package/demo/auro-tail-group.min.js +923 -0
- package/demo/index.html +56 -0
- package/demo/index.js +6 -0
- package/demo/index.md +103 -0
- package/demo/index.min.js +6 -0
- package/dist/auro-tail-group-Dy3qOCFd.js +184 -0
- package/dist/index.d.ts +192 -0
- package/dist/index.js +1 -0
- package/dist/registered.js +1 -0
- package/package.json +88 -0
|
@@ -0,0 +1,923 @@
|
|
|
1
|
+
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
2
|
+
// See LICENSE in the project root for license information.
|
|
3
|
+
|
|
4
|
+
// ---------------------------------------------------------------------
|
|
5
|
+
|
|
6
|
+
/* eslint-disable line-comment-position, no-inline-comments, no-confusing-arrow, no-nested-ternary, implicit-arrow-linebreak */
|
|
7
|
+
|
|
8
|
+
class AuroLibraryRuntimeUtils {
|
|
9
|
+
|
|
10
|
+
/* eslint-disable jsdoc/require-param */
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* This will register a new custom element with the browser.
|
|
14
|
+
* @param {String} name - The name of the custom element.
|
|
15
|
+
* @param {Object} componentClass - The class to register as a custom element.
|
|
16
|
+
* @returns {void}
|
|
17
|
+
*/
|
|
18
|
+
registerComponent(name, componentClass) {
|
|
19
|
+
if (!customElements.get(name)) {
|
|
20
|
+
customElements.define(name, class extends componentClass {});
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Finds and returns the closest HTML Element based on a selector.
|
|
26
|
+
* @returns {void}
|
|
27
|
+
*/
|
|
28
|
+
closestElement(
|
|
29
|
+
selector, // selector like in .closest()
|
|
30
|
+
base = this, // extra functionality to skip a parent
|
|
31
|
+
__Closest = (el, found = el && el.closest(selector)) =>
|
|
32
|
+
!el || el === document || el === window
|
|
33
|
+
? null // standard .closest() returns null for non-found selectors also
|
|
34
|
+
: found
|
|
35
|
+
? found // found a selector INside this element
|
|
36
|
+
: __Closest(el.getRootNode().host) // recursion!! break out to parent DOM
|
|
37
|
+
) {
|
|
38
|
+
return __Closest(base);
|
|
39
|
+
}
|
|
40
|
+
/* eslint-enable jsdoc/require-param */
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* If the element passed is registered with a different tag name than what is passed in, the tag name is added as an attribute to the element.
|
|
44
|
+
* @param {Object} elem - The element to check.
|
|
45
|
+
* @param {String} tagName - The name of the Auro component to check for or add as an attribute.
|
|
46
|
+
* @returns {void}
|
|
47
|
+
*/
|
|
48
|
+
handleComponentTagRename(elem, tagName) {
|
|
49
|
+
const tag = tagName.toLowerCase();
|
|
50
|
+
const elemTag = elem.tagName.toLowerCase();
|
|
51
|
+
|
|
52
|
+
if (elemTag !== tag) {
|
|
53
|
+
elem.setAttribute(tag, true);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Validates if an element is a specific Auro component.
|
|
59
|
+
* @param {Object} elem - The element to validate.
|
|
60
|
+
* @param {String} tagName - The name of the Auro component to check against.
|
|
61
|
+
* @returns {Boolean} - Returns true if the element is the specified Auro component.
|
|
62
|
+
*/
|
|
63
|
+
elementMatch(elem, tagName) {
|
|
64
|
+
const tag = tagName.toLowerCase();
|
|
65
|
+
const elemTag = elem.tagName.toLowerCase();
|
|
66
|
+
|
|
67
|
+
return elemTag === tag || elem.hasAttribute(tag);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @license
|
|
73
|
+
* Copyright 2017 Google LLC
|
|
74
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
75
|
+
*/
|
|
76
|
+
const t$2=globalThis,i$5=t$2.trustedTypes,s$4=i$5?i$5.createPolicy("lit-html",{createHTML:t=>t}):void 0,e$5="$lit$",h$4=`lit$${Math.random().toFixed(9).slice(2)}$`,o$7="?"+h$4,n$5=`<${o$7}>`,r$3=document,l$2=()=>r$3.createComment(""),c$4=t=>null===t||"object"!=typeof t&&"function"!=typeof t,a$2=Array.isArray,u$4=t=>a$2(t)||"function"==typeof t?.[Symbol.iterator],d$1="[ \t\n\f\r]",f$5=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v$1=/-->/g,_$1=/>/g,m$2=RegExp(`>|${d$1}(?:([^\\s"'>=/]+)(${d$1}*=${d$1}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),p$3=/'/g,g$2=/"/g,$$1=/^(?:script|style|textarea|title)$/i,y$3=t=>(i,...s)=>({_$litType$:t,strings:i,values:s}),x$2=y$3(1),T$1=Symbol.for("lit-noChange"),E$1=Symbol.for("lit-nothing"),A$1=new WeakMap,C$1=r$3.createTreeWalker(r$3,129);function P$1(t,i){if(!a$2(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==s$4?s$4.createHTML(i):i}const V$1=(t,i)=>{const s=t.length-1,o=[];let r,l=2===i?"<svg>":3===i?"<math>":"",c=f$5;for(let i=0;i<s;i++){const s=t[i];let a,u,d=-1,y=0;for(;y<s.length&&(c.lastIndex=y,u=c.exec(s),null!==u);)y=c.lastIndex,c===f$5?"!--"===u[1]?c=v$1:void 0!==u[1]?c=_$1:void 0!==u[2]?($$1.test(u[2])&&(r=RegExp("</"+u[2],"g")),c=m$2):void 0!==u[3]&&(c=m$2):c===m$2?">"===u[0]?(c=r??f$5,d=-1):void 0===u[1]?d=-2:(d=c.lastIndex-u[2].length,a=u[1],c=void 0===u[3]?m$2:'"'===u[3]?g$2:p$3):c===g$2||c===p$3?c=m$2:c===v$1||c===_$1?c=f$5:(c=m$2,r=void 0);const x=c===m$2&&t[i+1].startsWith("/>")?" ":"";l+=c===f$5?s+n$5:d>=0?(o.push(a),s.slice(0,d)+e$5+s.slice(d)+h$4+x):s+h$4+(-2===d?i:x);}return [P$1(t,l+(t[s]||"<?>")+(2===i?"</svg>":3===i?"</math>":"")),o]};let N$1 = class N{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let c=0,a=0;const u=t.length-1,d=this.parts,[f,v]=V$1(t,s);if(this.el=N.createElement(f,n),C$1.currentNode=this.el.content,2===s||3===s){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes);}for(;null!==(r=C$1.nextNode())&&d.length<u;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(e$5)){const i=v[a++],s=r.getAttribute(t).split(h$4),e=/([.?@])?(.*)/.exec(i);d.push({type:1,index:c,name:e[2],strings:s,ctor:"."===e[1]?H$1:"?"===e[1]?I$1:"@"===e[1]?L$1:k$2}),r.removeAttribute(t);}else t.startsWith(h$4)&&(d.push({type:6,index:c}),r.removeAttribute(t));if($$1.test(r.tagName)){const t=r.textContent.split(h$4),s=t.length-1;if(s>0){r.textContent=i$5?i$5.emptyScript:"";for(let i=0;i<s;i++)r.append(t[i],l$2()),C$1.nextNode(),d.push({type:2,index:++c});r.append(t[s],l$2());}}}else if(8===r.nodeType)if(r.data===o$7)d.push({type:2,index:c});else {let t=-1;for(;-1!==(t=r.data.indexOf(h$4,t+1));)d.push({type:7,index:c}),t+=h$4.length-1;}c++;}}static createElement(t,i){const s=r$3.createElement("template");return s.innerHTML=t,s}};function S$2(t,i,s=t,e){if(i===T$1)return i;let h=void 0!==e?s._$Co?.[e]:s._$Cl;const o=c$4(i)?void 0:i._$litDirective$;return h?.constructor!==o&&(h?._$AO?.(false),void 0===o?h=void 0:(h=new o(t),h._$AT(t,s,e)),void 0!==e?(s._$Co??=[])[e]=h:s._$Cl=h),void 0!==h&&(i=S$2(t,h._$AS(t,i.values),h,e)),i}let M$1 = class M{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){const{el:{content:i},parts:s}=this._$AD,e=(t?.creationScope??r$3).importNode(i,true);C$1.currentNode=e;let h=C$1.nextNode(),o=0,n=0,l=s[0];for(;void 0!==l;){if(o===l.index){let i;2===l.type?i=new R$1(h,h.nextSibling,this,t):1===l.type?i=new l.ctor(h,l.name,l.strings,this,t):6===l.type&&(i=new z$2(h,this,t)),this._$AV.push(i),l=s[++n];}o!==l?.index&&(h=C$1.nextNode(),o++);}return C$1.currentNode=r$3,e}p(t){let i=0;for(const s of this._$AV) void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,i),i+=s.strings.length-2):s._$AI(t[i])),i++;}};let R$1 = class R{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,i,s,e){this.type=2,this._$AH=E$1,this._$AN=void 0,this._$AA=t,this._$AB=i,this._$AM=s,this.options=e,this._$Cv=e?.isConnected??true;}get parentNode(){let t=this._$AA.parentNode;const i=this._$AM;return void 0!==i&&11===t?.nodeType&&(t=i.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,i=this){t=S$2(this,t,i),c$4(t)?t===E$1||null==t||""===t?(this._$AH!==E$1&&this._$AR(),this._$AH=E$1):t!==this._$AH&&t!==T$1&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):u$4(t)?this.k(t):this._(t);}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t));}_(t){this._$AH!==E$1&&c$4(this._$AH)?this._$AA.nextSibling.data=t:this.T(r$3.createTextNode(t)),this._$AH=t;}$(t){const{values:i,_$litType$:s}=t,e="number"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=N$1.createElement(P$1(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===e)this._$AH.p(i);else {const t=new M$1(e,this),s=t.u(this.options);t.p(i),this.T(s),this._$AH=t;}}_$AC(t){let i=A$1.get(t.strings);return void 0===i&&A$1.set(t.strings,i=new N$1(t)),i}k(t){a$2(this._$AH)||(this._$AH=[],this._$AR());const i=this._$AH;let s,e=0;for(const h of t)e===i.length?i.push(s=new R(this.O(l$2()),this.O(l$2()),this,this.options)):s=i[e],s._$AI(h),e++;e<i.length&&(this._$AR(s&&s._$AB.nextSibling,e),i.length=e);}_$AR(t=this._$AA.nextSibling,i){for(this._$AP?.(false,true,i);t&&t!==this._$AB;){const i=t.nextSibling;t.remove(),t=i;}}setConnected(t){ void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t));}};let k$2 = class k{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,i,s,e,h){this.type=1,this._$AH=E$1,this._$AN=void 0,this.element=t,this.name=i,this._$AM=e,this.options=h,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=E$1;}_$AI(t,i=this,s,e){const h=this.strings;let o=false;if(void 0===h)t=S$2(this,t,i,0),o=!c$4(t)||t!==this._$AH&&t!==T$1,o&&(this._$AH=t);else {const e=t;let n,r;for(t=h[0],n=0;n<h.length-1;n++)r=S$2(this,e[s+n],i,n),r===T$1&&(r=this._$AH[n]),o||=!c$4(r)||r!==this._$AH[n],r===E$1?t=E$1:t!==E$1&&(t+=(r??"")+h[n+1]),this._$AH[n]=r;}o&&!e&&this.j(t);}j(t){t===E$1?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"");}};let H$1 = class H extends k$2{constructor(){super(...arguments),this.type=3;}j(t){this.element[this.name]=t===E$1?void 0:t;}};let I$1 = class I extends k$2{constructor(){super(...arguments),this.type=4;}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E$1);}};let L$1 = class L extends k$2{constructor(t,i,s,e,h){super(t,i,s,e,h),this.type=5;}_$AI(t,i=this){if((t=S$2(this,t,i,0)??E$1)===T$1)return;const s=this._$AH,e=t===E$1&&s!==E$1||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,h=t!==E$1&&(s===E$1||e);e&&this.element.removeEventListener(this.name,this,s),h&&this.element.addEventListener(this.name,this,t),this._$AH=t;}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t);}};let z$2 = class z{constructor(t,i,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=i,this.options=s;}get _$AU(){return this._$AM._$AU}_$AI(t){S$2(this,t);}};const j$1=t$2.litHtmlPolyfillSupport;j$1?.(N$1,R$1),(t$2.litHtmlVersions??=[]).push("3.3.0");const B$1=(t,i,s)=>{const e=s?.renderBefore??i;let h=e._$litPart$;if(void 0===h){const t=s?.renderBefore??null;e._$litPart$=h=new R$1(i.insertBefore(l$2(),t),t,void 0,s??{});}return h._$AI(t),h};
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @license
|
|
80
|
+
* Copyright 2020 Google LLC
|
|
81
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
82
|
+
*/
|
|
83
|
+
const a$1=Symbol.for(""),o$6=t=>{if(t?.r===a$1)return t?._$litStatic$},s$3=t=>({_$litStatic$:t,r:a$1}),i$4=(t,...r)=>({_$litStatic$:r.reduce(((r,e,a)=>r+(t=>{if(void 0!==t._$litStatic$)return t._$litStatic$;throw Error(`Value passed to 'literal' function must be a 'literal' result: ${t}. Use 'unsafeStatic' to pass non-literal values, but\n take care to ensure page security.`)})(e)+t[a+1]),t[0]),r:a$1}),l$1=new Map,n$4=t=>(r,...e)=>{const a=e.length;let s,i;const n=[],u=[];let c,$=0,f=false;for(;$<a;){for(c=r[$];$<a&&void 0!==(i=e[$],s=o$6(i));)c+=s+r[++$],f=true;$!==a&&u.push(i),n.push(c),$++;}if($===a&&n.push(r[a]),f){const t=n.join("$$lit$$");void 0===(r=l$1.get(t))&&(n.raw=n,l$1.set(t,r=n)),e=u;}return t(r,...e)},u$3=n$4(x$2);
|
|
84
|
+
|
|
85
|
+
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
86
|
+
// See LICENSE in the project root for license information.
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
class AuroDependencyVersioning {
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Generates a unique string to be used for child auro element naming.
|
|
93
|
+
* @private
|
|
94
|
+
* @param {string} baseName - Defines the first part of the unique element name.
|
|
95
|
+
* @param {string} version - Version of the component that will be appended to the baseName.
|
|
96
|
+
* @returns {string} - Unique string to be used for naming.
|
|
97
|
+
*/
|
|
98
|
+
generateElementName(baseName, version) {
|
|
99
|
+
let result = baseName;
|
|
100
|
+
|
|
101
|
+
result += '-';
|
|
102
|
+
result += version.replace(/[.]/g, '_');
|
|
103
|
+
|
|
104
|
+
return result;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Generates a unique string to be used for child auro element naming.
|
|
109
|
+
* @param {string} baseName - Defines the first part of the unique element name.
|
|
110
|
+
* @param {string} version - Version of the component that will be appended to the baseName.
|
|
111
|
+
* @returns {string} - Unique string to be used for naming.
|
|
112
|
+
*/
|
|
113
|
+
generateTag(baseName, version, tagClass) {
|
|
114
|
+
const elementName = this.generateElementName(baseName, version);
|
|
115
|
+
const tag = i$4`${s$3(elementName)}`;
|
|
116
|
+
|
|
117
|
+
if (!customElements.get(elementName)) {
|
|
118
|
+
customElements.define(elementName, class extends tagClass {});
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
return tag;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @license
|
|
127
|
+
* Copyright 2019 Google LLC
|
|
128
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
129
|
+
*/
|
|
130
|
+
const t$1=globalThis,e$4=t$1.ShadowRoot&&(void 0===t$1.ShadyCSS||t$1.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s$2=Symbol(),o$5=new WeakMap;let n$3 = class n{constructor(t,e,o){if(this._$cssResult$=true,o!==s$2)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e;}get styleSheet(){let t=this.o;const s=this.t;if(e$4&&void 0===t){const e=void 0!==s&&1===s.length;e&&(t=o$5.get(s)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&o$5.set(s,t));}return t}toString(){return this.cssText}};const r$2=t=>new n$3("string"==typeof t?t:t+"",void 0,s$2),i$3=(t,...e)=>{const o=1===t.length?t[0]:e.reduce(((e,s,o)=>e+(t=>{if(true===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(s)+t[o+1]),t[0]);return new n$3(o,t,s$2)},S$1=(s,o)=>{if(e$4)s.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement("style"),n=t$1.litNonce;void 0!==n&&o.setAttribute("nonce",n),o.textContent=e.cssText,s.appendChild(o);}},c$3=e$4?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return r$2(e)})(t):t;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @license
|
|
134
|
+
* Copyright 2017 Google LLC
|
|
135
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
136
|
+
*/const{is:i$2,defineProperty:e$3,getOwnPropertyDescriptor:h$3,getOwnPropertyNames:r$1,getOwnPropertySymbols:o$4,getPrototypeOf:n$2}=Object,a=globalThis,c$2=a.trustedTypes,l=c$2?c$2.emptyScript:"",p$2=a.reactiveElementPolyfillSupport,d=(t,s)=>t,u$2={toAttribute(t,s){switch(s){case Boolean:t=t?l:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t);}return t},fromAttribute(t,s){let i=t;switch(s){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t);}catch(t){i=null;}}return i}},f$4=(t,s)=>!i$2(t,s),b$1={attribute:true,type:String,converter:u$2,reflect:false,useDefault:false,hasChanged:f$4};Symbol.metadata??=Symbol("metadata"),a.litPropertyMetadata??=new WeakMap;let y$2 = class y extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t);}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,s=b$1){if(s.state&&(s.attribute=false),this._$Ei(),this.prototype.hasOwnProperty(t)&&((s=Object.create(s)).wrapped=true),this.elementProperties.set(t,s),!s.noAccessor){const i=Symbol(),h=this.getPropertyDescriptor(t,i,s);void 0!==h&&e$3(this.prototype,t,h);}}static getPropertyDescriptor(t,s,i){const{get:e,set:r}=h$3(this.prototype,t)??{get(){return this[s]},set(t){this[s]=t;}};return {get:e,set(s){const h=e?.call(this);r?.call(this,s),this.requestUpdate(t,h,i);},configurable:true,enumerable:true}}static getPropertyOptions(t){return this.elementProperties.get(t)??b$1}static _$Ei(){if(this.hasOwnProperty(d("elementProperties")))return;const t=n$2(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties);}static finalize(){if(this.hasOwnProperty(d("finalized")))return;if(this.finalized=true,this._$Ei(),this.hasOwnProperty(d("properties"))){const t=this.properties,s=[...r$1(t),...o$4(t)];for(const i of s)this.createProperty(i,t[i]);}const t=this[Symbol.metadata];if(null!==t){const s=litPropertyMetadata.get(t);if(void 0!==s)for(const[t,i]of s)this.elementProperties.set(t,i);}this._$Eh=new Map;for(const[t,s]of this.elementProperties){const i=this._$Eu(t,s);void 0!==i&&this._$Eh.set(i,t);}this.elementStyles=this.finalizeStyles(this.styles);}static finalizeStyles(s){const i=[];if(Array.isArray(s)){const e=new Set(s.flat(1/0).reverse());for(const s of e)i.unshift(c$3(s));}else void 0!==s&&i.push(c$3(s));return i}static _$Eu(t,s){const i=s.attribute;return false===i?void 0:"string"==typeof i?i:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=false,this.hasUpdated=false,this._$Em=null,this._$Ev();}_$Ev(){this._$ES=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)));}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.();}removeController(t){this._$EO?.delete(t);}_$E_(){const t=new Map,s=this.constructor.elementProperties;for(const i of s.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t);}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return S$1(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(true),this._$EO?.forEach((t=>t.hostConnected?.()));}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach((t=>t.hostDisconnected?.()));}attributeChangedCallback(t,s,i){this._$AK(t,i);}_$ET(t,s){const i=this.constructor.elementProperties.get(t),e=this.constructor._$Eu(t,i);if(void 0!==e&&true===i.reflect){const h=(void 0!==i.converter?.toAttribute?i.converter:u$2).toAttribute(s,i.type);this._$Em=t,null==h?this.removeAttribute(e):this.setAttribute(e,h),this._$Em=null;}}_$AK(t,s){const i=this.constructor,e=i._$Eh.get(t);if(void 0!==e&&this._$Em!==e){const t=i.getPropertyOptions(e),h="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:u$2;this._$Em=e,this[e]=h.fromAttribute(s,t.type)??this._$Ej?.get(e)??null,this._$Em=null;}}requestUpdate(t,s,i){if(void 0!==t){const e=this.constructor,h=this[t];if(i??=e.getPropertyOptions(t),!((i.hasChanged??f$4)(h,s)||i.useDefault&&i.reflect&&h===this._$Ej?.get(t)&&!this.hasAttribute(e._$Eu(t,i))))return;this.C(t,s,i);} false===this.isUpdatePending&&(this._$ES=this._$EP());}C(t,s,{useDefault:i,reflect:e,wrapped:h},r){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,r??s??this[t]),true!==h||void 0!==r)||(this._$AL.has(t)||(this.hasUpdated||i||(s=void 0),this._$AL.set(t,s)),true===e&&this._$Em!==t&&(this._$Eq??=new Set).add(t));}async _$EP(){this.isUpdatePending=true;try{await this._$ES;}catch(t){Promise.reject(t);}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,s]of this._$Ep)this[t]=s;this._$Ep=void 0;}const t=this.constructor.elementProperties;if(t.size>0)for(const[s,i]of t){const{wrapped:t}=i,e=this[s];true!==t||this._$AL.has(s)||void 0===e||this.C(s,void 0,i,e);}}let t=false;const s=this._$AL;try{t=this.shouldUpdate(s),t?(this.willUpdate(s),this._$EO?.forEach((t=>t.hostUpdate?.())),this.update(s)):this._$EM();}catch(s){throw t=false,this._$EM(),s}t&&this._$AE(s);}willUpdate(t){}_$AE(t){this._$EO?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=true,this.firstUpdated(t)),this.updated(t);}_$EM(){this._$AL=new Map,this.isUpdatePending=false;}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return true}update(t){this._$Eq&&=this._$Eq.forEach((t=>this._$ET(t,this[t]))),this._$EM();}updated(t){}firstUpdated(t){}};y$2.elementStyles=[],y$2.shadowRootOptions={mode:"open"},y$2[d("elementProperties")]=new Map,y$2[d("finalized")]=new Map,p$2?.({ReactiveElement:y$2}),(a.reactiveElementVersions??=[]).push("2.1.0");
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* @license
|
|
140
|
+
* Copyright 2017 Google LLC
|
|
141
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
142
|
+
*/const s$1=globalThis;let i$1 = class i extends y$2{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0;}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const r=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=B$1(r,this.renderRoot,this.renderOptions);}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(true);}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(false);}render(){return T$1}};i$1._$litElement$=true,i$1["finalized"]=true,s$1.litElementHydrateSupport?.({LitElement:i$1});const o$3=s$1.litElementPolyfillSupport;o$3?.({LitElement:i$1});(s$1.litElementVersions??=[]).push("4.2.0");
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* @license
|
|
146
|
+
* Copyright 2018 Google LLC
|
|
147
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
148
|
+
*/const o$2=o=>o??E$1;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* @license
|
|
152
|
+
* Copyright 2017 Google LLC
|
|
153
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
154
|
+
*/
|
|
155
|
+
const t={ATTRIBUTE:1,CHILD:2},e$2=t=>(...e)=>({_$litDirective$:t,values:e});class i{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,i){this._$Ct=t,this._$AM=e,this._$Ci=i;}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* @license
|
|
159
|
+
* Copyright 2018 Google LLC
|
|
160
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
161
|
+
*/const e$1=e$2(class extends i{constructor(t$1){if(super(t$1),t$1.type!==t.ATTRIBUTE||"class"!==t$1.name||t$1.strings?.length>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return " "+Object.keys(t).filter((s=>t[s])).join(" ")+" "}update(s,[i]){if(void 0===this.st){this.st=new Set,void 0!==s.strings&&(this.nt=new Set(s.strings.join(" ").split(/\s/).filter((t=>""!==t))));for(const t in i)i[t]&&!this.nt?.has(t)&&this.st.add(t);return this.render(i)}const r=s.element.classList;for(const t of this.st)t in i||(r.remove(t),this.st.delete(t));for(const t in i){const s=!!i[t];s===this.st.has(t)||this.nt?.has(t)||(s?(r.add(t),this.st.add(t)):(r.remove(t),this.st.delete(t)));}return T$1}});
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* @license
|
|
165
|
+
* Copyright 2020 Google LLC
|
|
166
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
167
|
+
*/const f$3=o=>void 0===o.strings;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @license
|
|
171
|
+
* Copyright 2017 Google LLC
|
|
172
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
173
|
+
*/const s=(i,t)=>{const e=i._$AN;if(void 0===e)return false;for(const i of e)i._$AO?.(t,false),s(i,t);return true},o$1=i=>{let t,e;do{if(void 0===(t=i._$AM))break;e=t._$AN,e.delete(i),i=t;}while(0===e?.size)},r=i=>{for(let t;t=i._$AM;i=t){let e=t._$AN;if(void 0===e)t._$AN=e=new Set;else if(e.has(i))break;e.add(i),c$1(t);}};function h$2(i){ void 0!==this._$AN?(o$1(this),this._$AM=i,r(this)):this._$AM=i;}function n$1(i,t=false,e=0){const r=this._$AH,h=this._$AN;if(void 0!==h&&0!==h.size)if(t)if(Array.isArray(r))for(let i=e;i<r.length;i++)s(r[i],false),o$1(r[i]);else null!=r&&(s(r,false),o$1(r));else s(this,i);}const c$1=i=>{i.type==t.CHILD&&(i._$AP??=n$1,i._$AQ??=h$2);};let f$2 = class f extends i{constructor(){super(...arguments),this._$AN=void 0;}_$AT(i,t,e){super._$AT(i,t,e),r(this),this.isConnected=i._$AU;}_$AO(i,t=true){i!==this.isConnected&&(this.isConnected=i,i?this.reconnected?.():this.disconnected?.()),t&&(s(this,i),o$1(this));}setValue(t){if(f$3(this._$Ct))this._$Ct._$AI(t,this);else {const i=[...this._$Ct._$AH];i[this._$Ci]=t,this._$Ct._$AI(i,this,0);}}disconnected(){}reconnected(){}};
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* @license
|
|
177
|
+
* Copyright 2020 Google LLC
|
|
178
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
179
|
+
*/const e=()=>new h$1;let h$1 = class h{};const o=new WeakMap,n=e$2(class extends f$2{render(i){return E$1}update(i,[s]){const e=s!==this.G;return e&&void 0!==this.G&&this.rt(void 0),(e||this.lt!==this.ct)&&(this.G=s,this.ht=i.options?.host,this.rt(this.ct=i.element)),E$1}rt(t){if(this.isConnected||(t=void 0),"function"==typeof this.G){const i=this.ht??globalThis;let s=o.get(i);void 0===s&&(s=new WeakMap,o.set(i,s)),void 0!==s.get(this.G)&&this.G.call(this.ht,void 0),s.set(this.G,t),void 0!==t&&this.G.call(this.ht,t);}else this.G.value=t;}get lt(){return "function"==typeof this.G?o.get(this.ht??globalThis)?.get(this.G):this.G?.value}disconnected(){this.lt===this.ct&&this.rt(void 0);}reconnected(){this.rt(this.ct);}});
|
|
180
|
+
|
|
181
|
+
let c=class{registerComponent(e,t){customElements.get(e)||customElements.define(e,class extends t{});}closestElement(e,t=this,o=(t,r=t&&t.closest(e))=>t&&t!==document&&t!==window?r||o(t.getRootNode().host):null){return o(t)}handleComponentTagRename(e,t){const o=t.toLowerCase();e.tagName.toLowerCase()!==o&&e.setAttribute(o,true);}elementMatch(e,t){const o=t.toLowerCase();return e.tagName.toLowerCase()===o||e.hasAttribute(o)}};let h=class extends i$1{static get properties(){return {hidden:{type:Boolean,reflect:true},hiddenVisually:{type:Boolean,reflect:true},hiddenAudible:{type:Boolean,reflect:true}}}hideAudible(e){return e?"true":"false"}};const u$1=new Map,p$1=(e,t={})=>{const o=t.responseParser||(e=>e.text());return u$1.has(e)||u$1.set(e,fetch(e).then(o)),u$1.get(e)};var b=i$3`:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}.ico_squareLarge{fill:currentColor;height:var(--auro-size-lg, var(--ds-size-300, 1.5rem))}.ico_squareSmall{fill:currentColor;height:.6rem}.ico_squareMed{fill:currentColor;height:var(--auro-size-md, var(--ds-size-200, 1rem))}.ico_squareSml{fill:currentColor;height:var(--auro-size-sm, var(--ds-size-150, .75rem))}:host{color:currentColor;vertical-align:middle;line-height:1;display:inline-block}svg{min-width:var(--ds-auro-icon-size, 1.5rem)!important;width:var(--ds-auro-icon-size, 1.5rem)!important;height:var(--ds-auro-icon-size, 1.5rem)!important}.componentWrapper{display:flex}.svgWrapper{height:var(--ds-auro-icon-size);width:var(--ds-auro-icon-size)}.labelWrapper{margin-left:var(--ds-size-50, .25rem);line-height:1.8}
|
|
182
|
+
`;let v=class extends h{constructor(){super(),this.onDark=false;}static get properties(){return {...h.properties,onDark:{type:Boolean,reflect:true},svg:{attribute:false,reflect:true}}}static get styles(){return b}async fetchIcon(e,t){let o="";return o="logos"===e?await p$1(`${this.uri}/${e}/${t}.svg`):await p$1(`${this.uri}/icons/${e}/${t}.svg`),(new DOMParser).parseFromString(o,"text/html").body.querySelector("svg")}async firstUpdated(){try{if(!this.customSvg){const e=await this.fetchIcon(this.category,this.name);if(e)this.svg=e;else if(!e){const e=(new DOMParser).parseFromString('<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="error__desc" class="ico_squareLarge" data-deprecated="true" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title/><desc id="error__desc">Error alert indicator.</desc><path d="m13.047 5.599 6.786 11.586A1.207 1.207 0 0 1 18.786 19H5.214a1.207 1.207 0 0 1-1.047-1.815l6.786-11.586a1.214 1.214 0 0 1 2.094 0m-1.165.87a.23.23 0 0 0-.085.085L5.419 17.442a.232.232 0 0 0 .203.35h12.756a.234.234 0 0 0 .203-.35L12.203 6.554a.236.236 0 0 0-.321-.084M12 15.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m-.024-6.22c.325 0 .589.261.589.583v4.434a.586.586 0 0 1-.589.583.586.586 0 0 1-.588-.583V9.863c0-.322.264-.583.588-.583"/></svg>',"text/html");this.svg=e.body.firstChild;}}}catch(e){this.svg=void 0;}}};i$3`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host{display:inline-block;--ds-auro-icon-size: 100%;width:100%;height:100%}:host .logo{color:var(--ds-auro-alaska-color)}:host([onDark]){--ds-auro-alaska-color: #FFF}
|
|
183
|
+
`;var f$1=i$3`:host{--ds-auro-icon-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-alaska-color: #02426D;--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}
|
|
184
|
+
`,m$1=i$3`:host{color:var(--ds-auro-icon-color)}:host([customColor]){color:inherit}:host(:not([onDark])[variant=accent1]){--ds-auro-icon-color: var(--ds-basic-color-texticon-accent1, #265688)}:host(:not([onDark])[variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host(:not([onDark])[variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-muted, #676767)}:host(:not([onDark])[variant=statusDefault]){--ds-auro-icon-color: var(--ds-basic-color-status-default, #afb9c6)}:host(:not([onDark])[variant=statusInfo]){--ds-auro-icon-color: var(--ds-basic-color-status-info, #01426a)}:host(:not([onDark])[variant=statusSuccess]){--ds-auro-icon-color: var(--ds-basic-color-status-success, #447a1f)}:host(:not([onDark])[variant=statusWarning]){--ds-auro-icon-color: var(--ds-basic-color-status-warning, #fac200)}:host(:not([onDark])[variant=statusError]){--ds-auro-icon-color: var(--ds-basic-color-status-error, #e31f26)}:host(:not([onDark])[variant=statusInfoSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-info-subtle, #ebf3f9)}:host(:not([onDark])[variant=statusSuccessSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-success-subtle, #d6eac7)}:host(:not([onDark])[variant=statusWarningSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-warning-subtle, #fff0b2)}:host(:not([onDark])[variant=statusErrorSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host(:not([onDark])[variant=fareBasicEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-basiceconomy, #97eaf8)}:host(:not([onDark])[variant=fareBusiness]){--ds-auro-icon-color: var(--ds-basic-color-fare-business, #01426a)}:host(:not([onDark])[variant=fareEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-economy, #0074ca)}:host(:not([onDark])[variant=fareFirst]){--ds-auro-icon-color: var(--ds-basic-color-fare-first, #00274a)}:host(:not([onDark])[variant=farePremiumEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-premiumeconomy, #005154)}:host(:not([onDark])[variant=tierOneWorldEmerald]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-emerald, #139142)}:host(:not([onDark])[variant=tierOneWorldSapphire]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-sapphire, #015daa)}:host(:not([onDark])[variant=tierOneWorldRuby]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-ruby, #a41d4a)}:host([onDark]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([onDark][variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([onDark][variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][variant=statusError]){--ds-auro-icon-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8)}
|
|
185
|
+
`;let g$1=class e extends v{constructor(){super(),this.variant=void 0,this.privateDefaults();}privateDefaults(){this.uri="https://cdn.jsdelivr.net/npm/@alaskaairux/icons@latest/dist",this.runtimeUtils=new c;}static get properties(){return {...v.properties,ariaHidden:{type:String,reflect:true},category:{type:String,reflect:true},customColor:{type:Boolean,reflect:true},customSvg:{type:Boolean},label:{type:Boolean,reflect:true},name:{type:String,reflect:true},variant:{type:String,reflect:true}}}static get styles(){return [v.styles,f$1,b,m$1]}static register(t="auro-icon"){c.prototype.registerComponent(t,e);}connectedCallback(){super.connectedCallback(),this.runtimeUtils.handleComponentTagRename(this,"auro-icon");}exposeCssParts(){this.setAttribute("exportparts","svg:iconSvg");}async firstUpdated(){if(await super.firstUpdated(),this.hasAttribute("ariaHidden")&&this.svg){const e=this.svg.querySelector("desc");e&&(e.remove(),this.svg.removeAttribute("aria-labelledby"));}}render(){const e={labelWrapper:true,util_displayHiddenVisually:!this.label};return x$2`
|
|
186
|
+
<div class="componentWrapper">
|
|
187
|
+
<div
|
|
188
|
+
class="${e$1({svgWrapper:true})}"
|
|
189
|
+
title="${o$2(this.title||void 0)}">
|
|
190
|
+
<span aria-hidden="${o$2(this.ariaHidden||true)}" part="svg">
|
|
191
|
+
${this.customSvg?x$2`
|
|
192
|
+
<slot name="svg"></slot>
|
|
193
|
+
`:x$2`
|
|
194
|
+
${this.svg}
|
|
195
|
+
`}
|
|
196
|
+
</span>
|
|
197
|
+
</div>
|
|
198
|
+
|
|
199
|
+
<div class="${e$1(e)}">
|
|
200
|
+
<slot></slot>
|
|
201
|
+
</div>
|
|
202
|
+
</div>
|
|
203
|
+
`}};const x$1=new WeakMap,y$1=new WeakMap,w$1=({host:e,target:t,matcher:o,removeOriginal:r=true})=>{y$1.has(e)||y$1.set(e,{matchers:new Set,targets:new Map});const s=y$1.get(e);return s.matchers.add(o),s.targets.has(t)||s.targets.set(t,new Map),s.targets.get(t).set(o,{removeOriginal:r,currentAttributes:new Map}),k$1({host:e,target:t,matcher:o,removeOriginal:r}),S(e),{cleanup:()=>z$1(e,t,o),getObservedAttributes:()=>H(e,t,o),getObservedAttribute:r=>q(e,t,o,r)}},z$1=(e,t,o)=>{const r=y$1.get(e);if(!r)return;const s=r.targets.get(t);s&&(s.delete(o),0===s.size&&r.targets.delete(t));let a=false;for(const e of r.targets.values())if(e.has(o)){a=true;break}a||r.matchers.delete(o),0!==r.targets.size&&0!==r.matchers.size||A(e);},k$1=({host:e,target:t,matcher:o,removeOriginal:r=true})=>{const s=e.getAttributeNames().filter(e=>o(e)).reduce((t,o)=>(t[o]=e.getAttribute(o),t),{});Object.entries(s).forEach(([s,a])=>{C(e,t,o,s,a),t.setAttribute(s,a),r&&e.removeAttribute(s);});},S=e=>{if(x$1.has(e))return x$1.get(e);const t=new MutationObserver(t=>{const o=y$1.get(e);o&&t.filter(e=>"attributes"===e.type).forEach(t=>{const r=t.attributeName;for(const t of o.matchers)if(t(r))for(const[r,s]of o.targets.entries())if(s.has(t)){const{removeOriginal:o}=s.get(t);k$1({host:e,target:r,matcher:t,removeOriginal:o});}});});return t.observe(e,{attributes:true}),x$1.set(e,t),t},A=e=>{if(x$1.has(e)){x$1.get(e).disconnect(),x$1.delete(e);}y$1.has(e)&&y$1.delete(e);},B=(e,t,o)=>{const r=y$1.get(e);if(!r)return;const s=r.targets.get(t);return s?s.get(o):void 0},C=(e,t,o,r,s)=>{const a=B(e,t,o);a&&a.currentAttributes.set(r,s);},q=(e,t,o,r)=>{const s=B(e,t,o);if(s)return s.currentAttributes.get(r)},H=(e,t,o)=>{const r=B(e,t,o);return r?Array.from(r.currentAttributes.entries()):[]},R={"aria-":e=>e.startsWith("aria-"),role:e=>e.match(/^role$/),tabindex:e=>e.match(/^tabindex$/)},U=({host:e,target:t,removeOriginal:o=true,ignore:r})=>(({host:e,target:t,match:o,removeOriginal:r=true})=>{if("object"!=typeof e||!(e instanceof HTMLElement))throw new TypeError('a11yUtilities.js | transportAttributes | The "host" parameter must be an instance of HTMLElement.');if("object"!=typeof t||!(t instanceof HTMLElement))throw new TypeError('a11yUtilities.js | transportAttributes | The "target" parameter must be an instance of HTMLElement.');if("function"!=typeof o)throw new TypeError('a11yUtilities.js | transportAttributes | The "match" parameter must be a function.');if("boolean"!=typeof r)throw new TypeError('a11yUtilities.js | transportAttributes | The "removeOriginal" parameter must be a boolean.');return w$1({host:e,target:t,matcher:o,removeOriginal:r})})({host:e,target:t,match:e=>{if(r&&r.includes(e))return false;for(const t in R)if(R[t](e))return true;return false},removeOriginal:o});class M{generateElementName(e,t){let o=e;return o+="-",o+=t.replace(/[.]/g,"_"),o}generateTag(e,t,o){const r=this.generateElementName(e,t),s=i$4`${s$3(r)}`;return customElements.get(r)||customElements.define(r,class extends o{}),s}}class I{registerComponent(e,t){customElements.get(e)||customElements.define(e,class extends t{});}closestElement(e,t=this,o=(t,r=t&&t.closest(e))=>t&&t!==document&&t!==window?r||o(t.getRootNode().host):null){return o(t)}handleComponentTagRename(e,t){const o=t.toLowerCase();e.tagName.toLowerCase()!==o&&e.setAttribute(o,true);}elementMatch(e,t){const o=t.toLowerCase();return e.tagName.toLowerCase()===o||e.hasAttribute(o)}}var N='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="external-link-stroke__title external-link-stroke__desc" class="ico_squareLarge" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title id="external-link-stroke__title">Link to external site.</title><desc id="external-link-stroke__desc">This indicates a link to an external site that may not follow the same accessibility or privacy policies as Alaska Airlines. By selecting a partner link you agree to share your data with these sites.</desc><path d="M7 6.25h5a.75.75 0 0 1 .102 1.494L12 7.75H7a1.25 1.25 0 0 0-1.244 1.123L5.75 9v8c0 .648.492 1.18 1.122 1.244L7 18.25h8a1.25 1.25 0 0 0 1.244-1.122L16.25 17v-5a.75.75 0 0 1 1.493-.101l.007.101v5a2.75 2.75 0 0 1-2.582 2.745L15 19.75H7a2.75 2.75 0 0 1-2.745-2.582L4.25 17V9a2.75 2.75 0 0 1 2.582-2.745zh5zm12.025-2 .125.015.11.032.128.061c.18.108.317.29.353.522l.009.12v5a.75.75 0 0 1-1.493.102L18.25 10V6.811l-6.72 6.72a.75.75 0 0 1-1.133-.977l.073-.084 6.718-6.72H14a.75.75 0 0 1-.743-.648L13.25 5a.75.75 0 0 1 .648-.743L14 4.25z"/></svg>',T='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="new-window-stroke__title new-window-stroke__desc" class="ico_squareLarge" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title id="new-window-stroke__title">Link will open a new tab or window.</title><desc id="new-window-stroke__desc">Notice indicator to alert users that action will result in the browser opening a new tab or window.</desc><path fill-rule="evenodd" d="M20.246 5.687a2.063 2.063 0 0 0-2.058-1.937H8.813l-.126.004A2.063 2.063 0 0 0 6.75 5.813v.937H6.5l-.168.005A2.75 2.75 0 0 0 3.75 9.5v8l.005.168A2.75 2.75 0 0 0 6.5 20.25h8l.168-.005A2.75 2.75 0 0 0 17.25 17.5v-.25h.938l.125-.004a2.063 2.063 0 0 0 1.937-2.058V5.813zM15.75 17.25H8.813a2.063 2.063 0 0 1-2.06-1.937l-.003-.126V8.25H6.5a1.25 1.25 0 0 0-1.244 1.123L5.25 9.5v8c0 .648.492 1.18 1.122 1.244l.128.006h8a1.25 1.25 0 0 0 1.243-1.122l.007-.128zm-6.625-12h8.75l.09.005a.875.875 0 0 1 .785.87v8.75l-.005.09a.875.875 0 0 1-.87.785h-8.75l-.09-.005a.875.875 0 0 1-.785-.87v-8.75l.005-.09a.875.875 0 0 1 .87-.785m4.28 1.757L13.507 7c.38 0 .693.3.743.69l.007.11-.007 1.938h2c.38 0 .694.301.743.691l.007.108c0 .405-.282.74-.648.792l-.102.007h-2.001l.001 1.865c0 .404-.282.739-.648.792L13.5 14c-.38 0-.694-.3-.743-.69l-.007-.11-.001-1.864H10.75c-.38 0-.694-.3-.743-.69L10 10.537c0-.404.282-.738.648-.791l.102-.008h2l.007-1.939c0-.404.282-.739.648-.792"/></svg>';class _ extends i$1{static get properties(){return {layout:{type:String,attribute:"layout",reflect:true},shape:{type:String,attribute:"shape",reflect:true},size:{type:String,attribute:"size",reflect:true},onDark:{type:Boolean,attribute:"ondark",reflect:true}}}}class L extends _{constructor(){super(),this.download=false,this.relative=false,this.ondark=false,this.variant="primary",this.layout="cta"===this.type?"block":null,this.shape="cta"===this.type?"rounded":null,this.size="cta"===this.type?"md":null,this.defaultReferrerPolicy="strict-origin-when-cross-origin",this.ariapressed="false",this.tabIsActive="false",this.runtimeUtils=new I,this.addEventListener("touchstart",function(){this.classList.add("is-touching");});}static get properties(){return {..._.properties,href:{type:String,reflect:true},rel:{type:String,reflect:true},target:{type:String,reflect:true},download:{type:Boolean,reflect:true},relative:{type:Boolean,reflect:true},ondark:{type:Boolean},type:{type:String,reflect:true},fluid:{type:Boolean},referrerpolicy:{type:Boolean,reflect:true},variant:{type:String,reflect:true}}}firstUpdated(){this.runtimeUtils.handleComponentTagRename(this,"auro-hyperlink");}get safeUri(){return this.href?this.safeUrl(this.href,this.relative):""}get includesDomain(){return !!this.href&&this.safeUri.includes("http")}safeUrl(e,t){if(!e)return;const o=new URL(e,"https://www.alaskaair.com");switch(o.protocol){case "tel:":case "sms:":case "mailto:":return e;case "javascript:":case "data:":case "vbscript:":return;default:return t?e.replace(/^[^:]+:/,""):(o.protocol="https:",o.href)}}generateIconHtml(e){const t=(new DOMParser).parseFromString(e,"text/html").body.firstChild;return t.setAttribute("slot","svg"),u$3`<${this.iconTag} customColor customSvg part="targetIcon">${t}</${this.iconTag}>`}targetIcon(e){const t=e=>new URL(e).hostname.endsWith(".alaskaair.com");return "_blank"===e&&t(this.safeUri)?this.generateIconHtml(T):"_blank"===e&&!t(this.safeUri)&&this.includesDomain?this.generateIconHtml(N):void 0}getTabState(e){return true===e?"is-active":""}getRelType(e,t){return t||("_blank"===e&&this.safeUri.includes("alaskaair.com")?t:"_blank"!==e||!this.includesDomain||this.rel||this.referrerpolicy?"_blank"===e&&this.referrerpolicy?"external":void 0:"noOpener noReferrer")}ariaPressedState(e){const t=function(e){const t=this.shadowRoot.querySelector("[aria-pressed]");t.setAttribute("aria-pressed","false"),"mousedown"===e.type?t.ariaPressed=true:t.ariaPressed=false,"keydown"===e.type&&("Enter"===e.code?(t.ariaPressed=true,this.hyperlinkRef?.value&&"button"===this.hyperlinkRef.value.role&&this.click()):t.ariaPressed=false);};return this.addEventListener("mousedown",t),this.addEventListener("mouseup",t),this.addEventListener("keydown",t),this.addEventListener("keyup",t),e}render(){return this.getMarkup()}}class F{generateElementName(e,t){let o=e;return o+="-",o+=t.replace(/[.]/g,"_"),o}generateTag(e,t,o){const r=this.generateElementName(e,t),s=i$4`${s$3(r)}`;return customElements.get(r)||customElements.define(r,class extends o{}),s}}class ${registerComponent(e,t){customElements.get(e)||customElements.define(e,class extends t{});}closestElement(e,t=this,o=(t,r=t&&t.closest(e))=>t&&t!==document&&t!==window?r||o(t.getRootNode().host):null){return o(t)}handleComponentTagRename(e,t){const o=t.toLowerCase();e.tagName.toLowerCase()!==o&&e.setAttribute(o,true);}elementMatch(e,t){const o=t.toLowerCase();return e.tagName.toLowerCase()===o||e.hasAttribute(o)}}class E{registerComponent(e,t){customElements.get(e)||customElements.define(e,class extends t{});}closestElement(e,t=this,o=(t,r=t&&t.closest(e))=>t&&t!==document&&t!==window?r||o(t.getRootNode().host):null){return o(t)}handleComponentTagRename(e,t){const o=t.toLowerCase();e.tagName.toLowerCase()!==o&&e.setAttribute(o,true);}elementMatch(e,t){const o=t.toLowerCase();return e.tagName.toLowerCase()===o||e.hasAttribute(o)}}var O=i$3`:host{color:var(--ds-auro-loader-color)}:host>span{background-color:var(--ds-auro-loader-background-color);border-color:var(--ds-auro-loader-border-color)}:host([onlight]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]){--ds-auro-loader-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([orbit])>span{--ds-auro-loader-background-color: transparent}:host([orbit])>span:nth-child(1){--ds-auro-loader-border-color: currentcolor;opacity:.25}:host([orbit])>span:nth-child(2){--ds-auro-loader-border-color: currentcolor;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
|
|
204
|
+
`,D=i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:focus:not(:focus-visible){outline:3px solid transparent}:host,:host>span{position:relative}:host{width:2rem;height:2rem;display:inline-block;font-size:0}:host>span{position:absolute;display:inline-block;float:none;top:0;left:0;width:2rem;height:2rem;border-radius:100%;border-style:solid;border-width:0}:host([xs]),:host([xs])>span{width:1.2rem;height:1.2rem}:host([sm]),:host([sm])>span{width:3rem;height:3rem}:host([md]),:host([md])>span{width:5rem;height:5rem}:host([lg]),:host([lg])>span{width:8rem;height:8rem}:host{--margin: .375rem;--margin-xs: .2rem;--margin-sm: .5rem;--margin-md: .75rem;--margin-lg: 1rem}:host([pulse]),:host([pulse])>span{position:relative}:host([pulse]){width:calc(3rem + var(--margin) * 6);height:1.5rem}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(2.55rem + var(--margin-xs) * 6);height:1.55rem}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:2.5rem}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:3.5rem}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:5.5rem}:host([pulse][lg])>span{margin:var(--margin-lg);width:5rem;height:5rem}:host([pulse])>span:nth-child(1){animation-delay:-.4s}:host([pulse])>span:nth-child(2){animation-delay:-.2s}:host([pulse])>span:nth-child(3){animation-delay:0ms}@keyframes pulse{0%,to{opacity:.1;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}:host([orbit]),:host([orbit])>span{opacity:1}:host([orbit])>span{border-width:5px}:host([orbit])>span:nth-child(2){animation:orbit 2s linear infinite}:host([orbit][sm])>span{border-width:8px}:host([orbit][md])>span{border-width:13px}:host([orbit][lg])>span{border-width:21px}@keyframes orbit{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host([ringworm])>svg{animation:rotate 2s linear infinite;height:100%;width:100%;stroke:currentcolor;stroke-width:8}:host([ringworm]) .path{stroke-dashoffset:0;animation:ringworm 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes ringworm{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}:host([laser]){position:static;width:100%;display:block;height:0;overflow:hidden;font-size:unset}:host([laser])>span{position:fixed;width:100%;height:.25rem;border-radius:0;z-index:100}:host([laser])>span:nth-child(1){border-color:currentcolor;opacity:.25}:host([laser])>span:nth-child(2){border-color:currentcolor;animation:laser 2s linear infinite;opacity:1;width:50%}:host([laser][sm])>span:nth-child(2){width:20%}:host([laser][md])>span:nth-child(2){width:30%}:host([laser][lg])>span:nth-child(2){width:50%;animation-duration:1.5s}:host([laser][xl])>span:nth-child(2){width:80%;animation-duration:1.5s}@keyframes laser{0%{left:-100%}to{left:110%}}:host>.no-animation{display:none}@media (prefers-reduced-motion: reduce){:host{display:flex;align-items:center;justify-content:center}:host>span{opacity:1}:host>.loader{display:none}:host>svg{display:none}:host>.no-animation{display:block}}
|
|
205
|
+
`,W=i$3`:host{--ds-auro-loader-background-color: currentcolor;--ds-auro-loader-border-color: currentcolor;--ds-auro-loader-color: currentcolor}
|
|
206
|
+
`;class j extends i$1{constructor(){super(),this.keys=[0,1,2,3,4,5,6,7,8,9],this.mdCount=3,this.smCount=2,this.runtimeUtils=new E,this.orbit=false,this.ringworm=false,this.laser=false,this.pulse=false;}static get properties(){return {laser:{type:Boolean,reflect:true},orbit:{type:Boolean,reflect:true},pulse:{type:Boolean,reflect:true},ringworm:{type:Boolean,reflect:true}}}static get styles(){return [D,O,W]}static register(e="auro-loader"){E.prototype.registerComponent(e,j);}firstUpdated(){this.runtimeUtils.handleComponentTagRename(this,"auro-loader");}connectedCallback(){super.connectedCallback();}defineTemplate(){let e=Array.from(Array(this.mdCount).keys());return this.orbit||this.laser?e=Array.from(Array(this.smCount).keys()):this.ringworm&&(e=Array.from(Array(0).keys())),e}render(){return x$2`
|
|
207
|
+
${this.defineTemplate().map(e=>x$2`
|
|
208
|
+
<span part="element" class="loader node-${e}"></span>
|
|
209
|
+
`)}
|
|
210
|
+
|
|
211
|
+
<div class="no-animation body-default">Loading...</div>
|
|
212
|
+
|
|
213
|
+
${this.ringworm?x$2`
|
|
214
|
+
<svg part="element" class="circular" viewBox="25 25 50 50">
|
|
215
|
+
<circle class="path" cx="50" cy="50" r="20" fill="none"/>
|
|
216
|
+
</svg>`:""}
|
|
217
|
+
`}}const G=new WeakMap,P=new WeakMap,X=(e,t,o)=>{const r=P.get(e);if(!r)return;const s=r.targets.get(t);s&&(s.delete(o),0===s.size&&r.targets.delete(t));let a=false;for(const e of r.targets.values())if(e.has(o)){a=true;break}a||r.matchers.delete(o),0!==r.targets.size&&0!==r.matchers.size||K(e);},V=({host:e,target:t,matcher:o,removeOriginal:r=true})=>{const s=e.getAttributeNames().filter(e=>o(e)).reduce((t,o)=>(t[o]=e.getAttribute(o),t),{});Object.entries(s).forEach(([s,a])=>{Y(e,t,o,s,a),t.setAttribute(s,a),r&&e.removeAttribute(s);});},J=e=>{if(G.has(e))return G.get(e);const t=new MutationObserver(t=>{const o=P.get(e);o&&t.filter(e=>"attributes"===e.type).forEach(t=>{const r=t.attributeName;for(const t of o.matchers)if(t(r))for(const[r,s]of o.targets.entries())if(s.has(t)){const{removeOriginal:o}=s.get(t);V({host:e,target:r,matcher:t,removeOriginal:o});}});});return t.observe(e,{attributes:true}),G.set(e,t),t},K=e=>{G.has(e)&&(G.get(e).disconnect(),G.delete(e)),P.has(e)&&P.delete(e);},Q=(e,t,o)=>{const r=P.get(e);if(!r)return;const s=r.targets.get(t);return s?s.get(o):void 0},Y=(e,t,o,r,s)=>{const a=Q(e,t,o);a&&a.currentAttributes.set(r,s);},Z=(e,t,o,r)=>{const s=Q(e,t,o);if(s)return s.currentAttributes.get(r)},ee=(e,t,o)=>{const r=Q(e,t,o);return r?Array.from(r.currentAttributes.entries()):[]},te={"aria-":e=>e.startsWith("aria-"),role:e=>e.match(/^role$/)},oe=({host:e,target:t,removeOriginal:o=true})=>(({host:e,target:t,match:o,removeOriginal:r=true})=>{if("object"!=typeof e||!(e instanceof HTMLElement))throw new TypeError('a11yUtilities.js | transportAttributes | The "host" parameter must be an instance of HTMLElement.');if("object"!=typeof t||!(t instanceof HTMLElement))throw new TypeError('a11yUtilities.js | transportAttributes | The "target" parameter must be an instance of HTMLElement.');if("function"!=typeof o)throw new TypeError('a11yUtilities.js | transportAttributes | The "match" parameter must be a function.');if("boolean"!=typeof r)throw new TypeError('a11yUtilities.js | transportAttributes | The "removeOriginal" parameter must be a boolean.');return (({host:e,target:t,matcher:o,removeOriginal:r=true})=>{P.has(e)||P.set(e,{matchers:new Set,targets:new Map});const s=P.get(e);return s.matchers.add(o),s.targets.has(t)||s.targets.set(t,new Map),s.targets.get(t).set(o,{removeOriginal:r,currentAttributes:new Map}),V({host:e,target:t,matcher:o,removeOriginal:r}),J(e),{cleanup:()=>X(e,t,o),getObservedAttributes:()=>ee(e,t,o),getObservedAttribute:r=>Z(e,t,o,r)}})({host:e,target:t,matcher:o,removeOriginal:r})})({host:e,target:t,match:e=>{for(const t in te)if(te[t](e))return true;return false},removeOriginal:o});class re extends i$1{attributeWatcher;static get properties(){return {layout:{type:String,attribute:"layout",reflect:true},shape:{type:String,attribute:"shape",reflect:true},size:{type:String,attribute:"size",reflect:true},onDark:{type:Boolean,attribute:"ondark",reflect:true},wrapper:{attribute:false,reflect:false}}}resetShapeClasses(){this.shape&&this.size&&this.wrapper&&(this.wrapper.classList.forEach(e=>{e.startsWith("shape-")&&this.wrapper.classList.remove(e);}),this.wrapper.classList.add(`shape-${this.shape.toLowerCase()}-${this.size.toLowerCase()}`));}resetLayoutClasses(){this.layout&&this.wrapper&&(this.wrapper.classList.forEach(e=>{e.startsWith("layout-")&&this.wrapper.classList.remove(e);}),this.wrapper.classList.add(`layout-${this.layout.toLowerCase()}`));}updateComponentArchitecture(){this.resetLayoutClasses(),this.resetShapeClasses();}updated(e){(e.has("layout")||e.has("shape")||e.has("size"))&&this.updateComponentArchitecture();}firstUpdated(){super.firstUpdated(),this.wrapper=this.shadowRoot.querySelector(".wrapper"),this.attributeWatcher=oe({host:this,target:this.shadowRoot.querySelector(".wrapper")});}disconnectedCallback(){super.disconnectedCallback(),this.attributeWatcher&&(this.attributeWatcher.cleanup(),this.attributeWatcher=null);}render(){try{return this.renderLayout()}catch(e){return console.error("Failed to get the defined layout - using the default layout",e),this.getLayout("default")}}}var se=i$3`[auro-loader]{color:var(--ds-auro-button-loader-color, #ffffff)}.auro-button{-webkit-tap-highlight-color:var(--ds-auro-button-tap-color);color:var(--ds-auro-button-text-color);background-color:var(--ds-auro-button-container-color);background-image:linear-gradient(var(--ds-auro-button-container-image),var(--ds-auro-button-container-image));border-color:var(--ds-auro-button-border-color)}:host(:focus-within) .auro-button{outline-color:var(--ds-auro-button-border-inset-color)}:host(:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-container-color: var(--ds-advanced-color-button-primary-background-hover, #00274a);--ds-auro-button-container-image: var(--ds-advanced-color-button-primary-background-hover, #00274a);--ds-auro-button-border-color: var(--ds-advanced-color-button-primary-border-hover, #00274a)}:host([disabled]){--ds-auro-button-container-color: var(--ds-advanced-color-button-primary-background-disabled, #acc9e2);--ds-auro-button-container-image: var(--ds-advanced-color-button-primary-background-disabled, #acc9e2);--ds-auro-button-border-color: var(--ds-advanced-color-button-primary-border-disabled, #acc9e2)}:host([variant=secondary]){--ds-auro-button-container-color: var(--ds-advanced-color-button-secondary-background, #ffffff);--ds-auro-button-container-image: var(--ds-advanced-color-button-secondary-background, #ffffff);--ds-auro-button-border-color: var(--ds-advanced-color-button-secondary-border, #01426a);--ds-auro-button-text-color: var(--ds-advanced-color-button-secondary-text, #01426a);--ds-auro-button-loader-color: var(--ds-advanced-color-button-secondary-text, #01426a)}:host([variant=secondary]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-container-color: var(--ds-advanced-color-button-secondary-background-hover, #f2f2f2);--ds-auro-button-container-image: var(--ds-advanced-color-button-secondary-background-hover, #f2f2f2);--ds-auro-button-border-color: var(--ds-advanced-color-button-secondary-border-hover, #00274a);--ds-auro-button-text-color: var(--ds-advanced-color-button-secondary-text-hover, #00274a)}:host([variant=secondary]:focus-within){--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused, #01426a)}:host([variant=secondary][disabled]){--ds-auro-button-container-color: var(--ds-advanced-color-button-secondary-background-disabled, #f7f7f7);--ds-auro-button-container-image: var(--ds-advanced-color-button-secondary-background-disabled, #f7f7f7);--ds-auro-button-border-color: var(--ds-advanced-color-button-secondary-border-disabled, #cfe0ef);--ds-auro-button-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host([variant=tertiary]){--ds-auro-button-container-color: var(--ds-advanced-color-button-tertiary-background, rgba(0, 0, 0, .05));--ds-auro-button-container-image: var(--ds-advanced-color-button-tertiary-background, rgba(0, 0, 0, .05));--ds-auro-button-border-color: transparent;--ds-auro-button-text-color: var(--ds-advanced-color-button-tertiary-text, #01426a);--ds-auro-button-loader-color: var(--ds-advanced-color-button-tertiary-text, #01426a)}:host([variant=tertiary]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-container-color: var(--ds-advanced-color-button-tertiary-background-hover, rgba(0, 0, 0, .1));--ds-auro-button-container-image: var(--ds-advanced-color-button-tertiary-background-hover, rgba(0, 0, 0, .1));--ds-auro-button-border-color: transparent}:host([variant=tertiary]:focus-within){--ds-auro-button-border-color: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused, #01426a)}:host([variant=tertiary][disabled]){--ds-auro-button-container-color: var(--ds-advanced-color-button-tertiary-background, rgba(0, 0, 0, .05));--ds-auro-button-container-image: var(--ds-advanced-color-button-tertiary-background, rgba(0, 0, 0, .05));--ds-auro-button-border-color: transparent;--ds-auro-button-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host([variant=ghost]){--ds-auro-button-container-color: transparent;--ds-auro-button-container-image: transparent;--ds-auro-button-border-color: transparent;--ds-auro-button-text-color: var(--ds-advanced-color-button-ghost-text, #01426a);--ds-auro-button-loader-color: var(--ds-advanced-color-button-ghost-text, #01426a)}:host([variant=ghost]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-container-color: var(--ds-advanced-color-button-ghost-background-hover, rgba(0, 0, 0, .05));--ds-auro-button-container-image: var(--ds-advanced-color-button-ghost-background-hover, rgba(0, 0, 0, .05));--ds-auro-button-border-color: transparent}:host([variant=ghost]:focus-within){--ds-auro-button-border-color: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused, #01426a)}:host([variant=ghost][disabled]){--ds-auro-button-border-color: transparent;--ds-auro-button-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host([variant=flat]) .auro-button{color:var(--ds-advanced-color-button-flat-text, #676767);background-color:transparent;background-image:none;border-color:transparent}:host([variant=flat]) .auro-button:active:not(:disabled),:host([variant=flat]) .auro-button:hover:not(:disabled){color:var(--ds-advanced-color-button-flat-text-hover, #525252);background-color:transparent;background-image:none;border-color:transparent}:host([variant=flat]) .auro-button:disabled{color:var(--ds-advanced-color-button-flat-text-disabled, #d0d0d0);background-color:transparent;background-image:none;border-color:transparent}:host([variant=flat]:focus-within){--ds-auro-button-border-color: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused, #01426a)}:host([onDark]){--ds-auro-button-border-color: var(--ds-advanced-color-button-primary-border-inverse, #ffffff);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-button-container-color: var(--ds-advanced-color-button-primary-background-inverse, #ffffff);--ds-auro-button-container-image: var(--ds-advanced-color-button-primary-background-inverse, #ffffff);--ds-auro-button-loader-color: var(--ds-advanced-color-button-primary-text-inverse, #01426a);--ds-auro-button-text-color: var(--ds-advanced-color-button-primary-text-inverse, #01426a)}:host([ondark]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-border-color: var(--ds-advanced-color-button-primary-border-inverse-hover, #ebf3f9);--ds-auro-button-container-color: var(--ds-advanced-color-button-primary-background-inverse-hover, #ebf3f9);--ds-auro-button-container-image: var(--ds-advanced-color-button-primary-background-inverse-hover, #ebf3f9)}:host([ondark]:focus-within){--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused, #01426a)}:host([ondark][disabled]){--ds-auro-button-border-color: var(--ds-advanced-color-button-primary-border-inverse-disabled, rgba(255, 255, 255, .75));--ds-auro-button-container-color: var(--ds-advanced-color-button-primary-background-inverse-disabled, rgba(255, 255, 255, .75));--ds-auro-button-container-image: var(--ds-advanced-color-button-primary-background-inverse-disabled, rgba(255, 255, 255, .75));--ds-auro-button-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([ondark][variant=secondary]){--ds-auro-button-container-color: transparent;--ds-auro-button-container-image: transparent;--ds-auro-button-border-color: var(--ds-advanced-color-button-secondary-border-inverse, #ffffff);--ds-auro-button-text-color: var(--ds-advanced-color-button-secondary-text-inverse, #ffffff);--ds-auro-button-loader-color: var(--ds-advanced-color-button-secondary-text-inverse, #ffffff)}:host([ondark][variant=secondary]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-text-color: var(--ds-advanced-color-button-secondary-text-inverse, #ffffff);--ds-auro-button-container-color: var(--ds-advanced-color-button-secondary-background-inverse-hover, rgba(255, 255, 255, .1));--ds-auro-button-container-image: var(--ds-advanced-color-button-secondary-background-inverse-hover, rgba(255, 255, 255, .1))}:host([ondark][variant=secondary]:focus-within){--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused-inverse, #ffffff)}:host([ondark][variant=secondary][disabled]){--ds-auro-button-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894);--ds-auro-button-border-color: var(--ds-advanced-color-button-secondary-border-inverse-disabled, #dddddd)}:host([ondark][variant=tertiary]){--ds-auro-button-container-color: var(--ds-advanced-color-button-tertiary-background-inverse, rgba(255, 255, 255, .05));--ds-auro-button-container-image: var(--ds-advanced-color-button-tertiary-background-inverse, rgba(255, 255, 255, .05));--ds-auro-button-border-color: transparent;--ds-auro-button-text-color: var(--ds-advanced-color-button-tertiary-text-inverse, #ffffff);--ds-auro-button-loader-color: var(--ds-advanced-color-button-tertiary-text-inverse, #ffffff)}:host([ondark][variant=tertiary]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-container-color: var(--ds-advanced-color-button-tertiary-background-inverse-hover, rgba(255, 255, 255, .1));--ds-auro-button-container-image: var(--ds-advanced-color-button-tertiary-background-inverse-hover, rgba(255, 255, 255, .1))}:host([ondark][variant=tertiary]:focus-within){--ds-auro-button-border-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused-inverse, #ffffff)}:host([ondark][variant=tertiary][disabled]){--ds-auro-button-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([ondark][variant=ghost]){--ds-auro-button-container-color: transparent;--ds-auro-button-container-image: transparent;--ds-auro-button-border-color: transparent;--ds-auro-button-text-color: var(--ds-advanced-color-button-ghost-text-inverse, #ffffff);--ds-auro-button-loader-color: var(--ds-advanced-color-button-ghost-text-inverse, #ffffff)}:host([ondark][variant=ghost]:not([disabled]):is([data-hover],[data-active])){--ds-auro-button-container-color: var(--ds-advanced-color-button-ghost-background-inverse-hover, rgba(255, 255, 255, .05));--ds-auro-button-container-image: var(--ds-advanced-color-button-ghost-background-inverse-hover, rgba(255, 255, 255, .05));--ds-auro-button-border-color: transparent}:host([ondark][variant=ghost]:focus-within){border-color:transparent;--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused-inverse, #ffffff)}:host([ondark][variant=ghost][disabled]){--ds-auro-button-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([ondark][variant=flat]) .auro-button{color:var(--ds-advanced-color-button-flat-text-inverse, #ffffff);background-color:transparent;background-image:none;border-color:transparent}:host([ondark][variant=flat]) .auro-button:active:not(:disabled),:host([ondark][variant=flat]) .auro-button:hover:not(:disabled){color:var(--ds-advanced-color-button-flat-text-inverse-hover, #adadad);background-color:transparent;background-image:none;border-color:transparent}:host([ondark][variant=flat]) .auro-button:disabled{color:var(--ds-advanced-color-button-flat-text-inverse-disabled, #7e8894);background-color:transparent;background-image:none;border-color:transparent}:host([ondark][variant=flat]:focus-within){--ds-auro-button-border-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused-inverse, #ffffff)}
|
|
218
|
+
`,ae=i$3`.shape-rounded-xl{min-height:68px;max-height:68px;border-style:solid;overflow:hidden;border-radius:6px}.shape-rounded-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-rounded-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-rounded-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-xl{min-height:68px;max-height:68px;border-style:solid;overflow:hidden;border-radius:36px}.shape-pill-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-left-xl{min-height:68px;max-height:68px;border-style:solid;overflow:hidden;border-radius:36px 0 0 36px}.shape-pill-left-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-left-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-left-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-right-xl{min-height:68px;max-height:68px;border-style:solid;overflow:hidden;border-radius:0 36px 36px 0}.shape-pill-right-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-right-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-right-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-circle-xl{min-height:68px;max-height:68px;border-style:solid;overflow:hidden;border-radius:50%;min-width:72px;max-width:72px;padding:0}.shape-circle-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-circle-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-circle-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-square-xl{min-height:68px;max-height:68px;border-style:solid;overflow:hidden;border-radius:6px;min-width:72px;max-width:72px;padding:0}.shape-square-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-square-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-square-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-rounded-lg{min-height:52px;max-height:52px;border-style:solid;overflow:hidden;border-radius:6px}.shape-rounded-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-rounded-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-rounded-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-pill-lg{min-height:52px;max-height:52px;border-style:solid;overflow:hidden;border-radius:28px}.shape-pill-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-pill-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-pill-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-pill-left-lg{min-height:52px;max-height:52px;border-style:solid;overflow:hidden;border-radius:28px 0 0 28px}.shape-pill-left-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-pill-left-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-pill-left-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-pill-right-lg{min-height:52px;max-height:52px;border-style:solid;overflow:hidden;border-radius:0 28px 28px 0}.shape-pill-right-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-pill-right-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-pill-right-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-circle-lg{min-height:52px;max-height:52px;border-style:solid;overflow:hidden;border-radius:50%;min-width:56px;max-width:56px;padding:0}.shape-circle-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-circle-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-circle-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-square-lg{min-height:52px;max-height:52px;border-style:solid;overflow:hidden;border-radius:6px;min-width:56px;max-width:56px;padding:0}.shape-square-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-square-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-square-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-rounded-md{min-height:44px;max-height:44px;border-style:solid;overflow:hidden;border-radius:6px}.shape-rounded-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-rounded-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-rounded-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-md{min-height:44px;max-height:44px;border-style:solid;overflow:hidden;border-radius:24px}.shape-pill-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-left-md{min-height:44px;max-height:44px;border-style:solid;overflow:hidden;border-radius:24px 0 0 24px}.shape-pill-left-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-left-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-left-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-right-md{min-height:44px;max-height:44px;border-style:solid;overflow:hidden;border-radius:0 24px 24px 0}.shape-pill-right-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-right-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-right-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-circle-md{min-height:44px;max-height:44px;border-style:solid;overflow:hidden;border-radius:50%;min-width:48px;max-width:48px;padding:0}.shape-circle-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-circle-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-circle-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-square-md{min-height:44px;max-height:44px;border-style:solid;overflow:hidden;border-radius:6px;min-width:48px;max-width:48px;padding:0}.shape-square-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-square-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-square-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-rounded-sm{min-height:32px;max-height:32px;border-style:solid;overflow:hidden;border-radius:6px}.shape-rounded-sm.simple{border-width:0px;min-height:36px;max-height:36px;background-color:unset;box-shadow:none}.shape-rounded-sm.thin{border-width:1px;min-height:34px;max-height:34px;background-color:unset}.shape-rounded-sm.parentBorder{border:0;box-shadow:unset;min-height:32px;max-height:32px}.shape-pill-sm{min-height:32px;max-height:32px;border-style:solid;overflow:hidden;border-radius:18px}.shape-pill-sm.simple{border-width:0px;min-height:36px;max-height:36px;background-color:unset;box-shadow:none}.shape-pill-sm.thin{border-width:1px;min-height:34px;max-height:34px;background-color:unset}.shape-pill-sm.parentBorder{border:0;box-shadow:unset;min-height:32px;max-height:32px}.shape-pill-left-sm{min-height:32px;max-height:32px;border-style:solid;overflow:hidden;border-radius:18px 0 0 18px}.shape-pill-left-sm.simple{border-width:0px;min-height:36px;max-height:36px;background-color:unset;box-shadow:none}.shape-pill-left-sm.thin{border-width:1px;min-height:34px;max-height:34px;background-color:unset}.shape-pill-left-sm.parentBorder{border:0;box-shadow:unset;min-height:32px;max-height:32px}.shape-pill-right-sm{min-height:32px;max-height:32px;border-style:solid;overflow:hidden;border-radius:0 18px 18px 0}.shape-pill-right-sm.simple{border-width:0px;min-height:36px;max-height:36px;background-color:unset;box-shadow:none}.shape-pill-right-sm.thin{border-width:1px;min-height:34px;max-height:34px;background-color:unset}.shape-pill-right-sm.parentBorder{border:0;box-shadow:unset;min-height:32px;max-height:32px}.shape-circle-sm{min-height:32px;max-height:32px;border-style:solid;overflow:hidden;border-radius:50%;min-width:36px;max-width:36px;padding:0}.shape-circle-sm.simple{border-width:0px;min-height:36px;max-height:36px;background-color:unset;box-shadow:none}.shape-circle-sm.thin{border-width:1px;min-height:34px;max-height:34px;background-color:unset}.shape-circle-sm.parentBorder{border:0;box-shadow:unset;min-height:32px;max-height:32px}.shape-square-sm{min-height:32px;max-height:32px;border-style:solid;overflow:hidden;border-radius:6px;min-width:36px;max-width:36px;padding:0}.shape-square-sm.simple{border-width:0px;min-height:36px;max-height:36px;background-color:unset;box-shadow:none}.shape-square-sm.thin{border-width:1px;min-height:34px;max-height:34px;background-color:unset}.shape-square-sm.parentBorder{border:0;box-shadow:unset;min-height:32px;max-height:32px}.shape-rounded-xs{min-height:20px;max-height:20px;border-style:solid;overflow:hidden;border-radius:4px}.shape-rounded-xs.simple{border-width:0px;min-height:24px;max-height:24px;background-color:unset;box-shadow:none}.shape-rounded-xs.thin{border-width:1px;min-height:22px;max-height:22px;background-color:unset}.shape-rounded-xs.parentBorder{border:0;box-shadow:unset;min-height:20px;max-height:20px}.shape-pill-xs{min-height:20px;max-height:20px;border-style:solid;overflow:hidden;border-radius:12px}.shape-pill-xs.simple{border-width:0px;min-height:24px;max-height:24px;background-color:unset;box-shadow:none}.shape-pill-xs.thin{border-width:1px;min-height:22px;max-height:22px;background-color:unset}.shape-pill-xs.parentBorder{border:0;box-shadow:unset;min-height:20px;max-height:20px}.shape-pill-left-xs{min-height:20px;max-height:20px;border-style:solid;overflow:hidden;border-radius:12px 0 0 12px}.shape-pill-left-xs.simple{border-width:0px;min-height:24px;max-height:24px;background-color:unset;box-shadow:none}.shape-pill-left-xs.thin{border-width:1px;min-height:22px;max-height:22px;background-color:unset}.shape-pill-left-xs.parentBorder{border:0;box-shadow:unset;min-height:20px;max-height:20px}.shape-pill-right-xs{min-height:20px;max-height:20px;border-style:solid;overflow:hidden;border-radius:0 12px 12px 0}.shape-pill-right-xs.simple{border-width:0px;min-height:24px;max-height:24px;background-color:unset;box-shadow:none}.shape-pill-right-xs.thin{border-width:1px;min-height:22px;max-height:22px;background-color:unset}.shape-pill-right-xs.parentBorder{border:0;box-shadow:unset;min-height:20px;max-height:20px}.shape-circle-xs{min-height:20px;max-height:20px;border-style:solid;overflow:hidden;border-radius:50%;min-width:24px;max-width:24px;padding:0}.shape-circle-xs.simple{border-width:0px;min-height:24px;max-height:24px;background-color:unset;box-shadow:none}.shape-circle-xs.thin{border-width:1px;min-height:22px;max-height:22px;background-color:unset}.shape-circle-xs.parentBorder{border:0;box-shadow:unset;min-height:20px;max-height:20px}.shape-square-xs{min-height:20px;max-height:20px;border-style:solid;overflow:hidden;border-radius:6px;min-width:24px;max-width:24px;padding:0}.shape-square-xs.simple{border-width:0px;min-height:24px;max-height:24px;background-color:unset;box-shadow:none}.shape-square-xs.thin{border-width:1px;min-height:22px;max-height:22px;background-color:unset}.shape-square-xs.parentBorder{border:0;box-shadow:unset;min-height:20px;max-height:20px}
|
|
219
|
+
`,ie=i$3`:focus:not(:focus-visible){outline:3px solid transparent}.util_insetNone{padding:0}.util_insetXxxs{padding:.125rem}.util_insetXxxs--stretch{padding:.25rem .125rem}.util_insetXxxs--squish{padding:0 .125rem}.util_insetXxs{padding:.25rem}.util_insetXxs--stretch{padding:.375rem .25rem}.util_insetXxs--squish{padding:.125rem .25rem}.util_insetXs{padding:.5rem}.util_insetXs--stretch{padding:.75rem .5rem}.util_insetXs--squish{padding:.25rem .5rem}.util_insetSm{padding:.75rem}.util_insetSm--stretch{padding:1.125rem .75rem}.util_insetSm--squish{padding:.375rem .75rem}.util_insetMd{padding:1rem}.util_insetMd--stretch{padding:1.5rem 1rem}.util_insetMd--squish{padding:.5rem 1rem}.util_insetLg{padding:1.5rem}.util_insetLg--stretch{padding:2.25rem 1.5rem}.util_insetLg--squish{padding:.75rem 1.5rem}.util_insetXl{padding:2rem}.util_insetXl--stretch{padding:3rem 2rem}.util_insetXl--squish{padding:1rem 2rem}.util_insetXxl{padding:3rem}.util_insetXxl--stretch{padding:4.5rem 3rem}.util_insetXxl--squish{padding:1.5rem 3rem}.util_insetXxxl{padding:4rem}.util_insetXxxl--stretch{padding:6rem 4rem}.util_insetXxxl--squish{padding:2rem 4rem}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host([size=xs][shape=rounded]) ::slotted(auro-icon),:host([size=xs][shape=rounded]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-200, 1rem)}:host([size=xs][shape=rounded][variant=primary]) .auro-button:focus,:host([size=xs][shape=rounded][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=rounded][variant=primary]) .auro-button:focus:after,:host([size=xs][shape=rounded][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xs][shape=rounded][variant=secondary]) .auro-button:focus,:host([size=xs][shape=rounded][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=rounded][variant=tertiary]) .auro-button:focus,:host([size=xs][shape=rounded][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=rounded][variant=ghost]) .auro-button:focus,:host([size=xs][shape=rounded][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill]) ::slotted(auro-icon),:host([size=xs][shape=pill]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-200, 1rem)}:host([size=xs][shape=pill][variant=primary]) .auro-button:focus,:host([size=xs][shape=pill][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill][variant=primary]) .auro-button:focus:after,:host([size=xs][shape=pill][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xs][shape=pill][variant=secondary]) .auro-button:focus,:host([size=xs][shape=pill][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill][variant=tertiary]) .auro-button:focus,:host([size=xs][shape=pill][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill][variant=ghost]) .auro-button:focus,:host([size=xs][shape=pill][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-left]) ::slotted(auro-icon),:host([size=xs][shape=pill-left]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-200, 1rem)}:host([size=xs][shape=pill-left][variant=primary]) .auro-button:focus,:host([size=xs][shape=pill-left][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-left][variant=primary]) .auro-button:focus:after,:host([size=xs][shape=pill-left][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xs][shape=pill-left][variant=secondary]) .auro-button:focus,:host([size=xs][shape=pill-left][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-left][variant=tertiary]) .auro-button:focus,:host([size=xs][shape=pill-left][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-left][variant=ghost]) .auro-button:focus,:host([size=xs][shape=pill-left][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-right]) ::slotted(auro-icon),:host([size=xs][shape=pill-right]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-200, 1rem)}:host([size=xs][shape=pill-right][variant=primary]) .auro-button:focus,:host([size=xs][shape=pill-right][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-right][variant=primary]) .auro-button:focus:after,:host([size=xs][shape=pill-right][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xs][shape=pill-right][variant=secondary]) .auro-button:focus,:host([size=xs][shape=pill-right][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-right][variant=tertiary]) .auro-button:focus,:host([size=xs][shape=pill-right][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=pill-right][variant=ghost]) .auro-button:focus,:host([size=xs][shape=pill-right][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=circle]) ::slotted(auro-icon),:host([size=xs][shape=circle]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=xs][shape=circle][variant=primary]) .auro-button:focus,:host([size=xs][shape=circle][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=circle][variant=primary]) .auro-button:focus:after,:host([size=xs][shape=circle][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xs][shape=circle][variant=secondary]) .auro-button:focus,:host([size=xs][shape=circle][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 1px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=circle][variant=tertiary]) .auro-button:focus,:host([size=xs][shape=circle][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=circle][variant=flat]) .auro-button:focus,:host([size=xs][shape=circle][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=circle][variant=ghost]) .auro-button:focus,:host([size=xs][shape=circle][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=square]) ::slotted(auro-icon),:host([size=xs][shape=square]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=xs][shape=square][variant=primary]) .auro-button:focus,:host([size=xs][shape=square][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=square][variant=primary]) .auro-button:focus:after,:host([size=xs][shape=square][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xs][shape=square][variant=secondary]) .auro-button:focus,:host([size=xs][shape=square][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 1px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=square][variant=tertiary]) .auro-button:focus,:host([size=xs][shape=square][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=square][variant=flat]) .auro-button:focus,:host([size=xs][shape=square][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs][shape=square][variant=ghost]) .auro-button:focus,:host([size=xs][shape=square][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=rounded]) ::slotted(auro-icon),:host([size=sm][shape=rounded]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=sm][shape=rounded][variant=primary]) .auro-button:focus,:host([size=sm][shape=rounded][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=rounded][variant=primary]) .auro-button:focus:after,:host([size=sm][shape=rounded][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=sm][shape=rounded][variant=secondary]) .auro-button:focus,:host([size=sm][shape=rounded][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=rounded][variant=tertiary]) .auro-button:focus,:host([size=sm][shape=rounded][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=rounded][variant=ghost]) .auro-button:focus,:host([size=sm][shape=rounded][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill]) ::slotted(auro-icon),:host([size=sm][shape=pill]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=sm][shape=pill][variant=primary]) .auro-button:focus,:host([size=sm][shape=pill][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill][variant=primary]) .auro-button:focus:after,:host([size=sm][shape=pill][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=sm][shape=pill][variant=secondary]) .auro-button:focus,:host([size=sm][shape=pill][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill][variant=tertiary]) .auro-button:focus,:host([size=sm][shape=pill][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill][variant=ghost]) .auro-button:focus,:host([size=sm][shape=pill][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-left]) ::slotted(auro-icon),:host([size=sm][shape=pill-left]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=sm][shape=pill-left][variant=primary]) .auro-button:focus,:host([size=sm][shape=pill-left][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-left][variant=primary]) .auro-button:focus:after,:host([size=sm][shape=pill-left][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=sm][shape=pill-left][variant=secondary]) .auro-button:focus,:host([size=sm][shape=pill-left][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-left][variant=tertiary]) .auro-button:focus,:host([size=sm][shape=pill-left][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-left][variant=ghost]) .auro-button:focus,:host([size=sm][shape=pill-left][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-right]) ::slotted(auro-icon),:host([size=sm][shape=pill-right]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=sm][shape=pill-right][variant=primary]) .auro-button:focus,:host([size=sm][shape=pill-right][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-right][variant=primary]) .auro-button:focus:after,:host([size=sm][shape=pill-right][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=sm][shape=pill-right][variant=secondary]) .auro-button:focus,:host([size=sm][shape=pill-right][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-right][variant=tertiary]) .auro-button:focus,:host([size=sm][shape=pill-right][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=pill-right][variant=ghost]) .auro-button:focus,:host([size=sm][shape=pill-right][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=circle]) ::slotted(auro-icon),:host([size=sm][shape=circle]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=sm][shape=circle][variant=primary]) .auro-button:focus,:host([size=sm][shape=circle][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=circle][variant=primary]) .auro-button:focus:after,:host([size=sm][shape=circle][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=sm][shape=circle][variant=secondary]) .auro-button:focus,:host([size=sm][shape=circle][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=circle][variant=tertiary]) .auro-button:focus,:host([size=sm][shape=circle][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=circle][variant=flat]) .auro-button:focus,:host([size=sm][shape=circle][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=circle][variant=ghost]) .auro-button:focus,:host([size=sm][shape=circle][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=square]) ::slotted(auro-icon),:host([size=sm][shape=square]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=sm][shape=square][variant=primary]) .auro-button:focus,:host([size=sm][shape=square][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=square][variant=primary]) .auro-button:focus:after,:host([size=sm][shape=square][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=sm][shape=square][variant=secondary]) .auro-button:focus,:host([size=sm][shape=square][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=square][variant=tertiary]) .auro-button:focus,:host([size=sm][shape=square][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=square][variant=flat]) .auro-button:focus,:host([size=sm][shape=square][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=sm][shape=square][variant=ghost]) .auro-button:focus,:host([size=sm][shape=square][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=rounded]) ::slotted(auro-icon),:host([size=md][shape=rounded]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=md][shape=rounded][variant=primary]) .auro-button:focus,:host([size=md][shape=rounded][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=rounded][variant=primary]) .auro-button:focus:after,:host([size=md][shape=rounded][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=md][shape=rounded][variant=secondary]) .auro-button:focus,:host([size=md][shape=rounded][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=rounded][variant=tertiary]) .auro-button:focus,:host([size=md][shape=rounded][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=rounded][variant=ghost]) .auro-button:focus,:host([size=md][shape=rounded][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill]) ::slotted(auro-icon),:host([size=md][shape=pill]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=md][shape=pill][variant=primary]) .auro-button:focus,:host([size=md][shape=pill][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill][variant=primary]) .auro-button:focus:after,:host([size=md][shape=pill][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=md][shape=pill][variant=secondary]) .auro-button:focus,:host([size=md][shape=pill][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill][variant=tertiary]) .auro-button:focus,:host([size=md][shape=pill][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill][variant=ghost]) .auro-button:focus,:host([size=md][shape=pill][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-left]) ::slotted(auro-icon),:host([size=md][shape=pill-left]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=md][shape=pill-left][variant=primary]) .auro-button:focus,:host([size=md][shape=pill-left][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-left][variant=primary]) .auro-button:focus:after,:host([size=md][shape=pill-left][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=md][shape=pill-left][variant=secondary]) .auro-button:focus,:host([size=md][shape=pill-left][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-left][variant=tertiary]) .auro-button:focus,:host([size=md][shape=pill-left][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-left][variant=ghost]) .auro-button:focus,:host([size=md][shape=pill-left][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-right]) ::slotted(auro-icon),:host([size=md][shape=pill-right]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=md][shape=pill-right][variant=primary]) .auro-button:focus,:host([size=md][shape=pill-right][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-right][variant=primary]) .auro-button:focus:after,:host([size=md][shape=pill-right][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=md][shape=pill-right][variant=secondary]) .auro-button:focus,:host([size=md][shape=pill-right][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-right][variant=tertiary]) .auro-button:focus,:host([size=md][shape=pill-right][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=pill-right][variant=ghost]) .auro-button:focus,:host([size=md][shape=pill-right][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=circle]) ::slotted(auro-icon),:host([size=md][shape=circle]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=md][shape=circle][variant=primary]) .auro-button:focus,:host([size=md][shape=circle][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=circle][variant=primary]) .auro-button:focus:after,:host([size=md][shape=circle][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=md][shape=circle][variant=secondary]) .auro-button:focus,:host([size=md][shape=circle][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=circle][variant=tertiary]) .auro-button:focus,:host([size=md][shape=circle][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=circle][variant=flat]) .auro-button:focus,:host([size=md][shape=circle][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=circle][variant=ghost]) .auro-button:focus,:host([size=md][shape=circle][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=square]) ::slotted(auro-icon),:host([size=md][shape=square]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=md][shape=square][variant=primary]) .auro-button:focus,:host([size=md][shape=square][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=square][variant=primary]) .auro-button:focus:after,:host([size=md][shape=square][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=md][shape=square][variant=secondary]) .auro-button:focus,:host([size=md][shape=square][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=square][variant=tertiary]) .auro-button:focus,:host([size=md][shape=square][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=square][variant=flat]) .auro-button:focus,:host([size=md][shape=square][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=md][shape=square][variant=ghost]) .auro-button:focus,:host([size=md][shape=square][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=rounded]) ::slotted(auro-icon),:host([size=lg][shape=rounded]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=lg][shape=rounded][variant=primary]) .auro-button:focus,:host([size=lg][shape=rounded][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=rounded][variant=primary]) .auro-button:focus:after,:host([size=lg][shape=rounded][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=lg][shape=rounded][variant=secondary]) .auro-button:focus,:host([size=lg][shape=rounded][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=rounded][variant=tertiary]) .auro-button:focus,:host([size=lg][shape=rounded][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=rounded][variant=ghost]) .auro-button:focus,:host([size=lg][shape=rounded][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill]) ::slotted(auro-icon),:host([size=lg][shape=pill]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=lg][shape=pill][variant=primary]) .auro-button:focus,:host([size=lg][shape=pill][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill][variant=primary]) .auro-button:focus:after,:host([size=lg][shape=pill][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=lg][shape=pill][variant=secondary]) .auro-button:focus,:host([size=lg][shape=pill][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill][variant=tertiary]) .auro-button:focus,:host([size=lg][shape=pill][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill][variant=ghost]) .auro-button:focus,:host([size=lg][shape=pill][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-left]) ::slotted(auro-icon),:host([size=lg][shape=pill-left]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=lg][shape=pill-left][variant=primary]) .auro-button:focus,:host([size=lg][shape=pill-left][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-left][variant=primary]) .auro-button:focus:after,:host([size=lg][shape=pill-left][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=lg][shape=pill-left][variant=secondary]) .auro-button:focus,:host([size=lg][shape=pill-left][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-left][variant=tertiary]) .auro-button:focus,:host([size=lg][shape=pill-left][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-left][variant=ghost]) .auro-button:focus,:host([size=lg][shape=pill-left][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-right]) ::slotted(auro-icon),:host([size=lg][shape=pill-right]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=lg][shape=pill-right][variant=primary]) .auro-button:focus,:host([size=lg][shape=pill-right][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-right][variant=primary]) .auro-button:focus:after,:host([size=lg][shape=pill-right][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=lg][shape=pill-right][variant=secondary]) .auro-button:focus,:host([size=lg][shape=pill-right][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-right][variant=tertiary]) .auro-button:focus,:host([size=lg][shape=pill-right][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=pill-right][variant=ghost]) .auro-button:focus,:host([size=lg][shape=pill-right][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=circle]) ::slotted(auro-icon),:host([size=lg][shape=circle]) ::slotted([auro-icon]){--ds-auro-icon-size: calc(var(--ds-size-300, 1.5rem) + var(--ds-size-50, .25rem))}:host([size=lg][shape=circle][variant=primary]) .auro-button:focus,:host([size=lg][shape=circle][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4.33px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=circle][variant=primary]) .auro-button:focus:after,:host([size=lg][shape=circle][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=lg][shape=circle][variant=secondary]) .auro-button:focus,:host([size=lg][shape=circle][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=circle][variant=tertiary]) .auro-button:focus,:host([size=lg][shape=circle][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=circle][variant=flat]) .auro-button:focus,:host([size=lg][shape=circle][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=circle][variant=ghost]) .auro-button:focus,:host([size=lg][shape=circle][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=square]) ::slotted(auro-icon),:host([size=lg][shape=square]) ::slotted([auro-icon]){--ds-auro-icon-size: calc(var(--ds-size-300, 1.5rem) + var(--ds-size-50, .25rem))}:host([size=lg][shape=square][variant=primary]) .auro-button:focus,:host([size=lg][shape=square][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4.33px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=square][variant=primary]) .auro-button:focus:after,:host([size=lg][shape=square][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=lg][shape=square][variant=secondary]) .auro-button:focus,:host([size=lg][shape=square][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=square][variant=tertiary]) .auro-button:focus,:host([size=lg][shape=square][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=square][variant=flat]) .auro-button:focus,:host([size=lg][shape=square][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=lg][shape=square][variant=ghost]) .auro-button:focus,:host([size=lg][shape=square][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=rounded]) ::slotted(auro-icon),:host([size=xl][shape=rounded]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=xl][shape=rounded][variant=primary]) .auro-button:focus,:host([size=xl][shape=rounded][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=rounded][variant=primary]) .auro-button:focus:after,:host([size=xl][shape=rounded][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xl][shape=rounded][variant=secondary]) .auro-button:focus,:host([size=xl][shape=rounded][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=rounded][variant=tertiary]) .auro-button:focus,:host([size=xl][shape=rounded][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=rounded][variant=ghost]) .auro-button:focus,:host([size=xl][shape=rounded][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill]) ::slotted(auro-icon),:host([size=xl][shape=pill]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=xl][shape=pill][variant=primary]) .auro-button:focus,:host([size=xl][shape=pill][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill][variant=primary]) .auro-button:focus:after,:host([size=xl][shape=pill][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xl][shape=pill][variant=secondary]) .auro-button:focus,:host([size=xl][shape=pill][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill][variant=tertiary]) .auro-button:focus,:host([size=xl][shape=pill][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill][variant=ghost]) .auro-button:focus,:host([size=xl][shape=pill][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-left]) ::slotted(auro-icon),:host([size=xl][shape=pill-left]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=xl][shape=pill-left][variant=primary]) .auro-button:focus,:host([size=xl][shape=pill-left][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-left][variant=primary]) .auro-button:focus:after,:host([size=xl][shape=pill-left][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xl][shape=pill-left][variant=secondary]) .auro-button:focus,:host([size=xl][shape=pill-left][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-left][variant=tertiary]) .auro-button:focus,:host([size=xl][shape=pill-left][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-left][variant=ghost]) .auro-button:focus,:host([size=xl][shape=pill-left][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-right]) ::slotted(auro-icon),:host([size=xl][shape=pill-right]) ::slotted([auro-icon]){--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}:host([size=xl][shape=pill-right][variant=primary]) .auro-button:focus,:host([size=xl][shape=pill-right][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-right][variant=primary]) .auro-button:focus:after,:host([size=xl][shape=pill-right][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xl][shape=pill-right][variant=secondary]) .auro-button:focus,:host([size=xl][shape=pill-right][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-right][variant=tertiary]) .auro-button:focus,:host([size=xl][shape=pill-right][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=pill-right][variant=ghost]) .auro-button:focus,:host([size=xl][shape=pill-right][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=circle]) ::slotted(auro-icon),:host([size=xl][shape=circle]) ::slotted([auro-icon]){--ds-auro-icon-size: calc(var(--ds-size-400, 2rem) + var(--ds-size-50, .25rem))}:host([size=xl][shape=circle][variant=primary]) .auro-button:focus,:host([size=xl][shape=circle][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=circle][variant=primary]) .auro-button:focus:after,:host([size=xl][shape=circle][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xl][shape=circle][variant=secondary]) .auro-button:focus,:host([size=xl][shape=circle][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=circle][variant=tertiary]) .auro-button:focus,:host([size=xl][shape=circle][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=circle][variant=flat]) .auro-button:focus,:host([size=xl][shape=circle][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=circle][variant=ghost]) .auro-button:focus,:host([size=xl][shape=circle][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=square]) ::slotted(auro-icon),:host([size=xl][shape=square]) ::slotted([auro-icon]){--ds-auro-icon-size: calc(var(--ds-size-400, 2rem) + var(--ds-size-50, .25rem))}:host([size=xl][shape=square][variant=primary]) .auro-button:focus,:host([size=xl][shape=square][variant=primary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 5px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=square][variant=primary]) .auro-button:focus:after,:host([size=xl][shape=square][variant=primary]) .auro-button:focus-visible:after{content:"";position:absolute;border-radius:inherit;box-sizing:content-box;top:0;left:0;width:calc(100% - 2px);height:calc(100% - 2px);border:1px solid var(--ds-auro-button-border-color)}:host([size=xl][shape=square][variant=secondary]) .auro-button:focus,:host([size=xl][shape=square][variant=secondary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 3px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=square][variant=tertiary]) .auro-button:focus,:host([size=xl][shape=square][variant=tertiary]) .auro-button:focus-visible{box-shadow:inset 0 0 0 4px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=square][variant=flat]) .auro-button:focus,:host([size=xl][shape=square][variant=flat]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xl][shape=square][variant=ghost]) .auro-button:focus,:host([size=xl][shape=square][variant=ghost]) .auro-button:focus-visible{box-shadow:inset 0 0 0 2px var(--ds-auro-button-border-inset-color)}:host([size=xs]) .inset .contentWrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-inline:var(--ds-size-150, .75rem)}:host([size=sm]) .inset .contentWrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-inline:var(--ds-size-200, 1rem)}:host([size=md]) .inset .contentWrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-inline:var(--ds-size-300, 1.5rem)}:host([size=lg]) .inset .contentWrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-inline:var(--ds-size-400, 2rem)}:host([size=xl]) .inset .contentWrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-inline:var(--ds-size-500, 2.5rem)}:host([shape=circle]) ::slotted(:not(auro-icon):not([auro-icon])){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host([shape=square]) ::slotted(:not(auro-icon):not([auro-icon])){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host([variant=flat]){display:inline-block}::slotted(svg){vertical-align:middle}.textSlot{display:inline-flex;align-items:center;gap:var(--ds-size-100, .5rem)}.contentWrapper{font-size:0}slot{pointer-events:none}:host{display:inline-block;overflow:hidden}.auro-button{position:relative;cursor:pointer;padding:0 var(--ds-size-300, 1.5rem);padding-inline:unset;padding-block:unset;box-sizing:content-box;overflow:hidden;text-overflow:ellipsis;user-select:none;white-space:nowrap;outline:none;display:flex;flex-direction:row;align-items:center;justify-content:center;gap:var(--ds-size-100, .5rem);margin:0;-webkit-touch-callout:none;-webkit-user-select:none;transition:padding .3s ease-out}.auro-button:focus,.auro-button:focus-visible{outline:none}.auro-button:active{transform:scale(.95)}.auro-button.loading{cursor:not-allowed}.auro-button.loading *:not([auro-loader]){visibility:hidden}@media screen and (min-width: 576px){.auro-button{width:auto}}.auro-button:disabled{cursor:not-allowed;transform:unset}:host([fluid]){display:block}:host([fluid]) .auro-button:not(.thin):not(.simple){width:calc(100% - 4px)}:host([fluid]) .auro-button.thin{width:calc(100% - 2px)}:host([fluid]) .auro-button.simple{width:100%}:host([static]) .auro-button{pointer-events:none;cursor:default;display:inline-flex}:host([static]) .auro-button .contentWrapper{display:inline-flex}
|
|
220
|
+
`,ne=i$3`:host{--ds-auro-button-border-color: var(--ds-advanced-color-button-primary-border, #01426a);--ds-auro-button-border-inset-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-button-container-color: var(--ds-advanced-color-button-primary-background, #01426a);--ds-auro-button-container-image: var(--ds-advanced-color-button-primary-background, #01426a);--ds-auro-button-loader-color: var(--ds-advanced-color-button-primary-text, #ffffff);--ds-auro-button-text-color: var(--ds-advanced-color-button-primary-text, #ffffff)}
|
|
221
|
+
`;const le=["circle","square"];class de extends re{static get formAssociated(){return true}constructor(){super(),this.autofocus=false,this.disabled=false,this.loading=false,this.static=false,this.size="md",this.shape="rounded",this.onDark=false,this.fluid=false,this.loadingText=this.loadingText||"Loading...",this.variant="primary",this.runtimeUtils=new $,"function"==typeof this.attachInternals?this.internals=this.attachInternals():(this.internals=null,console.warn("This browser does not support form association features. Some form-related functionality may not work as expected. Consider using a polyfill or handling click events manually."));const e=new F;this.loaderTag=e.generateTag("auro-loader","6.0.0",j),this.buttonHref=void 0,this.buttonTarget=void 0,this.buttonRel=void 0;}static get styles(){return [ne,ie,se,ae]}static get properties(){return {...re.properties,layout:{type:Boolean,attribute:false,reflect:false},autofocus:{type:Boolean,reflect:true},disabled:{type:Boolean,reflect:true},fluid:{type:Boolean,reflect:true},loading:{type:Boolean,reflect:true},loadingText:{type:String},tIndex:{type:String,reflect:true},tabindex:{type:String,reflect:false},title:{type:String,reflect:true},type:{type:String,reflect:true},value:{type:String,reflect:true},variant:{type:String,reflect:true},buttonHref:{type:String},buttonTarget:{type:String},buttonRel:{type:String},static:{type:Boolean,reflect:true},onHover:{attribute:"data-hover",type:Boolean,reflect:true},onActive:{attribute:"data-active",type:Boolean,reflect:true}}}static register(e="auro-button"){$.prototype.registerComponent(e,de);}focus(){this.renderRoot.querySelector("button").focus();}surfaceSubmitEvent(){this.form&&this.form.requestSubmit();}get form(){return this.internals?this.internals.form:null}get showText(){return !le.includes(this.shape)}get currentAriaLabel(){if(this.attributeWatcher)return this.attributeWatcher.getObservedAttribute("aria-label")||void 0}get currentAriaLabelledBy(){if(this.attributeWatcher)return this.attributeWatcher.getObservedAttribute("aria-labelledby")||void 0}get iconOnly(){return le.includes(this.shape)}getFontSize(){return (this.iconOnly?{xs:"heading-xs",sm:"heading-sm",md:"heading-sm",lg:"heading-md",xl:"heading-lg"}:{xs:"body-xs",sm:"body-sm",md:"body-default",lg:"body-lg",xl:"body-lg"})[this.size]||"body-default"}get _renderTag(){return this.static?i$4`span`:this.buttonHref?i$4`a`:i$4`button`}firstUpdated(){super.firstUpdated(),this.runtimeUtils.handleComponentTagRename(this,"auro-button");}onPointerEvent(e){switch(e.type){case "pointerenter":this.onHover=true;break;case "pointerleave":this.onHover=false;break;case "pointerdown":this.onActive=true;break;case "pointerup":case "blur":this.onActive=false;}}renderLayoutDefault(){const e=this.getFontSize(),t=this.buttonHref?"link":"button",o={"auro-button":true,inset:this.showText,wrapper:true,loading:this.loading,simple:!["secondary"].includes(this.variant),thin:["secondary"].includes(this.variant)},a={contentWrapper:true,util_displayHiddenVisually:this.loading},i={textSlot:true,[e]:this.showText},l=this.tIndex||this.tabindex;return u$3`
|
|
222
|
+
<${this._renderTag}
|
|
223
|
+
part="${t}"
|
|
224
|
+
aria-label="${o$2(this.loading?this.loadingText:this.currentAriaLabel||void 0)}"
|
|
225
|
+
aria-labelledby="${o$2(this.loading?void 0:this.currentAriaLabelledBy||void 0)}"
|
|
226
|
+
tabindex="${o$2(this.static?-1:l)}"
|
|
227
|
+
?autofocus="${this.autofocus}"
|
|
228
|
+
class=${e$1(o)}
|
|
229
|
+
?disabled="${this.disabled||this.loading}"
|
|
230
|
+
?onDark="${this.onDark}"
|
|
231
|
+
title="${o$2(this.title?this.title:void 0)}"
|
|
232
|
+
name="${o$2(this.name?this.name:void 0)}"
|
|
233
|
+
type="${o$2(this.type?this.type:void 0)}"
|
|
234
|
+
variant="${o$2(this.variant?this.variant:void 0)}"
|
|
235
|
+
.value="${o$2(this.value?this.value:void 0)}"
|
|
236
|
+
@click="${this.static||"submit"!==this.type?void 0:this.surfaceSubmitEvent}"
|
|
237
|
+
@pointerenter="${this.onPointerEvent}"
|
|
238
|
+
@pointerleave="${this.onPointerEvent}"
|
|
239
|
+
@pointerdown="${this.onPointerEvent}"
|
|
240
|
+
@pointerup="${this.onPointerEvent}"
|
|
241
|
+
@blur="${this.onPointerEvent}"
|
|
242
|
+
href="${o$2(this.buttonHref||void 0)}"
|
|
243
|
+
target="${o$2(this.buttonTarget||void 0)}"
|
|
244
|
+
rel="${o$2(this.buttonRel||void 0)}"
|
|
245
|
+
>
|
|
246
|
+
${o$2(this.loading?u$3`<${this.loaderTag} pulse part="loader"></${this.loaderTag}>`:void 0)}
|
|
247
|
+
|
|
248
|
+
<span class="${e$1(a)}" part="contentWrapper">
|
|
249
|
+
<span class="${e$1(i)}" part="text">
|
|
250
|
+
<slot></slot>
|
|
251
|
+
</span>
|
|
252
|
+
</span>
|
|
253
|
+
</${this._renderTag}>
|
|
254
|
+
`}renderLayout(){return this.renderLayoutDefault()}}var ce=i$3`a.auro-button{text-decoration:none}
|
|
255
|
+
`;class he extends de{static register(e="auro-hyperlink-button"){I.prototype.registerComponent(e,he);}static get styles(){return [...de.styles,ce]}}customElements.get("auro-hyperlink-button")||customElements.define("auro-hyperlink-button",he);var ue=i$3`:host([type=nav]:not([ondark])) a{color:var(--ds-auro-hyperlink-nav-default-color-default);background-color:var(--ds-auro-hyperlink-nav-default-container-color-default);outline-color:var(--ds-auro-hyperlink-nav-default-outline-color-default);border-color:var(--ds-auro-hyperlink-nav-default-border-color-default)}:host([type=nav]:not([ondark])) a:visited{color:var(--ds-auro-hyperlink-nav-visited-color-default);background-color:var(--ds-auro-hyperlink-nav-visited-container-color-default);outline-color:var(--ds-auro-hyperlink-nav-visited-outline-color-default);border-color:var(--ds-auro-hyperlink-nav-visited-border-color-default)}:host([type=nav]:not([ondark])) a:focus-visible{color:var(--ds-auro-hyperlink-nav-focus-color-default);background-color:var(--ds-auro-hyperlink-nav-focus-container-color-default);outline-color:var(--ds-auro-hyperlink-nav-focus-outline-color-default);border-color:var(--ds-auro-hyperlink-nav-focus-border-color-default)}:host([type=nav]:not([ondark])) a:hover{color:var(--ds-auro-hyperlink-nav-hover-color-default);background-color:var(--ds-auro-hyperlink-nav-hover-container-color-default);outline-color:var(--ds-auro-hyperlink-nav-hover-outline-color-default);border-color:var(--ds-auro-hyperlink-nav-hover-border-color-default)}:host([type=nav]:not([ondark])) a:hover:focus-visible{outline-color:var(--ds-auro-hyperlink-nav-focus-outline-color-default);border-color:var(--ds-auro-hyperlink-nav-focus-border-color-default)}:host([type=nav][ondark]) a{color:var(--ds-auro-hyperlink-nav-default-color-inverse);background-color:var(--ds-auro-hyperlink-nav-default-container-color-inverse);outline-color:var(--ds-auro-hyperlink-nav-default-outline-color-inverse);border-color:var(--ds-auro-hyperlink-nav-default-border-color-inverse)}:host([type=nav][ondark]) a:visited{color:var(--ds-auro-hyperlink-nav-visited-color-inverse);background-color:var(--ds-auro-hyperlink-nav-visited-container-color-inverse);outline-color:var(--ds-auro-hyperlink-nav-visited-outline-color-inverse);border-color:var(--ds-auro-hyperlink-nav-visited-border-color-inverse)}:host([type=nav][ondark]) a:focus-visible{color:var(--ds-auro-hyperlink-nav-focus-color-inverse);background-color:var(--ds-auro-hyperlink-nav-focus-container-color-inverse);outline-color:var(--ds-auro-hyperlink-nav-focus-outline-color-inverse);border-color:var(--ds-auro-hyperlink-nav-focus-border-color-inverse)}:host([type=nav][ondark]) a:hover{color:var(--ds-auro-hyperlink-nav-hover-color-inverse);background-color:var(--ds-auro-hyperlink-nav-hover-container-color-inverse);outline-color:var(--ds-auro-hyperlink-nav-hover-outline-color-inverse);border-color:var(--ds-auro-hyperlink-nav-hover-border-color-inverse)}:host([type=nav][ondark]) a:hover:focus-visible{outline-color:var(--ds-auro-hyperlink-nav-focus-outline-color-inverse);border-color:var(--ds-auro-hyperlink-nav-focus-border-color-inverse)}:host(:not([type=nav]):not([ondark])) a{color:var(--ds-auro-hyperlink-default-color-default);background-color:var(--ds-auro-hyperlink-default-container-color-default);outline-color:var(--ds-auro-hyperlink-default-outline-color-default);border-color:var(--ds-auro-hyperlink-default-border-color-default)}:host(:not([type=nav]):not([ondark])) a:visited{color:var(--ds-auro-hyperlink-visited-color-default);background-color:var(--ds-auro-hyperlink-visited-container-color-default);outline-color:var(--ds-auro-hyperlink-visited-outline-color-default);border-color:var(--ds-auro-hyperlink-visited-border-color-default)}:host(:not([type=nav]):not([ondark])) a:focus-visible{color:var(--ds-auro-hyperlink-focus-color-default);background-color:var(--ds-auro-hyperlink-focus-container-color-default);outline-color:var(--ds-auro-hyperlink-focus-outline-color-default);border-color:var(--ds-auro-hyperlink-focus-border-color-default)}:host(:not([type=nav]):not([ondark])) a:hover{color:var(--ds-auro-hyperlink-hover-color-default);background-color:var(--ds-auro-hyperlink-hover-container-color-default);outline-color:var(--ds-auro-hyperlink-hover-outline-color-default);border-color:var(--ds-auro-hyperlink-hover-border-color-default)}:host(:not([type=nav]):not([ondark])) a:hover:focus-visible{outline-color:var(--ds-auro-hyperlink-focus-outline-color-default);border-color:var(--ds-auro-hyperlink-focus-border-color-default)}:host(:not([type=nav])[ondark]) a{color:var(--ds-auro-hyperlink-default-color-inverse);background-color:var(--ds-auro-hyperlink-default-container-color-inverse);outline-color:var(--ds-auro-hyperlink-default-outline-color-inverse);border-color:var(--ds-auro-hyperlink-default-border-color-inverse)}:host(:not([type=nav])[ondark]) a:visited{color:var(--ds-auro-hyperlink-visited-color-inverse);background-color:var(--ds-auro-hyperlink-visited-container-color-inverse);outline-color:var(--ds-auro-hyperlink-visited-outline-color-inverse);border-color:var(--ds-auro-hyperlink-visited-border-color-inverse)}:host(:not([type=nav])[ondark]) a:focus-visible{color:var(--ds-auro-hyperlink-focus-color-inverse);background-color:var(--ds-auro-hyperlink-focus-container-color-inverse);outline-color:var(--ds-auro-hyperlink-focus-outline-color-inverse);border-color:var(--ds-auro-hyperlink-focus-border-color-inverse)}:host(:not([type=nav])[ondark]) a:hover{color:var(--ds-auro-hyperlink-hover-color-inverse);background-color:var(--ds-auro-hyperlink-hover-container-color-inverse);outline-color:var(--ds-auro-hyperlink-hover-outline-color-inverse);border-color:var(--ds-auro-hyperlink-hover-border-color-inverse)}:host(:not([type=nav])[ondark]) a:hover:focus-visible{outline-color:var(--ds-auro-hyperlink-focus-outline-color-inverse);border-color:var(--ds-auro-hyperlink-focus-border-color-inverse)}
|
|
256
|
+
`,pe=i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:host(:not([fluid])){display:inline-block}:host([type=nav]) .hyperlink:focus{text-decoration:underline}:host([type=cta]){line-height:0}:host(:not([type=cta]):not([type=nav])) .hyperlink{display:inline-block;border-radius:3px;outline-offset:unset;outline-style:solid;outline-width:1px}:host(:not([type=cta]):not([type=nav])) .hyperlink:focus-visible{outline-offset:var(--ds-size-25, .125rem)}.hyperlink{transition:all .15s ease;text-decoration:underline}@media (hover: hover){.hyperlink:hover{text-decoration:none}.hyperlink--nav:hover{text-decoration:underline}}.hyperlink--nav{display:block;text-decoration:none}.hyperlink--nav:focus-visible{outline-style:solid;outline-width:var(--ds-size-50, .25rem);outline-offset:unset}.hyperlink--button{cursor:pointer}[auro-icon]{--ds-auro-icon-size: var(--ds-size-300, 1.5rem);margin-left:var(--ds-size-25, .125rem)}[fluid]{display:flex}
|
|
257
|
+
`,be=i$3`:host(:not([type=cta])){--ds-auro-hyperlink-default-color-default: var(--ds-advanced-color-hyperlink-text, #2875b5);--ds-auro-hyperlink-default-container-color-default: transparent;--ds-auro-hyperlink-default-outline-color-default: transparent;--ds-auro-hyperlink-default-border-color-default: transparent;--ds-auro-hyperlink-visited-color-default: var(--ds-advanced-color-hyperlink-text, #2875b5);--ds-auro-hyperlink-visited-container-color-default: transparent;--ds-auro-hyperlink-visited-outline-color-default: transparent;--ds-auro-hyperlink-visited-border-color-default: transparent;--ds-auro-hyperlink-focus-color-default: var(--ds-advanced-color-hyperlink-text, #2875b5);--ds-auro-hyperlink-focus-container-color-default: transparent;--ds-auro-hyperlink-focus-outline-color-default: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-hyperlink-focus-border-color-default: transparent;--ds-auro-hyperlink-hover-color-default: var(--ds-advanced-color-hyperlink-text-hover, #01426a);--ds-auro-hyperlink-hover-container-color-default: transparent;--ds-auro-hyperlink-hover-outline-color-default: transparent;--ds-auro-hyperlink-hover-border-color-default: transparent;--ds-auro-hyperlink-default-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-default-container-color-inverse: transparent;--ds-auro-hyperlink-default-outline-color-inverse: transparent;--ds-auro-hyperlink-default-border-color-inverse: transparent;--ds-auro-hyperlink-visited-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-visited-container-color-inverse: transparent;--ds-auro-hyperlink-visited-outline-color-inverse: transparent;--ds-auro-hyperlink-visited-border-color-inverse: transparent;--ds-auro-hyperlink-focus-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-focus-container-color-inverse: transparent;--ds-auro-hyperlink-focus-outline-color-inverse: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-hyperlink-focus-border-color-inverse: transparent;--ds-auro-hyperlink-hover-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-hover-container-color-inverse: transparent;--ds-auro-hyperlink-hover-outline-color-inverse: transparent;--ds-auro-hyperlink-hover-border-color-inverse: transparent;--ds-auro-hyperlink-nav-default-color-default: var(--ds-advanced-color-hyperlink-text, #2875b5);--ds-auro-hyperlink-nav-default-container-color-default: transparent;--ds-auro-hyperlink-nav-default-outline-color-default: transparent;--ds-auro-hyperlink-nav-default-border-color-default: transparent;--ds-auro-hyperlink-nav-visited-color-default: var(--ds-advanced-color-hyperlink-text, #2875b5);--ds-auro-hyperlink-nav-visited-container-color-default: transparent;--ds-auro-hyperlink-nav-visited-outline-color-default: transparent;--ds-auro-hyperlink-nav-visited-border-color-default: transparent;--ds-auro-hyperlink-nav-focus-color-default: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-nav-focus-container-color-default: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-hyperlink-nav-focus-outline-color-default: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-hyperlink-nav-focus-border-color-default: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-hyperlink-nav-hover-color-default: var(--ds-advanced-color-hyperlink-text-hover, #01426a);--ds-auro-hyperlink-nav-hover-container-color-default: transparent;--ds-auro-hyperlink-nav-hover-outline-color-default: transparent;--ds-auro-hyperlink-nav-hover-border-color-default: transparent;--ds-auro-hyperlink-nav-default-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-nav-default-container-color-inverse: transparent;--ds-auro-hyperlink-nav-default-outline-color-inverse: transparent;--ds-auro-hyperlink-nav-default-border-color-inverse: transparent;--ds-auro-hyperlink-nav-visited-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-nav-visited-container-color-inverse: transparent;--ds-auro-hyperlink-nav-visited-outline-color-inverse: transparent;--ds-auro-hyperlink-nav-visited-border-color-inverse: transparent;--ds-auro-hyperlink-nav-focus-color-inverse: var(--ds-advanced-color-hyperlink-text, #2875b5);--ds-auro-hyperlink-nav-focus-container-color-inverse: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-hyperlink-nav-focus-outline-color-inverse: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-hyperlink-nav-focus-border-color-inverse: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-hyperlink-nav-hover-color-inverse: var(--ds-advanced-color-hyperlink-text-inverse, #ffffff);--ds-auro-hyperlink-nav-hover-container-color-inverse: transparent;--ds-auro-hyperlink-nav-hover-outline-color-inverse: transparent;--ds-auro-hyperlink-nav-hover-border-color-inverse: transparent}
|
|
258
|
+
`;class ve extends L{constructor(){super(),this._createRefs();const e=new M;this.iconTag=e.generateTag("auro-icon","9.0.0",g$1);}static get properties(){return {...L.properties}}static get styles(){return [pe,ue,be]}static get shadowRootOptions(){return {...i$1.shadowRootOptions,delegatesFocus:true}}_createRefs(){this.hyperlinkRef=e();}connectedCallback(){super.connectedCallback(),this.runtimeUtils.handleComponentTagRename(this,"auro-hyperlink");}firstUpdated(){this.hyperlinkRef.value&&(this.attributeWatcher=U({host:this,target:this.hyperlinkRef.value}));}disconnectedCallback(){this.attributeWatcher&&(this.attributeWatcher.cleanup(),this.attributeWatcher=null);}static register(e="auro-hyperlink"){I.prototype.registerComponent(e,ve);}renderLayoutDefault(){const e={hyperlink:this.safeUri||this.role,"hyperlink--nav":"nav"===this.type,"hyperlink--ondark":this.ondark,"hyperlink--button":this.role,"hyperlink--secondary":"secondary"===this.variant,"hyperlink--tertiary":"tertiary"===this.variant};return u$3`
|
|
259
|
+
${this.safeUri||this.role?u$3`
|
|
260
|
+
<a
|
|
261
|
+
${n(this.hyperlinkRef)}
|
|
262
|
+
part="link"
|
|
263
|
+
aria-pressed="${o$2("button"===this.role?this.ariaPressedState(this.ariapressed):void 0)}"
|
|
264
|
+
class="${e$1(e)}"
|
|
265
|
+
href="${o$2(this.role?void 0:this.safeUri)}"
|
|
266
|
+
rel="${o$2(this.target||this.rel?this.getRelType(this.target,this.rel):void 0)}"
|
|
267
|
+
referrerpolicy="${o$2(this.referrerpolicy?this.defaultReferrerPolicy:void 0)}"
|
|
268
|
+
role="${o$2("button"===this.role?this.role:void 0)}"
|
|
269
|
+
?download="${this.download}"
|
|
270
|
+
target="${o$2(this.target&&this.includesDomain?this.target:void 0)}"
|
|
271
|
+
tabindex="${o$2("button"===this.role?"0":void 0)}"
|
|
272
|
+
>
|
|
273
|
+
<slot></slot>
|
|
274
|
+
${this.targetIcon(this.target)}
|
|
275
|
+
</a>`:u$3`<slot></slot>`}
|
|
276
|
+
`}renderLayoutCTA(){return u$3`
|
|
277
|
+
<auro-hyperlink-button
|
|
278
|
+
${n(this.hyperlinkRef)}
|
|
279
|
+
?ondark="${this.ondark}"
|
|
280
|
+
?fluid="${this.fluid}"
|
|
281
|
+
variant="${o$2(this.variant||void 0)}"
|
|
282
|
+
shape="${o$2(this.shape||void 0)}"
|
|
283
|
+
size="${o$2(this.size||void 0)}"
|
|
284
|
+
layout="${o$2(this.layout||void 0)}"
|
|
285
|
+
buttonHref="${o$2(this.safeUri||void 0)}"
|
|
286
|
+
buttonRel="${o$2(this.rel||void 0)}"
|
|
287
|
+
buttonTarget="${o$2(this.target||void 0)}"
|
|
288
|
+
>
|
|
289
|
+
<slot></slot>
|
|
290
|
+
${this.targetIcon(this.target)}
|
|
291
|
+
</auro-hyperlink-button>
|
|
292
|
+
`}getMarkup(){return "cta"===this.type?this.renderLayoutCTA():this.renderLayoutDefault()}}
|
|
293
|
+
|
|
294
|
+
ve.register();
|
|
295
|
+
|
|
296
|
+
class p{registerComponent(t,a){customElements.get(t)||customElements.define(t,class extends a{});}closestElement(t,a=this,e=(a,s=a&&a.closest(t))=>a&&a!==document&&a!==window?s||e(a.getRootNode().host):null){return e(a)}handleComponentTagRename(t,a){const e=a.toLowerCase();t.tagName.toLowerCase()!==e&&t.setAttribute(e,true);}elementMatch(t,a){const e=a.toLowerCase();return t.tagName.toLowerCase()===e||t.hasAttribute(e)}}var u='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="error__desc" class="ico_squareLarge" data-deprecated="true" role="img" style="min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor" viewBox="0 0 24 24" part="svg"><title/><desc id="error__desc">Error alert indicator.</desc><path d="m13.047 5.599 6.786 11.586A1.207 1.207 0 0 1 18.786 19H5.214a1.207 1.207 0 0 1-1.047-1.815l6.786-11.586a1.214 1.214 0 0 1 2.094 0m-1.165.87a.23.23 0 0 0-.085.085L5.419 17.442a.232.232 0 0 0 .203.35h12.756a.234.234 0 0 0 .203-.35L12.203 6.554a.236.236 0 0 0-.321-.084M12 15.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m-.024-6.22c.325 0 .589.261.589.583v4.434a.586.586 0 0 1-.589.583.586.586 0 0 1-.588-.583V9.863c0-.322.264-.583.588-.583"/></svg>';class m extends i$1{static get properties(){return {hidden:{type:Boolean,reflect:true},hiddenVisually:{type:Boolean,reflect:true},hiddenAudible:{type:Boolean,reflect:true}}}hideAudible(t){return t?"true":"false"}}const g=new Map,f=(t,a={})=>{const e=a.responseParser||(t=>t.text());return g.has(t)||g.set(t,fetch(t).then(e)),g.get(t)};var w=i$3`:focus:not(:focus-visible){outline:3px solid transparent}.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}.ico_squareLarge{fill:currentColor;height:var(--auro-size-lg, var(--ds-size-300, 1.5rem))}.ico_squareSmall{fill:currentColor;height:.6rem}.ico_squareMed{fill:currentColor;height:var(--auro-size-md, var(--ds-size-200, 1rem))}.ico_squareSml{fill:currentColor;height:var(--auro-size-sm, var(--ds-size-150, .75rem))}:host{color:currentColor;vertical-align:middle;display:inline-block}svg{min-width:var(--ds-auro-icon-size, 1.5rem)!important;width:var(--ds-auro-icon-size, 1.5rem)!important;height:var(--ds-auro-icon-size, 1.5rem)!important}.componentWrapper{display:flex;line-height:var(--ds-auro-icon-size)}.svgWrapper{height:var(--ds-auro-icon-size);width:var(--ds-auro-icon-size)}.svgWrapper [part=svg]{display:flex}.labelWrapper{margin-left:var(--ds-size-50, .25rem)}.labelWrapper ::slotted(*){line-height:inherit!important}
|
|
297
|
+
`;class z extends m{constructor(){super(),this.onDark=false,this.appearance="default";}static get properties(){return {...m.properties,onDark:{type:Boolean,reflect:true},appearance:{type:String,reflect:true},svg:{attribute:false,reflect:true}}}static get styles(){return w}async fetchIcon(t,a){let e="";e="logos"===t?await f(`${this.uri}/${t}/${a}.svg`):await f(`${this.uri}/icons/${t}/${a}.svg`);return (new DOMParser).parseFromString(e,"text/html").body.querySelector("svg")}async firstUpdated(){try{if(!this.customSvg){const t=await this.fetchIcon(this.category,this.name);if(t)this.svg=t;else if(!t){const t=(new DOMParser).parseFromString(u,"text/html");this.svg=t.body.firstChild;}}}catch(t){this.svg=void 0;}}}i$3`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock,:host{display:block}.util_displayFlex{display:flex}.util_displayHidden,:host([hidden]:not(:focus):not(:active)){display:none}.util_displayHiddenVisually,:host([hiddenVisually]:not(:focus):not(:active)){position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;padding:0;border:0}:host{display:inline-block;--ds-auro-icon-size: 100%;width:100%;height:100%}:host .logo{color:var(--ds-auro-alaska-color)}:host([onDark]),:host([appearance=inverse]){--ds-auro-alaska-color: #FFF}
|
|
298
|
+
`;var y=i$3`:host{--ds-auro-icon-color: var(--ds-basic-color-texticon-default, #2a2a2a);--ds-auro-alaska-color: #02426D;--ds-auro-icon-size: var(--ds-size-300, 1.5rem)}
|
|
299
|
+
`;var k=i$3`:host{color:var(--ds-auro-icon-color)}:host([customColor]){color:inherit}:host(:not([onDark])[variant=accent1]),:host(:not([appearance=inverse])[variant=accent1]){--ds-auro-icon-color: var(--ds-basic-color-texticon-accent1, #265688)}:host(:not([onDark])[variant=disabled]),:host(:not([appearance=inverse])[variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-disabled, #d0d0d0)}:host(:not([onDark])[variant=muted]),:host(:not([appearance=inverse])[variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-muted, #676767)}:host(:not([onDark])[variant=statusDefault]),:host(:not([appearance=inverse])[variant=statusDefault]){--ds-auro-icon-color: var(--ds-basic-color-status-default, #afb9c6)}:host(:not([onDark])[variant=statusInfo]),:host(:not([appearance=inverse])[variant=statusInfo]){--ds-auro-icon-color: var(--ds-basic-color-status-info, #01426a)}:host(:not([onDark])[variant=statusSuccess]),:host(:not([appearance=inverse])[variant=statusSuccess]){--ds-auro-icon-color: var(--ds-basic-color-status-success, #447a1f)}:host(:not([onDark])[variant=statusWarning]),:host(:not([appearance=inverse])[variant=statusWarning]){--ds-auro-icon-color: var(--ds-basic-color-status-warning, #fac200)}:host(:not([onDark])[variant=statusError]),:host(:not([appearance=inverse])[variant=statusError]){--ds-auro-icon-color: var(--ds-basic-color-status-error, #e31f26)}:host(:not([onDark])[variant=statusInfoSubtle]),:host(:not([appearance=inverse])[variant=statusInfoSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-info-subtle, #ebf3f9)}:host(:not([onDark])[variant=statusSuccessSubtle]),:host(:not([appearance=inverse])[variant=statusSuccessSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-success-subtle, #d6eac7)}:host(:not([onDark])[variant=statusWarningSubtle]),:host(:not([appearance=inverse])[variant=statusWarningSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-warning-subtle, #fff0b2)}:host(:not([onDark])[variant=statusErrorSubtle]),:host(:not([appearance=inverse])[variant=statusErrorSubtle]){--ds-auro-icon-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}:host(:not([onDark])[variant=fareBasicEconomy]),:host(:not([appearance=inverse])[variant=fareBasicEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-basiceconomy, #97eaf8)}:host(:not([onDark])[variant=fareBusiness]),:host(:not([appearance=inverse])[variant=fareBusiness]){--ds-auro-icon-color: var(--ds-basic-color-fare-business, #01426a)}:host(:not([onDark])[variant=fareEconomy]),:host(:not([appearance=inverse])[variant=fareEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-economy, #0074ca)}:host(:not([onDark])[variant=fareFirst]),:host(:not([appearance=inverse])[variant=fareFirst]){--ds-auro-icon-color: var(--ds-basic-color-fare-first, #00274a)}:host(:not([onDark])[variant=farePremiumEconomy]),:host(:not([appearance=inverse])[variant=farePremiumEconomy]){--ds-auro-icon-color: var(--ds-basic-color-fare-premiumeconomy, #005154)}:host(:not([onDark])[variant=tierOneWorldEmerald]),:host(:not([appearance=inverse])[variant=tierOneWorldEmerald]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-emerald, #139142)}:host(:not([onDark])[variant=tierOneWorldSapphire]),:host(:not([appearance=inverse])[variant=tierOneWorldSapphire]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-sapphire, #015daa)}:host(:not([onDark])[variant=tierOneWorldRuby]),:host(:not([appearance=inverse])[variant=tierOneWorldRuby]){--ds-auro-icon-color: var(--ds-basic-color-tier-program-oneworld-ruby, #a41d4a)}:host([onDark]),:host([appearance=inverse]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([onDark][variant=disabled]),:host([appearance=inverse][variant=disabled]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894)}:host([onDark][variant=muted]),:host([appearance=inverse][variant=muted]){--ds-auro-icon-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][variant=statusError]),:host([appearance=inverse][variant=statusError]){--ds-auro-icon-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8)}
|
|
300
|
+
`;class x extends z{constructor(){super(),this.variant=void 0,this.privateDefaults();}privateDefaults(){this.uri="https://cdn.jsdelivr.net/npm/@alaskaairux/icons@latest/dist",this.runtimeUtils=new p;}static get properties(){return {...z.properties,ariaHidden:{type:String,reflect:true},category:{type:String,reflect:true},customColor:{type:Boolean,reflect:true},customSvg:{type:Boolean},label:{type:Boolean,reflect:true},name:{type:String,reflect:true},variant:{type:String,reflect:true}}}static get styles(){return [z.styles,y,w,k]}static register(t="auro-icon"){p.prototype.registerComponent(t,x);}connectedCallback(){super.connectedCallback(),this.runtimeUtils.handleComponentTagRename(this,"auro-icon");}exposeCssParts(){this.setAttribute("exportparts","svg:iconSvg");}async firstUpdated(){if(await super.firstUpdated(),this.hasAttribute("ariaHidden")&&this.svg){const t=this.svg.querySelector("desc");t&&(t.remove(),this.svg.removeAttribute("aria-labelledby"));}}render(){const t={labelWrapper:true,util_displayHiddenVisually:!this.label};return x$2`
|
|
301
|
+
<div class="componentWrapper">
|
|
302
|
+
<div
|
|
303
|
+
class="${e$1({svgWrapper:true})}"
|
|
304
|
+
title="${o$2(this.title||void 0)}">
|
|
305
|
+
<span aria-hidden="${o$2(this.ariaHidden||true)}" part="svg">
|
|
306
|
+
${this.customSvg?x$2`
|
|
307
|
+
<slot name="svg"></slot>
|
|
308
|
+
`:x$2`
|
|
309
|
+
${this.svg}
|
|
310
|
+
`}
|
|
311
|
+
</span>
|
|
312
|
+
</div>
|
|
313
|
+
|
|
314
|
+
<div class="${e$1(t)}" part="label">
|
|
315
|
+
<slot></slot>
|
|
316
|
+
</div>
|
|
317
|
+
</div>
|
|
318
|
+
`}}
|
|
319
|
+
|
|
320
|
+
var iconVersion = '9.1.1';
|
|
321
|
+
|
|
322
|
+
const OneWorld = () => x$2`<svg width="100%" height="100%" viewBox="0 0 55 55" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
323
|
+
<g clip-path="url(#clip0_1724_2487)">
|
|
324
|
+
<path d="M0 27.4954C0 42.6555 12.3298 54.9908 27.4954 54.9908C42.661 54.9908 54.9908 42.661 54.9908 27.4954C54.9908 12.3298 42.661 0 27.4991 0C12.3371 0 0 12.3298 0 27.4954ZM2.8064 27.4954C2.8064 13.8774 13.8811 2.80456 27.4954 2.80456C41.1097 2.80456 52.1899 13.8811 52.1899 27.4954C52.1899 41.1097 41.1134 52.1844 27.4991 52.1844C13.8848 52.1844 2.81008 41.1097 2.81008 27.4954H2.8064Z" fill="white"/>
|
|
325
|
+
<rect x="1.36377" y="1.26611" width="52.2635" height="52.4476" fill="url(#pattern0)"/>
|
|
326
|
+
<path d="M5.86329 27.8837C5.86329 27.1476 6.13012 26.2753 7.00977 26.2753C7.88942 26.2753 8.16914 27.1531 8.16914 27.8837C8.16914 28.6143 7.88942 29.4847 7.00977 29.4847C6.13012 29.4847 5.86329 28.618 5.86329 27.8837ZM3.98438 27.8837C3.98438 29.6172 5.22287 30.922 7.00977 30.922C8.79667 30.922 10.0499 29.6172 10.0499 27.8837C10.0499 26.1502 8.79851 24.8436 7.00977 24.8436C5.22103 24.8436 3.98438 26.1538 3.98438 27.8837Z" fill="white"/>
|
|
327
|
+
<path d="M11.0876 25.0111H12.9132V25.7932H12.9353C13.2794 25.2043 14.0542 24.8399 14.7387 24.8399C16.6526 24.8399 16.809 26.2348 16.809 27.0666V30.7472H14.9283V27.972C14.9283 27.1881 15.0166 26.3894 13.9879 26.3894C13.2794 26.3894 12.9684 26.9893 12.9684 27.6205V30.749H11.0876V25.0111Z" fill="white"/>
|
|
328
|
+
<path d="M19.8325 27.2966C19.9429 26.5881 20.3846 26.1042 21.0545 26.1042C21.6875 26.1042 22.1421 26.6434 22.177 27.2966H19.8325ZM24.0541 28.3401C24.1461 26.3784 23.1156 24.8307 21.0545 24.8307C19.3559 24.8307 17.9536 26.0858 17.9536 27.8653C17.9536 29.792 19.2234 30.9146 21.0986 30.9146C22.3868 30.9146 23.6124 30.3423 23.9547 29.0191H22.1973C22.0999 29.2186 21.9458 29.3847 21.7542 29.4967C21.5627 29.6087 21.3422 29.6615 21.1207 29.6485C20.322 29.6485 19.8656 29.1295 19.8325 28.3401H24.0541Z" fill="white"/>
|
|
329
|
+
<path d="M24.4314 25.011H25.1822L26.6544 29.9669H26.6839L28.099 25.011H28.8922L30.3037 29.9669H30.3258L31.798 25.011H32.5488L30.6883 30.795H29.9154L28.491 25.9312H28.4689L27.0556 30.795H26.2809L24.4314 25.011Z" fill="white"/>
|
|
330
|
+
<path d="M38.502 27.9039C38.502 29.5602 37.5377 30.9643 35.7674 30.9643C33.997 30.9643 33.0291 29.5638 33.0291 27.9039C33.0291 26.244 33.9934 24.8436 35.7674 24.8436C37.5414 24.8436 38.502 26.244 38.502 27.9039ZM33.7376 27.9039C33.7376 29.1387 34.4093 30.3699 35.7618 30.3699C37.1144 30.3699 37.7861 29.1387 37.7861 27.9039C37.7861 26.6691 37.1163 25.4361 35.7618 25.4361C34.4074 25.4361 33.7376 26.671 33.7376 27.9039V27.9039Z" fill="white"/>
|
|
331
|
+
<path d="M39.553 25.011H40.2026V26.3673H40.232C40.3856 25.9198 40.6835 25.536 41.0789 25.2762C41.4742 25.0164 41.9447 24.8953 42.4164 24.9319V25.6404C41.1393 25.5723 40.2652 26.5145 40.2652 27.7125V30.795H39.553V25.011Z" fill="white"/>
|
|
332
|
+
<path d="M43.2095 22.7917H43.9161V30.795H43.2095V22.7917Z" fill="white"/>
|
|
333
|
+
<path d="M50.3036 30.795H49.654V29.6908H49.6319C49.3301 30.4398 48.4118 30.9569 47.5726 30.9569C45.8133 30.9569 44.9668 29.5344 44.9668 27.8966C44.9668 26.2587 45.8225 24.8436 47.5726 24.8436C48.4339 24.8436 49.2749 25.2797 49.5767 26.1097H49.5987V22.7972H50.3036V30.795ZM47.5726 30.3643C49.0724 30.3643 49.5969 29.0982 49.5969 27.8984C49.5969 26.6985 49.0706 25.4306 47.5726 25.4306C46.2274 25.4306 45.679 26.6985 45.679 27.8984C45.679 29.0982 46.2274 30.3643 47.5726 30.3643Z" fill="white"/>
|
|
334
|
+
</g>
|
|
335
|
+
<defs>
|
|
336
|
+
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
|
|
337
|
+
<use xlink:href="#image0_1724_2487" transform="scale(0.00352113)"/>
|
|
338
|
+
</pattern>
|
|
339
|
+
<clipPath id="clip0_1724_2487">
|
|
340
|
+
<rect width="55" height="55" fill="white"/>
|
|
341
|
+
</clipPath>
|
|
342
|
+
<image id="image0_1724_2487" width="284" height="285" xlink:href="data:image/png;base64,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"/>
|
|
343
|
+
</defs>
|
|
344
|
+
</svg>
|
|
345
|
+
`;
|
|
346
|
+
|
|
347
|
+
const BADGE_LOGOS = {
|
|
348
|
+
oneworld: {
|
|
349
|
+
icon: OneWorld,
|
|
350
|
+
alt: 'OneWorld Alliance',
|
|
351
|
+
},
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
// Sizes that should display hyperlinks
|
|
355
|
+
const LINKS_SIZES = ['md', 'lg', 'xl', '2xl'];
|
|
356
|
+
|
|
357
|
+
// Sizes that should display badges
|
|
358
|
+
const BADGES_SIZES = ['md', 'lg', 'xl', '2xl'];
|
|
359
|
+
|
|
360
|
+
// Sizes that should be used in groups
|
|
361
|
+
const GROUPS_SIZES = ['xs', 'sm', 'md', 'lg'];
|
|
362
|
+
|
|
363
|
+
// Maximum number of tails allowed in a group
|
|
364
|
+
const MAX_TAILS_IN_GROUP = 2;
|
|
365
|
+
|
|
366
|
+
// Default airline name (EN/i18n)
|
|
367
|
+
const DEFAULT_AIRLINE_NAME = 'Airline';
|
|
368
|
+
|
|
369
|
+
// Aria label (EN/i18n)
|
|
370
|
+
const ARIA_LABELS = {
|
|
371
|
+
tailLivery: 'Tail livery',
|
|
372
|
+
tailLiveryWithBadge: 'Tail livery, {badgeAlt} member'
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Normalizes border width to a px length.
|
|
377
|
+
* Accepts:
|
|
378
|
+
* - number => "<n>px"
|
|
379
|
+
* - "<number>" => "<number>px"
|
|
380
|
+
* - "<number>px" => passthrough
|
|
381
|
+
* Ignores any other units or tokens and returns undefined.
|
|
382
|
+
* @param {number|string|undefined|null} value - The border width value to normalize
|
|
383
|
+
* @returns {string|undefined} The normalized border width or undefined
|
|
384
|
+
*/
|
|
385
|
+
function normalizeBorderWidth(value) {
|
|
386
|
+
if (value === undefined || value === null) return undefined;
|
|
387
|
+
if (typeof value === 'number') return value === 0 ? '0' : `${value}px`;
|
|
388
|
+
const v = String(value).trim();
|
|
389
|
+
if (!v) return undefined;
|
|
390
|
+
// Numeric string -> px
|
|
391
|
+
if (/^-?\d*\.?\d+$/.test(v)) return v === '0' ? '0' : `${v}px`;
|
|
392
|
+
// px unit only
|
|
393
|
+
if (/^-?\d*\.?\d+px$/.test(v)) return v;
|
|
394
|
+
// Non-px inputs are ignored
|
|
395
|
+
return undefined;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* Pass through border-related overrides while enforcing px-only widths.
|
|
400
|
+
*
|
|
401
|
+
* Behavior:
|
|
402
|
+
* - `borderColor` is returned as-is when provided.
|
|
403
|
+
* - `borderWidth` accepts only numbers, numeric strings, or px strings and normalizes via `normalizeBorderWidth`.
|
|
404
|
+
* • number -> "<n>px" (e.g., 2 -> "2px").
|
|
405
|
+
* • "<number>" -> "<number>px" (e.g., "2" -> "2px").
|
|
406
|
+
* • "<number>px" -> passthrough.
|
|
407
|
+
* • Zero is returned as "0px".
|
|
408
|
+
* • Any other units/tokens (e.g., "0.125rem", "var(--w)") are ignored (treated as undefined).
|
|
409
|
+
*
|
|
410
|
+
* @param {object} props - The props object
|
|
411
|
+
* @param {string|undefined} props.borderColor - Optional CSS color value for the border.
|
|
412
|
+
* @param {number|string|undefined} props.borderWidth - Optional border width as a number, numeric string, or px string. Other units are ignored.
|
|
413
|
+
* @returns {{borderColor: string|undefined, borderWidth: string|undefined}} Object with optional `borderColor` and px-only `borderWidth`.
|
|
414
|
+
*/
|
|
415
|
+
function resolveBorderProps(props) {
|
|
416
|
+
const { borderColor, borderWidth } = props;
|
|
417
|
+
// Prefer centralized normalization and enforce px-only outputs.
|
|
418
|
+
const normalized = normalizeBorderWidth(borderWidth);
|
|
419
|
+
let resolvedBorderWidth;
|
|
420
|
+
|
|
421
|
+
if (normalized !== undefined) {
|
|
422
|
+
resolvedBorderWidth = normalized === '0' ? '0px' : normalized;
|
|
423
|
+
} else {
|
|
424
|
+
// Non-px inputs or empty strings are ignored
|
|
425
|
+
resolvedBorderWidth = undefined;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
return { borderColor, borderWidth: resolvedBorderWidth };
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Template for internationalization (i18n).
|
|
433
|
+
* Replaces placeholders in the format {key} with provided values.
|
|
434
|
+
* @param {string} template - The template string with placeholders
|
|
435
|
+
* @param {Record<string, string>} values - Object with key-value pairs for replacement
|
|
436
|
+
* @returns {string} The template with placeholders replaced
|
|
437
|
+
*/
|
|
438
|
+
function i18nTemplate(template, values = {}) {
|
|
439
|
+
return template.replace(/\{(\w+)\}/g, (match, key) => {
|
|
440
|
+
return key in values ? values[key] : match;
|
|
441
|
+
});
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
var styleCss = i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:host{width:var(--avatar-width);height:var(--avatar-width);min-width:var(--avatar-width);--avatar-width: var(--avatar-width-lg);--avatar-gradient: var(--gradient-oa);--tail-width: var(--tail-width-lg);--tail-offset-y: var(--tail-offset-y-lg);--href-label-gap: var(--href-label-gap-lg);--badge-width: var(--badge-width-lg);--border-color-default: rgba(88, 94, 103, 1);--border-color-white: #ffffff;--border-width-default: 4px;--border-display: none;--border-padding: 0;--border-radius-full: 999px;--tail-outline-color: var(--border-color-default);--tail-outline-width: 1px;--gradient-as: linear-gradient(180deg, #6899C6 0%, #CFE0EF 100%);--gradient-ha: linear-gradient(181deg, #CCB7ED -6.38%, #F9C2E7 99.46%);--gradient-oa: linear-gradient(181deg, #C5D0D9 -6.38%, #E8F1F8 99.46%);--tail-drop-shadow: drop-shadow(0 3px 3px rgba(0,0,0,.24)) drop-shadow(0 6px 14px rgba(0,0,0,.24));--z-index-border: 1;--z-index-badge: 2;--z-index-group-back: 1;--z-index-group-front: 2;--badge-translate-x: 0;--badge-translate-y: 0;--avatar-width-xs: 24px;--avatar-width-sm: 32px;--avatar-width-md: 48px;--avatar-width-lg: 60px;--avatar-width-xl: 96px;--avatar-width-2xl: 134px;--tail-width-xs: 19px;--tail-width-sm: 26px;--tail-width-md: 39px;--tail-width-lg: 48px;--tail-width-xl: 77px;--tail-width-2xl: 107px;--tail-offset-y-xs: 3px;--tail-offset-y-sm: 4px;--tail-offset-y-md: 6px;--tail-offset-y-lg: 7px;--tail-offset-y-xl: 13px;--tail-offset-y-2xl: 17px;--href-label-gap-md: 2px;--href-label-gap-lg: 4px;--href-label-gap-xl: 6px;--href-label-gap-2xl: 8px;--badge-width-md: 11px;--badge-width-lg: 14px;--badge-width-xl: 22px;--badge-width-2xl: 31px;--group-diagonal-width-xs: 42px;--group-diagonal-width-sm: 56px;--group-diagonal-width-md: 84px;--group-diagonal-width-lg: 105px;--group-horizontal-border-width-xs: 3px;--group-horizontal-overlap-xs: -2px;--group-horizontal-border-width-sm: 3px;--group-horizontal-overlap-sm: -2px;--group-horizontal-border-width-md: 4px;--group-horizontal-overlap-md: -6px;--group-horizontal-border-width-lg: 4px;--group-horizontal-overlap-lg: -10px}:host([size=xs]){--avatar-width: var(--avatar-width-xs);--tail-width: var(--tail-width-xs);--tail-offset-y: var(--tail-offset-y-xs)}:host([size=sm]){--avatar-width: var(--avatar-width-sm);--tail-width: var(--tail-width-sm);--tail-offset-y: var(--tail-offset-y-sm)}:host([size=md]){--avatar-width: var(--avatar-width-md);--tail-width: var(--tail-width-md);--tail-offset-y: var(--tail-offset-y-md);--badge-width: var(--badge-width-md);--href-label-gap: var(--href-label-gap-md);--badge-translate-x: 2px;--badge-translate-y: -7px}:host([size=lg]){--avatar-width: var(--avatar-width-lg);--tail-width: var(--tail-width-lg);--tail-offset-y: var(--tail-offset-y-lg);--badge-width: var(--badge-width-lg);--href-label-gap: var(--href-label-gap-lg);--badge-translate-x: 2px;--badge-translate-y: -4px}:host([size=xl]){--avatar-width: var(--avatar-width-xl);--tail-width: var(--tail-width-xl);--tail-offset-y: var(--tail-offset-y-xl);--badge-width: var(--badge-width-xl);--href-label-gap: var(--href-label-gap-xl)}:host([size="2xl"]){--avatar-width: var(--avatar-width-2xl);--tail-width: var(--tail-width-2xl);--tail-offset-y: var(--tail-offset-y-2xl);--badge-width: var(--badge-width-2xl);--href-label-gap: var(--href-label-gap-2xl)}:host([tail=as]),:host([tail=AS]){--avatar-gradient: var(--gradient-as)}:host([tail=ha]),:host([tail=HA]){--avatar-gradient: var(--gradient-ha)}:host([tail=oa]),:host([tail=OA]){--avatar-gradient: var(--gradient-oa)}.tail{display:inline-flex;flex-direction:column;align-items:center;vertical-align:middle;min-width:var(--avatar-width)}.tail>auro-hyperlink{display:flex;flex-direction:column;align-items:center;text-decoration:none;min-width:var(--avatar-width)}.tail>auro-hyperlink .label{display:block;margin-top:var(--href-label-gap);text-align:center;min-width:var(--avatar-width);white-space:nowrap;overflow:visible;text-overflow:clip}.border{position:relative;width:var(--avatar-width);height:var(--avatar-width);padding:var(--border-padding);border-radius:var(--border-radius-full);display:grid;place-items:center;margin:0 auto}.border.has-border{--border-padding: var(--border-width, var(--border-width-default))}.border.has-border:before{content:"";position:absolute;inset:0;border-radius:inherit;box-sizing:border-box;border:var(--border-width, var(--border-width-default)) solid var(--border-color, var(--border-color-default));z-index:var(--z-index-border);pointer-events:none;display:block}.container{position:relative;width:100%;height:100%;border-radius:var(--border-radius-full);background:var(--avatar-gradient);display:grid;place-items:center;overflow:hidden}.container [auro-icon]{--ds-auro-icon-size: var(--tail-width);position:absolute;top:50%;left:50%;transform:translate(-50%,calc(-50% + var(--tail-offset-y))) scale(1.26);transform-origin:center;pointer-events:none}.badge{position:absolute;right:0;bottom:0;transform:translate(var(--badge-translate-x),var(--badge-translate-y));width:var(--badge-width);height:var(--badge-width);object-fit:contain;border-radius:var(--border-radius-full);z-index:var(--z-index-badge)}:host([data-variant=aag]) [auro-icon]{filter:var(--tail-drop-shadow)}:host([data-variant=oa][outline]) [auro-icon]{filter:drop-shadow(var(--tail-outline-width) 0 0 var(--tail-outline-color)) drop-shadow(calc(-1 * var(--tail-outline-width)) 0 0 var(--tail-outline-color)) drop-shadow(0 var(--tail-outline-width) 0 var(--tail-outline-color)) drop-shadow(0 calc(-1 * var(--tail-outline-width)) 0 var(--tail-outline-color))}:host([href]){width:max-content}
|
|
445
|
+
`;
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* @typedef {Object} BadgeConfig
|
|
449
|
+
* @property {Function} icon - Function that returns the badge icon template
|
|
450
|
+
* @property {string} alt - Alt text for the badge
|
|
451
|
+
*/
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* @callback HrefClickCallback
|
|
455
|
+
* @param {Event} event - The click event
|
|
456
|
+
* @returns {void}
|
|
457
|
+
*/
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* The auro-tail element displays Alaska, Hawaiian, and partner airline tail graphics for consistent visual representation across Auro applications.
|
|
461
|
+
*
|
|
462
|
+
* @fires {CustomEvent<{ href: string }>} href-click - Fired when the auro-hyperlink is clicked.
|
|
463
|
+
*/
|
|
464
|
+
class AuroTail extends i$1 {
|
|
465
|
+
static get properties() {
|
|
466
|
+
return {
|
|
467
|
+
/**
|
|
468
|
+
* Sets the airline tail based on the tail codes used in auro-icon (e.g., AS, HA, PR).
|
|
469
|
+
* @type {string}
|
|
470
|
+
*/
|
|
471
|
+
tail: { type: String },
|
|
472
|
+
/**
|
|
473
|
+
* Sets the badge type to display (e.g., 'oneworld').
|
|
474
|
+
* @type {string}
|
|
475
|
+
*/
|
|
476
|
+
badge: { type: String },
|
|
477
|
+
/**
|
|
478
|
+
* Sets the size of the tail.
|
|
479
|
+
* @type {'xs'|'sm'|'md'|'lg'|'xl'|'2xl'}
|
|
480
|
+
*/
|
|
481
|
+
size: { type: String, reflect: true },
|
|
482
|
+
/**
|
|
483
|
+
* Renders the tail with an outline style.
|
|
484
|
+
* @type {boolean}
|
|
485
|
+
*/
|
|
486
|
+
outline: { type: Boolean, reflect: true },
|
|
487
|
+
/**
|
|
488
|
+
* Sets the border width around the tail.
|
|
489
|
+
* @type {string}
|
|
490
|
+
*/
|
|
491
|
+
borderWidth: { attribute: 'border-width', reflect: true },
|
|
492
|
+
/**
|
|
493
|
+
* Sets the border color around the tail.
|
|
494
|
+
* @type {string}
|
|
495
|
+
*/
|
|
496
|
+
borderColor: { type: String, attribute: 'border-color', reflect: true },
|
|
497
|
+
/**
|
|
498
|
+
* Sets the href for the tail.
|
|
499
|
+
* @type {string}
|
|
500
|
+
*/
|
|
501
|
+
href: { type: String, attribute: 'href' }
|
|
502
|
+
};
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* This will register this element with the browser.
|
|
507
|
+
* @param {string} [name="auro-tail"] - The name of element that you want to register to.
|
|
508
|
+
*
|
|
509
|
+
* @example
|
|
510
|
+
* AuroTail.register("custom-tail") // this will register this element to <custom-tail/>
|
|
511
|
+
*
|
|
512
|
+
*/
|
|
513
|
+
static register(name = "auro-tail") {
|
|
514
|
+
AuroLibraryRuntimeUtils.prototype.registerComponent(name, AuroTail);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
constructor() {
|
|
518
|
+
super();
|
|
519
|
+
/** @type {string} */
|
|
520
|
+
this.tail = 'AS';
|
|
521
|
+
/** @type {string | undefined} */
|
|
522
|
+
this.badge = undefined;
|
|
523
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'} */
|
|
524
|
+
this.size = 'lg';
|
|
525
|
+
/** @type {boolean} */
|
|
526
|
+
this.outline = false;
|
|
527
|
+
/** @type {string | undefined} */
|
|
528
|
+
this.borderWidth = undefined;
|
|
529
|
+
/** @type {string | undefined} */
|
|
530
|
+
this.borderColor = undefined;
|
|
531
|
+
/** @type {string | undefined} */
|
|
532
|
+
this.href = undefined;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* Determines the carrier variant based on tail code.
|
|
536
|
+
* Used internally for styling.
|
|
537
|
+
* @private
|
|
538
|
+
* @type {'aag'|'oa'}
|
|
539
|
+
*/
|
|
540
|
+
this._variant = 'oa';
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* Optional internal callback invoked on hyperlink click before the custom
|
|
544
|
+
* event is dispatched.
|
|
545
|
+
* @private
|
|
546
|
+
* @type {HrefClickCallback | undefined}
|
|
547
|
+
*/
|
|
548
|
+
this.onHrefClick = undefined;
|
|
549
|
+
|
|
550
|
+
const versioning = new AuroDependencyVersioning();
|
|
551
|
+
|
|
552
|
+
/**
|
|
553
|
+
* @private
|
|
554
|
+
*/
|
|
555
|
+
this.iconTag = versioning.generateTag("auro-icon", iconVersion, x);
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* @private
|
|
559
|
+
*/
|
|
560
|
+
this.runtimeUtils = new AuroLibraryRuntimeUtils();
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* Handles clicks on the href prop, invokes optional callback, and
|
|
565
|
+
* dispatches a cancelable custom event `href-click`.
|
|
566
|
+
*
|
|
567
|
+
* If the event is canceled by a consumer, navigation is prevented.
|
|
568
|
+
*
|
|
569
|
+
* @private
|
|
570
|
+
* @param {Event} ev - The click event
|
|
571
|
+
*/
|
|
572
|
+
_handleLinkClick(ev) {
|
|
573
|
+
// Invoke optional internal callback first
|
|
574
|
+
if (this.onHrefClick) {
|
|
575
|
+
this.onHrefClick(ev);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
const proceed = this.dispatchEvent(
|
|
579
|
+
new CustomEvent('href-click', {
|
|
580
|
+
detail: { href: this.href },
|
|
581
|
+
bubbles: true,
|
|
582
|
+
composed: true,
|
|
583
|
+
cancelable: true,
|
|
584
|
+
})
|
|
585
|
+
);
|
|
586
|
+
|
|
587
|
+
// If any listener called event.preventDefault() on the custom event,
|
|
588
|
+
// prevent the anchor's default navigation.
|
|
589
|
+
if (!proceed) {
|
|
590
|
+
ev.preventDefault();
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* Gets the carrier variant based on the current tail code.
|
|
596
|
+
* @readonly
|
|
597
|
+
* @returns {'aag'|'oa'} The carrier variant
|
|
598
|
+
*/
|
|
599
|
+
get variant() {
|
|
600
|
+
// Carrier mappings
|
|
601
|
+
const carriers = {
|
|
602
|
+
'aag': ['as', 'ha'],
|
|
603
|
+
'oa': ['oa']
|
|
604
|
+
};
|
|
605
|
+
|
|
606
|
+
const tailCode = this.tail.toLowerCase();
|
|
607
|
+
|
|
608
|
+
// Find which carrier group contains this tail code
|
|
609
|
+
for (const [variant, codes] of Object.entries(carriers)) {
|
|
610
|
+
if (codes.includes(tailCode)) {
|
|
611
|
+
return /** @type {'aag'|'oa'} */ (variant);
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
// Default to 'oa' for unknown tail codes
|
|
616
|
+
return 'oa';
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* Checks if this tail is inside an auro-tail-group element.
|
|
621
|
+
* @readonly
|
|
622
|
+
* @returns {boolean}
|
|
623
|
+
*/
|
|
624
|
+
get isInGroup() {
|
|
625
|
+
return !!this.closest('auro-tail-group');
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* Checks if this tail is in a horizontal group layout.
|
|
630
|
+
* @readonly
|
|
631
|
+
* @returns {boolean}
|
|
632
|
+
*/
|
|
633
|
+
get isInHorizontalGroup() {
|
|
634
|
+
const group = /** @type {HTMLElement|null} */ (this.closest('auro-tail-group'));
|
|
635
|
+
return !!group && group.getAttribute('layout') === 'horizontal';
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* Returns badge config when eligible.
|
|
640
|
+
* @readonly
|
|
641
|
+
* @returns {BadgeConfig | undefined}
|
|
642
|
+
*/
|
|
643
|
+
get badgeConfig() {
|
|
644
|
+
return this.badge && !this.isInGroup && BADGES_SIZES.includes(this.size)
|
|
645
|
+
? BADGE_LOGOS[/** @type {keyof typeof BADGE_LOGOS} */ (this.badge)]
|
|
646
|
+
: undefined;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* Checks if tail has border properties defined.
|
|
651
|
+
* @readonly
|
|
652
|
+
* @returns {boolean}
|
|
653
|
+
*/
|
|
654
|
+
get hasBorder() {
|
|
655
|
+
return this.borderColor !== undefined || this.borderWidth !== undefined;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* Checks if the tail should display as a clickable link.
|
|
660
|
+
* @readonly
|
|
661
|
+
* @returns {boolean}
|
|
662
|
+
*/
|
|
663
|
+
get shouldShowLink() {
|
|
664
|
+
return !!this.href && !this.isInGroup && LINKS_SIZES.includes(this.size);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* Gets the appropriate CSS type class based on tail size.
|
|
669
|
+
* @readonly
|
|
670
|
+
* @returns {string}
|
|
671
|
+
*/
|
|
672
|
+
get labelTypeClass() {
|
|
673
|
+
const sizeToTypeClassMap = {
|
|
674
|
+
'md': 'body-xs',
|
|
675
|
+
'lg': 'body-sm',
|
|
676
|
+
'xl': 'body-default',
|
|
677
|
+
'2xl': 'body-lg'
|
|
678
|
+
};
|
|
679
|
+
|
|
680
|
+
return sizeToTypeClassMap[/** @type {keyof typeof sizeToTypeClassMap} */ (this.size)] || 'body-sm';
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
connectedCallback() {
|
|
684
|
+
super.connectedCallback();
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
firstUpdated() {
|
|
688
|
+
// Add the tag name as an attribute if it is different than the component name.
|
|
689
|
+
this.runtimeUtils.handleComponentTagRename(this, "auro-tail");
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
/**
|
|
693
|
+
* @param {Map<string, any>} changedProperties - Changed properties
|
|
694
|
+
*/
|
|
695
|
+
updated(changedProperties) {
|
|
696
|
+
// Update internal variant when tail changes
|
|
697
|
+
if (changedProperties.has('tail')) {
|
|
698
|
+
this._variant = this.variant;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
// Reflect props to CSS custom properties on host.
|
|
702
|
+
this.applyCSSProperties();
|
|
703
|
+
super.updated(changedProperties);
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
/**
|
|
707
|
+
* Applies border styles and variant from props to CSS custom properties.
|
|
708
|
+
* @private
|
|
709
|
+
*/
|
|
710
|
+
applyCSSProperties() {
|
|
711
|
+
const normalizedWidth = normalizeBorderWidth(this.borderWidth);
|
|
712
|
+
const { borderColor, borderWidth } = resolveBorderProps({
|
|
713
|
+
borderColor: this.borderColor,
|
|
714
|
+
borderWidth: normalizedWidth,
|
|
715
|
+
});
|
|
716
|
+
|
|
717
|
+
// Set CSS custom properties when they exist.
|
|
718
|
+
if (borderColor) {
|
|
719
|
+
this.style.setProperty('--border-color', borderColor);
|
|
720
|
+
} else {
|
|
721
|
+
this.style.removeProperty('--border-color');
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
if (borderWidth) {
|
|
725
|
+
this.style.setProperty('--border-width', borderWidth);
|
|
726
|
+
} else {
|
|
727
|
+
this.style.removeProperty('--border-width');
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
// Set variant as data attribute for CSS targeting.
|
|
731
|
+
this.dataset.variant = this.variant;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
render() {
|
|
735
|
+
const badge = this.badgeConfig;
|
|
736
|
+
|
|
737
|
+
// Accessible name
|
|
738
|
+
const ariaLabel = badge
|
|
739
|
+
? i18nTemplate(ARIA_LABELS.tailLiveryWithBadge, { badgeAlt: badge.alt })
|
|
740
|
+
: ARIA_LABELS.tailLivery;
|
|
741
|
+
|
|
742
|
+
// Tail content
|
|
743
|
+
const tailContent = u$3`
|
|
744
|
+
<div class="border ${(this.hasBorder || this.isInHorizontalGroup) ? 'has-border' : ''}">
|
|
745
|
+
<div class="container" part="container" role="img" aria-label=${ariaLabel}>
|
|
746
|
+
<${this.iconTag} category="logos" name="tail-${this.tail.toUpperCase()}"></${this.iconTag}>
|
|
747
|
+
</div>
|
|
748
|
+
${badge && typeof badge.icon === 'function' ? u$3`<div class="badge">${badge.icon()}</div>` : null}
|
|
749
|
+
</div>
|
|
750
|
+
`;
|
|
751
|
+
|
|
752
|
+
// When href is provided and otherwise permitted, wrap tail and label in a single hyperlink.
|
|
753
|
+
if (this.shouldShowLink) {
|
|
754
|
+
return u$3`
|
|
755
|
+
<div class="tail">
|
|
756
|
+
<auro-hyperlink
|
|
757
|
+
href=${o$2(this.href)}
|
|
758
|
+
@click=${this._handleLinkClick}
|
|
759
|
+
>
|
|
760
|
+
${tailContent}
|
|
761
|
+
<slot name="display" class="label ${this.labelTypeClass}">${DEFAULT_AIRLINE_NAME}</slot>
|
|
762
|
+
</auro-hyperlink>
|
|
763
|
+
</div>
|
|
764
|
+
`;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
// Default: no hyperlink or when otherwise prevented.
|
|
768
|
+
return u$3`
|
|
769
|
+
<div class="tail">
|
|
770
|
+
${tailContent}
|
|
771
|
+
</div>
|
|
772
|
+
`;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
static get styles() {
|
|
776
|
+
return [styleCss];
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
var groupStyleCss = i$3`:host{width:var(--avatar-width);height:var(--avatar-width);min-width:var(--avatar-width);--avatar-width: var(--avatar-width-lg);--avatar-gradient: var(--gradient-oa);--tail-width: var(--tail-width-lg);--tail-offset-y: var(--tail-offset-y-lg);--href-label-gap: var(--href-label-gap-lg);--badge-width: var(--badge-width-lg);--border-color-default: rgba(88, 94, 103, 1);--border-color-white: #ffffff;--border-width-default: 4px;--border-display: none;--border-padding: 0;--border-radius-full: 999px;--tail-outline-color: var(--border-color-default);--tail-outline-width: 1px;--gradient-as: linear-gradient(180deg, #6899C6 0%, #CFE0EF 100%);--gradient-ha: linear-gradient(181deg, #CCB7ED -6.38%, #F9C2E7 99.46%);--gradient-oa: linear-gradient(181deg, #C5D0D9 -6.38%, #E8F1F8 99.46%);--tail-drop-shadow: drop-shadow(0 3px 3px rgba(0,0,0,.24)) drop-shadow(0 6px 14px rgba(0,0,0,.24));--z-index-border: 1;--z-index-badge: 2;--z-index-group-back: 1;--z-index-group-front: 2;--badge-translate-x: 0;--badge-translate-y: 0;--avatar-width-xs: 24px;--avatar-width-sm: 32px;--avatar-width-md: 48px;--avatar-width-lg: 60px;--avatar-width-xl: 96px;--avatar-width-2xl: 134px;--tail-width-xs: 19px;--tail-width-sm: 26px;--tail-width-md: 39px;--tail-width-lg: 48px;--tail-width-xl: 77px;--tail-width-2xl: 107px;--tail-offset-y-xs: 3px;--tail-offset-y-sm: 4px;--tail-offset-y-md: 6px;--tail-offset-y-lg: 7px;--tail-offset-y-xl: 13px;--tail-offset-y-2xl: 17px;--href-label-gap-md: 2px;--href-label-gap-lg: 4px;--href-label-gap-xl: 6px;--href-label-gap-2xl: 8px;--badge-width-md: 11px;--badge-width-lg: 14px;--badge-width-xl: 22px;--badge-width-2xl: 31px;--group-diagonal-width-xs: 42px;--group-diagonal-width-sm: 56px;--group-diagonal-width-md: 84px;--group-diagonal-width-lg: 105px;--group-horizontal-border-width-xs: 3px;--group-horizontal-overlap-xs: -2px;--group-horizontal-border-width-sm: 3px;--group-horizontal-overlap-sm: -2px;--group-horizontal-border-width-md: 4px;--group-horizontal-overlap-md: -6px;--group-horizontal-border-width-lg: 4px;--group-horizontal-overlap-lg: -10px}:host([size=xs]){--avatar-width: var(--avatar-width-xs);--tail-width: var(--tail-width-xs);--tail-offset-y: var(--tail-offset-y-xs)}:host([size=sm]){--avatar-width: var(--avatar-width-sm);--tail-width: var(--tail-width-sm);--tail-offset-y: var(--tail-offset-y-sm)}:host([size=md]){--avatar-width: var(--avatar-width-md);--tail-width: var(--tail-width-md);--tail-offset-y: var(--tail-offset-y-md);--badge-width: var(--badge-width-md);--href-label-gap: var(--href-label-gap-md);--badge-translate-x: 2px;--badge-translate-y: -7px}:host([size=lg]){--avatar-width: var(--avatar-width-lg);--tail-width: var(--tail-width-lg);--tail-offset-y: var(--tail-offset-y-lg);--badge-width: var(--badge-width-lg);--href-label-gap: var(--href-label-gap-lg);--badge-translate-x: 2px;--badge-translate-y: -4px}:host([size=xl]){--avatar-width: var(--avatar-width-xl);--tail-width: var(--tail-width-xl);--tail-offset-y: var(--tail-offset-y-xl);--badge-width: var(--badge-width-xl);--href-label-gap: var(--href-label-gap-xl)}:host([size="2xl"]){--avatar-width: var(--avatar-width-2xl);--tail-width: var(--tail-width-2xl);--tail-offset-y: var(--tail-offset-y-2xl);--badge-width: var(--badge-width-2xl);--href-label-gap: var(--href-label-gap-2xl)}:host([tail=as]),:host([tail=AS]){--avatar-gradient: var(--gradient-as)}:host([tail=ha]),:host([tail=HA]){--avatar-gradient: var(--gradient-ha)}:host([tail=oa]),:host([tail=OA]){--avatar-gradient: var(--gradient-oa)}:host([layout=horizontal][size=xs]){width:calc(2 * var(--avatar-width-xs) + var(--group-horizontal-overlap-xs));height:var(--avatar-width-xs)}:host([layout=horizontal][size=sm]){width:calc(2 * var(--avatar-width-sm) + var(--group-horizontal-overlap-sm));height:var(--avatar-width-sm)}:host([layout=horizontal][size=md]){width:calc(2 * var(--avatar-width-md) + var(--group-horizontal-overlap-md));height:var(--avatar-width-md)}:host([layout=horizontal][size=lg]){width:calc(2 * var(--avatar-width-lg) + var(--group-horizontal-overlap-lg));height:var(--avatar-width-lg)}.group{display:inline-flex;position:relative}.group.horizontal{gap:0}:host([layout=horizontal]) .group.horizontal ::slotted(auro-tail){position:relative;--border-color: var(--border-color-white);--border-padding: var(--border-width, var(--border-width-default))}:host([layout=horizontal][size=xs]) .group.horizontal ::slotted(auro-tail){--border-width: var(--group-horizontal-border-width-xs)}:host([layout=horizontal][size=xs]) .group.horizontal ::slotted(auro-tail:first-child){margin-right:var(--group-horizontal-overlap-xs);z-index:var(--z-index-group-front)}:host([layout=horizontal][size=sm]) .group.horizontal ::slotted(auro-tail){--border-width: var(--group-horizontal-border-width-sm)}:host([layout=horizontal][size=sm]) .group.horizontal ::slotted(auro-tail:first-child){margin-right:var(--group-horizontal-overlap-sm);z-index:var(--z-index-group-front)}:host([layout=horizontal][size=md]) .group.horizontal ::slotted(auro-tail){--border-width: var(--group-horizontal-border-width-md)}:host([layout=horizontal][size=md]) .group.horizontal ::slotted(auro-tail:first-child){margin-right:var(--group-horizontal-overlap-md);z-index:var(--z-index-group-front)}:host([layout=horizontal][size=lg]) .group.horizontal ::slotted(auro-tail){--border-width: var(--group-horizontal-border-width-lg)}:host([layout=horizontal][size=lg]) .group.horizontal ::slotted(auro-tail:first-child){margin-right:var(--group-horizontal-overlap-lg);z-index:var(--z-index-group-front)}:host([layout=horizontal]) .group.horizontal ::slotted(auro-tail:last-child){z-index:var(--z-index-group-back)}:host([layout=diagonal][size=xs]){width:var(--group-diagonal-width-xs);height:var(--group-diagonal-width-xs)}:host([layout=diagonal][size=xs]) .group.diagonal{width:var(--group-diagonal-width-xs);height:var(--group-diagonal-width-xs)}:host([layout=diagonal][size=sm]){width:var(--group-diagonal-width-sm);height:var(--group-diagonal-width-sm)}:host([layout=diagonal][size=sm]) .group.diagonal{width:var(--group-diagonal-width-sm);height:var(--group-diagonal-width-sm)}:host([layout=diagonal][size=md]){width:var(--group-diagonal-width-md);height:var(--group-diagonal-width-md)}:host([layout=diagonal][size=md]) .group.diagonal{width:var(--group-diagonal-width-md);height:var(--group-diagonal-width-md)}:host([layout=diagonal][size=lg]){width:var(--group-diagonal-width-lg);height:var(--group-diagonal-width-lg)}:host([layout=diagonal][size=lg]) .group.diagonal{width:var(--group-diagonal-width-lg);height:var(--group-diagonal-width-lg)}:host([layout=diagonal]) .group.diagonal ::slotted(auro-tail){position:absolute;--border-color: transparent;--border-width: 0;--border-padding: 0}.group.diagonal ::slotted(auro-tail:first-child){top:0;left:0;z-index:var(--z-index-group-front)}.group.diagonal ::slotted(auro-tail:nth-child(2)){bottom:0;right:0;z-index:var(--z-index-group-back)}
|
|
781
|
+
`;
|
|
782
|
+
|
|
783
|
+
/**
|
|
784
|
+
* The auro-tail-group element displays multiple auro-tail elements in a grouped layout. When tails are placed within a group, labels/links and badge logos are not displayed, and only two tails can be paired together.
|
|
785
|
+
*/
|
|
786
|
+
class AuroTailGroup extends i$1 {
|
|
787
|
+
static get properties() {
|
|
788
|
+
return {
|
|
789
|
+
/**
|
|
790
|
+
* Sets the layout direction for the group.
|
|
791
|
+
*/
|
|
792
|
+
layout: { type: String, attribute: 'layout', reflect: true },
|
|
793
|
+
/**
|
|
794
|
+
* Sets the size for all child tails in the group.
|
|
795
|
+
*/
|
|
796
|
+
size: { type: String, attribute: 'size', reflect: true },
|
|
797
|
+
/**
|
|
798
|
+
* Sets the border color for all child tails in the group. Does not apply to diagonal layout.
|
|
799
|
+
*/
|
|
800
|
+
borderColor: { type: String, attribute: 'border-color', reflect: true }
|
|
801
|
+
};
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
/**
|
|
805
|
+
* This will register this element with the browser.
|
|
806
|
+
* @param {string} [name="auro-tail-group"] - The name of element that you want to register to.
|
|
807
|
+
*
|
|
808
|
+
* @example
|
|
809
|
+
* AuroTailGroup.register("custom-tail-group") // this will register this element to <custom-tail-group/>
|
|
810
|
+
*
|
|
811
|
+
*/
|
|
812
|
+
static register(name = "auro-tail-group") {
|
|
813
|
+
AuroLibraryRuntimeUtils.prototype.registerComponent(name, AuroTailGroup);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
constructor() {
|
|
817
|
+
super();
|
|
818
|
+
/** @type {'horizontal' | 'diagonal'} */
|
|
819
|
+
this.layout = 'horizontal';
|
|
820
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg'} */
|
|
821
|
+
this.size = 'lg';
|
|
822
|
+
/** @type {string | undefined} */
|
|
823
|
+
this.borderColor = undefined;
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* @private
|
|
827
|
+
*/
|
|
828
|
+
this.runtimeUtils = new AuroLibraryRuntimeUtils();
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Prevent shadow DOM creation for unsupported sizes.
|
|
833
|
+
* @protected
|
|
834
|
+
*/
|
|
835
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
836
|
+
createRenderRoot() {
|
|
837
|
+
if (!GROUPS_SIZES.includes(this.size)) {
|
|
838
|
+
return this;
|
|
839
|
+
}
|
|
840
|
+
return super.createRenderRoot();
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
connectedCallback() {
|
|
844
|
+
super.connectedCallback();
|
|
845
|
+
this.updateChildTails();
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
firstUpdated() {
|
|
849
|
+
// Add the tag name as an attribute if it is different than the component name.
|
|
850
|
+
this.runtimeUtils.handleComponentTagRename(this, "auro-tail-group");
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* @param {Map<string, any>} changedProperties - Changed properties
|
|
855
|
+
*/
|
|
856
|
+
updated(changedProperties) {
|
|
857
|
+
super.updated(changedProperties);
|
|
858
|
+
if (changedProperties.has('size') || changedProperties.has('borderColor')) {
|
|
859
|
+
this.updateChildTails();
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Manages child tails - removes excess tails and updates sizes.
|
|
865
|
+
* @private
|
|
866
|
+
*/
|
|
867
|
+
updateChildTails() {
|
|
868
|
+
// Small delay to ensure slotted content is available
|
|
869
|
+
setTimeout(() => {
|
|
870
|
+
const tails = this.querySelectorAll('auro-tail');
|
|
871
|
+
|
|
872
|
+
// If size is not supported, remove all child tails from light DOM.
|
|
873
|
+
if (!GROUPS_SIZES.includes(this.size)) {
|
|
874
|
+
tails.forEach((tail) => {
|
|
875
|
+
tail.remove();
|
|
876
|
+
});
|
|
877
|
+
return;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
// Remove excess tails from DOM completely.
|
|
881
|
+
tails.forEach((tail, index) => {
|
|
882
|
+
if (index >= MAX_TAILS_IN_GROUP) {
|
|
883
|
+
tail.remove();
|
|
884
|
+
} else {
|
|
885
|
+
// Update size for allowed tails
|
|
886
|
+
/** @type {any} */ (tail).size = this.size;
|
|
887
|
+
|
|
888
|
+
// Update border-color for allowed tails
|
|
889
|
+
if (this.borderColor !== undefined) {
|
|
890
|
+
/** @type {any} */ (tail).borderColor = this.borderColor;
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
});
|
|
894
|
+
}, 0);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
/**
|
|
898
|
+
* Handle slot changes to update tails.
|
|
899
|
+
* @private
|
|
900
|
+
*/
|
|
901
|
+
handleSlotChange() {
|
|
902
|
+
this.updateChildTails();
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
render() {
|
|
906
|
+
// Don't render unsupported sizes.
|
|
907
|
+
if (!GROUPS_SIZES.includes(this.size)) {
|
|
908
|
+
return x$2``;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
return x$2`
|
|
912
|
+
<div class="group ${this.layout}">
|
|
913
|
+
<slot @slotchange=${this.handleSlotChange}></slot>
|
|
914
|
+
</div>
|
|
915
|
+
`;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
static get styles() {
|
|
919
|
+
return [groupStyleCss];
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
export { AuroTail as A, AuroTailGroup as a };
|