Skip to content

Commit

Permalink
Merge pull request #372 from danieltroger/dt/fix_video_attributes
Browse files Browse the repository at this point in the history
Add disablepictureinpicture attribute to <video> JSX types
  • Loading branch information
ryansolid authored Oct 21, 2024
2 parents 0b443c8 + 0566c4b commit 4dda816
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/dom-expressions/src/jsx-h.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1247,6 +1247,7 @@ export namespace JSX {
playsinline?: FunctionMaybe<boolean>;
poster?: FunctionMaybe<string>;
width?: FunctionMaybe<number | string>;
disablepictureinpicture?: FunctionMaybe<boolean>;
}
type SVGPreserveAspectRatio =
| "none"
Expand Down
1 change: 1 addition & 0 deletions packages/dom-expressions/src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1332,6 +1332,7 @@ export namespace JSX {
playsinline?: boolean | undefined;
poster?: string | undefined;
width?: number | string | undefined;
disablepictureinpicture?: boolean;
}
type SVGPreserveAspectRatio =
| "none"
Expand Down

0 comments on commit 4dda816

Please sign in to comment.