UNPKG

@wordpress/editor

Version:
28 lines (27 loc) 708 B
// packages/editor/src/components/collaborators-overlay/index.tsx import { privateApis } from "@wordpress/block-editor"; import { unlock } from "../../lock-unlock.mjs"; import { Overlay } from "./overlay.mjs"; import { jsx } from "react/jsx-runtime"; var { BlockCanvasCover } = unlock(privateApis); function CollaboratorsOverlay({ postId, postType, cursorRegistry }) { return /* @__PURE__ */ jsx(BlockCanvasCover.Fill, { children: ({ containerRef }) => /* @__PURE__ */ jsx( Overlay, { blockEditorDocument: containerRef.current?.ownerDocument, postId, postType, cursorRegistry } ) }); } export { CollaboratorsOverlay }; //# sourceMappingURL=index.mjs.map