@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
@@ -11497,13 +11497,6 @@ let AuroInputUtilities$3 = class AuroInputUtilities {
11497
11497
  * @returns {string | undefined}
11498
11498
  */
11499
11499
  toFormattedValue(valueObject, format) {
11500
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
11501
- // `format` argument has to fail gracefully rather than throw on
11502
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
11503
- // as "no format → no display value".
11504
- if (!format) {
11505
- return undefined;
11506
- }
11507
11500
  const normalizedFormat = format.toLowerCase();
11508
11501
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
11509
11502
 
@@ -11654,18 +11647,79 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11654
11647
  constructor() {
11655
11648
  super();
11656
11649
 
11657
- // Single-source initialization. Alphabetized so duplicate or stale
11658
- // defaults are immediately obvious on a diff. Every field is assigned
11659
- // exactly once here (previously the constructor + the old
11660
- // `_initializePrivateDefaults` overlapped — both wrote ~14 of the same
11661
- // fields and double-allocated `util` and `validation`, discarding the
11662
- // first instance). `validation` is now allocated exactly once; `util`
11663
- // is seeded here with an en-US default and then rebuilt in
11664
- // `connectedCallback` once the consumer-resolved locale is available,
11665
- // so a parent (datepicker/combobox) calling `validate()` synchronously
11666
- // during its own update cycle sees a populated util instance.
11650
+ this.appearance = "default";
11651
+ this.disabled = false;
11652
+ this.layout = 'classic';
11653
+ this.locale = 'en-US';
11654
+ this.max = undefined;
11655
+ this._maxObject = undefined;
11656
+ this.maxLength = undefined;
11657
+ this.min = undefined;
11658
+ this._minObject = undefined;
11659
+ this.minLength = undefined;
11660
+ this.required = false;
11661
+ this.onDark = false;
11662
+ this.setCustomValidityForType = undefined;
11663
+ this.size = 'lg';
11664
+ this.shape = 'classic';
11665
+ this.value = undefined;
11666
+ this._valueObject = undefined;
11667
+
11668
+ this._initializePrivateDefaults();
11669
+ }
11670
+
11671
+ /**
11672
+ * Internal Defaults.
11673
+ * @private
11674
+ * @returns {void}
11675
+ */
11676
+ _initializePrivateDefaults() {
11667
11677
  this.activeLabel = false;
11668
- /** @private */
11678
+ this.appearance = "default";
11679
+ this.icon = false;
11680
+ this.disabled = false;
11681
+ this.dvInputOnly = false;
11682
+ this.hideLabelVisually = false;
11683
+ this.max = undefined;
11684
+ this.maxLength = undefined;
11685
+ this.min = undefined;
11686
+ this.minLength = undefined;
11687
+ this.noValidate = false;
11688
+ this.onDark = false;
11689
+ this.required = false;
11690
+ this.setCustomValidityForType = undefined;
11691
+
11692
+ // Used for storing raw values returned from input mask.
11693
+ this._rawMaskValue = undefined;
11694
+
11695
+ /**
11696
+ * @private
11697
+ */
11698
+ this.layout = 'classic';
11699
+
11700
+ /**
11701
+ * @private
11702
+ */
11703
+ this.shape = 'classic';
11704
+
11705
+ /**
11706
+ * @private
11707
+ */
11708
+ this.size = 'lg';
11709
+
11710
+ this.touched = false;
11711
+ this.util = new AuroInputUtilities$3({
11712
+ locale: "en-US",
11713
+ format: this.format
11714
+ });
11715
+ this.validation = new AuroFormValidation$7();
11716
+ this.inputIconName = undefined;
11717
+ this.showPassword = false;
11718
+ this.validationCCLength = undefined;
11719
+ this.hasValue = false;
11720
+ this.label = 'Input label is undefined';
11721
+
11722
+
11669
11723
  this.allowedInputTypes = [
11670
11724
  "text",
11671
11725
  "number",
@@ -11674,8 +11728,7 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11674
11728
  "credit-card",
11675
11729
  "tel"
11676
11730
  ];
11677
- this.appearance = "default";
11678
- /** @private */
11731
+ this.icon = false;
11679
11732
  this.dateFormatMap = {
11680
11733
  'mm/dd/yyyy': 'dateMMDDYYYY',
11681
11734
  'dd/mm/yyyy': 'dateDDMMYYYY',
@@ -11692,57 +11745,27 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11692
11745
  'dd/mm': 'dateDDMM',
11693
11746
  'mm/dd': 'dateMMDD'
11694
11747
  };
11695
- this.disabled = false;
11696
- /** @private */
11697
11748
  this.domHandler = new DomHandler$3();
11698
11749
  this.dvInputOnly = false;
11699
11750
  this.hasValue = false;
11700
- this.hideLabelVisually = false;
11701
- this.icon = false;
11702
- /** @private */
11703
11751
  this.inputIconName = undefined;
11704
- /** @private */
11705
11752
  this.label = 'Input label is undefined';
11706
- this.layout = 'classic';
11707
- this.locale = 'en-US';
11708
- this.max = undefined;
11709
- this._maxObject = undefined;
11710
- this.maxLength = undefined;
11711
- this.min = undefined;
11712
- this._minObject = undefined;
11713
- this.minLength = undefined;
11714
11753
  this.noValidate = false;
11715
- this.onDark = false;
11716
- // Raw values returned from the input mask before model normalization.
11717
- this._rawMaskValue = undefined;
11718
- this.required = false;
11719
- this.setCustomValidityForType = undefined;
11720
- // Credit Card is intentionally excluded — its mask manages the cursor
11721
- // itself, and listing it here caused cursor placement issues in Safari.
11722
- /** @private */
11754
+ this._rawMaskValue = undefined; // Used for storing raw values returned from input mask.
11723
11755
  this.setSelectionInputTypes = [
11724
11756
  "text",
11725
11757
  "password",
11726
11758
  "email"
11727
- ];
11728
- this.shape = 'classic';
11729
- /** @private */
11759
+ ]; // Credit Card is not included as this caused cursor placement issues in Safari.
11730
11760
  this.showPassword = false;
11731
- this.size = 'lg';
11732
11761
  this.touched = false;
11733
- /** @private */
11734
11762
  this.uniqueId = new UniqueId$2().create();
11735
- /** @private */
11736
11763
  this.util = new AuroInputUtilities$3({
11737
11764
  locale: this.locale,
11738
11765
  format: this.format
11739
11766
  });
11740
- /** @private */
11741
11767
  this.validation = new AuroFormValidation$7();
11742
- /** @private */
11743
11768
  this.validationCCLength = undefined;
11744
- this.value = undefined;
11745
- this._valueObject = undefined;
11746
11769
  }
11747
11770
 
11748
11771
  // function to define props used within the scope of this component
@@ -12290,15 +12313,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12290
12313
 
12291
12314
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
12292
12315
 
12293
- // Normalize the format token to lowercase so case-mixed values supplied
12294
- // via attribute (e.g. `format="MM/DD/YYYY"`) hit the `dateFormatMap`
12295
- // lookup inside `setCustomHelpTextMessage`. Without this, an uppercase
12296
- // format silently misses the map and leaves `setCustomValidityForType`
12297
- // unset.
12298
- if (this.format) {
12299
- this.format = this.format.toLowerCase();
12300
- }
12301
-
12302
12316
  // use validity message override if declared when initializing the component
12303
12317
  if (this.hasAttribute('setCustomValidity')) {
12304
12318
  this.ValidityMessageOverride = this.setCustomValidity;
@@ -12732,38 +12746,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12732
12746
  this.touched = true;
12733
12747
  this.validation.validate(this);
12734
12748
  }
12735
-
12736
- // Prevents cursor jumping in Safari. Setting `this.value` triggers a Lit
12737
- // update that can re-render the input and reset the native cursor; we
12738
- // capture the caret position before that update commits and restore it
12739
- // via `setSelectionRange` once the update has flushed. Gated on
12740
- // `setSelectionInputTypes` so credit-card (and other masked types whose
12741
- // formatter manages the cursor itself) doesn't get a competing write.
12742
- // Capture the caret position INSIDE the gate — reading `selectionStart`
12743
- // on input types that don't support text selection (number, email in
12744
- // some browsers) throws InvalidStateError, which would crash all input
12745
- // handling. Wrap the read in try/catch belt-and-suspenders even though
12746
- // the gated types currently support it, since the list is a public
12747
- // property a consumer could mutate.
12748
- if (this.setSelectionInputTypes.includes(this.type)) {
12749
- let selectionStart;
12750
- try {
12751
- selectionStart = this.inputElement.selectionStart;
12752
- } catch (error) { // eslint-disable-line no-unused-vars
12753
- return;
12754
- }
12755
- if (typeof selectionStart !== 'number') {
12756
- return;
12757
- }
12758
- this.updateComplete.then(() => {
12759
- try {
12760
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
12761
- } catch (error) { // eslint-disable-line no-unused-vars
12762
- // Some input types (number/email in certain UAs) throw on
12763
- // setSelectionRange; swallow and let the native cursor stand.
12764
- }
12765
- });
12766
- }
12767
12749
  }
12768
12750
 
12769
12751
  /**
@@ -13390,7 +13372,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$3 {
13390
13372
  }
13391
13373
  };
13392
13374
 
13393
- var formkitVersion$8 = '202606291956';
13375
+ var formkitVersion$8 = '202606291748';
13394
13376
 
13395
13377
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
13396
13378
  // See LICENSE in the project root for license information.
@@ -13893,7 +13875,6 @@ let AuroInput$2 = class AuroInput extends BaseInput$2 {
13893
13875
  <${this.buttonTag}
13894
13876
  @click="${this.handleClickShowPassword}"
13895
13877
  appearance="${this.onDark ? 'inverse' : this.appearance}"
13896
- aria-pressed="${this.showPassword ? 'true' : 'false'}"
13897
13878
  class="notificationBtn passwordBtn"
13898
13879
  shape="circle"
13899
13880
  size="sm"
@@ -13967,29 +13948,25 @@ let AuroInput$2 = class AuroInput extends BaseInput$2 {
13967
13948
  * @returns {html} - Returns HTML for the help text and error message.
13968
13949
  */
13969
13950
  renderHtmlHelpText() {
13970
- // Single `<p>` with stable identity across validity transitions —
13971
- // previously two distinct templates (valid vs invalid) caused Lit to
13972
- // replace the node entirely on a flip, and VoiceOver wouldn't
13973
- // re-announce because the live-region element it was watching had been
13974
- // removed and a new one inserted. Keeping one node means the `role`,
13975
- // `aria-live`, and text content all change in-place, which AT does
13976
- // observe and announce.
13977
- const isError = this.validity && this.validity !== 'valid';
13978
13951
  return u$c`
13979
- <${this.helpTextTag}
13980
- appearance="${this.onDark ? 'inverse' : this.appearance}"
13981
- ?error=${isError}>
13982
- <p
13983
- id="${this.uniqueId}"
13984
- part="helpText"
13985
- role="${o$4(isError ? 'alert' : undefined)}"
13986
- aria-live="${o$4(isError ? 'assertive' : undefined)}">
13987
- ${isError
13988
- ? this.errorMessage
13989
- : u$c`<slot name="helpText">${this.getHelpText()}</slot>`
13990
- }
13991
- </p>
13992
- </${this.helpTextTag}>
13952
+ ${!this.validity || this.validity === undefined || this.validity === 'valid'
13953
+ ? u$c`
13954
+ <${this.helpTextTag}
13955
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
13956
+ <p id="${this.uniqueId}" part="helpText">
13957
+ <slot name="helpText">${this.getHelpText()}</slot>
13958
+ </p>
13959
+ </${this.helpTextTag}>
13960
+ `
13961
+ : u$c`
13962
+ <${this.helpTextTag} error
13963
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
13964
+ <p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
13965
+ ${this.errorMessage}
13966
+ </p>
13967
+ </${this.helpTextTag}>
13968
+ `
13969
+ }
13993
13970
  `;
13994
13971
  }
13995
13972
 
@@ -24630,13 +24607,6 @@ let AuroInputUtilities$1 = class AuroInputUtilities {
24630
24607
  * @returns {string | undefined}
24631
24608
  */
24632
24609
  toFormattedValue(valueObject, format) {
24633
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
24634
- // `format` argument has to fail gracefully rather than throw on
24635
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
24636
- // as "no format → no display value".
24637
- if (!format) {
24638
- return undefined;
24639
- }
24640
24610
  const normalizedFormat = format.toLowerCase();
24641
24611
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
24642
24612
 
@@ -24896,9 +24866,9 @@ var snowflakeStyle = i$6`:host([layout*=snowflake]) [auro-input]{flex:1;text-ali
24896
24866
 
24897
24867
  var snowflakeColors = i$6`:host([layout=snowflake]) [auro-dropdown]:not(:is([error],.hasFocus)){--ds-auro-dropdown-trigger-border-color: transparent}`;
24898
24868
 
24899
- var styleCss$7$1 = i$6`.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}`;
24869
+ var styleCss$7$1 = i$6`.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}`;
24900
24870
 
24901
- var colorCss$7$1 = i$6`.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)}}`;
24871
+ var colorCss$7$1 = i$6`.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)}}`;
24902
24872
 
24903
24873
  var styleCss$6$1 = i$6`: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)}`;
24904
24874
 
@@ -27249,7 +27219,7 @@ class CalendarUtilities {
27249
27219
 
27250
27220
  var colorCss$4$2 = i$6`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
27251
27221
 
27252
- var styleCss$4$3 = i$6`#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)}`;
27222
+ var styleCss$4$3 = i$6`#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)}`;
27253
27223
 
27254
27224
  var tokenCss$4 = i$6`: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)}`;
27255
27225
 
@@ -27644,7 +27614,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
27644
27614
  }
27645
27615
  };
27646
27616
 
27647
- var formkitVersion$2$1 = '202606291956';
27617
+ var formkitVersion$2$1 = '202606291748';
27648
27618
 
27649
27619
  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$2`${s$3(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$6`: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}
27650
27620
  `,u$4$2=i$6`.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}}
@@ -27749,15 +27719,6 @@ class AuroCalendar extends RangeDatepicker {
27749
27719
  */
27750
27720
  this.activeCellDate = null;
27751
27721
 
27752
- /**
27753
- * Cached reference to the active cell host. Set by setActiveCell and
27754
- * refreshed by scrollToActiveCell when its cache check misses (stale
27755
- * or missing). Lets scrollToActiveCell skip a full cell scan on each
27756
- * arrow key.
27757
- * @private
27758
- */
27759
- this._activeCell = null;
27760
-
27761
27722
  /**
27762
27723
  * Whether the #calendarGrid wrapper currently has focus.
27763
27724
  * Used to determine whether the visualFocus ring should be shown.
@@ -28269,9 +28230,6 @@ class AuroCalendar extends RangeDatepicker {
28269
28230
  });
28270
28231
 
28271
28232
  this.activeCellDate = date;
28272
- // Cache so scrollToActiveCell can scroll without re-querying all cells
28273
- // on every arrow keypress.
28274
- this._activeCell = newActiveCell;
28275
28233
 
28276
28234
  // Apply activeCell ring only when the grid currently has focus.
28277
28235
  if (newActiveCell && this._gridHasFocus) {
@@ -28729,9 +28687,6 @@ class AuroCalendar extends RangeDatepicker {
28729
28687
  this.handleCellFocused({ detail: { date: fallback.day.date } });
28730
28688
  }
28731
28689
  }
28732
- // Scroll AFTER the cross-month setActiveCell so the freshly
28733
- // activated cell is what gets scrolled into view.
28734
- this.scrollToActiveCell();
28735
28690
  // Re-focus grid wrapper after month change re-render
28736
28691
  this.focusActiveCell();
28737
28692
  });
@@ -28772,9 +28727,6 @@ class AuroCalendar extends RangeDatepicker {
28772
28727
  this.handleCellFocused({ detail: { date: nearest.day.date } });
28773
28728
  }
28774
28729
  }
28775
- // Scroll AFTER the cross-month setActiveCell so the freshly
28776
- // activated cell is what gets scrolled into view.
28777
- this.scrollToActiveCell();
28778
28730
  this.focusActiveCell();
28779
28731
  });
28780
28732
  }
@@ -28809,6 +28761,7 @@ class AuroCalendar extends RangeDatepicker {
28809
28761
  const targetCell = allCells[targetIndex];
28810
28762
  this.setActiveCell(targetCell.day.date);
28811
28763
  this.scrollToActiveCell();
28764
+ this.focusActiveCell();
28812
28765
  } else if (direction === 'next' && this.showNextMonthBtn) {
28813
28766
  // Navigate to next month and focus the computed next date.
28814
28767
  // Using the target date (fromDate + 1 day) instead of cells[0]
@@ -28829,6 +28782,7 @@ class AuroCalendar extends RangeDatepicker {
28829
28782
  const target = cells.find((cell) => cell.day && cell.day.date === nextTs);
28830
28783
  if (target) {
28831
28784
  this.setActiveCell(target.day.date);
28785
+ this.focusActiveCell();
28832
28786
  } else {
28833
28787
  // Same nearest-by-date fallback handleGridKeyDown uses — direct
28834
28788
  // `cells[length - 1]` would land on the end of the new month,
@@ -28836,10 +28790,9 @@ class AuroCalendar extends RangeDatepicker {
28836
28790
  const fallback = this.pickNearestCell(cells, nextTs, 'next');
28837
28791
  if (fallback) {
28838
28792
  this.setActiveCell(fallback.day.date);
28793
+ this.focusActiveCell();
28839
28794
  }
28840
28795
  }
28841
- this.scrollToActiveCell();
28842
- this.focusActiveCell();
28843
28796
  });
28844
28797
  } else if (direction === 'prev' && this.showPrevMonthBtn) {
28845
28798
  // Navigate to previous month and focus the computed previous date.
@@ -28858,6 +28811,7 @@ class AuroCalendar extends RangeDatepicker {
28858
28811
  const target = cells.find((cell) => cell.day && cell.day.date === prevTs);
28859
28812
  if (target) {
28860
28813
  this.setActiveCell(target.day.date);
28814
+ this.focusActiveCell();
28861
28815
  } else {
28862
28816
  // Same nearest-by-date fallback handleGridKeyDown uses — direct
28863
28817
  // `cells[0]` would land on the start of the previous month, far
@@ -28865,10 +28819,9 @@ class AuroCalendar extends RangeDatepicker {
28865
28819
  const fallback = this.pickNearestCell(cells, prevTs, 'prev');
28866
28820
  if (fallback) {
28867
28821
  this.setActiveCell(fallback.day.date);
28822
+ this.focusActiveCell();
28868
28823
  }
28869
28824
  }
28870
- this.scrollToActiveCell();
28871
- this.focusActiveCell();
28872
28825
  });
28873
28826
  }
28874
28827
  } else if (key === 'ArrowDown' || key === 'ArrowUp') {
@@ -28901,6 +28854,7 @@ class AuroCalendar extends RangeDatepicker {
28901
28854
  const target = cells.find((cell) => cell.day && cell.day.date === targetDate);
28902
28855
  if (target) {
28903
28856
  this.setActiveCell(target.day.date);
28857
+ this.focusActiveCell();
28904
28858
  } else {
28905
28859
  // Same nearest-by-date fallback handleGridKeyDown uses — the
28906
28860
  // old direction-based `cells[0]`/`cells[length-1]` clamp
@@ -28908,10 +28862,9 @@ class AuroCalendar extends RangeDatepicker {
28908
28862
  const nearest = this.pickNearestCell(cells, targetDate, navDirection);
28909
28863
  if (nearest) {
28910
28864
  this.setActiveCell(nearest.day.date);
28865
+ this.focusActiveCell();
28911
28866
  }
28912
28867
  }
28913
- this.scrollToActiveCell();
28914
- this.focusActiveCell();
28915
28868
  });
28916
28869
  }
28917
28870
  }
@@ -29112,28 +29065,7 @@ class AuroCalendar extends RangeDatepicker {
29112
29065
  }
29113
29066
 
29114
29067
  /**
29115
- * Scrolls the calendar so the active cell is visible.
29116
- *
29117
- * Walks the flat tree (rendered, slot-aware) outward from the active
29118
- * cell's button and calls `scrollBy` on every vertically-scrollable
29119
- * ancestor by whatever delta still separates the cell from that
29120
- * ancestor's viewport. Native `scrollIntoView` is not used because the
29121
- * cell sits inside multiple nested scroll containers (the dropdown bib's
29122
- * `<dialog>`, the bibtemplate's `#bodyContainer`) and the algorithm only
29123
- * scrolls one of them on its own, leaving the cell short of the
29124
- * viewport in mobile fullscreen.
29125
- *
29126
- * Uses `behavior: 'auto'` (the spec's universally-supported non-animated
29127
- * value) so each `scrollBy` resolves synchronously and the next
29128
- * iteration's `getBoundingClientRect` reads post-scroll positions
29129
- * accurately. This also satisfies `prefers-reduced-motion` users — the
29130
- * scroll containers do not set CSS `scroll-behavior: smooth`, so `auto`
29131
- * is effectively instant.
29132
- *
29133
- * The active cell is looked up from the cache populated by
29134
- * `setActiveCell`. On a cache miss (stale or absent) the cache is
29135
- * refreshed from a single full scan so subsequent calls stay on the
29136
- * fast path.
29068
+ * Scrolls the calendar to ensure the month containing the active cell is visible.
29137
29069
  * @private
29138
29070
  * @returns {void}
29139
29071
  */
@@ -29142,69 +29074,16 @@ class AuroCalendar extends RangeDatepicker {
29142
29074
  return;
29143
29075
  }
29144
29076
 
29145
- // Prefer the cell cached by setActiveCell so arrow-key navigation does
29146
- // not rebuild the full cell list on every keypress. Fall back to a
29147
- // lookup when the cache is stale (e.g. detached after month re-render)
29148
- // or absent (scrollToActiveCell called without a prior setActiveCell);
29149
- // refresh the cache on the fallback path so a subsequent call reuses it.
29150
- const activeDate = this.activeCellDate;
29151
- const cached = this._activeCell;
29152
- const cacheFresh = cached && cached.isConnected && cached.day && cached.day.date === activeDate;
29153
- let activeCell = null;
29154
- if (cacheFresh) {
29155
- activeCell = cached;
29156
- } else {
29157
- activeCell = this.getAllFocusableCells().find((cell) => cell.day && cell.day.date === activeDate);
29158
- this._activeCell = activeCell || null;
29159
- }
29160
- if (!activeCell) {
29161
- return;
29162
- }
29163
-
29164
- // Scroll the button inside the cell — it has concrete dimensions,
29165
- // which avoids quirks when the cell host has display: inline / contents
29166
- // / flex-without-explicit-size.
29167
- const target = activeCell._cachedButton ||
29168
- activeCell.shadowRoot?.querySelector('button.day') ||
29169
- activeCell;
29170
-
29171
- // parentNode follows the authored DOM tree and steps over shadow roots
29172
- // via slot projection. A slotted element's visual parent is its
29173
- // assignedSlot's parent (inside the host's shadow tree), not the host
29174
- // itself. Without this hop, the walk skips right past #bodyContainer
29175
- // and <dialog> and finds no scrollable ancestor at all.
29176
- const flatParent = (current) => {
29177
- if (current.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
29178
- return current.host || null;
29179
- }
29180
- if (current.assignedSlot) {
29181
- return current.assignedSlot.parentNode;
29182
- }
29183
- return current.parentNode;
29184
- };
29077
+ const date = new Date(this.activeCellDate * 1000);
29078
+ const month = date.getMonth() + 1;
29079
+ const year = date.getFullYear();
29080
+ const selector = `#month-${month}-${year}`;
29081
+ const monthElem = this.shadowRoot.querySelector(selector);
29185
29082
 
29186
- let node = flatParent(target);
29187
- while (node && node !== document && node !== window) {
29188
- if (node.nodeType === Node.ELEMENT_NODE) {
29189
- const { overflowY } = window.getComputedStyle(node);
29190
- if (overflowY === 'auto' || overflowY === 'scroll') {
29191
- const targetRect = target.getBoundingClientRect();
29192
- const scrollerRect = node.getBoundingClientRect();
29193
- let delta = 0;
29194
- if (targetRect.top < scrollerRect.top) {
29195
- delta = targetRect.top - scrollerRect.top;
29196
- } else if (targetRect.bottom > scrollerRect.bottom) {
29197
- delta = targetRect.bottom - scrollerRect.bottom;
29198
- }
29199
- if (delta !== 0) {
29200
- node.scrollBy({
29201
- top: delta,
29202
- behavior: 'auto'
29203
- });
29204
- }
29205
- }
29206
- }
29207
- node = flatParent(node);
29083
+ if (monthElem) {
29084
+ const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
29085
+ monthElem.scrollIntoView({ block: 'nearest',
29086
+ behavior: prefersReducedMotion ? 'instant' : 'smooth' });
29208
29087
  }
29209
29088
  }
29210
29089
 
@@ -33393,7 +33272,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
33393
33272
  }
33394
33273
  };
33395
33274
 
33396
- var formkitVersion$1$3 = '202606291956';
33275
+ var formkitVersion$1$3 = '202606291748';
33397
33276
 
33398
33277
  let AuroElement$2$2 = class AuroElement extends i$3 {
33399
33278
  static get properties() {
@@ -45112,13 +44991,6 @@ let AuroInputUtilities$2 = class AuroInputUtilities {
45112
44991
  * @returns {string | undefined}
45113
44992
  */
45114
44993
  toFormattedValue(valueObject, format) {
45115
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
45116
- // `format` argument has to fail gracefully rather than throw on
45117
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
45118
- // as "no format → no display value".
45119
- if (!format) {
45120
- return undefined;
45121
- }
45122
44994
  const normalizedFormat = format.toLowerCase();
45123
44995
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
45124
44996
 
@@ -45269,18 +45141,79 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45269
45141
  constructor() {
45270
45142
  super();
45271
45143
 
45272
- // Single-source initialization. Alphabetized so duplicate or stale
45273
- // defaults are immediately obvious on a diff. Every field is assigned
45274
- // exactly once here (previously the constructor + the old
45275
- // `_initializePrivateDefaults` overlapped — both wrote ~14 of the same
45276
- // fields and double-allocated `util` and `validation`, discarding the
45277
- // first instance). `validation` is now allocated exactly once; `util`
45278
- // is seeded here with an en-US default and then rebuilt in
45279
- // `connectedCallback` once the consumer-resolved locale is available,
45280
- // so a parent (datepicker/combobox) calling `validate()` synchronously
45281
- // during its own update cycle sees a populated util instance.
45144
+ this.appearance = "default";
45145
+ this.disabled = false;
45146
+ this.layout = 'classic';
45147
+ this.locale = 'en-US';
45148
+ this.max = undefined;
45149
+ this._maxObject = undefined;
45150
+ this.maxLength = undefined;
45151
+ this.min = undefined;
45152
+ this._minObject = undefined;
45153
+ this.minLength = undefined;
45154
+ this.required = false;
45155
+ this.onDark = false;
45156
+ this.setCustomValidityForType = undefined;
45157
+ this.size = 'lg';
45158
+ this.shape = 'classic';
45159
+ this.value = undefined;
45160
+ this._valueObject = undefined;
45161
+
45162
+ this._initializePrivateDefaults();
45163
+ }
45164
+
45165
+ /**
45166
+ * Internal Defaults.
45167
+ * @private
45168
+ * @returns {void}
45169
+ */
45170
+ _initializePrivateDefaults() {
45282
45171
  this.activeLabel = false;
45283
- /** @private */
45172
+ this.appearance = "default";
45173
+ this.icon = false;
45174
+ this.disabled = false;
45175
+ this.dvInputOnly = false;
45176
+ this.hideLabelVisually = false;
45177
+ this.max = undefined;
45178
+ this.maxLength = undefined;
45179
+ this.min = undefined;
45180
+ this.minLength = undefined;
45181
+ this.noValidate = false;
45182
+ this.onDark = false;
45183
+ this.required = false;
45184
+ this.setCustomValidityForType = undefined;
45185
+
45186
+ // Used for storing raw values returned from input mask.
45187
+ this._rawMaskValue = undefined;
45188
+
45189
+ /**
45190
+ * @private
45191
+ */
45192
+ this.layout = 'classic';
45193
+
45194
+ /**
45195
+ * @private
45196
+ */
45197
+ this.shape = 'classic';
45198
+
45199
+ /**
45200
+ * @private
45201
+ */
45202
+ this.size = 'lg';
45203
+
45204
+ this.touched = false;
45205
+ this.util = new AuroInputUtilities$2({
45206
+ locale: "en-US",
45207
+ format: this.format
45208
+ });
45209
+ this.validation = new AuroFormValidation$6();
45210
+ this.inputIconName = undefined;
45211
+ this.showPassword = false;
45212
+ this.validationCCLength = undefined;
45213
+ this.hasValue = false;
45214
+ this.label = 'Input label is undefined';
45215
+
45216
+
45284
45217
  this.allowedInputTypes = [
45285
45218
  "text",
45286
45219
  "number",
@@ -45289,8 +45222,7 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45289
45222
  "credit-card",
45290
45223
  "tel"
45291
45224
  ];
45292
- this.appearance = "default";
45293
- /** @private */
45225
+ this.icon = false;
45294
45226
  this.dateFormatMap = {
45295
45227
  'mm/dd/yyyy': 'dateMMDDYYYY',
45296
45228
  'dd/mm/yyyy': 'dateDDMMYYYY',
@@ -45307,57 +45239,27 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45307
45239
  'dd/mm': 'dateDDMM',
45308
45240
  'mm/dd': 'dateMMDD'
45309
45241
  };
45310
- this.disabled = false;
45311
- /** @private */
45312
45242
  this.domHandler = new DomHandler$2();
45313
45243
  this.dvInputOnly = false;
45314
45244
  this.hasValue = false;
45315
- this.hideLabelVisually = false;
45316
- this.icon = false;
45317
- /** @private */
45318
45245
  this.inputIconName = undefined;
45319
- /** @private */
45320
45246
  this.label = 'Input label is undefined';
45321
- this.layout = 'classic';
45322
- this.locale = 'en-US';
45323
- this.max = undefined;
45324
- this._maxObject = undefined;
45325
- this.maxLength = undefined;
45326
- this.min = undefined;
45327
- this._minObject = undefined;
45328
- this.minLength = undefined;
45329
45247
  this.noValidate = false;
45330
- this.onDark = false;
45331
- // Raw values returned from the input mask before model normalization.
45332
- this._rawMaskValue = undefined;
45333
- this.required = false;
45334
- this.setCustomValidityForType = undefined;
45335
- // Credit Card is intentionally excluded — its mask manages the cursor
45336
- // itself, and listing it here caused cursor placement issues in Safari.
45337
- /** @private */
45248
+ this._rawMaskValue = undefined; // Used for storing raw values returned from input mask.
45338
45249
  this.setSelectionInputTypes = [
45339
45250
  "text",
45340
45251
  "password",
45341
45252
  "email"
45342
- ];
45343
- this.shape = 'classic';
45344
- /** @private */
45253
+ ]; // Credit Card is not included as this caused cursor placement issues in Safari.
45345
45254
  this.showPassword = false;
45346
- this.size = 'lg';
45347
45255
  this.touched = false;
45348
- /** @private */
45349
45256
  this.uniqueId = new UniqueId$1().create();
45350
- /** @private */
45351
45257
  this.util = new AuroInputUtilities$2({
45352
45258
  locale: this.locale,
45353
45259
  format: this.format
45354
45260
  });
45355
- /** @private */
45356
45261
  this.validation = new AuroFormValidation$6();
45357
- /** @private */
45358
45262
  this.validationCCLength = undefined;
45359
- this.value = undefined;
45360
- this._valueObject = undefined;
45361
45263
  }
45362
45264
 
45363
45265
  // function to define props used within the scope of this component
@@ -45905,15 +45807,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45905
45807
 
45906
45808
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
45907
45809
 
45908
- // Normalize the format token to lowercase so case-mixed values supplied
45909
- // via attribute (e.g. `format="MM/DD/YYYY"`) hit the `dateFormatMap`
45910
- // lookup inside `setCustomHelpTextMessage`. Without this, an uppercase
45911
- // format silently misses the map and leaves `setCustomValidityForType`
45912
- // unset.
45913
- if (this.format) {
45914
- this.format = this.format.toLowerCase();
45915
- }
45916
-
45917
45810
  // use validity message override if declared when initializing the component
45918
45811
  if (this.hasAttribute('setCustomValidity')) {
45919
45812
  this.ValidityMessageOverride = this.setCustomValidity;
@@ -46347,38 +46240,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
46347
46240
  this.touched = true;
46348
46241
  this.validation.validate(this);
46349
46242
  }
46350
-
46351
- // Prevents cursor jumping in Safari. Setting `this.value` triggers a Lit
46352
- // update that can re-render the input and reset the native cursor; we
46353
- // capture the caret position before that update commits and restore it
46354
- // via `setSelectionRange` once the update has flushed. Gated on
46355
- // `setSelectionInputTypes` so credit-card (and other masked types whose
46356
- // formatter manages the cursor itself) doesn't get a competing write.
46357
- // Capture the caret position INSIDE the gate — reading `selectionStart`
46358
- // on input types that don't support text selection (number, email in
46359
- // some browsers) throws InvalidStateError, which would crash all input
46360
- // handling. Wrap the read in try/catch belt-and-suspenders even though
46361
- // the gated types currently support it, since the list is a public
46362
- // property a consumer could mutate.
46363
- if (this.setSelectionInputTypes.includes(this.type)) {
46364
- let selectionStart;
46365
- try {
46366
- selectionStart = this.inputElement.selectionStart;
46367
- } catch (error) { // eslint-disable-line no-unused-vars
46368
- return;
46369
- }
46370
- if (typeof selectionStart !== 'number') {
46371
- return;
46372
- }
46373
- this.updateComplete.then(() => {
46374
- try {
46375
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
46376
- } catch (error) { // eslint-disable-line no-unused-vars
46377
- // Some input types (number/email in certain UAs) throw on
46378
- // setSelectionRange; swallow and let the native cursor stand.
46379
- }
46380
- });
46381
- }
46382
46243
  }
46383
46244
 
46384
46245
  /**
@@ -47005,7 +46866,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$3 {
47005
46866
  }
47006
46867
  };
47007
46868
 
47008
- var formkitVersion$7 = '202606291956';
46869
+ var formkitVersion$7 = '202606291748';
47009
46870
 
47010
46871
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
47011
46872
  // See LICENSE in the project root for license information.
@@ -47508,7 +47369,6 @@ let AuroInput$1 = class AuroInput extends BaseInput$1 {
47508
47369
  <${this.buttonTag}
47509
47370
  @click="${this.handleClickShowPassword}"
47510
47371
  appearance="${this.onDark ? 'inverse' : this.appearance}"
47511
- aria-pressed="${this.showPassword ? 'true' : 'false'}"
47512
47372
  class="notificationBtn passwordBtn"
47513
47373
  shape="circle"
47514
47374
  size="sm"
@@ -47582,29 +47442,25 @@ let AuroInput$1 = class AuroInput extends BaseInput$1 {
47582
47442
  * @returns {html} - Returns HTML for the help text and error message.
47583
47443
  */
47584
47444
  renderHtmlHelpText() {
47585
- // Single `<p>` with stable identity across validity transitions —
47586
- // previously two distinct templates (valid vs invalid) caused Lit to
47587
- // replace the node entirely on a flip, and VoiceOver wouldn't
47588
- // re-announce because the live-region element it was watching had been
47589
- // removed and a new one inserted. Keeping one node means the `role`,
47590
- // `aria-live`, and text content all change in-place, which AT does
47591
- // observe and announce.
47592
- const isError = this.validity && this.validity !== 'valid';
47593
47445
  return u$c`
47594
- <${this.helpTextTag}
47595
- appearance="${this.onDark ? 'inverse' : this.appearance}"
47596
- ?error=${isError}>
47597
- <p
47598
- id="${this.uniqueId}"
47599
- part="helpText"
47600
- role="${o$4(isError ? 'alert' : undefined)}"
47601
- aria-live="${o$4(isError ? 'assertive' : undefined)}">
47602
- ${isError
47603
- ? this.errorMessage
47604
- : u$c`<slot name="helpText">${this.getHelpText()}</slot>`
47605
- }
47606
- </p>
47607
- </${this.helpTextTag}>
47446
+ ${!this.validity || this.validity === undefined || this.validity === 'valid'
47447
+ ? u$c`
47448
+ <${this.helpTextTag}
47449
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
47450
+ <p id="${this.uniqueId}" part="helpText">
47451
+ <slot name="helpText">${this.getHelpText()}</slot>
47452
+ </p>
47453
+ </${this.helpTextTag}>
47454
+ `
47455
+ : u$c`
47456
+ <${this.helpTextTag} error
47457
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
47458
+ <p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
47459
+ ${this.errorMessage}
47460
+ </p>
47461
+ </${this.helpTextTag}>
47462
+ `
47463
+ }
47608
47464
  `;
47609
47465
  }
47610
47466
 
@@ -47751,15 +47607,6 @@ function formatISODate(isoStr, format) {
47751
47607
  try {
47752
47608
  const date = dateFormatter$2.stringToDateInstance(isoStr);
47753
47609
 
47754
- // `stringToDateInstance` returns an `Invalid Date` for malformed strings
47755
- // and `null` for non-string input — it does NOT throw. Without this
47756
- // guard, `getFullYear()`/`getMonth()`/`getDate()` on an Invalid Date
47757
- // yield `NaN`, and `String(NaN).padStart(4, '0')` produces literals
47758
- // like "0NaN/0NaN/0NaN" instead of `undefined`.
47759
- if (!(date instanceof Date) || Number.isNaN(date.getTime())) {
47760
- return undefined;
47761
- }
47762
-
47763
47610
  const year = String(date.getFullYear()).padStart(4, '0');
47764
47611
  const month = String(date.getMonth() + 1).padStart(2, '0');
47765
47612
  const day = String(date.getDate()).padStart(2, '0');
@@ -47770,10 +47617,7 @@ function formatISODate(isoStr, format) {
47770
47617
  replace(/mm/iu, month).
47771
47618
  replace(/dd/iu, day);
47772
47619
  } catch (err) {
47773
- // Defensive: the Date-returning path is guarded above, but `parseDate`
47774
- // (inside `stringToDateInstance`) could throw on pathological input
47775
- // future-library-versions might introduce. Treat any thrown error as
47776
- // "not a valid date" and return undefined.
47620
+ // If the input string is not a valid date, return undefined
47777
47621
  return undefined;
47778
47622
  }
47779
47623
  }
@@ -49618,8 +49462,8 @@ class AuroDatePicker extends AuroElement$5 {
49618
49462
  // we need to wait until the next frame to ensure the calendar is fully rendered
49619
49463
  // and the area we're trying to scroll to is present in the DOM.
49620
49464
  setTimeout(() => {
49465
+ this.calendar.scrollMonthIntoView(this.calendarFocusDate);
49621
49466
  this.forceScrollOnNextMobileCalendarRender = false;
49622
- this.calendar.scrollToActiveCell();
49623
49467
  }, 0);
49624
49468
  }
49625
49469
  }, { signal });
@@ -51877,7 +51721,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
51877
51721
  }
51878
51722
  };
51879
51723
 
51880
- var formkitVersion$1$2 = '202606291956';
51724
+ var formkitVersion$1$2 = '202606291748';
51881
51725
 
51882
51726
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
51883
51727
  // See LICENSE in the project root for license information.
@@ -56205,7 +56049,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
56205
56049
  }
56206
56050
  };
56207
56051
 
56208
- var formkitVersion$6 = '202606291956';
56052
+ var formkitVersion$6 = '202606291748';
56209
56053
 
56210
56054
  let AuroElement$1$2 = class AuroElement extends i$3 {
56211
56055
  static get properties() {
@@ -57604,7 +57448,7 @@ let AuroDropdown$2 = class AuroDropdown extends AuroElement$1$2 {
57604
57448
 
57605
57449
  var colorCss$1$6 = i$6`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
57606
57450
 
57607
- var styleCss$1$6 = i$6`#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)}`;
57451
+ var styleCss$1$6 = i$6`#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)}`;
57608
57452
 
57609
57453
  var tokenCss$3 = i$6`: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)}`;
57610
57454
 
@@ -60153,7 +59997,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
60153
59997
  }
60154
59998
  };
60155
59999
 
60156
- var formkitVersion$5 = '202606291956';
60000
+ var formkitVersion$5 = '202606291748';
60157
60001
 
60158
60002
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
60159
60003
  // See LICENSE in the project root for license information.
@@ -61903,7 +61747,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
61903
61747
  }
61904
61748
  };
61905
61749
 
61906
- var formkitVersion$4 = '202606291956';
61750
+ var formkitVersion$4 = '202606291748';
61907
61751
 
61908
61752
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
61909
61753
  // See LICENSE in the project root for license information.
@@ -67118,7 +66962,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
67118
66962
  }
67119
66963
  };
67120
66964
 
67121
- var formkitVersion$2 = '202606291956';
66965
+ var formkitVersion$2 = '202606291748';
67122
66966
 
67123
66967
  let AuroElement$2$1 = class AuroElement extends i$3 {
67124
66968
  static get properties() {
@@ -78837,13 +78681,6 @@ class AuroInputUtilities {
78837
78681
  * @returns {string | undefined}
78838
78682
  */
78839
78683
  toFormattedValue(valueObject, format) {
78840
- // Exposed publicly via `AuroInputUtil.toFormattedValue`, so a missing
78841
- // `format` argument has to fail gracefully rather than throw on
78842
- // `format.toLowerCase()`. Treat any falsy value (undefined, null, '')
78843
- // as "no format → no display value".
78844
- if (!format) {
78845
- return undefined;
78846
- }
78847
78684
  const normalizedFormat = format.toLowerCase();
78848
78685
  const maskOptions = this.getMaskOptions('date', normalizedFormat);
78849
78686
 
@@ -78994,18 +78831,79 @@ class BaseInput extends AuroElement$1$1 {
78994
78831
  constructor() {
78995
78832
  super();
78996
78833
 
78997
- // Single-source initialization. Alphabetized so duplicate or stale
78998
- // defaults are immediately obvious on a diff. Every field is assigned
78999
- // exactly once here (previously the constructor + the old
79000
- // `_initializePrivateDefaults` overlapped — both wrote ~14 of the same
79001
- // fields and double-allocated `util` and `validation`, discarding the
79002
- // first instance). `validation` is now allocated exactly once; `util`
79003
- // is seeded here with an en-US default and then rebuilt in
79004
- // `connectedCallback` once the consumer-resolved locale is available,
79005
- // so a parent (datepicker/combobox) calling `validate()` synchronously
79006
- // during its own update cycle sees a populated util instance.
78834
+ this.appearance = "default";
78835
+ this.disabled = false;
78836
+ this.layout = 'classic';
78837
+ this.locale = 'en-US';
78838
+ this.max = undefined;
78839
+ this._maxObject = undefined;
78840
+ this.maxLength = undefined;
78841
+ this.min = undefined;
78842
+ this._minObject = undefined;
78843
+ this.minLength = undefined;
78844
+ this.required = false;
78845
+ this.onDark = false;
78846
+ this.setCustomValidityForType = undefined;
78847
+ this.size = 'lg';
78848
+ this.shape = 'classic';
78849
+ this.value = undefined;
78850
+ this._valueObject = undefined;
78851
+
78852
+ this._initializePrivateDefaults();
78853
+ }
78854
+
78855
+ /**
78856
+ * Internal Defaults.
78857
+ * @private
78858
+ * @returns {void}
78859
+ */
78860
+ _initializePrivateDefaults() {
79007
78861
  this.activeLabel = false;
79008
- /** @private */
78862
+ this.appearance = "default";
78863
+ this.icon = false;
78864
+ this.disabled = false;
78865
+ this.dvInputOnly = false;
78866
+ this.hideLabelVisually = false;
78867
+ this.max = undefined;
78868
+ this.maxLength = undefined;
78869
+ this.min = undefined;
78870
+ this.minLength = undefined;
78871
+ this.noValidate = false;
78872
+ this.onDark = false;
78873
+ this.required = false;
78874
+ this.setCustomValidityForType = undefined;
78875
+
78876
+ // Used for storing raw values returned from input mask.
78877
+ this._rawMaskValue = undefined;
78878
+
78879
+ /**
78880
+ * @private
78881
+ */
78882
+ this.layout = 'classic';
78883
+
78884
+ /**
78885
+ * @private
78886
+ */
78887
+ this.shape = 'classic';
78888
+
78889
+ /**
78890
+ * @private
78891
+ */
78892
+ this.size = 'lg';
78893
+
78894
+ this.touched = false;
78895
+ this.util = new AuroInputUtilities({
78896
+ locale: "en-US",
78897
+ format: this.format
78898
+ });
78899
+ this.validation = new AuroFormValidation$2();
78900
+ this.inputIconName = undefined;
78901
+ this.showPassword = false;
78902
+ this.validationCCLength = undefined;
78903
+ this.hasValue = false;
78904
+ this.label = 'Input label is undefined';
78905
+
78906
+
79009
78907
  this.allowedInputTypes = [
79010
78908
  "text",
79011
78909
  "number",
@@ -79014,8 +78912,7 @@ class BaseInput extends AuroElement$1$1 {
79014
78912
  "credit-card",
79015
78913
  "tel"
79016
78914
  ];
79017
- this.appearance = "default";
79018
- /** @private */
78915
+ this.icon = false;
79019
78916
  this.dateFormatMap = {
79020
78917
  'mm/dd/yyyy': 'dateMMDDYYYY',
79021
78918
  'dd/mm/yyyy': 'dateDDMMYYYY',
@@ -79032,57 +78929,27 @@ class BaseInput extends AuroElement$1$1 {
79032
78929
  'dd/mm': 'dateDDMM',
79033
78930
  'mm/dd': 'dateMMDD'
79034
78931
  };
79035
- this.disabled = false;
79036
- /** @private */
79037
78932
  this.domHandler = new DomHandler();
79038
78933
  this.dvInputOnly = false;
79039
78934
  this.hasValue = false;
79040
- this.hideLabelVisually = false;
79041
- this.icon = false;
79042
- /** @private */
79043
78935
  this.inputIconName = undefined;
79044
- /** @private */
79045
78936
  this.label = 'Input label is undefined';
79046
- this.layout = 'classic';
79047
- this.locale = 'en-US';
79048
- this.max = undefined;
79049
- this._maxObject = undefined;
79050
- this.maxLength = undefined;
79051
- this.min = undefined;
79052
- this._minObject = undefined;
79053
- this.minLength = undefined;
79054
78937
  this.noValidate = false;
79055
- this.onDark = false;
79056
- // Raw values returned from the input mask before model normalization.
79057
- this._rawMaskValue = undefined;
79058
- this.required = false;
79059
- this.setCustomValidityForType = undefined;
79060
- // Credit Card is intentionally excluded — its mask manages the cursor
79061
- // itself, and listing it here caused cursor placement issues in Safari.
79062
- /** @private */
78938
+ this._rawMaskValue = undefined; // Used for storing raw values returned from input mask.
79063
78939
  this.setSelectionInputTypes = [
79064
78940
  "text",
79065
78941
  "password",
79066
78942
  "email"
79067
- ];
79068
- this.shape = 'classic';
79069
- /** @private */
78943
+ ]; // Credit Card is not included as this caused cursor placement issues in Safari.
79070
78944
  this.showPassword = false;
79071
- this.size = 'lg';
79072
78945
  this.touched = false;
79073
- /** @private */
79074
78946
  this.uniqueId = new UniqueId().create();
79075
- /** @private */
79076
78947
  this.util = new AuroInputUtilities({
79077
78948
  locale: this.locale,
79078
78949
  format: this.format
79079
78950
  });
79080
- /** @private */
79081
78951
  this.validation = new AuroFormValidation$2();
79082
- /** @private */
79083
78952
  this.validationCCLength = undefined;
79084
- this.value = undefined;
79085
- this._valueObject = undefined;
79086
78953
  }
79087
78954
 
79088
78955
  // function to define props used within the scope of this component
@@ -79630,15 +79497,6 @@ class BaseInput extends AuroElement$1$1 {
79630
79497
 
79631
79498
  this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
79632
79499
 
79633
- // Normalize the format token to lowercase so case-mixed values supplied
79634
- // via attribute (e.g. `format="MM/DD/YYYY"`) hit the `dateFormatMap`
79635
- // lookup inside `setCustomHelpTextMessage`. Without this, an uppercase
79636
- // format silently misses the map and leaves `setCustomValidityForType`
79637
- // unset.
79638
- if (this.format) {
79639
- this.format = this.format.toLowerCase();
79640
- }
79641
-
79642
79500
  // use validity message override if declared when initializing the component
79643
79501
  if (this.hasAttribute('setCustomValidity')) {
79644
79502
  this.ValidityMessageOverride = this.setCustomValidity;
@@ -80072,38 +79930,6 @@ class BaseInput extends AuroElement$1$1 {
80072
79930
  this.touched = true;
80073
79931
  this.validation.validate(this);
80074
79932
  }
80075
-
80076
- // Prevents cursor jumping in Safari. Setting `this.value` triggers a Lit
80077
- // update that can re-render the input and reset the native cursor; we
80078
- // capture the caret position before that update commits and restore it
80079
- // via `setSelectionRange` once the update has flushed. Gated on
80080
- // `setSelectionInputTypes` so credit-card (and other masked types whose
80081
- // formatter manages the cursor itself) doesn't get a competing write.
80082
- // Capture the caret position INSIDE the gate — reading `selectionStart`
80083
- // on input types that don't support text selection (number, email in
80084
- // some browsers) throws InvalidStateError, which would crash all input
80085
- // handling. Wrap the read in try/catch belt-and-suspenders even though
80086
- // the gated types currently support it, since the list is a public
80087
- // property a consumer could mutate.
80088
- if (this.setSelectionInputTypes.includes(this.type)) {
80089
- let selectionStart;
80090
- try {
80091
- selectionStart = this.inputElement.selectionStart;
80092
- } catch (error) { // eslint-disable-line no-unused-vars
80093
- return;
80094
- }
80095
- if (typeof selectionStart !== 'number') {
80096
- return;
80097
- }
80098
- this.updateComplete.then(() => {
80099
- try {
80100
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
80101
- } catch (error) { // eslint-disable-line no-unused-vars
80102
- // Some input types (number/email in certain UAs) throw on
80103
- // setSelectionRange; swallow and let the native cursor stand.
80104
- }
80105
- });
80106
- }
80107
79933
  }
80108
79934
 
80109
79935
  /**
@@ -80730,7 +80556,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
80730
80556
  }
80731
80557
  };
80732
80558
 
80733
- var formkitVersion$1$1 = '202606291956';
80559
+ var formkitVersion$1$1 = '202606291748';
80734
80560
 
80735
80561
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
80736
80562
  // See LICENSE in the project root for license information.
@@ -81233,7 +81059,6 @@ class AuroInput extends BaseInput {
81233
81059
  <${this.buttonTag}
81234
81060
  @click="${this.handleClickShowPassword}"
81235
81061
  appearance="${this.onDark ? 'inverse' : this.appearance}"
81236
- aria-pressed="${this.showPassword ? 'true' : 'false'}"
81237
81062
  class="notificationBtn passwordBtn"
81238
81063
  shape="circle"
81239
81064
  size="sm"
@@ -81307,29 +81132,25 @@ class AuroInput extends BaseInput {
81307
81132
  * @returns {html} - Returns HTML for the help text and error message.
81308
81133
  */
81309
81134
  renderHtmlHelpText() {
81310
- // Single `<p>` with stable identity across validity transitions —
81311
- // previously two distinct templates (valid vs invalid) caused Lit to
81312
- // replace the node entirely on a flip, and VoiceOver wouldn't
81313
- // re-announce because the live-region element it was watching had been
81314
- // removed and a new one inserted. Keeping one node means the `role`,
81315
- // `aria-live`, and text content all change in-place, which AT does
81316
- // observe and announce.
81317
- const isError = this.validity && this.validity !== 'valid';
81318
81135
  return u$c`
81319
- <${this.helpTextTag}
81320
- appearance="${this.onDark ? 'inverse' : this.appearance}"
81321
- ?error=${isError}>
81322
- <p
81323
- id="${this.uniqueId}"
81324
- part="helpText"
81325
- role="${o$4(isError ? 'alert' : undefined)}"
81326
- aria-live="${o$4(isError ? 'assertive' : undefined)}">
81327
- ${isError
81328
- ? this.errorMessage
81329
- : u$c`<slot name="helpText">${this.getHelpText()}</slot>`
81330
- }
81331
- </p>
81332
- </${this.helpTextTag}>
81136
+ ${!this.validity || this.validity === undefined || this.validity === 'valid'
81137
+ ? u$c`
81138
+ <${this.helpTextTag}
81139
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
81140
+ <p id="${this.uniqueId}" part="helpText">
81141
+ <slot name="helpText">${this.getHelpText()}</slot>
81142
+ </p>
81143
+ </${this.helpTextTag}>
81144
+ `
81145
+ : u$c`
81146
+ <${this.helpTextTag} error
81147
+ appearance="${this.onDark ? 'inverse' : this.appearance}">
81148
+ <p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
81149
+ ${this.errorMessage}
81150
+ </p>
81151
+ </${this.helpTextTag}>
81152
+ `
81153
+ }
81333
81154
  `;
81334
81155
  }
81335
81156
 
@@ -81461,7 +81282,7 @@ class AuroInput extends BaseInput {
81461
81282
 
81462
81283
  var colorCss$1$3 = i$6`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
81463
81284
 
81464
- var styleCss$2$2 = i$6`#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)}`;
81285
+ var styleCss$2$2 = i$6`#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)}`;
81465
81286
 
81466
81287
  var tokenCss$1 = i$6`: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)}`;
81467
81288
 
@@ -81856,7 +81677,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
81856
81677
  }
81857
81678
  };
81858
81679
 
81859
- var formkitVersion$3 = '202606291956';
81680
+ var formkitVersion$3 = '202606291748';
81860
81681
 
81861
81682
  var styleCss$1$3 = i$6`.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}`;
81862
81683
 
@@ -90658,7 +90479,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
90658
90479
  }
90659
90480
  };
90660
90481
 
90661
- var formkitVersion$1 = '202606291956';
90482
+ var formkitVersion$1 = '202606291748';
90662
90483
 
90663
90484
  class AuroElement extends i$3 {
90664
90485
  static get properties() {
@@ -92057,7 +91878,7 @@ class AuroDropdown extends AuroElement {
92057
91878
 
92058
91879
  var colorCss$1 = i$6`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
92059
91880
 
92060
- var styleCss$2 = i$6`#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)}`;
91881
+ var styleCss$2 = i$6`#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)}`;
92061
91882
 
92062
91883
  var tokenCss = i$6`: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)}`;
92063
91884
 
@@ -92680,7 +92501,7 @@ class AuroHelpText extends i$3 {
92680
92501
  }
92681
92502
  }
92682
92503
 
92683
- var formkitVersion = '202606291956';
92504
+ var formkitVersion = '202606291748';
92684
92505
 
92685
92506
  var styleCss = i$6`.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}`;
92686
92507