├── .babelrc ├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── config └── eslint │ └── eslintrc-node.json ├── dash-0.39.0rc1.tar.gz ├── dash_core_components-0.44.0rc1.tar.gz ├── dash_html_components-0.14.0rc1.tar.gz ├── dash_renderer ├── __init__.py ├── dash_renderer.dev.js ├── dash_renderer.dev.js.map ├── dash_renderer.min.js ├── dash_renderer.min.js.map ├── favicon.ico ├── react-dom@16.6.3.production.min.js ├── react-dom@16.8.4.production.min.js ├── react-dom@16.8.6.min.js ├── react@16.6.3.production.min.js ├── react@16.8.4.production.min.js ├── react@16.8.6.min.js └── version.py ├── dev-requirements.txt ├── index.html ├── package.json ├── setup.py ├── simple.py ├── src ├── APIController.react.js ├── AccessDenied.react.js ├── AppContainer.react.js ├── AppProvider.react.js ├── DashRenderer.js ├── TreeContainer.js ├── actions │ ├── api.js │ ├── constants.js │ └── index.js ├── components │ ├── core │ │ ├── DocumentTitle.react.js │ │ ├── Loading.react.js │ │ ├── Reloader.react.js │ │ └── Toolbar.react.js │ └── error │ │ ├── CallbackGraph │ │ ├── CallbackGraphContainer.css │ │ └── CallbackGraphContainer.react.js │ │ ├── ComponentErrorBoundary.react.js │ │ ├── FrontEnd │ │ ├── FrontEndError.css │ │ ├── FrontEndError.react.js │ │ └── FrontEndErrorContainer.react.js │ │ ├── GlobalErrorContainer.react.js │ │ ├── GlobalErrorContainerPassthrough.react.js │ │ ├── GlobalErrorOverlay.css │ │ ├── GlobalErrorOverlay.react.js │ │ ├── Percy.css │ │ ├── icons │ │ ├── BellIcon.svg │ │ ├── BellIconGrey.svg │ │ ├── CloseIcon.svg │ │ ├── CollapseIcon.svg │ │ ├── DebugIcon.svg │ │ ├── ErrorIconWhite.svg │ │ ├── GraphIcon.svg │ │ ├── GraphIconGrey.svg │ │ ├── LeftArrow.svg │ │ ├── ReloadIcon.svg │ │ ├── RightArrow.svg │ │ ├── WarningIconWhite.svg │ │ └── WhiteCloseIcon.svg │ │ ├── menu │ │ ├── DebugAlertContainer.css │ │ ├── DebugAlertContainer.react.js │ │ ├── DebugMenu.css │ │ └── DebugMenu.react.js │ │ └── werkzeug.css.txt ├── constants │ └── constants.js ├── exceptions.js ├── index.js ├── reducers │ ├── api.js │ ├── appLifecycle.js │ ├── config.js │ ├── constants.js │ ├── dependencyGraph.js │ ├── error.js │ ├── history.js │ ├── hooks.js │ ├── layout.js │ ├── paths.js │ ├── reducer.js │ ├── requestQueue.js │ └── utils.js ├── registry.js ├── store.js ├── styles │ └── styles.js └── utils.js ├── tests ├── IntegrationTests.py ├── __init__.py ├── test_assets │ ├── hot_reload.css │ └── initial_state_dash_app_content.html ├── test_clientside │ ├── clientside.js │ └── ramda-0.25.0.min.js ├── test_race_conditions.py ├── test_render.py └── utils.py ├── webpack.config.js └── webpack.serve.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/README.md -------------------------------------------------------------------------------- /config/eslint/eslintrc-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/config/eslint/eslintrc-node.json -------------------------------------------------------------------------------- /dash-0.39.0rc1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash-0.39.0rc1.tar.gz -------------------------------------------------------------------------------- /dash_core_components-0.44.0rc1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_core_components-0.44.0rc1.tar.gz -------------------------------------------------------------------------------- /dash_html_components-0.14.0rc1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_html_components-0.14.0rc1.tar.gz -------------------------------------------------------------------------------- /dash_renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/__init__.py -------------------------------------------------------------------------------- /dash_renderer/dash_renderer.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/dash_renderer.dev.js -------------------------------------------------------------------------------- /dash_renderer/dash_renderer.dev.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/dash_renderer.dev.js.map -------------------------------------------------------------------------------- /dash_renderer/dash_renderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/dash_renderer.min.js -------------------------------------------------------------------------------- /dash_renderer/dash_renderer.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/dash_renderer.min.js.map -------------------------------------------------------------------------------- /dash_renderer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/favicon.ico -------------------------------------------------------------------------------- /dash_renderer/react-dom@16.6.3.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/react-dom@16.6.3.production.min.js -------------------------------------------------------------------------------- /dash_renderer/react-dom@16.8.4.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/react-dom@16.8.4.production.min.js -------------------------------------------------------------------------------- /dash_renderer/react-dom@16.8.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/react-dom@16.8.6.min.js -------------------------------------------------------------------------------- /dash_renderer/react@16.6.3.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/react@16.6.3.production.min.js -------------------------------------------------------------------------------- /dash_renderer/react@16.8.4.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/react@16.8.4.production.min.js -------------------------------------------------------------------------------- /dash_renderer/react@16.8.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/dash_renderer/react@16.8.6.min.js -------------------------------------------------------------------------------- /dash_renderer/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.24.0' 2 | -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | percy 2 | selenium 3 | mock 4 | six 5 | beautifulsoup4 6 | lxml 7 | requests -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/package.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/setup.py -------------------------------------------------------------------------------- /simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/simple.py -------------------------------------------------------------------------------- /src/APIController.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/APIController.react.js -------------------------------------------------------------------------------- /src/AccessDenied.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/AccessDenied.react.js -------------------------------------------------------------------------------- /src/AppContainer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/AppContainer.react.js -------------------------------------------------------------------------------- /src/AppProvider.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/AppProvider.react.js -------------------------------------------------------------------------------- /src/DashRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/DashRenderer.js -------------------------------------------------------------------------------- /src/TreeContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/TreeContainer.js -------------------------------------------------------------------------------- /src/actions/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/actions/api.js -------------------------------------------------------------------------------- /src/actions/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/actions/constants.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/components/core/DocumentTitle.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/core/DocumentTitle.react.js -------------------------------------------------------------------------------- /src/components/core/Loading.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/core/Loading.react.js -------------------------------------------------------------------------------- /src/components/core/Reloader.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/core/Reloader.react.js -------------------------------------------------------------------------------- /src/components/core/Toolbar.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/core/Toolbar.react.js -------------------------------------------------------------------------------- /src/components/error/CallbackGraph/CallbackGraphContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/CallbackGraph/CallbackGraphContainer.css -------------------------------------------------------------------------------- /src/components/error/CallbackGraph/CallbackGraphContainer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/CallbackGraph/CallbackGraphContainer.react.js -------------------------------------------------------------------------------- /src/components/error/ComponentErrorBoundary.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/ComponentErrorBoundary.react.js -------------------------------------------------------------------------------- /src/components/error/FrontEnd/FrontEndError.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/FrontEnd/FrontEndError.css -------------------------------------------------------------------------------- /src/components/error/FrontEnd/FrontEndError.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/FrontEnd/FrontEndError.react.js -------------------------------------------------------------------------------- /src/components/error/FrontEnd/FrontEndErrorContainer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/FrontEnd/FrontEndErrorContainer.react.js -------------------------------------------------------------------------------- /src/components/error/GlobalErrorContainer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/GlobalErrorContainer.react.js -------------------------------------------------------------------------------- /src/components/error/GlobalErrorContainerPassthrough.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/GlobalErrorContainerPassthrough.react.js -------------------------------------------------------------------------------- /src/components/error/GlobalErrorOverlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/GlobalErrorOverlay.css -------------------------------------------------------------------------------- /src/components/error/GlobalErrorOverlay.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/GlobalErrorOverlay.react.js -------------------------------------------------------------------------------- /src/components/error/Percy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/Percy.css -------------------------------------------------------------------------------- /src/components/error/icons/BellIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/BellIcon.svg -------------------------------------------------------------------------------- /src/components/error/icons/BellIconGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/BellIconGrey.svg -------------------------------------------------------------------------------- /src/components/error/icons/CloseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/CloseIcon.svg -------------------------------------------------------------------------------- /src/components/error/icons/CollapseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/CollapseIcon.svg -------------------------------------------------------------------------------- /src/components/error/icons/DebugIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/DebugIcon.svg -------------------------------------------------------------------------------- /src/components/error/icons/ErrorIconWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/ErrorIconWhite.svg -------------------------------------------------------------------------------- /src/components/error/icons/GraphIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/GraphIcon.svg -------------------------------------------------------------------------------- /src/components/error/icons/GraphIconGrey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/GraphIconGrey.svg -------------------------------------------------------------------------------- /src/components/error/icons/LeftArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/LeftArrow.svg -------------------------------------------------------------------------------- /src/components/error/icons/ReloadIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/ReloadIcon.svg -------------------------------------------------------------------------------- /src/components/error/icons/RightArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/RightArrow.svg -------------------------------------------------------------------------------- /src/components/error/icons/WarningIconWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/WarningIconWhite.svg -------------------------------------------------------------------------------- /src/components/error/icons/WhiteCloseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/icons/WhiteCloseIcon.svg -------------------------------------------------------------------------------- /src/components/error/menu/DebugAlertContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/menu/DebugAlertContainer.css -------------------------------------------------------------------------------- /src/components/error/menu/DebugAlertContainer.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/menu/DebugAlertContainer.react.js -------------------------------------------------------------------------------- /src/components/error/menu/DebugMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/menu/DebugMenu.css -------------------------------------------------------------------------------- /src/components/error/menu/DebugMenu.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/menu/DebugMenu.react.js -------------------------------------------------------------------------------- /src/components/error/werkzeug.css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/components/error/werkzeug.css.txt -------------------------------------------------------------------------------- /src/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/constants/constants.js -------------------------------------------------------------------------------- /src/exceptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/exceptions.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/api.js -------------------------------------------------------------------------------- /src/reducers/appLifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/appLifecycle.js -------------------------------------------------------------------------------- /src/reducers/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/config.js -------------------------------------------------------------------------------- /src/reducers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/constants.js -------------------------------------------------------------------------------- /src/reducers/dependencyGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/dependencyGraph.js -------------------------------------------------------------------------------- /src/reducers/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/error.js -------------------------------------------------------------------------------- /src/reducers/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/history.js -------------------------------------------------------------------------------- /src/reducers/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/hooks.js -------------------------------------------------------------------------------- /src/reducers/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/layout.js -------------------------------------------------------------------------------- /src/reducers/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/paths.js -------------------------------------------------------------------------------- /src/reducers/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/reducer.js -------------------------------------------------------------------------------- /src/reducers/requestQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/requestQueue.js -------------------------------------------------------------------------------- /src/reducers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/reducers/utils.js -------------------------------------------------------------------------------- /src/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/registry.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/styles/styles.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/IntegrationTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/IntegrationTests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_assets/hot_reload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/test_assets/hot_reload.css -------------------------------------------------------------------------------- /tests/test_assets/initial_state_dash_app_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/test_assets/initial_state_dash_app_content.html -------------------------------------------------------------------------------- /tests/test_clientside/clientside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/test_clientside/clientside.js -------------------------------------------------------------------------------- /tests/test_clientside/ramda-0.25.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/test_clientside/ramda-0.25.0.min.js -------------------------------------------------------------------------------- /tests/test_race_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/test_race_conditions.py -------------------------------------------------------------------------------- /tests/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/test_render.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/tests/utils.py -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.serve.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-renderer/HEAD/webpack.serve.config.js --------------------------------------------------------------------------------