Dash and Dash-Renderer
Added
- #967 Add support for defining
clientside JavaScript callbacks via inline strings. - #1020 Allow
visit_and_snapshot
API indash.testing.browser
to stay on the page so you can run other checks.
Changed
- #1026 Better error message when you forget to wrap multiple
children
in an array, and they get passed to other props.
Fixed
- #1018 Fix the
dash.testing
stop API with process application runner in Python2. Usekill()
instead ofcommunicate()
to avoid hanging. - #1027 Fix bug with renderer callback lock never resolving with non-rendered async component using the asyncDecorator
Dash-Core-Components
Updated
Changed
- #695 Improvements to Slider and RangeSlider
- Marks outside of the range specified by
min
andmax
are now omitted when the slider renders. - Padding is now dependent on the orientation (vertical or horizontal), and whether or not tooltips are always displayed.
- The whitespace is now preserved for
marks
labels.
- Marks outside of the range specified by
Added
- #695 Added new property
verticalHeight
to Slider and RangeSlider, to allow the user to specify the height (in px) of vertical sliders. This defaults to400
.