@aurodesignsystem-dev/auro-formkit 0.0.0-pr1571.0 → 0.0.0-pr1572.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/components/checkbox/demo/customize.min.js +1 -1
- package/components/checkbox/demo/getting-started.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/customize.min.js +7 -49
- package/components/combobox/demo/getting-started.min.js +7 -49
- package/components/combobox/demo/index.min.js +7 -49
- package/components/combobox/dist/index.js +7 -49
- package/components/combobox/dist/registered.js +7 -49
- package/components/counter/demo/customize.min.js +6 -48
- package/components/counter/demo/index.min.js +6 -48
- package/components/counter/dist/index.js +6 -48
- package/components/counter/dist/registered.js +6 -48
- package/components/datepicker/demo/customize.min.js +7 -49
- package/components/datepicker/demo/index.min.js +7 -49
- package/components/datepicker/dist/index.js +7 -49
- package/components/datepicker/dist/registered.js +7 -49
- package/components/dropdown/demo/customize.min.js +5 -47
- package/components/dropdown/demo/getting-started.min.js +5 -47
- package/components/dropdown/demo/index.min.js +5 -47
- package/components/dropdown/dist/index.js +5 -47
- package/components/dropdown/dist/registered.js +5 -47
- package/components/form/demo/customize.min.js +29 -197
- package/components/form/demo/getting-started.min.js +29 -197
- package/components/form/demo/index.min.js +29 -197
- package/components/form/demo/registerDemoDeps.min.js +29 -197
- package/components/input/demo/customize.min.js +1 -1
- package/components/input/demo/getting-started.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/customize.min.js +1 -1
- package/components/radio/demo/getting-started.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/customize.min.js +6 -48
- package/components/select/demo/getting-started.min.js +6 -48
- package/components/select/demo/index.min.js +6 -48
- package/components/select/dist/index.js +6 -48
- package/components/select/dist/registered.js +6 -48
- package/package.json +1 -2
|
@@ -1117,7 +1117,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
1117
1117
|
}
|
|
1118
1118
|
};
|
|
1119
1119
|
|
|
1120
|
-
var formkitVersion$1 = '
|
|
1120
|
+
var formkitVersion$1 = '202607231944';
|
|
1121
1121
|
|
|
1122
1122
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1123
1123
|
// See LICENSE in the project root for license information.
|
|
@@ -3647,57 +3647,15 @@ class AuroFloatingUI {
|
|
|
3647
3647
|
document.body.style.top = `-${this._savedScrollY}px`;
|
|
3648
3648
|
document.body.style.width = "100%";
|
|
3649
3649
|
|
|
3650
|
-
//
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
// bib drifts off-screen. Listen continuously so the transform tracks the pan.
|
|
3654
|
-
// RAF-throttled to avoid a style recalc on every scroll tick during the
|
|
3655
|
-
// keyboard animation; the pending frame is canceled on unlock so it cannot
|
|
3656
|
-
// reapply a translate after bibTransform has been restored.
|
|
3657
|
-
if (window.visualViewport) {
|
|
3658
|
-
this._viewportRafId = undefined;
|
|
3659
|
-
this._viewportHandler = () => {
|
|
3660
|
-
if (this._viewportRafId !== undefined) {
|
|
3661
|
-
return;
|
|
3662
|
-
}
|
|
3663
|
-
this._viewportRafId = requestAnimationFrame(() => {
|
|
3664
|
-
this._viewportRafId = undefined;
|
|
3665
|
-
if (element?.bib) {
|
|
3666
|
-
element.bib.style.transform = `translateY(${window.visualViewport.offsetTop}px)`;
|
|
3667
|
-
}
|
|
3668
|
-
});
|
|
3669
|
-
};
|
|
3670
|
-
window.visualViewport.addEventListener(
|
|
3671
|
-
"resize",
|
|
3672
|
-
this._viewportHandler,
|
|
3673
|
-
);
|
|
3674
|
-
window.visualViewport.addEventListener(
|
|
3675
|
-
"scroll",
|
|
3676
|
-
this._viewportHandler,
|
|
3677
|
-
);
|
|
3678
|
-
this._viewportHandler();
|
|
3650
|
+
// Move `bib` by the amount the viewport is shifted to stay aligned in fullscreen.
|
|
3651
|
+
if (element?.bib && window?.visualViewport?.offsetTop) {
|
|
3652
|
+
element.bib.style.transform = `translateY(${window?.visualViewport?.offsetTop}px)`;
|
|
3679
3653
|
}
|
|
3680
3654
|
|
|
3681
3655
|
this.lockTouchScroll(true);
|
|
3682
3656
|
}
|
|
3683
3657
|
} else {
|
|
3684
3658
|
if (this._scrollLocked) {
|
|
3685
|
-
if (this._viewportHandler && window.visualViewport) {
|
|
3686
|
-
window.visualViewport.removeEventListener(
|
|
3687
|
-
"resize",
|
|
3688
|
-
this._viewportHandler,
|
|
3689
|
-
);
|
|
3690
|
-
window.visualViewport.removeEventListener(
|
|
3691
|
-
"scroll",
|
|
3692
|
-
this._viewportHandler,
|
|
3693
|
-
);
|
|
3694
|
-
this._viewportHandler = undefined;
|
|
3695
|
-
}
|
|
3696
|
-
if (this._viewportRafId !== undefined) {
|
|
3697
|
-
cancelAnimationFrame(this._viewportRafId);
|
|
3698
|
-
this._viewportRafId = undefined;
|
|
3699
|
-
}
|
|
3700
|
-
|
|
3701
3659
|
document.documentElement.style.scrollbarGutter =
|
|
3702
3660
|
this._savedScrollStyles?.rootScrollbarGutter ?? "";
|
|
3703
3661
|
document.documentElement.style.overflow =
|
|
@@ -3789,7 +3747,7 @@ class AuroFloatingUI {
|
|
|
3789
3747
|
bibContent.style.width = "";
|
|
3790
3748
|
bibContent.style.height = "";
|
|
3791
3749
|
bibContent.style.maxWidth = "";
|
|
3792
|
-
bibContent.style.maxHeight =
|
|
3750
|
+
bibContent.style.maxHeight = `${window?.visualViewport?.height}px`;
|
|
3793
3751
|
this.configureTrial = 0;
|
|
3794
3752
|
} else if (this.configureTrial < MAX_CONFIGURATION_COUNT) {
|
|
3795
3753
|
this.configureTrial += 1;
|
|
@@ -5330,7 +5288,7 @@ class AuroHelpText extends i$2 {
|
|
|
5330
5288
|
}
|
|
5331
5289
|
}
|
|
5332
5290
|
|
|
5333
|
-
var formkitVersion = '
|
|
5291
|
+
var formkitVersion = '202607231944';
|
|
5334
5292
|
|
|
5335
5293
|
let AuroElement$1 = class AuroElement extends i$2 {
|
|
5336
5294
|
static get properties() {
|
|
@@ -1067,7 +1067,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
1067
1067
|
}
|
|
1068
1068
|
};
|
|
1069
1069
|
|
|
1070
|
-
var formkitVersion$1 = '
|
|
1070
|
+
var formkitVersion$1 = '202607231944';
|
|
1071
1071
|
|
|
1072
1072
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1073
1073
|
// See LICENSE in the project root for license information.
|
|
@@ -3579,57 +3579,15 @@ class AuroFloatingUI {
|
|
|
3579
3579
|
document.body.style.top = `-${this._savedScrollY}px`;
|
|
3580
3580
|
document.body.style.width = "100%";
|
|
3581
3581
|
|
|
3582
|
-
//
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
// bib drifts off-screen. Listen continuously so the transform tracks the pan.
|
|
3586
|
-
// RAF-throttled to avoid a style recalc on every scroll tick during the
|
|
3587
|
-
// keyboard animation; the pending frame is canceled on unlock so it cannot
|
|
3588
|
-
// reapply a translate after bibTransform has been restored.
|
|
3589
|
-
if (window.visualViewport) {
|
|
3590
|
-
this._viewportRafId = undefined;
|
|
3591
|
-
this._viewportHandler = () => {
|
|
3592
|
-
if (this._viewportRafId !== undefined) {
|
|
3593
|
-
return;
|
|
3594
|
-
}
|
|
3595
|
-
this._viewportRafId = requestAnimationFrame(() => {
|
|
3596
|
-
this._viewportRafId = undefined;
|
|
3597
|
-
if (element?.bib) {
|
|
3598
|
-
element.bib.style.transform = `translateY(${window.visualViewport.offsetTop}px)`;
|
|
3599
|
-
}
|
|
3600
|
-
});
|
|
3601
|
-
};
|
|
3602
|
-
window.visualViewport.addEventListener(
|
|
3603
|
-
"resize",
|
|
3604
|
-
this._viewportHandler,
|
|
3605
|
-
);
|
|
3606
|
-
window.visualViewport.addEventListener(
|
|
3607
|
-
"scroll",
|
|
3608
|
-
this._viewportHandler,
|
|
3609
|
-
);
|
|
3610
|
-
this._viewportHandler();
|
|
3582
|
+
// Move `bib` by the amount the viewport is shifted to stay aligned in fullscreen.
|
|
3583
|
+
if (element?.bib && window?.visualViewport?.offsetTop) {
|
|
3584
|
+
element.bib.style.transform = `translateY(${window?.visualViewport?.offsetTop}px)`;
|
|
3611
3585
|
}
|
|
3612
3586
|
|
|
3613
3587
|
this.lockTouchScroll(true);
|
|
3614
3588
|
}
|
|
3615
3589
|
} else {
|
|
3616
3590
|
if (this._scrollLocked) {
|
|
3617
|
-
if (this._viewportHandler && window.visualViewport) {
|
|
3618
|
-
window.visualViewport.removeEventListener(
|
|
3619
|
-
"resize",
|
|
3620
|
-
this._viewportHandler,
|
|
3621
|
-
);
|
|
3622
|
-
window.visualViewport.removeEventListener(
|
|
3623
|
-
"scroll",
|
|
3624
|
-
this._viewportHandler,
|
|
3625
|
-
);
|
|
3626
|
-
this._viewportHandler = undefined;
|
|
3627
|
-
}
|
|
3628
|
-
if (this._viewportRafId !== undefined) {
|
|
3629
|
-
cancelAnimationFrame(this._viewportRafId);
|
|
3630
|
-
this._viewportRafId = undefined;
|
|
3631
|
-
}
|
|
3632
|
-
|
|
3633
3591
|
document.documentElement.style.scrollbarGutter =
|
|
3634
3592
|
this._savedScrollStyles?.rootScrollbarGutter ?? "";
|
|
3635
3593
|
document.documentElement.style.overflow =
|
|
@@ -3721,7 +3679,7 @@ class AuroFloatingUI {
|
|
|
3721
3679
|
bibContent.style.width = "";
|
|
3722
3680
|
bibContent.style.height = "";
|
|
3723
3681
|
bibContent.style.maxWidth = "";
|
|
3724
|
-
bibContent.style.maxHeight =
|
|
3682
|
+
bibContent.style.maxHeight = `${window?.visualViewport?.height}px`;
|
|
3725
3683
|
this.configureTrial = 0;
|
|
3726
3684
|
} else if (this.configureTrial < MAX_CONFIGURATION_COUNT) {
|
|
3727
3685
|
this.configureTrial += 1;
|
|
@@ -5262,7 +5220,7 @@ class AuroHelpText extends LitElement {
|
|
|
5262
5220
|
}
|
|
5263
5221
|
}
|
|
5264
5222
|
|
|
5265
|
-
var formkitVersion = '
|
|
5223
|
+
var formkitVersion = '202607231944';
|
|
5266
5224
|
|
|
5267
5225
|
let AuroElement$1 = class AuroElement extends LitElement {
|
|
5268
5226
|
static get properties() {
|
|
@@ -1067,7 +1067,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
1067
1067
|
}
|
|
1068
1068
|
};
|
|
1069
1069
|
|
|
1070
|
-
var formkitVersion$1 = '
|
|
1070
|
+
var formkitVersion$1 = '202607231944';
|
|
1071
1071
|
|
|
1072
1072
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1073
1073
|
// See LICENSE in the project root for license information.
|
|
@@ -3579,57 +3579,15 @@ class AuroFloatingUI {
|
|
|
3579
3579
|
document.body.style.top = `-${this._savedScrollY}px`;
|
|
3580
3580
|
document.body.style.width = "100%";
|
|
3581
3581
|
|
|
3582
|
-
//
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
// bib drifts off-screen. Listen continuously so the transform tracks the pan.
|
|
3586
|
-
// RAF-throttled to avoid a style recalc on every scroll tick during the
|
|
3587
|
-
// keyboard animation; the pending frame is canceled on unlock so it cannot
|
|
3588
|
-
// reapply a translate after bibTransform has been restored.
|
|
3589
|
-
if (window.visualViewport) {
|
|
3590
|
-
this._viewportRafId = undefined;
|
|
3591
|
-
this._viewportHandler = () => {
|
|
3592
|
-
if (this._viewportRafId !== undefined) {
|
|
3593
|
-
return;
|
|
3594
|
-
}
|
|
3595
|
-
this._viewportRafId = requestAnimationFrame(() => {
|
|
3596
|
-
this._viewportRafId = undefined;
|
|
3597
|
-
if (element?.bib) {
|
|
3598
|
-
element.bib.style.transform = `translateY(${window.visualViewport.offsetTop}px)`;
|
|
3599
|
-
}
|
|
3600
|
-
});
|
|
3601
|
-
};
|
|
3602
|
-
window.visualViewport.addEventListener(
|
|
3603
|
-
"resize",
|
|
3604
|
-
this._viewportHandler,
|
|
3605
|
-
);
|
|
3606
|
-
window.visualViewport.addEventListener(
|
|
3607
|
-
"scroll",
|
|
3608
|
-
this._viewportHandler,
|
|
3609
|
-
);
|
|
3610
|
-
this._viewportHandler();
|
|
3582
|
+
// Move `bib` by the amount the viewport is shifted to stay aligned in fullscreen.
|
|
3583
|
+
if (element?.bib && window?.visualViewport?.offsetTop) {
|
|
3584
|
+
element.bib.style.transform = `translateY(${window?.visualViewport?.offsetTop}px)`;
|
|
3611
3585
|
}
|
|
3612
3586
|
|
|
3613
3587
|
this.lockTouchScroll(true);
|
|
3614
3588
|
}
|
|
3615
3589
|
} else {
|
|
3616
3590
|
if (this._scrollLocked) {
|
|
3617
|
-
if (this._viewportHandler && window.visualViewport) {
|
|
3618
|
-
window.visualViewport.removeEventListener(
|
|
3619
|
-
"resize",
|
|
3620
|
-
this._viewportHandler,
|
|
3621
|
-
);
|
|
3622
|
-
window.visualViewport.removeEventListener(
|
|
3623
|
-
"scroll",
|
|
3624
|
-
this._viewportHandler,
|
|
3625
|
-
);
|
|
3626
|
-
this._viewportHandler = undefined;
|
|
3627
|
-
}
|
|
3628
|
-
if (this._viewportRafId !== undefined) {
|
|
3629
|
-
cancelAnimationFrame(this._viewportRafId);
|
|
3630
|
-
this._viewportRafId = undefined;
|
|
3631
|
-
}
|
|
3632
|
-
|
|
3633
3591
|
document.documentElement.style.scrollbarGutter =
|
|
3634
3592
|
this._savedScrollStyles?.rootScrollbarGutter ?? "";
|
|
3635
3593
|
document.documentElement.style.overflow =
|
|
@@ -3721,7 +3679,7 @@ class AuroFloatingUI {
|
|
|
3721
3679
|
bibContent.style.width = "";
|
|
3722
3680
|
bibContent.style.height = "";
|
|
3723
3681
|
bibContent.style.maxWidth = "";
|
|
3724
|
-
bibContent.style.maxHeight =
|
|
3682
|
+
bibContent.style.maxHeight = `${window?.visualViewport?.height}px`;
|
|
3725
3683
|
this.configureTrial = 0;
|
|
3726
3684
|
} else if (this.configureTrial < MAX_CONFIGURATION_COUNT) {
|
|
3727
3685
|
this.configureTrial += 1;
|
|
@@ -5262,7 +5220,7 @@ class AuroHelpText extends LitElement {
|
|
|
5262
5220
|
}
|
|
5263
5221
|
}
|
|
5264
5222
|
|
|
5265
|
-
var formkitVersion = '
|
|
5223
|
+
var formkitVersion = '202607231944';
|
|
5266
5224
|
|
|
5267
5225
|
let AuroElement$1 = class AuroElement extends LitElement {
|
|
5268
5226
|
static get properties() {
|
|
@@ -13717,7 +13717,7 @@ class AuroBibtemplate extends i$1 {
|
|
|
13717
13717
|
}
|
|
13718
13718
|
}
|
|
13719
13719
|
|
|
13720
|
-
var formkitVersion$2 = '
|
|
13720
|
+
var formkitVersion$2 = '202607231944';
|
|
13721
13721
|
|
|
13722
13722
|
let l$1 = 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$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = 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$4 = 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$3=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]),: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}
|
|
13723
13723
|
`,u$6=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;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}}
|
|
@@ -17831,57 +17831,15 @@ class AuroFloatingUI {
|
|
|
17831
17831
|
document.body.style.top = `-${this._savedScrollY}px`;
|
|
17832
17832
|
document.body.style.width = "100%";
|
|
17833
17833
|
|
|
17834
|
-
//
|
|
17835
|
-
|
|
17836
|
-
|
|
17837
|
-
// bib drifts off-screen. Listen continuously so the transform tracks the pan.
|
|
17838
|
-
// RAF-throttled to avoid a style recalc on every scroll tick during the
|
|
17839
|
-
// keyboard animation; the pending frame is canceled on unlock so it cannot
|
|
17840
|
-
// reapply a translate after bibTransform has been restored.
|
|
17841
|
-
if (window.visualViewport) {
|
|
17842
|
-
this._viewportRafId = undefined;
|
|
17843
|
-
this._viewportHandler = () => {
|
|
17844
|
-
if (this._viewportRafId !== undefined) {
|
|
17845
|
-
return;
|
|
17846
|
-
}
|
|
17847
|
-
this._viewportRafId = requestAnimationFrame(() => {
|
|
17848
|
-
this._viewportRafId = undefined;
|
|
17849
|
-
if (element?.bib) {
|
|
17850
|
-
element.bib.style.transform = `translateY(${window.visualViewport.offsetTop}px)`;
|
|
17851
|
-
}
|
|
17852
|
-
});
|
|
17853
|
-
};
|
|
17854
|
-
window.visualViewport.addEventListener(
|
|
17855
|
-
"resize",
|
|
17856
|
-
this._viewportHandler,
|
|
17857
|
-
);
|
|
17858
|
-
window.visualViewport.addEventListener(
|
|
17859
|
-
"scroll",
|
|
17860
|
-
this._viewportHandler,
|
|
17861
|
-
);
|
|
17862
|
-
this._viewportHandler();
|
|
17834
|
+
// Move `bib` by the amount the viewport is shifted to stay aligned in fullscreen.
|
|
17835
|
+
if (element?.bib && window?.visualViewport?.offsetTop) {
|
|
17836
|
+
element.bib.style.transform = `translateY(${window?.visualViewport?.offsetTop}px)`;
|
|
17863
17837
|
}
|
|
17864
17838
|
|
|
17865
17839
|
this.lockTouchScroll(true);
|
|
17866
17840
|
}
|
|
17867
17841
|
} else {
|
|
17868
17842
|
if (this._scrollLocked) {
|
|
17869
|
-
if (this._viewportHandler && window.visualViewport) {
|
|
17870
|
-
window.visualViewport.removeEventListener(
|
|
17871
|
-
"resize",
|
|
17872
|
-
this._viewportHandler,
|
|
17873
|
-
);
|
|
17874
|
-
window.visualViewport.removeEventListener(
|
|
17875
|
-
"scroll",
|
|
17876
|
-
this._viewportHandler,
|
|
17877
|
-
);
|
|
17878
|
-
this._viewportHandler = undefined;
|
|
17879
|
-
}
|
|
17880
|
-
if (this._viewportRafId !== undefined) {
|
|
17881
|
-
cancelAnimationFrame(this._viewportRafId);
|
|
17882
|
-
this._viewportRafId = undefined;
|
|
17883
|
-
}
|
|
17884
|
-
|
|
17885
17843
|
document.documentElement.style.scrollbarGutter =
|
|
17886
17844
|
this._savedScrollStyles?.rootScrollbarGutter ?? "";
|
|
17887
17845
|
document.documentElement.style.overflow =
|
|
@@ -17973,7 +17931,7 @@ class AuroFloatingUI {
|
|
|
17973
17931
|
bibContent.style.width = "";
|
|
17974
17932
|
bibContent.style.height = "";
|
|
17975
17933
|
bibContent.style.maxWidth = "";
|
|
17976
|
-
bibContent.style.maxHeight =
|
|
17934
|
+
bibContent.style.maxHeight = `${window?.visualViewport?.height}px`;
|
|
17977
17935
|
this.configureTrial = 0;
|
|
17978
17936
|
} else if (this.configureTrial < MAX_CONFIGURATION_COUNT) {
|
|
17979
17937
|
this.configureTrial += 1;
|
|
@@ -19514,7 +19472,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
|
|
|
19514
19472
|
}
|
|
19515
19473
|
};
|
|
19516
19474
|
|
|
19517
|
-
var formkitVersion$1 = '
|
|
19475
|
+
var formkitVersion$1 = '202607231944';
|
|
19518
19476
|
|
|
19519
19477
|
let AuroElement$2 = class AuroElement extends i$1 {
|
|
19520
19478
|
static get properties() {
|
|
@@ -33203,7 +33161,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
|
|
|
33203
33161
|
}
|
|
33204
33162
|
};
|
|
33205
33163
|
|
|
33206
|
-
var formkitVersion = '
|
|
33164
|
+
var formkitVersion = '202607231944';
|
|
33207
33165
|
|
|
33208
33166
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
33209
33167
|
// See LICENSE in the project root for license information.
|
|
@@ -13717,7 +13717,7 @@ class AuroBibtemplate extends i$1 {
|
|
|
13717
13717
|
}
|
|
13718
13718
|
}
|
|
13719
13719
|
|
|
13720
|
-
var formkitVersion$2 = '
|
|
13720
|
+
var formkitVersion$2 = '202607231944';
|
|
13721
13721
|
|
|
13722
13722
|
let l$1 = 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$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = 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$4 = 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$3=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]),: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}
|
|
13723
13723
|
`,u$6=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;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}}
|
|
@@ -17831,57 +17831,15 @@ class AuroFloatingUI {
|
|
|
17831
17831
|
document.body.style.top = `-${this._savedScrollY}px`;
|
|
17832
17832
|
document.body.style.width = "100%";
|
|
17833
17833
|
|
|
17834
|
-
//
|
|
17835
|
-
|
|
17836
|
-
|
|
17837
|
-
// bib drifts off-screen. Listen continuously so the transform tracks the pan.
|
|
17838
|
-
// RAF-throttled to avoid a style recalc on every scroll tick during the
|
|
17839
|
-
// keyboard animation; the pending frame is canceled on unlock so it cannot
|
|
17840
|
-
// reapply a translate after bibTransform has been restored.
|
|
17841
|
-
if (window.visualViewport) {
|
|
17842
|
-
this._viewportRafId = undefined;
|
|
17843
|
-
this._viewportHandler = () => {
|
|
17844
|
-
if (this._viewportRafId !== undefined) {
|
|
17845
|
-
return;
|
|
17846
|
-
}
|
|
17847
|
-
this._viewportRafId = requestAnimationFrame(() => {
|
|
17848
|
-
this._viewportRafId = undefined;
|
|
17849
|
-
if (element?.bib) {
|
|
17850
|
-
element.bib.style.transform = `translateY(${window.visualViewport.offsetTop}px)`;
|
|
17851
|
-
}
|
|
17852
|
-
});
|
|
17853
|
-
};
|
|
17854
|
-
window.visualViewport.addEventListener(
|
|
17855
|
-
"resize",
|
|
17856
|
-
this._viewportHandler,
|
|
17857
|
-
);
|
|
17858
|
-
window.visualViewport.addEventListener(
|
|
17859
|
-
"scroll",
|
|
17860
|
-
this._viewportHandler,
|
|
17861
|
-
);
|
|
17862
|
-
this._viewportHandler();
|
|
17834
|
+
// Move `bib` by the amount the viewport is shifted to stay aligned in fullscreen.
|
|
17835
|
+
if (element?.bib && window?.visualViewport?.offsetTop) {
|
|
17836
|
+
element.bib.style.transform = `translateY(${window?.visualViewport?.offsetTop}px)`;
|
|
17863
17837
|
}
|
|
17864
17838
|
|
|
17865
17839
|
this.lockTouchScroll(true);
|
|
17866
17840
|
}
|
|
17867
17841
|
} else {
|
|
17868
17842
|
if (this._scrollLocked) {
|
|
17869
|
-
if (this._viewportHandler && window.visualViewport) {
|
|
17870
|
-
window.visualViewport.removeEventListener(
|
|
17871
|
-
"resize",
|
|
17872
|
-
this._viewportHandler,
|
|
17873
|
-
);
|
|
17874
|
-
window.visualViewport.removeEventListener(
|
|
17875
|
-
"scroll",
|
|
17876
|
-
this._viewportHandler,
|
|
17877
|
-
);
|
|
17878
|
-
this._viewportHandler = undefined;
|
|
17879
|
-
}
|
|
17880
|
-
if (this._viewportRafId !== undefined) {
|
|
17881
|
-
cancelAnimationFrame(this._viewportRafId);
|
|
17882
|
-
this._viewportRafId = undefined;
|
|
17883
|
-
}
|
|
17884
|
-
|
|
17885
17843
|
document.documentElement.style.scrollbarGutter =
|
|
17886
17844
|
this._savedScrollStyles?.rootScrollbarGutter ?? "";
|
|
17887
17845
|
document.documentElement.style.overflow =
|
|
@@ -17973,7 +17931,7 @@ class AuroFloatingUI {
|
|
|
17973
17931
|
bibContent.style.width = "";
|
|
17974
17932
|
bibContent.style.height = "";
|
|
17975
17933
|
bibContent.style.maxWidth = "";
|
|
17976
|
-
bibContent.style.maxHeight =
|
|
17934
|
+
bibContent.style.maxHeight = `${window?.visualViewport?.height}px`;
|
|
17977
17935
|
this.configureTrial = 0;
|
|
17978
17936
|
} else if (this.configureTrial < MAX_CONFIGURATION_COUNT) {
|
|
17979
17937
|
this.configureTrial += 1;
|
|
@@ -19514,7 +19472,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
|
|
|
19514
19472
|
}
|
|
19515
19473
|
};
|
|
19516
19474
|
|
|
19517
|
-
var formkitVersion$1 = '
|
|
19475
|
+
var formkitVersion$1 = '202607231944';
|
|
19518
19476
|
|
|
19519
19477
|
let AuroElement$2 = class AuroElement extends i$1 {
|
|
19520
19478
|
static get properties() {
|
|
@@ -33203,7 +33161,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
|
|
|
33203
33161
|
}
|
|
33204
33162
|
};
|
|
33205
33163
|
|
|
33206
|
-
var formkitVersion = '
|
|
33164
|
+
var formkitVersion = '202607231944';
|
|
33207
33165
|
|
|
33208
33166
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
33209
33167
|
// See LICENSE in the project root for license information.
|