@aurodesignsystem-dev/auro-formkit 0.0.0-pr1497.6 → 0.0.0-pr1499.0

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 (49) 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 +27 -11
  7. package/components/combobox/demo/getting-started.min.js +27 -11
  8. package/components/combobox/demo/index.min.js +27 -11
  9. package/components/combobox/dist/index.js +27 -11
  10. package/components/combobox/dist/registered.js +27 -11
  11. package/components/counter/demo/customize.min.js +20 -2
  12. package/components/counter/demo/index.min.js +20 -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.md +477 -384
  16. package/components/datepicker/demo/customize.min.js +43 -17
  17. package/components/datepicker/demo/index.md +0 -1
  18. package/components/datepicker/demo/index.min.js +43 -17
  19. package/components/datepicker/dist/index.js +43 -17
  20. package/components/datepicker/dist/registered.js +43 -17
  21. package/components/datepicker/dist/src/auro-datepicker.d.ts +2 -2
  22. package/components/dropdown/demo/customize.min.js +19 -1
  23. package/components/dropdown/demo/getting-started.min.js +19 -1
  24. package/components/dropdown/demo/index.min.js +19 -1
  25. package/components/dropdown/dist/auro-dropdown.d.ts +2 -0
  26. package/components/dropdown/dist/index.js +19 -1
  27. package/components/dropdown/dist/registered.js +19 -1
  28. package/components/form/demo/customize.min.js +118 -36
  29. package/components/form/demo/getting-started.min.js +118 -36
  30. package/components/form/demo/index.min.js +118 -36
  31. package/components/form/demo/registerDemoDeps.min.js +118 -36
  32. package/components/input/demo/customize.md +539 -472
  33. package/components/input/demo/customize.min.js +6 -2
  34. package/components/input/demo/getting-started.min.js +6 -2
  35. package/components/input/demo/index.min.js +6 -2
  36. package/components/input/dist/index.js +6 -2
  37. package/components/input/dist/registered.js +6 -2
  38. package/components/radio/demo/customize.min.js +1 -1
  39. package/components/radio/demo/getting-started.min.js +1 -1
  40. package/components/radio/demo/index.min.js +1 -1
  41. package/components/radio/dist/index.js +1 -1
  42. package/components/radio/dist/registered.js +1 -1
  43. package/components/select/demo/customize.min.js +20 -2
  44. package/components/select/demo/getting-started.min.js +20 -2
  45. package/components/select/demo/index.min.js +20 -2
  46. package/components/select/dist/index.js +20 -2
  47. package/components/select/dist/registered.js +20 -2
  48. package/custom-elements.json +568 -568
  49. package/package.json +1 -1
@@ -11006,7 +11006,11 @@ let AuroInputUtilities$3 = class AuroInputUtilities {
11006
11006
  return part.value;
11007
11007
  }
11008
11008
  })
11009
- .join("");
11009
+ .join("")
11010
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
11011
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
11012
+ .replace(/\s/gu, '')
11013
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
11010
11014
  }
11011
11015
 
11012
11016
  /**
@@ -12964,7 +12968,7 @@ let AuroHelpText$9 = class AuroHelpText extends i$4 {
12964
12968
  }
12965
12969
  };
12966
12970
 
12967
- var formkitVersion$9 = '202606082053';
12971
+ var formkitVersion$9 = '202606101857';
12968
12972
 
12969
12973
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12970
12974
  // See LICENSE in the project root for license information.
@@ -24038,7 +24042,11 @@ let AuroInputUtilities$1 = class AuroInputUtilities {
24038
24042
  return part.value;
24039
24043
  }
24040
24044
  })
24041
- .join("");
24045
+ .join("")
24046
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
24047
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
24048
+ .replace(/\s/gu, '')
24049
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
24042
24050
  }
24043
24051
 
24044
24052
  /**
@@ -24423,8 +24431,8 @@ class UtilitiesCalendarRender {
24423
24431
  <auro-formkit-calendar-month
24424
24432
  id="${`month-${month}-${year}`}"
24425
24433
  .disabledDays="${elem.disabledDays}"
24426
- .min="${elem.min}"
24427
- .max="${elem.max}"
24434
+ .min="${elem.minDateObject?.getTime() / 1000}"
24435
+ .max="${elem.maxDateObject?.getTime() / 1000}"
24428
24436
  ?noRange="${elem.noRange}"
24429
24437
  .monthFirst="${elem.monthFirst}"
24430
24438
  .dateTo="${elem.dateTo}"
@@ -27085,7 +27093,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$4 {
27085
27093
  }
27086
27094
  };
27087
27095
 
27088
- var formkitVersion$2$1 = '202606082053';
27096
+ var formkitVersion$2$1 = '202606101857';
27089
27097
 
27090
27098
  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}
27091
27099
  `,u$4$1=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}}
@@ -32598,7 +32606,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$4 {
32598
32606
  }
32599
32607
  };
32600
32608
 
32601
- var formkitVersion$1$2 = '202606082053';
32609
+ var formkitVersion$1$2 = '202606101857';
32602
32610
 
32603
32611
  let AuroElement$2$2 = class AuroElement extends i$4 {
32604
32612
  static get properties() {
@@ -33456,9 +33464,27 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
33456
33464
  this.focusTrap = undefined;
33457
33465
  }
33458
33466
 
33467
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
33468
+ if (this._noHideOverridden) {
33469
+ this.noHideOnThisFocusLoss = this._priorNoHide;
33470
+ this._noHideOverridden = false;
33471
+ this._priorNoHide = undefined;
33472
+ }
33473
+
33459
33474
  if (this.isPopoverVisible) {
33460
33475
  if (!this.isBibFullscreen) {
33461
33476
  if (this.desktopModal) {
33477
+ // The floater's focus-loss check uses :focus-within, which does not
33478
+ // match the host when focus is on a slotted element projected through
33479
+ // multiple shadow roots. Without this override, focusing a button
33480
+ // inside the bib would be misread as focus leaving the dropdown and
33481
+ // close the bib immediately. desktopModal traps focus inside the
33482
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
33483
+ // is safe — Escape and outside-click still close the bib.
33484
+ this._priorNoHide = this.noHideOnThisFocusLoss;
33485
+ this._noHideOverridden = true;
33486
+ this.noHideOnThisFocusLoss = true;
33487
+
33462
33488
  // Desktop modal: trap focus only within the bib content.
33463
33489
  // Can't use FocusTrap on the bib element because keydown events
33464
33490
  // from slotted content bubble through the dropdown host (light DOM),
@@ -44125,7 +44151,11 @@ let AuroInputUtilities$2 = class AuroInputUtilities {
44125
44151
  return part.value;
44126
44152
  }
44127
44153
  })
44128
- .join("");
44154
+ .join("")
44155
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
44156
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
44157
+ .replace(/\s/gu, '')
44158
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
44129
44159
  }
44130
44160
 
44131
44161
  /**
@@ -46083,7 +46113,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$4 {
46083
46113
  }
46084
46114
  };
46085
46115
 
46086
- var formkitVersion$8 = '202606082053';
46116
+ var formkitVersion$8 = '202606101857';
46087
46117
 
46088
46118
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
46089
46119
  // See LICENSE in the project root for license information.
@@ -48291,7 +48321,7 @@ class AuroDatePicker extends AuroElement$6 {
48291
48321
  * @returns {Number} Simplified number.
48292
48322
  */
48293
48323
  convertToWcValidTime(date) {
48294
- return new Date(date).getTime() / 1000;
48324
+ return date?.getTime() / 1000;
48295
48325
  }
48296
48326
 
48297
48327
  /**
@@ -49338,7 +49368,7 @@ class AuroDatePicker extends AuroElement$6 {
49338
49368
  <div class="${e$3(this.commonDisplayValueWrapperClasses)}">
49339
49369
  <slot name="displayValue" @slotchange=${this.checkDisplayValueSlotChange}>
49340
49370
  <span>
49341
- ${this.formatShortDate(this.value)}${this.range ? u$c`–${this.formatShortDate(this.valueEnd)}` : undefined}
49371
+ ${this.formatShortDate(this.valueObject)}${this.range ? u$c`–${this.formatShortDate(this.valueEndObject)}` : undefined}
49342
49372
  </span>
49343
49373
  </slot>
49344
49374
  </div>
@@ -49412,7 +49442,7 @@ class AuroDatePicker extends AuroElement$6 {
49412
49442
  * Simple formatter that ONLY WORKS FOR US DATES.
49413
49443
  * Returns formatted date like Apr 21 or Dec 25.
49414
49444
  * @private
49415
- * @param {string} date - Date format should be in a format Date constructor accepts, like '2023-04-21' or '2023/04/21'.
49445
+ * @param {Date} date - Date format should be in a format Date constructor accepts, like '2023-04-21' or '2023/04/21'.
49416
49446
  * @returns {string}
49417
49447
  */
49418
49448
  formatShortDate(date) {
@@ -49422,16 +49452,16 @@ class AuroDatePicker extends AuroElement$6 {
49422
49452
  day: '2-digit'
49423
49453
  };
49424
49454
 
49425
- return new Date(date).toLocaleDateString('en-US', options).replace(',', '');
49455
+ return date?.toLocaleDateString(this.locale, options).replace(',', '');
49426
49456
  }
49427
49457
 
49428
49458
  /**
49429
49459
  * Format and render the provided date value.
49430
49460
  * @private
49431
- * @param {string} dateValue - The date value to format and render.
49461
+ * @param {Date} date - The date value to format and render.
49432
49462
  * @returns {import('lit').TemplateResult}
49433
49463
  */
49434
- renderDisplayTextDate(dateValue) {
49464
+ renderDisplayTextDate(date) {
49435
49465
  const displayTextClasses = {
49436
49466
  'displayValueText': true,
49437
49467
  'body-lg': true
@@ -49440,8 +49470,8 @@ class AuroDatePicker extends AuroElement$6 {
49440
49470
  return u$c`
49441
49471
  <div>
49442
49472
  <div class="${e$3(displayTextClasses)}">
49443
- ${dateValue && dateFormatter$1.isValidDate(dateValue)
49444
- ? this.formatShortDate(dateValue)
49473
+ ${date
49474
+ ? this.formatShortDate(date)
49445
49475
  : undefined
49446
49476
  }
49447
49477
  </div>
@@ -49490,7 +49520,7 @@ class AuroDatePicker extends AuroElement$6 {
49490
49520
  ${this.layout !== "classic"
49491
49521
  ? u$c`
49492
49522
  <span slot="displayValue">
49493
- ${this.renderDisplayTextDate(this.value)}
49523
+ ${this.renderDisplayTextDate(this.valueObject)}
49494
49524
  </span>
49495
49525
  `
49496
49526
  : undefined
@@ -49534,7 +49564,7 @@ class AuroDatePicker extends AuroElement$6 {
49534
49564
  ${this.layout !== "classic"
49535
49565
  ? u$c`
49536
49566
  <span slot="displayValue">
49537
- ${this.renderDisplayTextDate(this.valueEnd)}
49567
+ ${this.renderDisplayTextDate(this.valueEndObject)}
49538
49568
  </span>
49539
49569
  `
49540
49570
  : undefined
@@ -53609,7 +53639,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$4 {
53609
53639
  }
53610
53640
  };
53611
53641
 
53612
- var formkitVersion$7 = '202606082053';
53642
+ var formkitVersion$7 = '202606101857';
53613
53643
 
53614
53644
  let AuroElement$5 = class AuroElement extends i$4 {
53615
53645
  static get properties() {
@@ -54467,9 +54497,27 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$5 {
54467
54497
  this.focusTrap = undefined;
54468
54498
  }
54469
54499
 
54500
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
54501
+ if (this._noHideOverridden) {
54502
+ this.noHideOnThisFocusLoss = this._priorNoHide;
54503
+ this._noHideOverridden = false;
54504
+ this._priorNoHide = undefined;
54505
+ }
54506
+
54470
54507
  if (this.isPopoverVisible) {
54471
54508
  if (!this.isBibFullscreen) {
54472
54509
  if (this.desktopModal) {
54510
+ // The floater's focus-loss check uses :focus-within, which does not
54511
+ // match the host when focus is on a slotted element projected through
54512
+ // multiple shadow roots. Without this override, focusing a button
54513
+ // inside the bib would be misread as focus leaving the dropdown and
54514
+ // close the bib immediately. desktopModal traps focus inside the
54515
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
54516
+ // is safe — Escape and outside-click still close the bib.
54517
+ this._priorNoHide = this.noHideOnThisFocusLoss;
54518
+ this._noHideOverridden = true;
54519
+ this.noHideOnThisFocusLoss = true;
54520
+
54473
54521
  // Desktop modal: trap focus only within the bib content.
54474
54522
  // Can't use FocusTrap on the bib element because keydown events
54475
54523
  // from slotted content bubble through the dropdown host (light DOM),
@@ -56022,7 +56070,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$4 {
56022
56070
  }
56023
56071
  };
56024
56072
 
56025
- var formkitVersion$6 = '202606082053';
56073
+ var formkitVersion$6 = '202606101857';
56026
56074
 
56027
56075
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
56028
56076
  // See LICENSE in the project root for license information.
@@ -59026,7 +59074,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$4 {
59026
59074
  }
59027
59075
  };
59028
59076
 
59029
- var formkitVersion$5 = '202606082053';
59077
+ var formkitVersion$5 = '202606101857';
59030
59078
 
59031
59079
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
59032
59080
  // See LICENSE in the project root for license information.
@@ -60776,7 +60824,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$4 {
60776
60824
  }
60777
60825
  };
60778
60826
 
60779
- var formkitVersion$4 = '202606082053';
60827
+ var formkitVersion$4 = '202606101857';
60780
60828
 
60781
60829
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
60782
60830
  // See LICENSE in the project root for license information.
@@ -65974,7 +66022,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
65974
66022
  }
65975
66023
  };
65976
66024
 
65977
- var formkitVersion$2 = '202606082053';
66025
+ var formkitVersion$2 = '202606101857';
65978
66026
 
65979
66027
  let AuroElement$2$1 = class AuroElement extends i$4 {
65980
66028
  static get properties() {
@@ -66832,9 +66880,27 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
66832
66880
  this.focusTrap = undefined;
66833
66881
  }
66834
66882
 
66883
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
66884
+ if (this._noHideOverridden) {
66885
+ this.noHideOnThisFocusLoss = this._priorNoHide;
66886
+ this._noHideOverridden = false;
66887
+ this._priorNoHide = undefined;
66888
+ }
66889
+
66835
66890
  if (this.isPopoverVisible) {
66836
66891
  if (!this.isBibFullscreen) {
66837
66892
  if (this.desktopModal) {
66893
+ // The floater's focus-loss check uses :focus-within, which does not
66894
+ // match the host when focus is on a slotted element projected through
66895
+ // multiple shadow roots. Without this override, focusing a button
66896
+ // inside the bib would be misread as focus leaving the dropdown and
66897
+ // close the bib immediately. desktopModal traps focus inside the
66898
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
66899
+ // is safe — Escape and outside-click still close the bib.
66900
+ this._priorNoHide = this.noHideOnThisFocusLoss;
66901
+ this._noHideOverridden = true;
66902
+ this.noHideOnThisFocusLoss = true;
66903
+
66838
66904
  // Desktop modal: trap focus only within the bib content.
66839
66905
  // Can't use FocusTrap on the bib element because keydown events
66840
66906
  // from slotted content bubble through the dropdown host (light DOM),
@@ -77501,7 +77567,11 @@ class AuroInputUtilities {
77501
77567
  return part.value;
77502
77568
  }
77503
77569
  })
77504
- .join("");
77570
+ .join("")
77571
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
77572
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
77573
+ .replace(/\s/gu, '')
77574
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
77505
77575
  }
77506
77576
 
77507
77577
  /**
@@ -79459,7 +79529,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$4 {
79459
79529
  }
79460
79530
  };
79461
79531
 
79462
- var formkitVersion$1$1 = '202606082053';
79532
+ var formkitVersion$1$1 = '202606101857';
79463
79533
 
79464
79534
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
79465
79535
  // See LICENSE in the project root for license information.
@@ -80584,7 +80654,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$4 {
80584
80654
  }
80585
80655
  };
80586
80656
 
80587
- var formkitVersion$3 = '202606082053';
80657
+ var formkitVersion$3 = '202606101857';
80588
80658
 
80589
80659
  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}`;
80590
80660
 
@@ -81815,14 +81885,8 @@ class AuroCombobox extends AuroElement$3 {
81815
81885
  const len = nativeInput.value.length;
81816
81886
  nativeInput.setSelectionRange(len, len);
81817
81887
  }
81818
- } else if (!this.input.componentHasFocus) {
81819
- const focusedEl = this.querySelector(":focus");
81888
+ } else {
81820
81889
  this.input.focus();
81821
- // current focus is on a menuoption, after clicking on it.
81822
- if (this.persistInput && focusedEl && (focusedEl.tagName.toLowerCase() === 'auro-menuoption' || focusedEl.hasAttribute('auro-menuoption'))) {
81823
- this.setClearBtnFocus();
81824
- this.validate(true);
81825
- }
81826
81890
  }
81827
81891
  }
81828
81892
 
@@ -89654,7 +89718,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
89654
89718
  }
89655
89719
  };
89656
89720
 
89657
- var formkitVersion$1 = '202606082053';
89721
+ var formkitVersion$1 = '202606101857';
89658
89722
 
89659
89723
  class AuroElement extends i$4 {
89660
89724
  static get properties() {
@@ -90512,9 +90576,27 @@ class AuroDropdown extends AuroElement {
90512
90576
  this.focusTrap = undefined;
90513
90577
  }
90514
90578
 
90579
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
90580
+ if (this._noHideOverridden) {
90581
+ this.noHideOnThisFocusLoss = this._priorNoHide;
90582
+ this._noHideOverridden = false;
90583
+ this._priorNoHide = undefined;
90584
+ }
90585
+
90515
90586
  if (this.isPopoverVisible) {
90516
90587
  if (!this.isBibFullscreen) {
90517
90588
  if (this.desktopModal) {
90589
+ // The floater's focus-loss check uses :focus-within, which does not
90590
+ // match the host when focus is on a slotted element projected through
90591
+ // multiple shadow roots. Without this override, focusing a button
90592
+ // inside the bib would be misread as focus leaving the dropdown and
90593
+ // close the bib immediately. desktopModal traps focus inside the
90594
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
90595
+ // is safe — Escape and outside-click still close the bib.
90596
+ this._priorNoHide = this.noHideOnThisFocusLoss;
90597
+ this._noHideOverridden = true;
90598
+ this.noHideOnThisFocusLoss = true;
90599
+
90518
90600
  // Desktop modal: trap focus only within the bib content.
90519
90601
  // Can't use FocusTrap on the bib element because keydown events
90520
90602
  // from slotted content bubble through the dropdown host (light DOM),
@@ -91649,7 +91731,7 @@ class AuroHelpText extends i$4 {
91649
91731
  }
91650
91732
  }
91651
91733
 
91652
- var formkitVersion = '202606082053';
91734
+ var formkitVersion = '202606101857';
91653
91735
 
91654
91736
  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);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}`;
91655
91737