@aurodesignsystem-dev/auro-formkit 0.0.0-pr1346.2 → 0.0.0-pr1346.3

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 (33) hide show
  1. package/components/checkbox/demo/api.min.js +1 -1
  2. package/components/checkbox/demo/index.min.js +1 -1
  3. package/components/checkbox/dist/index.js +1 -1
  4. package/components/checkbox/dist/registered.js +1 -1
  5. package/components/combobox/demo/api.min.js +31 -23
  6. package/components/combobox/demo/index.min.js +31 -23
  7. package/components/combobox/dist/index.js +31 -23
  8. package/components/combobox/dist/registered.js +31 -23
  9. package/components/counter/demo/api.min.js +3 -3
  10. package/components/counter/demo/index.min.js +3 -3
  11. package/components/counter/dist/index.js +3 -3
  12. package/components/counter/dist/registered.js +3 -3
  13. package/components/datepicker/demo/api.min.js +31 -23
  14. package/components/datepicker/demo/index.min.js +31 -23
  15. package/components/datepicker/dist/index.js +31 -23
  16. package/components/datepicker/dist/registered.js +31 -23
  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/input/demo/api.min.js +29 -21
  22. package/components/input/demo/index.min.js +29 -21
  23. package/components/input/dist/index.js +29 -21
  24. package/components/input/dist/registered.js +29 -21
  25. package/components/radio/demo/api.min.js +1 -1
  26. package/components/radio/demo/index.min.js +1 -1
  27. package/components/radio/dist/index.js +1 -1
  28. package/components/radio/dist/registered.js +1 -1
  29. package/components/select/demo/api.min.js +2 -2
  30. package/components/select/demo/index.min.js +2 -2
  31. package/components/select/dist/index.js +2 -2
  32. package/components/select/dist/registered.js +2 -2
  33. package/package.json +1 -1
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
- var formkitVersion = '202602201708';
1690
+ var formkitVersion = '202602232116';
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.
@@ -1679,7 +1679,7 @@ class AuroHelpText extends i$2 {
1679
1679
  }
1680
1680
  }
1681
1681
 
1682
- var formkitVersion = '202602201708';
1682
+ var formkitVersion = '202602232116';
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.
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202602201708';
1635
+ var formkitVersion = '202602232116';
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.
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202602201708';
1635
+ var formkitVersion = '202602232116';
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.
@@ -4471,7 +4471,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
4471
4471
  }
4472
4472
  };
4473
4473
 
4474
- var formkitVersion$2 = '202602201708';
4474
+ var formkitVersion$2 = '202602232116';
4475
4475
 
4476
4476
  let AuroElement$2 = class AuroElement extends i$4 {
4477
4477
  static get properties() {
@@ -11452,31 +11452,34 @@ class BaseInput extends AuroElement$1 {
11452
11452
  // Process credit card type detection and formatting during input
11453
11453
  if (this.type === 'credit-card') {
11454
11454
  this.processCreditCard();
11455
- }
11455
+ this.touched = true;
11456
+ this.validation.validate(this);
11457
+ } else {
11456
11458
 
11457
- // Sets value property to value of element value (el.value).
11458
- this.value = this.inputElement.value;
11459
+ // Sets value property to value of element value (el.value).
11460
+ this.value = this.inputElement.value;
11459
11461
 
11460
- // Determine if the value change was programmatic, including autofill.
11461
- const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11462
+ // Determine if the value change was programmatic, including autofill.
11463
+ const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11462
11464
 
11463
- // Validation on input or programmatic value change (including autofill).
11464
- if (this.validateOnInput || inputWasProgrammatic) {
11465
- this.touched = true;
11466
- this.validation.validate(this);
11467
- }
11465
+ // Validation on input or programmatic value change (including autofill).
11466
+ if (this.validateOnInput || inputWasProgrammatic) {
11467
+ this.touched = true;
11468
+ this.validation.validate(this);
11469
+ }
11468
11470
 
11469
- // Prevents cursor jumping in Safari.
11470
- const { selectionStart } = this.inputElement;
11471
+ // Prevents cursor jumping in Safari.
11472
+ const { selectionStart } = this.inputElement;
11471
11473
 
11472
- if (this.setSelectionInputTypes.includes(this.type)) {
11473
- this.updateComplete.then(() => {
11474
- try {
11475
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
11476
- } catch (error) { // eslint-disable-line
11477
- // do nothing
11478
- }
11479
- });
11474
+ if (this.setSelectionInputTypes.includes(this.type)) {
11475
+ this.updateComplete.then(() => {
11476
+ try {
11477
+ this.inputElement.setSelectionRange(selectionStart, selectionStart);
11478
+ } catch (error) { // eslint-disable-line
11479
+ // do nothing
11480
+ }
11481
+ });
11482
+ }
11480
11483
  }
11481
11484
  }
11482
11485
 
@@ -11509,6 +11512,11 @@ class BaseInput extends AuroElement$1 {
11509
11512
  this.inputElement.scrollLeft = 100;
11510
11513
 
11511
11514
  if (!this.noValidate) {
11515
+ // For credit card inputs with mask, ensure value is synced from mask instance
11516
+ if (this.type === 'credit-card' && this.maskInstance) {
11517
+ this.value = this.maskInstance.value;
11518
+ }
11519
+
11512
11520
  this.validation.validate(this);
11513
11521
  }
11514
11522
  }
@@ -12171,7 +12179,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12171
12179
  }
12172
12180
  };
12173
12181
 
12174
- var formkitVersion$1 = '202602201708';
12182
+ var formkitVersion$1 = '202602232116';
12175
12183
 
12176
12184
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12177
12185
  // See LICENSE in the project root for license information.
@@ -13198,7 +13206,7 @@ class AuroBibtemplate extends i$4 {
13198
13206
  }
13199
13207
  }
13200
13208
 
13201
- var formkitVersion = '202602201708';
13209
+ var formkitVersion = '202602232116';
13202
13210
 
13203
13211
  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}`;
13204
13212
 
@@ -4394,7 +4394,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
4394
4394
  }
4395
4395
  };
4396
4396
 
4397
- var formkitVersion$2 = '202602201708';
4397
+ var formkitVersion$2 = '202602232116';
4398
4398
 
4399
4399
  let AuroElement$2 = class AuroElement extends i$4 {
4400
4400
  static get properties() {
@@ -11375,31 +11375,34 @@ class BaseInput extends AuroElement$1 {
11375
11375
  // Process credit card type detection and formatting during input
11376
11376
  if (this.type === 'credit-card') {
11377
11377
  this.processCreditCard();
11378
- }
11378
+ this.touched = true;
11379
+ this.validation.validate(this);
11380
+ } else {
11379
11381
 
11380
- // Sets value property to value of element value (el.value).
11381
- this.value = this.inputElement.value;
11382
+ // Sets value property to value of element value (el.value).
11383
+ this.value = this.inputElement.value;
11382
11384
 
11383
- // Determine if the value change was programmatic, including autofill.
11384
- const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11385
+ // Determine if the value change was programmatic, including autofill.
11386
+ const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11385
11387
 
11386
- // Validation on input or programmatic value change (including autofill).
11387
- if (this.validateOnInput || inputWasProgrammatic) {
11388
- this.touched = true;
11389
- this.validation.validate(this);
11390
- }
11388
+ // Validation on input or programmatic value change (including autofill).
11389
+ if (this.validateOnInput || inputWasProgrammatic) {
11390
+ this.touched = true;
11391
+ this.validation.validate(this);
11392
+ }
11391
11393
 
11392
- // Prevents cursor jumping in Safari.
11393
- const { selectionStart } = this.inputElement;
11394
+ // Prevents cursor jumping in Safari.
11395
+ const { selectionStart } = this.inputElement;
11394
11396
 
11395
- if (this.setSelectionInputTypes.includes(this.type)) {
11396
- this.updateComplete.then(() => {
11397
- try {
11398
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
11399
- } catch (error) { // eslint-disable-line
11400
- // do nothing
11401
- }
11402
- });
11397
+ if (this.setSelectionInputTypes.includes(this.type)) {
11398
+ this.updateComplete.then(() => {
11399
+ try {
11400
+ this.inputElement.setSelectionRange(selectionStart, selectionStart);
11401
+ } catch (error) { // eslint-disable-line
11402
+ // do nothing
11403
+ }
11404
+ });
11405
+ }
11403
11406
  }
11404
11407
  }
11405
11408
 
@@ -11432,6 +11435,11 @@ class BaseInput extends AuroElement$1 {
11432
11435
  this.inputElement.scrollLeft = 100;
11433
11436
 
11434
11437
  if (!this.noValidate) {
11438
+ // For credit card inputs with mask, ensure value is synced from mask instance
11439
+ if (this.type === 'credit-card' && this.maskInstance) {
11440
+ this.value = this.maskInstance.value;
11441
+ }
11442
+
11435
11443
  this.validation.validate(this);
11436
11444
  }
11437
11445
  }
@@ -12094,7 +12102,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12094
12102
  }
12095
12103
  };
12096
12104
 
12097
- var formkitVersion$1 = '202602201708';
12105
+ var formkitVersion$1 = '202602232116';
12098
12106
 
12099
12107
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12100
12108
  // See LICENSE in the project root for license information.
@@ -13121,7 +13129,7 @@ class AuroBibtemplate extends i$4 {
13121
13129
  }
13122
13130
  }
13123
13131
 
13124
- var formkitVersion = '202602201708';
13132
+ var formkitVersion = '202602232116';
13125
13133
 
13126
13134
  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}`;
13127
13135
 
@@ -4331,7 +4331,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4331
4331
  }
4332
4332
  };
4333
4333
 
4334
- var formkitVersion$2 = '202602201708';
4334
+ var formkitVersion$2 = '202602232116';
4335
4335
 
4336
4336
  let AuroElement$2 = class AuroElement extends LitElement {
4337
4337
  static get properties() {
@@ -11305,31 +11305,34 @@ class BaseInput extends AuroElement$1 {
11305
11305
  // Process credit card type detection and formatting during input
11306
11306
  if (this.type === 'credit-card') {
11307
11307
  this.processCreditCard();
11308
- }
11308
+ this.touched = true;
11309
+ this.validation.validate(this);
11310
+ } else {
11309
11311
 
11310
- // Sets value property to value of element value (el.value).
11311
- this.value = this.inputElement.value;
11312
+ // Sets value property to value of element value (el.value).
11313
+ this.value = this.inputElement.value;
11312
11314
 
11313
- // Determine if the value change was programmatic, including autofill.
11314
- const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11315
+ // Determine if the value change was programmatic, including autofill.
11316
+ const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11315
11317
 
11316
- // Validation on input or programmatic value change (including autofill).
11317
- if (this.validateOnInput || inputWasProgrammatic) {
11318
- this.touched = true;
11319
- this.validation.validate(this);
11320
- }
11318
+ // Validation on input or programmatic value change (including autofill).
11319
+ if (this.validateOnInput || inputWasProgrammatic) {
11320
+ this.touched = true;
11321
+ this.validation.validate(this);
11322
+ }
11321
11323
 
11322
- // Prevents cursor jumping in Safari.
11323
- const { selectionStart } = this.inputElement;
11324
+ // Prevents cursor jumping in Safari.
11325
+ const { selectionStart } = this.inputElement;
11324
11326
 
11325
- if (this.setSelectionInputTypes.includes(this.type)) {
11326
- this.updateComplete.then(() => {
11327
- try {
11328
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
11329
- } catch (error) { // eslint-disable-line
11330
- // do nothing
11331
- }
11332
- });
11327
+ if (this.setSelectionInputTypes.includes(this.type)) {
11328
+ this.updateComplete.then(() => {
11329
+ try {
11330
+ this.inputElement.setSelectionRange(selectionStart, selectionStart);
11331
+ } catch (error) { // eslint-disable-line
11332
+ // do nothing
11333
+ }
11334
+ });
11335
+ }
11333
11336
  }
11334
11337
  }
11335
11338
 
@@ -11362,6 +11365,11 @@ class BaseInput extends AuroElement$1 {
11362
11365
  this.inputElement.scrollLeft = 100;
11363
11366
 
11364
11367
  if (!this.noValidate) {
11368
+ // For credit card inputs with mask, ensure value is synced from mask instance
11369
+ if (this.type === 'credit-card' && this.maskInstance) {
11370
+ this.value = this.maskInstance.value;
11371
+ }
11372
+
11365
11373
  this.validation.validate(this);
11366
11374
  }
11367
11375
  }
@@ -12024,7 +12032,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12024
12032
  }
12025
12033
  };
12026
12034
 
12027
- var formkitVersion$1 = '202602201708';
12035
+ var formkitVersion$1 = '202602232116';
12028
12036
 
12029
12037
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12030
12038
  // See LICENSE in the project root for license information.
@@ -13051,7 +13059,7 @@ class AuroBibtemplate extends LitElement {
13051
13059
  }
13052
13060
  }
13053
13061
 
13054
- var formkitVersion = '202602201708';
13062
+ var formkitVersion = '202602232116';
13055
13063
 
13056
13064
  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}`;
13057
13065
 
@@ -4331,7 +4331,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4331
4331
  }
4332
4332
  };
4333
4333
 
4334
- var formkitVersion$2 = '202602201708';
4334
+ var formkitVersion$2 = '202602232116';
4335
4335
 
4336
4336
  let AuroElement$2 = class AuroElement extends LitElement {
4337
4337
  static get properties() {
@@ -11305,31 +11305,34 @@ class BaseInput extends AuroElement$1 {
11305
11305
  // Process credit card type detection and formatting during input
11306
11306
  if (this.type === 'credit-card') {
11307
11307
  this.processCreditCard();
11308
- }
11308
+ this.touched = true;
11309
+ this.validation.validate(this);
11310
+ } else {
11309
11311
 
11310
- // Sets value property to value of element value (el.value).
11311
- this.value = this.inputElement.value;
11312
+ // Sets value property to value of element value (el.value).
11313
+ this.value = this.inputElement.value;
11312
11314
 
11313
- // Determine if the value change was programmatic, including autofill.
11314
- const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11315
+ // Determine if the value change was programmatic, including autofill.
11316
+ const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
11315
11317
 
11316
- // Validation on input or programmatic value change (including autofill).
11317
- if (this.validateOnInput || inputWasProgrammatic) {
11318
- this.touched = true;
11319
- this.validation.validate(this);
11320
- }
11318
+ // Validation on input or programmatic value change (including autofill).
11319
+ if (this.validateOnInput || inputWasProgrammatic) {
11320
+ this.touched = true;
11321
+ this.validation.validate(this);
11322
+ }
11321
11323
 
11322
- // Prevents cursor jumping in Safari.
11323
- const { selectionStart } = this.inputElement;
11324
+ // Prevents cursor jumping in Safari.
11325
+ const { selectionStart } = this.inputElement;
11324
11326
 
11325
- if (this.setSelectionInputTypes.includes(this.type)) {
11326
- this.updateComplete.then(() => {
11327
- try {
11328
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
11329
- } catch (error) { // eslint-disable-line
11330
- // do nothing
11331
- }
11332
- });
11327
+ if (this.setSelectionInputTypes.includes(this.type)) {
11328
+ this.updateComplete.then(() => {
11329
+ try {
11330
+ this.inputElement.setSelectionRange(selectionStart, selectionStart);
11331
+ } catch (error) { // eslint-disable-line
11332
+ // do nothing
11333
+ }
11334
+ });
11335
+ }
11333
11336
  }
11334
11337
  }
11335
11338
 
@@ -11362,6 +11365,11 @@ class BaseInput extends AuroElement$1 {
11362
11365
  this.inputElement.scrollLeft = 100;
11363
11366
 
11364
11367
  if (!this.noValidate) {
11368
+ // For credit card inputs with mask, ensure value is synced from mask instance
11369
+ if (this.type === 'credit-card' && this.maskInstance) {
11370
+ this.value = this.maskInstance.value;
11371
+ }
11372
+
11365
11373
  this.validation.validate(this);
11366
11374
  }
11367
11375
  }
@@ -12024,7 +12032,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12024
12032
  }
12025
12033
  };
12026
12034
 
12027
- var formkitVersion$1 = '202602201708';
12035
+ var formkitVersion$1 = '202602232116';
12028
12036
 
12029
12037
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12030
12038
  // See LICENSE in the project root for license information.
@@ -13051,7 +13059,7 @@ class AuroBibtemplate extends LitElement {
13051
13059
  }
13052
13060
  }
13053
13061
 
13054
- var formkitVersion = '202602201708';
13062
+ var formkitVersion = '202602232116';
13055
13063
 
13056
13064
  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}`;
13057
13065
 
@@ -1442,7 +1442,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1442
1442
  }
1443
1443
  };
1444
1444
 
1445
- var formkitVersion$1 = '202602201708';
1445
+ var formkitVersion$1 = '202602232116';
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.
@@ -1827,7 +1827,7 @@ class AuroCounter extends i$2 {
1827
1827
  aria-valuemax="${this.max}"
1828
1828
  aria-valuemin="${this.min}"
1829
1829
  aria-valuenow="${this.value}"
1830
- aria-valuetext="${this.value !== undefined ? this.value : this.min}"
1830
+ aria-valuetext="'${this.value !== undefined ? this.value : this.min}'"
1831
1831
  role="spinbutton"
1832
1832
  tabindex="${this.disabled ? '-1' : '0'}"
1833
1833
  >
@@ -5217,7 +5217,7 @@ class AuroHelpText extends i$2 {
5217
5217
  }
5218
5218
  }
5219
5219
 
5220
- var formkitVersion = '202602201708';
5220
+ var formkitVersion = '202602232116';
5221
5221
 
5222
5222
  let AuroElement$1 = class AuroElement extends i$2 {
5223
5223
  static get properties() {
@@ -1442,7 +1442,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1442
1442
  }
1443
1443
  };
1444
1444
 
1445
- var formkitVersion$1 = '202602201708';
1445
+ var formkitVersion$1 = '202602232116';
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.
@@ -1827,7 +1827,7 @@ class AuroCounter extends i$2 {
1827
1827
  aria-valuemax="${this.max}"
1828
1828
  aria-valuemin="${this.min}"
1829
1829
  aria-valuenow="${this.value}"
1830
- aria-valuetext="${this.value !== undefined ? this.value : this.min}"
1830
+ aria-valuetext="'${this.value !== undefined ? this.value : this.min}'"
1831
1831
  role="spinbutton"
1832
1832
  tabindex="${this.disabled ? '-1' : '0'}"
1833
1833
  >
@@ -5217,7 +5217,7 @@ class AuroHelpText extends i$2 {
5217
5217
  }
5218
5218
  }
5219
5219
 
5220
- var formkitVersion = '202602201708';
5220
+ var formkitVersion = '202602232116';
5221
5221
 
5222
5222
  let AuroElement$1 = class AuroElement extends i$2 {
5223
5223
  static get properties() {
@@ -1392,7 +1392,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1392
1392
  }
1393
1393
  };
1394
1394
 
1395
- var formkitVersion$1 = '202602201708';
1395
+ var formkitVersion$1 = '202602232116';
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.
@@ -1777,7 +1777,7 @@ class AuroCounter extends LitElement {
1777
1777
  aria-valuemax="${this.max}"
1778
1778
  aria-valuemin="${this.min}"
1779
1779
  aria-valuenow="${this.value}"
1780
- aria-valuetext="${this.value !== undefined ? this.value : this.min}"
1780
+ aria-valuetext="'${this.value !== undefined ? this.value : this.min}'"
1781
1781
  role="spinbutton"
1782
1782
  tabindex="${this.disabled ? '-1' : '0'}"
1783
1783
  >
@@ -5149,7 +5149,7 @@ class AuroHelpText extends LitElement {
5149
5149
  }
5150
5150
  }
5151
5151
 
5152
- var formkitVersion = '202602201708';
5152
+ var formkitVersion = '202602232116';
5153
5153
 
5154
5154
  let AuroElement$1 = class AuroElement extends LitElement {
5155
5155
  static get properties() {
@@ -1392,7 +1392,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1392
1392
  }
1393
1393
  };
1394
1394
 
1395
- var formkitVersion$1 = '202602201708';
1395
+ var formkitVersion$1 = '202602232116';
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.
@@ -1777,7 +1777,7 @@ class AuroCounter extends LitElement {
1777
1777
  aria-valuemax="${this.max}"
1778
1778
  aria-valuemin="${this.min}"
1779
1779
  aria-valuenow="${this.value}"
1780
- aria-valuetext="${this.value !== undefined ? this.value : this.min}"
1780
+ aria-valuetext="'${this.value !== undefined ? this.value : this.min}'"
1781
1781
  role="spinbutton"
1782
1782
  tabindex="${this.disabled ? '-1' : '0'}"
1783
1783
  >
@@ -5149,7 +5149,7 @@ class AuroHelpText extends LitElement {
5149
5149
  }
5150
5150
  }
5151
5151
 
5152
- var formkitVersion = '202602201708';
5152
+ var formkitVersion = '202602232116';
5153
5153
 
5154
5154
  let AuroElement$1 = class AuroElement extends LitElement {
5155
5155
  static get properties() {
@@ -9537,7 +9537,7 @@ class AuroBibtemplate extends i$1 {
9537
9537
  }
9538
9538
  }
9539
9539
 
9540
- var formkitVersion$2 = '202602201708';
9540
+ var formkitVersion$2 = '202602232116';
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}}
@@ -13350,7 +13350,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13350
13350
  }
13351
13351
  };
13352
13352
 
13353
- var formkitVersion$1 = '202602201708';
13353
+ var formkitVersion$1 = '202602232116';
13354
13354
 
13355
13355
  let AuroElement$2 = class AuroElement extends i$1 {
13356
13356
  static get properties() {
@@ -20331,31 +20331,34 @@ class BaseInput extends AuroElement$1 {
20331
20331
  // Process credit card type detection and formatting during input
20332
20332
  if (this.type === 'credit-card') {
20333
20333
  this.processCreditCard();
20334
- }
20334
+ this.touched = true;
20335
+ this.validation.validate(this);
20336
+ } else {
20335
20337
 
20336
- // Sets value property to value of element value (el.value).
20337
- this.value = this.inputElement.value;
20338
+ // Sets value property to value of element value (el.value).
20339
+ this.value = this.inputElement.value;
20338
20340
 
20339
- // Determine if the value change was programmatic, including autofill.
20340
- const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
20341
+ // Determine if the value change was programmatic, including autofill.
20342
+ const inputWasProgrammatic = !this.matches(":focus") || event.isProgrammatic;
20341
20343
 
20342
- // Validation on input or programmatic value change (including autofill).
20343
- if (this.validateOnInput || inputWasProgrammatic) {
20344
- this.touched = true;
20345
- this.validation.validate(this);
20346
- }
20344
+ // Validation on input or programmatic value change (including autofill).
20345
+ if (this.validateOnInput || inputWasProgrammatic) {
20346
+ this.touched = true;
20347
+ this.validation.validate(this);
20348
+ }
20347
20349
 
20348
- // Prevents cursor jumping in Safari.
20349
- const { selectionStart } = this.inputElement;
20350
+ // Prevents cursor jumping in Safari.
20351
+ const { selectionStart } = this.inputElement;
20350
20352
 
20351
- if (this.setSelectionInputTypes.includes(this.type)) {
20352
- this.updateComplete.then(() => {
20353
- try {
20354
- this.inputElement.setSelectionRange(selectionStart, selectionStart);
20355
- } catch (error) { // eslint-disable-line
20356
- // do nothing
20357
- }
20358
- });
20353
+ if (this.setSelectionInputTypes.includes(this.type)) {
20354
+ this.updateComplete.then(() => {
20355
+ try {
20356
+ this.inputElement.setSelectionRange(selectionStart, selectionStart);
20357
+ } catch (error) { // eslint-disable-line
20358
+ // do nothing
20359
+ }
20360
+ });
20361
+ }
20359
20362
  }
20360
20363
  }
20361
20364
 
@@ -20388,6 +20391,11 @@ class BaseInput extends AuroElement$1 {
20388
20391
  this.inputElement.scrollLeft = 100;
20389
20392
 
20390
20393
  if (!this.noValidate) {
20394
+ // For credit card inputs with mask, ensure value is synced from mask instance
20395
+ if (this.type === 'credit-card' && this.maskInstance) {
20396
+ this.value = this.maskInstance.value;
20397
+ }
20398
+
20391
20399
  this.validation.validate(this);
20392
20400
  }
20393
20401
  }
@@ -21050,7 +21058,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21050
21058
  }
21051
21059
  };
21052
21060
 
21053
- var formkitVersion = '202602201708';
21061
+ var formkitVersion = '202602232116';
21054
21062
 
21055
21063
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21056
21064
  // See LICENSE in the project root for license information.