Skip to content

Commit

Permalink
Update contentEditable attribute values (#4163)
Browse files Browse the repository at this point in the history
Co-authored-by: Jovi De Croock <decroockjovi@gmail.com>
  • Loading branch information
shoonia and JoviDeCroock committed Oct 24, 2023
1 parent 485078e commit e24fdad
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2118,8 +2118,13 @@ export namespace JSXInternal {
colSpan?: number | undefined | SignalLike<number | undefined>;
colspan?: number | undefined | SignalLike<number | undefined>;
content?: string | undefined | SignalLike<string | undefined>;
contentEditable?: boolean | undefined | SignalLike<boolean | undefined>;
contenteditable?: boolean | undefined | SignalLike<boolean | undefined>;
contentEditable?:
| Booleanish
| ''
| 'plaintext-only'
| undefined
| SignalLike<Booleanish | '' | 'plaintext-only' | undefined>;
contenteditable?: HTMLAttributes['contentEditable'];
/** @deprecated See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contextmenu */
contextMenu?: string | undefined | SignalLike<string | undefined>;
/** @deprecated See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contextmenu */
Expand Down

0 comments on commit e24fdad

Please sign in to comment.