@windoc/react 0.2.1 → 0.2.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -142,7 +142,7 @@ import { jsx as jsx5 } from "react/jsx-runtime";
|
|
|
142
142
|
function DropdownPortal({ isOpen, style, className, children }) {
|
|
143
143
|
if (!isOpen) return null;
|
|
144
144
|
return createPortal(
|
|
145
|
-
/* @__PURE__ */ jsx5("div", { className, style, children }),
|
|
145
|
+
/* @__PURE__ */ jsx5("div", { className: "menu-item", style, children: /* @__PURE__ */ jsx5("div", { className, children }) }),
|
|
146
146
|
document.body
|
|
147
147
|
);
|
|
148
148
|
}
|