@volr/react-ui 0.1.32 → 0.1.33
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.cjs +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -356,7 +356,7 @@ var Modal = ({
|
|
|
356
356
|
}, [open, onOpenChange, onEscapeKeyDown]);
|
|
357
357
|
if (!open) return null;
|
|
358
358
|
const isBottomSheet = variant === "bottom-sheet";
|
|
359
|
-
return /* @__PURE__ */ jsxs(
|
|
359
|
+
return /* @__PURE__ */ jsxs("div", { "data-volr-root": "true", children: [
|
|
360
360
|
/* @__PURE__ */ jsx(
|
|
361
361
|
"div",
|
|
362
362
|
{
|
|
@@ -387,7 +387,6 @@ var Modal = ({
|
|
|
387
387
|
contentClassName
|
|
388
388
|
),
|
|
389
389
|
onClick: (e) => e.stopPropagation(),
|
|
390
|
-
"data-volr-root": "true",
|
|
391
390
|
children
|
|
392
391
|
}
|
|
393
392
|
)
|