@aurodesignsystem-dev/auro-formkit 0.0.0-pr1516.0 → 0.0.0-pr1518.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/components/checkbox/demo/customize.min.js +8 -6
  2. package/components/checkbox/demo/getting-started.min.js +8 -6
  3. package/components/checkbox/demo/index.min.js +8 -6
  4. package/components/checkbox/dist/index.js +8 -6
  5. package/components/checkbox/dist/registered.js +8 -6
  6. package/components/combobox/README.md +1 -1
  7. package/components/combobox/demo/customize.md +2 -10
  8. package/components/combobox/demo/customize.min.js +382 -466
  9. package/components/combobox/demo/getting-started.min.js +382 -462
  10. package/components/combobox/demo/index.md +1 -1
  11. package/components/combobox/demo/index.min.js +382 -462
  12. package/components/combobox/demo/keyboard-behavior.md +2 -142
  13. package/components/combobox/demo/readme.md +1 -1
  14. package/components/combobox/demo/why-combobox.md +2 -2
  15. package/components/combobox/dist/auro-combobox.d.ts +30 -14
  16. package/components/combobox/dist/index.js +382 -462
  17. package/components/combobox/dist/registered.js +382 -462
  18. package/components/counter/demo/customize.min.js +9 -7
  19. package/components/counter/demo/index.min.js +9 -7
  20. package/components/counter/dist/index.js +9 -7
  21. package/components/counter/dist/registered.js +9 -7
  22. package/components/datepicker/demo/customize.min.js +78 -169
  23. package/components/datepicker/demo/index.min.js +78 -169
  24. package/components/datepicker/dist/index.js +78 -169
  25. package/components/datepicker/dist/registered.js +78 -169
  26. package/components/dropdown/demo/customize.min.js +1 -1
  27. package/components/dropdown/demo/getting-started.min.js +1 -1
  28. package/components/dropdown/demo/index.min.js +1 -1
  29. package/components/dropdown/dist/index.js +1 -1
  30. package/components/dropdown/dist/registered.js +1 -1
  31. package/components/form/demo/customize.min.js +561 -816
  32. package/components/form/demo/getting-started.min.js +561 -816
  33. package/components/form/demo/index.min.js +561 -816
  34. package/components/form/demo/registerDemoDeps.min.js +561 -816
  35. package/components/input/demo/customize.min.js +67 -159
  36. package/components/input/demo/getting-started.min.js +67 -159
  37. package/components/input/demo/index.min.js +67 -159
  38. package/components/input/dist/auro-input.d.ts +1 -1
  39. package/components/input/dist/base-input.d.ts +3 -51
  40. package/components/input/dist/index.js +67 -159
  41. package/components/input/dist/registered.js +67 -159
  42. package/components/input/dist/utilities.d.ts +1 -1
  43. package/components/radio/demo/customize.min.js +8 -6
  44. package/components/radio/demo/getting-started.min.js +8 -6
  45. package/components/radio/demo/index.min.js +8 -6
  46. package/components/radio/dist/index.js +8 -6
  47. package/components/radio/dist/registered.js +8 -6
  48. package/components/select/demo/customize.min.js +9 -7
  49. package/components/select/demo/getting-started.min.js +9 -7
  50. package/components/select/demo/index.min.js +9 -7
  51. package/components/select/dist/index.js +9 -7
  52. package/components/select/dist/registered.js +9 -7
  53. package/custom-elements.json +1503 -1709
  54. package/package.json +1 -1
@@ -620,15 +620,17 @@ class AuroFormValidation {
620
620
  );
621
621
  }
622
622
 
623
- // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false;
624
- if (this.auroInputElements?.length === 2) {
625
- if (!this.auroInputElements[1].value || this.auroInputElements[1].length === 0) {
623
+ const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
624
+
625
+ // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false.
626
+ // Skip for combobox: its second auro-input is the fullscreen-bib mirror of the same value, not an independent
627
+ // field (datepicker is the intended consumer — start/end are independently required).
628
+ if (this.auroInputElements?.length === 2 && !isCombobox) {
629
+ if (!this.auroInputElements[1].value || this.auroInputElements[1].value.length === 0) {
626
630
  hasValue = false;
627
631
  }
628
632
  }
629
633
 
630
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
631
-
632
634
  if (isCombobox) {
633
635
 
634
636
  if (!elem.persistInput || elem.behavior === "filter") {
@@ -1099,7 +1101,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1099
1101
  }
1100
1102
  };
1101
1103
 
1102
- var formkitVersion$1 = '202606292156';
1104
+ var formkitVersion$1 = '202607011652';
1103
1105
 
1104
1106
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1105
1107
  // See LICENSE in the project root for license information.
@@ -5445,7 +5447,7 @@ class AuroHelpText extends i$2 {
5445
5447
  }
5446
5448
  }
5447
5449
 
5448
- var formkitVersion = '202606292156';
5450
+ var formkitVersion = '202607011652';
5449
5451
 
5450
5452
  let AuroElement$1 = class AuroElement extends i$2 {
5451
5453
  static get properties() {
@@ -620,15 +620,17 @@ class AuroFormValidation {
620
620
  );
621
621
  }
622
622
 
623
- // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false;
624
- if (this.auroInputElements?.length === 2) {
625
- if (!this.auroInputElements[1].value || this.auroInputElements[1].length === 0) {
623
+ const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
624
+
625
+ // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false.
626
+ // Skip for combobox: its second auro-input is the fullscreen-bib mirror of the same value, not an independent
627
+ // field (datepicker is the intended consumer — start/end are independently required).
628
+ if (this.auroInputElements?.length === 2 && !isCombobox) {
629
+ if (!this.auroInputElements[1].value || this.auroInputElements[1].value.length === 0) {
626
630
  hasValue = false;
627
631
  }
628
632
  }
629
633
 
630
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
631
-
632
634
  if (isCombobox) {
633
635
 
634
636
  if (!elem.persistInput || elem.behavior === "filter") {
@@ -1099,7 +1101,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1099
1101
  }
1100
1102
  };
1101
1103
 
1102
- var formkitVersion$1 = '202606292156';
1104
+ var formkitVersion$1 = '202607011652';
1103
1105
 
1104
1106
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1105
1107
  // See LICENSE in the project root for license information.
@@ -5445,7 +5447,7 @@ class AuroHelpText extends i$2 {
5445
5447
  }
5446
5448
  }
5447
5449
 
5448
- var formkitVersion = '202606292156';
5450
+ var formkitVersion = '202607011652';
5449
5451
 
5450
5452
  let AuroElement$1 = class AuroElement extends i$2 {
5451
5453
  static get properties() {
@@ -576,15 +576,17 @@ class AuroFormValidation {
576
576
  );
577
577
  }
578
578
 
579
- // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false;
580
- if (this.auroInputElements?.length === 2) {
581
- if (!this.auroInputElements[1].value || this.auroInputElements[1].length === 0) {
579
+ const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
580
+
581
+ // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false.
582
+ // Skip for combobox: its second auro-input is the fullscreen-bib mirror of the same value, not an independent
583
+ // field (datepicker is the intended consumer — start/end are independently required).
584
+ if (this.auroInputElements?.length === 2 && !isCombobox) {
585
+ if (!this.auroInputElements[1].value || this.auroInputElements[1].value.length === 0) {
582
586
  hasValue = false;
583
587
  }
584
588
  }
585
589
 
586
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
587
-
588
590
  if (isCombobox) {
589
591
 
590
592
  if (!elem.persistInput || elem.behavior === "filter") {
@@ -1049,7 +1051,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1049
1051
  }
1050
1052
  };
1051
1053
 
1052
- var formkitVersion$1 = '202606292156';
1054
+ var formkitVersion$1 = '202607011652';
1053
1055
 
1054
1056
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1055
1057
  // See LICENSE in the project root for license information.
@@ -5377,7 +5379,7 @@ class AuroHelpText extends LitElement {
5377
5379
  }
5378
5380
  }
5379
5381
 
5380
- var formkitVersion = '202606292156';
5382
+ var formkitVersion = '202607011652';
5381
5383
 
5382
5384
  let AuroElement$1 = class AuroElement extends LitElement {
5383
5385
  static get properties() {
@@ -576,15 +576,17 @@ class AuroFormValidation {
576
576
  );
577
577
  }
578
578
 
579
- // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false;
580
- if (this.auroInputElements?.length === 2) {
581
- if (!this.auroInputElements[1].value || this.auroInputElements[1].length === 0) {
579
+ const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
580
+
581
+ // If there is a second input in the elem and that value is undefined or an empty string set hasValue to false.
582
+ // Skip for combobox: its second auro-input is the fullscreen-bib mirror of the same value, not an independent
583
+ // field (datepicker is the intended consumer — start/end are independently required).
584
+ if (this.auroInputElements?.length === 2 && !isCombobox) {
585
+ if (!this.auroInputElements[1].value || this.auroInputElements[1].value.length === 0) {
582
586
  hasValue = false;
583
587
  }
584
588
  }
585
589
 
586
- const isCombobox = this.runtimeUtils.elementMatch(elem, 'auro-combobox');
587
-
588
590
  if (isCombobox) {
589
591
 
590
592
  if (!elem.persistInput || elem.behavior === "filter") {
@@ -1049,7 +1051,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1049
1051
  }
1050
1052
  };
1051
1053
 
1052
- var formkitVersion$1 = '202606292156';
1054
+ var formkitVersion$1 = '202607011652';
1053
1055
 
1054
1056
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
1055
1057
  // See LICENSE in the project root for license information.
@@ -5377,7 +5379,7 @@ class AuroHelpText extends LitElement {
5377
5379
  }
5378
5380
  }
5379
5381
 
5380
- var formkitVersion = '202606292156';
5382
+ var formkitVersion = '202607011652';
5381
5383
 
5382
5384
  let AuroElement$1 = class AuroElement extends LitElement {
5383
5385
  static get properties() {