@aurodesignsystem-dev/auro-formkit 0.0.0-pr1379.0 → 0.0.0-pr1379.2
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/README.md +72 -72
- package/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.min.js +27 -14
- package/components/combobox/demo/index.min.js +27 -14
- package/components/combobox/dist/index.js +27 -14
- package/components/combobox/dist/registered.js +27 -14
- package/components/counter/demo/api.min.js +26 -13
- package/components/counter/demo/index.min.js +26 -13
- package/components/counter/dist/index.js +26 -13
- package/components/counter/dist/registered.js +26 -13
- package/components/datepicker/demo/api.min.js +27 -14
- package/components/datepicker/demo/index.min.js +27 -14
- package/components/datepicker/dist/index.js +27 -14
- package/components/datepicker/dist/registered.js +27 -14
- package/components/dropdown/demo/api.min.js +25 -12
- package/components/dropdown/demo/index.min.js +25 -12
- package/components/dropdown/dist/index.js +25 -12
- package/components/dropdown/dist/registered.js +25 -12
- package/components/form/demo/api.min.js +109 -57
- package/components/form/demo/index.min.js +109 -57
- package/components/input/demo/api.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +26 -13
- package/components/select/demo/index.min.js +26 -13
- package/components/select/dist/index.js +26 -13
- package/components/select/dist/registered.js +26 -13
- package/custom-elements.json +1402 -1402
- package/package.json +2 -2
|
@@ -2336,19 +2336,32 @@ class AuroFloatingUI {
|
|
|
2336
2336
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
2337
2337
|
*/
|
|
2338
2338
|
hideBib(eventType = "unknown") {
|
|
2339
|
-
if (
|
|
2340
|
-
|
|
2341
|
-
|
|
2339
|
+
if (this.element.disabled) {
|
|
2340
|
+
return;
|
|
2341
|
+
}
|
|
2342
2342
|
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
this.showing = false;
|
|
2349
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
2350
|
-
}
|
|
2343
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
2344
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
2345
|
+
// Escape key or focus loss.
|
|
2346
|
+
if (this.element.noToggle && eventType === "click") {
|
|
2347
|
+
return;
|
|
2351
2348
|
}
|
|
2349
|
+
|
|
2350
|
+
this.lockScroll(false);
|
|
2351
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
2352
|
+
|
|
2353
|
+
if (this.element.isPopoverVisible) {
|
|
2354
|
+
this.element.isPopoverVisible = false;
|
|
2355
|
+
}
|
|
2356
|
+
if (this.showing) {
|
|
2357
|
+
this.cleanupHideHandlers();
|
|
2358
|
+
this.showing = false;
|
|
2359
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
2363
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
2364
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
2352
2365
|
document.expandedAuroFloater = null;
|
|
2353
2366
|
}
|
|
2354
2367
|
|
|
@@ -3706,7 +3719,7 @@ class AuroHelpText extends i {
|
|
|
3706
3719
|
}
|
|
3707
3720
|
}
|
|
3708
3721
|
|
|
3709
|
-
var formkitVersion = '
|
|
3722
|
+
var formkitVersion = '202603172233';
|
|
3710
3723
|
|
|
3711
3724
|
class AuroElement extends i {
|
|
3712
3725
|
static get properties() {
|
|
@@ -2276,19 +2276,32 @@ class AuroFloatingUI {
|
|
|
2276
2276
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
2277
2277
|
*/
|
|
2278
2278
|
hideBib(eventType = "unknown") {
|
|
2279
|
-
if (
|
|
2280
|
-
|
|
2281
|
-
|
|
2279
|
+
if (this.element.disabled) {
|
|
2280
|
+
return;
|
|
2281
|
+
}
|
|
2282
2282
|
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
this.showing = false;
|
|
2289
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
2290
|
-
}
|
|
2283
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
2284
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
2285
|
+
// Escape key or focus loss.
|
|
2286
|
+
if (this.element.noToggle && eventType === "click") {
|
|
2287
|
+
return;
|
|
2291
2288
|
}
|
|
2289
|
+
|
|
2290
|
+
this.lockScroll(false);
|
|
2291
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
2292
|
+
|
|
2293
|
+
if (this.element.isPopoverVisible) {
|
|
2294
|
+
this.element.isPopoverVisible = false;
|
|
2295
|
+
}
|
|
2296
|
+
if (this.showing) {
|
|
2297
|
+
this.cleanupHideHandlers();
|
|
2298
|
+
this.showing = false;
|
|
2299
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
2303
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
2304
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
2292
2305
|
document.expandedAuroFloater = null;
|
|
2293
2306
|
}
|
|
2294
2307
|
|
|
@@ -3646,7 +3659,7 @@ class AuroHelpText extends i {
|
|
|
3646
3659
|
}
|
|
3647
3660
|
}
|
|
3648
3661
|
|
|
3649
|
-
var formkitVersion = '
|
|
3662
|
+
var formkitVersion = '202603172233';
|
|
3650
3663
|
|
|
3651
3664
|
class AuroElement extends i {
|
|
3652
3665
|
static get properties() {
|
|
@@ -2210,19 +2210,32 @@ class AuroFloatingUI {
|
|
|
2210
2210
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
2211
2211
|
*/
|
|
2212
2212
|
hideBib(eventType = "unknown") {
|
|
2213
|
-
if (
|
|
2214
|
-
|
|
2215
|
-
|
|
2213
|
+
if (this.element.disabled) {
|
|
2214
|
+
return;
|
|
2215
|
+
}
|
|
2216
2216
|
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
this.showing = false;
|
|
2223
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
2224
|
-
}
|
|
2217
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
2218
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
2219
|
+
// Escape key or focus loss.
|
|
2220
|
+
if (this.element.noToggle && eventType === "click") {
|
|
2221
|
+
return;
|
|
2225
2222
|
}
|
|
2223
|
+
|
|
2224
|
+
this.lockScroll(false);
|
|
2225
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
2226
|
+
|
|
2227
|
+
if (this.element.isPopoverVisible) {
|
|
2228
|
+
this.element.isPopoverVisible = false;
|
|
2229
|
+
}
|
|
2230
|
+
if (this.showing) {
|
|
2231
|
+
this.cleanupHideHandlers();
|
|
2232
|
+
this.showing = false;
|
|
2233
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
2237
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
2238
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
2226
2239
|
document.expandedAuroFloater = null;
|
|
2227
2240
|
}
|
|
2228
2241
|
|
|
@@ -3555,7 +3568,7 @@ class AuroHelpText extends LitElement {
|
|
|
3555
3568
|
}
|
|
3556
3569
|
}
|
|
3557
3570
|
|
|
3558
|
-
var formkitVersion = '
|
|
3571
|
+
var formkitVersion = '202603172233';
|
|
3559
3572
|
|
|
3560
3573
|
class AuroElement extends LitElement {
|
|
3561
3574
|
static get properties() {
|
|
@@ -2210,19 +2210,32 @@ class AuroFloatingUI {
|
|
|
2210
2210
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
2211
2211
|
*/
|
|
2212
2212
|
hideBib(eventType = "unknown") {
|
|
2213
|
-
if (
|
|
2214
|
-
|
|
2215
|
-
|
|
2213
|
+
if (this.element.disabled) {
|
|
2214
|
+
return;
|
|
2215
|
+
}
|
|
2216
2216
|
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
this.showing = false;
|
|
2223
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
2224
|
-
}
|
|
2217
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
2218
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
2219
|
+
// Escape key or focus loss.
|
|
2220
|
+
if (this.element.noToggle && eventType === "click") {
|
|
2221
|
+
return;
|
|
2225
2222
|
}
|
|
2223
|
+
|
|
2224
|
+
this.lockScroll(false);
|
|
2225
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
2226
|
+
|
|
2227
|
+
if (this.element.isPopoverVisible) {
|
|
2228
|
+
this.element.isPopoverVisible = false;
|
|
2229
|
+
}
|
|
2230
|
+
if (this.showing) {
|
|
2231
|
+
this.cleanupHideHandlers();
|
|
2232
|
+
this.showing = false;
|
|
2233
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
2237
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
2238
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
2226
2239
|
document.expandedAuroFloater = null;
|
|
2227
2240
|
}
|
|
2228
2241
|
|
|
@@ -3555,7 +3568,7 @@ class AuroHelpText extends LitElement {
|
|
|
3555
3568
|
}
|
|
3556
3569
|
}
|
|
3557
3570
|
|
|
3558
|
-
var formkitVersion = '
|
|
3571
|
+
var formkitVersion = '202603172233';
|
|
3559
3572
|
|
|
3560
3573
|
class AuroElement extends LitElement {
|
|
3561
3574
|
static get properties() {
|
|
@@ -7458,7 +7458,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$4 {
|
|
|
7458
7458
|
}
|
|
7459
7459
|
};
|
|
7460
7460
|
|
|
7461
|
-
var formkitVersion$8 = '
|
|
7461
|
+
var formkitVersion$8 = '202603172233';
|
|
7462
7462
|
|
|
7463
7463
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
7464
7464
|
// See LICENSE in the project root for license information.
|
|
@@ -17366,7 +17366,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$4 {
|
|
|
17366
17366
|
}
|
|
17367
17367
|
};
|
|
17368
17368
|
|
|
17369
|
-
var formkitVersion$2$1 = '
|
|
17369
|
+
var formkitVersion$2$1 = '202603172233';
|
|
17370
17370
|
|
|
17371
17371
|
let l$1$2 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$3`${s$6(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1$2 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$1$2 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$1$3=i$7`: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]),:host([appearance=brand]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]),:host([appearance=inverse]){--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}
|
|
17372
17372
|
`,u$4$2=i$7`.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;box-sizing:border-box}: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:calc(1rem + var(--margin) * 2)}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(1.95rem + var(--margin-xs) * 6);height:calc(.65rem + var(--margin-xs) * 2)}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:calc(2rem + var(--margin-sm) * 2)}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:calc(3rem + var(--margin-md) * 2)}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:calc(5rem + var(--margin-lg) * 2)}: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}}
|
|
@@ -20048,19 +20048,32 @@ let AuroFloatingUI$3 = class AuroFloatingUI {
|
|
|
20048
20048
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
20049
20049
|
*/
|
|
20050
20050
|
hideBib(eventType = "unknown") {
|
|
20051
|
-
if (
|
|
20052
|
-
|
|
20053
|
-
|
|
20051
|
+
if (this.element.disabled) {
|
|
20052
|
+
return;
|
|
20053
|
+
}
|
|
20054
20054
|
|
|
20055
|
-
|
|
20056
|
-
|
|
20057
|
-
|
|
20058
|
-
|
|
20059
|
-
|
|
20060
|
-
this.showing = false;
|
|
20061
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
20062
|
-
}
|
|
20055
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
20056
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
20057
|
+
// Escape key or focus loss.
|
|
20058
|
+
if (this.element.noToggle && eventType === "click") {
|
|
20059
|
+
return;
|
|
20063
20060
|
}
|
|
20061
|
+
|
|
20062
|
+
this.lockScroll(false);
|
|
20063
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
20064
|
+
|
|
20065
|
+
if (this.element.isPopoverVisible) {
|
|
20066
|
+
this.element.isPopoverVisible = false;
|
|
20067
|
+
}
|
|
20068
|
+
if (this.showing) {
|
|
20069
|
+
this.cleanupHideHandlers();
|
|
20070
|
+
this.showing = false;
|
|
20071
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
20072
|
+
}
|
|
20073
|
+
|
|
20074
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
20075
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
20076
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
20064
20077
|
document.expandedAuroFloater = null;
|
|
20065
20078
|
}
|
|
20066
20079
|
|
|
@@ -21393,7 +21406,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$4 {
|
|
|
21393
21406
|
}
|
|
21394
21407
|
};
|
|
21395
21408
|
|
|
21396
|
-
var formkitVersion$1$3 = '
|
|
21409
|
+
var formkitVersion$1$3 = '202603172233';
|
|
21397
21410
|
|
|
21398
21411
|
let AuroElement$2$2 = class AuroElement extends i$4 {
|
|
21399
21412
|
static get properties() {
|
|
@@ -29141,7 +29154,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$4 {
|
|
|
29141
29154
|
}
|
|
29142
29155
|
};
|
|
29143
29156
|
|
|
29144
|
-
var formkitVersion$7 = '
|
|
29157
|
+
var formkitVersion$7 = '202603172233';
|
|
29145
29158
|
|
|
29146
29159
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
29147
29160
|
// See LICENSE in the project root for license information.
|
|
@@ -33701,7 +33714,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$4 {
|
|
|
33701
33714
|
}
|
|
33702
33715
|
};
|
|
33703
33716
|
|
|
33704
|
-
var formkitVersion$1$2 = '
|
|
33717
|
+
var formkitVersion$1$2 = '202603172233';
|
|
33705
33718
|
|
|
33706
33719
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
33707
33720
|
// See LICENSE in the project root for license information.
|
|
@@ -36331,19 +36344,32 @@ let AuroFloatingUI$2 = class AuroFloatingUI {
|
|
|
36331
36344
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
36332
36345
|
*/
|
|
36333
36346
|
hideBib(eventType = "unknown") {
|
|
36334
|
-
if (
|
|
36335
|
-
|
|
36336
|
-
|
|
36347
|
+
if (this.element.disabled) {
|
|
36348
|
+
return;
|
|
36349
|
+
}
|
|
36337
36350
|
|
|
36338
|
-
|
|
36339
|
-
|
|
36340
|
-
|
|
36341
|
-
|
|
36342
|
-
|
|
36343
|
-
this.showing = false;
|
|
36344
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
36345
|
-
}
|
|
36351
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
36352
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
36353
|
+
// Escape key or focus loss.
|
|
36354
|
+
if (this.element.noToggle && eventType === "click") {
|
|
36355
|
+
return;
|
|
36346
36356
|
}
|
|
36357
|
+
|
|
36358
|
+
this.lockScroll(false);
|
|
36359
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
36360
|
+
|
|
36361
|
+
if (this.element.isPopoverVisible) {
|
|
36362
|
+
this.element.isPopoverVisible = false;
|
|
36363
|
+
}
|
|
36364
|
+
if (this.showing) {
|
|
36365
|
+
this.cleanupHideHandlers();
|
|
36366
|
+
this.showing = false;
|
|
36367
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
36368
|
+
}
|
|
36369
|
+
|
|
36370
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
36371
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
36372
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
36347
36373
|
document.expandedAuroFloater = null;
|
|
36348
36374
|
}
|
|
36349
36375
|
|
|
@@ -37676,7 +37702,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$4 {
|
|
|
37676
37702
|
}
|
|
37677
37703
|
};
|
|
37678
37704
|
|
|
37679
|
-
var formkitVersion$6 = '
|
|
37705
|
+
var formkitVersion$6 = '202603172233';
|
|
37680
37706
|
|
|
37681
37707
|
let AuroElement$1$2 = class AuroElement extends i$4 {
|
|
37682
37708
|
static get properties() {
|
|
@@ -41744,7 +41770,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$4 {
|
|
|
41744
41770
|
}
|
|
41745
41771
|
};
|
|
41746
41772
|
|
|
41747
|
-
var formkitVersion$5 = '
|
|
41773
|
+
var formkitVersion$5 = '202603172233';
|
|
41748
41774
|
|
|
41749
41775
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
41750
41776
|
// See LICENSE in the project root for license information.
|
|
@@ -43913,7 +43939,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$4 {
|
|
|
43913
43939
|
}
|
|
43914
43940
|
};
|
|
43915
43941
|
|
|
43916
|
-
var formkitVersion$4 = '
|
|
43942
|
+
var formkitVersion$4 = '202603172233';
|
|
43917
43943
|
|
|
43918
43944
|
// Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
43919
43945
|
// See LICENSE in the project root for license information.
|
|
@@ -47795,19 +47821,32 @@ let AuroFloatingUI$1 = class AuroFloatingUI {
|
|
|
47795
47821
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
47796
47822
|
*/
|
|
47797
47823
|
hideBib(eventType = "unknown") {
|
|
47798
|
-
if (
|
|
47799
|
-
|
|
47800
|
-
|
|
47824
|
+
if (this.element.disabled) {
|
|
47825
|
+
return;
|
|
47826
|
+
}
|
|
47801
47827
|
|
|
47802
|
-
|
|
47803
|
-
|
|
47804
|
-
|
|
47805
|
-
|
|
47806
|
-
|
|
47807
|
-
this.showing = false;
|
|
47808
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
47809
|
-
}
|
|
47828
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
47829
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
47830
|
+
// Escape key or focus loss.
|
|
47831
|
+
if (this.element.noToggle && eventType === "click") {
|
|
47832
|
+
return;
|
|
47810
47833
|
}
|
|
47834
|
+
|
|
47835
|
+
this.lockScroll(false);
|
|
47836
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
47837
|
+
|
|
47838
|
+
if (this.element.isPopoverVisible) {
|
|
47839
|
+
this.element.isPopoverVisible = false;
|
|
47840
|
+
}
|
|
47841
|
+
if (this.showing) {
|
|
47842
|
+
this.cleanupHideHandlers();
|
|
47843
|
+
this.showing = false;
|
|
47844
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
47845
|
+
}
|
|
47846
|
+
|
|
47847
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
47848
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
47849
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
47811
47850
|
document.expandedAuroFloater = null;
|
|
47812
47851
|
}
|
|
47813
47852
|
|
|
@@ -49140,7 +49179,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
|
|
|
49140
49179
|
}
|
|
49141
49180
|
};
|
|
49142
49181
|
|
|
49143
|
-
var formkitVersion$2 = '
|
|
49182
|
+
var formkitVersion$2 = '202603172233';
|
|
49144
49183
|
|
|
49145
49184
|
let AuroElement$2$1 = class AuroElement extends i$4 {
|
|
49146
49185
|
static get properties() {
|
|
@@ -56888,7 +56927,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$4 {
|
|
|
56888
56927
|
}
|
|
56889
56928
|
};
|
|
56890
56929
|
|
|
56891
|
-
var formkitVersion$1$1 = '
|
|
56930
|
+
var formkitVersion$1$1 = '202603172233';
|
|
56892
56931
|
|
|
56893
56932
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
56894
56933
|
// See LICENSE in the project root for license information.
|
|
@@ -57927,7 +57966,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$4 {
|
|
|
57927
57966
|
}
|
|
57928
57967
|
};
|
|
57929
57968
|
|
|
57930
|
-
var formkitVersion$3 = '
|
|
57969
|
+
var formkitVersion$3 = '202603172233';
|
|
57931
57970
|
|
|
57932
57971
|
var styleCss$1$3 = i$7`.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{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
|
|
57933
57972
|
|
|
@@ -65401,19 +65440,32 @@ class AuroFloatingUI {
|
|
|
65401
65440
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
65402
65441
|
*/
|
|
65403
65442
|
hideBib(eventType = "unknown") {
|
|
65404
|
-
if (
|
|
65405
|
-
|
|
65406
|
-
|
|
65443
|
+
if (this.element.disabled) {
|
|
65444
|
+
return;
|
|
65445
|
+
}
|
|
65407
65446
|
|
|
65408
|
-
|
|
65409
|
-
|
|
65410
|
-
|
|
65411
|
-
|
|
65412
|
-
|
|
65413
|
-
this.showing = false;
|
|
65414
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
65415
|
-
}
|
|
65447
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
65448
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
65449
|
+
// Escape key or focus loss.
|
|
65450
|
+
if (this.element.noToggle && eventType === "click") {
|
|
65451
|
+
return;
|
|
65416
65452
|
}
|
|
65453
|
+
|
|
65454
|
+
this.lockScroll(false);
|
|
65455
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
65456
|
+
|
|
65457
|
+
if (this.element.isPopoverVisible) {
|
|
65458
|
+
this.element.isPopoverVisible = false;
|
|
65459
|
+
}
|
|
65460
|
+
if (this.showing) {
|
|
65461
|
+
this.cleanupHideHandlers();
|
|
65462
|
+
this.showing = false;
|
|
65463
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
65464
|
+
}
|
|
65465
|
+
|
|
65466
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
65467
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
65468
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
65417
65469
|
document.expandedAuroFloater = null;
|
|
65418
65470
|
}
|
|
65419
65471
|
|
|
@@ -66746,7 +66798,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
|
|
|
66746
66798
|
}
|
|
66747
66799
|
};
|
|
66748
66800
|
|
|
66749
|
-
var formkitVersion$1 = '
|
|
66801
|
+
var formkitVersion$1 = '202603172233';
|
|
66750
66802
|
|
|
66751
66803
|
class AuroElement extends i$4 {
|
|
66752
66804
|
static get properties() {
|
|
@@ -68490,7 +68542,7 @@ class AuroHelpText extends i$4 {
|
|
|
68490
68542
|
}
|
|
68491
68543
|
}
|
|
68492
68544
|
|
|
68493
|
-
var formkitVersion = '
|
|
68545
|
+
var formkitVersion = '202603172233';
|
|
68494
68546
|
|
|
68495
68547
|
var styleCss = i$7`.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}.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, 0.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, 0.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, 0.625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
|
|
68496
68548
|
|