@aurodesignsystem/auro-library 3.0.7 → 3.0.8

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Semantic Release Automated Changelog
2
2
 
3
+ ## [3.0.8](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.7...v3.0.8) (2025-02-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * temporarily comment out aria-expanded code [#105](https://github.com/AlaskaAirlines/auro-library/issues/105) ([b7cd263](https://github.com/AlaskaAirlines/auro-library/commit/b7cd2632047641d92b3557beef9450d4d9f109c2))
9
+
3
10
  ## [3.0.7](https://github.com/AlaskaAirlines/auro-library/compare/v3.0.6...v3.0.7) (2025-01-13)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurodesignsystem/auro-library",
3
- "version": "3.0.7",
3
+ "version": "3.0.8",
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",
@@ -130,7 +130,11 @@ export default class AuroFloatingUI {
130
130
 
131
131
  updateState() {
132
132
  const isVisible = this.element.isPopoverVisible;
133
- this.element.trigger.setAttribute('aria-expanded', isVisible);
133
+
134
+ // Refactor this to apply attribute to correct focusable element
135
+ // Reference Issue: https://github.com/AlaskaAirlines/auro-library/issues/105
136
+ //
137
+ // this.element.trigger.setAttribute('aria-expanded', isVisible);
134
138
 
135
139
  if (isVisible) {
136
140
  this.element.bib.setAttribute('data-show', true);