fix: Add `dirname` to HTMLInputAttributes (#10908)

* Add `dirname` to HTMLInputAttributes

* changeset

---------

Co-authored-by: Rich Harris <hello@rich-harris.dev>
pull/10889/head
miunau 6 months ago committed by GitHub
parent 8685d497e5
commit 0c05733d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
"svelte": patch
---
fix: Add `dirname` to HTMLInputAttributes

@ -1030,6 +1030,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
capture?: boolean | 'user' | 'environment' | undefined | null; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
checked?: boolean | undefined | null;
crossorigin?: string | undefined | null;
dirname?: string | undefined | null;
disabled?: boolean | undefined | null;
form?: string | undefined | null;
formaction?: string | undefined | null;

Loading…
Cancel
Save