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

Commit 65a1ba0

Browse files
Merge branch 'dev' into drag_value2
2 parents 773c881 + fdb511f commit 65a1ba0

File tree

7 files changed

+58
-601
lines changed

7 files changed

+58
-601
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in
22
# the repo. Unless a later match takes precedence
3-
* @alexcjohnson @Marc-Andre-Rivet
3+
* @alexcjohnson @Marc-Andre-Rivet @rpkyle

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
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+
## [UNRELEASED]
6+
### Fixed
7+
- [#903](https://github.com/plotly/dash-core-components/pull/903) - part of fixing dash import bug https://github.com/plotly/dash/issues/1143
8+
9+
## [1.14.1] - 2020-12-09
10+
### Updated
11+
- [#898](https://github.com/plotly/dash-core-components/pull/898)
12+
- Patch Release [1.58.2](https://github.com/plotly/plotly.js/releases/tag/v1.58.2)
13+
14+
## [1.14.0] - 2020-12-07
15+
### Updated
16+
- [#889](https://github.com/plotly/dash-core-components/pull/889), [#893](https://github.com/plotly/dash-core-components/pull/893)
17+
- Upgraded Plotly.js to [1.58.1](https://github.com/plotly/plotly.js/releases/tag/v1.58.1)
18+
- Patch Release [1.58.1](https://github.com/plotly/plotly.js/releases/tag/v1.58.1)
19+
- [Feature release of Plotly.js 1.58.0](https://github.com/plotly/plotly.js/releases/tag/v1.58.0) which:
20+
- Add `ticklabelposition` attribute to cartesian axes and colorbars [#5275](https://github.com/plotly/plotly.js/pull/5275)
21+
- Add "strict" `autotypenumbers` to axes and `layout` [#5240](https://github.com/plotly/plotly.js/pull/5240)
22+
- Add `itemwidth` to legends [#5212](https://github.com/plotly/plotly.js/pull/5212)
23+
- Add `root.color` attribute to `sunburst` and `treemap` traces [#5232](https://github.com/plotly/plotly.js/pull/5232), [#5245](https://github.com/plotly/plotly.js/pull/5245)
24+
- Enable fast image rendering for all linear axes [#5307](https://github.com/plotly/plotly.js/pull/5307)
25+
- Rework matches and scaleanchor so they work together [#5287](https://github.com/plotly/plotly.js/pull/5287)
26+
527
## [1.13.0] - 2020-10-29
628
### Added
729
- [#871](https://github.com/plotly/dash-core-components/pull/871) Add Julia syntax highlighting support for dcc.Markdown

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Refer to the [readme](README.md) for installation and development instructions.
66

77
## Contributions
88

9-
[Dash Core Components][] consist of pluggable components for creating interactive user interfaces. For generic HTML5 elements, see [Dash HTML Components][]. Contributions are welcome! This repository's open [issues][] are a good place to start. Another way to contribute is to [write your own components][] using the [Dash Components Archetype][].
9+
[Dash Core Components][] consist of pluggable components for creating interactive user interfaces. For generic HTML5 elements, see [Dash HTML Components][]. Contributions are welcome! This repository's open [issues][] are a good place to start. Another way to contribute is to [write your own components][] using for instance the [component boilerplate](https://github.com/plotly/dash-component-boilerplate).
1010

1111
## Coding Style
1212

dash_core_components_base/__init__.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,11 @@
1414
__version__ = package['version']
1515

1616
# Module imports trigger a dash.development import, need to check this first
17-
if not hasattr(_dash, 'development'):
17+
if not hasattr(_dash, '__plotly_dash') and not hasattr(_dash, 'development'):
1818
print("Dash was not successfully imported. Make sure you don't have a file "
1919
"named \n'dash.py' in your current directory.", file=_sys.stderr)
2020
_sys.exit(1)
2121

22-
# Must update to dash>=0.23.1 to use this version of dash-core-components
23-
if not hasattr(_dash.development.base_component, '_explicitize_args'):
24-
print("Please update the `dash` module to >= 0.23.1 to use this "
25-
"version of dash_core_components.\n"
26-
"You are using version {:s}".format(_dash.version.__version__),
27-
file=_sys.stderr)
28-
_sys.exit(1)
29-
3022
from ._imports_ import * # noqa: F401, F403
3123
from ._imports_ import __all__ # noqa: E402
3224

0 commit comments

Comments
 (0)