Skip to content

Commit d0c5536

Browse files
author
Ryan Patrick Kyle
committed
Revert ":package: build R pkg 1.0.1"
This reverts commit 401a11c8c5f8d02cc3d3aa45b019c368b997775d.
1 parent 912462a commit d0c5536

File tree

135 files changed

+666
-143
lines changed

Some content is hidden

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

135 files changed

+666
-143
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package: dashHtmlComponents
2-
Title: Vanilla HTML Components for Dash
3-
Version: 1.0.1
4-
Description: A web application framework that provides pure Python and R abstraction around HTML, CSS, and JavaScript, Dash offers a pleasant and productive development experience. 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'.
2+
Title: Vanilla HTML components for Dash
3+
Version: 1.0.0
4+
Authors @R: as.person(c(Chris Parmer <[email protected]>))
5+
Description: Vanilla HTML components for Dash
56
Depends: R (>= 3.0.2)
67
Imports:
7-
Suggests: knitr, rmarkdown
8-
VignetteBuilder: knitr
8+
Suggests:
99
License: MIT + file LICENSE
1010
URL: https://github.com/plotly/dash-html-components
1111
BugReports: https://github.com/plotly/dash-html-components/issues
1212
Encoding: UTF-8
1313
LazyData: true
1414
Author: Chris Parmer [aut]
15-
Maintainer: Ryan Patrick Kyle <ryan@plot.ly>
15+
Maintainer: Chris Parmer <chris@plot.ly>

packages/dash-html-components/R/internal.R

Lines changed: 4 additions & 4 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.0.1", src = list(href = NULL,
3+
version = "1.0.0", 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.0.1", src = list(href = NULL,
9+
version = "1.0.0", 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",
@@ -18,11 +18,11 @@ dash_assert_valid_wildcards <- function (attrib = list("data", "aria"), ...)
1818
{
1919
args <- list(...)
2020
validation_results <- lapply(names(args), function(x) {
21-
grepl(paste0("^(", paste0(attrib, collapse="|"), ")-[a-zA-Z0-9_-]+$"),
21+
grepl(paste0("^", attrib, "-[a-zA-Z0-9]{1,}$", collapse = "|"),
2222
x)
2323
})
2424
if (FALSE %in% validation_results) {
25-
stop(sprintf("The following props are not valid in this component: '%s'",
25+
stop(sprintf("The following wildcards are not currently valid in Dash: '%s'",
2626
paste(names(args)[grepl(FALSE, unlist(validation_results))],
2727
collapse = ", ")), call. = FALSE)
2828
}

packages/dash-html-components/inst/deps/dash_html_components.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-html-components/man/htmlA.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ htmlA(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, download=NULL, href=NULL, hrefLang=NULL, media=NULL, rel=NULL,
1515
shape=NULL, target=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1616
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
17-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
17+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1818
}
1919

2020
\arguments{
@@ -80,4 +80,8 @@ those elements have the following types:
8080
- is_loading (logical; optional): determines if the component is loading or not
8181
- prop_name (character; optional): holds which property is loading
8282
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
83+
84+
85+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
86+
8387
}

packages/dash-html-components/man/htmlAbbr.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Abbr is a wrapper for the <abbr> HTML5 element. For detailed attribute info see:
1313
htmlAbbr(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlAcronym.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Acronym is a wrapper for the <acronym> HTML5 element. For detailed attribute inf
1313
htmlAcronym(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlAddress.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Address is a wrapper for the <address> HTML5 element. For detailed attribute inf
1313
htmlAddress(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlArea.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ role=NULL, alt=NULL, coords=NULL, download=NULL, href=NULL, hrefLang=NULL,
1515
media=NULL, rel=NULL, shape=NULL, target=NULL, accessKey=NULL, className=NULL,
1616
contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL,
1717
lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL,
18-
loading_state=NULL)
18+
loading_state=NULL, ...)
1919
}
2020

2121
\arguments{
@@ -85,4 +85,8 @@ those elements have the following types:
8585
- is_loading (logical; optional): determines if the component is loading or not
8686
- prop_name (character; optional): holds which property is loading
8787
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
88+
89+
90+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
91+
8892
}

packages/dash-html-components/man/htmlArticle.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Article is a wrapper for the <article> HTML5 element. For detailed attribute inf
1313
htmlArticle(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlAside.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Aside is a wrapper for the <aside> HTML5 element. For detailed attribute info se
1313
htmlAside(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlAudio.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ role=NULL, autoPlay=NULL, controls=NULL, crossOrigin=NULL, loop=NULL,
1515
muted=NULL, preload=NULL, src=NULL, accessKey=NULL, className=NULL,
1616
contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL,
1717
lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL,
18-
loading_state=NULL)
18+
loading_state=NULL, ...)
1919
}
2020

2121
\arguments{
@@ -81,4 +81,8 @@ those elements have the following types:
8181
- is_loading (logical; optional): determines if the component is loading or not
8282
- prop_name (character; optional): holds which property is loading
8383
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
84+
85+
86+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
87+
8488
}

packages/dash-html-components/man/htmlB.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ B is a wrapper for the <b> HTML5 element. For detailed attribute info see: https
1313
htmlB(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlBase.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ htmlBase(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NUL
1414
role=NULL, href=NULL, target=NULL, accessKey=NULL, className=NULL,
1515
contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL,
1616
lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL,
17-
loading_state=NULL)
17+
loading_state=NULL, ...)
1818
}
1919

2020
\arguments{
@@ -70,4 +70,8 @@ those elements have the following types:
7070
- is_loading (logical; optional): determines if the component is loading or not
7171
- prop_name (character; optional): holds which property is loading
7272
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
73+
74+
75+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
76+
7377
}

packages/dash-html-components/man/htmlBasefont.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Basefont is a wrapper for the <basefont> HTML5 element. For detailed attribute i
1313
htmlBasefont(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlBdi.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Bdi is a wrapper for the <bdi> HTML5 element. For detailed attribute info see: h
1313
htmlBdi(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlBdo.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Bdo is a wrapper for the <bdo> HTML5 element. For detailed attribute info see: h
1313
htmlBdo(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlBig.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Big is a wrapper for the <big> HTML5 element. For detailed attribute info see: h
1313
htmlBig(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlBlink.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Blink is a wrapper for the <blink> HTML5 element. For detailed attribute info se
1313
htmlBlink(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlBlockquote.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Blockquote is a wrapper for the <blockquote> HTML5 element. For detailed attribu
1313
htmlBlockquote(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, cite=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -67,4 +67,8 @@ those elements have the following types:
6767
- is_loading (logical; optional): determines if the component is loading or not
6868
- prop_name (character; optional): holds which property is loading
6969
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
70+
71+
72+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
73+
7074
}

packages/dash-html-components/man/htmlBr.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Br is a wrapper for the <br> HTML5 element. For detailed attribute info see: htt
1313
htmlBr(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL,
1414
role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL,
1515
contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL,
16-
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL)
16+
spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...)
1717
}
1818

1919
\arguments{
@@ -65,4 +65,8 @@ those elements have the following types:
6565
- is_loading (logical; optional): determines if the component is loading or not
6666
- prop_name (character; optional): holds which property is loading
6767
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
68+
69+
70+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
71+
6872
}

packages/dash-html-components/man/htmlButton.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ formEncType=NULL, formMethod=NULL, formNoValidate=NULL, formTarget=NULL,
1616
name=NULL, type=NULL, value=NULL, accessKey=NULL, className=NULL,
1717
contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL,
1818
lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL,
19-
loading_state=NULL)
19+
loading_state=NULL, ...)
2020
}
2121

2222
\arguments{
@@ -90,4 +90,8 @@ those elements have the following types:
9090
- is_loading (logical; optional): determines if the component is loading or not
9191
- prop_name (character; optional): holds which property is loading
9292
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
93+
94+
95+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
96+
9397
}

packages/dash-html-components/man/htmlCanvas.Rd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ htmlCanvas(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=N
1414
role=NULL, height=NULL, width=NULL, accessKey=NULL, className=NULL,
1515
contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL,
1616
lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL,
17-
loading_state=NULL)
17+
loading_state=NULL, ...)
1818
}
1919

2020
\arguments{
@@ -70,4 +70,8 @@ those elements have the following types:
7070
- is_loading (logical; optional): determines if the component is loading or not
7171
- prop_name (character; optional): holds which property is loading
7272
- component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer}
73+
74+
75+
\item{...}{wildcards allowed have the form: `'data-*', 'aria-*'`}
76+
7377
}

0 commit comments

Comments
 (0)