@aurodesignsystem-dev/auro-formkit 0.0.0-pr1222.2 → 0.0.0-pr1225.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 (49) 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.md +7 -6
  6. package/components/combobox/demo/api.min.js +1651 -987
  7. package/components/combobox/demo/index.min.js +1651 -987
  8. package/components/combobox/dist/auro-combobox.d.ts +9 -8
  9. package/components/combobox/dist/index.js +86 -85
  10. package/components/combobox/dist/registered.js +86 -85
  11. package/components/counter/demo/api.min.js +2 -2
  12. package/components/counter/demo/index.min.js +2 -2
  13. package/components/counter/dist/index.js +2 -2
  14. package/components/counter/dist/registered.js +2 -2
  15. package/components/datepicker/demo/api.min.js +4 -3
  16. package/components/datepicker/demo/index.min.js +4 -3
  17. package/components/datepicker/dist/index.js +4 -3
  18. package/components/datepicker/dist/registered.js +4 -3
  19. package/components/dropdown/demo/api.min.js +1 -1
  20. package/components/dropdown/demo/index.min.js +1 -1
  21. package/components/dropdown/dist/index.js +1 -1
  22. package/components/dropdown/dist/registered.js +1 -1
  23. package/components/input/demo/api.min.js +2 -1
  24. package/components/input/demo/index.min.js +2 -1
  25. package/components/input/dist/index.js +2 -1
  26. package/components/input/dist/registered.js +2 -1
  27. package/components/menu/demo/api.js +4 -0
  28. package/components/menu/demo/api.md +271 -26
  29. package/components/menu/demo/api.min.js +1591 -863
  30. package/components/menu/demo/index.html +1 -0
  31. package/components/menu/demo/index.js +2 -0
  32. package/components/menu/demo/index.md +95 -1
  33. package/components/menu/demo/index.min.js +1524 -810
  34. package/components/menu/dist/auro-menu.context.d.ts +222 -0
  35. package/components/menu/dist/auro-menu.d.ts +93 -53
  36. package/components/menu/dist/auro-menuoption.d.ts +115 -13
  37. package/components/menu/dist/index.js +1441 -798
  38. package/components/menu/dist/registered.js +1440 -809
  39. package/components/radio/demo/api.min.js +1 -1
  40. package/components/radio/demo/index.min.js +1 -1
  41. package/components/radio/dist/index.js +1 -1
  42. package/components/radio/dist/registered.js +1 -1
  43. package/components/select/demo/api.md +8 -7
  44. package/components/select/demo/api.min.js +1573 -1006
  45. package/components/select/demo/index.min.js +1573 -1006
  46. package/components/select/dist/auro-select.d.ts +11 -35
  47. package/components/select/dist/index.js +64 -160
  48. package/components/select/dist/registered.js +64 -160
  49. package/package.json +2 -1
@@ -1607,7 +1607,7 @@ class AuroHelpText extends i$2 {
1607
1607
  }
1608
1608
  }
1609
1609
 
1610
- var formkitVersion = '202511110049';
1610
+ var formkitVersion = '202511181730';
1611
1611
 
1612
1612
  // Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1613
1613
  // See LICENSE in the project root for license information.
@@ -1599,7 +1599,7 @@ class AuroHelpText extends i$2 {
1599
1599
  }
1600
1600
  }
1601
1601
 
1602
- var formkitVersion = '202511110049';
1602
+ var formkitVersion = '202511181730';
1603
1603
 
1604
1604
  // Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1605
1605
  // See LICENSE in the project root for license information.
@@ -1552,7 +1552,7 @@ class AuroHelpText extends LitElement {
1552
1552
  }
1553
1553
  }
1554
1554
 
1555
- var formkitVersion = '202511110049';
1555
+ var formkitVersion = '202511181730';
1556
1556
 
1557
1557
  // Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1558
1558
  // See LICENSE in the project root for license information.
@@ -1552,7 +1552,7 @@ class AuroHelpText extends LitElement {
1552
1552
  }
1553
1553
  }
1554
1554
 
1555
- var formkitVersion = '202511110049';
1555
+ var formkitVersion = '202511181730';
1556
1556
 
1557
1557
  // Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1558
1558
  // See LICENSE in the project root for license information.
@@ -55,18 +55,19 @@
55
55
  | [hideBib](#hideBib) | `(): void` | Hides the dropdown bib if its open. |
56
56
  | [isValid](#isValid) | `(): boolean` | Checks if the element is valid. |
57
57
  | [reset](#reset) | `(): void` | Resets component to initial state. |
58
+ | [setMenuValue](#setMenuValue) | `(value: string): void` | Sets the menu value if menu is available.<br /><br />**value**: The value to set on the menu. |
58
59
  | [showBib](#showBib) | `(): void` | Shows the dropdown bib if there are options to show. |
59
60
  | [updateActiveOption](#updateActiveOption) | `(index: number): void` | Updates the active option in the menu.<br /><br />**index**: Index of the option to make active. |
60
61
  | [validate](#validate) | `(force?: boolean \| undefined): void` | Validates value.<br /><br />**force**: Whether to force validation. |
61
62
 
62
63
  ## Events
63
64
 
64
- | Event | Type | Description |
65
- |-----------------------------|------------------------------------------------|--------------------------------------------------|
66
- | `auroCombobox-valueSet` | `CustomEvent<any>` | (Deprecated) Notifies that the component has a new value set. |
67
- | `auroFormElement-validated` | | Notifies that the component value(s) have been validated. |
68
- | [input](#input) | `CustomEvent<any>` | Notifies that the component has a new value set. |
69
- | [inputValue](#inputValue) | `CustomEvent<{ value: string \| undefined; }>` | Notifies that the components internal HTML5 input value has changed. |
65
+ | Event | Type | Description |
66
+ |-----------------------------|--------------------------------------------------|--------------------------------------------------|
67
+ | `auroCombobox-valueSet` | `CustomEvent<any>` | (Deprecated) Notifies that the component has a new value set. |
68
+ | `auroFormElement-validated` | | Notifies that the component value(s) have been validated. |
69
+ | [input](#input) | `CustomEvent<{ optionSelected: any; value: any; }>` | Notifies that the component has a new value set. |
70
+ | [inputValue](#inputValue) | `CustomEvent<{ value: string \| undefined; }>` | Notifies that the components internal HTML5 input value has changed. |
70
71
 
71
72
  ## Slots
72
73