mayak-common-library 0.0.94 → 0.0.95
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -348,7 +348,7 @@ var SelectPro = ({
|
|
|
348
348
|
setOpen(!open);
|
|
349
349
|
};
|
|
350
350
|
(0, import_react2.useEffect)(() => {
|
|
351
|
-
if (openUp
|
|
351
|
+
if (typeof openUp === "boolean") setOpen(openUp);
|
|
352
352
|
}, [openUp]);
|
|
353
353
|
const handleClose = () => {
|
|
354
354
|
setOpen(false);
|
package/dist/index.mjs
CHANGED