@aurodesignsystem/auro-library 5.3.0 → 5.3.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Semantic Release Automated Changelog
2
2
 
3
+ ## [5.3.1](https://github.com/AlaskaAirlines/auro-library/compare/v5.3.0...v5.3.1) (2025-07-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add contain: layout as needed to resolve issues with positioning in projects that use tailwindcss ([ad8474d](https://github.com/AlaskaAirlines/auro-library/commit/ad8474d958bcf088be880f494f0505e873819490))
9
+
3
10
  # [5.3.0](https://github.com/AlaskaAirlines/auro-library/compare/v5.2.3...v5.3.0) (2025-07-04)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurodesignsystem/auro-library",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
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",
@@ -231,6 +231,7 @@ export default class AuroFloatingUI {
231
231
  this.element.bib.style.left = "0px";
232
232
  this.element.bib.style.width = '';
233
233
  this.element.bib.style.height = '';
234
+ this.element.style.contain = '';
234
235
 
235
236
  // reset the size that was mirroring `size` css-part
236
237
  const bibContent = this.element.bib.shadowRoot.querySelector(".container");
@@ -255,6 +256,7 @@ export default class AuroFloatingUI {
255
256
  this.element.bib.style.position = '';
256
257
  this.element.bib.removeAttribute('isfullscreen');
257
258
  this.element.isBibFullscreen = false;
259
+ this.element.style.contain = 'layout';
258
260
  }
259
261
 
260
262
  const isChanged = this.strategy && this.strategy !== value;