@aurodesignsystem-dev/auro-formkit 0.0.0-pr1475.2 → 0.0.0-pr1475.3

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 (46) 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 +11 -3
  7. package/components/combobox/demo/getting-started.min.js +11 -3
  8. package/components/combobox/demo/index.min.js +11 -3
  9. package/components/combobox/dist/index.js +11 -3
  10. package/components/combobox/dist/registered.js +11 -3
  11. package/components/counter/demo/customize.min.js +10 -2
  12. package/components/counter/demo/index.min.js +10 -2
  13. package/components/counter/dist/index.js +1 -1
  14. package/components/counter/dist/registered.js +1 -1
  15. package/components/datepicker/demo/customize.min.js +99 -33
  16. package/components/datepicker/demo/index.md +2 -2
  17. package/components/datepicker/demo/index.min.js +100 -34
  18. package/components/datepicker/dist/index.js +99 -33
  19. package/components/datepicker/dist/registered.js +99 -33
  20. package/components/datepicker/dist/src/auro-calendar-cell.d.ts +9 -0
  21. package/components/dropdown/demo/customize.min.js +9 -1
  22. package/components/dropdown/demo/getting-started.min.js +9 -1
  23. package/components/dropdown/demo/index.min.js +9 -1
  24. package/components/dropdown/dist/index.js +9 -1
  25. package/components/dropdown/dist/registered.js +9 -1
  26. package/components/form/demo/customize.min.js +133 -43
  27. package/components/form/demo/getting-started.min.js +133 -43
  28. package/components/form/demo/index.min.js +133 -43
  29. package/components/form/demo/registerDemoDeps.min.js +133 -43
  30. package/components/input/demo/customize.min.js +1 -1
  31. package/components/input/demo/getting-started.min.js +1 -1
  32. package/components/input/demo/index.min.js +1 -1
  33. package/components/input/dist/index.js +1 -1
  34. package/components/input/dist/registered.js +1 -1
  35. package/components/radio/demo/customize.min.js +1 -1
  36. package/components/radio/demo/getting-started.min.js +1 -1
  37. package/components/radio/demo/index.min.js +1 -1
  38. package/components/radio/dist/index.js +1 -1
  39. package/components/radio/dist/registered.js +1 -1
  40. package/components/select/demo/customize.min.js +10 -2
  41. package/components/select/demo/getting-started.min.js +10 -2
  42. package/components/select/demo/index.min.js +10 -2
  43. package/components/select/dist/index.js +10 -2
  44. package/components/select/dist/registered.js +10 -2
  45. package/custom-elements.json +1496 -1485
  46. package/package.json +1 -1
@@ -6743,7 +6743,7 @@ let AuroHelpText$9 = class AuroHelpText extends i$3 {
6743
6743
  }
6744
6744
  };
6745
6745
 
6746
- var formkitVersion$9 = '202605182240';
6746
+ var formkitVersion$9 = '202605182353';
6747
6747
 
6748
6748
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
6749
6749
  // See LICENSE in the project root for license information.
@@ -15520,6 +15520,13 @@ class AuroCalendarCell extends i$3 {
15520
15520
  return false;
15521
15521
  }
15522
15522
 
15523
+ // Check against disabledDays timestamps (legacy path)
15524
+ if (Array.isArray(this.disabledDays) && this.disabledDays.length > 0) {
15525
+ if (this.disabledDays.findIndex(d => parseInt(d, 10) === this.day.date) !== -1) {
15526
+ return true;
15527
+ }
15528
+ }
15529
+
15523
15530
  // Check against blackoutDates (ISO format YYYY-MM-DD) on the datepicker
15524
15531
  const blackoutDates = this.datepicker?.blackoutDates;
15525
15532
 
@@ -15584,8 +15591,9 @@ class AuroCalendarCell extends i$3 {
15584
15591
 
15585
15592
  const date = new Date(this.day.date * 1000);
15586
15593
 
15587
- // Generate localized full date string
15588
- const dateFormatter = new Intl.DateTimeFormat(undefined, {
15594
+ // Generate localized full date string using the configured locale
15595
+ const localeCode = this.locale?.code || undefined;
15596
+ const dateFormatter = new Intl.DateTimeFormat(localeCode, {
15589
15597
  weekday: 'long',
15590
15598
  year: 'numeric',
15591
15599
  month: 'long',
@@ -15594,7 +15602,7 @@ class AuroCalendarCell extends i$3 {
15594
15602
 
15595
15603
  let label = dateFormatter.format(date);
15596
15604
 
15597
- // appending popover content here so that it get's read in a logical order with the other date content.
15605
+ // appending popover content here so that it gets read in a logical order with the other date content.
15598
15606
  if (this.hasPopoverContent) {
15599
15607
  label += `, ${this.querySelector(`[slot="popover_${this.dateStr}"]`).innerText.trim()}`;
15600
15608
  }
@@ -15826,10 +15834,22 @@ class AuroCalendarCell extends i$3 {
15826
15834
  this.handleSlotContent();
15827
15835
  });
15828
15836
 
15837
+ this.calendarMonth = calendarMonth;
15838
+ this.configurePopover();
15839
+ }
15840
+
15841
+ /**
15842
+ * Configures the popover instance with the calendar month boundary.
15843
+ * Called from firstUpdated and updated because the popover element is only
15844
+ * rendered after hasPopoverContent becomes true (set by handleSlotContent).
15845
+ * @private
15846
+ * @returns {void}
15847
+ */
15848
+ configurePopover() {
15829
15849
  this.auroPopover = this.shadowRoot.querySelector(this.popoverTag._$litStatic$);
15830
15850
 
15831
- if (this.auroPopover) {
15832
- this.auroPopover.boundary = calendarMonth;
15851
+ if (this.auroPopover && this.calendarMonth) {
15852
+ this.auroPopover.boundary = this.calendarMonth;
15833
15853
  }
15834
15854
  }
15835
15855
 
@@ -15842,6 +15862,11 @@ class AuroCalendarCell extends i$3 {
15842
15862
  this.setDateSlotName();
15843
15863
  this.handleSlotContent();
15844
15864
  }
15865
+
15866
+ // Configure popover when it first becomes rendered
15867
+ if (properties.has('hasPopoverContent') && this.hasPopoverContent) {
15868
+ this.updateComplete.then(() => this.configurePopover());
15869
+ }
15845
15870
  }
15846
15871
 
15847
15872
  /**
@@ -16098,8 +16123,12 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
16098
16123
  }
16099
16124
  } else if (key === 'ArrowDown' || key === 'ArrowUp') {
16100
16125
  // Find the target day (same day-of-week, +/- 7 days)
16126
+ // Use Date arithmetic instead of fixed seconds to handle DST correctly
16101
16127
  const increment = key === 'ArrowDown' ? 7 : -7;
16102
- const targetDate = activeCell.day.date + (increment * 86400); // 86400 seconds per day
16128
+ const currentDate = new Date(activeCell.day.date * 1000);
16129
+ currentDate.setDate(currentDate.getDate() + increment);
16130
+ currentDate.setHours(0, 0, 0, 0);
16131
+ const targetDate = Math.floor(currentDate.getTime() / 1000);
16103
16132
 
16104
16133
  // Look for the target date in this month's focusable cells
16105
16134
  targetCell = focusableCells.find(cell => cell.day.date === targetDate);
@@ -16163,7 +16192,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
16163
16192
  var _a, _b;
16164
16193
 
16165
16194
  return b$8 `
16166
- <div aria-labelledby="${this.getHeadingId()}" @keydown="${this.handleGridKeyDown}">
16195
+ <div aria-labelledby="${this.getHeadingId()}">
16167
16196
  <div class="header">
16168
16197
  ${this.renderPrevButton()}
16169
16198
  <div class="headerTitle heading-xs" id="${this.getHeadingId()}" aria-live="polite" aria-atomic="true">
@@ -16178,7 +16207,7 @@ class AuroCalendarMonth extends RangeDatepickerCalendar {
16178
16207
  ${this.renderNextButton()}
16179
16208
  </div>
16180
16209
 
16181
- <div class="table" role="grid" aria-labelledby="${this.getHeadingId()}">
16210
+ <div class="table" role="grid" aria-labelledby="${this.getHeadingId()}" @keydown="${this.handleGridKeyDown}">
16182
16211
  <div class="thead" role="rowgroup">
16183
16212
  <div class="tr" role="row">
16184
16213
  ${(_a = this.dayNamesOfTheWeek) === null || _a === void 0 ? void 0 : _a.map((dayNameOfWeek, index) => this.renderDayOfWeek(dayNameOfWeek, index))}
@@ -16996,7 +17025,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
16996
17025
  }
16997
17026
  };
16998
17027
 
16999
- var formkitVersion$2$1 = '202605182240';
17028
+ var formkitVersion$2$1 = '202605182353';
17000
17029
 
17001
17030
  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$6`${s$8(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$5`: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}
17002
17031
  `,u$4$1=i$5`.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}}
@@ -17286,7 +17315,8 @@ class AuroCalendar extends RangeDatepicker {
17286
17315
  */
17287
17316
  announceMonthChange() {
17288
17317
  const date = new Date(this.centralDate);
17289
- const formatter = new Intl.DateTimeFormat(undefined, { month: 'long', year: 'numeric' });
17318
+ const localeCode = this.locale?.code || undefined;
17319
+ const formatter = new Intl.DateTimeFormat(localeCode, { month: 'long', year: 'numeric' });
17290
17320
  this.announceSelection(formatter.format(date));
17291
17321
  }
17292
17322
 
@@ -17466,9 +17496,19 @@ class AuroCalendar extends RangeDatepicker {
17466
17496
  * @returns {Number|undefined} Unix timestamp (seconds) of the date to activate, or undefined.
17467
17497
  */
17468
17498
  computeActiveDate() {
17469
- const ONE_DAY = 86400; // seconds
17470
17499
  const MAX_SCAN_DAYS = 366; // scan at most ~1 year in each direction
17471
17500
 
17501
+ /**
17502
+ * Adds days to a timestamp using Date arithmetic to handle DST correctly.
17503
+ * Returns a local-midnight-aligned timestamp in seconds.
17504
+ */
17505
+ const addDays = (ts, days) => {
17506
+ const d = new Date(ts * 1000);
17507
+ d.setDate(d.getDate() + days);
17508
+ d.setHours(0, 0, 0, 0);
17509
+ return Math.floor(d.getTime() / 1000);
17510
+ };
17511
+
17472
17512
  const rawMin = Number(this.min);
17473
17513
  const rawMax = Number(this.max);
17474
17514
 
@@ -17481,11 +17521,13 @@ class AuroCalendar extends RangeDatepicker {
17481
17521
  (this.disabledDays || []).map(d => parseInt(d, 10))
17482
17522
  );
17483
17523
 
17484
- // Also include ISO-format blackoutDates from the datepicker if available
17524
+ // Also include ISO-format blackoutDates from the datepicker if available.
17525
+ // Parse YYYY-MM-DD as local date to avoid UTC shift issues.
17485
17526
  const isoBlackouts = this.datepicker?.blackoutDates;
17486
17527
  if (Array.isArray(isoBlackouts)) {
17487
17528
  for (const isoStr of isoBlackouts) {
17488
- const ts = Math.floor(new Date(isoStr).setHours(0, 0, 0, 0) / 1000);
17529
+ const parts = isoStr.split('-');
17530
+ const ts = Math.floor(new Date(parseInt(parts[0], 10), parseInt(parts[1], 10) - 1, parseInt(parts[2], 10)).getTime() / 1000);
17489
17531
  if (Number.isFinite(ts)) blackoutSet.add(ts);
17490
17532
  }
17491
17533
  }
@@ -17514,31 +17556,34 @@ class AuroCalendar extends RangeDatepicker {
17514
17556
  if (isEnabled(now)) return now;
17515
17557
 
17516
17558
  // 3. First future enabled date (scan forward from tomorrow, capped by max and MAX_SCAN_DAYS).
17517
- const scanMax = Number.isFinite(maxTs)
17518
- ? Math.min(maxTs, now + (MAX_SCAN_DAYS * ONE_DAY))
17519
- : now + (MAX_SCAN_DAYS * ONE_DAY);
17520
-
17521
- for (let ts = now + ONE_DAY; ts <= scanMax; ts += ONE_DAY) {
17559
+ for (let idx = 1; idx <= MAX_SCAN_DAYS; idx++) {
17560
+ const ts = addDays(now, idx);
17561
+ if (Number.isFinite(maxTs) && ts > maxTs) break;
17522
17562
  if (isEnabled(ts)) return ts;
17523
17563
  }
17524
17564
 
17525
17565
  // 4. First previous enabled date (scan backward from yesterday, capped by min and MAX_SCAN_DAYS).
17526
- const scanMin = Number.isFinite(minTs)
17527
- ? Math.max(minTs, now - (MAX_SCAN_DAYS * ONE_DAY))
17528
- : now - (MAX_SCAN_DAYS * ONE_DAY);
17529
-
17530
- for (let ts = now - ONE_DAY; ts >= scanMin; ts -= ONE_DAY) {
17566
+ for (let idx = 1; idx <= MAX_SCAN_DAYS; idx++) {
17567
+ const ts = addDays(now, -idx);
17568
+ if (Number.isFinite(minTs) && ts < minTs) break;
17531
17569
  if (isEnabled(ts)) return ts;
17532
17570
  }
17533
17571
 
17534
17572
  // 5. If scans missed (e.g. min/max range is far from today), fall back to
17535
17573
  // the first enabled date in the [min, max] range.
17536
17574
  if (Number.isFinite(minTs) && Number.isFinite(maxTs)) {
17537
- for (let ts = minTs; ts <= maxTs; ts += ONE_DAY) {
17575
+ let ts = minTs;
17576
+ for (let idx = 0; ts <= maxTs; idx++) {
17538
17577
  if (isEnabled(ts)) return ts;
17578
+ ts = addDays(minTs, idx + 1);
17539
17579
  }
17540
17580
  }
17541
17581
 
17582
+ // 6. All dates are blackout — fall back to the first in-range date so focus
17583
+ // still lands on a focusable (but not selectable) cell.
17584
+ if (Number.isFinite(minTs) && isInRange(minTs)) return minTs;
17585
+ if (isInRange(now)) return now;
17586
+
17542
17587
  return undefined;
17543
17588
  }
17544
17589
 
@@ -17597,8 +17642,12 @@ class AuroCalendar extends RangeDatepicker {
17597
17642
  }
17598
17643
  } else if (key === 'ArrowDown' || key === 'ArrowUp') {
17599
17644
  // Vertical navigation: find same day-of-week +/- 7 days
17645
+ // Use Date arithmetic instead of fixed seconds to handle DST correctly
17600
17646
  const increment = key === 'ArrowDown' ? 7 : -7;
17601
- const targetDate = fromDate + (increment * 86400);
17647
+ const currentDate = new Date(fromDate * 1000);
17648
+ currentDate.setDate(currentDate.getDate() + increment);
17649
+ currentDate.setHours(0, 0, 0, 0);
17650
+ const targetDate = Math.floor(currentDate.getTime() / 1000);
17602
17651
 
17603
17652
  const allCells = this.getAllFocusableCells();
17604
17653
  let targetCell = allCells.find(cell => cell.day && cell.day.date === targetDate);
@@ -17693,7 +17742,8 @@ class AuroCalendar extends RangeDatepicker {
17693
17742
  */
17694
17743
  formatAnnouncementDate(timestamp) {
17695
17744
  const date = new Date(parseInt(timestamp, 10) * 1000);
17696
- const formatter = new Intl.DateTimeFormat(undefined, {
17745
+ const localeCode = this.locale?.code || undefined;
17746
+ const formatter = new Intl.DateTimeFormat(localeCode, {
17697
17747
  weekday: 'long', year: 'numeric', month: 'long', day: 'numeric'
17698
17748
  });
17699
17749
  return formatter.format(date);
@@ -21707,7 +21757,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
21707
21757
  }
21708
21758
  };
21709
21759
 
21710
- var formkitVersion$1$2 = '202605182240';
21760
+ var formkitVersion$1$2 = '202605182353';
21711
21761
 
21712
21762
  let AuroElement$2$2 = class AuroElement extends i$3 {
21713
21763
  static get properties() {
@@ -22628,6 +22678,14 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
22628
22678
  }
22629
22679
  };
22630
22680
  this.addEventListener('keydown', this._bibTabHandler);
22681
+
22682
+ // Move initial focus into the bib content, matching FocusTrap behavior
22683
+ requestAnimationFrame(() => {
22684
+ const focusables = getFocusableElements$3(this.bibContent);
22685
+ if (focusables.length) {
22686
+ focusables[0].focus();
22687
+ }
22688
+ });
22631
22689
  } else {
22632
22690
  // Normal desktop: use FocusTrap on the bib element
22633
22691
  this.focusTrap = new FocusTrap$3(this.bibContent);
@@ -29641,7 +29699,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
29641
29699
  }
29642
29700
  };
29643
29701
 
29644
- var formkitVersion$8 = '202605182240';
29702
+ var formkitVersion$8 = '202605182353';
29645
29703
 
29646
29704
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
29647
29705
  // See LICENSE in the project root for license information.
@@ -30923,8 +30981,10 @@ const datepickerKeyboardStrategy = {
30923
30981
  return;
30924
30982
  }
30925
30983
 
30926
- // Only open from the trigger input, not the clear button or other elements
30927
- if (evt.target?.hasAttribute?.('slot') && evt.target.getAttribute('slot').includes('clear')) {
30984
+ // Only open from the trigger input, not the clear button or other slotted elements.
30985
+ // evt.target is retargeted to the host in shadow DOM, so use composedPath() to find the real origin.
30986
+ const path = evt.composedPath();
30987
+ if (path.some(el => el.getAttribute?.('slot')?.includes('clear'))) {
30928
30988
  return;
30929
30989
  }
30930
30990
 
@@ -30938,8 +30998,10 @@ const datepickerKeyboardStrategy = {
30938
30998
  return;
30939
30999
  }
30940
31000
 
30941
- // Only open from the trigger input, not the clear button or other elements
30942
- if (evt.target?.hasAttribute?.('slot') && evt.target.getAttribute('slot').includes('clear')) {
31001
+ // Only open from the trigger input, not the clear button or other slotted elements.
31002
+ // evt.target is retargeted to the host in shadow DOM, so use composedPath() to find the real origin.
31003
+ const path = evt.composedPath();
31004
+ if (path.some(el => el.getAttribute?.('slot')?.includes('clear'))) {
30943
31005
  return;
30944
31006
  }
30945
31007
 
@@ -32379,9 +32441,13 @@ class AuroDatePicker extends AuroElement$6 {
32379
32441
  }
32380
32442
 
32381
32443
  if (changedProperties.has('blackoutDates')) {
32382
- // Force calendar cells to re-render with updated blackout state
32444
+ // Force calendar cells to re-render with updated blackout state.
32445
+ // requestUpdate on the calendar alone is insufficient because cells
32446
+ // don't receive blackoutDates as a bound property. Dispatching the
32447
+ // slot content event triggers handleSlotContent → requestUpdate on each cell.
32383
32448
  if (this.calendar) {
32384
32449
  this.calendar.requestUpdate();
32450
+ this.dispatchEvent(new CustomEvent('auroDatePicker-newSlotContent'));
32385
32451
  }
32386
32452
  }
32387
32453
 
@@ -36919,7 +36985,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$3 {
36919
36985
  }
36920
36986
  };
36921
36987
 
36922
- var formkitVersion$7 = '202605182240';
36988
+ var formkitVersion$7 = '202605182353';
36923
36989
 
36924
36990
  let AuroElement$5 = class AuroElement extends i$3 {
36925
36991
  static get properties() {
@@ -37840,6 +37906,14 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$5 {
37840
37906
  }
37841
37907
  };
37842
37908
  this.addEventListener('keydown', this._bibTabHandler);
37909
+
37910
+ // Move initial focus into the bib content, matching FocusTrap behavior
37911
+ requestAnimationFrame(() => {
37912
+ const focusables = getFocusableElements$2(this.bibContent);
37913
+ if (focusables.length) {
37914
+ focusables[0].focus();
37915
+ }
37916
+ });
37843
37917
  } else {
37844
37918
  // Normal desktop: use FocusTrap on the bib element
37845
37919
  this.focusTrap = new FocusTrap$2(this.bibContent);
@@ -39709,7 +39783,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
39709
39783
  }
39710
39784
  };
39711
39785
 
39712
- var formkitVersion$6 = '202605182240';
39786
+ var formkitVersion$6 = '202605182353';
39713
39787
 
39714
39788
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
39715
39789
  // See LICENSE in the project root for license information.
@@ -43135,7 +43209,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
43135
43209
  }
43136
43210
  };
43137
43211
 
43138
- var formkitVersion$5 = '202605182240';
43212
+ var formkitVersion$5 = '202605182353';
43139
43213
 
43140
43214
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
43141
43215
  // See LICENSE in the project root for license information.
@@ -45307,7 +45381,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
45307
45381
  }
45308
45382
  };
45309
45383
 
45310
- var formkitVersion$4 = '202605182240';
45384
+ var formkitVersion$4 = '202605182353';
45311
45385
 
45312
45386
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
45313
45387
  // See LICENSE in the project root for license information.
@@ -50927,7 +51001,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
50927
51001
  }
50928
51002
  };
50929
51003
 
50930
- var formkitVersion$2 = '202605182240';
51004
+ var formkitVersion$2 = '202605182353';
50931
51005
 
50932
51006
  let AuroElement$2$1 = class AuroElement extends i$3 {
50933
51007
  static get properties() {
@@ -51848,6 +51922,14 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
51848
51922
  }
51849
51923
  };
51850
51924
  this.addEventListener('keydown', this._bibTabHandler);
51925
+
51926
+ // Move initial focus into the bib content, matching FocusTrap behavior
51927
+ requestAnimationFrame(() => {
51928
+ const focusables = getFocusableElements$1(this.bibContent);
51929
+ if (focusables.length) {
51930
+ focusables[0].focus();
51931
+ }
51932
+ });
51851
51933
  } else {
51852
51934
  // Normal desktop: use FocusTrap on the bib element
51853
51935
  this.focusTrap = new FocusTrap$1(this.bibContent);
@@ -58861,7 +58943,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
58861
58943
  }
58862
58944
  };
58863
58945
 
58864
- var formkitVersion$1$1 = '202605182240';
58946
+ var formkitVersion$1$1 = '202605182353';
58865
58947
 
58866
58948
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
58867
58949
  // See LICENSE in the project root for license information.
@@ -59934,7 +60016,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
59934
60016
  }
59935
60017
  };
59936
60018
 
59937
- var formkitVersion$3 = '202605182240';
60019
+ var formkitVersion$3 = '202605182353';
59938
60020
 
59939
60021
  var styleCss$1$3 = i$5`.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}`;
59940
60022
 
@@ -69424,7 +69506,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
69424
69506
  }
69425
69507
  };
69426
69508
 
69427
- var formkitVersion$1 = '202605182240';
69509
+ var formkitVersion$1 = '202605182353';
69428
69510
 
69429
69511
  class AuroElement extends i$3 {
69430
69512
  static get properties() {
@@ -70345,6 +70427,14 @@ class AuroDropdown extends AuroElement {
70345
70427
  }
70346
70428
  };
70347
70429
  this.addEventListener('keydown', this._bibTabHandler);
70430
+
70431
+ // Move initial focus into the bib content, matching FocusTrap behavior
70432
+ requestAnimationFrame(() => {
70433
+ const focusables = getFocusableElements(this.bibContent);
70434
+ if (focusables.length) {
70435
+ focusables[0].focus();
70436
+ }
70437
+ });
70348
70438
  } else {
70349
70439
  // Normal desktop: use FocusTrap on the bib element
70350
70440
  this.focusTrap = new FocusTrap(this.bibContent);
@@ -71374,7 +71464,7 @@ class AuroHelpText extends i$3 {
71374
71464
  }
71375
71465
  }
71376
71466
 
71377
- var formkitVersion = '202605182240';
71467
+ var formkitVersion = '202605182353';
71378
71468
 
71379
71469
  var styleCss = i$5`.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}`;
71380
71470
 
@@ -6672,7 +6672,7 @@ class AuroHelpText extends i$3 {
6672
6672
  }
6673
6673
  }
6674
6674
 
6675
- var formkitVersion = '202605182240';
6675
+ var formkitVersion = '202605182353';
6676
6676
 
6677
6677
  /**
6678
6678
  * @license
@@ -6672,7 +6672,7 @@ class AuroHelpText extends i$3 {
6672
6672
  }
6673
6673
  }
6674
6674
 
6675
- var formkitVersion = '202605182240';
6675
+ var formkitVersion = '202605182353';
6676
6676
 
6677
6677
  /**
6678
6678
  * @license
@@ -6672,7 +6672,7 @@ class AuroHelpText extends i$3 {
6672
6672
  }
6673
6673
  }
6674
6674
 
6675
- var formkitVersion = '202605182240';
6675
+ var formkitVersion = '202605182353';
6676
6676
 
6677
6677
  /**
6678
6678
  * @license
@@ -6614,7 +6614,7 @@ class AuroHelpText extends LitElement {
6614
6614
  }
6615
6615
  }
6616
6616
 
6617
- var formkitVersion = '202605182240';
6617
+ var formkitVersion = '202605182353';
6618
6618
 
6619
6619
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
6620
6620
  // See LICENSE in the project root for license information.
@@ -6614,7 +6614,7 @@ class AuroHelpText extends LitElement {
6614
6614
  }
6615
6615
  }
6616
6616
 
6617
- var formkitVersion = '202605182240';
6617
+ var formkitVersion = '202605182353';
6618
6618
 
6619
6619
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
6620
6620
  // See LICENSE in the project root for license information.
@@ -1634,7 +1634,7 @@ class AuroHelpText extends i$2 {
1634
1634
  }
1635
1635
  }
1636
1636
 
1637
- var formkitVersion = '202605182240';
1637
+ var formkitVersion = '202605182353';
1638
1638
 
1639
1639
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
1640
1640
  // See LICENSE in the project root for license information.
@@ -1634,7 +1634,7 @@ class AuroHelpText extends i$2 {
1634
1634
  }
1635
1635
  }
1636
1636
 
1637
- var formkitVersion = '202605182240';
1637
+ var formkitVersion = '202605182353';
1638
1638
 
1639
1639
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
1640
1640
  // See LICENSE in the project root for license information.
@@ -1634,7 +1634,7 @@ class AuroHelpText extends i$2 {
1634
1634
  }
1635
1635
  }
1636
1636
 
1637
- var formkitVersion = '202605182240';
1637
+ var formkitVersion = '202605182353';
1638
1638
 
1639
1639
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
1640
1640
  // See LICENSE in the project root for license information.
@@ -1573,7 +1573,7 @@ class AuroHelpText extends LitElement {
1573
1573
  }
1574
1574
  }
1575
1575
 
1576
- var formkitVersion = '202605182240';
1576
+ var formkitVersion = '202605182353';
1577
1577
 
1578
1578
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
1579
1579
  // See LICENSE in the project root for license information.
@@ -1573,7 +1573,7 @@ class AuroHelpText extends LitElement {
1573
1573
  }
1574
1574
  }
1575
1575
 
1576
- var formkitVersion = '202605182240';
1576
+ var formkitVersion = '202605182353';
1577
1577
 
1578
1578
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
1579
1579
  // See LICENSE in the project root for license information.