Skip to content

Commit

Permalink
fix(types): support contenteditable="plaintext-only" (#8796)
Browse files Browse the repository at this point in the history
  • Loading branch information
baiwusanyu-c authored and sxzz committed Oct 23, 2023
1 parent 06ad749 commit 4f66119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-dom/src/jsx.ts
Expand Up @@ -244,7 +244,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {

// Standard HTML Attributes
accesskey?: string
contenteditable?: Booleanish | 'inherit'
contenteditable?: Booleanish | 'inherit' | 'plaintext-only'
contextmenu?: string
dir?: string
draggable?: Booleanish
Expand Down

0 comments on commit 4f66119

Please sign in to comment.