@aurodesignsystem/auro-library 3.0.12 → 3.0.13
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 +7 -0
- package/package.json +1 -1
- package/scripts/runtime/floatingUI.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.13](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.12...v3.0.13) (2025-03-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* correct method call to hide dropdown in AuroFloatingUI class ([27d9c6c](https://github.com/AlaskaAirlines/auro-library/commit/27d9c6cc8df7f5e6603e5dc231fae2d72a75a486))
|
|
9
|
+
|
|
3
10
|
## [3.0.12](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.11...v3.0.12) (2025-03-19)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem/auro-library",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13",
|
|
4
4
|
"description": "This repository holds shared scripts, utilities, and workflows utilized across repositories along the Auro Design System.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -243,7 +243,7 @@ export default class AuroFloatingUI {
|
|
|
243
243
|
updateCurrentExpandedDropdown() {
|
|
244
244
|
// Close any other dropdown that is already open
|
|
245
245
|
if (document.expandedAuroFormkitDropdown) {
|
|
246
|
-
|
|
246
|
+
document.expandedAuroFormkitDropdown.hide;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
document.expandedAuroFormkitDropdown = this;
|