@lumx/react 3.11.1-alpha.1 → 3.11.1-alpha.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/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/popover/usePopoverStyle.tsx +1 -1
package/package.json
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"url": "https://github.com/lumapps/design-system/issues"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@lumx/core": "^3.11.1-alpha.
|
|
10
|
-
"@lumx/icons": "^3.11.1-alpha.
|
|
9
|
+
"@lumx/core": "^3.11.1-alpha.2",
|
|
10
|
+
"@lumx/icons": "^3.11.1-alpha.2",
|
|
11
11
|
"@popperjs/core": "^2.5.4",
|
|
12
12
|
"body-scroll-lock": "^3.1.5",
|
|
13
13
|
"classnames": "^2.3.2",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"build:storybook": "storybook build"
|
|
111
111
|
},
|
|
112
112
|
"sideEffects": false,
|
|
113
|
-
"version": "3.11.1-alpha.
|
|
113
|
+
"version": "3.11.1-alpha.2"
|
|
114
114
|
}
|
|
@@ -171,7 +171,7 @@ export function usePopoverStyle({
|
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
// Do not show the popover while it's not properly placed
|
|
174
|
-
if (!newStyles.transform) newStyles.
|
|
174
|
+
if (!newStyles.transform) newStyles.opacity = 0;
|
|
175
175
|
|
|
176
176
|
return newStyles;
|
|
177
177
|
}, [style, styles.popper, zIndex, fitWithinViewportHeight]);
|