@brightspace-ui/core 2.183.0 → 2.183.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.
@@ -998,7 +998,7 @@ class Tooltip extends RtlMixin(LitElement) {
998
998
  await clone.updateComplete;
999
999
  }
1000
1000
 
1001
- this._truncating = clone.scrollWidth > target.offsetWidth;
1001
+ this._truncating = (clone.scrollWidth - target.offsetWidth) > 2; // Safari adds 1px to scrollWidth necessitating a subtraction comparison.
1002
1002
  this._resizeRunSinceTruncationCheck = false;
1003
1003
  target.removeChild(cloneContainer);
1004
1004
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.183.0",
3
+ "version": "2.183.1",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",