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

Commit 1827001

Browse files
authored
Merge pull request #195 from plotly/master-1.1.4
Master 1.1.4
2 parents 422c952 + 7209a3e commit 1827001

File tree

271 files changed

+14714
-5912
lines changed

Some content is hidden

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

271 files changed

+14714
-5912
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
git clone --depth 1 git@github.com:plotly/dash-table.git
4747
. venv/bin/activate
4848
pip install -e ./dash-main[testing,dev] --quiet
49+
renderer build
4950
cd dash-core-components && npm ci && npm run build && pip install -e . && cd ..
50-
cd dash-main/dash-renderer && npm ci && npm run build && pip install -e . && cd ../..
5151
cd dash-table && npm ci && npm run build && pip install -e . && cd ..
5252
5353
- run:

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ lib/bundle.js.map
1414
lib/metadata.json
1515
.idea
1616

17-
/scripts/data
18-
!/scripts/data/elements.txt
17+
/scripts/data/attributes.html
1918

2019
/build

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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+
## [1.1.4] - 2021-07-09
6+
7+
### Changed
8+
- [#194](https://github.com/plotly/dash-html-components/pull/194) Updated dependencies and build process
9+
- [#190](https://github.com/plotly/dash-core-components/pull/190) Updated R package vignettes and `dash-info.yaml` to regenerate examples without attaching now-deprecated core component packages (`dashHtmlComponents`, `dashCoreComponents`, or `dashTable`).
10+
511
## [1.1.3] - 2021-04-08
612
### Fixed
713
- [#179](https://github.com/plotly/dash-html-components/pull/179) - Fixes [#77](https://github.com/plotly/dash-html-components/issues/77) Added `allow` and `referrerPolicy` properties to `html.Iframe`

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashHtmlComponents
22
Title: Vanilla HTML Components for 'Dash'
3-
Version: 1.1.3
3+
Version: 1.1.4
44
Description: 'Dash' is a web application framework that provides pure Python and R abstraction around HTML, CSS, and JavaScript. Instead of writing HTML or using an HTML templating engine, you compose your layout using R functions within the 'dashHtmlComponents' package. The source for this package is on GitHub: plotly/dash-html-components.
55
Depends: R (>= 3.0.2)
66
Imports:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "DashHtmlComponents"
33
uuid = "1b08a953-4be3-4667-9a23-24100242a84a"
44
authors = ["Chris Parmer <chris@plotly.com>"]
5-
version = "1.1.3"
5+
version = "1.1.4"
66

77
[deps]
88
DashBase = "03207cf0-e2b3-4b91-9ca8-690cf0fb507e"

R/htmlTable.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# AUTO GENERATED FILE - DO NOT EDIT
22

3-
htmlTable <- function(children=NULL, id=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, key=NULL, lang=NULL, loading_state=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, role=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, ...) {
3+
htmlTable <- function(children=NULL, id=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, key=NULL, lang=NULL, loading_state=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, role=NULL, spellCheck=NULL, style=NULL, summary=NULL, tabIndex=NULL, title=NULL, ...) {
44

55
wildcard_names = names(dash_assert_valid_wildcards(attrib = list('aria', 'data'), ...))
66

7-
props <- list(children=children, id=id, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, key=key, lang=lang, loading_state=loading_state, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, role=role, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, ...)
7+
props <- list(children=children, id=id, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, key=key, lang=lang, loading_state=loading_state, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, role=role, spellCheck=spellCheck, style=style, summary=summary, tabIndex=tabIndex, title=title, ...)
88
if (length(props) > 0) {
99
props <- props[!vapply(props, is.null, logical(1))]
1010
}
1111
component <- list(
1212
props = props,
1313
type = 'Table',
1414
namespace = 'dash_html_components',
15-
propNames = c('children', 'id', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'key', 'lang', 'loading_state', 'n_clicks', 'n_clicks_timestamp', 'role', 'spellCheck', 'style', 'tabIndex', 'title', wildcard_names),
15+
propNames = c('children', 'id', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'key', 'lang', 'loading_state', 'n_clicks', 'n_clicks_timestamp', 'role', 'spellCheck', 'style', 'summary', 'tabIndex', 'title', wildcard_names),
1616
package = 'dashHtmlComponents'
1717
)
1818

R/internal.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.dashHtmlComponents_js_metadata <- function() {
22
deps_metadata <- list(`dash_html_components` = structure(list(name = "dash_html_components",
3-
version = "1.1.3", src = list(href = NULL,
3+
version = "1.1.4", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'dash_html_components.min.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashHtmlComponents",
77
all_files = FALSE), class = "html_dependency"),
88
`dash_html_components` = structure(list(name = "dash_html_components",
9-
version = "1.1.3", src = list(href = NULL,
9+
version = "1.1.4", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'dash_html_components.min.js.map',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashHtmlComponents",

0 commit comments

Comments
 (0)