Skip to content

Commit

Permalink
fix: add name to HTMLDetailsAttributes (#11013)
Browse files Browse the repository at this point in the history
* add name attribute to HTMLDetailsAttributes

* changeset
  • Loading branch information
fcrozatier authored Apr 1, 2024
1 parent 0fa9d16 commit 1c75b9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/late-peaches-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"svelte": patch
---

Add `name` to HTMLDetailsAttributes
1 change: 1 addition & 0 deletions packages/svelte/elements.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,7 @@ export interface HTMLDataAttributes extends HTMLAttributes<HTMLDataElement> {

export interface HTMLDetailsAttributes extends HTMLAttributes<HTMLDetailsElement> {
open?: boolean | undefined | null;
name?: string | undefined | null;

'bind:open'?: boolean | undefined | null;

Expand Down

0 comments on commit 1c75b9a

Please sign in to comment.