0.1.5 — boolean control state fixes
Fixed
Checkbox(tristate=True)now produces a real indeterminate state. Settingtristate=Truepreviously left the checkbox unchecked — the dash indicator never rendered and.valuereturnedFalseinstead ofNone. (#358)ToggleButton.value/.checkedreport the correct state. A toggle built withvalue=True(and visually "on") wrongly reported.checkedasFalseand.valueasNone. (#359)- Non-bool
checked_value/unchecked_valueround-trip onCheckboxandSwitch. A string or other custom on/off value (e.g.checked_value="yes") was silently coerced toTrue/False;.valuenow returns the value you set, matchingToggleButton.
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