Skip to content

Commit

Permalink
Merge pull request #4242 from preactjs/missing-inherit
Browse files Browse the repository at this point in the history
TS: Add missing contenteditable "inherit" value
  • Loading branch information
marvinhagemeister committed Dec 27, 2023
2 parents f963509 + bbe6757 commit da9d488
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2136,8 +2136,9 @@ export namespace JSXInternal {
| Booleanish
| ''
| 'plaintext-only'
| 'inherit'
| undefined
| SignalLike<Booleanish | '' | 'plaintext-only' | undefined>;
| SignalLike<Booleanish | '' | 'inherit' | '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>;
Expand Down

0 comments on commit da9d488

Please sign in to comment.