Skip to content

Commit

Permalink
feat: Add popover types
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian committed May 10, 2024
1 parent 1b4e683 commit 598765e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2333,6 +2333,27 @@ export namespace JSXInternal {
placeholder?: string | undefined | SignalLike<string | undefined>;
playsInline?: boolean | undefined | SignalLike<boolean | undefined>;
playsinline?: boolean | undefined | SignalLike<boolean | undefined>;
popover?:
| 'auto'
| 'hint'
| 'manual'
| boolean
| undefined
| SignalLike<'auto' | 'hint' | 'manual' | boolean | undefined>;
popovertarget?: string | undefined | SignalLike<string | undefined>;
popoverTarget?: string | undefined | SignalLike<string | undefined>;
popovertargetaction?:
| 'hide'
| 'show'
| 'toggle'
| undefined
| SignalLike<'hide' | 'show' | 'toggle' | undefined>;
popoverTargetAction?:
| 'hide'
| 'show'
| 'toggle'
| undefined
| SignalLike<'hide' | 'show' | 'toggle' | undefined>;
poster?: string | undefined | SignalLike<string | undefined>;
preload?: string | undefined | SignalLike<string | undefined>;
radioGroup?: string | undefined | SignalLike<string | undefined>;
Expand Down

0 comments on commit 598765e

Please sign in to comment.