@aurodesignsystem-dev/auro-formkit 0.0.0-pr1506.0 → 0.0.0-pr1506.1

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 (45) hide show
  1. package/components/checkbox/demo/customize.min.js +1 -1
  2. package/components/checkbox/demo/getting-started.min.js +1 -1
  3. package/components/checkbox/demo/index.min.js +1 -1
  4. package/components/checkbox/dist/index.js +1 -1
  5. package/components/checkbox/dist/registered.js +1 -1
  6. package/components/combobox/demo/customize.min.js +21 -130
  7. package/components/combobox/demo/getting-started.min.js +21 -130
  8. package/components/combobox/demo/index.min.js +21 -130
  9. package/components/combobox/dist/index.js +21 -130
  10. package/components/combobox/dist/registered.js +21 -130
  11. package/components/counter/demo/customize.min.js +2 -2
  12. package/components/counter/demo/index.min.js +2 -2
  13. package/components/counter/dist/index.js +2 -2
  14. package/components/counter/dist/registered.js +2 -2
  15. package/components/datepicker/demo/customize.min.js +7 -124
  16. package/components/datepicker/demo/index.min.js +7 -124
  17. package/components/datepicker/dist/index.js +7 -124
  18. package/components/datepicker/dist/registered.js +7 -124
  19. package/components/dropdown/demo/customize.min.js +1 -1
  20. package/components/dropdown/demo/getting-started.min.js +1 -1
  21. package/components/dropdown/demo/index.min.js +1 -1
  22. package/components/dropdown/dist/index.js +1 -1
  23. package/components/dropdown/dist/registered.js +1 -1
  24. package/components/form/demo/customize.min.js +39 -382
  25. package/components/form/demo/getting-started.min.js +39 -382
  26. package/components/form/demo/index.min.js +39 -382
  27. package/components/form/demo/registerDemoDeps.min.js +39 -382
  28. package/components/input/demo/customize.min.js +5 -122
  29. package/components/input/demo/getting-started.min.js +5 -122
  30. package/components/input/demo/index.min.js +5 -122
  31. package/components/input/dist/base-input.d.ts +0 -48
  32. package/components/input/dist/index.js +5 -122
  33. package/components/input/dist/registered.js +5 -122
  34. package/components/radio/demo/customize.min.js +1 -1
  35. package/components/radio/demo/getting-started.min.js +1 -1
  36. package/components/radio/demo/index.min.js +1 -1
  37. package/components/radio/dist/index.js +1 -1
  38. package/components/radio/dist/registered.js +1 -1
  39. package/components/select/demo/customize.min.js +2 -2
  40. package/components/select/demo/getting-started.min.js +2 -2
  41. package/components/select/demo/index.min.js +2 -2
  42. package/components/select/dist/index.js +2 -2
  43. package/components/select/dist/registered.js +2 -2
  44. package/custom-elements.json +0 -264
  45. package/package.json +1 -1
@@ -11327,10 +11327,8 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11327
11327
  this.layout = 'classic';
11328
11328
  this.locale = 'en-US';
11329
11329
  this.max = undefined;
11330
- this._maxObject = undefined;
11331
11330
  this.maxLength = undefined;
11332
11331
  this.min = undefined;
11333
- this._minObject = undefined;
11334
11332
  this.minLength = undefined;
11335
11333
  this.required = false;
11336
11334
  this.onDark = false;
@@ -11338,7 +11336,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11338
11336
  this.size = 'lg';
11339
11337
  this.shape = 'classic';
11340
11338
  this.value = undefined;
11341
- this._valueObject = undefined;
11342
11339
 
11343
11340
  this._initializePrivateDefaults();
11344
11341
  }
@@ -11878,7 +11875,7 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11878
11875
  * @returns {Date|undefined}
11879
11876
  */
11880
11877
  get valueObject() {
11881
- return this._valueObject || this._computeDateObjectFallback(this.value);
11878
+ return this.value && dateFormatter$3.isValidDate(this.value) ? dateFormatter$3.stringToDateInstance(this.value) : undefined;
11882
11879
  }
11883
11880
 
11884
11881
  /**
@@ -11886,7 +11883,7 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11886
11883
  * @returns {Date|undefined}
11887
11884
  */
11888
11885
  get minObject() {
11889
- return this._minObject || this._computeDateObjectFallback(this.min);
11886
+ return this.min && dateFormatter$3.isValidDate(this.min) ? dateFormatter$3.stringToDateInstance(this.min) : undefined;
11890
11887
  }
11891
11888
 
11892
11889
  /**
@@ -11894,50 +11891,7 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11894
11891
  * @returns {Date|undefined}
11895
11892
  */
11896
11893
  get maxObject() {
11897
- return this._maxObject || this._computeDateObjectFallback(this.max);
11898
- }
11899
-
11900
- /**
11901
- * Parses a date string into a Date object when the corresponding `_*Object`
11902
- * field hasn't been synced yet by `updated()`. Returns undefined when the
11903
- * input type/format isn't a full date or the string is not a valid date.
11904
- *
11905
- * Why this exists: a parent (datepicker) can call `inputN.validate()` from
11906
- * inside its own `updated()` before this input's `updated()` has run
11907
- * `syncDateValues()` — so `_valueObject`/`_maxObject` are still `undefined`
11908
- * and range checks would otherwise silently no-op (flipping the result to
11909
- * `valid` or `patternMismatch`).
11910
- * @private
11911
- * @param {string|undefined} dateStr - ISO date string from `value`/`min`/`max`.
11912
- * @returns {Date|undefined}
11913
- */
11914
- _computeDateObjectFallback(dateStr) {
11915
- if (!dateStr || !this.util || !this.util.isFullDateFormat(this.type, this.format)) {
11916
- return undefined;
11917
- }
11918
- if (!dateFormatter$3.isValidDate(dateStr)) {
11919
- return undefined;
11920
- }
11921
- return dateFormatter$3.stringToDateInstance(dateStr);
11922
- }
11923
-
11924
- /**
11925
- * Internal setter for readonly date object properties.
11926
- * @private
11927
- * @param {'valueObject'|'minObject'|'maxObject'} propertyName - Public object property name.
11928
- * @param {Date|undefined} propertyValue - Value to assign.
11929
- * @returns {void}
11930
- */
11931
- setDateObjectProperty(propertyName, propertyValue) {
11932
- const internalPropertyName = `_${propertyName}`;
11933
- const previousValue = this[internalPropertyName];
11934
-
11935
- if (previousValue === propertyValue) {
11936
- return;
11937
- }
11938
-
11939
- this[internalPropertyName] = propertyValue;
11940
- this.requestUpdate(propertyName, previousValue);
11894
+ return this.max && dateFormatter$3.isValidDate(this.max) ? dateFormatter$3.stringToDateInstance(this.max) : undefined;
11941
11895
  }
11942
11896
 
11943
11897
  connectedCallback() {
@@ -11966,7 +11920,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11966
11920
  format: this.format
11967
11921
  });
11968
11922
  this.configureDataForType();
11969
- this.syncDateValues();
11970
11923
  }
11971
11924
 
11972
11925
  disconnectedCallback() {
@@ -11996,7 +11949,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
11996
11949
  this.setCustomHelpTextMessage();
11997
11950
  this.configureAutoFormatting();
11998
11951
  this.configureDataForType();
11999
- this.syncDateValues();
12000
11952
  }
12001
11953
 
12002
11954
  /**
@@ -12133,8 +12085,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12133
12085
  this.configureDataForType();
12134
12086
  }
12135
12087
 
12136
- this.syncDateValues(changedProperties);
12137
-
12138
12088
  if (changedProperties.has('value')) {
12139
12089
  if (this.value && this.value.length > 0) {
12140
12090
  this.hasValue = true;
@@ -12205,69 +12155,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12205
12155
  }));
12206
12156
  }
12207
12157
 
12208
-
12209
- /**
12210
- * Synchronizes the ISO string values and Date object representations for date-related properties.
12211
- * This keeps the model and display values aligned when either side changes.
12212
- *
12213
- * When a full date format is in use, this method updates `value`, `min`, and `max` from their corresponding
12214
- * Date objects or vice versa, based on which properties have changed. It only runs when the current configuration
12215
- * represents a full year/month/day date format.
12216
- *
12217
- * @param {Map<string, unknown>|undefined} [changedProperties=undefined] - Optional map of changed properties used to limit which values are synchronized.
12218
- * @returns {void}
12219
- * @private
12220
- */
12221
- syncDateValues(changedProperties = undefined) {
12222
- if (!this.util.isFullDateFormat(this.type, this.format)) {
12223
- return;
12224
- }
12225
-
12226
- this.syncSingleDateValue(changedProperties, 'valueObject', 'value');
12227
- this.syncSingleDateValue(changedProperties, 'minObject', 'min');
12228
- this.syncSingleDateValue(changedProperties, 'maxObject', 'max');
12229
- }
12230
-
12231
- /**
12232
- * Synchronizes one date object/string property pair.
12233
- * @private
12234
- * @param {Map<string, unknown>|undefined} changedProperties - Map of changed properties from Lit.
12235
- * @param {string} objectProperty - Date object property name.
12236
- * @param {string} valueProperty - ISO string property name.
12237
- * @returns {void}
12238
- */
12239
- syncSingleDateValue(changedProperties, objectProperty, valueProperty) {
12240
- const objectPropertyChanged = !changedProperties || changedProperties.has(objectProperty);
12241
-
12242
- // objectProperty wins over valueProperty when both changed
12243
- if (objectPropertyChanged && this[objectProperty]) {
12244
- this[valueProperty] = dateFormatter$3.toISOFormatString(this[objectProperty]);
12245
- return;
12246
- }
12247
-
12248
- const valuePropertyChanged = !changedProperties || changedProperties.has(valueProperty);
12249
- if (!valuePropertyChanged) {
12250
- return;
12251
- }
12252
-
12253
- // when value is newly set to the same ISO string that corresponds to the existing Date object, do not clear the Date object (avoid unnecessary updates)
12254
- if (
12255
- changedProperties &&
12256
- valueProperty === 'value' &&
12257
- changedProperties.get('value') === undefined &&
12258
- this[objectProperty] instanceof Date &&
12259
- this[valueProperty] === dateFormatter$3.toISOFormatString(this[objectProperty])
12260
- ) {
12261
- return;
12262
- }
12263
-
12264
- if (dateFormatter$3.isValidDate(this[valueProperty])) {
12265
- this.setDateObjectProperty(objectProperty, dateFormatter$3.stringToDateInstance(this[valueProperty]));
12266
- } else {
12267
- this.setDateObjectProperty(objectProperty, undefined);
12268
- }
12269
- }
12270
-
12271
12158
  /**
12272
12159
  * Sets up IMasks and logic based on auto-formatting requirements.
12273
12160
  * @private
@@ -12304,9 +12191,7 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12304
12191
  if (
12305
12192
  this.util.isFullDateFormat(this.type, this.format) &&
12306
12193
  this.value &&
12307
- dateFormatter$3.isValidDate(this.value) &&
12308
- this.valueObject instanceof Date &&
12309
- !Number.isNaN(this.valueObject.getTime()) &&
12194
+ this.valueObject &&
12310
12195
  typeof maskOptions.format === 'function'
12311
12196
  ) {
12312
12197
  existingValue = maskOptions.format(this.valueObject);
@@ -12511,7 +12396,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12511
12396
  */
12512
12397
  reset() {
12513
12398
  this.value = undefined;
12514
- this.setDateObjectProperty('valueObject', undefined);
12515
12399
  this.validation.reset(this);
12516
12400
  }
12517
12401
 
@@ -12520,7 +12404,6 @@ let BaseInput$2 = class BaseInput extends AuroElement$6 {
12520
12404
  */
12521
12405
  clear() {
12522
12406
  this.value = undefined;
12523
- this.setDateObjectProperty('valueObject', undefined);
12524
12407
  }
12525
12408
 
12526
12409
  /**
@@ -13049,7 +12932,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$3 {
13049
12932
  }
13050
12933
  };
13051
12934
 
13052
- var formkitVersion$8 = '202606190840';
12935
+ var formkitVersion$8 = '202606192004';
13053
12936
 
13054
12937
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
13055
12938
  // See LICENSE in the project root for license information.
@@ -27169,7 +27052,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$3 {
27169
27052
  }
27170
27053
  };
27171
27054
 
27172
- var formkitVersion$2$1 = '202606190840';
27055
+ var formkitVersion$2$1 = '202606192004';
27173
27056
 
27174
27057
  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}
27175
27058
  `,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}}
@@ -32680,7 +32563,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$3 {
32680
32563
  }
32681
32564
  };
32682
32565
 
32683
- var formkitVersion$1$3 = '202606190840';
32566
+ var formkitVersion$1$3 = '202606192004';
32684
32567
 
32685
32568
  let AuroElement$2$2 = class AuroElement extends i$3 {
32686
32569
  static get properties() {
@@ -44546,10 +44429,8 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
44546
44429
  this.layout = 'classic';
44547
44430
  this.locale = 'en-US';
44548
44431
  this.max = undefined;
44549
- this._maxObject = undefined;
44550
44432
  this.maxLength = undefined;
44551
44433
  this.min = undefined;
44552
- this._minObject = undefined;
44553
44434
  this.minLength = undefined;
44554
44435
  this.required = false;
44555
44436
  this.onDark = false;
@@ -44557,7 +44438,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
44557
44438
  this.size = 'lg';
44558
44439
  this.shape = 'classic';
44559
44440
  this.value = undefined;
44560
- this._valueObject = undefined;
44561
44441
 
44562
44442
  this._initializePrivateDefaults();
44563
44443
  }
@@ -45097,7 +44977,7 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45097
44977
  * @returns {Date|undefined}
45098
44978
  */
45099
44979
  get valueObject() {
45100
- return this._valueObject || this._computeDateObjectFallback(this.value);
44980
+ return this.value && dateFormatter$2.isValidDate(this.value) ? dateFormatter$2.stringToDateInstance(this.value) : undefined;
45101
44981
  }
45102
44982
 
45103
44983
  /**
@@ -45105,7 +44985,7 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45105
44985
  * @returns {Date|undefined}
45106
44986
  */
45107
44987
  get minObject() {
45108
- return this._minObject || this._computeDateObjectFallback(this.min);
44988
+ return this.min && dateFormatter$2.isValidDate(this.min) ? dateFormatter$2.stringToDateInstance(this.min) : undefined;
45109
44989
  }
45110
44990
 
45111
44991
  /**
@@ -45113,50 +44993,7 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45113
44993
  * @returns {Date|undefined}
45114
44994
  */
45115
44995
  get maxObject() {
45116
- return this._maxObject || this._computeDateObjectFallback(this.max);
45117
- }
45118
-
45119
- /**
45120
- * Parses a date string into a Date object when the corresponding `_*Object`
45121
- * field hasn't been synced yet by `updated()`. Returns undefined when the
45122
- * input type/format isn't a full date or the string is not a valid date.
45123
- *
45124
- * Why this exists: a parent (datepicker) can call `inputN.validate()` from
45125
- * inside its own `updated()` before this input's `updated()` has run
45126
- * `syncDateValues()` — so `_valueObject`/`_maxObject` are still `undefined`
45127
- * and range checks would otherwise silently no-op (flipping the result to
45128
- * `valid` or `patternMismatch`).
45129
- * @private
45130
- * @param {string|undefined} dateStr - ISO date string from `value`/`min`/`max`.
45131
- * @returns {Date|undefined}
45132
- */
45133
- _computeDateObjectFallback(dateStr) {
45134
- if (!dateStr || !this.util || !this.util.isFullDateFormat(this.type, this.format)) {
45135
- return undefined;
45136
- }
45137
- if (!dateFormatter$2.isValidDate(dateStr)) {
45138
- return undefined;
45139
- }
45140
- return dateFormatter$2.stringToDateInstance(dateStr);
45141
- }
45142
-
45143
- /**
45144
- * Internal setter for readonly date object properties.
45145
- * @private
45146
- * @param {'valueObject'|'minObject'|'maxObject'} propertyName - Public object property name.
45147
- * @param {Date|undefined} propertyValue - Value to assign.
45148
- * @returns {void}
45149
- */
45150
- setDateObjectProperty(propertyName, propertyValue) {
45151
- const internalPropertyName = `_${propertyName}`;
45152
- const previousValue = this[internalPropertyName];
45153
-
45154
- if (previousValue === propertyValue) {
45155
- return;
45156
- }
45157
-
45158
- this[internalPropertyName] = propertyValue;
45159
- this.requestUpdate(propertyName, previousValue);
44996
+ return this.max && dateFormatter$2.isValidDate(this.max) ? dateFormatter$2.stringToDateInstance(this.max) : undefined;
45160
44997
  }
45161
44998
 
45162
44999
  connectedCallback() {
@@ -45185,7 +45022,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45185
45022
  format: this.format
45186
45023
  });
45187
45024
  this.configureDataForType();
45188
- this.syncDateValues();
45189
45025
  }
45190
45026
 
45191
45027
  disconnectedCallback() {
@@ -45215,7 +45051,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45215
45051
  this.setCustomHelpTextMessage();
45216
45052
  this.configureAutoFormatting();
45217
45053
  this.configureDataForType();
45218
- this.syncDateValues();
45219
45054
  }
45220
45055
 
45221
45056
  /**
@@ -45352,8 +45187,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45352
45187
  this.configureDataForType();
45353
45188
  }
45354
45189
 
45355
- this.syncDateValues(changedProperties);
45356
-
45357
45190
  if (changedProperties.has('value')) {
45358
45191
  if (this.value && this.value.length > 0) {
45359
45192
  this.hasValue = true;
@@ -45424,69 +45257,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45424
45257
  }));
45425
45258
  }
45426
45259
 
45427
-
45428
- /**
45429
- * Synchronizes the ISO string values and Date object representations for date-related properties.
45430
- * This keeps the model and display values aligned when either side changes.
45431
- *
45432
- * When a full date format is in use, this method updates `value`, `min`, and `max` from their corresponding
45433
- * Date objects or vice versa, based on which properties have changed. It only runs when the current configuration
45434
- * represents a full year/month/day date format.
45435
- *
45436
- * @param {Map<string, unknown>|undefined} [changedProperties=undefined] - Optional map of changed properties used to limit which values are synchronized.
45437
- * @returns {void}
45438
- * @private
45439
- */
45440
- syncDateValues(changedProperties = undefined) {
45441
- if (!this.util.isFullDateFormat(this.type, this.format)) {
45442
- return;
45443
- }
45444
-
45445
- this.syncSingleDateValue(changedProperties, 'valueObject', 'value');
45446
- this.syncSingleDateValue(changedProperties, 'minObject', 'min');
45447
- this.syncSingleDateValue(changedProperties, 'maxObject', 'max');
45448
- }
45449
-
45450
- /**
45451
- * Synchronizes one date object/string property pair.
45452
- * @private
45453
- * @param {Map<string, unknown>|undefined} changedProperties - Map of changed properties from Lit.
45454
- * @param {string} objectProperty - Date object property name.
45455
- * @param {string} valueProperty - ISO string property name.
45456
- * @returns {void}
45457
- */
45458
- syncSingleDateValue(changedProperties, objectProperty, valueProperty) {
45459
- const objectPropertyChanged = !changedProperties || changedProperties.has(objectProperty);
45460
-
45461
- // objectProperty wins over valueProperty when both changed
45462
- if (objectPropertyChanged && this[objectProperty]) {
45463
- this[valueProperty] = dateFormatter$2.toISOFormatString(this[objectProperty]);
45464
- return;
45465
- }
45466
-
45467
- const valuePropertyChanged = !changedProperties || changedProperties.has(valueProperty);
45468
- if (!valuePropertyChanged) {
45469
- return;
45470
- }
45471
-
45472
- // when value is newly set to the same ISO string that corresponds to the existing Date object, do not clear the Date object (avoid unnecessary updates)
45473
- if (
45474
- changedProperties &&
45475
- valueProperty === 'value' &&
45476
- changedProperties.get('value') === undefined &&
45477
- this[objectProperty] instanceof Date &&
45478
- this[valueProperty] === dateFormatter$2.toISOFormatString(this[objectProperty])
45479
- ) {
45480
- return;
45481
- }
45482
-
45483
- if (dateFormatter$2.isValidDate(this[valueProperty])) {
45484
- this.setDateObjectProperty(objectProperty, dateFormatter$2.stringToDateInstance(this[valueProperty]));
45485
- } else {
45486
- this.setDateObjectProperty(objectProperty, undefined);
45487
- }
45488
- }
45489
-
45490
45260
  /**
45491
45261
  * Sets up IMasks and logic based on auto-formatting requirements.
45492
45262
  * @private
@@ -45523,9 +45293,7 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45523
45293
  if (
45524
45294
  this.util.isFullDateFormat(this.type, this.format) &&
45525
45295
  this.value &&
45526
- dateFormatter$2.isValidDate(this.value) &&
45527
- this.valueObject instanceof Date &&
45528
- !Number.isNaN(this.valueObject.getTime()) &&
45296
+ this.valueObject &&
45529
45297
  typeof maskOptions.format === 'function'
45530
45298
  ) {
45531
45299
  existingValue = maskOptions.format(this.valueObject);
@@ -45730,7 +45498,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45730
45498
  */
45731
45499
  reset() {
45732
45500
  this.value = undefined;
45733
- this.setDateObjectProperty('valueObject', undefined);
45734
45501
  this.validation.reset(this);
45735
45502
  }
45736
45503
 
@@ -45739,7 +45506,6 @@ let BaseInput$1 = class BaseInput extends AuroElement$1$3 {
45739
45506
  */
45740
45507
  clear() {
45741
45508
  this.value = undefined;
45742
- this.setDateObjectProperty('valueObject', undefined);
45743
45509
  }
45744
45510
 
45745
45511
  /**
@@ -46268,7 +46034,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$3 {
46268
46034
  }
46269
46035
  };
46270
46036
 
46271
- var formkitVersion$7 = '202606190840';
46037
+ var formkitVersion$7 = '202606192004';
46272
46038
 
46273
46039
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
46274
46040
  // See LICENSE in the project root for license information.
@@ -50965,7 +50731,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$3 {
50965
50731
  }
50966
50732
  };
50967
50733
 
50968
- var formkitVersion$1$2 = '202606190840';
50734
+ var formkitVersion$1$2 = '202606192004';
50969
50735
 
50970
50736
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
50971
50737
  // See LICENSE in the project root for license information.
@@ -55293,7 +55059,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$3 {
55293
55059
  }
55294
55060
  };
55295
55061
 
55296
- var formkitVersion$6 = '202606190840';
55062
+ var formkitVersion$6 = '202606192004';
55297
55063
 
55298
55064
  let AuroElement$1$2 = class AuroElement extends i$3 {
55299
55065
  static get properties() {
@@ -59225,7 +58991,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$3 {
59225
58991
  }
59226
58992
  };
59227
58993
 
59228
- var formkitVersion$5 = '202606190840';
58994
+ var formkitVersion$5 = '202606192004';
59229
58995
 
59230
58996
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
59231
58997
  // See LICENSE in the project root for license information.
@@ -60975,7 +60741,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$3 {
60975
60741
  }
60976
60742
  };
60977
60743
 
60978
- var formkitVersion$4 = '202606190840';
60744
+ var formkitVersion$4 = '202606192004';
60979
60745
 
60980
60746
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
60981
60747
  // See LICENSE in the project root for license information.
@@ -66190,7 +65956,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
66190
65956
  }
66191
65957
  };
66192
65958
 
66193
- var formkitVersion$2 = '202606190840';
65959
+ var formkitVersion$2 = '202606192004';
66194
65960
 
66195
65961
  let AuroElement$2$1 = class AuroElement extends i$3 {
66196
65962
  static get properties() {
@@ -78056,10 +77822,8 @@ class BaseInput extends AuroElement$1$1 {
78056
77822
  this.layout = 'classic';
78057
77823
  this.locale = 'en-US';
78058
77824
  this.max = undefined;
78059
- this._maxObject = undefined;
78060
77825
  this.maxLength = undefined;
78061
77826
  this.min = undefined;
78062
- this._minObject = undefined;
78063
77827
  this.minLength = undefined;
78064
77828
  this.required = false;
78065
77829
  this.onDark = false;
@@ -78067,7 +77831,6 @@ class BaseInput extends AuroElement$1$1 {
78067
77831
  this.size = 'lg';
78068
77832
  this.shape = 'classic';
78069
77833
  this.value = undefined;
78070
- this._valueObject = undefined;
78071
77834
 
78072
77835
  this._initializePrivateDefaults();
78073
77836
  }
@@ -78607,7 +78370,7 @@ class BaseInput extends AuroElement$1$1 {
78607
78370
  * @returns {Date|undefined}
78608
78371
  */
78609
78372
  get valueObject() {
78610
- return this._valueObject || this._computeDateObjectFallback(this.value);
78373
+ return this.value && dateFormatter.isValidDate(this.value) ? dateFormatter.stringToDateInstance(this.value) : undefined;
78611
78374
  }
78612
78375
 
78613
78376
  /**
@@ -78615,7 +78378,7 @@ class BaseInput extends AuroElement$1$1 {
78615
78378
  * @returns {Date|undefined}
78616
78379
  */
78617
78380
  get minObject() {
78618
- return this._minObject || this._computeDateObjectFallback(this.min);
78381
+ return this.min && dateFormatter.isValidDate(this.min) ? dateFormatter.stringToDateInstance(this.min) : undefined;
78619
78382
  }
78620
78383
 
78621
78384
  /**
@@ -78623,50 +78386,7 @@ class BaseInput extends AuroElement$1$1 {
78623
78386
  * @returns {Date|undefined}
78624
78387
  */
78625
78388
  get maxObject() {
78626
- return this._maxObject || this._computeDateObjectFallback(this.max);
78627
- }
78628
-
78629
- /**
78630
- * Parses a date string into a Date object when the corresponding `_*Object`
78631
- * field hasn't been synced yet by `updated()`. Returns undefined when the
78632
- * input type/format isn't a full date or the string is not a valid date.
78633
- *
78634
- * Why this exists: a parent (datepicker) can call `inputN.validate()` from
78635
- * inside its own `updated()` before this input's `updated()` has run
78636
- * `syncDateValues()` — so `_valueObject`/`_maxObject` are still `undefined`
78637
- * and range checks would otherwise silently no-op (flipping the result to
78638
- * `valid` or `patternMismatch`).
78639
- * @private
78640
- * @param {string|undefined} dateStr - ISO date string from `value`/`min`/`max`.
78641
- * @returns {Date|undefined}
78642
- */
78643
- _computeDateObjectFallback(dateStr) {
78644
- if (!dateStr || !this.util || !this.util.isFullDateFormat(this.type, this.format)) {
78645
- return undefined;
78646
- }
78647
- if (!dateFormatter.isValidDate(dateStr)) {
78648
- return undefined;
78649
- }
78650
- return dateFormatter.stringToDateInstance(dateStr);
78651
- }
78652
-
78653
- /**
78654
- * Internal setter for readonly date object properties.
78655
- * @private
78656
- * @param {'valueObject'|'minObject'|'maxObject'} propertyName - Public object property name.
78657
- * @param {Date|undefined} propertyValue - Value to assign.
78658
- * @returns {void}
78659
- */
78660
- setDateObjectProperty(propertyName, propertyValue) {
78661
- const internalPropertyName = `_${propertyName}`;
78662
- const previousValue = this[internalPropertyName];
78663
-
78664
- if (previousValue === propertyValue) {
78665
- return;
78666
- }
78667
-
78668
- this[internalPropertyName] = propertyValue;
78669
- this.requestUpdate(propertyName, previousValue);
78389
+ return this.max && dateFormatter.isValidDate(this.max) ? dateFormatter.stringToDateInstance(this.max) : undefined;
78670
78390
  }
78671
78391
 
78672
78392
  connectedCallback() {
@@ -78695,7 +78415,6 @@ class BaseInput extends AuroElement$1$1 {
78695
78415
  format: this.format
78696
78416
  });
78697
78417
  this.configureDataForType();
78698
- this.syncDateValues();
78699
78418
  }
78700
78419
 
78701
78420
  disconnectedCallback() {
@@ -78725,7 +78444,6 @@ class BaseInput extends AuroElement$1$1 {
78725
78444
  this.setCustomHelpTextMessage();
78726
78445
  this.configureAutoFormatting();
78727
78446
  this.configureDataForType();
78728
- this.syncDateValues();
78729
78447
  }
78730
78448
 
78731
78449
  /**
@@ -78862,8 +78580,6 @@ class BaseInput extends AuroElement$1$1 {
78862
78580
  this.configureDataForType();
78863
78581
  }
78864
78582
 
78865
- this.syncDateValues(changedProperties);
78866
-
78867
78583
  if (changedProperties.has('value')) {
78868
78584
  if (this.value && this.value.length > 0) {
78869
78585
  this.hasValue = true;
@@ -78934,69 +78650,6 @@ class BaseInput extends AuroElement$1$1 {
78934
78650
  }));
78935
78651
  }
78936
78652
 
78937
-
78938
- /**
78939
- * Synchronizes the ISO string values and Date object representations for date-related properties.
78940
- * This keeps the model and display values aligned when either side changes.
78941
- *
78942
- * When a full date format is in use, this method updates `value`, `min`, and `max` from their corresponding
78943
- * Date objects or vice versa, based on which properties have changed. It only runs when the current configuration
78944
- * represents a full year/month/day date format.
78945
- *
78946
- * @param {Map<string, unknown>|undefined} [changedProperties=undefined] - Optional map of changed properties used to limit which values are synchronized.
78947
- * @returns {void}
78948
- * @private
78949
- */
78950
- syncDateValues(changedProperties = undefined) {
78951
- if (!this.util.isFullDateFormat(this.type, this.format)) {
78952
- return;
78953
- }
78954
-
78955
- this.syncSingleDateValue(changedProperties, 'valueObject', 'value');
78956
- this.syncSingleDateValue(changedProperties, 'minObject', 'min');
78957
- this.syncSingleDateValue(changedProperties, 'maxObject', 'max');
78958
- }
78959
-
78960
- /**
78961
- * Synchronizes one date object/string property pair.
78962
- * @private
78963
- * @param {Map<string, unknown>|undefined} changedProperties - Map of changed properties from Lit.
78964
- * @param {string} objectProperty - Date object property name.
78965
- * @param {string} valueProperty - ISO string property name.
78966
- * @returns {void}
78967
- */
78968
- syncSingleDateValue(changedProperties, objectProperty, valueProperty) {
78969
- const objectPropertyChanged = !changedProperties || changedProperties.has(objectProperty);
78970
-
78971
- // objectProperty wins over valueProperty when both changed
78972
- if (objectPropertyChanged && this[objectProperty]) {
78973
- this[valueProperty] = dateFormatter.toISOFormatString(this[objectProperty]);
78974
- return;
78975
- }
78976
-
78977
- const valuePropertyChanged = !changedProperties || changedProperties.has(valueProperty);
78978
- if (!valuePropertyChanged) {
78979
- return;
78980
- }
78981
-
78982
- // when value is newly set to the same ISO string that corresponds to the existing Date object, do not clear the Date object (avoid unnecessary updates)
78983
- if (
78984
- changedProperties &&
78985
- valueProperty === 'value' &&
78986
- changedProperties.get('value') === undefined &&
78987
- this[objectProperty] instanceof Date &&
78988
- this[valueProperty] === dateFormatter.toISOFormatString(this[objectProperty])
78989
- ) {
78990
- return;
78991
- }
78992
-
78993
- if (dateFormatter.isValidDate(this[valueProperty])) {
78994
- this.setDateObjectProperty(objectProperty, dateFormatter.stringToDateInstance(this[valueProperty]));
78995
- } else {
78996
- this.setDateObjectProperty(objectProperty, undefined);
78997
- }
78998
- }
78999
-
79000
78653
  /**
79001
78654
  * Sets up IMasks and logic based on auto-formatting requirements.
79002
78655
  * @private
@@ -79033,9 +78686,7 @@ class BaseInput extends AuroElement$1$1 {
79033
78686
  if (
79034
78687
  this.util.isFullDateFormat(this.type, this.format) &&
79035
78688
  this.value &&
79036
- dateFormatter.isValidDate(this.value) &&
79037
- this.valueObject instanceof Date &&
79038
- !Number.isNaN(this.valueObject.getTime()) &&
78689
+ this.valueObject &&
79039
78690
  typeof maskOptions.format === 'function'
79040
78691
  ) {
79041
78692
  existingValue = maskOptions.format(this.valueObject);
@@ -79240,7 +78891,6 @@ class BaseInput extends AuroElement$1$1 {
79240
78891
  */
79241
78892
  reset() {
79242
78893
  this.value = undefined;
79243
- this.setDateObjectProperty('valueObject', undefined);
79244
78894
  this.validation.reset(this);
79245
78895
  }
79246
78896
 
@@ -79249,7 +78899,6 @@ class BaseInput extends AuroElement$1$1 {
79249
78899
  */
79250
78900
  clear() {
79251
78901
  this.value = undefined;
79252
- this.setDateObjectProperty('valueObject', undefined);
79253
78902
  }
79254
78903
 
79255
78904
  /**
@@ -79778,7 +79427,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$3 {
79778
79427
  }
79779
79428
  };
79780
79429
 
79781
- var formkitVersion$1$1 = '202606190840';
79430
+ var formkitVersion$1$1 = '202606192004';
79782
79431
 
79783
79432
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
79784
79433
  // See LICENSE in the project root for license information.
@@ -80899,7 +80548,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$3 {
80899
80548
  }
80900
80549
  };
80901
80550
 
80902
- var formkitVersion$3 = '202606190840';
80551
+ var formkitVersion$3 = '202606192004';
80903
80552
 
80904
80553
  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}`;
80905
80554
 
@@ -82416,11 +82065,15 @@ class AuroCombobox extends AuroElement$3 {
82416
82065
 
82417
82066
  // Announce the selection after the dropdown closes so it isn't
82418
82067
  // overridden by VoiceOver's "collapsed" announcement from aria-expanded.
82068
+ // Skip when there's no selected value (e.g. menu.clearSelection() from
82069
+ // the unmatched-value path), otherwise VoiceOver reads "undefined".
82419
82070
  const selectedValue = this.menu.value;
82420
- const announcementDelay = 300;
82421
- setTimeout(() => {
82422
- announceToScreenReader$1(this._getAnnouncementRoot(), `${selectedValue}, selected`);
82423
- }, announcementDelay);
82071
+ if (selectedValue) {
82072
+ const announcementDelay = 300;
82073
+ setTimeout(() => {
82074
+ announceToScreenReader$1(this._getAnnouncementRoot(), `${selectedValue}, selected`);
82075
+ }, announcementDelay);
82076
+ }
82424
82077
  }
82425
82078
 
82426
82079
  // Programmatic value syncs leave availableOptions stale because
@@ -82841,8 +82494,12 @@ class AuroCombobox extends AuroElement$3 {
82841
82494
  if (this.menu.options.some((opt) => opt.value === this.value) || this.behavior === 'filter') {
82842
82495
  this.setMenuValue(this.value);
82843
82496
  } else {
82844
- if (this.menu.value) {
82845
- this.menu.value = undefined;
82497
+ // Clear menu.value AND menu.optionSelected together. Clearing only
82498
+ // menu.value leaves the previously-selected option element pinned
82499
+ // as menu.optionSelected; a later auroMenu-selectedOption event
82500
+ // would then write its stale .value back into combobox.value.
82501
+ if (this.menu.value || this.menu.optionSelected) {
82502
+ this.menu.clearSelection();
82846
82503
  }
82847
82504
  // Suggestion-mode freeform value: sync the trigger + bib to show it,
82848
82505
  // then refresh the filter once the inputs flush (handleInputValueChange
@@ -89682,7 +89339,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
89682
89339
  }
89683
89340
  };
89684
89341
 
89685
- var formkitVersion$1 = '202606190840';
89342
+ var formkitVersion$1 = '202606192004';
89686
89343
 
89687
89344
  class AuroElement extends i$3 {
89688
89345
  static get properties() {
@@ -91695,7 +91352,7 @@ class AuroHelpText extends i$3 {
91695
91352
  }
91696
91353
  }
91697
91354
 
91698
- var formkitVersion = '202606190840';
91355
+ var formkitVersion = '202606192004';
91699
91356
 
91700
91357
  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}`;
91701
91358