Skip to content

Commit

Permalink
fix: This makes the indeterminate HTML attribute available for use. F…
Browse files Browse the repository at this point in the history
…ixes #9176. (#9180)

Fixes #9176. This adds indeterminate to the list of HTMLAttributes so that one can use it without receiving an error.
  • Loading branch information
paulreece committed Sep 20, 2023
1 parent d5a1822 commit 6fe17ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/ten-poems-remember.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'svelte': patch
---

fix: add `indeterminate` to the list of HTMLAttributes
1 change: 1 addition & 0 deletions packages/svelte/elements.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6fe17ea

Please sign in to comment.