You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2024. It is now read-only.
This applies the fix from [#878](https://github.com/plotly/dash-core-components/pull/878) to the RangeSlider.
13
+
It not only fixes the bug where the tooltips were visible when slider was not, but it also reduces the lag in the
14
+
tooltip when the slider handles are moved.
15
+
16
+
### Updated
17
+
-[#939](https://github.com/plotly/dash-core-components/pull/939) Upgrade Plotly.js to v2.2.1. Note that this is a major version upgrade to Plotly.js, however we are not treating this as a breaking change for DCC as the majority of breaking changes in Plotly.js do not affect the Dash API. The one exception is that several trace types that have long been deprecated are removed entirely.
- Stop exporting d3 as `Plotly.d3`, and remove many other deep pieces of the public API. This does not affect the `dcc.Graph` component, but if you make use of `Plotly` from the global scope in some other way you may be affected.
20
+
- Drop the deprecated trace types `contourgl` and `area`, as well as legacy pre-`scatterpolar` polar attributes `bar.r`, `bar.t`, `scatter.r`, `scatter.t`, `layout.radialaxis`, `layout.angularaxis`. Use `scatterpolar`, `barpolar`, and `polar` subplots instead.
21
+
-`heatmapgl` and `pointcloud` trace types, and the `transform` attribute are deprecated, and will be removed in a future release.
22
+
- Increase CSP safety by removing function constructors. 3D plots still use function constructors, but if you place one of the non-3D bundles (including the new `strict` bundle) in your `assets` folder you will have no function constructors.
23
+
- Remove "Aa" text in legends.
24
+
- Default `hovermode` to "closest".
25
+
- Default `textposition` to "auto" in `bar` traces. If you previously used the `bar.text` attribute for hover only, you will need to explicitly set `textposition="none"`.
26
+
- Add `bar.marker.pattern`, `image.zsmooth`, and various other features and bugfixes.
- Several other bug fixes and performance improvements
35
+
-[Patch release 2.2.1](https://github.com/plotly/plotly.js/releases/tag/v2.2.1) containing a security fix.
36
+
37
+
### Added
38
+
-[#932](https://github.com/plotly/dash-core-components/pull/932) Adds a new copy to clipboard component.
39
+
-[#948](https://github.com/plotly/dash-core-components/pull/948)] Adds `disabled_days` prop to `DatePickerRange` and `DatePickerSingle` components. With this prop you can specify days that should be made unselectable in the date picker, in addition to those that fall outside of the range specified by `min_date_allowed` and `max_date_allowed`.
40
+
41
+
### Changed
42
+
-[#972](https://github.com/plotly/dash-core-components/pull/972) Updated R package vignettes and `dash-info.yaml` to regenerate examples without attaching now-deprecated core component packages (`dashHtmlComponents`, `dashCoreComponents`, or `dashTable`).
43
+
5
44
## [1.16.0] - 2021-04-08
6
45
### Added
7
46
-[#863](https://github.com/plotly/dash-core-components/pull/863) Adds a new `Download` component. Along with this several utility functions are added to help construct the appropriate data format:
Copy file name to clipboardExpand all lines: README.md
+1-16
Original file line number
Diff line number
Diff line change
@@ -29,28 +29,13 @@ $ npm i --ignore-scripts && npm run build
29
29
$ pip install -e .
30
30
```
31
31
32
-
### Demo server
33
-
34
-
You can start up a demo development server to see a demo of the rendered
35
-
components:
36
-
37
-
```sh
38
-
$ npm start
39
-
```
40
-
41
-
You have to maintain the list of components in `demo/Demo.react.js`.
42
-
43
32
### Code quality and tests
44
33
45
34
### To run integration tests (test_integration.py)
46
35
You can run the Selenium integration tests with the
47
36
```sh
48
37
npm test
49
38
```
50
-
command, and the Jest unit tests with the
51
-
```sh
52
-
npm run test-unit
53
-
```
54
39
55
40
### Testing your components in Dash
56
41
1. Run the build watcher by running
@@ -88,4 +73,4 @@ See the [dash-component-boilerplate](https://github.com/plotly/dash-component-bo
88
73
89
74
90
75
## Big Thanks
91
-
Cross-browser Testing Powered by [](https://saucelabs.com)
76
+
Cross-browser Testing Powered by [](https://saucelabs.com)
0 commit comments