@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
@@ -10291,7 +10291,11 @@ let AuroInputUtilities$3 = class AuroInputUtilities {
10291
10291
  return part.value;
10292
10292
  }
10293
10293
  })
10294
- .join("");
10294
+ .join("")
10295
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
10296
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
10297
+ .replace(/\s/gu, '')
10298
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
10295
10299
  }
10296
10300
 
10297
10301
  /**
@@ -12249,7 +12253,7 @@ let AuroHelpText$9 = class AuroHelpText extends i$3 {
12249
12253
  }
12250
12254
  };
12251
12255
 
12252
- var formkitVersion$9 = '202606082053';
12256
+ var formkitVersion$9 = '202606101857';
12253
12257
 
12254
12258
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12255
12259
  // See LICENSE in the project root for license information.
@@ -23323,7 +23327,11 @@ let AuroInputUtilities$1 = class AuroInputUtilities {
23323
23327
  return part.value;
23324
23328
  }
23325
23329
  })
23326
- .join("");
23330
+ .join("")
23331
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
23332
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
23333
+ .replace(/\s/gu, '')
23334
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
23327
23335
  }
23328
23336
 
23329
23337
  /**
@@ -23708,8 +23716,8 @@ class UtilitiesCalendarRender {
23708
23716
  <auro-formkit-calendar-month
23709
23717
  id="${`month-${month}-${year}`}"
23710
23718
  .disabledDays="${elem.disabledDays}"
23711
- .min="${elem.min}"
23712
- .max="${elem.max}"
23719
+ .min="${elem.minDateObject?.getTime() / 1000}"
23720
+ .max="${elem.maxDateObject?.getTime() / 1000}"
23713
23721
  ?noRange="${elem.noRange}"
23714
23722
  .monthFirst="${elem.monthFirst}"
23715
23723
  .dateTo="${elem.dateTo}"
@@ -26370,7 +26378,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
26370
26378
  }
26371
26379
  };
26372
26380
 
26373
- var formkitVersion$2$1 = '202606082053';
26381
+ var formkitVersion$2$1 = '202606101857';
26374
26382
 
26375
26383
  let l$1$2 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$6`${s$8(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1$2 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$1$2 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$1$3=i$5`:host{color:var(--ds-auro-loader-color)}:host>span{background-color:var(--ds-auro-loader-background-color);border-color:var(--ds-auro-loader-border-color)}:host([onlight]),:host([appearance=brand]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]),:host([appearance=inverse]){--ds-auro-loader-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([orbit])>span{--ds-auro-loader-background-color: transparent}:host([orbit])>span:nth-child(1){--ds-auro-loader-border-color: currentcolor;opacity:.25}:host([orbit])>span:nth-child(2){--ds-auro-loader-border-color: currentcolor;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
26376
26384
  `,u$4$1=i$5`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:focus:not(:focus-visible){outline:3px solid transparent}:host,:host>span{position:relative}:host{width:2rem;height:2rem;display:inline-block;font-size:0}:host>span{position:absolute;display:inline-block;float:none;top:0;left:0;width:2rem;height:2rem;border-radius:100%;border-style:solid;border-width:0;box-sizing:border-box}:host([xs]),:host([xs])>span{width:1.2rem;height:1.2rem}:host([sm]),:host([sm])>span{width:3rem;height:3rem}:host([md]),:host([md])>span{width:5rem;height:5rem}:host([lg]),:host([lg])>span{width:8rem;height:8rem}:host{--margin: .375rem;--margin-xs: .2rem;--margin-sm: .5rem;--margin-md: .75rem;--margin-lg: 1rem}:host([pulse]),:host([pulse])>span{position:relative}:host([pulse]){width:calc(3rem + var(--margin) * 6);height:calc(1rem + var(--margin) * 2)}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(1.95rem + var(--margin-xs) * 6);height:calc(.65rem + var(--margin-xs) * 2)}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:calc(2rem + var(--margin-sm) * 2)}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:calc(3rem + var(--margin-md) * 2)}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:calc(5rem + var(--margin-lg) * 2)}:host([pulse][lg])>span{margin:var(--margin-lg);width:5rem;height:5rem}:host([pulse])>span:nth-child(1){animation-delay:-.4s}:host([pulse])>span:nth-child(2){animation-delay:-.2s}:host([pulse])>span:nth-child(3){animation-delay:0ms}@keyframes pulse{0%,to{opacity:.1;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}:host([orbit]),:host([orbit])>span{opacity:1}:host([orbit])>span{border-width:5px}:host([orbit])>span:nth-child(2){animation:orbit 2s linear infinite}:host([orbit][sm])>span{border-width:8px}:host([orbit][md])>span{border-width:13px}:host([orbit][lg])>span{border-width:21px}@keyframes orbit{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host([ringworm])>svg{animation:rotate 2s linear infinite;height:100%;width:100%;stroke:currentcolor;stroke-width:8}:host([ringworm]) .path{stroke-dashoffset:0;animation:ringworm 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes ringworm{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}:host([laser]){position:static;width:100%;display:block;height:0;overflow:hidden;font-size:unset}:host([laser])>span{position:fixed;width:100%;height:.25rem;border-radius:0;z-index:100}:host([laser])>span:nth-child(1){border-color:currentcolor;opacity:.25}:host([laser])>span:nth-child(2){border-color:currentcolor;animation:laser 2s linear infinite;opacity:1;width:50%}:host([laser][sm])>span:nth-child(2){width:20%}:host([laser][md])>span:nth-child(2){width:30%}:host([laser][lg])>span:nth-child(2){width:50%;animation-duration:1.5s}:host([laser][xl])>span:nth-child(2){width:80%;animation-duration:1.5s}@keyframes laser{0%{left:-100%}to{left:110%}}:host>.no-animation{display:none}@media (prefers-reduced-motion: reduce){:host{display:flex;align-items:center;justify-content:center}:host>span{opacity:1}:host>.loader{display:none}:host>svg{display:none}:host>.no-animation{display:block}}
@@ -31883,7 +31891,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
31883
31891
  }
31884
31892
  };
31885
31893
 
31886
- var formkitVersion$1$2 = '202606082053';
31894
+ var formkitVersion$1$2 = '202606101857';
31887
31895
 
31888
31896
  let AuroElement$2$2 = class AuroElement extends i$3 {
31889
31897
  static get properties() {
@@ -32741,9 +32749,27 @@ let AuroDropdown$3 = class AuroDropdown extends AuroElement$2$2 {
32741
32749
  this.focusTrap = undefined;
32742
32750
  }
32743
32751
 
32752
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
32753
+ if (this._noHideOverridden) {
32754
+ this.noHideOnThisFocusLoss = this._priorNoHide;
32755
+ this._noHideOverridden = false;
32756
+ this._priorNoHide = undefined;
32757
+ }
32758
+
32744
32759
  if (this.isPopoverVisible) {
32745
32760
  if (!this.isBibFullscreen) {
32746
32761
  if (this.desktopModal) {
32762
+ // The floater's focus-loss check uses :focus-within, which does not
32763
+ // match the host when focus is on a slotted element projected through
32764
+ // multiple shadow roots. Without this override, focusing a button
32765
+ // inside the bib would be misread as focus leaving the dropdown and
32766
+ // close the bib immediately. desktopModal traps focus inside the
32767
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
32768
+ // is safe — Escape and outside-click still close the bib.
32769
+ this._priorNoHide = this.noHideOnThisFocusLoss;
32770
+ this._noHideOverridden = true;
32771
+ this.noHideOnThisFocusLoss = true;
32772
+
32747
32773
  // Desktop modal: trap focus only within the bib content.
32748
32774
  // Can't use FocusTrap on the bib element because keydown events
32749
32775
  // from slotted content bubble through the dropdown host (light DOM),
@@ -43410,7 +43436,11 @@ let AuroInputUtilities$2 = class AuroInputUtilities {
43410
43436
  return part.value;
43411
43437
  }
43412
43438
  })
43413
- .join("");
43439
+ .join("")
43440
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
43441
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
43442
+ .replace(/\s/gu, '')
43443
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
43414
43444
  }
43415
43445
 
43416
43446
  /**
@@ -45368,7 +45398,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
45368
45398
  }
45369
45399
  };
45370
45400
 
45371
- var formkitVersion$8 = '202606082053';
45401
+ var formkitVersion$8 = '202606101857';
45372
45402
 
45373
45403
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
45374
45404
  // See LICENSE in the project root for license information.
@@ -47576,7 +47606,7 @@ class AuroDatePicker extends AuroElement$6 {
47576
47606
  * @returns {Number} Simplified number.
47577
47607
  */
47578
47608
  convertToWcValidTime(date) {
47579
- return new Date(date).getTime() / 1000;
47609
+ return date?.getTime() / 1000;
47580
47610
  }
47581
47611
 
47582
47612
  /**
@@ -48623,7 +48653,7 @@ class AuroDatePicker extends AuroElement$6 {
48623
48653
  <div class="${e$3(this.commonDisplayValueWrapperClasses)}">
48624
48654
  <slot name="displayValue" @slotchange=${this.checkDisplayValueSlotChange}>
48625
48655
  <span>
48626
- ${this.formatShortDate(this.value)}${this.range ? u$d`–${this.formatShortDate(this.valueEnd)}` : undefined}
48656
+ ${this.formatShortDate(this.valueObject)}${this.range ? u$d`–${this.formatShortDate(this.valueEndObject)}` : undefined}
48627
48657
  </span>
48628
48658
  </slot>
48629
48659
  </div>
@@ -48697,7 +48727,7 @@ class AuroDatePicker extends AuroElement$6 {
48697
48727
  * Simple formatter that ONLY WORKS FOR US DATES.
48698
48728
  * Returns formatted date like Apr 21 or Dec 25.
48699
48729
  * @private
48700
- * @param {string} date - Date format should be in a format Date constructor accepts, like '2023-04-21' or '2023/04/21'.
48730
+ * @param {Date} date - Date format should be in a format Date constructor accepts, like '2023-04-21' or '2023/04/21'.
48701
48731
  * @returns {string}
48702
48732
  */
48703
48733
  formatShortDate(date) {
@@ -48707,16 +48737,16 @@ class AuroDatePicker extends AuroElement$6 {
48707
48737
  day: '2-digit'
48708
48738
  };
48709
48739
 
48710
- return new Date(date).toLocaleDateString('en-US', options).replace(',', '');
48740
+ return date?.toLocaleDateString(this.locale, options).replace(',', '');
48711
48741
  }
48712
48742
 
48713
48743
  /**
48714
48744
  * Format and render the provided date value.
48715
48745
  * @private
48716
- * @param {string} dateValue - The date value to format and render.
48746
+ * @param {Date} date - The date value to format and render.
48717
48747
  * @returns {import('lit').TemplateResult}
48718
48748
  */
48719
- renderDisplayTextDate(dateValue) {
48749
+ renderDisplayTextDate(date) {
48720
48750
  const displayTextClasses = {
48721
48751
  'displayValueText': true,
48722
48752
  'body-lg': true
@@ -48725,8 +48755,8 @@ class AuroDatePicker extends AuroElement$6 {
48725
48755
  return u$d`
48726
48756
  <div>
48727
48757
  <div class="${e$3(displayTextClasses)}">
48728
- ${dateValue && dateFormatter$1.isValidDate(dateValue)
48729
- ? this.formatShortDate(dateValue)
48758
+ ${date
48759
+ ? this.formatShortDate(date)
48730
48760
  : undefined
48731
48761
  }
48732
48762
  </div>
@@ -48775,7 +48805,7 @@ class AuroDatePicker extends AuroElement$6 {
48775
48805
  ${this.layout !== "classic"
48776
48806
  ? u$d`
48777
48807
  <span slot="displayValue">
48778
- ${this.renderDisplayTextDate(this.value)}
48808
+ ${this.renderDisplayTextDate(this.valueObject)}
48779
48809
  </span>
48780
48810
  `
48781
48811
  : undefined
@@ -48819,7 +48849,7 @@ class AuroDatePicker extends AuroElement$6 {
48819
48849
  ${this.layout !== "classic"
48820
48850
  ? u$d`
48821
48851
  <span slot="displayValue">
48822
- ${this.renderDisplayTextDate(this.valueEnd)}
48852
+ ${this.renderDisplayTextDate(this.valueEndObject)}
48823
48853
  </span>
48824
48854
  `
48825
48855
  : undefined
@@ -52894,7 +52924,7 @@ let AuroHelpText$7 = class AuroHelpText extends i$3 {
52894
52924
  }
52895
52925
  };
52896
52926
 
52897
- var formkitVersion$7 = '202606082053';
52927
+ var formkitVersion$7 = '202606101857';
52898
52928
 
52899
52929
  let AuroElement$5 = class AuroElement extends i$3 {
52900
52930
  static get properties() {
@@ -53752,9 +53782,27 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$5 {
53752
53782
  this.focusTrap = undefined;
53753
53783
  }
53754
53784
 
53785
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
53786
+ if (this._noHideOverridden) {
53787
+ this.noHideOnThisFocusLoss = this._priorNoHide;
53788
+ this._noHideOverridden = false;
53789
+ this._priorNoHide = undefined;
53790
+ }
53791
+
53755
53792
  if (this.isPopoverVisible) {
53756
53793
  if (!this.isBibFullscreen) {
53757
53794
  if (this.desktopModal) {
53795
+ // The floater's focus-loss check uses :focus-within, which does not
53796
+ // match the host when focus is on a slotted element projected through
53797
+ // multiple shadow roots. Without this override, focusing a button
53798
+ // inside the bib would be misread as focus leaving the dropdown and
53799
+ // close the bib immediately. desktopModal traps focus inside the
53800
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
53801
+ // is safe — Escape and outside-click still close the bib.
53802
+ this._priorNoHide = this.noHideOnThisFocusLoss;
53803
+ this._noHideOverridden = true;
53804
+ this.noHideOnThisFocusLoss = true;
53805
+
53758
53806
  // Desktop modal: trap focus only within the bib content.
53759
53807
  // Can't use FocusTrap on the bib element because keydown events
53760
53808
  // from slotted content bubble through the dropdown host (light DOM),
@@ -55307,7 +55355,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
55307
55355
  }
55308
55356
  };
55309
55357
 
55310
- var formkitVersion$6 = '202606082053';
55358
+ var formkitVersion$6 = '202606101857';
55311
55359
 
55312
55360
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
55313
55361
  // See LICENSE in the project root for license information.
@@ -58311,7 +58359,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
58311
58359
  }
58312
58360
  };
58313
58361
 
58314
- var formkitVersion$5 = '202606082053';
58362
+ var formkitVersion$5 = '202606101857';
58315
58363
 
58316
58364
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
58317
58365
  // See LICENSE in the project root for license information.
@@ -60061,7 +60109,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
60061
60109
  }
60062
60110
  };
60063
60111
 
60064
- var formkitVersion$4 = '202606082053';
60112
+ var formkitVersion$4 = '202606101857';
60065
60113
 
60066
60114
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
60067
60115
  // See LICENSE in the project root for license information.
@@ -65259,7 +65307,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
65259
65307
  }
65260
65308
  };
65261
65309
 
65262
- var formkitVersion$2 = '202606082053';
65310
+ var formkitVersion$2 = '202606101857';
65263
65311
 
65264
65312
  let AuroElement$2$1 = class AuroElement extends i$3 {
65265
65313
  static get properties() {
@@ -66117,9 +66165,27 @@ let AuroDropdown$1 = class AuroDropdown extends AuroElement$2$1 {
66117
66165
  this.focusTrap = undefined;
66118
66166
  }
66119
66167
 
66168
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
66169
+ if (this._noHideOverridden) {
66170
+ this.noHideOnThisFocusLoss = this._priorNoHide;
66171
+ this._noHideOverridden = false;
66172
+ this._priorNoHide = undefined;
66173
+ }
66174
+
66120
66175
  if (this.isPopoverVisible) {
66121
66176
  if (!this.isBibFullscreen) {
66122
66177
  if (this.desktopModal) {
66178
+ // The floater's focus-loss check uses :focus-within, which does not
66179
+ // match the host when focus is on a slotted element projected through
66180
+ // multiple shadow roots. Without this override, focusing a button
66181
+ // inside the bib would be misread as focus leaving the dropdown and
66182
+ // close the bib immediately. desktopModal traps focus inside the
66183
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
66184
+ // is safe — Escape and outside-click still close the bib.
66185
+ this._priorNoHide = this.noHideOnThisFocusLoss;
66186
+ this._noHideOverridden = true;
66187
+ this.noHideOnThisFocusLoss = true;
66188
+
66123
66189
  // Desktop modal: trap focus only within the bib content.
66124
66190
  // Can't use FocusTrap on the bib element because keydown events
66125
66191
  // from slotted content bubble through the dropdown host (light DOM),
@@ -76786,7 +76852,11 @@ class AuroInputUtilities {
76786
76852
  return part.value;
76787
76853
  }
76788
76854
  })
76789
- .join("");
76855
+ .join("")
76856
+ // Remove whitespace and leading/trailing special characters for IMask compatibility
76857
+ // for example, ko-KR's format is `YYYY. MM. DD.` which causes issues with IMask if we don't remove the trailing period.
76858
+ .replace(/\s/gu, '')
76859
+ .replace(/^[^A-Z0-9]+|[^A-Z0-9]+$/gu, '');
76790
76860
  }
76791
76861
 
76792
76862
  /**
@@ -78744,7 +78814,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
78744
78814
  }
78745
78815
  };
78746
78816
 
78747
- var formkitVersion$1$1 = '202606082053';
78817
+ var formkitVersion$1$1 = '202606101857';
78748
78818
 
78749
78819
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
78750
78820
  // See LICENSE in the project root for license information.
@@ -79869,7 +79939,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
79869
79939
  }
79870
79940
  };
79871
79941
 
79872
- var formkitVersion$3 = '202606082053';
79942
+ var formkitVersion$3 = '202606101857';
79873
79943
 
79874
79944
  var styleCss$1$3 = i$5`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
79875
79945
 
@@ -81100,14 +81170,8 @@ class AuroCombobox extends AuroElement$3 {
81100
81170
  const len = nativeInput.value.length;
81101
81171
  nativeInput.setSelectionRange(len, len);
81102
81172
  }
81103
- } else if (!this.input.componentHasFocus) {
81104
- const focusedEl = this.querySelector(":focus");
81173
+ } else {
81105
81174
  this.input.focus();
81106
- // current focus is on a menuoption, after clicking on it.
81107
- if (this.persistInput && focusedEl && (focusedEl.tagName.toLowerCase() === 'auro-menuoption' || focusedEl.hasAttribute('auro-menuoption'))) {
81108
- this.setClearBtnFocus();
81109
- this.validate(true);
81110
- }
81111
81175
  }
81112
81176
  }
81113
81177
 
@@ -88939,7 +89003,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
88939
89003
  }
88940
89004
  };
88941
89005
 
88942
- var formkitVersion$1 = '202606082053';
89006
+ var formkitVersion$1 = '202606101857';
88943
89007
 
88944
89008
  class AuroElement extends i$3 {
88945
89009
  static get properties() {
@@ -89797,9 +89861,27 @@ class AuroDropdown extends AuroElement {
89797
89861
  this.focusTrap = undefined;
89798
89862
  }
89799
89863
 
89864
+ // Restore the user-set noHideOnThisFocusLoss value, if we overrode it.
89865
+ if (this._noHideOverridden) {
89866
+ this.noHideOnThisFocusLoss = this._priorNoHide;
89867
+ this._noHideOverridden = false;
89868
+ this._priorNoHide = undefined;
89869
+ }
89870
+
89800
89871
  if (this.isPopoverVisible) {
89801
89872
  if (!this.isBibFullscreen) {
89802
89873
  if (this.desktopModal) {
89874
+ // The floater's focus-loss check uses :focus-within, which does not
89875
+ // match the host when focus is on a slotted element projected through
89876
+ // multiple shadow roots. Without this override, focusing a button
89877
+ // inside the bib would be misread as focus leaving the dropdown and
89878
+ // close the bib immediately. desktopModal traps focus inside the
89879
+ // bib and inerts siblings, so suppressing focus-loss dismissal here
89880
+ // is safe — Escape and outside-click still close the bib.
89881
+ this._priorNoHide = this.noHideOnThisFocusLoss;
89882
+ this._noHideOverridden = true;
89883
+ this.noHideOnThisFocusLoss = true;
89884
+
89803
89885
  // Desktop modal: trap focus only within the bib content.
89804
89886
  // Can't use FocusTrap on the bib element because keydown events
89805
89887
  // from slotted content bubble through the dropdown host (light DOM),
@@ -90934,7 +91016,7 @@ class AuroHelpText extends i$3 {
90934
91016
  }
90935
91017
  }
90936
91018
 
90937
- var formkitVersion = '202606082053';
91019
+ var formkitVersion = '202606101857';
90938
91020
 
90939
91021
  var styleCss = i$5`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);font-weight:var(--wcss-body-default-weight, );line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-default-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-default-emphasized{font-size:var(--wcss-body-default-emphasized-font-size, 1rem);font-weight:var(--wcss-body-default-emphasized-weight, );line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);font-weight:var(--wcss-body-lg-weight, );line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg,.body-lg-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg-emphasized{font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);font-weight:var(--wcss-body-lg-emphasized-weight, );line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, 0.875rem);font-weight:var(--wcss-body-sm-weight, );line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-sm-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-sm-emphasized{font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);font-weight:var(--wcss-body-sm-emphasized-weight, );line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.body-xs{font-size:var(--wcss-body-xs-font-size, 0.75rem);font-weight:var(--wcss-body-xs-weight, );line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs,.body-xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs-emphasized{font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);font-weight:var(--wcss-body-xs-emphasized-weight, );line-height:var(--wcss-body-xs-emphasized-line-height, 1rem)}.body-2xs{font-size:var(--wcss-body-2xs-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-weight, );line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs,.body-2xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-2xs-emphasized{font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-emphasized-weight, );line-height:var(--wcss-body-2xs-emphasized-line-height, 0.875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 300);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 300);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
90940
91022