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

Commit 871ff87

Browse files
authored
Merge branch 'dev' into dev
2 parents ca1529c + 93e3872 commit 871ff87

37 files changed

+690
-843
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ build/
33
dist/
44
lib/
55
lib/bundle.js*
6+
Project.toml
67
coverage/
78
node_modules/
89
.npm
@@ -18,8 +19,10 @@ venv/
1819
/build
1920
/dash_core_components
2021
dash_core_components_base/plotly.min.js
22+
/deps
2123
/inst
2224
/man
2325
/R
26+
/src/*.jl
2427
DESCRIPTION
2528
NAMESPACE

CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,23 @@
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-
### Added
7-
- [#840](https://github.com/plotly/dash-table/pull/840) Add styling properties to `dcc.Loading` component
5+
## [1.12.0] - 2020-09-03
6+
### Updated
7+
- [#858](https://github.com/plotly/dash-core-components/pull/858)
8+
- Upgraded Plotly.js to [1.55.1](https://github.com/plotly/plotly.js/releases/tag/v1.55.1)
9+
- Patch release [1.55.1](https://github.com/plotly/plotly.js/releases/tag/v1.55.1)
10+
- [Feature release of Plotly.js 1.55.0](https://github.com/plotly/plotly.js/releases/tag/v1.55.0) which:
11+
- Introduce "period" `ticklabelmode` on cartesian date axes [#4993](https://github.com/plotly/plotly.js/pull/4993), [#5055](https://github.com/plotly/plotly.js/pull/5055), [#5060](https://github.com/plotly/plotly.js/pull/5060), [#5065](https://github.com/plotly/plotly.js/pull/5065), [#5088](https://github.com/plotly/plotly.js/pull/5088), [#5089](https://github.com/plotly/plotly.js/pull/5089)
12+
- Add new formatting options for weeks and quarters [#5026](https://github.com/plotly/plotly.js/pull/5026)
13+
- Add `source` attribute to `image` traces for fast rendering [#5075](https://github.com/plotly/plotly.js/pull/5075)
14+
- Add `zsmooth` attribute for discrete `heatmapgl` traces [#4953](https://github.com/plotly/plotly.js/pull/4953)
15+
- Add horizontal and vertical markers for arrow charts [#5010](https://github.com/plotly/plotly.js/pull/5010)
16+
- Add touch support to `rangeslider` [#5025](https://github.com/plotly/plotly.js/pull/5025)
17+
18+
## [1.11.0] - 2020-08-25
19+
### Added
20+
- [#851](https://github.com/plotly/dash-core-components/pull/851) Add support for Dash.jl Julia built components
21+
- [#840](https://github.com/plotly/dash-core-components/pull/840) Add styling properties to `dcc.Loading` component
822
+ `parent_className`: Add CSS class for the outermost `dcc.Loading` parent div DOM node
923
+ `parent_style`: Add CSS style property for the outermost `dcc.Loading` parent div DOM node
1024
+ provides a workaround for the previous behaviour the of `className` property, which changed in [#740](https://github.com/plotly/dash-core-components/pull/740). `parent_className` (or inline styles in `parent_style`) now allow CSS rules to be applied to the outermost `dcc.Loading` div, which is no longer covered by `className` on loading completion as of Dash Core Components `>= 1.9.1` (Dash `>= 1.11.0`).

0 commit comments

Comments
 (0)