Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit a38da62

Browse files
authored
Merge pull request #73 from plotly/hot-reload
Hot reload
2 parents b1cfc99 + cabf3e3 commit a38da62

18 files changed

+1767
-1558
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ simple*
1919

2020
*.csv
2121
.idea/
22+
.vscode

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.15.0] - 2018-11-14
6+
### Added
7+
- Hot reload [#73](https://github.com/plotly/dash-renderer/pull/73)
8+
59
## [0.14.3] - 2018-10-11
610
### Fixed
711
- Included missing polyfills to restore Internet Explorer support [#87](https://github.com/plotly/dash-renderer/issues/87)
812

913
## [0.14.2] - 2018-10-11
1014
### Fixed
1115
- Upgraded dependencies to remove warnings
12-
- Restored whatgw-fetch [#87](https://github.com/plotly/dash-renderer/issues/87)
16+
- Restored whatwg-fetch [#87](https://github.com/plotly/dash-renderer/issues/87)
1317
### Added
1418
- Prettier support
1519
- Better ESLint configs

dash_renderer/dash_renderer.dev.js

Lines changed: 1471 additions & 1448 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_renderer/dash_renderer.min.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_renderer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.14.3'
1+
__version__ = '0.15.0'

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dash_core_components==0.33.0
22
dash_html_components==0.11.0rc5
3-
dash==0.28.0
3+
dash==0.29.0
44
percy
55
selenium
66
mock

package-lock.json

Lines changed: 18 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "0.14.3",
3+
"version": "0.15.0",
44
"description": "render dash components in react",
55
"main": "src/index.js",
66
"scripts": {

src/AppContainer.react.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import APIController from './APIController.react';
55
import DocumentTitle from './components/core/DocumentTitle.react';
66
import Loading from './components/core/Loading.react';
77
import Toolbar from './components/core/Toolbar.react';
8+
import Reloader from './components/core/Reloader.react';
89

910
function UnconnectedAppContainer() {
1011
return (
@@ -14,6 +15,7 @@ function UnconnectedAppContainer() {
1415
<APIController />
1516
<DocumentTitle />
1617
<Loading />
18+
<Reloader />
1719
</div>
1820
</Authentication>
1921
);

0 commit comments

Comments
 (0)