Merge branch 'next' into renderToMarkdown-options-override-fix

This commit is contained in:
Drew Johnson 2025-06-04 14:24:33 -04:00 committed by GitHub
commit 0e89768602
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -48,7 +48,8 @@
"files": [
"src",
"dist",
"jsx-runtime"
"jsx-runtime",
"jsx-dev-runtime"
],
"devDependencies": {
"@tiptap/pm": "workspace:*"

View File

@ -2,5 +2,5 @@ import type { NodeViewProps as CoreNodeViewProps } from '@tiptap/core'
import type React from 'react'
export type ReactNodeViewProps<T = HTMLElement> = CoreNodeViewProps & {
ref: React.RefObject<T>
ref: React.RefObject<T | null>
}