Skip to content

Commit 26ca89e

Browse files
authored
fix(types): support contenteditable="plaintext-only" (#8796)
1 parent 21a89af commit 26ca89e

File tree

1 file changed

+1
-1
lines changed
  • packages/runtime-dom/src

1 file changed

+1
-1
lines changed

packages/runtime-dom/src/jsx.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
244244

245245
// Standard HTML Attributes
246246
accesskey?: string
247-
contenteditable?: Booleanish | 'inherit'
247+
contenteditable?: Booleanish | 'inherit' | 'plaintext-only'
248248
contextmenu?: string
249249
dir?: string
250250
draggable?: Booleanish

0 commit comments

Comments
 (0)