Skip to content

Commit 6fe17ea

Browse files
authored
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.
1 parent d5a1822 commit 6fe17ea

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changeset/ten-poems-remember.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'svelte': patch
3+
---
4+
5+
fix: add `indeterminate` to the list of HTMLAttributes

packages/svelte/elements.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
808808
formnovalidate?: boolean | undefined | null;
809809
formtarget?: string | undefined | null;
810810
height?: number | string | undefined | null;
811+
indeterminate?: boolean | undefined | null;
811812
list?: string | undefined | null;
812813
max?: number | string | undefined | null;
813814
maxlength?: number | undefined | null;

0 commit comments

Comments
 (0)