fix: This makes the indeterminate HTML attribute available for use. Fixes #9176. (#9180)

Fixes #9176. This adds indeterminate to the list of HTMLAttributes so that one can use it without receiving an error.
pull/9121/head
paulreece 10 months ago committed by GitHub
parent d5a1822428
commit 6fe17eabf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: add `indeterminate` to the list of HTMLAttributes

@ -808,6 +808,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
formnovalidate?: boolean | undefined | null;
formtarget?: string | undefined | null;
height?: number | string | undefined | null;
indeterminate?: boolean | undefined | null;
list?: string | undefined | null;
max?: number | string | undefined | null;
maxlength?: number | undefined | null;

Loading…
Cancel
Save