@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.
Files changed (35) hide show
  1. package/components/checkbox/demo/api.min.js +1 -1
  2. package/components/checkbox/demo/index.min.js +1 -1
  3. package/components/checkbox/dist/index.js +1 -1
  4. package/components/checkbox/dist/registered.js +1 -1
  5. package/components/combobox/demo/api.min.js +27 -14
  6. package/components/combobox/demo/index.min.js +27 -14
  7. package/components/combobox/dist/index.js +27 -14
  8. package/components/combobox/dist/registered.js +27 -14
  9. package/components/counter/demo/api.min.js +26 -13
  10. package/components/counter/demo/index.min.js +26 -13
  11. package/components/counter/dist/index.js +26 -13
  12. package/components/counter/dist/registered.js +26 -13
  13. package/components/datepicker/demo/api.min.js +27 -14
  14. package/components/datepicker/demo/index.min.js +27 -14
  15. package/components/datepicker/dist/index.js +27 -14
  16. package/components/datepicker/dist/registered.js +27 -14
  17. package/components/dropdown/demo/api.min.js +25 -12
  18. package/components/dropdown/demo/index.min.js +25 -12
  19. package/components/dropdown/dist/index.js +25 -12
  20. package/components/dropdown/dist/registered.js +25 -12
  21. package/components/form/demo/api.min.js +109 -57
  22. package/components/form/demo/index.min.js +109 -57
  23. package/components/input/demo/api.min.js +1 -1
  24. package/components/input/demo/index.min.js +1 -1
  25. package/components/input/dist/index.js +1 -1
  26. package/components/input/dist/registered.js +1 -1
  27. package/components/radio/demo/api.min.js +1 -1
  28. package/components/radio/demo/index.min.js +1 -1
  29. package/components/radio/dist/index.js +1 -1
  30. package/components/radio/dist/registered.js +1 -1
  31. package/components/select/demo/api.min.js +26 -13
  32. package/components/select/demo/index.min.js +26 -13
  33. package/components/select/dist/index.js +26 -13
  34. package/components/select/dist/registered.js +26 -13
  35. package/package.json +2 -2
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
- var formkitVersion = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
3615
- this.lockScroll(false);
3616
- this.element.triggerChevron?.removeAttribute("data-expanded");
3614
+ if (this.element.disabled) {
3615
+ return;
3616
+ }
3617
3617
 
3618
- if (this.element.isPopoverVisible) {
3619
- this.element.isPopoverVisible = false;
3620
- }
3621
- if (this.showing) {
3622
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
3538
- this.lockScroll(false);
3539
- this.element.triggerChevron?.removeAttribute("data-expanded");
3537
+ if (this.element.disabled) {
3538
+ return;
3539
+ }
3540
3540
 
3541
- if (this.element.isPopoverVisible) {
3542
- this.element.isPopoverVisible = false;
3543
- }
3544
- if (this.showing) {
3545
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
3471
- this.lockScroll(false);
3472
- this.element.triggerChevron?.removeAttribute("data-expanded");
3470
+ if (this.element.disabled) {
3471
+ return;
3472
+ }
3473
3473
 
3474
- if (this.element.isPopoverVisible) {
3475
- this.element.isPopoverVisible = false;
3476
- }
3477
- if (this.showing) {
3478
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
3471
- this.lockScroll(false);
3472
- this.element.triggerChevron?.removeAttribute("data-expanded");
3470
+ if (this.element.disabled) {
3471
+ return;
3472
+ }
3473
3473
 
3474
- if (this.element.isPopoverVisible) {
3475
- this.element.isPopoverVisible = false;
3476
- }
3477
- if (this.showing) {
3478
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
4122
- this.lockScroll(false);
4123
- this.element.triggerChevron?.removeAttribute("data-expanded");
4121
+ if (this.element.disabled) {
4122
+ return;
4123
+ }
4124
4124
 
4125
- if (this.element.isPopoverVisible) {
4126
- this.element.isPopoverVisible = false;
4127
- }
4128
- if (this.showing) {
4129
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
4122
- this.lockScroll(false);
4123
- this.element.triggerChevron?.removeAttribute("data-expanded");
4121
+ if (this.element.disabled) {
4122
+ return;
4123
+ }
4124
4124
 
4125
- if (this.element.isPopoverVisible) {
4126
- this.element.isPopoverVisible = false;
4127
- }
4128
- if (this.showing) {
4129
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
4054
- this.lockScroll(false);
4055
- this.element.triggerChevron?.removeAttribute("data-expanded");
4053
+ if (this.element.disabled) {
4054
+ return;
4055
+ }
4056
4056
 
4057
- if (this.element.isPopoverVisible) {
4058
- this.element.isPopoverVisible = false;
4059
- }
4060
- if (this.showing) {
4061
- this.cleanupHideHandlers();
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 = '202603172159';
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 = '202603172159';
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 (!this.element.disabled && !this.element.noToggle) {
4054
- this.lockScroll(false);
4055
- this.element.triggerChevron?.removeAttribute("data-expanded");
4053
+ if (this.element.disabled) {
4054
+ return;
4055
+ }
4056
4056
 
4057
- if (this.element.isPopoverVisible) {
4058
- this.element.isPopoverVisible = false;
4059
- }
4060
- if (this.showing) {
4061
- this.cleanupHideHandlers();
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 = '202603172159';
5411
+ var formkitVersion = '202603172233';
5399
5412
 
5400
5413
  let AuroElement$1 = class AuroElement extends LitElement {
5401
5414
  static get properties() {