Skip to content

Commit

Permalink
fix(types): added name attribute support to details tag (#11823)
Browse files Browse the repository at this point in the history
close #11821
  • Loading branch information
baiwusanyu-c committed Sep 5, 2024
1 parent 9b7797d commit c74176e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages-private/dts-test/tsx.test-d.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,5 @@ expectType<JSX.Element>(
xmlns="http://www.w3.org/2000/svg"
/>,
)
// details
expectType<JSX.Element>(<details name="details" />)
1 change: 1 addition & 0 deletions packages/runtime-dom/src/jsx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ export interface DataHTMLAttributes extends HTMLAttributes {
}

export interface DetailsHTMLAttributes extends HTMLAttributes {
name?: string
open?: Booleanish
onToggle?: (payload: ToggleEvent) => void
}
Expand Down

0 comments on commit c74176e

Please sign in to comment.