mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
fix(inline-checkbox): bind indeterminate for Svelte 5 compatibility
This commit is contained in:
parent
fd9d7ee943
commit
325d7d73f8
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
class:bx--checkbox="{true}"
|
class:bx--checkbox="{true}"
|
||||||
checked="{indeterminate ? false : checked}"
|
checked="{indeterminate ? false : checked}"
|
||||||
indeterminate="{indeterminate}"
|
bind:indeterminate
|
||||||
id="{id}"
|
id="{id}"
|
||||||
{...$$restProps}
|
{...$$restProps}
|
||||||
aria-checked="{indeterminate ? undefined : checked}"
|
aria-checked="{indeterminate ? undefined : checked}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue