diff --git a/packages/react/src/types/nodes.ts b/packages/react/src/types/nodes.ts index 1e6eb80f..fce71470 100644 --- a/packages/react/src/types/nodes.ts +++ b/packages/react/src/types/nodes.ts @@ -29,7 +29,14 @@ export type Node< */ domAttributes?: Omit< HTMLAttributes, - 'id' | 'style' | 'className' | 'draggable' | 'role' | 'aria-label' | keyof DOMAttributes + | 'id' + | 'style' + | 'className' + | 'draggable' + | 'role' + | 'aria-label' + | 'defaultValue' + | keyof DOMAttributes >; };