@aurodesignsystem/auro-formkit 5.1.0-rc-1223.1 → 5.1.0-rc-1237.1
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 +4 -1
- package/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.md +7 -6
- package/components/combobox/demo/api.min.js +1651 -987
- package/components/combobox/demo/index.min.js +1651 -987
- package/components/combobox/dist/auro-combobox.d.ts +8 -7
- package/components/combobox/dist/index.js +87 -86
- package/components/combobox/dist/registered.js +87 -86
- package/components/counter/demo/api.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +2 -2
- package/components/counter/dist/registered.js +2 -2
- package/components/datepicker/demo/api.min.js +7 -6
- package/components/datepicker/demo/index.min.js +7 -6
- package/components/datepicker/dist/auro-datepicker.d.ts +1 -1
- package/components/datepicker/dist/index.js +7 -6
- package/components/datepicker/dist/registered.js +7 -6
- package/components/dropdown/demo/api.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/input/demo/api.min.js +2 -1
- package/components/input/demo/index.min.js +2 -1
- package/components/input/dist/index.js +2 -1
- package/components/input/dist/registered.js +2 -1
- package/components/menu/demo/api.js +4 -0
- package/components/menu/demo/api.md +271 -26
- package/components/menu/demo/api.min.js +1591 -863
- package/components/menu/demo/index.html +1 -0
- package/components/menu/demo/index.js +2 -0
- package/components/menu/demo/index.md +95 -1
- package/components/menu/demo/index.min.js +1524 -810
- package/components/menu/dist/auro-menu.context.d.ts +222 -0
- package/components/menu/dist/auro-menu.d.ts +93 -53
- package/components/menu/dist/auro-menuoption.d.ts +115 -13
- package/components/menu/dist/index.js +1441 -798
- package/components/menu/dist/registered.js +1440 -809
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.md +8 -7
- package/components/select/demo/api.min.js +1573 -1006
- package/components/select/demo/index.min.js +1573 -1006
- package/components/select/dist/auro-select.d.ts +11 -35
- package/components/select/dist/index.js +64 -160
- package/components/select/dist/registered.js +64 -160
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# [5.1.0-rc-
|
|
1
|
+
# [5.1.0-rc-1237.1](https://github.com/AlaskaAirlines/auro-formkit/compare/v5.0.0...v5.1.0-rc-1237.1) (2025-11-25)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
* remove redundant hover background color style from dropdown and ensure consistent styling in select component ([85c99ea](https://github.com/AlaskaAirlines/auro-formkit/commit/85c99ea0b02d25aade186f0e3da4d1b62ac5c972))
|
|
53
53
|
* remove unnecessary transform and fullscreen positioning for dropdown component ([585a8fb](https://github.com/AlaskaAirlines/auro-formkit/commit/585a8fb53bb0b44e94a1cd84602eb1b8f420c51e))
|
|
54
54
|
* reorder task dependencies in turbo.json for consistent build order ([370d452](https://github.com/AlaskaAirlines/auro-formkit/commit/370d4525bcad94dabf318939aed410c7b48b417f))
|
|
55
|
+
* repair a couple bugs introduced by changes ([e228f99](https://github.com/AlaskaAirlines/auro-formkit/commit/e228f99c3e39f20e0f8018844e21b1e1435ec7d9))
|
|
55
56
|
* replace incorrect `elem.persistValue` reference with correct `elem.persistInput` ([47eb89c](https://github.com/AlaskaAirlines/auro-formkit/commit/47eb89cc8e293e6ead96b0ff98e097613fc7fafd))
|
|
56
57
|
* resolve layout issue with snowflake layout when input is errored and the user hovers ([111c28c](https://github.com/AlaskaAirlines/auro-formkit/commit/111c28cc18ff645e2f238cb1eb19663a4f0ed31c))
|
|
57
58
|
* restore double click to input select behavior [#1174](https://github.com/AlaskaAirlines/auro-formkit/issues/1174) ([e83ff8f](https://github.com/AlaskaAirlines/auro-formkit/commit/e83ff8f6bd20bc5dfd2027824aca726f16ba9d11))
|
|
@@ -69,12 +70,14 @@
|
|
|
69
70
|
* update task dependencies in turbo.json for improved build order ([9ad4535](https://github.com/AlaskaAirlines/auro-formkit/commit/9ad4535b4b204051d25e2fae2cff293f95f562d7))
|
|
70
71
|
* update version correctly for combobox helptext ([f356a84](https://github.com/AlaskaAirlines/auro-formkit/commit/f356a84fbd68f54e22d546b07b1260897f3e4ea5))
|
|
71
72
|
* value of input is now correctly checked when `persistInput` is not set on combo boxes ([a845ac9](https://github.com/AlaskaAirlines/auro-formkit/commit/a845ac9ea280d6bc57a443aa83a08187e4e06699))
|
|
73
|
+
* wait for child's attr to update before validate on `error` update [#1191](https://github.com/AlaskaAirlines/auro-formkit/issues/1191) ([931c296](https://github.com/AlaskaAirlines/auro-formkit/commit/931c296933727d02ec18d9b5ab59ded140fbb134))
|
|
72
74
|
|
|
73
75
|
|
|
74
76
|
### Features
|
|
75
77
|
|
|
76
78
|
* [#1132](https://github.com/AlaskaAirlines/auro-formkit/issues/1132) remove styles that hide the "clear" button for the input in the fullscreen bib for combobox ([4cabd8f](https://github.com/AlaskaAirlines/auro-formkit/commit/4cabd8f183ffbc2982448a7bfa100a50be148050))
|
|
77
79
|
* [#1136](https://github.com/AlaskaAirlines/auro-formkit/issues/1136) add input event to native input for programmatic value changes ([9c6c111](https://github.com/AlaskaAirlines/auro-formkit/commit/9c6c1111571c0d18f528aa7c976ade5edf1df689))
|
|
80
|
+
* [#1187](https://github.com/AlaskaAirlines/auro-formkit/issues/1187) - integrate context management for menu options and selection handling ([eb6f331](https://github.com/AlaskaAirlines/auro-formkit/commit/eb6f33192d684449d9b2f2792628f455191c3080))
|
|
78
81
|
* [#680](https://github.com/AlaskaAirlines/auro-formkit/issues/680) add reference dates functionality to datepicker component ([09399ec](https://github.com/AlaskaAirlines/auro-formkit/commit/09399ec2509b7f5cdddd83ccf04465a4b67e4561))
|
|
79
82
|
* add `appearance` deprecate `ondark` on checkbox [#1153](https://github.com/AlaskaAirlines/auro-formkit/issues/1153) ([5f82d07](https://github.com/AlaskaAirlines/auro-formkit/commit/5f82d07fcd34eb5a83bf0fadc62a043db5c39f30))
|
|
80
83
|
* add `appearance` deprecate `ondark` on combobox [#1149](https://github.com/AlaskaAirlines/auro-formkit/issues/1149) ([6fefa6d](https://github.com/AlaskaAirlines/auro-formkit/commit/6fefa6ddbc4689d0267a1a4d3f909ab6d8321a1a))
|
|
@@ -1607,7 +1607,7 @@ class AuroHelpText extends i$2 {
|
|
|
1607
1607
|
}
|
|
1608
1608
|
}
|
|
1609
1609
|
|
|
1610
|
-
var formkitVersion = '
|
|
1610
|
+
var formkitVersion = '202511252346';
|
|
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 = '
|
|
1602
|
+
var formkitVersion = '202511252346';
|
|
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 = '
|
|
1555
|
+
var formkitVersion = '202511252346';
|
|
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 = '
|
|
1555
|
+
var formkitVersion = '202511252346';
|
|
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
|
|
65
|
-
|
|
66
|
-
| `auroCombobox-valueSet` | `CustomEvent<any>`
|
|
67
|
-
| `auroFormElement-validated` |
|
|
68
|
-
| [input](#input) | `CustomEvent<any>`
|
|
69
|
-
| [inputValue](#inputValue) | `CustomEvent<{ value: string \| undefined; }>`
|
|
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
|
|