Skip to content

Commit 17b77a4

Browse files
committed
Julia components (#851)
1 parent 0fe23d4 commit 17b77a4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/dash-core-components/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66
### Added
7-
- [#840](https://github.com/plotly/dash-table/pull/840) Add styling properties to `dcc.Loading` component
7+
- [#851](https://github.com/plotly/dash-core-components/pull/851) Add support for Dash.jl Julia built components
8+
- [#840](https://github.com/plotly/dash-core-components/pull/840) Add styling properties to `dcc.Loading` component
89
+ `parent_className`: Add CSS class for the outermost `dcc.Loading` parent div DOM node
910
+ `parent_style`: Add CSS style property for the outermost `dcc.Loading` parent div DOM node
1011
+ 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`).

packages/dash-core-components/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"uninstall-local": "pip uninstall dash-core-components -y",
3030
"prebuild:js": "cp node_modules/plotly.js/dist/plotly.min.js dash_core_components_base/plotly.min.js",
3131
"build:js": "webpack --mode production",
32-
"build:py_and_r": "dash-generate-components ./src/components dash_core_components -p package-info.json && cp dash_core_components_base/** dash_core_components/ && dash-generate-components ./src/components dash_core_components -p package-info.json --r-prefix 'dcc' --r-suggests 'dash,dashHtmlComponents,jsonlite,plotly'",
33-
"build": "run-s prepublishOnly build:js build:py_and_r",
32+
"build:backends": "dash-generate-components ./src/components dash_core_components -p package-info.json && cp dash_core_components_base/** dash_core_components/ && dash-generate-components ./src/components dash_core_components -p package-info.json --r-prefix 'dcc' --r-suggests 'dash,dashHtmlComponents,jsonlite,plotly' --jl-prefix 'dcc'",
33+
"build": "run-s prepublishOnly build:js build:backends",
3434
"postbuild": "es-check es5 dash_core_components/*.js",
3535
"build:watch": "watch 'npm run build' src",
3636
"format": "run-s private::format.*",

0 commit comments

Comments
 (0)