Skip to content

Commit f92e810

Browse files
Async Slider and RangeSlider (plotly#739)
1 parent 342f9e9 commit f92e810

File tree

11 files changed

+543
-1315
lines changed

11 files changed

+543
-1315
lines changed

Diff for: packages/dash-core-components/CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
6-
76
### Changed
7+
- [#739](https://github.com/plotly/dash-core-components/pull/739) Async Slider and RangeSlider
88
- [#729](https://github.com/plotly/dash-core-components/pull/729) Handle case where dcc fails to load when used inside an iframe with a sandbox attribute that only has allow-scripts
99

10+
### Fixed
11+
- [#730](https://github.com/plotly/dash-core-components/pull/730) Fixed bug in which input components with type `number` did not correctly update their values.
12+
- [#731](https://github.com/plotly/dash-core-components/pull/731) Fixed bug where non-clearable dropdowns could still be cleared by typing backspace
13+
1014
## [1.7.1] - 2020-01-15 (JS-only)
1115
### Fixed
1216
- [#734](https://github.com/plotly/dash-core-components/pull/734) Fix JS-facing release bug where `Plotly.js` was listed in `devDependencies` instead of `dependencies`
@@ -19,10 +23,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1923
- Added responsiveness on graph parent element resize (previously only worked on window.resize)
2024
- Added new `dash-graph--pending` class to dcc.Graph, present while resizing, (re-)rendering, loading
2125

22-
### Fixed
23-
- [#730](https://github.com/plotly/dash-core-components/pull/730) Fixed bug in which input components with type `number` did not correctly update their values.
24-
- [#731](https://github.com/plotly/dash-core-components/pull/731) Fixed bug where non-clearable dropdowns could still be cleared by typing backspace
25-
2626
### Changed
2727
- [#723](https://github.com/plotly/dash-core-components/pull/723) Changed npm package content to allow source code inclusion from other projects
2828
- [#725](https://github.com/plotly/dash-core-components/pull/725) Improve async graph performance by parallelizing resource fetching instead of fetching sequentially

Diff for: packages/dash-core-components/dash_core_components_base/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
'graph',
4646
'highlight',
4747
'markdown',
48+
'slider',
4849
'upload'
4950
]
5051

0 commit comments

Comments
 (0)