Skip to content

Commit

Permalink
Merge pull request #4378 from preactjs/types/popover
Browse files Browse the repository at this point in the history
feat: Add popover types
  • Loading branch information
rschristian committed May 11, 2024
2 parents 1b4e683 + 598765e commit 6449692
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/jsx.d.ts
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 6449692

Please sign in to comment.