Skip to content

Commit cd6c417

Browse files
committed
Updates for Dash 2.0
1 parent 0bb9ef2 commit cd6c417

File tree

121 files changed

+1166
-19207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1166
-19207
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ dist
66
cache
77
.pytest_cache
88
__pycache__
9+
venv

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Overview
22
Unlike other Plotly projects, `dash-labs` does **not** adhere to semantic versioning. This project is intended to make it easier to discuss and iterate on new ideas before they are incorporated into Dash itself. As such, maintaining backward compatibility within the `dash-labs` package is explicitly a non-goal.
33

4+
## 1.0.0
5+
6+
### Added
7+
- Added Dash Pages: A plug-in to simplify building multi-page apps.
8+
- Added documentation: 08-DashPages.
9+
- Added demos: 4 examples of multi-page apps using the Dash Pages plug-in.
10+
11+
### Removed
12+
- removed code, tests, and demos for projects documented in chapter 02 through 07.
13+
14+
## Changes
15+
- updated documentation to include status of projects in chapters 02 through 07.
16+
417
## 0.4.0
518

619
### Added

README.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The documentation for Dash Labs can be found in the [docs/](./docs/) directory.
1010
- [05-ComponentPlugingPattern.md](https://github.com/plotly/dash-labs/blob/main/docs/05-ComponentPlugingPattern.md)
1111
- [06-TemplateIntegrationAndMigration.md](https://github.com/plotly/dash-labs/blob/main/docs/06-TemplateIntegrationAndMigration.md)
1212
- [07-LongCallback.md](https://github.com/plotly/dash-labs/blob/main/docs/07-LongCallback.md)
13+
- [08-MultiPageDashApp.md](https://github.com/plotly/dash-labs/blob/main/docs/08-MultiPageDashApp.md)
1314

1415
Various demos are located in the [docs/demos](./docs/demos) directory.
1516

@@ -19,9 +20,3 @@ To install the tech preview:
1920
```
2021
$ pip install -U dash-labs
2122
```
22-
23-
To use the templates based on `dash-bootstrap-components`, a few additional packages are required:
24-
25-
```
26-
$ pip install -U dash-bootstrap-components spectra colormath requests tinycss2
27-
```

dash_labs/__init__.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
from .util import build_id
2-
from ._callback import callback
3-
from . import templates
4-
import dash_labs.component_plugins
1+
52
from . import plugins
6-
from .dependency import Input, State, Output
73
from .version import __version__

0 commit comments

Comments
 (0)