@aurodesignsystem-dev/auro-formkit 0.0.0-pr1411.0 → 0.0.0-pr1411.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 (39) 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 -7
  6. package/components/combobox/demo/index.min.js +27 -7
  7. package/components/combobox/dist/index.js +27 -7
  8. package/components/combobox/dist/registered.js +27 -7
  9. package/components/counter/demo/api.min.js +26 -6
  10. package/components/counter/demo/index.min.js +26 -6
  11. package/components/counter/dist/index.js +26 -6
  12. package/components/counter/dist/registered.js +26 -6
  13. package/components/datepicker/demo/api.min.js +27 -7
  14. package/components/datepicker/demo/index.min.js +27 -7
  15. package/components/datepicker/dist/index.js +27 -7
  16. package/components/datepicker/dist/registered.js +27 -7
  17. package/components/dropdown/demo/api.md +29 -28
  18. package/components/dropdown/demo/api.min.js +25 -5
  19. package/components/dropdown/demo/index.min.js +25 -5
  20. package/components/dropdown/dist/auro-dropdown.d.ts +8 -0
  21. package/components/dropdown/dist/index.js +25 -5
  22. package/components/dropdown/dist/registered.js +25 -5
  23. package/components/form/demo/api.min.js +159 -54
  24. package/components/form/demo/index.min.js +159 -54
  25. package/components/input/demo/api.min.js +1 -1
  26. package/components/input/demo/index.min.js +1 -1
  27. package/components/input/dist/index.js +1 -1
  28. package/components/input/dist/registered.js +1 -1
  29. package/components/radio/demo/api.min.js +1 -1
  30. package/components/radio/demo/index.min.js +1 -1
  31. package/components/radio/dist/index.js +1 -1
  32. package/components/radio/dist/registered.js +1 -1
  33. package/components/select/demo/api.min.js +76 -31
  34. package/components/select/demo/index.min.js +76 -31
  35. package/components/select/dist/index.js +76 -31
  36. package/components/select/dist/registered.js +76 -31
  37. package/components/select/dist/selectKeyboardStrategy.d.ts +4 -3
  38. package/custom-elements.json +20 -1
  39. package/package.json +5 -5
@@ -1521,7 +1521,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1521
1521
  }
1522
1522
  };
1523
1523
 
1524
- var formkitVersion$1 = '202604021512';
1524
+ var formkitVersion$1 = '202604021752';
1525
1525
 
1526
1526
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1527
1527
  // See LICENSE in the project root for license information.
@@ -3792,6 +3792,11 @@ class AuroFloatingUI {
3792
3792
  this.clickHandler = null;
3793
3793
  this.keyDownHandler = null;
3794
3794
 
3795
+ /**
3796
+ * @private
3797
+ */
3798
+ this.enableKeyboardHandling = true;
3799
+
3795
3800
  /**
3796
3801
  * @private
3797
3802
  */
@@ -4126,7 +4131,9 @@ class AuroFloatingUI {
4126
4131
  document.addEventListener("focusin", this.focusHandler);
4127
4132
  }
4128
4133
 
4129
- document.addEventListener("keydown", this.keyDownHandler);
4134
+ if (this.enableKeyboardHandling) {
4135
+ document.addEventListener("keydown", this.keyDownHandler);
4136
+ }
4130
4137
 
4131
4138
  // send this task to the end of queue to prevent conflicting
4132
4139
  // it conflicts if showBib gets call from a button that's not this.element.trigger
@@ -4382,8 +4389,9 @@ class AuroFloatingUI {
4382
4389
  this.element.bib.setAttribute("id", `${this.id}-floater-bib`);
4383
4390
  }
4384
4391
 
4385
- configure(elem, eventPrefix) {
4392
+ configure(elem, eventPrefix, enableKeyboardHandling = true) {
4386
4393
  AuroFloatingUI.setupMousePressChecker();
4394
+ this.enableKeyboardHandling = enableKeyboardHandling;
4387
4395
 
4388
4396
  this.eventPrefix = eventPrefix;
4389
4397
  if (this.element !== elem) {
@@ -4416,7 +4424,9 @@ class AuroFloatingUI {
4416
4424
 
4417
4425
  this.handleEvent = this.handleEvent.bind(this);
4418
4426
  if (this.element.trigger) {
4419
- this.element.trigger.addEventListener("keydown", this.handleEvent);
4427
+ if (this.enableKeyboardHandling) {
4428
+ this.element.trigger.addEventListener("keydown", this.handleEvent);
4429
+ }
4420
4430
  this.element.trigger.addEventListener("click", this.handleEvent);
4421
4431
  this.element.trigger.addEventListener("mouseenter", this.handleEvent);
4422
4432
  this.element.trigger.addEventListener("mouseleave", this.handleEvent);
@@ -5570,7 +5580,7 @@ class AuroHelpText extends i$2 {
5570
5580
  }
5571
5581
  }
5572
5582
 
5573
- var formkitVersion = '202604021512';
5583
+ var formkitVersion = '202604021752';
5574
5584
 
5575
5585
  let AuroElement$1 = class AuroElement extends i$2 {
5576
5586
  static get properties() {
@@ -5751,6 +5761,7 @@ class AuroDropdown extends AuroElement$1 {
5751
5761
  this.appearance = 'default';
5752
5762
  this.chevron = false;
5753
5763
  this.disabled = false;
5764
+ this.disableKeyboardHandling = false;
5754
5765
  this.error = false;
5755
5766
  this.tabIndex = 0;
5756
5767
  this.noToggle = false;
@@ -5962,6 +5973,14 @@ class AuroDropdown extends AuroElement$1 {
5962
5973
  reflect: true
5963
5974
  },
5964
5975
 
5976
+ /**
5977
+ * If declared, the dropdown will not handle keyboard events and will require the consumer to manage this behavior.
5978
+ */
5979
+ disableKeyboardHandling: {
5980
+ type: Boolean,
5981
+ reflect: true
5982
+ },
5983
+
5965
5984
  /**
5966
5985
  * @private
5967
5986
  */
@@ -6267,7 +6286,7 @@ class AuroDropdown extends AuroElement$1 {
6267
6286
 
6268
6287
  firstUpdated() {
6269
6288
  // Configure the floater to, this will generate the ID for the bib
6270
- this.floater.configure(this, 'auroDropdown');
6289
+ this.floater.configure(this, 'auroDropdown', !this.disableKeyboardHandling);
6271
6290
 
6272
6291
  // Prevent `contain: layout` on the dropdown host. Layout containment
6273
6292
  // creates a containing block for position:fixed descendants (the bib),
@@ -6575,6 +6594,7 @@ class AuroDropdown extends AuroElement$1 {
6575
6594
  aria-expanded="${o$2(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.isPopoverVisible)}"
6576
6595
  aria-controls="${o$2(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.dropdownId)}"
6577
6596
  aria-labelledby="${o$2(this.triggerContentFocusable ? undefined : 'triggerLabel')}"
6597
+ aria-disabled="${o$2(this.disabled ? 'true' : undefined)}"
6578
6598
  @focusin="${this.handleFocusin}"
6579
6599
  @blur="${this.handleFocusOut}">
6580
6600
  <div class="triggerContentWrapper" id="triggerLabel">
@@ -1471,7 +1471,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1471
1471
  }
1472
1472
  };
1473
1473
 
1474
- var formkitVersion$1 = '202604021512';
1474
+ var formkitVersion$1 = '202604021752';
1475
1475
 
1476
1476
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1477
1477
  // See LICENSE in the project root for license information.
@@ -3724,6 +3724,11 @@ class AuroFloatingUI {
3724
3724
  this.clickHandler = null;
3725
3725
  this.keyDownHandler = null;
3726
3726
 
3727
+ /**
3728
+ * @private
3729
+ */
3730
+ this.enableKeyboardHandling = true;
3731
+
3727
3732
  /**
3728
3733
  * @private
3729
3734
  */
@@ -4058,7 +4063,9 @@ class AuroFloatingUI {
4058
4063
  document.addEventListener("focusin", this.focusHandler);
4059
4064
  }
4060
4065
 
4061
- document.addEventListener("keydown", this.keyDownHandler);
4066
+ if (this.enableKeyboardHandling) {
4067
+ document.addEventListener("keydown", this.keyDownHandler);
4068
+ }
4062
4069
 
4063
4070
  // send this task to the end of queue to prevent conflicting
4064
4071
  // it conflicts if showBib gets call from a button that's not this.element.trigger
@@ -4314,8 +4321,9 @@ class AuroFloatingUI {
4314
4321
  this.element.bib.setAttribute("id", `${this.id}-floater-bib`);
4315
4322
  }
4316
4323
 
4317
- configure(elem, eventPrefix) {
4324
+ configure(elem, eventPrefix, enableKeyboardHandling = true) {
4318
4325
  AuroFloatingUI.setupMousePressChecker();
4326
+ this.enableKeyboardHandling = enableKeyboardHandling;
4319
4327
 
4320
4328
  this.eventPrefix = eventPrefix;
4321
4329
  if (this.element !== elem) {
@@ -4348,7 +4356,9 @@ class AuroFloatingUI {
4348
4356
 
4349
4357
  this.handleEvent = this.handleEvent.bind(this);
4350
4358
  if (this.element.trigger) {
4351
- this.element.trigger.addEventListener("keydown", this.handleEvent);
4359
+ if (this.enableKeyboardHandling) {
4360
+ this.element.trigger.addEventListener("keydown", this.handleEvent);
4361
+ }
4352
4362
  this.element.trigger.addEventListener("click", this.handleEvent);
4353
4363
  this.element.trigger.addEventListener("mouseenter", this.handleEvent);
4354
4364
  this.element.trigger.addEventListener("mouseleave", this.handleEvent);
@@ -5502,7 +5512,7 @@ class AuroHelpText extends LitElement {
5502
5512
  }
5503
5513
  }
5504
5514
 
5505
- var formkitVersion = '202604021512';
5515
+ var formkitVersion = '202604021752';
5506
5516
 
5507
5517
  let AuroElement$1 = class AuroElement extends LitElement {
5508
5518
  static get properties() {
@@ -5683,6 +5693,7 @@ class AuroDropdown extends AuroElement$1 {
5683
5693
  this.appearance = 'default';
5684
5694
  this.chevron = false;
5685
5695
  this.disabled = false;
5696
+ this.disableKeyboardHandling = false;
5686
5697
  this.error = false;
5687
5698
  this.tabIndex = 0;
5688
5699
  this.noToggle = false;
@@ -5894,6 +5905,14 @@ class AuroDropdown extends AuroElement$1 {
5894
5905
  reflect: true
5895
5906
  },
5896
5907
 
5908
+ /**
5909
+ * If declared, the dropdown will not handle keyboard events and will require the consumer to manage this behavior.
5910
+ */
5911
+ disableKeyboardHandling: {
5912
+ type: Boolean,
5913
+ reflect: true
5914
+ },
5915
+
5897
5916
  /**
5898
5917
  * @private
5899
5918
  */
@@ -6199,7 +6218,7 @@ class AuroDropdown extends AuroElement$1 {
6199
6218
 
6200
6219
  firstUpdated() {
6201
6220
  // Configure the floater to, this will generate the ID for the bib
6202
- this.floater.configure(this, 'auroDropdown');
6221
+ this.floater.configure(this, 'auroDropdown', !this.disableKeyboardHandling);
6203
6222
 
6204
6223
  // Prevent `contain: layout` on the dropdown host. Layout containment
6205
6224
  // creates a containing block for position:fixed descendants (the bib),
@@ -6507,6 +6526,7 @@ class AuroDropdown extends AuroElement$1 {
6507
6526
  aria-expanded="${ifDefined(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.isPopoverVisible)}"
6508
6527
  aria-controls="${ifDefined(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.dropdownId)}"
6509
6528
  aria-labelledby="${ifDefined(this.triggerContentFocusable ? undefined : 'triggerLabel')}"
6529
+ aria-disabled="${ifDefined(this.disabled ? 'true' : undefined)}"
6510
6530
  @focusin="${this.handleFocusin}"
6511
6531
  @blur="${this.handleFocusOut}">
6512
6532
  <div class="triggerContentWrapper" id="triggerLabel">
@@ -1471,7 +1471,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1471
1471
  }
1472
1472
  };
1473
1473
 
1474
- var formkitVersion$1 = '202604021512';
1474
+ var formkitVersion$1 = '202604021752';
1475
1475
 
1476
1476
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1477
1477
  // See LICENSE in the project root for license information.
@@ -3724,6 +3724,11 @@ class AuroFloatingUI {
3724
3724
  this.clickHandler = null;
3725
3725
  this.keyDownHandler = null;
3726
3726
 
3727
+ /**
3728
+ * @private
3729
+ */
3730
+ this.enableKeyboardHandling = true;
3731
+
3727
3732
  /**
3728
3733
  * @private
3729
3734
  */
@@ -4058,7 +4063,9 @@ class AuroFloatingUI {
4058
4063
  document.addEventListener("focusin", this.focusHandler);
4059
4064
  }
4060
4065
 
4061
- document.addEventListener("keydown", this.keyDownHandler);
4066
+ if (this.enableKeyboardHandling) {
4067
+ document.addEventListener("keydown", this.keyDownHandler);
4068
+ }
4062
4069
 
4063
4070
  // send this task to the end of queue to prevent conflicting
4064
4071
  // it conflicts if showBib gets call from a button that's not this.element.trigger
@@ -4314,8 +4321,9 @@ class AuroFloatingUI {
4314
4321
  this.element.bib.setAttribute("id", `${this.id}-floater-bib`);
4315
4322
  }
4316
4323
 
4317
- configure(elem, eventPrefix) {
4324
+ configure(elem, eventPrefix, enableKeyboardHandling = true) {
4318
4325
  AuroFloatingUI.setupMousePressChecker();
4326
+ this.enableKeyboardHandling = enableKeyboardHandling;
4319
4327
 
4320
4328
  this.eventPrefix = eventPrefix;
4321
4329
  if (this.element !== elem) {
@@ -4348,7 +4356,9 @@ class AuroFloatingUI {
4348
4356
 
4349
4357
  this.handleEvent = this.handleEvent.bind(this);
4350
4358
  if (this.element.trigger) {
4351
- this.element.trigger.addEventListener("keydown", this.handleEvent);
4359
+ if (this.enableKeyboardHandling) {
4360
+ this.element.trigger.addEventListener("keydown", this.handleEvent);
4361
+ }
4352
4362
  this.element.trigger.addEventListener("click", this.handleEvent);
4353
4363
  this.element.trigger.addEventListener("mouseenter", this.handleEvent);
4354
4364
  this.element.trigger.addEventListener("mouseleave", this.handleEvent);
@@ -5502,7 +5512,7 @@ class AuroHelpText extends LitElement {
5502
5512
  }
5503
5513
  }
5504
5514
 
5505
- var formkitVersion = '202604021512';
5515
+ var formkitVersion = '202604021752';
5506
5516
 
5507
5517
  let AuroElement$1 = class AuroElement extends LitElement {
5508
5518
  static get properties() {
@@ -5683,6 +5693,7 @@ class AuroDropdown extends AuroElement$1 {
5683
5693
  this.appearance = 'default';
5684
5694
  this.chevron = false;
5685
5695
  this.disabled = false;
5696
+ this.disableKeyboardHandling = false;
5686
5697
  this.error = false;
5687
5698
  this.tabIndex = 0;
5688
5699
  this.noToggle = false;
@@ -5894,6 +5905,14 @@ class AuroDropdown extends AuroElement$1 {
5894
5905
  reflect: true
5895
5906
  },
5896
5907
 
5908
+ /**
5909
+ * If declared, the dropdown will not handle keyboard events and will require the consumer to manage this behavior.
5910
+ */
5911
+ disableKeyboardHandling: {
5912
+ type: Boolean,
5913
+ reflect: true
5914
+ },
5915
+
5897
5916
  /**
5898
5917
  * @private
5899
5918
  */
@@ -6199,7 +6218,7 @@ class AuroDropdown extends AuroElement$1 {
6199
6218
 
6200
6219
  firstUpdated() {
6201
6220
  // Configure the floater to, this will generate the ID for the bib
6202
- this.floater.configure(this, 'auroDropdown');
6221
+ this.floater.configure(this, 'auroDropdown', !this.disableKeyboardHandling);
6203
6222
 
6204
6223
  // Prevent `contain: layout` on the dropdown host. Layout containment
6205
6224
  // creates a containing block for position:fixed descendants (the bib),
@@ -6507,6 +6526,7 @@ class AuroDropdown extends AuroElement$1 {
6507
6526
  aria-expanded="${ifDefined(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.isPopoverVisible)}"
6508
6527
  aria-controls="${ifDefined(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.dropdownId)}"
6509
6528
  aria-labelledby="${ifDefined(this.triggerContentFocusable ? undefined : 'triggerLabel')}"
6529
+ aria-disabled="${ifDefined(this.disabled ? 'true' : undefined)}"
6510
6530
  @focusin="${this.handleFocusin}"
6511
6531
  @blur="${this.handleFocusOut}">
6512
6532
  <div class="triggerContentWrapper" id="triggerLabel">
@@ -9549,7 +9549,7 @@ class AuroBibtemplate extends i$1 {
9549
9549
  }
9550
9550
  }
9551
9551
 
9552
- var formkitVersion$2 = '202604021512';
9552
+ var formkitVersion$2 = '202604021752';
9553
9553
 
9554
9554
  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}
9555
9555
  `,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}}
@@ -11838,6 +11838,11 @@ class AuroFloatingUI {
11838
11838
  this.clickHandler = null;
11839
11839
  this.keyDownHandler = null;
11840
11840
 
11841
+ /**
11842
+ * @private
11843
+ */
11844
+ this.enableKeyboardHandling = true;
11845
+
11841
11846
  /**
11842
11847
  * @private
11843
11848
  */
@@ -12172,7 +12177,9 @@ class AuroFloatingUI {
12172
12177
  document.addEventListener("focusin", this.focusHandler);
12173
12178
  }
12174
12179
 
12175
- document.addEventListener("keydown", this.keyDownHandler);
12180
+ if (this.enableKeyboardHandling) {
12181
+ document.addEventListener("keydown", this.keyDownHandler);
12182
+ }
12176
12183
 
12177
12184
  // send this task to the end of queue to prevent conflicting
12178
12185
  // it conflicts if showBib gets call from a button that's not this.element.trigger
@@ -12428,8 +12435,9 @@ class AuroFloatingUI {
12428
12435
  this.element.bib.setAttribute("id", `${this.id}-floater-bib`);
12429
12436
  }
12430
12437
 
12431
- configure(elem, eventPrefix) {
12438
+ configure(elem, eventPrefix, enableKeyboardHandling = true) {
12432
12439
  AuroFloatingUI.setupMousePressChecker();
12440
+ this.enableKeyboardHandling = enableKeyboardHandling;
12433
12441
 
12434
12442
  this.eventPrefix = eventPrefix;
12435
12443
  if (this.element !== elem) {
@@ -12462,7 +12470,9 @@ class AuroFloatingUI {
12462
12470
 
12463
12471
  this.handleEvent = this.handleEvent.bind(this);
12464
12472
  if (this.element.trigger) {
12465
- this.element.trigger.addEventListener("keydown", this.handleEvent);
12473
+ if (this.enableKeyboardHandling) {
12474
+ this.element.trigger.addEventListener("keydown", this.handleEvent);
12475
+ }
12466
12476
  this.element.trigger.addEventListener("click", this.handleEvent);
12467
12477
  this.element.trigger.addEventListener("mouseenter", this.handleEvent);
12468
12478
  this.element.trigger.addEventListener("mouseleave", this.handleEvent);
@@ -13616,7 +13626,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13616
13626
  }
13617
13627
  };
13618
13628
 
13619
- var formkitVersion$1 = '202604021512';
13629
+ var formkitVersion$1 = '202604021752';
13620
13630
 
13621
13631
  let AuroElement$2 = class AuroElement extends i$1 {
13622
13632
  static get properties() {
@@ -13797,6 +13807,7 @@ class AuroDropdown extends AuroElement$2 {
13797
13807
  this.appearance = 'default';
13798
13808
  this.chevron = false;
13799
13809
  this.disabled = false;
13810
+ this.disableKeyboardHandling = false;
13800
13811
  this.error = false;
13801
13812
  this.tabIndex = 0;
13802
13813
  this.noToggle = false;
@@ -14008,6 +14019,14 @@ class AuroDropdown extends AuroElement$2 {
14008
14019
  reflect: true
14009
14020
  },
14010
14021
 
14022
+ /**
14023
+ * If declared, the dropdown will not handle keyboard events and will require the consumer to manage this behavior.
14024
+ */
14025
+ disableKeyboardHandling: {
14026
+ type: Boolean,
14027
+ reflect: true
14028
+ },
14029
+
14011
14030
  /**
14012
14031
  * @private
14013
14032
  */
@@ -14313,7 +14332,7 @@ class AuroDropdown extends AuroElement$2 {
14313
14332
 
14314
14333
  firstUpdated() {
14315
14334
  // Configure the floater to, this will generate the ID for the bib
14316
- this.floater.configure(this, 'auroDropdown');
14335
+ this.floater.configure(this, 'auroDropdown', !this.disableKeyboardHandling);
14317
14336
 
14318
14337
  // Prevent `contain: layout` on the dropdown host. Layout containment
14319
14338
  // creates a containing block for position:fixed descendants (the bib),
@@ -14621,6 +14640,7 @@ class AuroDropdown extends AuroElement$2 {
14621
14640
  aria-expanded="${o$2(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.isPopoverVisible)}"
14622
14641
  aria-controls="${o$2(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.dropdownId)}"
14623
14642
  aria-labelledby="${o$2(this.triggerContentFocusable ? undefined : 'triggerLabel')}"
14643
+ aria-disabled="${o$2(this.disabled ? 'true' : undefined)}"
14624
14644
  @focusin="${this.handleFocusin}"
14625
14645
  @blur="${this.handleFocusOut}">
14626
14646
  <div class="triggerContentWrapper" id="triggerLabel">
@@ -21370,7 +21390,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21370
21390
  }
21371
21391
  };
21372
21392
 
21373
- var formkitVersion = '202604021512';
21393
+ var formkitVersion = '202604021752';
21374
21394
 
21375
21395
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21376
21396
  // See LICENSE in the project root for license information.
@@ -9290,7 +9290,7 @@ class AuroBibtemplate extends i$1 {
9290
9290
  }
9291
9291
  }
9292
9292
 
9293
- var formkitVersion$2 = '202604021512';
9293
+ var formkitVersion$2 = '202604021752';
9294
9294
 
9295
9295
  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}
9296
9296
  `,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}}
@@ -11579,6 +11579,11 @@ class AuroFloatingUI {
11579
11579
  this.clickHandler = null;
11580
11580
  this.keyDownHandler = null;
11581
11581
 
11582
+ /**
11583
+ * @private
11584
+ */
11585
+ this.enableKeyboardHandling = true;
11586
+
11582
11587
  /**
11583
11588
  * @private
11584
11589
  */
@@ -11913,7 +11918,9 @@ class AuroFloatingUI {
11913
11918
  document.addEventListener("focusin", this.focusHandler);
11914
11919
  }
11915
11920
 
11916
- document.addEventListener("keydown", this.keyDownHandler);
11921
+ if (this.enableKeyboardHandling) {
11922
+ document.addEventListener("keydown", this.keyDownHandler);
11923
+ }
11917
11924
 
11918
11925
  // send this task to the end of queue to prevent conflicting
11919
11926
  // it conflicts if showBib gets call from a button that's not this.element.trigger
@@ -12169,8 +12176,9 @@ class AuroFloatingUI {
12169
12176
  this.element.bib.setAttribute("id", `${this.id}-floater-bib`);
12170
12177
  }
12171
12178
 
12172
- configure(elem, eventPrefix) {
12179
+ configure(elem, eventPrefix, enableKeyboardHandling = true) {
12173
12180
  AuroFloatingUI.setupMousePressChecker();
12181
+ this.enableKeyboardHandling = enableKeyboardHandling;
12174
12182
 
12175
12183
  this.eventPrefix = eventPrefix;
12176
12184
  if (this.element !== elem) {
@@ -12203,7 +12211,9 @@ class AuroFloatingUI {
12203
12211
 
12204
12212
  this.handleEvent = this.handleEvent.bind(this);
12205
12213
  if (this.element.trigger) {
12206
- this.element.trigger.addEventListener("keydown", this.handleEvent);
12214
+ if (this.enableKeyboardHandling) {
12215
+ this.element.trigger.addEventListener("keydown", this.handleEvent);
12216
+ }
12207
12217
  this.element.trigger.addEventListener("click", this.handleEvent);
12208
12218
  this.element.trigger.addEventListener("mouseenter", this.handleEvent);
12209
12219
  this.element.trigger.addEventListener("mouseleave", this.handleEvent);
@@ -13357,7 +13367,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13357
13367
  }
13358
13368
  };
13359
13369
 
13360
- var formkitVersion$1 = '202604021512';
13370
+ var formkitVersion$1 = '202604021752';
13361
13371
 
13362
13372
  let AuroElement$2 = class AuroElement extends i$1 {
13363
13373
  static get properties() {
@@ -13538,6 +13548,7 @@ class AuroDropdown extends AuroElement$2 {
13538
13548
  this.appearance = 'default';
13539
13549
  this.chevron = false;
13540
13550
  this.disabled = false;
13551
+ this.disableKeyboardHandling = false;
13541
13552
  this.error = false;
13542
13553
  this.tabIndex = 0;
13543
13554
  this.noToggle = false;
@@ -13749,6 +13760,14 @@ class AuroDropdown extends AuroElement$2 {
13749
13760
  reflect: true
13750
13761
  },
13751
13762
 
13763
+ /**
13764
+ * If declared, the dropdown will not handle keyboard events and will require the consumer to manage this behavior.
13765
+ */
13766
+ disableKeyboardHandling: {
13767
+ type: Boolean,
13768
+ reflect: true
13769
+ },
13770
+
13752
13771
  /**
13753
13772
  * @private
13754
13773
  */
@@ -14054,7 +14073,7 @@ class AuroDropdown extends AuroElement$2 {
14054
14073
 
14055
14074
  firstUpdated() {
14056
14075
  // Configure the floater to, this will generate the ID for the bib
14057
- this.floater.configure(this, 'auroDropdown');
14076
+ this.floater.configure(this, 'auroDropdown', !this.disableKeyboardHandling);
14058
14077
 
14059
14078
  // Prevent `contain: layout` on the dropdown host. Layout containment
14060
14079
  // creates a containing block for position:fixed descendants (the bib),
@@ -14362,6 +14381,7 @@ class AuroDropdown extends AuroElement$2 {
14362
14381
  aria-expanded="${o$2(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.isPopoverVisible)}"
14363
14382
  aria-controls="${o$2(this.a11yRole === 'button' || this.triggerContentFocusable ? undefined : this.dropdownId)}"
14364
14383
  aria-labelledby="${o$2(this.triggerContentFocusable ? undefined : 'triggerLabel')}"
14384
+ aria-disabled="${o$2(this.disabled ? 'true' : undefined)}"
14365
14385
  @focusin="${this.handleFocusin}"
14366
14386
  @blur="${this.handleFocusOut}">
14367
14387
  <div class="triggerContentWrapper" id="triggerLabel">
@@ -21111,7 +21131,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21111
21131
  }
21112
21132
  };
21113
21133
 
21114
- var formkitVersion = '202604021512';
21134
+ var formkitVersion = '202604021752';
21115
21135
 
21116
21136
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21117
21137
  // See LICENSE in the project root for license information.