@aurodesignsystem-dev/auro-formkit 0.0.0-pr1514.8 → 0.0.0-pr1515.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 (51) hide show
  1. package/components/bibtemplate/dist/index.js +1 -1
  2. package/components/bibtemplate/dist/registered.js +1 -1
  3. package/components/checkbox/demo/customize.min.js +1 -1
  4. package/components/checkbox/demo/getting-started.min.js +1 -1
  5. package/components/checkbox/demo/index.min.js +1 -1
  6. package/components/checkbox/dist/index.js +1 -1
  7. package/components/checkbox/dist/registered.js +1 -1
  8. package/components/combobox/demo/customize.min.js +97 -120
  9. package/components/combobox/demo/getting-started.min.js +97 -120
  10. package/components/combobox/demo/index.min.js +97 -120
  11. package/components/combobox/dist/index.js +96 -119
  12. package/components/combobox/dist/registered.js +96 -119
  13. package/components/counter/demo/customize.min.js +3 -3
  14. package/components/counter/demo/index.min.js +3 -3
  15. package/components/counter/dist/index.js +3 -3
  16. package/components/counter/dist/registered.js +3 -3
  17. package/components/datepicker/demo/customize.min.js +118 -251
  18. package/components/datepicker/demo/index.min.js +118 -251
  19. package/components/datepicker/dist/auro-calendar.d.ts +1 -30
  20. package/components/datepicker/dist/index.js +118 -251
  21. package/components/datepicker/dist/registered.js +118 -251
  22. package/components/dropdown/demo/customize.min.js +1 -1
  23. package/components/dropdown/demo/getting-started.min.js +1 -1
  24. package/components/dropdown/demo/index.min.js +1 -1
  25. package/components/dropdown/dist/index.js +1 -1
  26. package/components/dropdown/dist/registered.js +1 -1
  27. package/components/form/demo/customize.min.js +317 -496
  28. package/components/form/demo/getting-started.min.js +317 -496
  29. package/components/form/demo/index.min.js +317 -496
  30. package/components/form/demo/registerDemoDeps.min.js +317 -496
  31. package/components/input/demo/api.md +5 -5
  32. package/components/input/demo/customize.md +8 -8
  33. package/components/input/demo/customize.min.js +93 -116
  34. package/components/input/demo/getting-started.min.js +93 -116
  35. package/components/input/demo/index.min.js +93 -116
  36. package/components/input/dist/base-input.d.ts +44 -33
  37. package/components/input/dist/index.js +94 -129
  38. package/components/input/dist/registered.js +93 -116
  39. package/components/radio/demo/customize.min.js +1 -1
  40. package/components/radio/demo/getting-started.min.js +1 -1
  41. package/components/radio/demo/index.min.js +1 -1
  42. package/components/radio/dist/index.js +1 -1
  43. package/components/radio/dist/registered.js +1 -1
  44. package/components/select/demo/customize.md +1 -3
  45. package/components/select/demo/customize.min.js +3 -3
  46. package/components/select/demo/getting-started.min.js +50 -5
  47. package/components/select/demo/index.min.js +3 -3
  48. package/components/select/dist/index.js +3 -3
  49. package/components/select/dist/registered.js +3 -3
  50. package/custom-elements.json +1720 -1940
  51. package/package.json +1 -1
@@ -10456,13 +10456,6 @@ let AuroInputUtilities$3 = class AuroInputUtilities {
10456
10456
  * @returns {string | undefined}
10457
10457
  */
10458
10458
  toFormattedValue(valueObject, format) {
10459
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
10460
- // `format` argument has to fail gracefully rather than throw on
10461
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
10462
- // as "no format → no display value".
10463
- if (!format) {
10464
- return undefined;
10465
- }
10466
10459
  const normalizedFormat = format.toLowerCase();
10467
10460
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
10468
10461
 
@@ -10613,18 +10606,79 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
10613
10606
  constructor() {
10614
10607
  super();
10615
10608
 
10616
- // Single-source initialization. Alphabetized so duplicate or stale
10617
- // defaults are immediately obvious on a diff. Every field is assigned
10618
- // exactly once here (previously the constructor + the old
10619
- // `_initializePrivateDefaults` overlapped — both wrote ~14 of the same
10620
- // fields and double-allocated `util` and `validation`, discarding the
10621
- // first instance). `validation` is now allocated exactly once; `util`
10622
- // is seeded here with an en-US default and then rebuilt in
10623
- // `connectedCallback` once the consumer-resolved locale is available,
10624
- // so a parent (datepicker/combobox) calling `validate()` synchronously
10625
- // during its own update cycle sees a populated util instance.
10609
+ this.appearance = "default";
10610
+ this.disabled = false;
10611
+ this.layout = 'classic';
10612
+ this.locale = 'en-US';
10613
+ this.max = undefined;
10614
+ this._maxObject = undefined;
10615
+ this.maxLength = undefined;
10616
+ this.min = undefined;
10617
+ this._minObject = undefined;
10618
+ this.minLength = undefined;
10619
+ this.required = false;
10620
+ this.onDark = false;
10621
+ this.setCustomValidityForType = undefined;
10622
+ this.size = 'lg';
10623
+ this.shape = 'classic';
10624
+ this.value = undefined;
10625
+ this._valueObject = undefined;
10626
+
10627
+ this._initializePrivateDefaults();
10628
+ }
10629
+
10630
+ /**
10631
+ * Internal Defaults.
10632
+ * @private
10633
+ * @returns {void}
10634
+ */
10635
+ _initializePrivateDefaults() {
10626
10636
  this.activeLabel = false;
10627
- /** @private */
10637
+ this.appearance = "default";
10638
+ this.icon = false;
10639
+ this.disabled = false;
10640
+ this.dvInputOnly = false;
10641
+ this.hideLabelVisually = false;
10642
+ this.max = undefined;
10643
+ this.maxLength = undefined;
10644
+ this.min = undefined;
10645
+ this.minLength = undefined;
10646
+ this.noValidate = false;
10647
+ this.onDark = false;
10648
+ this.required = false;
10649
+ this.setCustomValidityForType = undefined;
10650
+
10651
+ // Used for storing raw values returned from input mask.
10652
+ this._rawMaskValue = undefined;
10653
+
10654
+ /**
10655
+ * @private
10656
+ */
10657
+ this.layout = 'classic';
10658
+
10659
+ /**
10660
+ * @private
10661
+ */
10662
+ this.shape = 'classic';
10663
+
10664
+ /**
10665
+ * @private
10666
+ */
10667
+ this.size = 'lg';
10668
+
10669
+ this.touched = false;
10670
+ this.util = new AuroInputUtilities$3({
10671
+ locale: "en-US",
10672
+ format: this.format
10673
+ });
10674
+ this.validation = new AuroFormValidation$7();
10675
+ this.inputIconName = undefined;
10676
+ this.showPassword = false;
10677
+ this.validationCCLength = undefined;
10678
+ this.hasValue = false;
10679
+ this.label = 'Input label is undefined';
10680
+
10681
+
10628
10682
  this.allowedInputTypes = [
10629
10683
  "text",
10630
10684
  "number",
@@ -10633,8 +10687,7 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
10633
10687
  "credit-card",
10634
10688
  "tel"
10635
10689
  ];
10636
- this.appearance = "default";
10637
- /** @private */
10690
+ this.icon = false;
10638
10691
  this.dateFormatMap = {
10639
10692
  'mm/dd/yyyy': 'dateMMDDYYYY',
10640
10693
  'dd/mm/yyyy': 'dateDDMMYYYY',
@@ -10651,57 +10704,27 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
10651
10704
  'dd/mm': 'dateDDMM',
10652
10705
  'mm/dd': 'dateMMDD'
10653
10706
  };
10654
- this.disabled = false;
10655
- /** @private */
10656
10707
  this.domHandler = new DomHandler$3();
10657
10708
  this.dvInputOnly = false;
10658
10709
  this.hasValue = false;
10659
- this.hideLabelVisually = false;
10660
- this.icon = false;
10661
- /** @private */
10662
10710
  this.inputIconName = undefined;
10663
- /** @private */
10664
10711
  this.label = 'Input label is undefined';
10665
- this.layout = 'classic';
10666
- this.locale = 'en-US';
10667
- this.max = undefined;
10668
- this._maxObject = undefined;
10669
- this.maxLength = undefined;
10670
- this.min = undefined;
10671
- this._minObject = undefined;
10672
- this.minLength = undefined;
10673
10712
  this.noValidate = false;
10674
- this.onDark = false;
10675
- // Raw values returned from the input mask before model normalization.
10676
- this._rawMaskValue = undefined;
10677
- this.required = false;
10678
- this.setCustomValidityForType = undefined;
10679
- // Credit Card is intentionally excluded — its mask manages the cursor
10680
- // itself, and listing it here caused cursor placement issues in Safari.
10681
- /** @private */
10713
+ this._rawMaskValue = undefined; // Used for storing raw values returned from input mask.
10682
10714
  this.setSelectionInputTypes = [
10683
10715
  "text",
10684
10716
  "password",
10685
10717
  "email"
10686
- ];
10687
- this.shape = 'classic';
10688
- /** @private */
10718
+ ]; // Credit Card is not included as this caused cursor placement issues in Safari.
10689
10719
  this.showPassword = false;
10690
- this.size = 'lg';
10691
10720
  this.touched = false;
10692
- /** @private */
10693
10721
  this.uniqueId = new UniqueId$2().create();
10694
- /** @private */
10695
10722
  this.util = new AuroInputUtilities$3({
10696
10723
  locale: this.locale,
10697
10724
  format: this.format
10698
10725
  });
10699
- /** @private */
10700
10726
  this.validation = new AuroFormValidation$7();
10701
- /** @private */
10702
10727
  this.validationCCLength = undefined;
10703
- this.value = undefined;
10704
- this._valueObject = undefined;
10705
10728
  }
10706
10729
 
10707
10730
  // function to define props used within the scope of this component
@@ -11249,15 +11272,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11249
11272
 
11250
11273
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
11251
11274
 
11252
- // Normalize the format token to lowercase so case-mixed values supplied
11253
- // via attribute (e.g. `format="MM/DD/YYYY"`) hit the `dateFormatMap`
11254
- // lookup inside `setCustomHelpTextMessage`. Without this, an uppercase
11255
- // format silently misses the map and leaves `setCustomValidityForType`
11256
- // unset.
11257
- if (this.format) {
11258
- this.format = this.format.toLowerCase();
11259
- }
11260
-
11261
11275
  // use validity message override if declared when initializing the component
11262
11276
  if (this.hasAttribute('setCustomValidity')) {
11263
11277
  this.ValidityMessageOverride = this.setCustomValidity;
@@ -11691,38 +11705,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11691
11705
  this.touched = true;
11692
11706
  this.validation.validate(this);
11693
11707
  }
11694
-
11695
- // Prevents cursor jumping in Safari. Setting `this.value` triggers a Lit
11696
- // update that can re-render the input and reset the native cursor; we
11697
- // capture the caret position before that update commits and restore it
11698
- // via `setSelectionRange` once the update has flushed. Gated on
11699
- // `setSelectionInputTypes` so credit-card (and other masked types whose
11700
- // formatter manages the cursor itself) doesn't get a competing write.
11701
- // Capture the caret position INSIDE the gate — reading `selectionStart`
11702
- // on input types that don't support text selection (number, email in
11703
- // some browsers) throws InvalidStateError, which would crash all input
11704
- // handling. Wrap the read in try/catch belt-and-suspenders even though
11705
- // the gated types currently support it, since the list is a public
11706
- // property a consumer could mutate.
11707
- if (this.setSelectionInputTypes.includes(this.type)) {
11708
- let selectionStart;
11709
- try {
11710
- selectionStart = this.inputElement.selectionStart;
11711
- } catch (error) { // eslint-disable-line no-unused-vars
11712
- return;
11713
- }
11714
- if (typeof selectionStart !== 'number') {
11715
- return;
11716
- }
11717
- this.updateComplete.then(() => {
11718
- try {
11719
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
11720
- } catch (error) { // eslint-disable-line no-unused-vars
11721
- // Some input types (number/email in certain UAs) throw on
11722
- // setSelectionRange; swallow and let the native cursor stand.
11723
- }
11724
- });
11725
- }
11726
11708
  }
11727
11709
 
11728
11710
  /**
@@ -12349,7 +12331,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$2 {
12349
12331
  }
12350
12332
  };
12351
12333
 
12352
- var formkitVersion$8 = '202606291956';
12334
+ var formkitVersion$8 = '202606291748';
12353
12335
 
12354
12336
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12355
12337
  // See LICENSE in the project root for license information.
@@ -12852,7 +12834,6 @@ let AuroInput$2 = class AuroInput extends BaseInput$2 {
12852
12834
  <${this.buttonTag}
12853
12835
  @click="${this.handleClickShowPassword}"
12854
12836
  appearance="${this.onDark ? 'inverse' : this.appearance}"
12855
- aria-pressed="${this.showPassword ? 'true' : 'false'}"
12856
12837
  class="notificationBtn passwordBtn"
12857
12838
  shape="circle"
12858
12839
  size="sm"
@@ -12926,29 +12907,25 @@ let AuroInput$2 = class AuroInput extends BaseInput$2 {
12926
12907
  * @returns {html} - Returns HTML for the help text and error message.
12927
12908
  */
12928
12909
  renderHtmlHelpText() {
12929
- // Single `<p>` with stable identity across validity transitions —
12930
- // previously two distinct templates (valid vs invalid) caused Lit to
12931
- // replace the node entirely on a flip, and VoiceOver wouldn't
12932
- // re-announce because the live-region element it was watching had been
12933
- // removed and a new one inserted. Keeping one node means the `role`,
12934
- // `aria-live`, and text content all change in-place, which AT does
12935
- // observe and announce.
12936
- const isError = this.validity && this.validity !== 'valid';
12937
12910
  return u$d`
12938
- <${this.helpTextTag}
12939
- appearance="${this.onDark ? 'inverse' : this.appearance}"
12940
- ?error=${isError}>
12941
- <p
12942
- id="${this.uniqueId}"
12943
- part="helpText"
12944
- role="${o$4(isError ? 'alert' : undefined)}"
12945
- aria-live="${o$4(isError ? 'assertive' : undefined)}">
12946
- ${isError
12947
- ? this.errorMessage
12948
- : u$d`<slot name="helpText">${this.getHelpText()}</slot>`
12949
- }
12950
- </p>
12951
- </${this.helpTextTag}>
12911
+ ${!this.validity || this.validity === undefined || this.validity === 'valid'
12912
+ ? u$d`
12913
+ <${this.helpTextTag}
12914
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
12915
+ <p id="${this.uniqueId}" part="helpText">
12916
+ <slot name="helpText">${this.getHelpText()}</slot>
12917
+ </p>
12918
+ </${this.helpTextTag}>
12919
+ `
12920
+ : u$d`
12921
+ <${this.helpTextTag} error
12922
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
12923
+ <p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
12924
+ ${this.errorMessage}
12925
+ </p>
12926
+ </${this.helpTextTag}>
12927
+ `
12928
+ }
12952
12929
  `;
12953
12930
  }
12954
12931
 
@@ -23589,13 +23566,6 @@ let AuroInputUtilities$1 = class AuroInputUtilities {
23589
23566
  * @returns {string | undefined}
23590
23567
  */
23591
23568
  toFormattedValue(valueObject, format) {
23592
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
23593
- // `format` argument has to fail gracefully rather than throw on
23594
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
23595
- // as "no format → no display value".
23596
- if (!format) {
23597
- return undefined;
23598
- }
23599
23569
  const normalizedFormat = format.toLowerCase();
23600
23570
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
23601
23571
 
@@ -23855,9 +23825,9 @@ var snowflakeStyle = i$4`:host([layout*=snowflake]) [auro-input]{flex:1;text-ali
23855
23825
 
23856
23826
  var snowflakeColors = i$4`:host([layout=snowflake]) [auro-dropdown]:not(:is([error],.hasFocus)){--ds-auro-dropdown-trigger-border-color: transparent}`;
23857
23827
 
23858
- var styleCss$7$1 = i$4`.body-default{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-default-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default-emphasized{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-default-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-default-emphasized-font-size, 1rem);line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.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-lg-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg-emphasized{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-lg-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{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-sm-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-sm-font-size, 0.875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm-emphasized{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-sm-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.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-xs-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-xs-font-size, 0.75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs-emphasized{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-xs-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);line-height:var(--wcss-body-xs-emphasized-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-weight:var(--wcss-body-2xs-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-2xs-font-size, 0.625rem);line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs-emphasized{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-2xs-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);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-weight:var(--wcss-display-2xl-weight, 300);line-height:var(--wcss-display-2xl-line-height, 1.3);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));letter-spacing:var(--wcss-display-2xl-letter-spacing, 0)}.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-weight:var(--wcss-display-xl-weight, 300);line-height:var(--wcss-display-xl-line-height, 1.3);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));letter-spacing:var(--wcss-display-xl-letter-spacing, 0)}.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-weight:var(--wcss-display-lg-weight, 300);line-height:var(--wcss-display-lg-line-height, 1.3);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));letter-spacing:var(--wcss-display-lg-letter-spacing, 0)}.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-weight:var(--wcss-display-md-weight, 300);line-height:var(--wcss-display-md-line-height, 1.3);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));letter-spacing:var(--wcss-display-md-letter-spacing, 0)}.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-weight:var(--wcss-display-sm-weight, 300);line-height:var(--wcss-display-sm-line-height, 1.3);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));letter-spacing:var(--wcss-display-sm-letter-spacing, 0)}.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-weight:var(--wcss-display-xs-weight, 300);line-height:var(--wcss-display-xs-line-height, 1.3);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));letter-spacing:var(--wcss-display-xs-letter-spacing, 0)}.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-weight:var(--wcss-heading-xl-weight, 300);line-height:var(--wcss-heading-xl-line-height, 1.3);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));letter-spacing:var(--wcss-heading-xl-letter-spacing, 0)}.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-weight:var(--wcss-heading-lg-weight, 300);line-height:var(--wcss-heading-lg-line-height, 1.3);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));letter-spacing:var(--wcss-heading-lg-letter-spacing, 0)}.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-weight:var(--wcss-heading-md-weight, 300);line-height:var(--wcss-heading-md-line-height, 1.3);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));letter-spacing:var(--wcss-heading-md-letter-spacing, 0)}.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-weight:var(--wcss-heading-sm-weight, 300);line-height:var(--wcss-heading-sm-line-height, 1.3);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));letter-spacing:var(--wcss-heading-sm-letter-spacing, 0)}.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-weight:var(--wcss-heading-xs-weight, 300);line-height:var(--wcss-heading-xs-line-height, 1.3);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));letter-spacing:var(--wcss-heading-xs-letter-spacing, 0)}.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-weight:var(--wcss-heading-2xs-weight, 300);line-height:var(--wcss-heading-2xs-line-height, 1.3);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0)}.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-weight:var(--wcss-accent-2xl-weight, 450);line-height:var(--wcss-accent-2xl-line-height, 1);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);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-weight:var(--wcss-accent-xl-weight, 450);line-height:var(--wcss-accent-xl-line-height, 1.3);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);text-transform:uppercase}.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-weight:var(--wcss-accent-lg-weight, 450);line-height:var(--wcss-accent-lg-line-height, 1.3);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);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-weight:var(--wcss-accent-md-weight, 500);line-height:var(--wcss-accent-md-line-height, 1.3);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);text-transform:uppercase}.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-weight:var(--wcss-accent-sm-weight, 500);line-height:var(--wcss-accent-sm-line-height, 1.3);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);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-weight:var(--wcss-accent-xs-weight, 500);line-height:var(--wcss-accent-xs-line-height, 1.3);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);text-transform:uppercase}.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-weight:var(--wcss-accent-2xs-weight, 450);line-height:var(--wcss-accent-2xs-line-height, 1.3);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);text-transform:uppercase}:host{--calendar-width: 336px;--mobile-footer-height: 150px;--mobile-header-height: 68px;--desktop-footer-height: 80px;height:100vh;height:100dvh}.calendars{display:flex;flex-direction:row}.calendars:focus{outline:none}.calendarNavButtons{position:absolute;z-index:1;top:var(--ds-size-200, 1rem);right:var(--ds-size-50, 0.25rem);left:var(--ds-size-50, 0.25rem)}.calendarNavBtn{display:flex;width:var(--ds-size-500, 2.5rem);height:var(--ds-size-500, 2.5rem);align-items:center;justify-content:center;border-width:1px;border-style:solid;border-radius:50%;cursor:pointer}.prevMonth,.nextMonth{position:absolute;top:0}.prevMonth{left:0}.nextMonth{right:0}.headerActions{padding:0 var(--ds-size-200, 1rem)}.mobileHeader{width:100%;height:var(--mobile-header-height);z-index:1;align-items:center;flex-direction:row}.headerDateFrom,.headerDateTo{display:flex;height:var(--mobile-header-height);flex:1;flex-direction:column;justify-content:center;padding:0 var(--ds-size-150, 0.75rem) 0 var(--ds-size-200, 1rem)}.mobileDateLabel{padding:var(--ds-size-25, 0.125rem) 0}.mobileFooter{display:none;width:100%;align-items:flex-end;flex-direction:column;justify-content:flex-end}.mobileFooterActions{position:relative;bottom:0;left:50%;display:none;width:calc(100% - var(--ds-size-200, 1rem)*2);align-items:flex-end;flex-direction:column;justify-content:flex-end;padding:var(--ds-size-150) calc(var(--ds-size-200, 1rem));transform:translateX(-50%)}.mobileFooterActions auro-button{width:100%}:host([isfullscreen]){width:100%;max-height:100dvh;overflow:hidden}:host([isfullscreen]) .prevMonth,:host([isfullscreen]) .nextMonth{display:none}:host([isfullscreen]) .mobileHeader,:host([isfullscreen]) .mobileFooter,:host([isfullscreen]) .mobileFooterActions{display:flex}:host([isfullscreen]) .calendarWrapper{display:flex;flex-direction:column}:host([isfullscreen]) .calendars{display:flex;flex-direction:column;flex:1;align-items:center;width:100%;overscroll-behavior:contain}:host([isfullscreen]) .calendars:after{display:block;width:100%;height:var(--mobile-footer-height);content:""}.sr-only{position:absolute;overflow:hidden;clip:rect(0, 0, 0, 0);width:1px;height:1px;margin:-1px;padding:0;border:0;white-space:nowrap}`;
23828
+ var styleCss$7$1 = i$4`.body-default{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-default-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default-emphasized{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-default-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-default-emphasized-font-size, 1rem);line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.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-lg-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg-emphasized{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-lg-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{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-sm-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-sm-font-size, 0.875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm-emphasized{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-sm-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.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-xs-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-xs-font-size, 0.75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs-emphasized{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-xs-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);line-height:var(--wcss-body-xs-emphasized-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-weight:var(--wcss-body-2xs-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-2xs-font-size, 0.625rem);line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs-emphasized{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-2xs-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);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-weight:var(--wcss-display-2xl-weight, 300);line-height:var(--wcss-display-2xl-line-height, 1.3);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));letter-spacing:var(--wcss-display-2xl-letter-spacing, 0)}.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-weight:var(--wcss-display-xl-weight, 300);line-height:var(--wcss-display-xl-line-height, 1.3);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));letter-spacing:var(--wcss-display-xl-letter-spacing, 0)}.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-weight:var(--wcss-display-lg-weight, 300);line-height:var(--wcss-display-lg-line-height, 1.3);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));letter-spacing:var(--wcss-display-lg-letter-spacing, 0)}.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-weight:var(--wcss-display-md-weight, 300);line-height:var(--wcss-display-md-line-height, 1.3);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));letter-spacing:var(--wcss-display-md-letter-spacing, 0)}.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-weight:var(--wcss-display-sm-weight, 300);line-height:var(--wcss-display-sm-line-height, 1.3);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));letter-spacing:var(--wcss-display-sm-letter-spacing, 0)}.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-weight:var(--wcss-display-xs-weight, 300);line-height:var(--wcss-display-xs-line-height, 1.3);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));letter-spacing:var(--wcss-display-xs-letter-spacing, 0)}.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-weight:var(--wcss-heading-xl-weight, 300);line-height:var(--wcss-heading-xl-line-height, 1.3);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));letter-spacing:var(--wcss-heading-xl-letter-spacing, 0)}.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-weight:var(--wcss-heading-lg-weight, 300);line-height:var(--wcss-heading-lg-line-height, 1.3);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));letter-spacing:var(--wcss-heading-lg-letter-spacing, 0)}.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-weight:var(--wcss-heading-md-weight, 300);line-height:var(--wcss-heading-md-line-height, 1.3);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));letter-spacing:var(--wcss-heading-md-letter-spacing, 0)}.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-weight:var(--wcss-heading-sm-weight, 300);line-height:var(--wcss-heading-sm-line-height, 1.3);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));letter-spacing:var(--wcss-heading-sm-letter-spacing, 0)}.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-weight:var(--wcss-heading-xs-weight, 300);line-height:var(--wcss-heading-xs-line-height, 1.3);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));letter-spacing:var(--wcss-heading-xs-letter-spacing, 0)}.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-weight:var(--wcss-heading-2xs-weight, 300);line-height:var(--wcss-heading-2xs-line-height, 1.3);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0)}.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-weight:var(--wcss-accent-2xl-weight, 450);line-height:var(--wcss-accent-2xl-line-height, 1);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);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-weight:var(--wcss-accent-xl-weight, 450);line-height:var(--wcss-accent-xl-line-height, 1.3);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);text-transform:uppercase}.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-weight:var(--wcss-accent-lg-weight, 450);line-height:var(--wcss-accent-lg-line-height, 1.3);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);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-weight:var(--wcss-accent-md-weight, 500);line-height:var(--wcss-accent-md-line-height, 1.3);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);text-transform:uppercase}.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-weight:var(--wcss-accent-sm-weight, 500);line-height:var(--wcss-accent-sm-line-height, 1.3);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);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-weight:var(--wcss-accent-xs-weight, 500);line-height:var(--wcss-accent-xs-line-height, 1.3);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);text-transform:uppercase}.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-weight:var(--wcss-accent-2xs-weight, 450);line-height:var(--wcss-accent-2xs-line-height, 1.3);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);text-transform:uppercase}:host{--calendar-width: 336px;--mobile-footer-height: 150px;--mobile-header-height: 68px;--desktop-footer-height: 80px;height:100vh;height:100dvh}.calendars{display:flex;flex-direction:row}.calendars:focus{outline:none}.calendarNavButtons{position:absolute;z-index:1;top:var(--ds-size-200, 1rem);right:var(--ds-size-50, 0.25rem);left:var(--ds-size-50, 0.25rem)}.calendarNavBtn{display:flex;width:var(--ds-size-500, 2.5rem);height:var(--ds-size-500, 2.5rem);align-items:center;justify-content:center;border-width:1px;border-style:solid;border-radius:50%;cursor:pointer}.prevMonth,.nextMonth{position:absolute;top:0}.prevMonth{left:0}.nextMonth{right:0}.headerActions{padding:0 var(--ds-size-200, 1rem)}.mobileHeader{width:100%;height:var(--mobile-header-height);z-index:1;align-items:center;flex-direction:row}.headerDateFrom,.headerDateTo{display:flex;height:var(--mobile-header-height);flex:1;flex-direction:column;justify-content:center;padding:0 var(--ds-size-150, 0.75rem) 0 var(--ds-size-200, 1rem)}.mobileDateLabel{padding:var(--ds-size-25, 0.125rem) 0}.mobileFooter{display:none;width:100%;align-items:flex-end;flex-direction:column;justify-content:flex-end}.mobileFooterActions{position:relative;bottom:0;left:50%;display:none;width:calc(100% - var(--ds-size-200, 1rem)*2);align-items:flex-end;flex-direction:column;justify-content:flex-end;padding:var(--ds-size-150) calc(var(--ds-size-200, 1rem));transform:translateX(-50%)}.mobileFooterActions auro-button{width:100%}.calendarWrapper.hasFooter{padding-bottom:var(--desktop-footer-height)}:host([isfullscreen]){width:100%;max-height:100dvh;overflow:hidden}:host([isfullscreen]) .prevMonth,:host([isfullscreen]) .nextMonth{display:none}:host([isfullscreen]) .mobileHeader,:host([isfullscreen]) .mobileFooter,:host([isfullscreen]) .mobileFooterActions{display:flex}:host([isfullscreen]) .calendarWrapper{display:flex;flex-direction:column}:host([isfullscreen]) .calendars{display:flex;flex-direction:column;flex:1;align-items:center;width:100%;overscroll-behavior:contain}:host([isfullscreen]) .calendars:after{display:block;width:100%;height:var(--mobile-footer-height);content:""}.sr-only{position:absolute;overflow:hidden;clip:rect(0, 0, 0, 0);width:1px;height:1px;margin:-1px;padding:0;border:0;white-space:nowrap}`;
23859
23829
 
23860
- var colorCss$7$1 = i$4`.calendarNavBtn{border-color:var(--ds-auro-calendar-nav-btn-border-color);background-color:var(--ds-auro-calendar-nav-btn-container-color);color:var(--ds-auro-calendar-nav-btn-chevron-color)}.calendarNavBtn:hover{--ds-auro-calendar-nav-btn-container-color: var(--ds-advanced-color-state-background-hover, #f2f2f2);--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a)}.calendarNavBtn:focus-visible{--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a);outline:2px solid var(--ds-basic-color-brand-primary, #01426a);outline-offset:-2px}.calendarNavBtn:active{--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a);outline:2px solid var(--ds-basic-color-brand-primary, #01426a);outline-offset:-2px;box-shadow:inset 0 0 0 1px var(--ds-auro-calendar-nav-btn-border-color)}.mobileHeader{background-color:var(--ds-auro-calendar-mobile-header-container-color)}.mobileDateLabel{color:var(--ds-auro-calendar-mobile-header-text-color)}:host(:not([noRange])) .headerDateTo:after{background-color:var(--ds-auro-calendar-mobile-header-divider-color)}::slotted([slot="bib.fullscreen.fromStr"]),::slotted([slot=mobileDateToStr]){color:var(--ds-auro-datepicker-placeholder-color)}@media screen and (max-width: 576px){.calendarNavBtn{--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a)}}`;
23830
+ var colorCss$7$1 = i$4`.calendarNavBtn{border-color:var(--ds-auro-calendar-nav-btn-border-color);background-color:var(--ds-auro-calendar-nav-btn-container-color);color:var(--ds-auro-calendar-nav-btn-chevron-color)}.calendarNavBtn:hover{--ds-auro-calendar-nav-btn-container-color: var(--ds-advanced-color-state-background-hover, #f2f2f2);--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a)}.calendarNavBtn:focus{--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a)}.calendarNavBtn:active{--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a);box-shadow:inset 0 0 0 1px var(--ds-auro-calendar-nav-btn-border-color)}.mobileHeader{background-color:var(--ds-auro-calendar-mobile-header-container-color)}.mobileDateLabel{color:var(--ds-auro-calendar-mobile-header-text-color)}:host(:not([noRange])) .headerDateTo:after{background-color:var(--ds-auro-calendar-mobile-header-divider-color)}::slotted([slot="bib.fullscreen.fromStr"]),::slotted([slot=mobileDateToStr]){color:var(--ds-auro-datepicker-placeholder-color)}@media screen and (max-width: 576px){.calendarNavBtn{--ds-auro-calendar-nav-btn-border-color: var(--ds-basic-color-brand-primary, #01426a)}}`;
23861
23831
 
23862
23832
  var styleCss$6$1 = i$4`:focus:not(:focus-visible){outline:3px solid transparent}.body-default{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-default-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default-emphasized{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-default-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-default-emphasized-font-size, 1rem);line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.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-lg-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg-emphasized{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-lg-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{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-sm-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-sm-font-size, 0.875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm-emphasized{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-sm-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.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-xs-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-xs-font-size, 0.75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs-emphasized{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-xs-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);line-height:var(--wcss-body-xs-emphasized-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-weight:var(--wcss-body-2xs-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-2xs-font-size, 0.625rem);line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs-emphasized{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-2xs-emphasized-weight, );letter-spacing:var(--wcss-body-letter-spacing, 0);font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);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-weight:var(--wcss-display-2xl-weight, 300);line-height:var(--wcss-display-2xl-line-height, 1.3);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));letter-spacing:var(--wcss-display-2xl-letter-spacing, 0)}.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-weight:var(--wcss-display-xl-weight, 300);line-height:var(--wcss-display-xl-line-height, 1.3);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));letter-spacing:var(--wcss-display-xl-letter-spacing, 0)}.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-weight:var(--wcss-display-lg-weight, 300);line-height:var(--wcss-display-lg-line-height, 1.3);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));letter-spacing:var(--wcss-display-lg-letter-spacing, 0)}.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-weight:var(--wcss-display-md-weight, 300);line-height:var(--wcss-display-md-line-height, 1.3);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));letter-spacing:var(--wcss-display-md-letter-spacing, 0)}.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-weight:var(--wcss-display-sm-weight, 300);line-height:var(--wcss-display-sm-line-height, 1.3);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));letter-spacing:var(--wcss-display-sm-letter-spacing, 0)}.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-weight:var(--wcss-display-xs-weight, 300);line-height:var(--wcss-display-xs-line-height, 1.3);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));letter-spacing:var(--wcss-display-xs-letter-spacing, 0)}.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-weight:var(--wcss-heading-xl-weight, 300);line-height:var(--wcss-heading-xl-line-height, 1.3);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));letter-spacing:var(--wcss-heading-xl-letter-spacing, 0)}.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-weight:var(--wcss-heading-lg-weight, 300);line-height:var(--wcss-heading-lg-line-height, 1.3);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));letter-spacing:var(--wcss-heading-lg-letter-spacing, 0)}.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-weight:var(--wcss-heading-md-weight, 300);line-height:var(--wcss-heading-md-line-height, 1.3);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));letter-spacing:var(--wcss-heading-md-letter-spacing, 0)}.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-weight:var(--wcss-heading-sm-weight, 300);line-height:var(--wcss-heading-sm-line-height, 1.3);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));letter-spacing:var(--wcss-heading-sm-letter-spacing, 0)}.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-weight:var(--wcss-heading-xs-weight, 300);line-height:var(--wcss-heading-xs-line-height, 1.3);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));letter-spacing:var(--wcss-heading-xs-letter-spacing, 0)}.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-weight:var(--wcss-heading-2xs-weight, 300);line-height:var(--wcss-heading-2xs-line-height, 1.3);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0)}.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-weight:var(--wcss-accent-2xl-weight, 450);line-height:var(--wcss-accent-2xl-line-height, 1);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));letter-spacing:var(--wcss-accent-2xl-letter-spacing, 0.05em);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-weight:var(--wcss-accent-xl-weight, 450);line-height:var(--wcss-accent-xl-line-height, 1.3);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));letter-spacing:var(--wcss-accent-xl-letter-spacing, 0.05em);text-transform:uppercase}.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-weight:var(--wcss-accent-lg-weight, 450);line-height:var(--wcss-accent-lg-line-height, 1.3);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));letter-spacing:var(--wcss-accent-lg-letter-spacing, 0.05em);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-weight:var(--wcss-accent-md-weight, 500);line-height:var(--wcss-accent-md-line-height, 1.3);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));letter-spacing:var(--wcss-accent-md-letter-spacing, 0.05em);text-transform:uppercase}.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-weight:var(--wcss-accent-sm-weight, 500);line-height:var(--wcss-accent-sm-line-height, 1.3);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));letter-spacing:var(--wcss-accent-sm-letter-spacing, 0.05em);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-weight:var(--wcss-accent-xs-weight, 500);line-height:var(--wcss-accent-xs-line-height, 1.3);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));letter-spacing:var(--wcss-accent-xs-letter-spacing, 0.1em);text-transform:uppercase}.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-weight:var(--wcss-accent-2xs-weight, 450);line-height:var(--wcss-accent-2xs-line-height, 1.3);font-size:var(--wcss-accent-2xs-font-size, clamp(0.875rem, 1.1666666667vw, 0.875rem));letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);text-transform:uppercase}:host{position:relative;display:block;width:calc(100% - var(--ds-size-200, 1rem) - var(--ds-size-200, 1rem));margin:0 var(--ds-size-200, 1rem)}@media screen and (min-width: 576px){:host{width:336px;padding:var(--ds-size-200, 1rem) var(--ds-size-200, 1rem) 0}}@media screen and (min-width: 576px){:host(:not(:last-of-type)):after{position:absolute;top:var(--ds-size-200, 1rem);right:calc(-1*var(--ds-size-200, 1rem));height:calc(100% - var(--ds-size-200, 1rem) - var(--ds-size-200, 1rem));display:block;width:1px;content:""}}.header{display:flex;height:var(--ds-size-500, 2.5rem);margin-bottom:var(--ds-size-150, 0.75rem);align-items:center;flex-direction:row;text-align:center}.headerTitle{display:flex;align-items:center;flex:1;flex-direction:row;justify-content:center}.headerTitle div:first-child{margin-right:var(--ds-size-100, 0.5rem)}.calendarNavBtn{position:relative;display:flex;width:var(--ds-size-500, 2.5rem);height:var(--ds-size-500, 2.5rem);align-items:center;justify-content:center;border-width:1px;border-style:solid;border-radius:50%;cursor:pointer}.table{width:100%;border-collapse:collapse}.thead{margin-bottom:var(--ds-size-100, 0.5rem)}.th{display:flex;flex:1;align-items:center;justify-content:center}.th abbr{text-decoration:none}.tbody{width:100%;transition:all 0ms;transform:translateX(0)}@media screen and (min-width: 576px){.tbody{height:376px}}.td{flex:1;margin:0;padding:0}.tr{display:flex;flex-direction:row;width:100%;border-radius:10px;overflow:hidden}.tr:not(:last-of-type){margin-bottom:var(--ds-size-100, 0.5rem)}`;
23863
23833
 
@@ -26208,7 +26178,7 @@ class CalendarUtilities {
26208
26178
 
26209
26179
  var colorCss$4$2 = i$4`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
26210
26180
 
26211
- var styleCss$4$3 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{padding:var(--ds-size-200, 1rem)}`;
26181
+ var styleCss$4$3 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
26212
26182
 
26213
26183
  var tokenCss$4 = i$4`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
26214
26184
 
@@ -26603,7 +26573,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$2 {
26603
26573
  }
26604
26574
  };
26605
26575
 
26606
- var formkitVersion$2$1 = '202606291956';
26576
+ var formkitVersion$2$1 = '202606291748';
26607
26577
 
26608
26578
  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$5`${s$5(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$4`: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}
26609
26579
  `,u$4$2=i$4`.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}}
@@ -26708,15 +26678,6 @@ class AuroCalendar extends RangeDatepicker {
26708
26678
  */
26709
26679
  this.activeCellDate = null;
26710
26680
 
26711
- /**
26712
- * Cached reference to the active cell host. Set by setActiveCell and
26713
- * refreshed by scrollToActiveCell when its cache check misses (stale
26714
- * or missing). Lets scrollToActiveCell skip a full cell scan on each
26715
- * arrow key.
26716
- * @private
26717
- */
26718
- this._activeCell = null;
26719
-
26720
26681
  /**
26721
26682
  * Whether the #calendarGrid wrapper currently has focus.
26722
26683
  * Used to determine whether the visualFocus ring should be shown.
@@ -27228,9 +27189,6 @@ class AuroCalendar extends RangeDatepicker {
27228
27189
  });
27229
27190
 
27230
27191
  this.activeCellDate = date;
27231
- // Cache so scrollToActiveCell can scroll without re-querying all cells
27232
- // on every arrow keypress.
27233
- this._activeCell = newActiveCell;
27234
27192
 
27235
27193
  // Apply activeCell ring only when the grid currently has focus.
27236
27194
  if (newActiveCell && this._gridHasFocus) {
@@ -27688,9 +27646,6 @@ class AuroCalendar extends RangeDatepicker {
27688
27646
  this.handleCellFocused({ detail: { date: fallback.day.date } });
27689
27647
  }
27690
27648
  }
27691
- // Scroll AFTER the cross-month setActiveCell so the freshly
27692
- // activated cell is what gets scrolled into view.
27693
- this.scrollToActiveCell();
27694
27649
  // Re-focus grid wrapper after month change re-render
27695
27650
  this.focusActiveCell();
27696
27651
  });
@@ -27731,9 +27686,6 @@ class AuroCalendar extends RangeDatepicker {
27731
27686
  this.handleCellFocused({ detail: { date: nearest.day.date } });
27732
27687
  }
27733
27688
  }
27734
- // Scroll AFTER the cross-month setActiveCell so the freshly
27735
- // activated cell is what gets scrolled into view.
27736
- this.scrollToActiveCell();
27737
27689
  this.focusActiveCell();
27738
27690
  });
27739
27691
  }
@@ -27768,6 +27720,7 @@ class AuroCalendar extends RangeDatepicker {
27768
27720
  const targetCell = allCells[targetIndex];
27769
27721
  this.setActiveCell(targetCell.day.date);
27770
27722
  this.scrollToActiveCell();
27723
+ this.focusActiveCell();
27771
27724
  } else if (direction === 'next' && this.showNextMonthBtn) {
27772
27725
  // Navigate to next month and focus the computed next date.
27773
27726
  // Using the target date (fromDate + 1 day) instead of cells[0]
@@ -27788,6 +27741,7 @@ class AuroCalendar extends RangeDatepicker {
27788
27741
  const target = cells.find((cell) => cell.day && cell.day.date === nextTs);
27789
27742
  if (target) {
27790
27743
  this.setActiveCell(target.day.date);
27744
+ this.focusActiveCell();
27791
27745
  } else {
27792
27746
  // Same nearest-by-date fallback handleGridKeyDown uses — direct
27793
27747
  // `cells[length - 1]` would land on the end of the new month,
@@ -27795,10 +27749,9 @@ class AuroCalendar extends RangeDatepicker {
27795
27749
  const fallback = this.pickNearestCell(cells, nextTs, 'next');
27796
27750
  if (fallback) {
27797
27751
  this.setActiveCell(fallback.day.date);
27752
+ this.focusActiveCell();
27798
27753
  }
27799
27754
  }
27800
- this.scrollToActiveCell();
27801
- this.focusActiveCell();
27802
27755
  });
27803
27756
  } else if (direction === 'prev' && this.showPrevMonthBtn) {
27804
27757
  // Navigate to previous month and focus the computed previous date.
@@ -27817,6 +27770,7 @@ class AuroCalendar extends RangeDatepicker {
27817
27770
  const target = cells.find((cell) => cell.day && cell.day.date === prevTs);
27818
27771
  if (target) {
27819
27772
  this.setActiveCell(target.day.date);
27773
+ this.focusActiveCell();
27820
27774
  } else {
27821
27775
  // Same nearest-by-date fallback handleGridKeyDown uses — direct
27822
27776
  // `cells[0]` would land on the start of the previous month, far
@@ -27824,10 +27778,9 @@ class AuroCalendar extends RangeDatepicker {
27824
27778
  const fallback = this.pickNearestCell(cells, prevTs, 'prev');
27825
27779
  if (fallback) {
27826
27780
  this.setActiveCell(fallback.day.date);
27781
+ this.focusActiveCell();
27827
27782
  }
27828
27783
  }
27829
- this.scrollToActiveCell();
27830
- this.focusActiveCell();
27831
27784
  });
27832
27785
  }
27833
27786
  } else if (key === 'ArrowDown' || key === 'ArrowUp') {
@@ -27860,6 +27813,7 @@ class AuroCalendar extends RangeDatepicker {
27860
27813
  const target = cells.find((cell) => cell.day && cell.day.date === targetDate);
27861
27814
  if (target) {
27862
27815
  this.setActiveCell(target.day.date);
27816
+ this.focusActiveCell();
27863
27817
  } else {
27864
27818
  // Same nearest-by-date fallback handleGridKeyDown uses — the
27865
27819
  // old direction-based `cells[0]`/`cells[length-1]` clamp
@@ -27867,10 +27821,9 @@ class AuroCalendar extends RangeDatepicker {
27867
27821
  const nearest = this.pickNearestCell(cells, targetDate, navDirection);
27868
27822
  if (nearest) {
27869
27823
  this.setActiveCell(nearest.day.date);
27824
+ this.focusActiveCell();
27870
27825
  }
27871
27826
  }
27872
- this.scrollToActiveCell();
27873
- this.focusActiveCell();
27874
27827
  });
27875
27828
  }
27876
27829
  }
@@ -28071,28 +28024,7 @@ class AuroCalendar extends RangeDatepicker {
28071
28024
  }
28072
28025
 
28073
28026
  /**
28074
- * Scrolls the calendar so the active cell is visible.
28075
- *
28076
- * Walks the flat tree (rendered, slot-aware) outward from the active
28077
- * cell's button and calls `scrollBy` on every vertically-scrollable
28078
- * ancestor by whatever delta still separates the cell from that
28079
- * ancestor's viewport. Native `scrollIntoView` is not used because the
28080
- * cell sits inside multiple nested scroll containers (the dropdown bib's
28081
- * `<dialog>`, the bibtemplate's `#bodyContainer`) and the algorithm only
28082
- * scrolls one of them on its own, leaving the cell short of the
28083
- * viewport in mobile fullscreen.
28084
- *
28085
- * Uses `behavior: 'auto'` (the spec's universally-supported non-animated
28086
- * value) so each `scrollBy` resolves synchronously and the next
28087
- * iteration's `getBoundingClientRect` reads post-scroll positions
28088
- * accurately. This also satisfies `prefers-reduced-motion` users — the
28089
- * scroll containers do not set CSS `scroll-behavior: smooth`, so `auto`
28090
- * is effectively instant.
28091
- *
28092
- * The active cell is looked up from the cache populated by
28093
- * `setActiveCell`. On a cache miss (stale or absent) the cache is
28094
- * refreshed from a single full scan so subsequent calls stay on the
28095
- * fast path.
28027
+ * Scrolls the calendar to ensure the month containing the active cell is visible.
28096
28028
  * @private
28097
28029
  * @returns {void}
28098
28030
  */
@@ -28101,69 +28033,16 @@ class AuroCalendar extends RangeDatepicker {
28101
28033
  return;
28102
28034
  }
28103
28035
 
28104
- // Prefer the cell cached by setActiveCell so arrow-key navigation does
28105
- // not rebuild the full cell list on every keypress. Fall back to a
28106
- // lookup when the cache is stale (e.g. detached after month re-render)
28107
- // or absent (scrollToActiveCell called without a prior setActiveCell);
28108
- // refresh the cache on the fallback path so a subsequent call reuses it.
28109
- const activeDate = this.activeCellDate;
28110
- const cached = this._activeCell;
28111
- const cacheFresh = cached && cached.isConnected && cached.day && cached.day.date === activeDate;
28112
- let activeCell = null;
28113
- if (cacheFresh) {
28114
- activeCell = cached;
28115
- } else {
28116
- activeCell = this.getAllFocusableCells().find((cell) => cell.day && cell.day.date === activeDate);
28117
- this._activeCell = activeCell || null;
28118
- }
28119
- if (!activeCell) {
28120
- return;
28121
- }
28122
-
28123
- // Scroll the button inside the cell — it has concrete dimensions,
28124
- // which avoids quirks when the cell host has display: inline / contents
28125
- // / flex-without-explicit-size.
28126
- const target = activeCell._cachedButton ||
28127
- activeCell.shadowRoot?.querySelector('button.day') ||
28128
- activeCell;
28129
-
28130
- // parentNode follows the authored DOM tree and steps over shadow roots
28131
- // via slot projection. A slotted element's visual parent is its
28132
- // assignedSlot's parent (inside the host's shadow tree), not the host
28133
- // itself. Without this hop, the walk skips right past #bodyContainer
28134
- // and <dialog> and finds no scrollable ancestor at all.
28135
- const flatParent = (current) => {
28136
- if (current.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
28137
- return current.host || null;
28138
- }
28139
- if (current.assignedSlot) {
28140
- return current.assignedSlot.parentNode;
28141
- }
28142
- return current.parentNode;
28143
- };
28036
+ const date = new Date(this.activeCellDate * 1000);
28037
+ const month = date.getMonth() + 1;
28038
+ const year = date.getFullYear();
28039
+ const selector = `#month-${month}-${year}`;
28040
+ const monthElem = this.shadowRoot.querySelector(selector);
28144
28041
 
28145
- let node = flatParent(target);
28146
- while (node && node !== document && node !== window) {
28147
- if (node.nodeType === Node.ELEMENT_NODE) {
28148
- const { overflowY } = window.getComputedStyle(node);
28149
- if (overflowY === 'auto' || overflowY === 'scroll') {
28150
- const targetRect = target.getBoundingClientRect();
28151
- const scrollerRect = node.getBoundingClientRect();
28152
- let delta = 0;
28153
- if (targetRect.top < scrollerRect.top) {
28154
- delta = targetRect.top - scrollerRect.top;
28155
- } else if (targetRect.bottom > scrollerRect.bottom) {
28156
- delta = targetRect.bottom - scrollerRect.bottom;
28157
- }
28158
- if (delta !== 0) {
28159
- node.scrollBy({
28160
- top: delta,
28161
- behavior: 'auto'
28162
- });
28163
- }
28164
- }
28165
- }
28166
- node = flatParent(node);
28042
+ if (monthElem) {
28043
+ const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
28044
+ monthElem.scrollIntoView({ block: 'nearest',
28045
+ behavior: prefersReducedMotion ? 'instant' : 'smooth' });
28167
28046
  }
28168
28047
  }
28169
28048
 
@@ -32352,7 +32231,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$2 {
32352
32231
  }
32353
32232
  };
32354
32233
 
32355
- var formkitVersion$1$3 = '202606291956';
32234
+ var formkitVersion$1$3 = '202606291748';
32356
32235
 
32357
32236
  let AuroElement$2$2 = class AuroElement extends i$2 {
32358
32237
  static get properties() {
@@ -44071,13 +43950,6 @@ let AuroInputUtilities$2 = class AuroInputUtilities {
44071
43950
  * @returns {string | undefined}
44072
43951
  */
44073
43952
  toFormattedValue(valueObject, format) {
44074
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
44075
- // `format` argument has to fail gracefully rather than throw on
44076
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
44077
- // as "no format → no display value".
44078
- if (!format) {
44079
- return undefined;
44080
- }
44081
43953
  const normalizedFormat = format.toLowerCase();
44082
43954
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
44083
43955
 
@@ -44228,18 +44100,79 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
44228
44100
  constructor() {
44229
44101
  super();
44230
44102
 
44231
- // Single-source initialization. Alphabetized so duplicate or stale
44232
- // defaults are immediately obvious on a diff. Every field is assigned
44233
- // exactly once here (previously the constructor + the old
44234
- // `_initializePrivateDefaults` overlapped — both wrote ~14 of the same
44235
- // fields and double-allocated `util` and `validation`, discarding the
44236
- // first instance). `validation` is now allocated exactly once; `util`
44237
- // is seeded here with an en-US default and then rebuilt in
44238
- // `connectedCallback` once the consumer-resolved locale is available,
44239
- // so a parent (datepicker/combobox) calling `validate()` synchronously
44240
- // during its own update cycle sees a populated util instance.
44103
+ this.appearance = "default";
44104
+ this.disabled = false;
44105
+ this.layout = 'classic';
44106
+ this.locale = 'en-US';
44107
+ this.max = undefined;
44108
+ this._maxObject = undefined;
44109
+ this.maxLength = undefined;
44110
+ this.min = undefined;
44111
+ this._minObject = undefined;
44112
+ this.minLength = undefined;
44113
+ this.required = false;
44114
+ this.onDark = false;
44115
+ this.setCustomValidityForType = undefined;
44116
+ this.size = 'lg';
44117
+ this.shape = 'classic';
44118
+ this.value = undefined;
44119
+ this._valueObject = undefined;
44120
+
44121
+ this._initializePrivateDefaults();
44122
+ }
44123
+
44124
+ /**
44125
+ * Internal Defaults.
44126
+ * @private
44127
+ * @returns {void}
44128
+ */
44129
+ _initializePrivateDefaults() {
44241
44130
  this.activeLabel = false;
44242
- /** @private */
44131
+ this.appearance = "default";
44132
+ this.icon = false;
44133
+ this.disabled = false;
44134
+ this.dvInputOnly = false;
44135
+ this.hideLabelVisually = false;
44136
+ this.max = undefined;
44137
+ this.maxLength = undefined;
44138
+ this.min = undefined;
44139
+ this.minLength = undefined;
44140
+ this.noValidate = false;
44141
+ this.onDark = false;
44142
+ this.required = false;
44143
+ this.setCustomValidityForType = undefined;
44144
+
44145
+ // Used for storing raw values returned from input mask.
44146
+ this._rawMaskValue = undefined;
44147
+
44148
+ /**
44149
+ * @private
44150
+ */
44151
+ this.layout = 'classic';
44152
+
44153
+ /**
44154
+ * @private
44155
+ */
44156
+ this.shape = 'classic';
44157
+
44158
+ /**
44159
+ * @private
44160
+ */
44161
+ this.size = 'lg';
44162
+
44163
+ this.touched = false;
44164
+ this.util = new AuroInputUtilities$2({
44165
+ locale: "en-US",
44166
+ format: this.format
44167
+ });
44168
+ this.validation = new AuroFormValidation$6();
44169
+ this.inputIconName = undefined;
44170
+ this.showPassword = false;
44171
+ this.validationCCLength = undefined;
44172
+ this.hasValue = false;
44173
+ this.label = 'Input label is undefined';
44174
+
44175
+
44243
44176
  this.allowedInputTypes = [
44244
44177
  "text",
44245
44178
  "number",
@@ -44248,8 +44181,7 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
44248
44181
  "credit-card",
44249
44182
  "tel"
44250
44183
  ];
44251
- this.appearance = "default";
44252
- /** @private */
44184
+ this.icon = false;
44253
44185
  this.dateFormatMap = {
44254
44186
  'mm/dd/yyyy': 'dateMMDDYYYY',
44255
44187
  'dd/mm/yyyy': 'dateDDMMYYYY',
@@ -44266,57 +44198,27 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
44266
44198
  'dd/mm': 'dateDDMM',
44267
44199
  'mm/dd': 'dateMMDD'
44268
44200
  };
44269
- this.disabled = false;
44270
- /** @private */
44271
44201
  this.domHandler = new DomHandler$2();
44272
44202
  this.dvInputOnly = false;
44273
44203
  this.hasValue = false;
44274
- this.hideLabelVisually = false;
44275
- this.icon = false;
44276
- /** @private */
44277
44204
  this.inputIconName = undefined;
44278
- /** @private */
44279
44205
  this.label = 'Input label is undefined';
44280
- this.layout = 'classic';
44281
- this.locale = 'en-US';
44282
- this.max = undefined;
44283
- this._maxObject = undefined;
44284
- this.maxLength = undefined;
44285
- this.min = undefined;
44286
- this._minObject = undefined;
44287
- this.minLength = undefined;
44288
44206
  this.noValidate = false;
44289
- this.onDark = false;
44290
- // Raw values returned from the input mask before model normalization.
44291
- this._rawMaskValue = undefined;
44292
- this.required = false;
44293
- this.setCustomValidityForType = undefined;
44294
- // Credit Card is intentionally excluded — its mask manages the cursor
44295
- // itself, and listing it here caused cursor placement issues in Safari.
44296
- /** @private */
44207
+ this._rawMaskValue = undefined; // Used for storing raw values returned from input mask.
44297
44208
  this.setSelectionInputTypes = [
44298
44209
  "text",
44299
44210
  "password",
44300
44211
  "email"
44301
- ];
44302
- this.shape = 'classic';
44303
- /** @private */
44212
+ ]; // Credit Card is not included as this caused cursor placement issues in Safari.
44304
44213
  this.showPassword = false;
44305
- this.size = 'lg';
44306
44214
  this.touched = false;
44307
- /** @private */
44308
44215
  this.uniqueId = new UniqueId$1().create();
44309
- /** @private */
44310
44216
  this.util = new AuroInputUtilities$2({
44311
44217
  locale: this.locale,
44312
44218
  format: this.format
44313
44219
  });
44314
- /** @private */
44315
44220
  this.validation = new AuroFormValidation$6();
44316
- /** @private */
44317
44221
  this.validationCCLength = undefined;
44318
- this.value = undefined;
44319
- this._valueObject = undefined;
44320
44222
  }
44321
44223
 
44322
44224
  // function to define props used within the scope of this component
@@ -44864,15 +44766,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
44864
44766
 
44865
44767
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
44866
44768
 
44867
- // Normalize the format token to lowercase so case-mixed values supplied
44868
- // via attribute (e.g. `format="MM/DD/YYYY"`) hit the `dateFormatMap`
44869
- // lookup inside `setCustomHelpTextMessage`. Without this, an uppercase
44870
- // format silently misses the map and leaves `setCustomValidityForType`
44871
- // unset.
44872
- if (this.format) {
44873
- this.format = this.format.toLowerCase();
44874
- }
44875
-
44876
44769
  // use validity message override if declared when initializing the component
44877
44770
  if (this.hasAttribute('setCustomValidity')) {
44878
44771
  this.ValidityMessageOverride = this.setCustomValidity;
@@ -45306,38 +45199,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45306
45199
  this.touched = true;
45307
45200
  this.validation.validate(this);
45308
45201
  }
45309
-
45310
- // Prevents cursor jumping in Safari. Setting `this.value` triggers a Lit
45311
- // update that can re-render the input and reset the native cursor; we
45312
- // capture the caret position before that update commits and restore it
45313
- // via `setSelectionRange` once the update has flushed. Gated on
45314
- // `setSelectionInputTypes` so credit-card (and other masked types whose
45315
- // formatter manages the cursor itself) doesn't get a competing write.
45316
- // Capture the caret position INSIDE the gate — reading `selectionStart`
45317
- // on input types that don't support text selection (number, email in
45318
- // some browsers) throws InvalidStateError, which would crash all input
45319
- // handling. Wrap the read in try/catch belt-and-suspenders even though
45320
- // the gated types currently support it, since the list is a public
45321
- // property a consumer could mutate.
45322
- if (this.setSelectionInputTypes.includes(this.type)) {
45323
- let selectionStart;
45324
- try {
45325
- selectionStart = this.inputElement.selectionStart;
45326
- } catch (error) { // eslint-disable-line no-unused-vars
45327
- return;
45328
- }
45329
- if (typeof selectionStart !== 'number') {
45330
- return;
45331
- }
45332
- this.updateComplete.then(() => {
45333
- try {
45334
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
45335
- } catch (error) { // eslint-disable-line no-unused-vars
45336
- // Some input types (number/email in certain UAs) throw on
45337
- // setSelectionRange; swallow and let the native cursor stand.
45338
- }
45339
- });
45340
- }
45341
45202
  }
45342
45203
 
45343
45204
  /**
@@ -45964,7 +45825,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$2 {
45964
45825
  }
45965
45826
  };
45966
45827
 
45967
- var formkitVersion$7 = '202606291956';
45828
+ var formkitVersion$7 = '202606291748';
45968
45829
 
45969
45830
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
45970
45831
  // See LICENSE in the project root for license information.
@@ -46467,7 +46328,6 @@ let AuroInput$1 = class AuroInput extends BaseInput$1 {
46467
46328
  <${this.buttonTag}
46468
46329
  @click="${this.handleClickShowPassword}"
46469
46330
  appearance="${this.onDark ? 'inverse' : this.appearance}"
46470
- aria-pressed="${this.showPassword ? 'true' : 'false'}"
46471
46331
  class="notificationBtn passwordBtn"
46472
46332
  shape="circle"
46473
46333
  size="sm"
@@ -46541,29 +46401,25 @@ let AuroInput$1 = class AuroInput extends BaseInput$1 {
46541
46401
  * @returns {html} - Returns HTML for the help text and error message.
46542
46402
  */
46543
46403
  renderHtmlHelpText() {
46544
- // Single `<p>` with stable identity across validity transitions —
46545
- // previously two distinct templates (valid vs invalid) caused Lit to
46546
- // replace the node entirely on a flip, and VoiceOver wouldn't
46547
- // re-announce because the live-region element it was watching had been
46548
- // removed and a new one inserted. Keeping one node means the `role`,
46549
- // `aria-live`, and text content all change in-place, which AT does
46550
- // observe and announce.
46551
- const isError = this.validity && this.validity !== 'valid';
46552
46404
  return u$d`
46553
- <${this.helpTextTag}
46554
- appearance="${this.onDark ? 'inverse' : this.appearance}"
46555
- ?error=${isError}>
46556
- <p
46557
- id="${this.uniqueId}"
46558
- part="helpText"
46559
- role="${o$4(isError ? 'alert' : undefined)}"
46560
- aria-live="${o$4(isError ? 'assertive' : undefined)}">
46561
- ${isError
46562
- ? this.errorMessage
46563
- : u$d`<slot name="helpText">${this.getHelpText()}</slot>`
46564
- }
46565
- </p>
46566
- </${this.helpTextTag}>
46405
+ ${!this.validity || this.validity === undefined || this.validity === 'valid'
46406
+ ? u$d`
46407
+ <${this.helpTextTag}
46408
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
46409
+ <p id="${this.uniqueId}" part="helpText">
46410
+ <slot name="helpText">${this.getHelpText()}</slot>
46411
+ </p>
46412
+ </${this.helpTextTag}>
46413
+ `
46414
+ : u$d`
46415
+ <${this.helpTextTag} error
46416
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
46417
+ <p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
46418
+ ${this.errorMessage}
46419
+ </p>
46420
+ </${this.helpTextTag}>
46421
+ `
46422
+ }
46567
46423
  `;
46568
46424
  }
46569
46425
 
@@ -46710,15 +46566,6 @@ function formatISODate(isoStr, format) {
46710
46566
  try {
46711
46567
  const date = dateFormatter$2.stringToDateInstance(isoStr);
46712
46568
 
46713
- // `stringToDateInstance` returns an `Invalid Date` for malformed strings
46714
- // and `null` for non-string input — it does NOT throw. Without this
46715
- // guard, `getFullYear()`/`getMonth()`/`getDate()` on an Invalid Date
46716
- // yield `NaN`, and `String(NaN).padStart(4, '0')` produces literals
46717
- // like "0NaN/0NaN/0NaN" instead of `undefined`.
46718
- if (!(date instanceof Date) || Number.isNaN(date.getTime())) {
46719
- return undefined;
46720
- }
46721
-
46722
46569
  const year = String(date.getFullYear()).padStart(4, '0');
46723
46570
  const month = String(date.getMonth() + 1).padStart(2, '0');
46724
46571
  const day = String(date.getDate()).padStart(2, '0');
@@ -46729,10 +46576,7 @@ function formatISODate(isoStr, format) {
46729
46576
  replace(/mm/iu, month).
46730
46577
  replace(/dd/iu, day);
46731
46578
  } catch (err) {
46732
- // Defensive: the Date-returning path is guarded above, but `parseDate`
46733
- // (inside `stringToDateInstance`) could throw on pathological input
46734
- // future-library-versions might introduce. Treat any thrown error as
46735
- // "not a valid date" and return undefined.
46579
+ // If the input string is not a valid date, return undefined
46736
46580
  return undefined;
46737
46581
  }
46738
46582
  }
@@ -48577,8 +48421,8 @@ class AuroDatePicker extends AuroElement$5 {
48577
48421
  // we need to wait until the next frame to ensure the calendar is fully rendered
48578
48422
  // and the area we're trying to scroll to is present in the DOM.
48579
48423
  setTimeout(() => {
48424
+ this.calendar.scrollMonthIntoView(this.calendarFocusDate);
48580
48425
  this.forceScrollOnNextMobileCalendarRender = false;
48581
- this.calendar.scrollToActiveCell();
48582
48426
  }, 0);
48583
48427
  }
48584
48428
  }, { signal });
@@ -50836,7 +50680,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$2 {
50836
50680
  }
50837
50681
  };
50838
50682
 
50839
- var formkitVersion$1$2 = '202606291956';
50683
+ var formkitVersion$1$2 = '202606291748';
50840
50684
 
50841
50685
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
50842
50686
  // See LICENSE in the project root for license information.
@@ -55164,7 +55008,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$2 {
55164
55008
  }
55165
55009
  };
55166
55010
 
55167
- var formkitVersion$6 = '202606291956';
55011
+ var formkitVersion$6 = '202606291748';
55168
55012
 
55169
55013
  let AuroElement$1$2 = class AuroElement extends i$2 {
55170
55014
  static get properties() {
@@ -56563,7 +56407,7 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
56563
56407
 
56564
56408
  var colorCss$1$6 = i$4`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
56565
56409
 
56566
- var styleCss$1$6 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{padding:var(--ds-size-200, 1rem)}`;
56410
+ var styleCss$1$6 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
56567
56411
 
56568
56412
  var tokenCss$3 = i$4`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
56569
56413
 
@@ -59112,7 +58956,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$2 {
59112
58956
  }
59113
58957
  };
59114
58958
 
59115
- var formkitVersion$5 = '202606291956';
58959
+ var formkitVersion$5 = '202606291748';
59116
58960
 
59117
58961
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
59118
58962
  // See LICENSE in the project root for license information.
@@ -60862,7 +60706,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$2 {
60862
60706
  }
60863
60707
  };
60864
60708
 
60865
- var formkitVersion$4 = '202606291956';
60709
+ var formkitVersion$4 = '202606291748';
60866
60710
 
60867
60711
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
60868
60712
  // See LICENSE in the project root for license information.
@@ -66077,7 +65921,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$2 {
66077
65921
  }
66078
65922
  };
66079
65923
 
66080
- var formkitVersion$2 = '202606291956';
65924
+ var formkitVersion$2 = '202606291748';
66081
65925
 
66082
65926
  let AuroElement$2$1 = class AuroElement extends i$2 {
66083
65927
  static get properties() {
@@ -77796,13 +77640,6 @@ class AuroInputUtilities {
77796
77640
  * @returns {string | undefined}
77797
77641
  */
77798
77642
  toFormattedValue(valueObject, format) {
77799
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
77800
- // `format` argument has to fail gracefully rather than throw on
77801
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
77802
- // as "no format → no display value".
77803
- if (!format) {
77804
- return undefined;
77805
- }
77806
77643
  const normalizedFormat = format.toLowerCase();
77807
77644
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
77808
77645
 
@@ -77953,18 +77790,79 @@ class BaseInput extends AuroElement$1$1 {
77953
77790
  constructor() {
77954
77791
  super();
77955
77792
 
77956
- // Single-source initialization. Alphabetized so duplicate or stale
77957
- // defaults are immediately obvious on a diff. Every field is assigned
77958
- // exactly once here (previously the constructor + the old
77959
- // `_initializePrivateDefaults` overlapped — both wrote ~14 of the same
77960
- // fields and double-allocated `util` and `validation`, discarding the
77961
- // first instance). `validation` is now allocated exactly once; `util`
77962
- // is seeded here with an en-US default and then rebuilt in
77963
- // `connectedCallback` once the consumer-resolved locale is available,
77964
- // so a parent (datepicker/combobox) calling `validate()` synchronously
77965
- // during its own update cycle sees a populated util instance.
77793
+ this.appearance = "default";
77794
+ this.disabled = false;
77795
+ this.layout = 'classic';
77796
+ this.locale = 'en-US';
77797
+ this.max = undefined;
77798
+ this._maxObject = undefined;
77799
+ this.maxLength = undefined;
77800
+ this.min = undefined;
77801
+ this._minObject = undefined;
77802
+ this.minLength = undefined;
77803
+ this.required = false;
77804
+ this.onDark = false;
77805
+ this.setCustomValidityForType = undefined;
77806
+ this.size = 'lg';
77807
+ this.shape = 'classic';
77808
+ this.value = undefined;
77809
+ this._valueObject = undefined;
77810
+
77811
+ this._initializePrivateDefaults();
77812
+ }
77813
+
77814
+ /**
77815
+ * Internal Defaults.
77816
+ * @private
77817
+ * @returns {void}
77818
+ */
77819
+ _initializePrivateDefaults() {
77966
77820
  this.activeLabel = false;
77967
- /** @private */
77821
+ this.appearance = "default";
77822
+ this.icon = false;
77823
+ this.disabled = false;
77824
+ this.dvInputOnly = false;
77825
+ this.hideLabelVisually = false;
77826
+ this.max = undefined;
77827
+ this.maxLength = undefined;
77828
+ this.min = undefined;
77829
+ this.minLength = undefined;
77830
+ this.noValidate = false;
77831
+ this.onDark = false;
77832
+ this.required = false;
77833
+ this.setCustomValidityForType = undefined;
77834
+
77835
+ // Used for storing raw values returned from input mask.
77836
+ this._rawMaskValue = undefined;
77837
+
77838
+ /**
77839
+ * @private
77840
+ */
77841
+ this.layout = 'classic';
77842
+
77843
+ /**
77844
+ * @private
77845
+ */
77846
+ this.shape = 'classic';
77847
+
77848
+ /**
77849
+ * @private
77850
+ */
77851
+ this.size = 'lg';
77852
+
77853
+ this.touched = false;
77854
+ this.util = new AuroInputUtilities({
77855
+ locale: "en-US",
77856
+ format: this.format
77857
+ });
77858
+ this.validation = new AuroFormValidation$2();
77859
+ this.inputIconName = undefined;
77860
+ this.showPassword = false;
77861
+ this.validationCCLength = undefined;
77862
+ this.hasValue = false;
77863
+ this.label = 'Input label is undefined';
77864
+
77865
+
77968
77866
  this.allowedInputTypes = [
77969
77867
  "text",
77970
77868
  "number",
@@ -77973,8 +77871,7 @@ class BaseInput extends AuroElement$1$1 {
77973
77871
  "credit-card",
77974
77872
  "tel"
77975
77873
  ];
77976
- this.appearance = "default";
77977
- /** @private */
77874
+ this.icon = false;
77978
77875
  this.dateFormatMap = {
77979
77876
  'mm/dd/yyyy': 'dateMMDDYYYY',
77980
77877
  'dd/mm/yyyy': 'dateDDMMYYYY',
@@ -77991,57 +77888,27 @@ class BaseInput extends AuroElement$1$1 {
77991
77888
  'dd/mm': 'dateDDMM',
77992
77889
  'mm/dd': 'dateMMDD'
77993
77890
  };
77994
- this.disabled = false;
77995
- /** @private */
77996
77891
  this.domHandler = new DomHandler();
77997
77892
  this.dvInputOnly = false;
77998
77893
  this.hasValue = false;
77999
- this.hideLabelVisually = false;
78000
- this.icon = false;
78001
- /** @private */
78002
77894
  this.inputIconName = undefined;
78003
- /** @private */
78004
77895
  this.label = 'Input label is undefined';
78005
- this.layout = 'classic';
78006
- this.locale = 'en-US';
78007
- this.max = undefined;
78008
- this._maxObject = undefined;
78009
- this.maxLength = undefined;
78010
- this.min = undefined;
78011
- this._minObject = undefined;
78012
- this.minLength = undefined;
78013
77896
  this.noValidate = false;
78014
- this.onDark = false;
78015
- // Raw values returned from the input mask before model normalization.
78016
- this._rawMaskValue = undefined;
78017
- this.required = false;
78018
- this.setCustomValidityForType = undefined;
78019
- // Credit Card is intentionally excluded — its mask manages the cursor
78020
- // itself, and listing it here caused cursor placement issues in Safari.
78021
- /** @private */
77897
+ this._rawMaskValue = undefined; // Used for storing raw values returned from input mask.
78022
77898
  this.setSelectionInputTypes = [
78023
77899
  "text",
78024
77900
  "password",
78025
77901
  "email"
78026
- ];
78027
- this.shape = 'classic';
78028
- /** @private */
77902
+ ]; // Credit Card is not included as this caused cursor placement issues in Safari.
78029
77903
  this.showPassword = false;
78030
- this.size = 'lg';
78031
77904
  this.touched = false;
78032
- /** @private */
78033
77905
  this.uniqueId = new UniqueId().create();
78034
- /** @private */
78035
77906
  this.util = new AuroInputUtilities({
78036
77907
  locale: this.locale,
78037
77908
  format: this.format
78038
77909
  });
78039
- /** @private */
78040
77910
  this.validation = new AuroFormValidation$2();
78041
- /** @private */
78042
77911
  this.validationCCLength = undefined;
78043
- this.value = undefined;
78044
- this._valueObject = undefined;
78045
77912
  }
78046
77913
 
78047
77914
  // function to define props used within the scope of this component
@@ -78589,15 +78456,6 @@ class BaseInput extends AuroElement$1$1 {
78589
78456
 
78590
78457
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
78591
78458
 
78592
- // Normalize the format token to lowercase so case-mixed values supplied
78593
- // via attribute (e.g. `format="MM/DD/YYYY"`) hit the `dateFormatMap`
78594
- // lookup inside `setCustomHelpTextMessage`. Without this, an uppercase
78595
- // format silently misses the map and leaves `setCustomValidityForType`
78596
- // unset.
78597
- if (this.format) {
78598
- this.format = this.format.toLowerCase();
78599
- }
78600
-
78601
78459
  // use validity message override if declared when initializing the component
78602
78460
  if (this.hasAttribute('setCustomValidity')) {
78603
78461
  this.ValidityMessageOverride = this.setCustomValidity;
@@ -79031,38 +78889,6 @@ class BaseInput extends AuroElement$1$1 {
79031
78889
  this.touched = true;
79032
78890
  this.validation.validate(this);
79033
78891
  }
79034
-
79035
- // Prevents cursor jumping in Safari. Setting `this.value` triggers a Lit
79036
- // update that can re-render the input and reset the native cursor; we
79037
- // capture the caret position before that update commits and restore it
79038
- // via `setSelectionRange` once the update has flushed. Gated on
79039
- // `setSelectionInputTypes` so credit-card (and other masked types whose
79040
- // formatter manages the cursor itself) doesn't get a competing write.
79041
- // Capture the caret position INSIDE the gate — reading `selectionStart`
79042
- // on input types that don't support text selection (number, email in
79043
- // some browsers) throws InvalidStateError, which would crash all input
79044
- // handling. Wrap the read in try/catch belt-and-suspenders even though
79045
- // the gated types currently support it, since the list is a public
79046
- // property a consumer could mutate.
79047
- if (this.setSelectionInputTypes.includes(this.type)) {
79048
- let selectionStart;
79049
- try {
79050
- selectionStart = this.inputElement.selectionStart;
79051
- } catch (error) { // eslint-disable-line no-unused-vars
79052
- return;
79053
- }
79054
- if (typeof selectionStart !== 'number') {
79055
- return;
79056
- }
79057
- this.updateComplete.then(() => {
79058
- try {
79059
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
79060
- } catch (error) { // eslint-disable-line no-unused-vars
79061
- // Some input types (number/email in certain UAs) throw on
79062
- // setSelectionRange; swallow and let the native cursor stand.
79063
- }
79064
- });
79065
- }
79066
78892
  }
79067
78893
 
79068
78894
  /**
@@ -79689,7 +79515,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$2 {
79689
79515
  }
79690
79516
  };
79691
79517
 
79692
- var formkitVersion$1$1 = '202606291956';
79518
+ var formkitVersion$1$1 = '202606291748';
79693
79519
 
79694
79520
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
79695
79521
  // See LICENSE in the project root for license information.
@@ -80192,7 +80018,6 @@ class AuroInput extends BaseInput {
80192
80018
  <${this.buttonTag}
80193
80019
  @click="${this.handleClickShowPassword}"
80194
80020
  appearance="${this.onDark ? 'inverse' : this.appearance}"
80195
- aria-pressed="${this.showPassword ? 'true' : 'false'}"
80196
80021
  class="notificationBtn passwordBtn"
80197
80022
  shape="circle"
80198
80023
  size="sm"
@@ -80266,29 +80091,25 @@ class AuroInput extends BaseInput {
80266
80091
  * @returns {html} - Returns HTML for the help text and error message.
80267
80092
  */
80268
80093
  renderHtmlHelpText() {
80269
- // Single `<p>` with stable identity across validity transitions —
80270
- // previously two distinct templates (valid vs invalid) caused Lit to
80271
- // replace the node entirely on a flip, and VoiceOver wouldn't
80272
- // re-announce because the live-region element it was watching had been
80273
- // removed and a new one inserted. Keeping one node means the `role`,
80274
- // `aria-live`, and text content all change in-place, which AT does
80275
- // observe and announce.
80276
- const isError = this.validity && this.validity !== 'valid';
80277
80094
  return u$d`
80278
- <${this.helpTextTag}
80279
- appearance="${this.onDark ? 'inverse' : this.appearance}"
80280
- ?error=${isError}>
80281
- <p
80282
- id="${this.uniqueId}"
80283
- part="helpText"
80284
- role="${o$4(isError ? 'alert' : undefined)}"
80285
- aria-live="${o$4(isError ? 'assertive' : undefined)}">
80286
- ${isError
80287
- ? this.errorMessage
80288
- : u$d`<slot name="helpText">${this.getHelpText()}</slot>`
80289
- }
80290
- </p>
80291
- </${this.helpTextTag}>
80095
+ ${!this.validity || this.validity === undefined || this.validity === 'valid'
80096
+ ? u$d`
80097
+ <${this.helpTextTag}
80098
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
80099
+ <p id="${this.uniqueId}" part="helpText">
80100
+ <slot name="helpText">${this.getHelpText()}</slot>
80101
+ </p>
80102
+ </${this.helpTextTag}>
80103
+ `
80104
+ : u$d`
80105
+ <${this.helpTextTag} error
80106
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
80107
+ <p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
80108
+ ${this.errorMessage}
80109
+ </p>
80110
+ </${this.helpTextTag}>
80111
+ `
80112
+ }
80292
80113
  `;
80293
80114
  }
80294
80115
 
@@ -80420,7 +80241,7 @@ class AuroInput extends BaseInput {
80420
80241
 
80421
80242
  var colorCss$1$3 = i$4`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
80422
80243
 
80423
- var styleCss$2$2 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{padding:var(--ds-size-200, 1rem)}`;
80244
+ var styleCss$2$2 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
80424
80245
 
80425
80246
  var tokenCss$1 = i$4`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
80426
80247
 
@@ -80815,7 +80636,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$2 {
80815
80636
  }
80816
80637
  };
80817
80638
 
80818
- var formkitVersion$3 = '202606291956';
80639
+ var formkitVersion$3 = '202606291748';
80819
80640
 
80820
80641
  var styleCss$1$3 = i$4`.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}`;
80821
80642
 
@@ -89617,7 +89438,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
89617
89438
  }
89618
89439
  };
89619
89440
 
89620
- var formkitVersion$1 = '202606291956';
89441
+ var formkitVersion$1 = '202606291748';
89621
89442
 
89622
89443
  class AuroElement extends i$2 {
89623
89444
  static get properties() {
@@ -91016,7 +90837,7 @@ class AuroDropdown extends AuroElement {
91016
90837
 
91017
90838
  var colorCss$1 = i$4`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
91018
90839
 
91019
- var styleCss$2 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{padding:var(--ds-size-200, 1rem)}`;
90840
+ var styleCss$2 = i$4`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;padding:var(--ds-size-200, 1rem);padding-top:var(--ds-size-400, 2rem);padding-bottom:0}#headerContainer .titleRow{display:flex;flex-direction:row;justify-content:space-between;gap:var(--ds-size-100, 0.5rem)}#headerContainer .header{max-width:calc(100vw - var(--ds-size-900, 4.5rem));padding-top:var(--ds-size-200, 1rem)}#headerContainer .subheader{width:100%}#closeButton [auro-icon]{--ds-auro-icon-size: var(--ds-size-500, 2.5rem)}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
91020
90841
 
91021
90842
  var tokenCss = i$4`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
91022
90843
 
@@ -91639,7 +91460,7 @@ class AuroHelpText extends i$2 {
91639
91460
  }
91640
91461
  }
91641
91462
 
91642
- var formkitVersion = '202606291956';
91463
+ var formkitVersion = '202606291748';
91643
91464
 
91644
91465
  var styleCss = i$4`.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}`;
91645
91466