@aurodesignsystem-dev/auro-formkit 0.0.0-pr1530.2 → 0.0.0-pr1531.1

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 (53) hide show
  1. package/components/checkbox/demo/customize.min.js +1 -1
  2. package/components/checkbox/demo/getting-started.min.js +1 -1
  3. package/components/checkbox/demo/index.min.js +1 -1
  4. package/components/checkbox/dist/index.js +1 -1
  5. package/components/checkbox/dist/registered.js +1 -1
  6. package/components/combobox/demo/customize.min.js +3 -3
  7. package/components/combobox/demo/getting-started.min.js +3 -3
  8. package/components/combobox/demo/index.min.js +3 -3
  9. package/components/combobox/dist/index.js +3 -3
  10. package/components/combobox/dist/registered.js +3 -3
  11. package/components/counter/demo/customize.min.js +2 -2
  12. package/components/counter/demo/index.min.js +2 -2
  13. package/components/counter/dist/index.js +2 -2
  14. package/components/counter/dist/registered.js +2 -2
  15. package/components/datepicker/demo/accessibility.md +8 -17
  16. package/components/datepicker/demo/api.md +1 -1
  17. package/components/datepicker/demo/customize.min.js +29 -175
  18. package/components/datepicker/demo/index.min.js +29 -175
  19. package/components/datepicker/demo/keyboard-behavior.md +3 -3
  20. package/components/datepicker/demo/voiceover.md +4 -4
  21. package/components/datepicker/demo/why-datepicker.md +2 -2
  22. package/components/datepicker/dist/auro-calendar-cell.d.ts +0 -11
  23. package/components/datepicker/dist/auro-calendar.d.ts +2 -26
  24. package/components/datepicker/dist/auro-datepicker.d.ts +1 -9
  25. package/components/datepicker/dist/index.js +29 -175
  26. package/components/datepicker/dist/registered.js +29 -175
  27. package/components/dropdown/demo/customize.min.js +1 -1
  28. package/components/dropdown/demo/getting-started.min.js +1 -1
  29. package/components/dropdown/demo/index.min.js +1 -1
  30. package/components/dropdown/dist/index.js +1 -1
  31. package/components/dropdown/dist/registered.js +1 -1
  32. package/components/form/demo/customize.min.js +53 -245
  33. package/components/form/demo/getting-started.min.js +53 -245
  34. package/components/form/demo/index.min.js +53 -245
  35. package/components/form/demo/registerDemoDeps.min.js +53 -245
  36. package/components/input/demo/customize.min.js +1 -1
  37. package/components/input/demo/getting-started.min.js +1 -1
  38. package/components/input/demo/index.min.js +1 -1
  39. package/components/input/dist/index.js +1 -1
  40. package/components/input/dist/registered.js +1 -1
  41. package/components/radio/demo/customize.min.js +1 -1
  42. package/components/radio/demo/getting-started.min.js +1 -1
  43. package/components/radio/demo/index.min.js +1 -1
  44. package/components/radio/dist/index.js +1 -1
  45. package/components/radio/dist/registered.js +1 -1
  46. package/components/select/demo/customize.min.js +16 -62
  47. package/components/select/demo/getting-started.min.js +16 -62
  48. package/components/select/demo/index.min.js +16 -62
  49. package/components/select/dist/auro-select.d.ts +0 -6
  50. package/components/select/dist/index.js +16 -62
  51. package/components/select/dist/registered.js +16 -62
  52. package/custom-elements.json +8 -38
  53. package/package.json +1 -1
@@ -13376,7 +13376,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$3 {
13376
13376
  }
13377
13377
  };
13378
13378
 
13379
- var formkitVersion$8 = '202607022225';
13379
+ var formkitVersion$8 = '202607022150';
13380
13380
 
13381
13381
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
13382
13382
  // See LICENSE in the project root for license information.
@@ -25747,28 +25747,23 @@ var popoverVersion = '6.0.1';
25747
25747
  * @returns {number|null} Local-midnight Unix timestamp (seconds), or null.
25748
25748
  */
25749
25749
  function parseIsoToTimestamp(isoStr) {
25750
- // Strict YYYY-MM-DD matcher with named groups. Rejects trailing garbage
25751
- // ("2024x-01-01"), short segments ("2024-1-1"), and any non-digit
25752
- // characters. `parseInt` alone accepted both because it stops at the
25753
- // first non-digit and doesn't require a minimum length.
25754
- const ISO_DATE_RE = /^(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2})$/u;
25755
- const MAX_MONTH = 12;
25756
- const MAX_DAY = 31;
25757
-
25758
25750
  if (typeof isoStr !== 'string') {
25759
25751
  return null;
25760
25752
  }
25761
- const match = ISO_DATE_RE.exec(isoStr);
25762
- if (!match) {
25753
+ const parts = isoStr.split('-');
25754
+ if (parts.length !== 3) {
25755
+ return null;
25756
+ }
25757
+ const year = parseInt(parts[0], 10);
25758
+ const month = parseInt(parts[1], 10);
25759
+ const day = parseInt(parts[2], 10);
25760
+ if (!Number.isFinite(year) || !Number.isFinite(month) || !Number.isFinite(day)) {
25763
25761
  return null;
25764
25762
  }
25765
- const year = Number(match.groups.year);
25766
- const month = Number(match.groups.month);
25767
- const day = Number(match.groups.day);
25768
25763
  // Reject overflow values like "2024-13-40" — JS `new Date(year, month, day)`
25769
25764
  // silently normalizes those to a different calendar day, which would
25770
25765
  // disable the wrong date if we let the result through.
25771
- if (month < 1 || month > MAX_MONTH || day < 1 || day > MAX_DAY) {
25766
+ if (month < 1 || month > 12 || day < 1 || day > 31) {
25772
25767
  return null;
25773
25768
  }
25774
25769
  const date = new Date(year, month - 1, day);
@@ -26346,36 +26341,13 @@ class AuroCalendarCell extends i$3 {
26346
26341
  }
26347
26342
 
26348
26343
  firstUpdated() {
26349
- this._initFromAncestors();
26350
- }
26351
-
26352
- /**
26353
- * Wires the cell to its ancestor calendar-month and calendar (and, via
26354
- * the calendar, to the datepicker). Extracted from firstUpdated() so the
26355
- * retry loop can re-attempt without recursively invoking a Lit lifecycle
26356
- * method (which is outside the framework's contract).
26357
- * @private
26358
- * @returns {void}
26359
- */
26360
- _initFromAncestors() {
26361
26344
  const calendarMonth = this.runtimeUtils.closestElement('auro-formkit-calendar-month', this);
26362
26345
  const calendar = this.runtimeUtils.closestElement('auro-formkit-calendar', calendarMonth);
26363
26346
 
26364
26347
  if (!calendar) {
26365
- // Retry on the next event-loop turn to give the ancestor chain a chance
26366
- // to attach — but cap attempts so a permanently detached cell doesn't
26367
- // spin forever. 10 turns is far more than any observed race needs.
26368
- this._firstUpdatedRetries = (this._firstUpdatedRetries || 0) + 1;
26369
- if (this._firstUpdatedRetries > 10) {
26370
- return;
26371
- }
26372
- this._firstUpdatedRetryTimer = setTimeout(() => {
26373
- this._firstUpdatedRetryTimer = null;
26374
- this._initFromAncestors();
26375
- }, 0);
26348
+ setTimeout(() => this.firstUpdated(), 0);
26376
26349
  return;
26377
26350
  }
26378
- this._firstUpdatedRetries = 0;
26379
26351
  this.calendar = calendar;
26380
26352
  this.datepicker = calendar.datepicker;
26381
26353
  this._slotContentHandler = () => {
@@ -26403,10 +26375,6 @@ class AuroCalendarCell extends i$3 {
26403
26375
  if (this.datepicker && this._slotContentHandler) {
26404
26376
  this.datepicker.removeEventListener('auroDatePicker-newSlotContent', this._slotContentHandler);
26405
26377
  }
26406
- if (this._firstUpdatedRetryTimer) {
26407
- clearTimeout(this._firstUpdatedRetryTimer);
26408
- this._firstUpdatedRetryTimer = null;
26409
- }
26410
26378
  }
26411
26379
 
26412
26380
  /**
@@ -27778,7 +27746,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
27778
27746
  }
27779
27747
  };
27780
27748
 
27781
- var formkitVersion$2$1 = '202607022225';
27749
+ var formkitVersion$2$1 = '202607022150';
27782
27750
 
27783
27751
  let l$1$2 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$2`${s$3(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1$2 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$1$2 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$1$3=i$6`: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}
27784
27752
  `,u$4$2=i$6`.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}}
@@ -27917,10 +27885,7 @@ class AuroCalendar extends RangeDatepicker {
27917
27885
  * Support will be removed in a future major release.
27918
27886
  * @private
27919
27887
  */
27920
- // Initialize the backing field directly so the constructor's default
27921
- // empty array doesn't trigger the deprecation warning. Assignments from
27922
- // consumers still route through the setter below.
27923
- this._disabledDays = [];
27888
+ this.disabledDays = [];
27924
27889
 
27925
27890
  /**
27926
27891
  * @private
@@ -27953,44 +27918,6 @@ class AuroCalendar extends RangeDatepicker {
27953
27918
  this._calendarInstanceId = Date.now().toString(36);
27954
27919
  }
27955
27920
 
27956
- /**
27957
- * @deprecated See constructor JSDoc — migrate to
27958
- * `auro-datepicker.blackoutDates`. The getter/setter pair exists so the
27959
- * one-time deprecation warning fires as soon as a consumer assigns a
27960
- * non-empty array (empty assignments are ignored — an empty array is
27961
- * indistinguishable from the constructor default and would produce a
27962
- * spurious warning), rather than only when `_getBlackoutSet()` happens
27963
- * to rebuild.
27964
- * @returns {Array} The current legacy `disabledDays` array.
27965
- */
27966
- get disabledDays() {
27967
- return this._disabledDays;
27968
- }
27969
-
27970
- /**
27971
- * @param {Array} value - The legacy `disabledDays` array to set.
27972
- */
27973
- set disabledDays(value) {
27974
- const oldValue = this._disabledDays;
27975
- // Coerce non-arrays to `[]`. Consumers occasionally pass `null`
27976
- // (Lit's Array attribute converter returns null for a missing/empty
27977
- // attribute) or misuse the API; downstream code in
27978
- // `auro-calendar-cell.isEnabled` calls `.findIndex()` on this value
27979
- // without an Array.isArray guard, so a truthy non-array would throw
27980
- // at render.
27981
- const coerced = Array.isArray(value) ? value : [];
27982
- if (coerced.length > 0) {
27983
- this._warnDisabledDaysDeprecated();
27984
- }
27985
- this._disabledDays = coerced;
27986
- // `disabledDays` is a Lit `@property({ type: Array })` on the
27987
- // RangeDatepicker base class; Lit's generated setter (which we've
27988
- // overridden here to insert the warning) is what normally invalidates
27989
- // the reactive cycle. Re-invoke requestUpdate manually so consumer
27990
- // assignments still re-render the calendar.
27991
- this.requestUpdate('disabledDays', oldValue);
27992
- }
27993
-
27994
27921
  static get styles() {
27995
27922
  return [
27996
27923
  styleCss$7$1,
@@ -28536,19 +28463,8 @@ class AuroCalendar extends RangeDatepicker {
28536
28463
  /**
28537
28464
  * Returns a memoized Set of blackout timestamps (seconds) drawn from both
28538
28465
  * the legacy `disabledDays` array and the datepicker's ISO `blackoutDates`.
28539
- *
28540
- * The cache invalidates on **reference identity** only when the
28541
- * consumer reassigns the array (`el.blackoutDates = [...]`), matching
28542
- * Lit's own reactivity semantics for array properties. In-place mutations
28543
- * on the existing array (`push`, `splice`, index assignment) will NOT
28544
- * invalidate the cache and the new entries will be silently ignored.
28545
- * Consumers must reassign to update — see the JSDoc on
28546
- * `auro-datepicker.blackoutDates` for the recommended pattern.
28547
- *
28548
- * A shallow-equality tier was considered but rejected: it would run
28549
- * O(N) work on every cell render (this method is called per-cell via
28550
- * `isBlackout()`) and still wouldn't catch same-length value swaps,
28551
- * offering a false sense of safety.
28466
+ * The cache invalidates when either source array's reference changes, which
28467
+ * matches Lit's own reactive identity semantics for array properties.
28552
28468
  * @private
28553
28469
  * @returns {Set<Number>}
28554
28470
  */
@@ -28729,24 +28645,7 @@ class AuroCalendar extends RangeDatepicker {
28729
28645
  // rendered month(s) first so a single-month calendar does not pick a date
28730
28646
  // that has no DOM cell. Determine the visible range based on centralDate and
28731
28647
  // the number of rendered months.
28732
- //
28733
- // numCalendars is assigned inside renderAllCalendars(), which runs during
28734
- // render() — so by the time the visible-change handler in updated()
28735
- // calls computeActiveDate() in the same cycle, numCalendars is normally
28736
- // set. Guard against the pre-first-render path anyway (e.g. any future
28737
- // caller that reaches computeActiveDate before render() has run):
28738
- // Math.max(undefined, 1) is NaN, which would silently skip the
28739
- // visible-month scan below. Fall back to maximumRenderableMonths'
28740
- // desktop default (1 for non-range, 2 for range) so the scan window is
28741
- // correctly sized whenever numCalendars is not yet populated.
28742
- let renderedMonths = null;
28743
-
28744
- if (Number.isFinite(this.numCalendars) && this.numCalendars > 0) {
28745
- renderedMonths = this.numCalendars;
28746
- } else {
28747
- renderedMonths = this.noRange ? 1 : 2;
28748
- }
28749
-
28648
+ const renderedMonths = Math.max(this.numCalendars, 1);
28750
28649
  const visibleAnchor = this.centralDateObject ?? new Date(now * 1000);
28751
28650
  const visMonthStart = new Date(visibleAnchor.getFullYear(), visibleAnchor.getMonth(), 1);
28752
28651
  visMonthStart.setHours(0, 0, 0, 0);
@@ -29016,8 +28915,6 @@ class AuroCalendar extends RangeDatepicker {
29016
28915
  let targetIndex = -1;
29017
28916
  if (direction === 'next') {
29018
28917
  targetIndex = currentIndex + 1;
29019
- } else if (direction === 'prev') {
29020
- targetIndex = currentIndex - 1;
29021
28918
  }
29022
28919
 
29023
28920
  if (targetIndex >= 0 && targetIndex < allCells.length) {
@@ -29622,10 +29519,6 @@ class AuroCalendar extends RangeDatepicker {
29622
29519
  * originally tried aria-live="polite" here, but VoiceOver treats
29623
29520
  * polite as "wait until idle" — which never happens during active
29624
29521
  * keyboard navigation — so the announcements were silently dropped.
29625
- *
29626
- * This is a documented deviation from WCAG 2.1 SC 4.1.3, which
29627
- * prefers `polite` for status messages. See the "Documented
29628
- * Deviation" section in components/datepicker/docs/pages/accessibility.md.
29629
29522
  * @private
29630
29523
  * @param {String} dateStr - The localized date string to announce.
29631
29524
  * @returns {void}
@@ -33671,7 +33564,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
33671
33564
  }
33672
33565
  };
33673
33566
 
33674
- var formkitVersion$1$3 = '202607022225';
33567
+ var formkitVersion$1$3 = '202607022150';
33675
33568
 
33676
33569
  let AuroElement$2$2 = class AuroElement extends i$3 {
33677
33570
  static get properties() {
@@ -47286,7 +47179,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$3 {
47286
47179
  }
47287
47180
  };
47288
47181
 
47289
- var formkitVersion$7 = '202607022225';
47182
+ var formkitVersion$7 = '202607022150';
47290
47183
 
47291
47184
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
47292
47185
  // See LICENSE in the project root for license information.
@@ -48663,15 +48556,6 @@ const datepickerKeyboardStrategy = {
48663
48556
  evt.stopPropagation();
48664
48557
  evt.preventDefault();
48665
48558
 
48666
- // Signal to the visibility-change handler in auro-datepicker.js that
48667
- // focus should be restored to the trigger regardless of hasFocus.
48668
- // hidePopover() (desktop non-modal path) does not auto-restore focus,
48669
- // and hiding the grid's popover ancestor drops focus to <body>. That
48670
- // synchronously fires focusout on the datepicker host — clearing
48671
- // hasFocus — before updated() runs, which would otherwise skip the
48672
- // input refocus. Native <dialog>.close() (modal path) restores focus
48673
- // itself, but the flag is harmless there.
48674
- component._restoreFocusOnClose = true;
48675
48559
  component.hideBib();
48676
48560
  },
48677
48561
 
@@ -48945,14 +48829,6 @@ class AuroDatePicker extends AuroElement$5 {
48945
48829
 
48946
48830
  /**
48947
48831
  * Array of dates that cannot be selected. Dates should be in ISO format (YYYY-MM-DD).
48948
- *
48949
- * **Immutable update required.** The datepicker treats this array as
48950
- * immutable and memoizes a lookup Set keyed on the array's reference
48951
- * identity — matching Lit's own reactivity semantics for array
48952
- * properties. In-place mutations (`blackoutDates.push(...)`,
48953
- * `blackoutDates[i] = ...`, `blackoutDates.splice(...)`) will not
48954
- * invalidate the cache and the new entries will be silently ignored.
48955
- * To update, reassign the property: `el.blackoutDates = [...el.blackoutDates, '2024-12-25']`.
48956
48832
  */
48957
48833
  blackoutDates: {
48958
48834
  type: Array,
@@ -49838,13 +49714,12 @@ class AuroDatePicker extends AuroElement$5 {
49838
49714
  this.calendar.activeCellDate = null;
49839
49715
 
49840
49716
  // Show the month containing the selected date (or today) instead of
49841
- // whichever month the user last navigated to. Route through
49842
- // updateCentralDate so centralDate stays first-of-month.
49717
+ // whichever month the user last navigated to.
49843
49718
  // Respect consumer-provided centralDate/calendarStartDate if no value is set.
49844
49719
  if (this.valueObject) {
49845
- this.calendarRenderUtil.updateCentralDate(this, this.value);
49720
+ this.centralDate = this.value;
49846
49721
  } else if (!this.centralDate && !this.calendarStartDate && !this.minDate) {
49847
- this.calendarRenderUtil.updateCentralDate(this, new Date());
49722
+ this.centralDate = dateFormatter$1.toISOFormatString(new Date());
49848
49723
  }
49849
49724
  }
49850
49725
 
@@ -49902,15 +49777,8 @@ class AuroDatePicker extends AuroElement$5 {
49902
49777
  // Always clear the inert flag. Only restore focus to the input when the datepicker
49903
49778
  // still has focus (e.g. Escape, date selected) — not when the user tabbed away,
49904
49779
  // which would pull them back and require extra Tab presses to escape.
49905
- //
49906
- // `_restoreFocusOnClose` is set by the Escape handler in
49907
- // datepickerKeyboardStrategy.js to force restore even when hasFocus
49908
- // has already been cleared — hidePopover() (desktop non-modal path)
49909
- // can drop focus to <body> before this update fires.
49910
49780
  this.dropdown.trigger.inert = false;
49911
- const shouldRestoreFocus = this.hasFocus || this._restoreFocusOnClose;
49912
- this._restoreFocusOnClose = false;
49913
- if (shouldRestoreFocus) {
49781
+ if (this.hasFocus) {
49914
49782
  requestAnimationFrame(() => {
49915
49783
  if (!this.dropdown.isPopoverVisible) {
49916
49784
  this.inputList[0].focus();
@@ -50356,18 +50224,6 @@ class AuroDatePicker extends AuroElement$5 {
50356
50224
  this.calendar.requestUpdate();
50357
50225
  this.dispatchEvent(new CustomEvent('auroDatePicker-newSlotContent'));
50358
50226
  }
50359
-
50360
- // Range invariant: if a value change (from click or programmatic) has
50361
- // moved start past end, clear valueEnd here so both properties land in
50362
- // the SAME reactive cycle. Doing it in updated() would schedule a
50363
- // second cycle after cellClickActive/wasCellClick has already been
50364
- // consumed by the value branch, leaving the valueEnd branch to run
50365
- // with a stale handshake and racing with any intervening programmatic
50366
- // value assignments.
50367
- if ((changedProperties.has('value') || changedProperties.has('valueEnd')) &&
50368
- this.valueObject && this.valueEndObject && this.valueObject > this.valueEndObject) {
50369
- this.valueEnd = undefined;
50370
- }
50371
50227
  }
50372
50228
 
50373
50229
  updated(changedProperties) {
@@ -50435,12 +50291,8 @@ class AuroDatePicker extends AuroElement$5 {
50435
50291
 
50436
50292
  if (this.value && this.value.length === this.inputList[0].lengthForType && !(this.wasCellClick && this.range)) {
50437
50293
  // Skip centralDate update when user clicked a cell in range mode
50438
- // to prevent the displayed months from shifting. Route through
50439
- // updateCentralDate so centralDate stays first-of-month — direct
50440
- // assignment of the raw value briefly holds a mid-month string
50441
- // and violates the invariant that observers (e.g. calendar sync)
50442
- // rely on.
50443
- this.calendarRenderUtil.updateCentralDate(this, this.value);
50294
+ // to prevent the displayed months from shifting
50295
+ this.centralDate = this.value;
50444
50296
  }
50445
50297
 
50446
50298
  this.setHasValue();
@@ -50498,10 +50350,8 @@ class AuroDatePicker extends AuroElement$5 {
50498
50350
 
50499
50351
  if (this.valueEnd && this.valueEnd.length === this.inputList[1].lengthForType && !this.wasCellClick) {
50500
50352
  // Skip centralDate update when user clicked a cell in range mode
50501
- // to prevent the displayed months from shifting. Route through
50502
- // updateCentralDate to preserve the first-of-month invariant
50503
- // (see matching comment in the value branch above).
50504
- this.calendarRenderUtil.updateCentralDate(this, this.valueEnd);
50353
+ // to prevent the displayed months from shifting
50354
+ this.centralDate = this.valueEnd;
50505
50355
  }
50506
50356
 
50507
50357
  this.validate();
@@ -50525,6 +50375,10 @@ class AuroDatePicker extends AuroElement$5 {
50525
50375
  this.validation.validate(lastInput, true);
50526
50376
  }
50527
50377
 
50378
+ if (this.valueObject && this.valueEndObject && this.valueObject > this.valueEndObject) {
50379
+ this.valueEnd = undefined;
50380
+ }
50381
+
50528
50382
  // This resets the datepicker when the minDate is set to a new value that is
50529
50383
  // a later date than the current value date
50530
50384
  if (changedProperties.has('minDate') && this.minDate) {
@@ -52207,7 +52061,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
52207
52061
  }
52208
52062
  };
52209
52063
 
52210
- var formkitVersion$1$2 = '202607022225';
52064
+ var formkitVersion$1$2 = '202607022150';
52211
52065
 
52212
52066
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
52213
52067
  // See LICENSE in the project root for license information.
@@ -56535,7 +56389,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
56535
56389
  }
56536
56390
  };
56537
56391
 
56538
- var formkitVersion$6 = '202607022225';
56392
+ var formkitVersion$6 = '202607022150';
56539
56393
 
56540
56394
  let AuroElement$1$2 = class AuroElement extends i$3 {
56541
56395
  static get properties() {
@@ -60515,7 +60369,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
60515
60369
  }
60516
60370
  };
60517
60371
 
60518
- var formkitVersion$5 = '202607022225';
60372
+ var formkitVersion$5 = '202607022150';
60519
60373
 
60520
60374
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
60521
60375
  // See LICENSE in the project root for license information.
@@ -62280,7 +62134,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
62280
62134
  }
62281
62135
  };
62282
62136
 
62283
- var formkitVersion$4 = '202607022225';
62137
+ var formkitVersion$4 = '202607022150';
62284
62138
 
62285
62139
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
62286
62140
  // See LICENSE in the project root for license information.
@@ -67501,7 +67355,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
67501
67355
  }
67502
67356
  };
67503
67357
 
67504
- var formkitVersion$2 = '202607022225';
67358
+ var formkitVersion$2 = '202607022150';
67505
67359
 
67506
67360
  let AuroElement$2$1 = class AuroElement extends i$3 {
67507
67361
  static get properties() {
@@ -81116,7 +80970,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
81116
80970
  }
81117
80971
  };
81118
80972
 
81119
- var formkitVersion$1$1 = '202607022225';
80973
+ var formkitVersion$1$1 = '202607022150';
81120
80974
 
81121
80975
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
81122
80976
  // See LICENSE in the project root for license information.
@@ -82242,7 +82096,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
82242
82096
  }
82243
82097
  };
82244
82098
 
82245
- var formkitVersion$3 = '202607022225';
82099
+ var formkitVersion$3 = '202607022150';
82246
82100
 
82247
82101
  var styleCss$1$3 = i$6`.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}`;
82248
82102
 
@@ -87019,6 +86873,9 @@ function navigateArrow(component, direction, options = {}) {
87019
86873
  * @param {HTMLElement | null | undefined} menu - The auro-menu element.
87020
86874
  * @returns {Array<HTMLElement>} Non-disabled options, empty array when none.
87021
86875
  */
86876
+ function getEnabledOptions(menu) {
86877
+ return (menu?.options || []).filter((option) => !option.disabled);
86878
+ }
87022
86879
 
87023
86880
  /**
87024
86881
  * Returns the active (selectable + visible) options for type-ahead navigation.
@@ -87088,10 +86945,8 @@ const selectKeyboardStrategy = {
87088
86945
  End(component, evt, ctx) {
87089
86946
  evt.preventDefault();
87090
86947
  evt.stopPropagation();
87091
- // `pop()` is safe here: getActiveOptions returns a fresh filtered array.
87092
- // Uses "active" (not "enabled") so hidden and static rows — which a screen
87093
- // reader must not announce as focused — are skipped.
87094
- const lastOption = getActiveOptions(component.menu).pop();
86948
+ // `pop()` is safe here: getEnabledOptions returns a fresh filtered array.
86949
+ const lastOption = getEnabledOptions(component.menu).pop();
87095
86950
  if (!lastOption) {
87096
86951
  return;
87097
86952
  }
@@ -87122,7 +86977,7 @@ const selectKeyboardStrategy = {
87122
86977
  Home(component, evt, ctx) {
87123
86978
  evt.preventDefault();
87124
86979
  evt.stopPropagation();
87125
- const [firstOption] = getActiveOptions(component.menu);
86980
+ const [firstOption] = getEnabledOptions(component.menu);
87126
86981
  if (!firstOption) {
87127
86982
  return;
87128
86983
  }
@@ -87147,15 +87002,6 @@ const selectKeyboardStrategy = {
87147
87002
  },
87148
87003
 
87149
87004
  default(component, evt, ctx) {
87150
- // Ignore keys chorded with Ctrl/Meta/Alt so browser/OS shortcuts
87151
- // (Cmd+C, Ctrl+V, Alt+X, Cmd+Space, …) don't leak into typeahead
87152
- // or toggle the bib. Native <select> ignores modified keys.
87153
- // ArrowUp/ArrowDown handle modifier+arrow explicitly above; this
87154
- // guard only affects the default (printable/Space) branch.
87155
- if (evt.ctrlKey || evt.metaKey || evt.altKey) {
87156
- return;
87157
- }
87158
-
87159
87005
  // Space resolves to either typeahead-buffer extension or bib toggle
87160
87006
  // depending on whether a type-ahead buffer is active. Mirrors native
87161
87007
  // <select> and the WAI-ARIA APG Listbox guidance: mid-typeahead space
@@ -91086,7 +90932,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
91086
90932
  }
91087
90933
  };
91088
90934
 
91089
- var formkitVersion$1 = '202607022225';
90935
+ var formkitVersion$1 = '202607022150';
91090
90936
 
91091
90937
  class AuroElement extends i$3 {
91092
90938
  static get properties() {
@@ -93125,7 +92971,7 @@ class AuroHelpText extends i$3 {
93125
92971
  }
93126
92972
  }
93127
92973
 
93128
- var formkitVersion = '202607022225';
92974
+ var formkitVersion = '202607022150';
93129
92975
 
93130
92976
  var styleCss = i$6`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);font-weight:var(--wcss-body-default-weight, );line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-default-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-default-emphasized{font-size:var(--wcss-body-default-emphasized-font-size, 1rem);font-weight:var(--wcss-body-default-emphasized-weight, );line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);font-weight:var(--wcss-body-lg-weight, );line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg,.body-lg-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg-emphasized{font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);font-weight:var(--wcss-body-lg-emphasized-weight, );line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, 0.875rem);font-weight:var(--wcss-body-sm-weight, );line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-sm-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-sm-emphasized{font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);font-weight:var(--wcss-body-sm-emphasized-weight, );line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.body-xs{font-size:var(--wcss-body-xs-font-size, 0.75rem);font-weight:var(--wcss-body-xs-weight, );line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs,.body-xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs-emphasized{font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);font-weight:var(--wcss-body-xs-emphasized-weight, );line-height:var(--wcss-body-xs-emphasized-line-height, 1rem)}.body-2xs{font-size:var(--wcss-body-2xs-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-weight, );line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs,.body-2xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-2xs-emphasized{font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-emphasized-weight, );line-height:var(--wcss-body-2xs-emphasized-line-height, 0.875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 300);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, 300);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
93131
92977
 
@@ -93689,11 +93535,8 @@ class AuroSelect extends AuroElement$1 {
93689
93535
  } else if (this.multiSelect && Array.isArray(this.optionSelected) && this.optionSelected.length > 0) {
93690
93536
  this.menu.updateActiveOption(this.optionSelected[0]);
93691
93537
  } else {
93692
- // If no activeOption has yet to be set, make the first active option
93693
- // (non-disabled, non-hidden, non-static) active by default. "Active" —
93694
- // not just "enabled" — so hidden rows and static placeholders never
93695
- // land in aria-activedescendant on open.
93696
- const [firstActive] = getActiveOptions(this.menu);
93538
+ // If no activeOption has yet to be set, then make the first enabled option active by default
93539
+ const [firstActive] = getEnabledOptions(this.menu);
93697
93540
  this.menu.updateActiveOption(firstActive);
93698
93541
  }
93699
93542
  }
@@ -93939,12 +93782,6 @@ class AuroSelect extends AuroElement$1 {
93939
93782
 
93940
93783
  /**
93941
93784
  * Binds all behavior needed to the menu after rendering.
93942
- *
93943
- * The `<auro-menu>` reference is captured once and not re-targeted on
93944
- * `slotchange`. Runtime option mutations are covered via
93945
- * `auroMenu-optionsChange`, so swap options inside the menu freely; do not
93946
- * swap the `<auro-menu>` element itself under a live select — remount the
93947
- * parent `<auro-select>` instead.
93948
93785
  * @private
93949
93786
  * @returns {void}
93950
93787
  */
@@ -94003,15 +93840,6 @@ class AuroSelect extends AuroElement$1 {
94003
93840
  if (this.menu.optionSelected !== undefined) {
94004
93841
  return;
94005
93842
  }
94006
- // Skip when the select is already cleared (valueless click with no
94007
- // prior selection): value/optionSelected are already empty and there
94008
- // is no stale trigger text to refresh, so updateDisplayedValue would
94009
- // just churn the DOM and request a needless dropdown re-render.
94010
- const hasStaleState = this.value !== undefined ||
94011
- (this.multiSelect ? this.optionSelected?.length > 0 : this.optionSelected !== undefined);
94012
- if (!hasStaleState) {
94013
- return;
94014
- }
94015
93843
  this.value = undefined;
94016
93844
  this.optionSelected = this.multiSelect ? [] : undefined;
94017
93845
  // The trigger label is rendered imperatively into #value, so a property
@@ -94041,15 +93869,10 @@ class AuroSelect extends AuroElement$1 {
94041
93869
  if (this.dropdown.isPopoverVisible) {
94042
93870
  announceToScreenReader(this._getAnnouncementRoot(), message);
94043
93871
  } else {
94044
- // Typeahead-on-closed calls updateActiveOption() before show(), so
94045
- // this handler runs with isPopoverVisible still false. queueMicrotask
94046
- // is safe because show() showBib() flips isPopoverVisible and
94047
- // dialog.showModal() both run synchronously in the same task; the
94048
- // microtask queue only drains once _handleTypeahead unwinds, by
94049
- // which point _getAnnouncementRoot() resolves to the bib's shadow
94050
- // root inside the now-open modal. Do NOT switch to auroDropdown-toggled
94051
- // — it fires before showModal(), landing the announcement in the
94052
- // host root while the dialog is still not-yet-modal.
93872
+ // Typeahead-on-closed fires this event before `show()` flips
93873
+ // isPopoverVisible. Defer so the announcement targets the bib's
93874
+ // live region once the fullscreen <dialog> opens otherwise it
93875
+ // lands in the host root, which is inert under the active modal.
94053
93876
  queueMicrotask(() => announceToScreenReader(this._getAnnouncementRoot(), message));
94054
93877
  }
94055
93878
  }
@@ -94443,13 +94266,6 @@ class AuroSelect extends AuroElement$1 {
94443
94266
  }
94444
94267
 
94445
94268
  if (changedProperties.has('value')) {
94446
- // A value change ends the current interaction — whether it came from a
94447
- // user commit, programmatic assignment, or reset(). Clear the buffer so
94448
- // a stale prefix does not concatenate onto the next keystroke while the
94449
- // host still has focus (the blur listener would otherwise be the only
94450
- // focus-retained clear point, and hideBib() below does not blur).
94451
- this._clearTypeaheadBuffer();
94452
-
94453
94269
  this.setMenuValue(this.value);
94454
94270
 
94455
94271
  this._updateNativeSelect();
@@ -94505,9 +94321,6 @@ class AuroSelect extends AuroElement$1 {
94505
94321
  * @returns {void}
94506
94322
  */
94507
94323
  reset() {
94508
- // Defense-in-depth: updated()'s value-change branch also clears, but
94509
- // reset-to-same-value (e.g. undefined → undefined) skips that path.
94510
- this._clearTypeaheadBuffer();
94511
94324
  this.menu.reset();
94512
94325
  this.validation.reset(this);
94513
94326
  }
@@ -94530,13 +94343,8 @@ class AuroSelect extends AuroElement$1 {
94530
94343
  // Hidden native <select> has no `multiple` attribute, so any change it fires
94531
94344
  // is a single raw value — applying it in multiSelect mode would collapse the
94532
94345
  // JSON-array `value` shape. Bfcache/autofill can reach this on a name-bearing
94533
- // form control even with aria-hidden/tabindex=-1, so revert to the expected
94534
- // mirror (formattedValue[0]) rather than letting the native select drift and
94535
- // silently submit the autofilled scalar under `name`.
94536
- if (this.multiSelect) {
94537
- this._updateNativeSelect();
94538
- return;
94539
- }
94346
+ // form control even with aria-hidden/tabindex=-1.
94347
+ if (this.multiSelect) return;
94540
94348
 
94541
94349
  const selectedOption = event.target.options[event.target.selectedIndex];
94542
94350
  if (!selectedOption) return;