@aurodesignsystem/auro-library 5.5.0 → 5.5.2

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,19 @@
1
1
  # Semantic Release Automated Changelog
2
2
 
3
+ ## [5.5.2](https://github.com/AlaskaAirlines/auro-library/compare/v5.5.1...v5.5.2) (2025-08-20)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * rename import to .mjs for transportAttributes in a11yTransporter ([650f3e7](https://github.com/AlaskaAirlines/auro-library/commit/650f3e7544083915501d3a9685377ed212f7093a))
9
+
10
+ ## [5.5.1](https://github.com/AlaskaAirlines/auro-library/compare/v5.5.0...v5.5.1) (2025-08-20)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * convert a11ytransporter to be a module (.mjs) and add barrel file support ([846f5ab](https://github.com/AlaskaAirlines/auro-library/commit/846f5aba4586f3cca922ce363196e764936ea3ca))
16
+
3
17
  # [5.5.0](https://github.com/AlaskaAirlines/auro-library/compare/v5.4.0...v5.5.0) (2025-08-19)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurodesignsystem/auro-library",
3
- "version": "5.5.0",
3
+ "version": "5.5.2",
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",
@@ -1,4 +1,4 @@
1
- import { transportAttributes } from "./transportAttributes.js";
1
+ import { transportAttributes } from "./transportAttributes.mjs";
2
2
 
3
3
  const _matchers = {
4
4
  'aria-': attr => attr.startsWith('aria-'),
@@ -0,0 +1,2 @@
1
+ export { transportAriaAttributes, transportAllA11yAttributes } from "./a11yTransporter.mjs";
2
+ export { transportAttributes } from "./transportAttributes.mjs";