@mezzanine-ui/react 0.12.1 → 0.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mezzanine-ui/react",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "description": "React components for mezzanine-ui",
5
5
  "author": "Mezzanine",
6
6
  "repository": {
@@ -31,9 +31,9 @@
31
31
  "react-dom": "^18.2.0"
32
32
  },
33
33
  "dependencies": {
34
- "@mezzanine-ui/core": "^0.12.1",
35
- "@mezzanine-ui/icons": "^0.12.1",
36
- "@mezzanine-ui/system": "^0.12.1",
34
+ "@mezzanine-ui/core": "^0.12.2",
35
+ "@mezzanine-ui/icons": "^0.12.2",
36
+ "@mezzanine-ui/system": "^0.12.2",
37
37
  "@popperjs/core": "^2.11.6",
38
38
  "@types/react-transition-group": "^4.4.5",
39
39
  "clsx": "^1.2.1",
@@ -3,6 +3,8 @@ function lockBodyScroll() {
3
3
  document.body.style.position = 'fixed';
4
4
  document.body.style.top = `-${scrollY}px`;
5
5
  document.body.style.overflow = 'hidden';
6
+ /** @NOTE workaround for layout breaking (need refactor) */
7
+ document.body.style.width = '100vw';
6
8
  }
7
9
  function allowBodyScroll() {
8
10
  var _a, _b;