Skip to content

0.1.5 — boolean control state fixes

Choose a tag to compare

@github-actions github-actions released this 20 Jul 20:01
· 422 commits to main since this release

Fixed

  • Checkbox(tristate=True) now produces a real indeterminate state. Setting tristate=True previously left the checkbox unchecked — the dash indicator never rendered and .value returned False instead of None. (#358)
  • ToggleButton.value / .checked report the correct state. A toggle built with value=True (and visually "on") wrongly reported .checked as False and .value as None. (#359)
  • Non-bool checked_value / unchecked_value round-trip on Checkbox and Switch. A string or other custom on/off value (e.g. checked_value="yes") was silently coerced to True / False; .value now returns the value you set, matching ToggleButton.

What's Changed

  • fix(boolean-controls): correct value/checked reads and Checkbox tristate by @israel-dryer in #360

Full Changelog: v0.1.4...v0.1.5