summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/old-jokes-complain.md5
-rw-r--r--packages/astro/astro-jsx.d.ts1
2 files changed, 6 insertions, 0 deletions
diff --git a/.changeset/old-jokes-complain.md b/.changeset/old-jokes-complain.md
new file mode 100644
index 000000000..be7966d33
--- /dev/null
+++ b/.changeset/old-jokes-complain.md
@@ -0,0 +1,5 @@
+---
+"astro": patch
+---
+
+Adds the `name` attribute to the `<details>` tag type
diff --git a/packages/astro/astro-jsx.d.ts b/packages/astro/astro-jsx.d.ts
index accd90025..5a5ee14db 100644
--- a/packages/astro/astro-jsx.d.ts
+++ b/packages/astro/astro-jsx.d.ts
@@ -670,6 +670,7 @@ declare namespace astroHTML.JSX {
interface DetailsHTMLAttributes extends HTMLAttributes {
open?: boolean | string | undefined | null;
+ name?: string | undefined | null;
}
interface DelHTMLAttributes extends HTMLAttributes {