@aurodesignsystem-dev/auro-formkit 0.0.0-pr1352.4 → 0.0.0-pr1352.6

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 (48) hide show
  1. package/components/checkbox/demo/api.min.js +3 -3
  2. package/components/checkbox/demo/index.min.js +3 -3
  3. package/components/checkbox/dist/index.js +3 -3
  4. package/components/checkbox/dist/registered.js +3 -3
  5. package/components/combobox/demo/api.min.js +7 -7
  6. package/components/combobox/demo/index.min.js +7 -7
  7. package/components/combobox/dist/index.js +7 -7
  8. package/components/combobox/dist/registered.js +7 -7
  9. package/components/counter/demo/api.min.js +4 -4
  10. package/components/counter/demo/index.min.js +4 -4
  11. package/components/counter/dist/index.js +4 -4
  12. package/components/counter/dist/registered.js +4 -4
  13. package/components/datepicker/demo/api.min.js +7 -7
  14. package/components/datepicker/demo/index.min.js +7 -7
  15. package/components/datepicker/dist/index.js +7 -7
  16. package/components/datepicker/dist/registered.js +7 -7
  17. package/components/dropdown/demo/api.min.js +1 -1
  18. package/components/dropdown/demo/index.min.js +1 -1
  19. package/components/dropdown/dist/index.js +1 -1
  20. package/components/dropdown/dist/registered.js +1 -1
  21. package/components/form/README.md +47 -2
  22. package/components/form/demo/api.js +2 -0
  23. package/components/form/demo/api.md +299 -30
  24. package/components/form/demo/api.min.js +66796 -62
  25. package/components/form/demo/index.html +0 -1
  26. package/components/form/demo/index.js +1 -0
  27. package/components/form/demo/index.md +1 -275
  28. package/components/form/demo/index.min.js +66795 -62
  29. package/components/form/demo/readme.md +47 -2
  30. package/components/form/demo/working.html +123 -32
  31. package/components/form/dist/auro-form.d.ts +98 -61
  32. package/components/form/dist/index.js +135 -51
  33. package/components/form/dist/registered.js +135 -51
  34. package/components/input/demo/api.min.js +3 -3
  35. package/components/input/demo/index.min.js +3 -3
  36. package/components/input/dist/index.js +3 -3
  37. package/components/input/dist/registered.js +3 -3
  38. package/components/radio/demo/api.min.js +3 -3
  39. package/components/radio/demo/index.min.js +3 -3
  40. package/components/radio/dist/index.js +3 -3
  41. package/components/radio/dist/registered.js +3 -3
  42. package/components/select/demo/api.min.js +27 -4
  43. package/components/select/demo/index.min.js +27 -4
  44. package/components/select/dist/auro-select.d.ts +6 -0
  45. package/components/select/dist/index.js +27 -4
  46. package/components/select/dist/registered.js +27 -4
  47. package/custom-elements.json +387 -355
  48. package/package.json +2 -1
@@ -1300,7 +1300,7 @@ class AuroFormValidation {
1300
1300
  }
1301
1301
  }
1302
1302
 
1303
- if (!hasValue && elem.required && elem.touched) {
1303
+ if (!hasValue && elem.required && (force || elem.touched)) {
1304
1304
  elem.validity = 'valueMissing';
1305
1305
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1306
1306
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1324,7 +1324,7 @@ class AuroFormValidation {
1324
1324
  if (!isCombobox || isCombobox && !elem.persistInput) {
1325
1325
 
1326
1326
  // run validation on all inputs since we're going to use them to set the validity of this component
1327
- this.auroInputElements.forEach(input => input.validate());
1327
+ this.auroInputElements.forEach(input => input.validate(force));
1328
1328
 
1329
1329
  // Reset element validity to the validity of the input
1330
1330
  elem.validity = this.auroInputElements[0].validity;
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
- var formkitVersion = '202602252155';
1690
+ var formkitVersion = '202602272037';
1691
1691
 
1692
1692
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1693
1693
  // See LICENSE in the project root for license information.
@@ -1292,7 +1292,7 @@ class AuroFormValidation {
1292
1292
  }
1293
1293
  }
1294
1294
 
1295
- if (!hasValue && elem.required && elem.touched) {
1295
+ if (!hasValue && elem.required && (force || elem.touched)) {
1296
1296
  elem.validity = 'valueMissing';
1297
1297
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1298
1298
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1316,7 +1316,7 @@ class AuroFormValidation {
1316
1316
  if (!isCombobox || isCombobox && !elem.persistInput) {
1317
1317
 
1318
1318
  // run validation on all inputs since we're going to use them to set the validity of this component
1319
- this.auroInputElements.forEach(input => input.validate());
1319
+ this.auroInputElements.forEach(input => input.validate(force));
1320
1320
 
1321
1321
  // Reset element validity to the validity of the input
1322
1322
  elem.validity = this.auroInputElements[0].validity;
@@ -1679,7 +1679,7 @@ class AuroHelpText extends i$2 {
1679
1679
  }
1680
1680
  }
1681
1681
 
1682
- var formkitVersion = '202602252155';
1682
+ var formkitVersion = '202602272037';
1683
1683
 
1684
1684
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1685
1685
  // See LICENSE in the project root for license information.
@@ -1245,7 +1245,7 @@ class AuroFormValidation {
1245
1245
  }
1246
1246
  }
1247
1247
 
1248
- if (!hasValue && elem.required && elem.touched) {
1248
+ if (!hasValue && elem.required && (force || elem.touched)) {
1249
1249
  elem.validity = 'valueMissing';
1250
1250
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1251
1251
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1269,7 +1269,7 @@ class AuroFormValidation {
1269
1269
  if (!isCombobox || isCombobox && !elem.persistInput) {
1270
1270
 
1271
1271
  // run validation on all inputs since we're going to use them to set the validity of this component
1272
- this.auroInputElements.forEach(input => input.validate());
1272
+ this.auroInputElements.forEach(input => input.validate(force));
1273
1273
 
1274
1274
  // Reset element validity to the validity of the input
1275
1275
  elem.validity = this.auroInputElements[0].validity;
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202602252155';
1635
+ var formkitVersion = '202602272037';
1636
1636
 
1637
1637
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1638
1638
  // See LICENSE in the project root for license information.
@@ -1245,7 +1245,7 @@ class AuroFormValidation {
1245
1245
  }
1246
1246
  }
1247
1247
 
1248
- if (!hasValue && elem.required && elem.touched) {
1248
+ if (!hasValue && elem.required && (force || elem.touched)) {
1249
1249
  elem.validity = 'valueMissing';
1250
1250
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1251
1251
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1269,7 +1269,7 @@ class AuroFormValidation {
1269
1269
  if (!isCombobox || isCombobox && !elem.persistInput) {
1270
1270
 
1271
1271
  // run validation on all inputs since we're going to use them to set the validity of this component
1272
- this.auroInputElements.forEach(input => input.validate());
1272
+ this.auroInputElements.forEach(input => input.validate(force));
1273
1273
 
1274
1274
  // Reset element validity to the validity of the input
1275
1275
  elem.validity = this.auroInputElements[0].validity;
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202602252155';
1635
+ var formkitVersion = '202602272037';
1636
1636
 
1637
1637
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1638
1638
  // See LICENSE in the project root for license information.
@@ -1000,7 +1000,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
1000
1000
  }
1001
1001
  }
1002
1002
 
1003
- if (!hasValue && elem.required && elem.touched) {
1003
+ if (!hasValue && elem.required && (force || elem.touched)) {
1004
1004
  elem.validity = 'valueMissing';
1005
1005
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1006
1006
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1024,7 +1024,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
1024
1024
  if (!isCombobox || isCombobox && !elem.persistInput) {
1025
1025
 
1026
1026
  // run validation on all inputs since we're going to use them to set the validity of this component
1027
- this.auroInputElements.forEach(input => input.validate());
1027
+ this.auroInputElements.forEach(input => input.validate(force));
1028
1028
 
1029
1029
  // Reset element validity to the validity of the input
1030
1030
  elem.validity = this.auroInputElements[0].validity;
@@ -4389,7 +4389,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
4389
4389
  }
4390
4390
  };
4391
4391
 
4392
- var formkitVersion$2 = '202602252155';
4392
+ var formkitVersion$2 = '202602272037';
4393
4393
 
4394
4394
  let AuroElement$2 = class AuroElement extends i$4 {
4395
4395
  static get properties() {
@@ -10274,7 +10274,7 @@ class AuroFormValidation {
10274
10274
  }
10275
10275
  }
10276
10276
 
10277
- if (!hasValue && elem.required && elem.touched) {
10277
+ if (!hasValue && elem.required && (force || elem.touched)) {
10278
10278
  elem.validity = 'valueMissing';
10279
10279
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
10280
10280
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -10298,7 +10298,7 @@ class AuroFormValidation {
10298
10298
  if (!isCombobox || isCombobox && !elem.persistInput) {
10299
10299
 
10300
10300
  // run validation on all inputs since we're going to use them to set the validity of this component
10301
- this.auroInputElements.forEach(input => input.validate());
10301
+ this.auroInputElements.forEach(input => input.validate(force));
10302
10302
 
10303
10303
  // Reset element validity to the validity of the input
10304
10304
  elem.validity = this.auroInputElements[0].validity;
@@ -12024,7 +12024,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12024
12024
  }
12025
12025
  };
12026
12026
 
12027
- var formkitVersion$1 = '202602252155';
12027
+ var formkitVersion$1 = '202602272037';
12028
12028
 
12029
12029
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12030
12030
  // See LICENSE in the project root for license information.
@@ -13050,7 +13050,7 @@ class AuroBibtemplate extends i$4 {
13050
13050
  }
13051
13051
  }
13052
13052
 
13053
- var formkitVersion = '202602252155';
13053
+ var formkitVersion = '202602272037';
13054
13054
 
13055
13055
  var styleCss$3 = i$7`.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}`;
13056
13056
 
@@ -923,7 +923,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
923
923
  }
924
924
  }
925
925
 
926
- if (!hasValue && elem.required && elem.touched) {
926
+ if (!hasValue && elem.required && (force || elem.touched)) {
927
927
  elem.validity = 'valueMissing';
928
928
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
929
929
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -947,7 +947,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
947
947
  if (!isCombobox || isCombobox && !elem.persistInput) {
948
948
 
949
949
  // run validation on all inputs since we're going to use them to set the validity of this component
950
- this.auroInputElements.forEach(input => input.validate());
950
+ this.auroInputElements.forEach(input => input.validate(force));
951
951
 
952
952
  // Reset element validity to the validity of the input
953
953
  elem.validity = this.auroInputElements[0].validity;
@@ -4312,7 +4312,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
4312
4312
  }
4313
4313
  };
4314
4314
 
4315
- var formkitVersion$2 = '202602252155';
4315
+ var formkitVersion$2 = '202602272037';
4316
4316
 
4317
4317
  let AuroElement$2 = class AuroElement extends i$4 {
4318
4318
  static get properties() {
@@ -10197,7 +10197,7 @@ class AuroFormValidation {
10197
10197
  }
10198
10198
  }
10199
10199
 
10200
- if (!hasValue && elem.required && elem.touched) {
10200
+ if (!hasValue && elem.required && (force || elem.touched)) {
10201
10201
  elem.validity = 'valueMissing';
10202
10202
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
10203
10203
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -10221,7 +10221,7 @@ class AuroFormValidation {
10221
10221
  if (!isCombobox || isCombobox && !elem.persistInput) {
10222
10222
 
10223
10223
  // run validation on all inputs since we're going to use them to set the validity of this component
10224
- this.auroInputElements.forEach(input => input.validate());
10224
+ this.auroInputElements.forEach(input => input.validate(force));
10225
10225
 
10226
10226
  // Reset element validity to the validity of the input
10227
10227
  elem.validity = this.auroInputElements[0].validity;
@@ -11947,7 +11947,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
11947
11947
  }
11948
11948
  };
11949
11949
 
11950
- var formkitVersion$1 = '202602252155';
11950
+ var formkitVersion$1 = '202602272037';
11951
11951
 
11952
11952
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
11953
11953
  // See LICENSE in the project root for license information.
@@ -12973,7 +12973,7 @@ class AuroBibtemplate extends i$4 {
12973
12973
  }
12974
12974
  }
12975
12975
 
12976
- var formkitVersion = '202602252155';
12976
+ var formkitVersion = '202602272037';
12977
12977
 
12978
12978
  var styleCss$3 = i$7`.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}`;
12979
12979
 
@@ -884,7 +884,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
884
884
  }
885
885
  }
886
886
 
887
- if (!hasValue && elem.required && elem.touched) {
887
+ if (!hasValue && elem.required && (force || elem.touched)) {
888
888
  elem.validity = 'valueMissing';
889
889
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
890
890
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -908,7 +908,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
908
908
  if (!isCombobox || isCombobox && !elem.persistInput) {
909
909
 
910
910
  // run validation on all inputs since we're going to use them to set the validity of this component
911
- this.auroInputElements.forEach(input => input.validate());
911
+ this.auroInputElements.forEach(input => input.validate(force));
912
912
 
913
913
  // Reset element validity to the validity of the input
914
914
  elem.validity = this.auroInputElements[0].validity;
@@ -4249,7 +4249,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4249
4249
  }
4250
4250
  };
4251
4251
 
4252
- var formkitVersion$2 = '202602252155';
4252
+ var formkitVersion$2 = '202602272037';
4253
4253
 
4254
4254
  let AuroElement$2 = class AuroElement extends LitElement {
4255
4255
  static get properties() {
@@ -10127,7 +10127,7 @@ class AuroFormValidation {
10127
10127
  }
10128
10128
  }
10129
10129
 
10130
- if (!hasValue && elem.required && elem.touched) {
10130
+ if (!hasValue && elem.required && (force || elem.touched)) {
10131
10131
  elem.validity = 'valueMissing';
10132
10132
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
10133
10133
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -10151,7 +10151,7 @@ class AuroFormValidation {
10151
10151
  if (!isCombobox || isCombobox && !elem.persistInput) {
10152
10152
 
10153
10153
  // run validation on all inputs since we're going to use them to set the validity of this component
10154
- this.auroInputElements.forEach(input => input.validate());
10154
+ this.auroInputElements.forEach(input => input.validate(force));
10155
10155
 
10156
10156
  // Reset element validity to the validity of the input
10157
10157
  elem.validity = this.auroInputElements[0].validity;
@@ -11877,7 +11877,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
11877
11877
  }
11878
11878
  };
11879
11879
 
11880
- var formkitVersion$1 = '202602252155';
11880
+ var formkitVersion$1 = '202602272037';
11881
11881
 
11882
11882
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
11883
11883
  // See LICENSE in the project root for license information.
@@ -12903,7 +12903,7 @@ class AuroBibtemplate extends LitElement {
12903
12903
  }
12904
12904
  }
12905
12905
 
12906
- var formkitVersion = '202602252155';
12906
+ var formkitVersion = '202602272037';
12907
12907
 
12908
12908
  var styleCss$1 = css`.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}`;
12909
12909
 
@@ -884,7 +884,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
884
884
  }
885
885
  }
886
886
 
887
- if (!hasValue && elem.required && elem.touched) {
887
+ if (!hasValue && elem.required && (force || elem.touched)) {
888
888
  elem.validity = 'valueMissing';
889
889
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
890
890
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -908,7 +908,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
908
908
  if (!isCombobox || isCombobox && !elem.persistInput) {
909
909
 
910
910
  // run validation on all inputs since we're going to use them to set the validity of this component
911
- this.auroInputElements.forEach(input => input.validate());
911
+ this.auroInputElements.forEach(input => input.validate(force));
912
912
 
913
913
  // Reset element validity to the validity of the input
914
914
  elem.validity = this.auroInputElements[0].validity;
@@ -4249,7 +4249,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4249
4249
  }
4250
4250
  };
4251
4251
 
4252
- var formkitVersion$2 = '202602252155';
4252
+ var formkitVersion$2 = '202602272037';
4253
4253
 
4254
4254
  let AuroElement$2 = class AuroElement extends LitElement {
4255
4255
  static get properties() {
@@ -10127,7 +10127,7 @@ class AuroFormValidation {
10127
10127
  }
10128
10128
  }
10129
10129
 
10130
- if (!hasValue && elem.required && elem.touched) {
10130
+ if (!hasValue && elem.required && (force || elem.touched)) {
10131
10131
  elem.validity = 'valueMissing';
10132
10132
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
10133
10133
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -10151,7 +10151,7 @@ class AuroFormValidation {
10151
10151
  if (!isCombobox || isCombobox && !elem.persistInput) {
10152
10152
 
10153
10153
  // run validation on all inputs since we're going to use them to set the validity of this component
10154
- this.auroInputElements.forEach(input => input.validate());
10154
+ this.auroInputElements.forEach(input => input.validate(force));
10155
10155
 
10156
10156
  // Reset element validity to the validity of the input
10157
10157
  elem.validity = this.auroInputElements[0].validity;
@@ -11877,7 +11877,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
11877
11877
  }
11878
11878
  };
11879
11879
 
11880
- var formkitVersion$1 = '202602252155';
11880
+ var formkitVersion$1 = '202602272037';
11881
11881
 
11882
11882
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
11883
11883
  // See LICENSE in the project root for license information.
@@ -12903,7 +12903,7 @@ class AuroBibtemplate extends LitElement {
12903
12903
  }
12904
12904
  }
12905
12905
 
12906
- var formkitVersion = '202602252155';
12906
+ var formkitVersion = '202602272037';
12907
12907
 
12908
12908
  var styleCss$1 = css`.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}`;
12909
12909
 
@@ -1058,7 +1058,7 @@ class AuroFormValidation {
1058
1058
  }
1059
1059
  }
1060
1060
 
1061
- if (!hasValue && elem.required && elem.touched) {
1061
+ if (!hasValue && elem.required && (force || elem.touched)) {
1062
1062
  elem.validity = 'valueMissing';
1063
1063
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1064
1064
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1082,7 +1082,7 @@ class AuroFormValidation {
1082
1082
  if (!isCombobox || isCombobox && !elem.persistInput) {
1083
1083
 
1084
1084
  // run validation on all inputs since we're going to use them to set the validity of this component
1085
- this.auroInputElements.forEach(input => input.validate());
1085
+ this.auroInputElements.forEach(input => input.validate(force));
1086
1086
 
1087
1087
  // Reset element validity to the validity of the input
1088
1088
  elem.validity = this.auroInputElements[0].validity;
@@ -1442,7 +1442,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1442
1442
  }
1443
1443
  };
1444
1444
 
1445
- var formkitVersion$1 = '202602252155';
1445
+ var formkitVersion$1 = '202602272037';
1446
1446
 
1447
1447
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1448
1448
  // See LICENSE in the project root for license information.
@@ -5135,7 +5135,7 @@ class AuroHelpText extends i$2 {
5135
5135
  }
5136
5136
  }
5137
5137
 
5138
- var formkitVersion = '202602252155';
5138
+ var formkitVersion = '202602272037';
5139
5139
 
5140
5140
  let AuroElement$1 = class AuroElement extends i$2 {
5141
5141
  static get properties() {
@@ -1058,7 +1058,7 @@ class AuroFormValidation {
1058
1058
  }
1059
1059
  }
1060
1060
 
1061
- if (!hasValue && elem.required && elem.touched) {
1061
+ if (!hasValue && elem.required && (force || elem.touched)) {
1062
1062
  elem.validity = 'valueMissing';
1063
1063
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1064
1064
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1082,7 +1082,7 @@ class AuroFormValidation {
1082
1082
  if (!isCombobox || isCombobox && !elem.persistInput) {
1083
1083
 
1084
1084
  // run validation on all inputs since we're going to use them to set the validity of this component
1085
- this.auroInputElements.forEach(input => input.validate());
1085
+ this.auroInputElements.forEach(input => input.validate(force));
1086
1086
 
1087
1087
  // Reset element validity to the validity of the input
1088
1088
  elem.validity = this.auroInputElements[0].validity;
@@ -1442,7 +1442,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1442
1442
  }
1443
1443
  };
1444
1444
 
1445
- var formkitVersion$1 = '202602252155';
1445
+ var formkitVersion$1 = '202602272037';
1446
1446
 
1447
1447
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1448
1448
  // See LICENSE in the project root for license information.
@@ -5135,7 +5135,7 @@ class AuroHelpText extends i$2 {
5135
5135
  }
5136
5136
  }
5137
5137
 
5138
- var formkitVersion = '202602252155';
5138
+ var formkitVersion = '202602272037';
5139
5139
 
5140
5140
  let AuroElement$1 = class AuroElement extends i$2 {
5141
5141
  static get properties() {
@@ -1014,7 +1014,7 @@ class AuroFormValidation {
1014
1014
  }
1015
1015
  }
1016
1016
 
1017
- if (!hasValue && elem.required && elem.touched) {
1017
+ if (!hasValue && elem.required && (force || elem.touched)) {
1018
1018
  elem.validity = 'valueMissing';
1019
1019
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1020
1020
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1038,7 +1038,7 @@ class AuroFormValidation {
1038
1038
  if (!isCombobox || isCombobox && !elem.persistInput) {
1039
1039
 
1040
1040
  // run validation on all inputs since we're going to use them to set the validity of this component
1041
- this.auroInputElements.forEach(input => input.validate());
1041
+ this.auroInputElements.forEach(input => input.validate(force));
1042
1042
 
1043
1043
  // Reset element validity to the validity of the input
1044
1044
  elem.validity = this.auroInputElements[0].validity;
@@ -1392,7 +1392,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1392
1392
  }
1393
1393
  };
1394
1394
 
1395
- var formkitVersion$1 = '202602252155';
1395
+ var formkitVersion$1 = '202602272037';
1396
1396
 
1397
1397
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1398
1398
  // See LICENSE in the project root for license information.
@@ -5067,7 +5067,7 @@ class AuroHelpText extends LitElement {
5067
5067
  }
5068
5068
  }
5069
5069
 
5070
- var formkitVersion = '202602252155';
5070
+ var formkitVersion = '202602272037';
5071
5071
 
5072
5072
  let AuroElement$1 = class AuroElement extends LitElement {
5073
5073
  static get properties() {
@@ -1014,7 +1014,7 @@ class AuroFormValidation {
1014
1014
  }
1015
1015
  }
1016
1016
 
1017
- if (!hasValue && elem.required && elem.touched) {
1017
+ if (!hasValue && elem.required && (force || elem.touched)) {
1018
1018
  elem.validity = 'valueMissing';
1019
1019
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1020
1020
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1038,7 +1038,7 @@ class AuroFormValidation {
1038
1038
  if (!isCombobox || isCombobox && !elem.persistInput) {
1039
1039
 
1040
1040
  // run validation on all inputs since we're going to use them to set the validity of this component
1041
- this.auroInputElements.forEach(input => input.validate());
1041
+ this.auroInputElements.forEach(input => input.validate(force));
1042
1042
 
1043
1043
  // Reset element validity to the validity of the input
1044
1044
  elem.validity = this.auroInputElements[0].validity;
@@ -1392,7 +1392,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1392
1392
  }
1393
1393
  };
1394
1394
 
1395
- var formkitVersion$1 = '202602252155';
1395
+ var formkitVersion$1 = '202602272037';
1396
1396
 
1397
1397
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1398
1398
  // See LICENSE in the project root for license information.
@@ -5067,7 +5067,7 @@ class AuroHelpText extends LitElement {
5067
5067
  }
5068
5068
  }
5069
5069
 
5070
- var formkitVersion = '202602252155';
5070
+ var formkitVersion = '202602272037';
5071
5071
 
5072
5072
  let AuroElement$1 = class AuroElement extends LitElement {
5073
5073
  static get properties() {
@@ -1123,7 +1123,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
1123
1123
  }
1124
1124
  }
1125
1125
 
1126
- if (!hasValue && elem.required && elem.touched) {
1126
+ if (!hasValue && elem.required && (force || elem.touched)) {
1127
1127
  elem.validity = 'valueMissing';
1128
1128
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
1129
1129
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -1147,7 +1147,7 @@ let AuroFormValidation$1 = class AuroFormValidation {
1147
1147
  if (!isCombobox || isCombobox && !elem.persistInput) {
1148
1148
 
1149
1149
  // run validation on all inputs since we're going to use them to set the validity of this component
1150
- this.auroInputElements.forEach(input => input.validate());
1150
+ this.auroInputElements.forEach(input => input.validate(force));
1151
1151
 
1152
1152
  // Reset element validity to the validity of the input
1153
1153
  elem.validity = this.auroInputElements[0].validity;
@@ -9537,7 +9537,7 @@ class AuroBibtemplate extends i$1 {
9537
9537
  }
9538
9538
  }
9539
9539
 
9540
- var formkitVersion$2 = '202602252155';
9540
+ var formkitVersion$2 = '202602272037';
9541
9541
 
9542
9542
  let l$1 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = 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$4 = 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$3=i$3`: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}
9543
9543
  `,u$6=i$3`.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}}
@@ -13268,7 +13268,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13268
13268
  }
13269
13269
  };
13270
13270
 
13271
- var formkitVersion$1 = '202602252155';
13271
+ var formkitVersion$1 = '202602272037';
13272
13272
 
13273
13273
  let AuroElement$2 = class AuroElement extends i$1 {
13274
13274
  static get properties() {
@@ -19153,7 +19153,7 @@ class AuroFormValidation {
19153
19153
  }
19154
19154
  }
19155
19155
 
19156
- if (!hasValue && elem.required && elem.touched) {
19156
+ if (!hasValue && elem.required && (force || elem.touched)) {
19157
19157
  elem.validity = 'valueMissing';
19158
19158
  elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
19159
19159
  } else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
@@ -19177,7 +19177,7 @@ class AuroFormValidation {
19177
19177
  if (!isCombobox || isCombobox && !elem.persistInput) {
19178
19178
 
19179
19179
  // run validation on all inputs since we're going to use them to set the validity of this component
19180
- this.auroInputElements.forEach(input => input.validate());
19180
+ this.auroInputElements.forEach(input => input.validate(force));
19181
19181
 
19182
19182
  // Reset element validity to the validity of the input
19183
19183
  elem.validity = this.auroInputElements[0].validity;
@@ -20903,7 +20903,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
20903
20903
  }
20904
20904
  };
20905
20905
 
20906
- var formkitVersion = '202602252155';
20906
+ var formkitVersion = '202602272037';
20907
20907
 
20908
20908
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
20909
20909
  // See LICENSE in the project root for license information.