🎨 Features
- Adds support for
DocumentFragment
as a constructor (e.g.new DocumentFragment()
). (#940)
👷♂️ Patch fixes
- Fixes issue related to
ownerDocument
being null when executingownerDocument.createElement()
in React 18. The error occurred when rendering a Radix UI component. The root cause was that React 18 usesDocumentFragment
as a constructor which was not supported. (#940)