@aurodesignsystem/auro-formkit 5.2.2 → 5.2.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 (34) hide show
  1. package/CHANGELOG.md +10 -3
  2. package/components/combobox/demo/api.md +2 -2
  3. package/components/combobox/demo/api.min.js +151 -75
  4. package/components/combobox/demo/index.min.js +149 -73
  5. package/components/combobox/dist/auro-combobox.d.ts +9 -0
  6. package/components/combobox/dist/index.js +83 -24
  7. package/components/combobox/dist/registered.js +83 -24
  8. package/components/counter/demo/api.min.js +99 -67
  9. package/components/counter/demo/index.min.js +99 -67
  10. package/components/counter/dist/index.js +18 -3
  11. package/components/counter/dist/registered.js +18 -3
  12. package/components/datepicker/demo/api.min.js +197 -171
  13. package/components/datepicker/demo/index.min.js +197 -171
  14. package/components/datepicker/dist/index.js +18 -3
  15. package/components/datepicker/dist/registered.js +18 -3
  16. package/components/dropdown/demo/api.min.js +48 -16
  17. package/components/dropdown/demo/index.min.js +48 -16
  18. package/components/dropdown/dist/auro-dropdown.d.ts +2 -0
  19. package/components/dropdown/dist/index.js +18 -3
  20. package/components/dropdown/dist/registered.js +18 -3
  21. package/components/menu/demo/api.min.js +8 -2
  22. package/components/menu/demo/index.min.js +8 -2
  23. package/components/menu/dist/index.js +8 -2
  24. package/components/menu/dist/registered.js +8 -2
  25. package/components/radio/demo/api.min.js +4 -4
  26. package/components/radio/demo/index.min.js +4 -4
  27. package/components/radio/dist/index.js +4 -4
  28. package/components/radio/dist/registered.js +4 -4
  29. package/components/select/demo/api.min.js +109 -50
  30. package/components/select/demo/index.min.js +109 -50
  31. package/components/select/dist/auro-select.d.ts +2 -0
  32. package/components/select/dist/index.js +46 -10
  33. package/components/select/dist/registered.js +46 -10
  34. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,10 +1,17 @@
1
- ## [5.2.2](https://github.com/AlaskaAirlines/auro-formkit/compare/v5.2.1...v5.2.2) (2025-08-13)
1
+ ## [5.2.3](https://github.com/AlaskaAirlines/auro-formkit/compare/v5.2.2...v5.2.3) (2025-08-18)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * fixed position the bib when open and isBibFullscreen ([3d3bd5a](https://github.com/AlaskaAirlines/auro-formkit/commit/3d3bd5ab9600659aab18a32f9375e22e8827f50a))
7
- * prevent menuoptions from being wider than the device width ([baf8c52](https://github.com/AlaskaAirlines/auro-formkit/commit/baf8c526fc2b6e26d4262bda7c49442bfc10df34))
6
+ * chromium-related input focus in combobox ([fd1b64d](https://github.com/AlaskaAirlines/auro-formkit/commit/fd1b64d405b45a5c09abd3306f950e796efef5f3))
7
+ * ensure popover visibility only triggers when bib element has a value ([3d0d549](https://github.com/AlaskaAirlines/auro-formkit/commit/3d0d5495440cccb85e08873de3e907ee07202aa8))
8
+ * implement manual popover control for dropdown component ([4798a34](https://github.com/AlaskaAirlines/auro-formkit/commit/4798a344031545d5762cb1a2809ff099eae2617f))
9
+ * improve aria-invalid attribute handling for error and validity states ([6a910d0](https://github.com/AlaskaAirlines/auro-formkit/commit/6a910d08e4dbf407f4ff98c16724bfdcb2d26944))
10
+ * make `loading` attr to show loading slots in combobox bib ([935d5e8](https://github.com/AlaskaAirlines/auro-formkit/commit/935d5e8e08b72a46120946880b1eb559b0fcc158))
11
+ * menu to notify `auroMenu-selectedOption` event only selected menu's value is changed ([aa29a1f](https://github.com/AlaskaAirlines/auro-formkit/commit/aa29a1f6c3acf5e11a48564f03924be79e9f704c))
12
+ * move aria-invalid logic to group ([d937fb0](https://github.com/AlaskaAirlines/auro-formkit/commit/d937fb0b4d1d54e362204718772d840bf6fecd31))
13
+ * remove unnecessary transform and fullscreen positioning for dropdown component ([585a8fb](https://github.com/AlaskaAirlines/auro-formkit/commit/585a8fb53bb0b44e94a1cd84602eb1b8f420c51e))
14
+ * set default menu size and shape in select/combobox correctly ([bbdee89](https://github.com/AlaskaAirlines/auro-formkit/commit/bbdee89476ed0a423980a54498c84fdb6bd8cc5b))
8
15
 
9
16
  ### Changelog
10
17
 
@@ -1154,8 +1154,8 @@ export function auroMenuLoadingExample() {
1154
1154
 
1155
1155
  }
1156
1156
 
1157
- combobox.addEventListener("input", (e) => {
1158
- if (e.target.value && e.target.value !== e.target.optionSelected?.textContent) {
1157
+ combobox.addEventListener("inputValue", (e) => {
1158
+ if (e.target.inputValue && e.target.value !== e.target.inputValue) {
1159
1159
  load();
1160
1160
  }
1161
1161
  });