@aurodesignsystem-dev/auro-formkit 0.0.0-pr1145.1 → 0.0.0-pr1156.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 (32) hide show
  1. package/components/checkbox/demo/api.min.js +2 -66
  2. package/components/checkbox/demo/index.min.js +2 -66
  3. package/components/checkbox/dist/index.js +2 -66
  4. package/components/checkbox/dist/registered.js +2 -66
  5. package/components/combobox/demo/api.md +37 -229
  6. package/components/combobox/demo/api.min.js +6 -155
  7. package/components/combobox/demo/index.md +0 -104
  8. package/components/combobox/demo/index.min.js +6 -155
  9. package/components/combobox/dist/auro-combobox.d.ts +1 -18
  10. package/components/combobox/dist/index.js +6 -155
  11. package/components/combobox/dist/registered.js +6 -155
  12. package/components/counter/demo/api.min.js +2 -66
  13. package/components/counter/demo/index.min.js +2 -66
  14. package/components/counter/dist/index.js +2 -66
  15. package/components/counter/dist/registered.js +2 -66
  16. package/components/datepicker/demo/api.min.js +5 -133
  17. package/components/datepicker/demo/index.min.js +5 -133
  18. package/components/datepicker/dist/index.js +5 -133
  19. package/components/datepicker/dist/registered.js +5 -133
  20. package/components/input/demo/api.min.js +3 -67
  21. package/components/input/demo/index.min.js +3 -67
  22. package/components/input/dist/index.js +3 -67
  23. package/components/input/dist/registered.js +3 -67
  24. package/components/radio/demo/api.min.js +2 -66
  25. package/components/radio/demo/index.min.js +2 -66
  26. package/components/radio/dist/index.js +2 -66
  27. package/components/radio/dist/registered.js +2 -66
  28. package/components/select/demo/api.min.js +3 -67
  29. package/components/select/demo/index.min.js +3 -67
  30. package/components/select/dist/index.js +3 -67
  31. package/components/select/dist/registered.js +3 -67
  32. package/package.json +1 -1
@@ -2128,52 +2128,6 @@ class AuroFormValidation {
2128
2128
  message: e => e.getAttribute('setCustomValidityRangeUnderflow') || ''
2129
2129
  }
2130
2130
  ]
2131
- },
2132
- combobox: {
2133
- filter: [
2134
- {
2135
- check: (e) => {
2136
-
2137
- // Guard Clause: If the behavior is not 'filter', skip this validation
2138
- if (e.behavior !== 'filter') return false;
2139
-
2140
- // Get the current input value
2141
- const currentInputValue = e.input.value;
2142
-
2143
- // Skip validation if the input has no value
2144
- if (!currentInputValue) return false;
2145
-
2146
- /**
2147
- * Let's check if the option selected and combobox value match.
2148
- */
2149
-
2150
- // Guard Clause: If there is no option selected fail the validation
2151
- if (!e.optionSelected) return true;
2152
-
2153
- // Guard Clause: If there is no value fail the validation
2154
- if (!e.value) return true;
2155
-
2156
- // Guard Clause: If the selected option's value doesn't match the input value fail the validation
2157
- if (e.optionSelected.value !== e.value) return true;
2158
-
2159
- /**
2160
- * Now let's make sure the user hasn't change the value in the input after selecting an option.
2161
- * This is to make sure there's no user confusion if they select an option but then change the value to something else.
2162
- */
2163
-
2164
- // Guard Clause: If the current input value doesn't match the option selected value fail the validation
2165
- if (currentInputValue && currentInputValue !== e.optionSelected.value) return true;
2166
-
2167
- // Guard Clause: If the current input value doesn't match the combobox value fail the validation
2168
- if (currentInputValue && currentInputValue !== e.value) return true;
2169
-
2170
- // If all the checks passed the validation passes
2171
- return false;
2172
- },
2173
- validity: 'valueMissing',
2174
- message: e => e.getAttribute('setCustomValidityValueMissingFilter') || e.setCustomValidity || ''
2175
- }
2176
- ]
2177
2131
  }
2178
2132
  };
2179
2133
 
@@ -2182,8 +2136,6 @@ class AuroFormValidation {
2182
2136
  elementType = 'input';
2183
2137
  } else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
2184
2138
  elementType = 'counter';
2185
- } else if (this.runtimeUtils.elementMatch(elem, 'auro-combobox')) {
2186
- elementType = 'combobox';
2187
2139
  }
2188
2140
 
2189
2141
  if (elementType) {
@@ -2362,15 +2314,6 @@ class AuroFormValidation {
2362
2314
  }
2363
2315
  }
2364
2316
 
2365
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
2366
-
2367
- if (isCombobox) {
2368
-
2369
- if (!elem.persistInput || elem.behavior === "filter") {
2370
- hasValue = elem.input.value?.length > 0;
2371
- }
2372
- }
2373
-
2374
2317
  if (!hasValue && elem.required && elem.touched) {
2375
2318
  elem.validity = 'valueMissing';
2376
2319
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
@@ -2379,11 +2322,6 @@ class AuroFormValidation {
2379
2322
  this.validateElementAttributes(elem);
2380
2323
  } else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
2381
2324
  this.validateElementAttributes(elem);
2382
- } else if (isCombobox) {
2383
- this.validateElementAttributes(elem);
2384
-
2385
- // Don't run extra validation for cases where the combobox is not being used as a filter
2386
- validationShouldRun = elem.behavior !== 'filter';
2387
2325
  }
2388
2326
  }
2389
2327
 
@@ -2391,8 +2329,8 @@ class AuroFormValidation {
2391
2329
 
2392
2330
  const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
2393
2331
 
2394
- // Don't reset combobox validity if persistInput is set since we can't use the input value to validate
2395
- if (!isCombobox || isCombobox && !elem.persistInput) {
2332
+ // Don't reset combobox validity if persistValue is set since we can't use the input value to validate
2333
+ if (!isCombobox || isCombobox && !elem.persistValue) {
2396
2334
 
2397
2335
  // run validation on all inputs since we're going to use them to set the validity of this component
2398
2336
  this.auroInputElements.forEach(input => input.validate());
@@ -2465,8 +2403,6 @@ class AuroFormValidation {
2465
2403
  if (input.validationMessage.length > 0) {
2466
2404
  elem.errorMessage = input.validationMessage;
2467
2405
  }
2468
- } else if (this.runtimeUtils.elementMatch(elem, 'auro-combobox') && elem.errorMessage === '') {
2469
- elem.errorMessage = elem.input?.inputElement?.validationMessage;
2470
2406
  } else if (this.inputElements?.length > 0 && elem.errorMessage === '') {
2471
2407
  const firstInput = this.inputElements[0];
2472
2408
 
@@ -859,52 +859,6 @@ let AuroFormValidation$1 = class AuroFormValidation {
859
859
  message: e => e.getAttribute('setCustomValidityRangeUnderflow') || ''
860
860
  }
861
861
  ]
862
- },
863
- combobox: {
864
- filter: [
865
- {
866
- check: (e) => {
867
-
868
- // Guard Clause: If the behavior is not 'filter', skip this validation
869
- if (e.behavior !== 'filter') return false;
870
-
871
- // Get the current input value
872
- const currentInputValue = e.input.value;
873
-
874
- // Skip validation if the input has no value
875
- if (!currentInputValue) return false;
876
-
877
- /**
878
- * Let's check if the option selected and combobox value match.
879
- */
880
-
881
- // Guard Clause: If there is no option selected fail the validation
882
- if (!e.optionSelected) return true;
883
-
884
- // Guard Clause: If there is no value fail the validation
885
- if (!e.value) return true;
886
-
887
- // Guard Clause: If the selected option's value doesn't match the input value fail the validation
888
- if (e.optionSelected.value !== e.value) return true;
889
-
890
- /**
891
- * Now let's make sure the user hasn't change the value in the input after selecting an option.
892
- * This is to make sure there's no user confusion if they select an option but then change the value to something else.
893
- */
894
-
895
- // Guard Clause: If the current input value doesn't match the option selected value fail the validation
896
- if (currentInputValue && currentInputValue !== e.optionSelected.value) return true;
897
-
898
- // Guard Clause: If the current input value doesn't match the combobox value fail the validation
899
- if (currentInputValue && currentInputValue !== e.value) return true;
900
-
901
- // If all the checks passed the validation passes
902
- return false;
903
- },
904
- validity: 'valueMissing',
905
- message: e => e.getAttribute('setCustomValidityValueMissingFilter') || e.setCustomValidity || ''
906
- }
907
- ]
908
862
  }
909
863
  };
910
864
 
@@ -913,8 +867,6 @@ let AuroFormValidation$1 = class AuroFormValidation {
913
867
  elementType = 'input';
914
868
  } else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
915
869
  elementType = 'counter';
916
- } else if (this.runtimeUtils.elementMatch(elem, 'auro-combobox')) {
917
- elementType = 'combobox';
918
870
  }
919
871
 
920
872
  if (elementType) {
@@ -1093,15 +1045,6 @@ let AuroFormValidation$1 = class AuroFormValidation {
1093
1045
  }
1094
1046
  }
1095
1047
 
1096
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
1097
-
1098
- if (isCombobox) {
1099
-
1100
- if (!elem.persistInput || elem.behavior === "filter") {
1101
- hasValue = elem.input.value?.length > 0;
1102
- }
1103
- }
1104
-
1105
1048
  if (!hasValue && elem.required && elem.touched) {
1106
1049
  elem.validity = 'valueMissing';
1107
1050
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
@@ -1110,11 +1053,6 @@ let AuroFormValidation$1 = class AuroFormValidation {
1110
1053
  this.validateElementAttributes(elem);
1111
1054
  } else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
1112
1055
  this.validateElementAttributes(elem);
1113
- } else if (isCombobox) {
1114
- this.validateElementAttributes(elem);
1115
-
1116
- // Don't run extra validation for cases where the combobox is not being used as a filter
1117
- validationShouldRun = elem.behavior !== 'filter';
1118
1056
  }
1119
1057
  }
1120
1058
 
@@ -1122,8 +1060,8 @@ let AuroFormValidation$1 = class AuroFormValidation {
1122
1060
 
1123
1061
  const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
1124
1062
 
1125
- // Don't reset combobox validity if persistInput is set since we can't use the input value to validate
1126
- if (!isCombobox || isCombobox && !elem.persistInput) {
1063
+ // Don't reset combobox validity if persistValue is set since we can't use the input value to validate
1064
+ if (!isCombobox || isCombobox && !elem.persistValue) {
1127
1065
 
1128
1066
  // run validation on all inputs since we're going to use them to set the validity of this component
1129
1067
  this.auroInputElements.forEach(input => input.validate());
@@ -1196,8 +1134,6 @@ let AuroFormValidation$1 = class AuroFormValidation {
1196
1134
  if (input.validationMessage.length > 0) {
1197
1135
  elem.errorMessage = input.validationMessage;
1198
1136
  }
1199
- } else if (this.runtimeUtils.elementMatch(elem, 'auro-combobox') && elem.errorMessage === '') {
1200
- elem.errorMessage = elem.input?.inputElement?.validationMessage;
1201
1137
  } else if (this.inputElements?.length > 0 && elem.errorMessage === '') {
1202
1138
  const firstInput = this.inputElements[0];
1203
1139
 
@@ -19097,7 +19033,7 @@ var emphasizedStyleCss = i$2`:host([layout*=emphasized][shape*=pill]:not([layout
19097
19033
 
19098
19034
  var emphasizedColorCss = i$2`.layout-emphasized:focus-within,.layout-emphasized-left:focus-within,.layout-emphasized-right:focus-within{--auro-input-border-color: var(--ds-auro-input-border-color)}`;
19099
19035
 
19100
- var snowflakeStyleCss = i$2`:root{--ds-advanced-color-button-flat-text: #676767;--ds-advanced-color-button-flat-text-disabled: #d0d0d0;--ds-advanced-color-button-flat-text-hover: #525252;--ds-advanced-color-button-flat-text-inverse: #ffffff;--ds-advanced-color-button-flat-text-inverse-disabled: #7e8894;--ds-advanced-color-button-flat-text-inverse-hover: #adadad;--ds-advanced-color-button-ghost-background-hover: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-ghost-background-inverse-hover: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-ghost-text: #01426a;--ds-advanced-color-button-ghost-text-disabled: #d0d0d0;--ds-advanced-color-button-ghost-text-inverse: #ffffff;--ds-advanced-color-button-ghost-text-inverse-disabled: #7e8894;--ds-advanced-color-button-primary-background: #01426a;--ds-advanced-color-button-primary-background-disabled: #acc9e2;--ds-advanced-color-button-primary-background-hover: #00274a;--ds-advanced-color-button-primary-background-inactive: #cfe0ef;--ds-advanced-color-button-primary-background-inactive-hover: #89b2d4;--ds-advanced-color-button-primary-background-inverse: #ffffff;--ds-advanced-color-button-primary-background-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-background-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-border: #01426a;--ds-advanced-color-button-primary-border-disabled: #acc9e2;--ds-advanced-color-button-primary-border-hover: #00274a;--ds-advanced-color-button-primary-border-inverse: #ffffff;--ds-advanced-color-button-primary-border-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-border-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-text: #ffffff;--ds-advanced-color-button-primary-text-disabled: #ffffff;--ds-advanced-color-button-primary-text-inverse: #01426a;--ds-advanced-color-button-secondary-background: #ffffff;--ds-advanced-color-button-secondary-background-disabled: #f7f7f7;--ds-advanced-color-button-secondary-background-hover: #f2f2f2;--ds-advanced-color-button-secondary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-secondary-border: #01426a;--ds-advanced-color-button-secondary-border-hover: #00274a;--ds-advanced-color-button-secondary-border-disabled: #cfe0ef;--ds-advanced-color-button-secondary-border-inverse: #ffffff;--ds-advanced-color-button-secondary-border-inverse-disabled: #dddddd;--ds-advanced-color-button-secondary-text: #01426a;--ds-advanced-color-button-secondary-text-hover: #00274a;--ds-advanced-color-button-secondary-text-inverse: #ffffff;--ds-advanced-color-button-tertiary-background: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-tertiary-background-hover: rgba(0, 0, 0, 0.1);--ds-advanced-color-button-tertiary-background-inverse: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-tertiary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-tertiary-text: #01426a;--ds-advanced-color-button-tertiary-text-hover: #00274a;--ds-advanced-color-button-tertiary-text-inverse: #ffffff;--ds-advanced-color-accents-accent1: #b2d583;--ds-advanced-color-accents-accent1-bold: #92c450;--ds-advanced-color-accents-accent1-muted: #deedca;--ds-advanced-color-accents-accent2: #fad362;--ds-advanced-color-accents-accent2-bold: #f2ba14;--ds-advanced-color-accents-accent2-muted: #fde398;--ds-advanced-color-accents-accent3: #63beff;--ds-advanced-color-accents-accent3-bold: #0074ca;--ds-advanced-color-accents-accent3-muted: #aedeff;--ds-advanced-color-accents-accent4: #feb17a;--ds-advanced-color-accents-accent4-bold: #fb7f24;--ds-advanced-color-accents-accent4-muted: #ffe2cf;--ds-advanced-color-accents-transparency: rgba(0, 0, 0, 0.1);--ds-advanced-color-accents-transparency-inverse: rgba(255, 255, 255, 0.2);--ds-advanced-color-avatar-gradient-bottom: #cfe0ef;--ds-advanced-color-avatar-gradient-top: #6899c6;--ds-advanced-color-boolean-disabled-inverse: #7e8894;--ds-advanced-color-boolean-error: #e31f26;--ds-advanced-color-boolean-error-hover: #b1161c;--ds-advanced-color-boolean-error-inverse: #f9a4a8;--ds-advanced-color-boolean-error-inverse-hover: #f15f65;--ds-advanced-color-boolean-indicator: #ffffff;--ds-advanced-color-boolean-indicator-inverse: #00274a;--ds-advanced-color-boolean-isfalse: #ffffff;--ds-advanced-color-boolean-isfalse-border: #585e67;--ds-advanced-color-boolean-isfalse-border-inverse: #ffffff;--ds-advanced-color-boolean-isfalse-hover: #f2f2f2;--ds-advanced-color-boolean-isfalse-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-boolean-isfalse-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-boolean-istrue: #01426a;--ds-advanced-color-boolean-istrue-hover: #00274a;--ds-advanced-color-boolean-istrue-inverse: #ffffff;--ds-advanced-color-boolean-istrue-inverse-hover: rgba(255, 255, 255, 0.7);--ds-advanced-color-dropdown-emphasized-background: #00274A1a;--ds-advanced-color-dropdown-emphasized-background-hover: #00274A33;--ds-advanced-color-flightline-indicator: #00274a;--ds-advanced-color-flightline-line: #00274a;--ds-advanced-color-hyperlink-text: #2875b5;--ds-advanced-color-hyperlink-text-hover: #01426a;--ds-advanced-color-hyperlink-text-inverse: #ffffff;--ds-advanced-color-hyperlink-text-inverse-hover: #ebf3f9;--ds-advanced-color-shared-background: #ffffff;--ds-advanced-color-shared-background-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-shared-background-inverse-disabled: rgba(255, 255, 255, 0.1);--ds-advanced-color-shared-background-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-shared-background-muted: #f7f7f7;--ds-advanced-color-shared-background-strong: #676767;--ds-advanced-color-shared-emphasized-background: rgba(1, 66, 106, 0.1);--ds-advanced-color-shared-emphasized-background-hover: rgba(1, 66, 106, 0.2);--ds-advanced-color-shared-scrim: rgba(0, 0, 0, 0.5);--ds-advanced-color-shared-text-accent: #2875b5;--ds-advanced-color-skeleton-background: #f7f8fa;--ds-advanced-color-skeleton-wave: #e4e8ec;--ds-advanced-color-state-background-disabled: #dddddd;--ds-advanced-color-state-background-hover: #f2f2f2;--ds-advanced-color-state-background-inverse-disabled: #7e8894;--ds-advanced-color-state-error-inverse: #f9a4a8;--ds-advanced-color-state-focused: #01426a;--ds-advanced-color-state-focused-inverse: #ffffff;--ds-advanced-color-state-selected: #01426a;--ds-advanced-color-state-selected-hover: #00274a;--ds-basic-color-border-bold: #585e67;--ds-basic-color-border-brand: #00274a;--ds-basic-color-border-default: #959595;--ds-basic-color-border-divider: rgba(0, 0, 0, 0.15);--ds-basic-color-border-divider-inverse: rgba(255, 255, 255, 0.4);--ds-basic-color-border-inverse: #ffffff;--ds-basic-color-border-subtle: #dddddd;--ds-basic-color-brand-primary: #01426a;--ds-basic-color-brand-primary-bold: #00274a;--ds-basic-color-brand-primary-muted: #ebf3f9;--ds-basic-color-brand-primary-subtle: #2875b5;--ds-basic-color-brand-secondary: #5de3f7;--ds-basic-color-brand-secondary-bold: #18c3dd;--ds-basic-color-brand-secondary-muted: #ebfafd;--ds-basic-color-brand-secondary-subtle: #b4eff9;--ds-basic-color-brand-tertiary: #a3cd6a;--ds-basic-color-brand-tertiary-bold: #7daf3b;--ds-basic-color-brand-tertiary-muted: #eaf3dd;--ds-basic-color-brand-tertiary-subtle: #c9e1a7;--ds-basic-color-fare-basiceconomy: #97eaf8;--ds-basic-color-fare-business: #01426a;--ds-basic-color-fare-economy: #0074ca;--ds-basic-color-fare-first: #00274a;--ds-basic-color-fare-premiumeconomy: #005154;--ds-basic-color-page-background-default: #ffffff;--ds-basic-color-page-background-utility: #ffffff;--ds-basic-color-status-default: #afb9c6;--ds-basic-color-status-error: #e31f26;--ds-basic-color-status-error-subtle: #fbc6c6;--ds-basic-color-status-info: #01426a;--ds-basic-color-status-info-subtle: #ebf3f9;--ds-basic-color-status-success: #447a1f;--ds-basic-color-status-success-subtle: #d6eac7;--ds-basic-color-status-warning: #fac200;--ds-basic-color-status-warning-subtle: #fff0b2;--ds-basic-color-surface-accent1: #5de3f7;--ds-basic-color-surface-accent1-muted: #ebfafd;--ds-basic-color-surface-accent1-subtle: #b4eff9;--ds-basic-color-surface-accent2: #a3cd6a;--ds-basic-color-surface-accent2-muted: #eaf3dd;--ds-basic-color-surface-default: #ffffff;--ds-basic-color-surface-inverse: #00274a;--ds-basic-color-surface-inverse-subtle: #2875b5;--ds-basic-color-surface-neutral-medium: #c5c5c5;--ds-basic-color-surface-neutral-subtle: #f7f7f7;--ds-basic-color-texticon-accent1: #265688;--ds-basic-color-texticon-default: #2a2a2a;--ds-basic-color-texticon-disabled: #d0d0d0;--ds-basic-color-texticon-inverse: #ffffff;--ds-basic-color-texticon-inverse-disabled: #7e8894;--ds-basic-color-texticon-inverse-muted: #ccd2db;--ds-basic-color-texticon-muted: #676767;--ds-basic-color-tier-program-loungetier-lounge: #01426a;--ds-basic-color-tier-program-loungetier-loungeplus: #53b390;--ds-basic-color-tier-program-loyaltytier-bronze: #d99f6d;--ds-basic-color-tier-program-loyaltytier-bronze-muted: #eed4be;--ds-basic-color-tier-program-loyaltytier-cobalt: #030772;--ds-basic-color-tier-program-loyaltytier-cobalt-muted: #a9b6d6;--ds-basic-color-tier-program-loyaltytier-copper: #cb7457;--ds-basic-color-tier-program-loyaltytier-copper-muted: #e7bfb1;--ds-basic-color-tier-program-loyaltytier-gold: #fbdc7a;--ds-basic-color-tier-program-loyaltytier-gold-muted: #fdefc4;--ds-basic-color-tier-program-loyaltytier-nickel: #abaab1;--ds-basic-color-tier-program-loyaltytier-nickel-muted: #e5e4e7;--ds-basic-color-tier-program-loyaltytier-platinum: #bcb8a4;--ds-basic-color-tier-program-loyaltytier-platinum-muted: #dad8cd;--ds-basic-color-tier-program-loyaltytier-silver: #e4e9ec;--ds-basic-color-tier-program-loyaltytier-silver-muted: #f9fafb;--ds-basic-color-tier-program-loyaltytier-titanium: #282828;--ds-basic-color-tier-program-loyaltytier-titanium-muted: #545454;--ds-basic-color-tier-program-oneworld-emerald: #139142;--ds-basic-color-tier-program-oneworld-ruby: #a41d4a;--ds-basic-color-tier-program-oneworld-sapphire: #015daa;--ds-basic-type-brand-family-primary: "AS Circular";--ds-basic-type-brand-family-secondary: "Good OT";--ds-basic-type-brand-line-height-primary: 1.3;--ds-basic-type-brand-line-height-secondary: 1;--ds-basic-type-brand-letter-spacing-primary: 0;--ds-basic-type-brand-letter-spacing-secondary: 0.05em;--ds-basic-type-brand-letter-spacing-tertiary: 0.10em;--ds-basic-type-family-accent: "Good OT";--ds-basic-type-family-accent-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-body: "AS Circular";--ds-basic-type-family-body-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-display: "AS Circular";--ds-basic-type-family-display-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-heading: "AS Circular";--ds-basic-type-family-heading-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-letter-spacing-accent: 0.05em;--ds-basic-type-letter-spacing-accent2: 0.10em;--ds-basic-type-letter-spacing-body: 0;--ds-basic-type-letter-spacing-display: 0;--ds-basic-type-letter-spacing-heading: 0;--ds-basic-type-line-height-accent: 1.3;--ds-basic-type-line-height-accent2: 1;--ds-basic-type-line-height-body: 1.625rem;--ds-basic-type-line-height-body2: 1.5rem;--ds-basic-type-line-height-body3: 1.25rem;--ds-basic-type-line-height-body4: 1rem;--ds-basic-type-line-height-body5: 0.875rem;--ds-basic-type-line-height-display: 1.3;--ds-basic-type-line-height-heading: 1.3;--ds-basic-type-weight-accent: 450;--ds-basic-type-weight-accent2: 500;--ds-basic-type-weight-body: 450;--ds-basic-type-weight-display: 300;--ds-basic-type-weight-heading: 300;--ds-basic-type-weight-heading2: 450}:host([layout*=snowflake]) .leftIndent{margin-left:var(--ds-size-200, 1rem)}:host([layout*=snowflake]) .rightIndent{margin-right:var(--ds-size-200, 1rem)}.layout-snowflake{display:flex;flex-direction:row;align-items:center;justify-content:center}.layout-snowflake label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-block-start:var(--ds-size-50, 0.25rem)}.layout-snowflake input{transition:all 1ms linear;text-align:center}.layout-snowflake .mainContent{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1;overflow:hidden}.layout-snowflake .displayValue{display:none;width:100%}.layout-snowflake .displayValue.hasContent:is(.withValue):not(.hasFocus){display:block}.layout-snowflake .displayValueWrapper{display:flex;flex-direction:row;align-items:center;justify-content:center;width:100%}.layout-snowflake.withValue{justify-content:flex-start}.layout-snowflake.withValue:hover .alertNotification{display:none}.layout-snowflake:not(:focus-within):not(:is([validity]:not([validity=valid]))){--ds-auro-input-border-color: transparent}.layout-snowflake:focus-within{justify-content:flex-start}.layout-snowflake:focus-within .alertNotification{display:none}.layout-snowflake .accents{width:var(--ds-size-300, 1.5rem)}.layout-snowflake .accents.left{padding-left:var(--ds-size-200, 1rem)}.layout-snowflake .accents.right{padding-right:var(--ds-size-200, 1rem)}:host([layout*=snowflake]) .helpTextWrapper{text-align:center}`;
19036
+ var snowflakeStyleCss = i$2`:root{--ds-advanced-color-button-flat-text: #676767;--ds-advanced-color-button-flat-text-disabled: #d0d0d0;--ds-advanced-color-button-flat-text-hover: #525252;--ds-advanced-color-button-flat-text-inverse: #ffffff;--ds-advanced-color-button-flat-text-inverse-disabled: #7e8894;--ds-advanced-color-button-flat-text-inverse-hover: #adadad;--ds-advanced-color-button-ghost-background-hover: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-ghost-background-inverse-hover: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-ghost-text: #01426a;--ds-advanced-color-button-ghost-text-disabled: #d0d0d0;--ds-advanced-color-button-ghost-text-inverse: #ffffff;--ds-advanced-color-button-ghost-text-inverse-disabled: #7e8894;--ds-advanced-color-button-primary-background: #01426a;--ds-advanced-color-button-primary-background-disabled: #acc9e2;--ds-advanced-color-button-primary-background-hover: #00274a;--ds-advanced-color-button-primary-background-inactive: #cfe0ef;--ds-advanced-color-button-primary-background-inactive-hover: #89b2d4;--ds-advanced-color-button-primary-background-inverse: #ffffff;--ds-advanced-color-button-primary-background-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-background-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-border: #01426a;--ds-advanced-color-button-primary-border-disabled: #acc9e2;--ds-advanced-color-button-primary-border-hover: #00274a;--ds-advanced-color-button-primary-border-inverse: #ffffff;--ds-advanced-color-button-primary-border-inverse-disabled: rgba(255, 255, 255, 0.75);--ds-advanced-color-button-primary-border-inverse-hover: #ebf3f9;--ds-advanced-color-button-primary-text: #ffffff;--ds-advanced-color-button-primary-text-disabled: #ffffff;--ds-advanced-color-button-primary-text-inverse: #01426a;--ds-advanced-color-button-secondary-background: #ffffff;--ds-advanced-color-button-secondary-background-disabled: #f7f7f7;--ds-advanced-color-button-secondary-background-hover: #f2f2f2;--ds-advanced-color-button-secondary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-secondary-border: #01426a;--ds-advanced-color-button-secondary-border-hover: #00274a;--ds-advanced-color-button-secondary-border-disabled: #cfe0ef;--ds-advanced-color-button-secondary-border-inverse: #ffffff;--ds-advanced-color-button-secondary-border-inverse-disabled: #dddddd;--ds-advanced-color-button-secondary-text: #01426a;--ds-advanced-color-button-secondary-text-hover: #00274a;--ds-advanced-color-button-secondary-text-inverse: #ffffff;--ds-advanced-color-button-tertiary-background: rgba(0, 0, 0, 0.05);--ds-advanced-color-button-tertiary-background-hover: rgba(0, 0, 0, 0.1);--ds-advanced-color-button-tertiary-background-inverse: rgba(255, 255, 255, 0.05);--ds-advanced-color-button-tertiary-background-inverse-hover: rgba(255, 255, 255, 0.1);--ds-advanced-color-button-tertiary-text: #01426a;--ds-advanced-color-button-tertiary-text-hover: #00274a;--ds-advanced-color-button-tertiary-text-inverse: #ffffff;--ds-advanced-color-accents-accent1: #b2d583;--ds-advanced-color-accents-accent1-bold: #92c450;--ds-advanced-color-accents-accent1-muted: #deedca;--ds-advanced-color-accents-accent2: #fad362;--ds-advanced-color-accents-accent2-bold: #f2ba14;--ds-advanced-color-accents-accent2-muted: #fde398;--ds-advanced-color-accents-accent3: #63beff;--ds-advanced-color-accents-accent3-bold: #0074ca;--ds-advanced-color-accents-accent3-muted: #aedeff;--ds-advanced-color-accents-accent4: #feb17a;--ds-advanced-color-accents-accent4-bold: #fb7f24;--ds-advanced-color-accents-accent4-muted: #ffe2cf;--ds-advanced-color-accents-transparency: rgba(0, 0, 0, 0.1);--ds-advanced-color-accents-transparency-inverse: rgba(255, 255, 255, 0.2);--ds-advanced-color-avatar-gradient-bottom: #cfe0ef;--ds-advanced-color-avatar-gradient-top: #6899c6;--ds-advanced-color-boolean-disabled-inverse: #7e8894;--ds-advanced-color-boolean-error: #e31f26;--ds-advanced-color-boolean-error-hover: #b1161c;--ds-advanced-color-boolean-error-inverse: #f9a4a8;--ds-advanced-color-boolean-error-inverse-hover: #f15f65;--ds-advanced-color-boolean-indicator: #ffffff;--ds-advanced-color-boolean-indicator-inverse: #00274a;--ds-advanced-color-boolean-isfalse: #ffffff;--ds-advanced-color-boolean-isfalse-border: #585e67;--ds-advanced-color-boolean-isfalse-border-inverse: #ffffff;--ds-advanced-color-boolean-isfalse-hover: #f2f2f2;--ds-advanced-color-boolean-isfalse-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-boolean-isfalse-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-boolean-istrue: #01426a;--ds-advanced-color-boolean-istrue-hover: #00274a;--ds-advanced-color-boolean-istrue-inverse: #ffffff;--ds-advanced-color-boolean-istrue-inverse-hover: rgba(255, 255, 255, 0.7);--ds-advanced-color-dropdown-emphasized-background: #00274A1a;--ds-advanced-color-dropdown-emphasized-background-hover: #00274A33;--ds-advanced-color-flightline-indicator: #00274a;--ds-advanced-color-flightline-line: #00274a;--ds-advanced-color-hyperlink-text: #2875b5;--ds-advanced-color-hyperlink-text-hover: #01426a;--ds-advanced-color-hyperlink-text-inverse: #ffffff;--ds-advanced-color-hyperlink-text-inverse-hover: #ebf3f9;--ds-advanced-color-shared-background: #ffffff;--ds-advanced-color-shared-background-inverse: rgba(255, 255, 255, 0.15);--ds-advanced-color-shared-background-inverse-disabled: rgba(255, 255, 255, 0.1);--ds-advanced-color-shared-background-inverse-hover: rgba(255, 255, 255, 0.2);--ds-advanced-color-shared-background-muted: #f7f7f7;--ds-advanced-color-shared-background-strong: #676767;--ds-advanced-color-shared-emphasized-background: rgba(1, 66, 106, 0.1);--ds-advanced-color-shared-emphasized-background-hover: rgba(1, 66, 106, 0.2);--ds-advanced-color-shared-scrim: rgba(0, 0, 0, 0.5);--ds-advanced-color-shared-text-accent: #2875b5;--ds-advanced-color-skeleton-background: #f7f8fa;--ds-advanced-color-skeleton-wave: #e4e8ec;--ds-advanced-color-state-background-disabled: #dddddd;--ds-advanced-color-state-background-hover: #f2f2f2;--ds-advanced-color-state-background-inverse-disabled: #7e8894;--ds-advanced-color-state-error-inverse: #f9a4a8;--ds-advanced-color-state-focused: #01426a;--ds-advanced-color-state-focused-inverse: #ffffff;--ds-advanced-color-state-selected: #01426a;--ds-advanced-color-state-selected-hover: #00274a;--ds-basic-color-border-bold: #585e67;--ds-basic-color-border-brand: #00274a;--ds-basic-color-border-default: #959595;--ds-basic-color-border-divider: rgba(0, 0, 0, 0.15);--ds-basic-color-border-divider-inverse: rgba(255, 255, 255, 0.4);--ds-basic-color-border-inverse: #ffffff;--ds-basic-color-border-subtle: #dddddd;--ds-basic-color-brand-primary: #01426a;--ds-basic-color-brand-primary-bold: #00274a;--ds-basic-color-brand-primary-muted: #ebf3f9;--ds-basic-color-brand-primary-subtle: #2875b5;--ds-basic-color-brand-secondary: #5de3f7;--ds-basic-color-brand-secondary-bold: #18c3dd;--ds-basic-color-brand-secondary-muted: #ebfafd;--ds-basic-color-brand-secondary-subtle: #b4eff9;--ds-basic-color-brand-tertiary: #a3cd6a;--ds-basic-color-brand-tertiary-bold: #7daf3b;--ds-basic-color-brand-tertiary-muted: #eaf3dd;--ds-basic-color-brand-tertiary-subtle: #c9e1a7;--ds-basic-color-fare-basiceconomy: #97eaf8;--ds-basic-color-fare-business: #01426a;--ds-basic-color-fare-economy: #0074ca;--ds-basic-color-fare-first: #00274a;--ds-basic-color-fare-premiumeconomy: #005154;--ds-basic-color-page-background-default: #ffffff;--ds-basic-color-page-background-utility: #ffffff;--ds-basic-color-status-default: #afb9c6;--ds-basic-color-status-error: #e31f26;--ds-basic-color-status-error-subtle: #fbc6c6;--ds-basic-color-status-info: #01426a;--ds-basic-color-status-info-subtle: #ebf3f9;--ds-basic-color-status-success: #447a1f;--ds-basic-color-status-success-subtle: #d6eac7;--ds-basic-color-status-warning: #fac200;--ds-basic-color-status-warning-subtle: #fff0b2;--ds-basic-color-surface-accent1: #5de3f7;--ds-basic-color-surface-accent1-muted: #ebfafd;--ds-basic-color-surface-accent1-subtle: #b4eff9;--ds-basic-color-surface-accent2: #a3cd6a;--ds-basic-color-surface-accent2-muted: #eaf3dd;--ds-basic-color-surface-default: #ffffff;--ds-basic-color-surface-inverse: #00274a;--ds-basic-color-surface-inverse-subtle: #2875b5;--ds-basic-color-surface-neutral-medium: #c5c5c5;--ds-basic-color-surface-neutral-subtle: #f7f7f7;--ds-basic-color-texticon-accent1: #265688;--ds-basic-color-texticon-default: #2a2a2a;--ds-basic-color-texticon-disabled: #d0d0d0;--ds-basic-color-texticon-inverse: #ffffff;--ds-basic-color-texticon-inverse-disabled: #7e8894;--ds-basic-color-texticon-inverse-muted: #ccd2db;--ds-basic-color-texticon-muted: #676767;--ds-basic-color-tier-program-loungetier-lounge: #01426a;--ds-basic-color-tier-program-loungetier-loungeplus: #53b390;--ds-basic-color-tier-program-loyaltytier-bronze: #d99f6d;--ds-basic-color-tier-program-loyaltytier-bronze-muted: #eed4be;--ds-basic-color-tier-program-loyaltytier-cobalt: #030772;--ds-basic-color-tier-program-loyaltytier-cobalt-muted: #a9b6d6;--ds-basic-color-tier-program-loyaltytier-copper: #cb7457;--ds-basic-color-tier-program-loyaltytier-copper-muted: #e7bfb1;--ds-basic-color-tier-program-loyaltytier-gold: #fbdc7a;--ds-basic-color-tier-program-loyaltytier-gold-muted: #fdefc4;--ds-basic-color-tier-program-loyaltytier-nickel: #abaab1;--ds-basic-color-tier-program-loyaltytier-nickel-muted: #e5e4e7;--ds-basic-color-tier-program-loyaltytier-platinum: #bcb8a4;--ds-basic-color-tier-program-loyaltytier-platinum-muted: #dad8cd;--ds-basic-color-tier-program-loyaltytier-silver: #e4e9ec;--ds-basic-color-tier-program-loyaltytier-silver-muted: #f9fafb;--ds-basic-color-tier-program-loyaltytier-titanium: #282828;--ds-basic-color-tier-program-loyaltytier-titanium-muted: #545454;--ds-basic-color-tier-program-oneworld-emerald: #139142;--ds-basic-color-tier-program-oneworld-ruby: #a41d4a;--ds-basic-color-tier-program-oneworld-sapphire: #015daa;--ds-basic-type-brand-family-primary: "AS Circular";--ds-basic-type-brand-family-secondary: "Good OT";--ds-basic-type-brand-line-height-primary: 1.3;--ds-basic-type-brand-line-height-secondary: 1;--ds-basic-type-brand-letter-spacing-primary: 0;--ds-basic-type-brand-letter-spacing-secondary: 0.05em;--ds-basic-type-brand-letter-spacing-tertiary: 0.10em;--ds-basic-type-family-accent: "Good OT";--ds-basic-type-family-accent-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-body: "AS Circular";--ds-basic-type-family-body-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-display: "AS Circular";--ds-basic-type-family-display-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-family-heading: "AS Circular";--ds-basic-type-family-heading-fallback: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--ds-basic-type-letter-spacing-accent: 0.05em;--ds-basic-type-letter-spacing-accent2: 0.10em;--ds-basic-type-letter-spacing-body: 0;--ds-basic-type-letter-spacing-display: 0;--ds-basic-type-letter-spacing-heading: 0;--ds-basic-type-line-height-accent: 1.3;--ds-basic-type-line-height-accent2: 1;--ds-basic-type-line-height-body: 1.625rem;--ds-basic-type-line-height-body2: 1.5rem;--ds-basic-type-line-height-body3: 1.25rem;--ds-basic-type-line-height-body4: 1rem;--ds-basic-type-line-height-body5: 0.875rem;--ds-basic-type-line-height-display: 1.3;--ds-basic-type-line-height-heading: 1.3;--ds-basic-type-weight-accent: 450;--ds-basic-type-weight-accent2: 500;--ds-basic-type-weight-body: 450;--ds-basic-type-weight-display: 300;--ds-basic-type-weight-heading: 300;--ds-basic-type-weight-heading2: 450}:host([layout*=snowflake]) .leftIndent{margin-left:var(--ds-size-200, 1rem)}:host([layout*=snowflake]) .rightIndent{margin-right:var(--ds-size-200, 1rem)}.layout-snowflake{display:flex;flex-direction:row;align-items:center;justify-content:center}.layout-snowflake label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-block-start:var(--ds-size-50, 0.25rem)}.layout-snowflake input{transition:all 1ms linear;text-align:center}.layout-snowflake .mainContent{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1;overflow:hidden}.layout-snowflake .displayValue{display:none;width:100%}.layout-snowflake .displayValue.hasContent:is(.withValue):not(.hasFocus){display:block}.layout-snowflake .displayValueWrapper{display:flex;flex-direction:row;align-items:center;justify-content:center;width:100%}.layout-snowflake.withValue{justify-content:flex-start}.layout-snowflake:not(:focus-within):not(:is([validity]:not([validity=valid]))){--ds-auro-input-border-color: transparent}.layout-snowflake:focus-within{justify-content:flex-start}.layout-snowflake:focus-within .alertNotification{display:none}.layout-snowflake .accents{width:var(--ds-size-300, 1.5rem)}.layout-snowflake .accents.left{padding-left:var(--ds-size-200, 1rem)}.layout-snowflake .accents.right{padding-right:var(--ds-size-200, 1rem)}:host([layout*=snowflake]) .helpTextWrapper{text-align:center}`;
19101
19037
 
19102
19038
  const watchedItems$1 = new Set();
19103
19039
 
@@ -23641,52 +23577,6 @@ class AuroFormValidation {
23641
23577
  message: e => e.getAttribute('setCustomValidityRangeUnderflow') || ''
23642
23578
  }
23643
23579
  ]
23644
- },
23645
- combobox: {
23646
- filter: [
23647
- {
23648
- check: (e) => {
23649
-
23650
- // Guard Clause: If the behavior is not 'filter', skip this validation
23651
- if (e.behavior !== 'filter') return false;
23652
-
23653
- // Get the current input value
23654
- const currentInputValue = e.input.value;
23655
-
23656
- // Skip validation if the input has no value
23657
- if (!currentInputValue) return false;
23658
-
23659
- /**
23660
- * Let's check if the option selected and combobox value match.
23661
- */
23662
-
23663
- // Guard Clause: If there is no option selected fail the validation
23664
- if (!e.optionSelected) return true;
23665
-
23666
- // Guard Clause: If there is no value fail the validation
23667
- if (!e.value) return true;
23668
-
23669
- // Guard Clause: If the selected option's value doesn't match the input value fail the validation
23670
- if (e.optionSelected.value !== e.value) return true;
23671
-
23672
- /**
23673
- * Now let's make sure the user hasn't change the value in the input after selecting an option.
23674
- * This is to make sure there's no user confusion if they select an option but then change the value to something else.
23675
- */
23676
-
23677
- // Guard Clause: If the current input value doesn't match the option selected value fail the validation
23678
- if (currentInputValue && currentInputValue !== e.optionSelected.value) return true;
23679
-
23680
- // Guard Clause: If the current input value doesn't match the combobox value fail the validation
23681
- if (currentInputValue && currentInputValue !== e.value) return true;
23682
-
23683
- // If all the checks passed the validation passes
23684
- return false;
23685
- },
23686
- validity: 'valueMissing',
23687
- message: e => e.getAttribute('setCustomValidityValueMissingFilter') || e.setCustomValidity || ''
23688
- }
23689
- ]
23690
23580
  }
23691
23581
  };
23692
23582
 
@@ -23695,8 +23585,6 @@ class AuroFormValidation {
23695
23585
  elementType = 'input';
23696
23586
  } else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
23697
23587
  elementType = 'counter';
23698
- } else if (this.runtimeUtils.elementMatch(elem, 'auro-combobox')) {
23699
- elementType = 'combobox';
23700
23588
  }
23701
23589
 
23702
23590
  if (elementType) {
@@ -23875,15 +23763,6 @@ class AuroFormValidation {
23875
23763
  }
23876
23764
  }
23877
23765
 
23878
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
23879
-
23880
- if (isCombobox) {
23881
-
23882
- if (!elem.persistInput || elem.behavior === "filter") {
23883
- hasValue = elem.input.value?.length > 0;
23884
- }
23885
- }
23886
-
23887
23766
  if (!hasValue && elem.required && elem.touched) {
23888
23767
  elem.validity = 'valueMissing';
23889
23768
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
@@ -23892,11 +23771,6 @@ class AuroFormValidation {
23892
23771
  this.validateElementAttributes(elem);
23893
23772
  } else if (hasValue && (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group'))) {
23894
23773
  this.validateElementAttributes(elem);
23895
- } else if (isCombobox) {
23896
- this.validateElementAttributes(elem);
23897
-
23898
- // Don't run extra validation for cases where the combobox is not being used as a filter
23899
- validationShouldRun = elem.behavior !== 'filter';
23900
23774
  }
23901
23775
  }
23902
23776
 
@@ -23904,8 +23778,8 @@ class AuroFormValidation {
23904
23778
 
23905
23779
  const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
23906
23780
 
23907
- // Don't reset combobox validity if persistInput is set since we can't use the input value to validate
23908
- if (!isCombobox || isCombobox && !elem.persistInput) {
23781
+ // Don't reset combobox validity if persistValue is set since we can't use the input value to validate
23782
+ if (!isCombobox || isCombobox && !elem.persistValue) {
23909
23783
 
23910
23784
  // run validation on all inputs since we're going to use them to set the validity of this component
23911
23785
  this.auroInputElements.forEach(input => input.validate());
@@ -23978,8 +23852,6 @@ class AuroFormValidation {
23978
23852
  if (input.validationMessage.length > 0) {
23979
23853
  elem.errorMessage = input.validationMessage;
23980
23854
  }
23981
- } else if (this.runtimeUtils.elementMatch(elem, 'auro-combobox') && elem.errorMessage === '') {
23982
- elem.errorMessage = elem.input?.inputElement?.validationMessage;
23983
23855
  } else if (this.inputElements?.length > 0 && elem.errorMessage === '') {
23984
23856
  const firstInput = this.inputElements[0];
23985
23857