@aurodesignsystem-dev/auro-formkit 0.0.0-pr1379.1 → 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/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/package.json +2 -2
|
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
|
|
|
1687
1687
|
}
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
|
-
var formkitVersion = '
|
|
1690
|
+
var formkitVersion = '202603172233';
|
|
1691
1691
|
|
|
1692
1692
|
// Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1693
1693
|
// See LICENSE in the project root for license information.
|
|
@@ -1679,7 +1679,7 @@ class AuroHelpText extends i$2 {
|
|
|
1679
1679
|
}
|
|
1680
1680
|
}
|
|
1681
1681
|
|
|
1682
|
-
var formkitVersion = '
|
|
1682
|
+
var formkitVersion = '202603172233';
|
|
1683
1683
|
|
|
1684
1684
|
// Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1685
1685
|
// See LICENSE in the project root for license information.
|
|
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
|
|
|
1632
1632
|
}
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
|
-
var formkitVersion = '
|
|
1635
|
+
var formkitVersion = '202603172233';
|
|
1636
1636
|
|
|
1637
1637
|
// Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1638
1638
|
// See LICENSE in the project root for license information.
|
|
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
|
|
|
1632
1632
|
}
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
|
-
var formkitVersion = '
|
|
1635
|
+
var formkitVersion = '202603172233';
|
|
1636
1636
|
|
|
1637
1637
|
// Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1638
1638
|
// See LICENSE in the project root for license information.
|
|
@@ -3611,19 +3611,32 @@ class AuroFloatingUI {
|
|
|
3611
3611
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
3612
3612
|
*/
|
|
3613
3613
|
hideBib(eventType = "unknown") {
|
|
3614
|
-
if (
|
|
3615
|
-
|
|
3616
|
-
|
|
3614
|
+
if (this.element.disabled) {
|
|
3615
|
+
return;
|
|
3616
|
+
}
|
|
3617
3617
|
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
this.showing = false;
|
|
3624
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
3625
|
-
}
|
|
3618
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
3619
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
3620
|
+
// Escape key or focus loss.
|
|
3621
|
+
if (this.element.noToggle && eventType === "click") {
|
|
3622
|
+
return;
|
|
3626
3623
|
}
|
|
3624
|
+
|
|
3625
|
+
this.lockScroll(false);
|
|
3626
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
3627
|
+
|
|
3628
|
+
if (this.element.isPopoverVisible) {
|
|
3629
|
+
this.element.isPopoverVisible = false;
|
|
3630
|
+
}
|
|
3631
|
+
if (this.showing) {
|
|
3632
|
+
this.cleanupHideHandlers();
|
|
3633
|
+
this.showing = false;
|
|
3634
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
3638
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
3639
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
3627
3640
|
document.expandedAuroFloater = null;
|
|
3628
3641
|
}
|
|
3629
3642
|
|
|
@@ -4956,7 +4969,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
|
|
|
4956
4969
|
}
|
|
4957
4970
|
};
|
|
4958
4971
|
|
|
4959
|
-
var formkitVersion$2 = '
|
|
4972
|
+
var formkitVersion$2 = '202603172233';
|
|
4960
4973
|
|
|
4961
4974
|
let AuroElement$2 = class AuroElement extends i$4 {
|
|
4962
4975
|
static get properties() {
|
|
@@ -12711,7 +12724,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
|
|
|
12711
12724
|
}
|
|
12712
12725
|
};
|
|
12713
12726
|
|
|
12714
|
-
var formkitVersion$1 = '
|
|
12727
|
+
var formkitVersion$1 = '202603172233';
|
|
12715
12728
|
|
|
12716
12729
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12717
12730
|
// See LICENSE in the project root for license information.
|
|
@@ -13750,7 +13763,7 @@ class AuroBibtemplate extends i$4 {
|
|
|
13750
13763
|
}
|
|
13751
13764
|
}
|
|
13752
13765
|
|
|
13753
|
-
var formkitVersion = '
|
|
13766
|
+
var formkitVersion = '202603172233';
|
|
13754
13767
|
|
|
13755
13768
|
var styleCss$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}`;
|
|
13756
13769
|
|
|
@@ -3534,19 +3534,32 @@ class AuroFloatingUI {
|
|
|
3534
3534
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
3535
3535
|
*/
|
|
3536
3536
|
hideBib(eventType = "unknown") {
|
|
3537
|
-
if (
|
|
3538
|
-
|
|
3539
|
-
|
|
3537
|
+
if (this.element.disabled) {
|
|
3538
|
+
return;
|
|
3539
|
+
}
|
|
3540
3540
|
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
this.showing = false;
|
|
3547
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
3548
|
-
}
|
|
3541
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
3542
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
3543
|
+
// Escape key or focus loss.
|
|
3544
|
+
if (this.element.noToggle && eventType === "click") {
|
|
3545
|
+
return;
|
|
3549
3546
|
}
|
|
3547
|
+
|
|
3548
|
+
this.lockScroll(false);
|
|
3549
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
3550
|
+
|
|
3551
|
+
if (this.element.isPopoverVisible) {
|
|
3552
|
+
this.element.isPopoverVisible = false;
|
|
3553
|
+
}
|
|
3554
|
+
if (this.showing) {
|
|
3555
|
+
this.cleanupHideHandlers();
|
|
3556
|
+
this.showing = false;
|
|
3557
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
3561
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
3562
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
3550
3563
|
document.expandedAuroFloater = null;
|
|
3551
3564
|
}
|
|
3552
3565
|
|
|
@@ -4879,7 +4892,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
|
|
|
4879
4892
|
}
|
|
4880
4893
|
};
|
|
4881
4894
|
|
|
4882
|
-
var formkitVersion$2 = '
|
|
4895
|
+
var formkitVersion$2 = '202603172233';
|
|
4883
4896
|
|
|
4884
4897
|
let AuroElement$2 = class AuroElement extends i$4 {
|
|
4885
4898
|
static get properties() {
|
|
@@ -12634,7 +12647,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
|
|
|
12634
12647
|
}
|
|
12635
12648
|
};
|
|
12636
12649
|
|
|
12637
|
-
var formkitVersion$1 = '
|
|
12650
|
+
var formkitVersion$1 = '202603172233';
|
|
12638
12651
|
|
|
12639
12652
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12640
12653
|
// See LICENSE in the project root for license information.
|
|
@@ -13673,7 +13686,7 @@ class AuroBibtemplate extends i$4 {
|
|
|
13673
13686
|
}
|
|
13674
13687
|
}
|
|
13675
13688
|
|
|
13676
|
-
var formkitVersion = '
|
|
13689
|
+
var formkitVersion = '202603172233';
|
|
13677
13690
|
|
|
13678
13691
|
var styleCss$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}`;
|
|
13679
13692
|
|
|
@@ -3467,19 +3467,32 @@ class AuroFloatingUI {
|
|
|
3467
3467
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
3468
3468
|
*/
|
|
3469
3469
|
hideBib(eventType = "unknown") {
|
|
3470
|
-
if (
|
|
3471
|
-
|
|
3472
|
-
|
|
3470
|
+
if (this.element.disabled) {
|
|
3471
|
+
return;
|
|
3472
|
+
}
|
|
3473
3473
|
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
this.showing = false;
|
|
3480
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
3481
|
-
}
|
|
3474
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
3475
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
3476
|
+
// Escape key or focus loss.
|
|
3477
|
+
if (this.element.noToggle && eventType === "click") {
|
|
3478
|
+
return;
|
|
3482
3479
|
}
|
|
3480
|
+
|
|
3481
|
+
this.lockScroll(false);
|
|
3482
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
3483
|
+
|
|
3484
|
+
if (this.element.isPopoverVisible) {
|
|
3485
|
+
this.element.isPopoverVisible = false;
|
|
3486
|
+
}
|
|
3487
|
+
if (this.showing) {
|
|
3488
|
+
this.cleanupHideHandlers();
|
|
3489
|
+
this.showing = false;
|
|
3490
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
3494
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
3495
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
3483
3496
|
document.expandedAuroFloater = null;
|
|
3484
3497
|
}
|
|
3485
3498
|
|
|
@@ -4812,7 +4825,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4812
4825
|
}
|
|
4813
4826
|
};
|
|
4814
4827
|
|
|
4815
|
-
var formkitVersion$2 = '
|
|
4828
|
+
var formkitVersion$2 = '202603172233';
|
|
4816
4829
|
|
|
4817
4830
|
let AuroElement$2 = class AuroElement extends LitElement {
|
|
4818
4831
|
static get properties() {
|
|
@@ -12560,7 +12573,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
12560
12573
|
}
|
|
12561
12574
|
};
|
|
12562
12575
|
|
|
12563
|
-
var formkitVersion$1 = '
|
|
12576
|
+
var formkitVersion$1 = '202603172233';
|
|
12564
12577
|
|
|
12565
12578
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12566
12579
|
// See LICENSE in the project root for license information.
|
|
@@ -13599,7 +13612,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
13599
13612
|
}
|
|
13600
13613
|
}
|
|
13601
13614
|
|
|
13602
|
-
var formkitVersion = '
|
|
13615
|
+
var formkitVersion = '202603172233';
|
|
13603
13616
|
|
|
13604
13617
|
var styleCss$1 = css`.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}`;
|
|
13605
13618
|
|
|
@@ -3467,19 +3467,32 @@ class AuroFloatingUI {
|
|
|
3467
3467
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
3468
3468
|
*/
|
|
3469
3469
|
hideBib(eventType = "unknown") {
|
|
3470
|
-
if (
|
|
3471
|
-
|
|
3472
|
-
|
|
3470
|
+
if (this.element.disabled) {
|
|
3471
|
+
return;
|
|
3472
|
+
}
|
|
3473
3473
|
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
this.showing = false;
|
|
3480
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
3481
|
-
}
|
|
3474
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
3475
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
3476
|
+
// Escape key or focus loss.
|
|
3477
|
+
if (this.element.noToggle && eventType === "click") {
|
|
3478
|
+
return;
|
|
3482
3479
|
}
|
|
3480
|
+
|
|
3481
|
+
this.lockScroll(false);
|
|
3482
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
3483
|
+
|
|
3484
|
+
if (this.element.isPopoverVisible) {
|
|
3485
|
+
this.element.isPopoverVisible = false;
|
|
3486
|
+
}
|
|
3487
|
+
if (this.showing) {
|
|
3488
|
+
this.cleanupHideHandlers();
|
|
3489
|
+
this.showing = false;
|
|
3490
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
3494
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
3495
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
3483
3496
|
document.expandedAuroFloater = null;
|
|
3484
3497
|
}
|
|
3485
3498
|
|
|
@@ -4812,7 +4825,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4812
4825
|
}
|
|
4813
4826
|
};
|
|
4814
4827
|
|
|
4815
|
-
var formkitVersion$2 = '
|
|
4828
|
+
var formkitVersion$2 = '202603172233';
|
|
4816
4829
|
|
|
4817
4830
|
let AuroElement$2 = class AuroElement extends LitElement {
|
|
4818
4831
|
static get properties() {
|
|
@@ -12560,7 +12573,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
12560
12573
|
}
|
|
12561
12574
|
};
|
|
12562
12575
|
|
|
12563
|
-
var formkitVersion$1 = '
|
|
12576
|
+
var formkitVersion$1 = '202603172233';
|
|
12564
12577
|
|
|
12565
12578
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
12566
12579
|
// See LICENSE in the project root for license information.
|
|
@@ -13599,7 +13612,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
13599
13612
|
}
|
|
13600
13613
|
}
|
|
13601
13614
|
|
|
13602
|
-
var formkitVersion = '
|
|
13615
|
+
var formkitVersion = '202603172233';
|
|
13603
13616
|
|
|
13604
13617
|
var styleCss$1 = css`.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}`;
|
|
13605
13618
|
|
|
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
1470
1470
|
}
|
|
1471
1471
|
};
|
|
1472
1472
|
|
|
1473
|
-
var formkitVersion$1 = '
|
|
1473
|
+
var formkitVersion$1 = '202603172233';
|
|
1474
1474
|
|
|
1475
1475
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1476
1476
|
// See LICENSE in the project root for license information.
|
|
@@ -4118,19 +4118,32 @@ class AuroFloatingUI {
|
|
|
4118
4118
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
4119
4119
|
*/
|
|
4120
4120
|
hideBib(eventType = "unknown") {
|
|
4121
|
-
if (
|
|
4122
|
-
|
|
4123
|
-
|
|
4121
|
+
if (this.element.disabled) {
|
|
4122
|
+
return;
|
|
4123
|
+
}
|
|
4124
4124
|
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
this.showing = false;
|
|
4131
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
4132
|
-
}
|
|
4125
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
4126
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
4127
|
+
// Escape key or focus loss.
|
|
4128
|
+
if (this.element.noToggle && eventType === "click") {
|
|
4129
|
+
return;
|
|
4133
4130
|
}
|
|
4131
|
+
|
|
4132
|
+
this.lockScroll(false);
|
|
4133
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
4134
|
+
|
|
4135
|
+
if (this.element.isPopoverVisible) {
|
|
4136
|
+
this.element.isPopoverVisible = false;
|
|
4137
|
+
}
|
|
4138
|
+
if (this.showing) {
|
|
4139
|
+
this.cleanupHideHandlers();
|
|
4140
|
+
this.showing = false;
|
|
4141
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
4145
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
4146
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
4134
4147
|
document.expandedAuroFloater = null;
|
|
4135
4148
|
}
|
|
4136
4149
|
|
|
@@ -5463,7 +5476,7 @@ class AuroHelpText extends i$2 {
|
|
|
5463
5476
|
}
|
|
5464
5477
|
}
|
|
5465
5478
|
|
|
5466
|
-
var formkitVersion = '
|
|
5479
|
+
var formkitVersion = '202603172233';
|
|
5467
5480
|
|
|
5468
5481
|
let AuroElement$1 = class AuroElement extends i$2 {
|
|
5469
5482
|
static get properties() {
|
|
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
1470
1470
|
}
|
|
1471
1471
|
};
|
|
1472
1472
|
|
|
1473
|
-
var formkitVersion$1 = '
|
|
1473
|
+
var formkitVersion$1 = '202603172233';
|
|
1474
1474
|
|
|
1475
1475
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1476
1476
|
// See LICENSE in the project root for license information.
|
|
@@ -4118,19 +4118,32 @@ class AuroFloatingUI {
|
|
|
4118
4118
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
4119
4119
|
*/
|
|
4120
4120
|
hideBib(eventType = "unknown") {
|
|
4121
|
-
if (
|
|
4122
|
-
|
|
4123
|
-
|
|
4121
|
+
if (this.element.disabled) {
|
|
4122
|
+
return;
|
|
4123
|
+
}
|
|
4124
4124
|
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
this.showing = false;
|
|
4131
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
4132
|
-
}
|
|
4125
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
4126
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
4127
|
+
// Escape key or focus loss.
|
|
4128
|
+
if (this.element.noToggle && eventType === "click") {
|
|
4129
|
+
return;
|
|
4133
4130
|
}
|
|
4131
|
+
|
|
4132
|
+
this.lockScroll(false);
|
|
4133
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
4134
|
+
|
|
4135
|
+
if (this.element.isPopoverVisible) {
|
|
4136
|
+
this.element.isPopoverVisible = false;
|
|
4137
|
+
}
|
|
4138
|
+
if (this.showing) {
|
|
4139
|
+
this.cleanupHideHandlers();
|
|
4140
|
+
this.showing = false;
|
|
4141
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
4145
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
4146
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
4134
4147
|
document.expandedAuroFloater = null;
|
|
4135
4148
|
}
|
|
4136
4149
|
|
|
@@ -5463,7 +5476,7 @@ class AuroHelpText extends i$2 {
|
|
|
5463
5476
|
}
|
|
5464
5477
|
}
|
|
5465
5478
|
|
|
5466
|
-
var formkitVersion = '
|
|
5479
|
+
var formkitVersion = '202603172233';
|
|
5467
5480
|
|
|
5468
5481
|
let AuroElement$1 = class AuroElement extends i$2 {
|
|
5469
5482
|
static get properties() {
|
|
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
1420
1420
|
}
|
|
1421
1421
|
};
|
|
1422
1422
|
|
|
1423
|
-
var formkitVersion$1 = '
|
|
1423
|
+
var formkitVersion$1 = '202603172233';
|
|
1424
1424
|
|
|
1425
1425
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1426
1426
|
// See LICENSE in the project root for license information.
|
|
@@ -4050,19 +4050,32 @@ class AuroFloatingUI {
|
|
|
4050
4050
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
4051
4051
|
*/
|
|
4052
4052
|
hideBib(eventType = "unknown") {
|
|
4053
|
-
if (
|
|
4054
|
-
|
|
4055
|
-
|
|
4053
|
+
if (this.element.disabled) {
|
|
4054
|
+
return;
|
|
4055
|
+
}
|
|
4056
4056
|
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
this.showing = false;
|
|
4063
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
4064
|
-
}
|
|
4057
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
4058
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
4059
|
+
// Escape key or focus loss.
|
|
4060
|
+
if (this.element.noToggle && eventType === "click") {
|
|
4061
|
+
return;
|
|
4065
4062
|
}
|
|
4063
|
+
|
|
4064
|
+
this.lockScroll(false);
|
|
4065
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
4066
|
+
|
|
4067
|
+
if (this.element.isPopoverVisible) {
|
|
4068
|
+
this.element.isPopoverVisible = false;
|
|
4069
|
+
}
|
|
4070
|
+
if (this.showing) {
|
|
4071
|
+
this.cleanupHideHandlers();
|
|
4072
|
+
this.showing = false;
|
|
4073
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
4077
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
4078
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
4066
4079
|
document.expandedAuroFloater = null;
|
|
4067
4080
|
}
|
|
4068
4081
|
|
|
@@ -5395,7 +5408,7 @@ class AuroHelpText extends LitElement {
|
|
|
5395
5408
|
}
|
|
5396
5409
|
}
|
|
5397
5410
|
|
|
5398
|
-
var formkitVersion = '
|
|
5411
|
+
var formkitVersion = '202603172233';
|
|
5399
5412
|
|
|
5400
5413
|
let AuroElement$1 = class AuroElement extends LitElement {
|
|
5401
5414
|
static get properties() {
|
|
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
1420
1420
|
}
|
|
1421
1421
|
};
|
|
1422
1422
|
|
|
1423
|
-
var formkitVersion$1 = '
|
|
1423
|
+
var formkitVersion$1 = '202603172233';
|
|
1424
1424
|
|
|
1425
1425
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1426
1426
|
// See LICENSE in the project root for license information.
|
|
@@ -4050,19 +4050,32 @@ class AuroFloatingUI {
|
|
|
4050
4050
|
* @param {String} eventType - The event type that triggered the hiding action.
|
|
4051
4051
|
*/
|
|
4052
4052
|
hideBib(eventType = "unknown") {
|
|
4053
|
-
if (
|
|
4054
|
-
|
|
4055
|
-
|
|
4053
|
+
if (this.element.disabled) {
|
|
4054
|
+
return;
|
|
4055
|
+
}
|
|
4056
4056
|
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
this.showing = false;
|
|
4063
|
-
this.dispatchEventDropdownToggle(eventType);
|
|
4064
|
-
}
|
|
4057
|
+
// noToggle dropdowns should not close when the trigger is clicked (the
|
|
4058
|
+
// "toggle" behavior), but they CAN still close via other interactions like
|
|
4059
|
+
// Escape key or focus loss.
|
|
4060
|
+
if (this.element.noToggle && eventType === "click") {
|
|
4061
|
+
return;
|
|
4065
4062
|
}
|
|
4063
|
+
|
|
4064
|
+
this.lockScroll(false);
|
|
4065
|
+
this.element.triggerChevron?.removeAttribute("data-expanded");
|
|
4066
|
+
|
|
4067
|
+
if (this.element.isPopoverVisible) {
|
|
4068
|
+
this.element.isPopoverVisible = false;
|
|
4069
|
+
}
|
|
4070
|
+
if (this.showing) {
|
|
4071
|
+
this.cleanupHideHandlers();
|
|
4072
|
+
this.showing = false;
|
|
4073
|
+
this.dispatchEventDropdownToggle(eventType);
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
// Only clear the global reference if the bib was actually hidden.
|
|
4077
|
+
// Clearing it when hideBib is blocked (e.g. noToggle + click) corrupts
|
|
4078
|
+
// the singleton state so other dropdowns can't detect this one is still open.
|
|
4066
4079
|
document.expandedAuroFloater = null;
|
|
4067
4080
|
}
|
|
4068
4081
|
|
|
@@ -5395,7 +5408,7 @@ class AuroHelpText extends LitElement {
|
|
|
5395
5408
|
}
|
|
5396
5409
|
}
|
|
5397
5410
|
|
|
5398
|
-
var formkitVersion = '
|
|
5411
|
+
var formkitVersion = '202603172233';
|
|
5399
5412
|
|
|
5400
5413
|
let AuroElement$1 = class AuroElement extends LitElement {
|
|
5401
5414
|
static get properties() {
|