@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.
- package/CHANGELOG.md +10 -3
- package/components/combobox/demo/api.md +2 -2
- package/components/combobox/demo/api.min.js +151 -75
- package/components/combobox/demo/index.min.js +149 -73
- package/components/combobox/dist/auro-combobox.d.ts +9 -0
- package/components/combobox/dist/index.js +83 -24
- package/components/combobox/dist/registered.js +83 -24
- package/components/counter/demo/api.min.js +99 -67
- package/components/counter/demo/index.min.js +99 -67
- package/components/counter/dist/index.js +18 -3
- package/components/counter/dist/registered.js +18 -3
- package/components/datepicker/demo/api.min.js +197 -171
- package/components/datepicker/demo/index.min.js +197 -171
- package/components/datepicker/dist/index.js +18 -3
- package/components/datepicker/dist/registered.js +18 -3
- package/components/dropdown/demo/api.min.js +48 -16
- package/components/dropdown/demo/index.min.js +48 -16
- package/components/dropdown/dist/auro-dropdown.d.ts +2 -0
- package/components/dropdown/dist/index.js +18 -3
- package/components/dropdown/dist/registered.js +18 -3
- package/components/menu/demo/api.min.js +8 -2
- package/components/menu/demo/index.min.js +8 -2
- package/components/menu/dist/index.js +8 -2
- package/components/menu/dist/registered.js +8 -2
- package/components/radio/demo/api.min.js +4 -4
- package/components/radio/demo/index.min.js +4 -4
- package/components/radio/dist/index.js +4 -4
- package/components/radio/dist/registered.js +4 -4
- package/components/select/demo/api.min.js +109 -50
- package/components/select/demo/index.min.js +109 -50
- package/components/select/dist/auro-select.d.ts +2 -0
- package/components/select/dist/index.js +46 -10
- package/components/select/dist/registered.js +46 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
## [5.2.
|
|
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
|
-
*
|
|
7
|
-
*
|
|
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("
|
|
1158
|
-
if (e.target.
|
|
1157
|
+
combobox.addEventListener("inputValue", (e) => {
|
|
1158
|
+
if (e.target.inputValue && e.target.value !== e.target.inputValue) {
|
|
1159
1159
|
load();
|
|
1160
1160
|
}
|
|
1161
1161
|
});
|