@aurodesignsystem-dev/auro-formkit 0.0.0-pr1424.5 → 0.0.0-pr1424.6

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 (42) hide show
  1. package/components/checkbox/demo/api.min.js +2 -8
  2. package/components/checkbox/demo/index.min.js +2 -8
  3. package/components/checkbox/dist/auro-checkbox.d.ts +1 -1
  4. package/components/checkbox/dist/index.js +2 -8
  5. package/components/checkbox/dist/registered.js +2 -8
  6. package/components/combobox/demo/api.min.js +32 -16
  7. package/components/combobox/demo/index.min.js +32 -16
  8. package/components/combobox/dist/index.js +32 -16
  9. package/components/combobox/dist/registered.js +32 -16
  10. package/components/counter/demo/api.min.js +45 -21
  11. package/components/counter/demo/index.min.js +45 -21
  12. package/components/counter/dist/auro-counter.d.ts +3 -2
  13. package/components/counter/dist/index.js +45 -21
  14. package/components/counter/dist/registered.js +45 -21
  15. package/components/datepicker/demo/api.md +6 -6
  16. package/components/datepicker/demo/api.min.js +51 -29
  17. package/components/datepicker/demo/index.min.js +51 -29
  18. package/components/datepicker/dist/auro-datepicker.d.ts +2 -1
  19. package/components/datepicker/dist/index.js +51 -29
  20. package/components/datepicker/dist/registered.js +51 -29
  21. package/components/dropdown/demo/api.min.js +29 -1
  22. package/components/dropdown/demo/index.min.js +29 -1
  23. package/components/dropdown/dist/index.js +29 -1
  24. package/components/dropdown/dist/registered.js +29 -1
  25. package/components/form/demo/api.min.js +162 -90
  26. package/components/form/demo/index.min.js +162 -90
  27. package/components/input/demo/api.min.js +1 -13
  28. package/components/input/demo/index.min.js +1 -13
  29. package/components/input/dist/base-input.d.ts +0 -7
  30. package/components/input/dist/index.js +1 -13
  31. package/components/input/dist/registered.js +1 -13
  32. package/components/radio/demo/api.min.js +1 -1
  33. package/components/radio/demo/index.min.js +1 -1
  34. package/components/radio/dist/index.js +1 -1
  35. package/components/radio/dist/registered.js +1 -1
  36. package/components/select/demo/api.min.js +30 -2
  37. package/components/select/demo/index.min.js +30 -2
  38. package/components/select/demo/keyboard-behavior.html +81 -0
  39. package/components/select/dist/index.js +30 -2
  40. package/components/select/dist/registered.js +30 -2
  41. package/custom-elements.json +3 -47
  42. package/package.json +2 -2
@@ -6673,18 +6673,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
6673
6673
  return this.pattern;
6674
6674
  }
6675
6675
 
6676
- /**
6677
- * Required to convert SVG icons from data to HTML string.
6678
- * @private
6679
- * @param {string} icon HTML string for requested icon.
6680
- * @returns {object} Appended HTML for SVG.
6681
- */
6682
- getIconAsHtml(icon) {
6683
- const dom = new DOMParser().parseFromString(icon.svg, 'text/html');
6684
-
6685
- return dom.body.firstChild;
6686
- }
6687
-
6688
6676
  /**
6689
6677
  * Sends event notifying that the input has changed it's value.
6690
6678
  * @private
@@ -7470,7 +7458,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$4 {
7470
7458
  }
7471
7459
  };
7472
7460
 
7473
- var formkitVersion$8 = '202604091934';
7461
+ var formkitVersion$8 = '202604222001';
7474
7462
 
7475
7463
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
7476
7464
  // See LICENSE in the project root for license information.
@@ -9364,6 +9352,8 @@ class UtilitiesCalendarRender {
9364
9352
  */
9365
9353
  updateCentralDate(elem, date) {
9366
9354
  const dateObj = new Date(date);
9355
+ dateObj.setDate(1);
9356
+ dateObj.setHours(0, 0, 0, 0);
9367
9357
 
9368
9358
  if (!isNaN(dateObj)) {
9369
9359
  elem.centralDate = dateObj;
@@ -16281,7 +16271,6 @@ class AuroCalendarCell extends i$4 {
16281
16271
  * @returns Boolean - True if the date is a highlighted date.
16282
16272
  */
16283
16273
  isReferenceDate(dateStr) {
16284
-
16285
16274
  // If the datepicker has highlighted dates specified
16286
16275
  if (this.datepicker && this.datepicker.hasAttribute('referenceDates')) {
16287
16276
 
@@ -16291,8 +16280,8 @@ class AuroCalendarCell extends i$4 {
16291
16280
  // Guard clause: no dates in the array
16292
16281
  if (!Array.isArray(referenceDates) || referenceDates.length === 0) return false;
16293
16282
 
16294
- // Compare the dateStr (MM_DD_YYYY) to the referenceDates (MM-DD-YYYY)
16295
- const compareDateStr = dateStr.replace(/_/gu, '-');
16283
+ // Compare the dateStr (MM_DD_YYYY) to the referenceDates (MM/DD/YYYY)
16284
+ const compareDateStr = dateStr.replace(/_/gu, '/');
16296
16285
 
16297
16286
  // Check if the compareDateStr is in the referenceDates array
16298
16287
  return referenceDates.includes(compareDateStr);
@@ -16905,7 +16894,7 @@ class CalendarUtilities {
16905
16894
  // 1. Compare the first rendered month to the earliest renderable month to determine if the previous month button should be hidden or shown
16906
16895
  if (!elem.hasAttribute('calendarStartDate') && !elem.hasAttribute('minDate')) {
16907
16896
  elem.showPrevMonthBtn = true;
16908
- } else if (this.util.convertDateToFirstOfMonth(new Date(elem.centralDate)) <= elem.firstMonthRenderable) {
16897
+ } else if (new Date(elem.centralDate) <= elem.firstMonthRenderable) {
16909
16898
  elem.showPrevMonthBtn = false;
16910
16899
  } else {
16911
16900
  elem.showPrevMonthBtn = true;
@@ -16990,16 +16979,13 @@ class CalendarUtilities {
16990
16979
 
16991
16980
  if (this.util.validDateStr(formattedDateStr, datepicker.format)) {
16992
16981
  // Use current date as base and adjust month by increment
16993
- newCentralDate = new Date(formattedDateStr).setMonth(new Date(formattedDateStr).getMonth() + increment);
16982
+ newCentralDate = new Date(formattedDateStr).setMonth(new Date(formattedDateStr).getMonth() + increment, 1);
16994
16983
  } else {
16995
16984
  // Fallback to first rendered month if central date invalid
16996
- newCentralDate = new Date(firstRenderedMonth).setMonth(new Date(firstRenderedMonth).getMonth() + increment);
16985
+ newCentralDate = new Date(firstRenderedMonth).setMonth(new Date(firstRenderedMonth).getMonth() + increment, 1);
16997
16986
  }
16998
16987
 
16999
- // Update calendar central date
17000
- if (newCentralDate) {
17001
- elem.centralDate = this.util.convertDateToFirstOfMonth(newCentralDate);
17002
- }
16988
+ elem.centralDate = newCentralDate;
17003
16989
  }
17004
16990
  }
17005
16991
 
@@ -17392,7 +17378,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$4 {
17392
17378
  }
17393
17379
  };
17394
17380
 
17395
- var formkitVersion$2$1 = '202604091934';
17381
+ var formkitVersion$2$1 = '202604222001';
17396
17382
 
17397
17383
  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$3`${s$6(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$7`: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}
17398
17384
  `,u$4$2=i$7`.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}}
@@ -17676,6 +17662,7 @@ class AuroCalendar extends RangeDatepicker {
17676
17662
 
17677
17663
  if (this.visible) {
17678
17664
  this.utilCalRender.setFirstRenderableMonthDate(this);
17665
+
17679
17666
  this.utilCal.assessNavigationButtonVisibility(this);
17680
17667
 
17681
17668
  this.isFullscreen = this.dropdown.bibContent.hasAttribute('isFullscreen');
@@ -17685,7 +17672,6 @@ class AuroCalendar extends RangeDatepicker {
17685
17672
  let dateMatches = undefined;
17686
17673
 
17687
17674
  if (!this.isFullscreen) {
17688
-
17689
17675
  const formattedDateStr = this.util.getDateAsString(new Date(this.centralDate), this.datepicker.format);
17690
17676
 
17691
17677
  // On Desktop start the calendar at the central date if it exists, then minDate and finally the current date.
@@ -17742,7 +17728,7 @@ class AuroCalendar extends RangeDatepicker {
17742
17728
  newYear = oldYear;
17743
17729
  }
17744
17730
 
17745
- const newMonthDateStr = `${newMonth}/1/${newYear}`;
17731
+ const newMonthDateStr = `${newMonth}/01/${newYear}`;
17746
17732
  newMonthDate = new Date(newMonthDateStr);
17747
17733
 
17748
17734
  renderedHtml = u$c`${renderedHtml}${this.utilCalRender.renderCalendar(this, newMonth, newYear)}`;
@@ -19664,6 +19650,7 @@ let AuroFloatingUI$3 = class AuroFloatingUI {
19664
19650
  this.focusHandler = null;
19665
19651
  this.clickHandler = null;
19666
19652
  this.keyDownHandler = null;
19653
+ this.touchHandler = null;
19667
19654
 
19668
19655
  /**
19669
19656
  * @private
@@ -20081,6 +20068,28 @@ let AuroFloatingUI$3 = class AuroFloatingUI {
20081
20068
  setTimeout(() => {
20082
20069
  window.addEventListener("click", this.clickHandler);
20083
20070
  }, 0);
20071
+
20072
+ // iOS Safari does not fire `click` on non-interactive elements, so
20073
+ // tapping an inert backdrop never reaches the click handler above.
20074
+ // Mirror the same outside-tap logic with a passive touchstart listener.
20075
+ this.touchHandler = (evt) => {
20076
+ const element = this.element;
20077
+ if (!element?.bib) {
20078
+ return;
20079
+ }
20080
+
20081
+ // fullscreen (modal) dialog handles its own dismissal
20082
+ if (element.bib.hasAttribute("isfullscreen")) {
20083
+ return;
20084
+ }
20085
+
20086
+ const path = evt.composedPath();
20087
+ if (!path.includes(element.trigger) && !path.includes(element.bib)) {
20088
+ this.hideBib("click");
20089
+ }
20090
+ };
20091
+
20092
+ window.addEventListener("touchstart", this.touchHandler, { passive: true });
20084
20093
  }
20085
20094
 
20086
20095
  cleanupHideHandlers() {
@@ -20096,6 +20105,11 @@ let AuroFloatingUI$3 = class AuroFloatingUI {
20096
20105
  this.clickHandler = null;
20097
20106
  }
20098
20107
 
20108
+ if (this.touchHandler) {
20109
+ window.removeEventListener("touchstart", this.touchHandler);
20110
+ this.touchHandler = null;
20111
+ }
20112
+
20099
20113
  if (this.keyDownHandler) {
20100
20114
  document.removeEventListener("keydown", this.keyDownHandler);
20101
20115
  this.keyDownHandler = null;
@@ -21570,7 +21584,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$4 {
21570
21584
  }
21571
21585
  };
21572
21586
 
21573
- var formkitVersion$1$3 = '202604091934';
21587
+ var formkitVersion$1$3 = '202604222001';
21574
21588
 
21575
21589
  let AuroElement$2$2 = class AuroElement extends i$4 {
21576
21590
  static get properties() {
@@ -28522,18 +28536,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
28522
28536
  return this.pattern;
28523
28537
  }
28524
28538
 
28525
- /**
28526
- * Required to convert SVG icons from data to HTML string.
28527
- * @private
28528
- * @param {string} icon HTML string for requested icon.
28529
- * @returns {object} Appended HTML for SVG.
28530
- */
28531
- getIconAsHtml(icon) {
28532
- const dom = new DOMParser().parseFromString(icon.svg, 'text/html');
28533
-
28534
- return dom.body.firstChild;
28535
- }
28536
-
28537
28539
  /**
28538
28540
  * Sends event notifying that the input has changed it's value.
28539
28541
  * @private
@@ -29319,7 +29321,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$4 {
29319
29321
  }
29320
29322
  };
29321
29323
 
29322
- var formkitVersion$7 = '202604091934';
29324
+ var formkitVersion$7 = '202604222001';
29323
29325
 
29324
29326
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
29325
29327
  // See LICENSE in the project root for license information.
@@ -31047,7 +31049,7 @@ class AuroDatePicker extends AuroElement$5 {
31047
31049
 
31048
31050
  /**
31049
31051
  * Dates that the user should have for reference as part of their decision making when selecting a date.
31050
- * This should be a JSON string array of dates in the format of `MM-DD-YYYY`.
31052
+ * This should be a JSON string array of dates in the format of `MM/DD/YYYY`.
31051
31053
  */
31052
31054
  referenceDates: {
31053
31055
  type: Array,
@@ -31509,7 +31511,7 @@ class AuroDatePicker extends AuroElement$5 {
31509
31511
  }
31510
31512
  });
31511
31513
  }
31512
-
31514
+
31513
31515
  /**
31514
31516
  * Binds all behavior needed to the input after rendering.
31515
31517
  * @private
@@ -31777,6 +31779,14 @@ class AuroDatePicker extends AuroElement$5 {
31777
31779
  this.monthFirst = this.format.indexOf('mm') < this.format.indexOf('yyyy');
31778
31780
  }
31779
31781
 
31782
+ if (changedProperties.has('referenceDates')) {
31783
+ // backward compatibility for old format of referenceDates which is a stringified array with - instead of / as separator, e.g. ["10-22-2025","10-23-2025"]
31784
+ const stringfiedDates = JSON.stringify(this.referenceDates);
31785
+ if (stringfiedDates.includes('-')) {
31786
+ this.referenceDates = this.referenceDates.map(date => date.replace(/-/gu, '/' ));
31787
+ }
31788
+ }
31789
+
31780
31790
  if (changedProperties.has('disabled')) {
31781
31791
  if (this.disabled) {
31782
31792
  this.previousTabIndex = this.getAttribute('tabindex');
@@ -33976,7 +33986,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$4 {
33976
33986
  }
33977
33987
  };
33978
33988
 
33979
- var formkitVersion$1$2 = '202604091934';
33989
+ var formkitVersion$1$2 = '202604222001';
33980
33990
 
33981
33991
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
33982
33992
  // See LICENSE in the project root for license information.
@@ -34318,21 +34328,17 @@ class AuroCounter extends i$4 {
34318
34328
  }
34319
34329
 
34320
34330
  /**
34321
- * Sets ariaDescribedByElements on the spinbutton to the slotted description elements,
34322
- * bridging the shadow DOM boundary for screen readers.
34331
+ * Handles the slotchange event for the description slot.
34332
+ * Updates ariaDescribedByElements on the spinbutton.
34333
+ *
34323
34334
  * @param {Event} event - The slotchange event.
34324
34335
  * @private
34325
34336
  */
34326
34337
  onDescriptionSlotChange(event) {
34327
- const assignedNodes = event.target.assignedElements();
34328
34338
  const spinbutton = this.shadowRoot.querySelector('[role="spinbutton"]');
34329
-
34330
34339
  if (spinbutton) {
34331
- if (assignedNodes.length > 0) {
34332
- spinbutton.ariaDescribedByElements = assignedNodes;
34333
- } else {
34334
- spinbutton.ariaDescribedByElements = [];
34335
- }
34340
+ const assigned = event.target.assignedElements();
34341
+ spinbutton.ariaDescribedByElements = assigned.length > 0 ? assigned : [];
34336
34342
  }
34337
34343
  }
34338
34344
 
@@ -34387,22 +34393,22 @@ class AuroCounter extends i$4 {
34387
34393
 
34388
34394
  <div class="counterWrapper">
34389
34395
  <div class="counter">
34390
- <div class="content" >
34391
- <label id="counter-label" class="label">
34396
+ <div class="content" id="counter-label">
34397
+ <label class="label">
34392
34398
  <slot @slotchange="${this.onDefaultSlotChange}"></slot>
34393
34399
  </label>
34394
34400
  <slot name="description" class="body-xs" @slotchange="${this.onDescriptionSlotChange}"></slot>
34395
34401
  </div>
34396
- <div
34397
- part="counterControl"
34398
- aria-disabled="${o$4(this.disabled ? 'true' : undefined)}"
34399
- aria-labelledby="counter-label"
34400
- aria-valuemax="${this.max}"
34401
- aria-valuemin="${this.min}"
34402
+ <div
34403
+ part="counterControl"
34404
+ aria-disabled="${o$4(this.disabled ? 'true' : undefined)}"
34405
+ aria-labelledby="counter-label"
34406
+ aria-valuemax="${this.max}"
34407
+ aria-valuemin="${this.min}"
34402
34408
  aria-valuenow="${this.value}"
34403
34409
  aria-valuetext="${this.value !== undefined ? this.value : this.min}"
34404
- role="spinbutton"
34405
- tabindex="${this.disabled ? '-1' : '0'}"
34410
+ role="spinbutton"
34411
+ tabindex="${this.disabled ? '-1' : '0'}"
34406
34412
  >
34407
34413
  <auro-counter-button
34408
34414
  aria-label="${this.runtimeUtils.getSlotText(this, 'ariaLabel.minus') || '−'}"
@@ -36236,6 +36242,7 @@ let AuroFloatingUI$2 = class AuroFloatingUI {
36236
36242
  this.focusHandler = null;
36237
36243
  this.clickHandler = null;
36238
36244
  this.keyDownHandler = null;
36245
+ this.touchHandler = null;
36239
36246
 
36240
36247
  /**
36241
36248
  * @private
@@ -36653,6 +36660,28 @@ let AuroFloatingUI$2 = class AuroFloatingUI {
36653
36660
  setTimeout(() => {
36654
36661
  window.addEventListener("click", this.clickHandler);
36655
36662
  }, 0);
36663
+
36664
+ // iOS Safari does not fire `click` on non-interactive elements, so
36665
+ // tapping an inert backdrop never reaches the click handler above.
36666
+ // Mirror the same outside-tap logic with a passive touchstart listener.
36667
+ this.touchHandler = (evt) => {
36668
+ const element = this.element;
36669
+ if (!element?.bib) {
36670
+ return;
36671
+ }
36672
+
36673
+ // fullscreen (modal) dialog handles its own dismissal
36674
+ if (element.bib.hasAttribute("isfullscreen")) {
36675
+ return;
36676
+ }
36677
+
36678
+ const path = evt.composedPath();
36679
+ if (!path.includes(element.trigger) && !path.includes(element.bib)) {
36680
+ this.hideBib("click");
36681
+ }
36682
+ };
36683
+
36684
+ window.addEventListener("touchstart", this.touchHandler, { passive: true });
36656
36685
  }
36657
36686
 
36658
36687
  cleanupHideHandlers() {
@@ -36668,6 +36697,11 @@ let AuroFloatingUI$2 = class AuroFloatingUI {
36668
36697
  this.clickHandler = null;
36669
36698
  }
36670
36699
 
36700
+ if (this.touchHandler) {
36701
+ window.removeEventListener("touchstart", this.touchHandler);
36702
+ this.touchHandler = null;
36703
+ }
36704
+
36671
36705
  if (this.keyDownHandler) {
36672
36706
  document.removeEventListener("keydown", this.keyDownHandler);
36673
36707
  this.keyDownHandler = null;
@@ -38142,7 +38176,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$4 {
38142
38176
  }
38143
38177
  };
38144
38178
 
38145
- var formkitVersion$6 = '202604091934';
38179
+ var formkitVersion$6 = '202604222001';
38146
38180
 
38147
38181
  let AuroElement$1$2 = class AuroElement extends i$4 {
38148
38182
  static get properties() {
@@ -42226,7 +42260,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$4 {
42226
42260
  }
42227
42261
  };
42228
42262
 
42229
- var formkitVersion$5 = '202604091934';
42263
+ var formkitVersion$5 = '202604222001';
42230
42264
 
42231
42265
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
42232
42266
  // See LICENSE in the project root for license information.
@@ -42884,7 +42918,7 @@ class AuroCheckbox extends i$4 {
42884
42918
  }
42885
42919
 
42886
42920
  _initializeDefaults() {
42887
- this.apperance = 'default';
42921
+ this.appearance = 'default';
42888
42922
  this.checked = false;
42889
42923
  this.disabled = false;
42890
42924
  this.error = false;
@@ -44395,7 +44429,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$4 {
44395
44429
  }
44396
44430
  };
44397
44431
 
44398
- var formkitVersion$4 = '202604091934';
44432
+ var formkitVersion$4 = '202604222001';
44399
44433
 
44400
44434
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
44401
44435
  // See LICENSE in the project root for license information.
@@ -44724,12 +44758,6 @@ class AuroCheckboxGroup extends i$4 {
44724
44758
  * @returns {void}
44725
44759
  */
44726
44760
  updated(changedProperties) {
44727
- if (changedProperties.has('layout')) {
44728
- this.checkboxes.forEach((el) => {
44729
- el.layout = this.layout;
44730
- });
44731
- }
44732
-
44733
44761
  if (changedProperties.has('disabled')) {
44734
44762
  this.checkboxes.forEach((el) => {
44735
44763
  if (this.disabled) {
@@ -47949,6 +47977,7 @@ let AuroFloatingUI$1 = class AuroFloatingUI {
47949
47977
  this.focusHandler = null;
47950
47978
  this.clickHandler = null;
47951
47979
  this.keyDownHandler = null;
47980
+ this.touchHandler = null;
47952
47981
 
47953
47982
  /**
47954
47983
  * @private
@@ -48366,6 +48395,28 @@ let AuroFloatingUI$1 = class AuroFloatingUI {
48366
48395
  setTimeout(() => {
48367
48396
  window.addEventListener("click", this.clickHandler);
48368
48397
  }, 0);
48398
+
48399
+ // iOS Safari does not fire `click` on non-interactive elements, so
48400
+ // tapping an inert backdrop never reaches the click handler above.
48401
+ // Mirror the same outside-tap logic with a passive touchstart listener.
48402
+ this.touchHandler = (evt) => {
48403
+ const element = this.element;
48404
+ if (!element?.bib) {
48405
+ return;
48406
+ }
48407
+
48408
+ // fullscreen (modal) dialog handles its own dismissal
48409
+ if (element.bib.hasAttribute("isfullscreen")) {
48410
+ return;
48411
+ }
48412
+
48413
+ const path = evt.composedPath();
48414
+ if (!path.includes(element.trigger) && !path.includes(element.bib)) {
48415
+ this.hideBib("click");
48416
+ }
48417
+ };
48418
+
48419
+ window.addEventListener("touchstart", this.touchHandler, { passive: true });
48369
48420
  }
48370
48421
 
48371
48422
  cleanupHideHandlers() {
@@ -48381,6 +48432,11 @@ let AuroFloatingUI$1 = class AuroFloatingUI {
48381
48432
  this.clickHandler = null;
48382
48433
  }
48383
48434
 
48435
+ if (this.touchHandler) {
48436
+ window.removeEventListener("touchstart", this.touchHandler);
48437
+ this.touchHandler = null;
48438
+ }
48439
+
48384
48440
  if (this.keyDownHandler) {
48385
48441
  document.removeEventListener("keydown", this.keyDownHandler);
48386
48442
  this.keyDownHandler = null;
@@ -49855,7 +49911,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
49855
49911
  }
49856
49912
  };
49857
49913
 
49858
- var formkitVersion$2 = '202604091934';
49914
+ var formkitVersion$2 = '202604222001';
49859
49915
 
49860
49916
  let AuroElement$2$1 = class AuroElement extends i$4 {
49861
49917
  static get properties() {
@@ -56807,18 +56863,6 @@ class BaseInput extends AuroElement$1$1 {
56807
56863
  return this.pattern;
56808
56864
  }
56809
56865
 
56810
- /**
56811
- * Required to convert SVG icons from data to HTML string.
56812
- * @private
56813
- * @param {string} icon HTML string for requested icon.
56814
- * @returns {object} Appended HTML for SVG.
56815
- */
56816
- getIconAsHtml(icon) {
56817
- const dom = new DOMParser().parseFromString(icon.svg, 'text/html');
56818
-
56819
- return dom.body.firstChild;
56820
- }
56821
-
56822
56866
  /**
56823
56867
  * Sends event notifying that the input has changed it's value.
56824
56868
  * @private
@@ -57604,7 +57648,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$4 {
57604
57648
  }
57605
57649
  };
57606
57650
 
57607
- var formkitVersion$1$1 = '202604091934';
57651
+ var formkitVersion$1$1 = '202604222001';
57608
57652
 
57609
57653
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
57610
57654
  // See LICENSE in the project root for license information.
@@ -58669,11 +58713,11 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$4 {
58669
58713
  }
58670
58714
  };
58671
58715
 
58672
- var formkitVersion$3 = '202604091934';
58716
+ var formkitVersion$3 = '202604222001';
58673
58717
 
58674
58718
  var styleCss$1$3 = i$7`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
58675
58719
 
58676
- var styleEmphasizedCss$2 = i$7`:host([layout*=emphasized][shape*=pill]) [auro-input]{--ds-auro-input-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843));--ds-auro-input-container-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout*=emphasized][shape*=pill]) [auro-input]:hover{--ds-auro-input-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843));--ds-auro-input-container-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout*=emphasized][shape*=pill]) [auro-input]{width:100%}:host([layout*=emphasized][shape*=pill]) [auro-input]::part(inputHelpText){display:none}:host([layout=emphasized]) [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout=emphasized]) [auro-dropdown]:hover{--ds-auro-dropdown-trigger-hover-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout=emphasized]) [auro-dropdown][layout*=emphasized]::part(wrapper){--ds-auro-dropdown-trigger-background-color: transparent}`;
58720
+ var styleEmphasizedCss$2 = i$7`:host([layout*=emphasized][shape*=pill]) [auro-input][slot=trigger]{--ds-auro-input-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843));--ds-auro-input-container-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout*=emphasized][shape*=pill]) [auro-input][slot=trigger]:hover{--ds-auro-input-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843));--ds-auro-input-container-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout*=emphasized][shape*=pill]) [auro-input][slot=trigger]{width:100%}:host([layout*=emphasized][shape*=pill]) [auro-input][slot=trigger]::part(inputHelpText){display:none}:host([layout=emphasized]) [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout=emphasized]) [auro-dropdown]:hover{--ds-auro-dropdown-trigger-hover-background-color: var(--ds-advanced-color-dropdown-emphasized-background, rgba(0, 39, 74, 0.1019607843))}:host([layout=emphasized]) [auro-dropdown][layout*=emphasized]::part(wrapper){--ds-auro-dropdown-trigger-background-color: transparent}`;
58677
58721
 
58678
58722
  var styleSnowflakeCss$2 = i$7`:host([layout*=snowflake][shape*=snowflake]) [auro-input]{width:100%}:host([layout*=snowflake][shape*=snowflake]) [auro-input]::part(inputHelpText){display:none}:host([layout*=snowflake][shape*=snowflake])::part(helpText){text-align:center}`;
58679
58723
 
@@ -66072,6 +66116,7 @@ class AuroFloatingUI {
66072
66116
  this.focusHandler = null;
66073
66117
  this.clickHandler = null;
66074
66118
  this.keyDownHandler = null;
66119
+ this.touchHandler = null;
66075
66120
 
66076
66121
  /**
66077
66122
  * @private
@@ -66489,6 +66534,28 @@ class AuroFloatingUI {
66489
66534
  setTimeout(() => {
66490
66535
  window.addEventListener("click", this.clickHandler);
66491
66536
  }, 0);
66537
+
66538
+ // iOS Safari does not fire `click` on non-interactive elements, so
66539
+ // tapping an inert backdrop never reaches the click handler above.
66540
+ // Mirror the same outside-tap logic with a passive touchstart listener.
66541
+ this.touchHandler = (evt) => {
66542
+ const element = this.element;
66543
+ if (!element?.bib) {
66544
+ return;
66545
+ }
66546
+
66547
+ // fullscreen (modal) dialog handles its own dismissal
66548
+ if (element.bib.hasAttribute("isfullscreen")) {
66549
+ return;
66550
+ }
66551
+
66552
+ const path = evt.composedPath();
66553
+ if (!path.includes(element.trigger) && !path.includes(element.bib)) {
66554
+ this.hideBib("click");
66555
+ }
66556
+ };
66557
+
66558
+ window.addEventListener("touchstart", this.touchHandler, { passive: true });
66492
66559
  }
66493
66560
 
66494
66561
  cleanupHideHandlers() {
@@ -66504,6 +66571,11 @@ class AuroFloatingUI {
66504
66571
  this.clickHandler = null;
66505
66572
  }
66506
66573
 
66574
+ if (this.touchHandler) {
66575
+ window.removeEventListener("touchstart", this.touchHandler);
66576
+ this.touchHandler = null;
66577
+ }
66578
+
66507
66579
  if (this.keyDownHandler) {
66508
66580
  document.removeEventListener("keydown", this.keyDownHandler);
66509
66581
  this.keyDownHandler = null;
@@ -67978,7 +68050,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
67978
68050
  }
67979
68051
  };
67980
68052
 
67981
- var formkitVersion$1 = '202604091934';
68053
+ var formkitVersion$1 = '202604222001';
67982
68054
 
67983
68055
  class AuroElement extends i$4 {
67984
68056
  static get properties() {
@@ -69723,7 +69795,7 @@ class AuroHelpText extends i$4 {
69723
69795
  }
69724
69796
  }
69725
69797
 
69726
- var formkitVersion = '202604091934';
69798
+ var formkitVersion = '202604222001';
69727
69799
 
69728
69800
  var styleCss = i$7`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.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, 0.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, 0.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, 0.625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-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, 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, 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}`;
69729
69801