fix(inline-checkbox): bind indeterminate for Svelte 5 compatibility

This commit is contained in:
Eric Liu 2024-11-10 10:57:38 -08:00
commit 325d7d73f8

View file

@ -24,7 +24,7 @@
type="checkbox"
class:bx--checkbox="{true}"
checked="{indeterminate ? false : checked}"
indeterminate="{indeterminate}"
bind:indeterminate
id="{id}"
{...$$restProps}
aria-checked="{indeterminate ? undefined : checked}"