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.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+148
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,154 @@
1
1
# Change Log for dash-core-components
2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+
## [0.38.1] - 2018-11-14
6
+
### Fixed
7
+
- The issue [#115](https://github.com/plotly/dash-core-components/issues/115)
8
+
with datepicker, which didn't appear when the date value is `None` was fixed.
9
+
By default, current month would appear in such cases for
10
+
`DatePickerRange` and `DatePickerSingle` components.
11
+
See pull request https://github.com/plotly/dash-core-components/pull/201.
12
+
- Refactored the way the Graph component would generate an unique id if none provided.
13
+
- Default CSS imported via `style-loader` is now placed at top, so that user supplied CSS can overwrite it, fixes [#380](https://github.com/plotly/dash-core-components/issues/380)
14
+
15
+
## [0.38.0] - 2018-11-07
16
+
### Fixed
17
+
- Changed the way the default CSS files for some components are loaded to being loaded with webpack instead of as dependencies.
18
+
19
+
## [0.37.2] - 2018-11-07
20
+
### Changed
21
+
- Updated `react-select` to version `2.1.0`
22
+
23
+
## [0.37.1] - 2018-11-07
24
+
### Added
25
+
- Added `clickannotation` event to `dcc.Graph`.
26
+
See https://github.com/plotly/dash-core-components/pull/182.
27
+
28
+
## [0.37.0] - 2018-11-04
29
+
### Fixed
30
+
- Some Input props weren't being picked up by React. Changed:
31
+
-`autocomplete` to `autoComplete`
32
+
-`autofocus` to `autoFocus`
33
+
-`inputmode` to `inputMode`
34
+
-`maxlength` to `maxLength`
35
+
-`minlength` to `minLength`
36
+
### Added
37
+
- Unit tests for `Input` component.
38
+
- New `debounce` prop for `Input` component that determines if the input should update to a Dash server immediately, or on 'Enter' key. Fixes [#169](https://github.com/plotly/dash-core-components/issues/169)
39
+
### Changed
40
+
-`min` and `max` prop now won't update the input when values are lower than or greater than `min` and `max` respectively. Fixes[#173](https://github.com/plotly/dash-core-components/issues/173)
41
+
-`step` prop can now be a `number` and is therefor set correctly on the corresponding `<input/>` tag. Fixes [#292](https://github.com/plotly/dash-core-components/issues/292)
42
+
43
+
## [0.36.0] - 2018-11-01
44
+
### Fixed
45
+
- The `npm start` command now runs the Demo app again [#346](https://github.com/plotly/dash-core-components/issues/346)
46
+
47
+
## [0.36.0] - 2018-10-31
48
+
### Updated
49
+
- Updated plotly.js to 1.42.1 [#354](https://github.com/plotly/dash-core-components/pull/354)
0 commit comments