fix: Add `elementtiming` HTMLAttribute, remove `crossorigin` from HTMLInputAttributes (#10921)

* Removed `crossorigin` from HTMLInputAttributes

* Added `elementtiming` attribute to HTMLAttributes

* changeset

---------

Co-authored-by: Rich Harris <hello@rich-harris.dev>
pull/10927/head
miunau 3 months ago committed by GitHub
parent b7a0d80bfc
commit bbd44e9e47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
"svelte": patch
---
fix: Add `elementtiming` HTMLAttribute, remove `crossorigin` from HTMLInputAttributes

@ -712,6 +712,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
contextmenu?: string | undefined | null;
dir?: string | undefined | null;
draggable?: Booleanish | undefined | null;
elementtiming?: string | undefined | null;
enterkeyhint?:
| 'enter'
| 'done'
@ -1029,7 +1030,6 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
autocomplete?: string | undefined | null;
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;

Loading…
Cancel
Save