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
Improve our `extras_require`: there are now five options here, each with a well-defined role:
@@ -14,9 +14,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
14
14
- `dash[celery]`: required if you use `CeleryLongCallbackManager`
15
15
- `dash[ci]`: mainly for internal use, these are additional requirements for the Dash CI tests, exposed for other component libraries to use a matching configuration.
@@ -102,14 +102,19 @@ This project adheres to [Semantic Versioning](https://semver.org/).
102
102
```
103
103
104
104
After:
105
+
105
106
```python
106
107
dcc.Slider(min=1, max=3, step=1)
107
108
```
109
+
108
110
Or equivalently:
111
+
109
112
```python
110
113
dcc.Slider(1, 3, 1)
111
114
```
115
+
112
116
Step can also be omitted and the `Slider` will attempt to create a nice, human readable step with SI units and around 5 marks:
117
+
113
118
```python
114
119
dcc.Slider(0, 100)
115
120
```
@@ -137,6 +142,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
137
142
```python
138
143
dash_table.DataTable(data=df.to_dict('records'), columns=[{'name': i, 'id': i} for i in df.columns])
139
144
```
145
+
140
146
After:
141
147
142
148
```python
@@ -153,6 +159,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).
153
159
dcc.Checklist(inline=True)
154
160
```
155
161
162
+
### Fixed
163
+
164
+
- [#1836](https://github.com/plotly/dash/pull/1836) Fix `__all__` in dcc and table for extras: dcc download helpers and table format helpers. This also restores this functionality to the obsolete top-level packages `dash_core_components` and `dash_table`.
165
+
166
+
- [#1822](https://github.com/plotly/dash/pull/1822) Remove Radium from renderer dependencies, as part of investigating React 17 support.
0 commit comments