diff --git a/.gitignore b/.gitignore index 8fbfc5ff..ed07517a 100644 --- a/.gitignore +++ b/.gitignore @@ -19,10 +19,4 @@ lib/metadata.json /src -/build -/dash_html_components -/inst -/man -/R -DESCRIPTION -NAMESPACE \ No newline at end of file +/build \ No newline at end of file diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 00000000..7955b1ce --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,16 @@ +Package: dashHtmlComponents +Title: Vanilla HTML components for Dash +Version: 1.0.2 +Authors @R: as.person(c(Chris Parmer )) +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'. +Depends: R (>= 3.0.2) +Imports: +Suggests: knitr, rmarkdown +VignetteBuilder: knitr +License: MIT + file LICENSE +URL: https://github.com/plotly/dash-html-components +BugReports: https://github.com/plotly/dash-html-components/issues +Encoding: UTF-8 +LazyData: true +Author: Chris Parmer [aut] +Maintainer: Ryan Patrick Kyle diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 00000000..65c6ca38 --- /dev/null +++ b/NAMESPACE @@ -0,0 +1,133 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +export(htmlA) +export(htmlAbbr) +export(htmlAcronym) +export(htmlAddress) +export(htmlArea) +export(htmlArticle) +export(htmlAside) +export(htmlAudio) +export(htmlB) +export(htmlBase) +export(htmlBasefont) +export(htmlBdi) +export(htmlBdo) +export(htmlBig) +export(htmlBlink) +export(htmlBlockquote) +export(htmlBr) +export(htmlButton) +export(htmlCanvas) +export(htmlCaption) +export(htmlCenter) +export(htmlCite) +export(htmlCode) +export(htmlCol) +export(htmlColgroup) +export(htmlCommand) +export(htmlContent) +export(htmlData) +export(htmlDatalist) +export(htmlDd) +export(htmlDel) +export(htmlDetails) +export(htmlDfn) +export(htmlDialog) +export(htmlDiv) +export(htmlDl) +export(htmlDt) +export(htmlElement) +export(htmlEm) +export(htmlEmbed) +export(htmlFieldset) +export(htmlFigcaption) +export(htmlFigure) +export(htmlFont) +export(htmlFooter) +export(htmlForm) +export(htmlFrame) +export(htmlFrameset) +export(htmlH1) +export(htmlH2) +export(htmlH3) +export(htmlH4) +export(htmlH5) +export(htmlH6) +export(htmlHeader) +export(htmlHgroup) +export(htmlHr) +export(htmlI) +export(htmlIframe) +export(htmlImg) +export(htmlIns) +export(htmlIsindex) +export(htmlKbd) +export(htmlKeygen) +export(htmlLabel) +export(htmlLegend) +export(htmlLi) +export(htmlLink) +export(htmlListing) +export(htmlMain) +export(htmlMapEl) +export(htmlMark) +export(htmlMarquee) +export(htmlMeta) +export(htmlMeter) +export(htmlMulticol) +export(htmlNav) +export(htmlNextid) +export(htmlNobr) +export(htmlNoscript) +export(htmlObjectEl) +export(htmlOl) +export(htmlOptgroup) +export(htmlOption) +export(htmlOutput) +export(htmlP) +export(htmlParam) +export(htmlPicture) +export(htmlPlaintext) +export(htmlPre) +export(htmlProgress) +export(htmlQ) +export(htmlRb) +export(htmlRp) +export(htmlRt) +export(htmlRtc) +export(htmlRuby) +export(htmlS) +export(htmlSamp) +export(htmlScript) +export(htmlSection) +export(htmlSelect) +export(htmlShadow) +export(htmlSlot) +export(htmlSmall) +export(htmlSource) +export(htmlSpacer) +export(htmlSpan) +export(htmlStrike) +export(htmlStrong) +export(htmlSub) +export(htmlSummary) +export(htmlSup) +export(htmlTable) +export(htmlTbody) +export(htmlTd) +export(htmlTemplate) +export(htmlTextarea) +export(htmlTfoot) +export(htmlTh) +export(htmlThead) +export(htmlTime) +export(htmlTitle) +export(htmlTr) +export(htmlTrack) +export(htmlU) +export(htmlUl) +export(htmlVar) +export(htmlVideo) +export(htmlWbr) +export(htmlXmp) diff --git a/R/htmlA.R b/R/htmlA.R new file mode 100644 index 00000000..cda0808b --- /dev/null +++ b/R/htmlA.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlA <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, download=NULL, href=NULL, hrefLang=NULL, media=NULL, rel=NULL, shape=NULL, target=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, download=download, href=href, hrefLang=hrefLang, media=media, rel=rel, shape=shape, target=target, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'A', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'download', 'href', 'hrefLang', 'media', 'rel', 'shape', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlAbbr.R b/R/htmlAbbr.R new file mode 100644 index 00000000..3c9de3fa --- /dev/null +++ b/R/htmlAbbr.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlAbbr <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Abbr', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlAcronym.R b/R/htmlAcronym.R new file mode 100644 index 00000000..08f167ee --- /dev/null +++ b/R/htmlAcronym.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlAcronym <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Acronym', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlAddress.R b/R/htmlAddress.R new file mode 100644 index 00000000..80e6c538 --- /dev/null +++ b/R/htmlAddress.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlAddress <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Address', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlArea.R b/R/htmlArea.R new file mode 100644 index 00000000..ac1e849c --- /dev/null +++ b/R/htmlArea.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlArea <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, alt=NULL, coords=NULL, download=NULL, href=NULL, hrefLang=NULL, media=NULL, rel=NULL, shape=NULL, target=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, alt=alt, coords=coords, download=download, href=href, hrefLang=hrefLang, media=media, rel=rel, shape=shape, target=target, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Area', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'alt', 'coords', 'download', 'href', 'hrefLang', 'media', 'rel', 'shape', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlArticle.R b/R/htmlArticle.R new file mode 100644 index 00000000..fdf4263a --- /dev/null +++ b/R/htmlArticle.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlArticle <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Article', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlAside.R b/R/htmlAside.R new file mode 100644 index 00000000..ccc307f5 --- /dev/null +++ b/R/htmlAside.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlAside <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Aside', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlAudio.R b/R/htmlAudio.R new file mode 100644 index 00000000..cf591796 --- /dev/null +++ b/R/htmlAudio.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlAudio <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, autoPlay=NULL, controls=NULL, crossOrigin=NULL, loop=NULL, muted=NULL, preload=NULL, src=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, autoPlay=autoPlay, controls=controls, crossOrigin=crossOrigin, loop=loop, muted=muted, preload=preload, src=src, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Audio', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'autoPlay', 'controls', 'crossOrigin', 'loop', 'muted', 'preload', 'src', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlB.R b/R/htmlB.R new file mode 100644 index 00000000..11dcbfd7 --- /dev/null +++ b/R/htmlB.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlB <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'B', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBase.R b/R/htmlBase.R new file mode 100644 index 00000000..d5da04a9 --- /dev/null +++ b/R/htmlBase.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBase <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, href=NULL, target=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, href=href, target=target, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Base', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'href', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBasefont.R b/R/htmlBasefont.R new file mode 100644 index 00000000..68f8060e --- /dev/null +++ b/R/htmlBasefont.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBasefont <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Basefont', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBdi.R b/R/htmlBdi.R new file mode 100644 index 00000000..69a93b77 --- /dev/null +++ b/R/htmlBdi.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBdi <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Bdi', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBdo.R b/R/htmlBdo.R new file mode 100644 index 00000000..3c0710a5 --- /dev/null +++ b/R/htmlBdo.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBdo <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Bdo', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBig.R b/R/htmlBig.R new file mode 100644 index 00000000..d447d7a9 --- /dev/null +++ b/R/htmlBig.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBig <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Big', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBlink.R b/R/htmlBlink.R new file mode 100644 index 00000000..d6938d39 --- /dev/null +++ b/R/htmlBlink.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBlink <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Blink', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBlockquote.R b/R/htmlBlockquote.R new file mode 100644 index 00000000..237b06a2 --- /dev/null +++ b/R/htmlBlockquote.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBlockquote <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, cite=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, cite=cite, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Blockquote', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'cite', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlBr.R b/R/htmlBr.R new file mode 100644 index 00000000..3d2073d7 --- /dev/null +++ b/R/htmlBr.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlBr <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Br', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlButton.R b/R/htmlButton.R new file mode 100644 index 00000000..4cb50e0e --- /dev/null +++ b/R/htmlButton.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlButton <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, autoFocus=NULL, disabled=NULL, form=NULL, formAction=NULL, formEncType=NULL, formMethod=NULL, formNoValidate=NULL, formTarget=NULL, name=NULL, type=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, autoFocus=autoFocus, disabled=disabled, form=form, formAction=formAction, formEncType=formEncType, formMethod=formMethod, formNoValidate=formNoValidate, formTarget=formTarget, name=name, type=type, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Button', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'autoFocus', 'disabled', 'form', 'formAction', 'formEncType', 'formMethod', 'formNoValidate', 'formTarget', 'name', 'type', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCanvas.R b/R/htmlCanvas.R new file mode 100644 index 00000000..e429ccc2 --- /dev/null +++ b/R/htmlCanvas.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCanvas <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, height=NULL, width=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, height=height, width=width, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Canvas', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'height', 'width', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCaption.R b/R/htmlCaption.R new file mode 100644 index 00000000..ed26f0ae --- /dev/null +++ b/R/htmlCaption.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCaption <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Caption', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCenter.R b/R/htmlCenter.R new file mode 100644 index 00000000..8ee3ba15 --- /dev/null +++ b/R/htmlCenter.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCenter <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Center', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCite.R b/R/htmlCite.R new file mode 100644 index 00000000..cbfd3913 --- /dev/null +++ b/R/htmlCite.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCite <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Cite', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCode.R b/R/htmlCode.R new file mode 100644 index 00000000..0cf81acb --- /dev/null +++ b/R/htmlCode.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCode <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Code', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCol.R b/R/htmlCol.R new file mode 100644 index 00000000..3783fc22 --- /dev/null +++ b/R/htmlCol.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCol <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, span=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, span=span, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Col', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'span', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlColgroup.R b/R/htmlColgroup.R new file mode 100644 index 00000000..6338b5c1 --- /dev/null +++ b/R/htmlColgroup.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlColgroup <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, span=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, span=span, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Colgroup', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'span', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlCommand.R b/R/htmlCommand.R new file mode 100644 index 00000000..14bcefd8 --- /dev/null +++ b/R/htmlCommand.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlCommand <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, checked=NULL, disabled=NULL, icon=NULL, radioGroup=NULL, type=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, checked=checked, disabled=disabled, icon=icon, radioGroup=radioGroup, type=type, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Command', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'checked', 'disabled', 'icon', 'radioGroup', 'type', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlContent.R b/R/htmlContent.R new file mode 100644 index 00000000..6ac68c27 --- /dev/null +++ b/R/htmlContent.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlContent <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Content', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlData.R b/R/htmlData.R new file mode 100644 index 00000000..973e01c3 --- /dev/null +++ b/R/htmlData.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlData <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Data', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDatalist.R b/R/htmlDatalist.R new file mode 100644 index 00000000..8bd83534 --- /dev/null +++ b/R/htmlDatalist.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDatalist <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Datalist', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDd.R b/R/htmlDd.R new file mode 100644 index 00000000..53347e45 --- /dev/null +++ b/R/htmlDd.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDd <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Dd', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDel.R b/R/htmlDel.R new file mode 100644 index 00000000..1e934595 --- /dev/null +++ b/R/htmlDel.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDel <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, cite=NULL, dateTime=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, cite=cite, dateTime=dateTime, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Del', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'cite', 'dateTime', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDetails.R b/R/htmlDetails.R new file mode 100644 index 00000000..e356cf6a --- /dev/null +++ b/R/htmlDetails.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDetails <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, open=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, open=open, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Details', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'open', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDfn.R b/R/htmlDfn.R new file mode 100644 index 00000000..c1782701 --- /dev/null +++ b/R/htmlDfn.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDfn <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Dfn', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDialog.R b/R/htmlDialog.R new file mode 100644 index 00000000..0a307c6a --- /dev/null +++ b/R/htmlDialog.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDialog <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Dialog', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDiv.R b/R/htmlDiv.R new file mode 100644 index 00000000..cda83672 --- /dev/null +++ b/R/htmlDiv.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDiv <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Div', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDl.R b/R/htmlDl.R new file mode 100644 index 00000000..d7ad4395 --- /dev/null +++ b/R/htmlDl.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDl <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Dl', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlDt.R b/R/htmlDt.R new file mode 100644 index 00000000..60fa2cf5 --- /dev/null +++ b/R/htmlDt.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlDt <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Dt', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlElement.R b/R/htmlElement.R new file mode 100644 index 00000000..f55a1616 --- /dev/null +++ b/R/htmlElement.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlElement <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Element', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlEm.R b/R/htmlEm.R new file mode 100644 index 00000000..a16d330d --- /dev/null +++ b/R/htmlEm.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlEm <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Em', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlEmbed.R b/R/htmlEmbed.R new file mode 100644 index 00000000..be4613bb --- /dev/null +++ b/R/htmlEmbed.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlEmbed <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, height=NULL, src=NULL, type=NULL, width=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, height=height, src=src, type=type, width=width, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Embed', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'height', 'src', 'type', 'width', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFieldset.R b/R/htmlFieldset.R new file mode 100644 index 00000000..39d32519 --- /dev/null +++ b/R/htmlFieldset.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFieldset <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, disabled=NULL, form=NULL, name=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, disabled=disabled, form=form, name=name, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Fieldset', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'disabled', 'form', 'name', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFigcaption.R b/R/htmlFigcaption.R new file mode 100644 index 00000000..431f3860 --- /dev/null +++ b/R/htmlFigcaption.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFigcaption <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Figcaption', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFigure.R b/R/htmlFigure.R new file mode 100644 index 00000000..d6142629 --- /dev/null +++ b/R/htmlFigure.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFigure <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Figure', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFont.R b/R/htmlFont.R new file mode 100644 index 00000000..5cdf5850 --- /dev/null +++ b/R/htmlFont.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFont <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Font', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFooter.R b/R/htmlFooter.R new file mode 100644 index 00000000..68bf1f05 --- /dev/null +++ b/R/htmlFooter.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFooter <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Footer', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlForm.R b/R/htmlForm.R new file mode 100644 index 00000000..3d15c0bb --- /dev/null +++ b/R/htmlForm.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlForm <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accept=NULL, acceptCharset=NULL, action=NULL, autoComplete=NULL, encType=NULL, method=NULL, name=NULL, noValidate=NULL, target=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accept=accept, acceptCharset=acceptCharset, action=action, autoComplete=autoComplete, encType=encType, method=method, name=name, noValidate=noValidate, target=target, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Form', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accept', 'acceptCharset', 'action', 'autoComplete', 'encType', 'method', 'name', 'noValidate', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFrame.R b/R/htmlFrame.R new file mode 100644 index 00000000..70a76a0e --- /dev/null +++ b/R/htmlFrame.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFrame <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Frame', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlFrameset.R b/R/htmlFrameset.R new file mode 100644 index 00000000..0b55d0ca --- /dev/null +++ b/R/htmlFrameset.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlFrameset <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Frameset', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlH1.R b/R/htmlH1.R new file mode 100644 index 00000000..733ab62b --- /dev/null +++ b/R/htmlH1.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlH1 <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'H1', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlH2.R b/R/htmlH2.R new file mode 100644 index 00000000..d119da62 --- /dev/null +++ b/R/htmlH2.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlH2 <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'H2', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlH3.R b/R/htmlH3.R new file mode 100644 index 00000000..5959cd06 --- /dev/null +++ b/R/htmlH3.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlH3 <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'H3', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlH4.R b/R/htmlH4.R new file mode 100644 index 00000000..5dd5897a --- /dev/null +++ b/R/htmlH4.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlH4 <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'H4', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlH5.R b/R/htmlH5.R new file mode 100644 index 00000000..3ba4791d --- /dev/null +++ b/R/htmlH5.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlH5 <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'H5', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlH6.R b/R/htmlH6.R new file mode 100644 index 00000000..d6f63c78 --- /dev/null +++ b/R/htmlH6.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlH6 <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'H6', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlHeader.R b/R/htmlHeader.R new file mode 100644 index 00000000..c68c29a3 --- /dev/null +++ b/R/htmlHeader.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlHeader <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Header', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlHgroup.R b/R/htmlHgroup.R new file mode 100644 index 00000000..8a658785 --- /dev/null +++ b/R/htmlHgroup.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlHgroup <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Hgroup', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlHr.R b/R/htmlHr.R new file mode 100644 index 00000000..7410fee3 --- /dev/null +++ b/R/htmlHr.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlHr <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Hr', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlI.R b/R/htmlI.R new file mode 100644 index 00000000..f1da085b --- /dev/null +++ b/R/htmlI.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlI <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'I', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlIframe.R b/R/htmlIframe.R new file mode 100644 index 00000000..6c991cf2 --- /dev/null +++ b/R/htmlIframe.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlIframe <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, height=NULL, name=NULL, sandbox=NULL, src=NULL, srcDoc=NULL, width=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, height=height, name=name, sandbox=sandbox, src=src, srcDoc=srcDoc, width=width, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Iframe', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'height', 'name', 'sandbox', 'src', 'srcDoc', 'width', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlImg.R b/R/htmlImg.R new file mode 100644 index 00000000..18681b64 --- /dev/null +++ b/R/htmlImg.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlImg <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, alt=NULL, crossOrigin=NULL, height=NULL, sizes=NULL, src=NULL, srcSet=NULL, useMap=NULL, width=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, alt=alt, crossOrigin=crossOrigin, height=height, sizes=sizes, src=src, srcSet=srcSet, useMap=useMap, width=width, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Img', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'alt', 'crossOrigin', 'height', 'sizes', 'src', 'srcSet', 'useMap', 'width', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlIns.R b/R/htmlIns.R new file mode 100644 index 00000000..8a6733ce --- /dev/null +++ b/R/htmlIns.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlIns <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, cite=NULL, dateTime=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, cite=cite, dateTime=dateTime, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Ins', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'cite', 'dateTime', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlIsindex.R b/R/htmlIsindex.R new file mode 100644 index 00000000..80bf9046 --- /dev/null +++ b/R/htmlIsindex.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlIsindex <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Isindex', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlKbd.R b/R/htmlKbd.R new file mode 100644 index 00000000..391958f9 --- /dev/null +++ b/R/htmlKbd.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlKbd <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Kbd', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlKeygen.R b/R/htmlKeygen.R new file mode 100644 index 00000000..959b89be --- /dev/null +++ b/R/htmlKeygen.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlKeygen <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, autoFocus=NULL, challenge=NULL, disabled=NULL, form=NULL, keyType=NULL, name=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, autoFocus=autoFocus, challenge=challenge, disabled=disabled, form=form, keyType=keyType, name=name, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Keygen', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'autoFocus', 'challenge', 'disabled', 'form', 'keyType', 'name', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlLabel.R b/R/htmlLabel.R new file mode 100644 index 00000000..23905652 --- /dev/null +++ b/R/htmlLabel.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlLabel <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, htmlFor=NULL, form=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, htmlFor=htmlFor, form=form, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Label', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'htmlFor', 'form', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlLegend.R b/R/htmlLegend.R new file mode 100644 index 00000000..677e8d0c --- /dev/null +++ b/R/htmlLegend.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlLegend <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Legend', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlLi.R b/R/htmlLi.R new file mode 100644 index 00000000..2944209b --- /dev/null +++ b/R/htmlLi.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlLi <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Li', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlLink.R b/R/htmlLink.R new file mode 100644 index 00000000..65a7c5f5 --- /dev/null +++ b/R/htmlLink.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlLink <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, crossOrigin=NULL, href=NULL, hrefLang=NULL, integrity=NULL, media=NULL, rel=NULL, sizes=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, crossOrigin=crossOrigin, href=href, hrefLang=hrefLang, integrity=integrity, media=media, rel=rel, sizes=sizes, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Link', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'crossOrigin', 'href', 'hrefLang', 'integrity', 'media', 'rel', 'sizes', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlListing.R b/R/htmlListing.R new file mode 100644 index 00000000..c91fb712 --- /dev/null +++ b/R/htmlListing.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlListing <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Listing', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMain.R b/R/htmlMain.R new file mode 100644 index 00000000..70b25fce --- /dev/null +++ b/R/htmlMain.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMain <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Main', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMapEl.R b/R/htmlMapEl.R new file mode 100644 index 00000000..cf258ea0 --- /dev/null +++ b/R/htmlMapEl.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMapEl <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, name=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, name=name, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'MapEl', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'name', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMark.R b/R/htmlMark.R new file mode 100644 index 00000000..944d0fd4 --- /dev/null +++ b/R/htmlMark.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMark <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Mark', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMarquee.R b/R/htmlMarquee.R new file mode 100644 index 00000000..a1b57b0f --- /dev/null +++ b/R/htmlMarquee.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMarquee <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, loop=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, loop=loop, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Marquee', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'loop', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMeta.R b/R/htmlMeta.R new file mode 100644 index 00000000..2a214425 --- /dev/null +++ b/R/htmlMeta.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMeta <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, charSet=NULL, content=NULL, httpEquiv=NULL, name=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, charSet=charSet, content=content, httpEquiv=httpEquiv, name=name, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Meta', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'charSet', 'content', 'httpEquiv', 'name', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMeter.R b/R/htmlMeter.R new file mode 100644 index 00000000..b00f98b4 --- /dev/null +++ b/R/htmlMeter.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMeter <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, form=NULL, high=NULL, low=NULL, max=NULL, min=NULL, optimum=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, form=form, high=high, low=low, max=max, min=min, optimum=optimum, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Meter', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'form', 'high', 'low', 'max', 'min', 'optimum', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlMulticol.R b/R/htmlMulticol.R new file mode 100644 index 00000000..2db0c4e7 --- /dev/null +++ b/R/htmlMulticol.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlMulticol <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Multicol', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlNav.R b/R/htmlNav.R new file mode 100644 index 00000000..f50cc2ed --- /dev/null +++ b/R/htmlNav.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlNav <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Nav', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlNextid.R b/R/htmlNextid.R new file mode 100644 index 00000000..f94d59e1 --- /dev/null +++ b/R/htmlNextid.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlNextid <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Nextid', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlNobr.R b/R/htmlNobr.R new file mode 100644 index 00000000..41cdd397 --- /dev/null +++ b/R/htmlNobr.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlNobr <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Nobr', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlNoscript.R b/R/htmlNoscript.R new file mode 100644 index 00000000..0df8dfd3 --- /dev/null +++ b/R/htmlNoscript.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlNoscript <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Noscript', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlObjectEl.R b/R/htmlObjectEl.R new file mode 100644 index 00000000..86e7033a --- /dev/null +++ b/R/htmlObjectEl.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlObjectEl <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, form=NULL, height=NULL, name=NULL, type=NULL, useMap=NULL, width=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, form=form, height=height, name=name, type=type, useMap=useMap, width=width, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'ObjectEl', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'form', 'height', 'name', 'type', 'useMap', 'width', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlOl.R b/R/htmlOl.R new file mode 100644 index 00000000..a66c3456 --- /dev/null +++ b/R/htmlOl.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlOl <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, reversed=NULL, start=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, reversed=reversed, start=start, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Ol', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'reversed', 'start', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlOptgroup.R b/R/htmlOptgroup.R new file mode 100644 index 00000000..e077c235 --- /dev/null +++ b/R/htmlOptgroup.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlOptgroup <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, disabled=NULL, label=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, disabled=disabled, label=label, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Optgroup', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'disabled', 'label', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlOption.R b/R/htmlOption.R new file mode 100644 index 00000000..8b59d548 --- /dev/null +++ b/R/htmlOption.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlOption <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, disabled=NULL, label=NULL, selected=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, disabled=disabled, label=label, selected=selected, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Option', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'disabled', 'label', 'selected', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlOutput.R b/R/htmlOutput.R new file mode 100644 index 00000000..3ab26b2e --- /dev/null +++ b/R/htmlOutput.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlOutput <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, htmlFor=NULL, form=NULL, name=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, htmlFor=htmlFor, form=form, name=name, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Output', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'htmlFor', 'form', 'name', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlP.R b/R/htmlP.R new file mode 100644 index 00000000..ccc894b5 --- /dev/null +++ b/R/htmlP.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlP <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'P', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlParam.R b/R/htmlParam.R new file mode 100644 index 00000000..3ad28b50 --- /dev/null +++ b/R/htmlParam.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlParam <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, name=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, name=name, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Param', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'name', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlPicture.R b/R/htmlPicture.R new file mode 100644 index 00000000..5b236273 --- /dev/null +++ b/R/htmlPicture.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlPicture <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Picture', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlPlaintext.R b/R/htmlPlaintext.R new file mode 100644 index 00000000..79a8aae0 --- /dev/null +++ b/R/htmlPlaintext.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlPlaintext <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Plaintext', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlPre.R b/R/htmlPre.R new file mode 100644 index 00000000..6cd52108 --- /dev/null +++ b/R/htmlPre.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlPre <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Pre', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlProgress.R b/R/htmlProgress.R new file mode 100644 index 00000000..ca73d44f --- /dev/null +++ b/R/htmlProgress.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlProgress <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, form=NULL, max=NULL, value=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, form=form, max=max, value=value, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Progress', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'form', 'max', 'value', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlQ.R b/R/htmlQ.R new file mode 100644 index 00000000..cab52c28 --- /dev/null +++ b/R/htmlQ.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlQ <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, cite=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, cite=cite, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Q', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'cite', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlRb.R b/R/htmlRb.R new file mode 100644 index 00000000..b7b8d9a0 --- /dev/null +++ b/R/htmlRb.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlRb <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Rb', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlRp.R b/R/htmlRp.R new file mode 100644 index 00000000..5381bd3b --- /dev/null +++ b/R/htmlRp.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlRp <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Rp', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlRt.R b/R/htmlRt.R new file mode 100644 index 00000000..fdc12135 --- /dev/null +++ b/R/htmlRt.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlRt <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Rt', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlRtc.R b/R/htmlRtc.R new file mode 100644 index 00000000..7174f0dd --- /dev/null +++ b/R/htmlRtc.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlRtc <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Rtc', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlRuby.R b/R/htmlRuby.R new file mode 100644 index 00000000..a3c5c90f --- /dev/null +++ b/R/htmlRuby.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlRuby <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Ruby', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlS.R b/R/htmlS.R new file mode 100644 index 00000000..819e4ef9 --- /dev/null +++ b/R/htmlS.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlS <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'S', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSamp.R b/R/htmlSamp.R new file mode 100644 index 00000000..1a52dc59 --- /dev/null +++ b/R/htmlSamp.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSamp <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Samp', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlScript.R b/R/htmlScript.R new file mode 100644 index 00000000..8be4b1bb --- /dev/null +++ b/R/htmlScript.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlScript <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, async=NULL, charSet=NULL, crossOrigin=NULL, defer=NULL, integrity=NULL, src=NULL, type=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, async=async, charSet=charSet, crossOrigin=crossOrigin, defer=defer, integrity=integrity, src=src, type=type, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Script', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'async', 'charSet', 'crossOrigin', 'defer', 'integrity', 'src', 'type', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSection.R b/R/htmlSection.R new file mode 100644 index 00000000..c7e9088b --- /dev/null +++ b/R/htmlSection.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSection <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Section', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSelect.R b/R/htmlSelect.R new file mode 100644 index 00000000..fbd89509 --- /dev/null +++ b/R/htmlSelect.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSelect <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, autoComplete=NULL, autoFocus=NULL, disabled=NULL, form=NULL, multiple=NULL, name=NULL, required=NULL, size=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, autoComplete=autoComplete, autoFocus=autoFocus, disabled=disabled, form=form, multiple=multiple, name=name, required=required, size=size, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Select', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'autoComplete', 'autoFocus', 'disabled', 'form', 'multiple', 'name', 'required', 'size', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlShadow.R b/R/htmlShadow.R new file mode 100644 index 00000000..d127ac12 --- /dev/null +++ b/R/htmlShadow.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlShadow <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Shadow', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSlot.R b/R/htmlSlot.R new file mode 100644 index 00000000..cd17b4de --- /dev/null +++ b/R/htmlSlot.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSlot <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Slot', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSmall.R b/R/htmlSmall.R new file mode 100644 index 00000000..cfc04e22 --- /dev/null +++ b/R/htmlSmall.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSmall <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Small', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSource.R b/R/htmlSource.R new file mode 100644 index 00000000..9ae27b58 --- /dev/null +++ b/R/htmlSource.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSource <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, media=NULL, sizes=NULL, src=NULL, srcSet=NULL, type=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, media=media, sizes=sizes, src=src, srcSet=srcSet, type=type, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Source', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'media', 'sizes', 'src', 'srcSet', 'type', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSpacer.R b/R/htmlSpacer.R new file mode 100644 index 00000000..79cf1060 --- /dev/null +++ b/R/htmlSpacer.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSpacer <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Spacer', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSpan.R b/R/htmlSpan.R new file mode 100644 index 00000000..3d9c2b89 --- /dev/null +++ b/R/htmlSpan.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSpan <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Span', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlStrike.R b/R/htmlStrike.R new file mode 100644 index 00000000..b7ea88f4 --- /dev/null +++ b/R/htmlStrike.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlStrike <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Strike', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlStrong.R b/R/htmlStrong.R new file mode 100644 index 00000000..9b34edd0 --- /dev/null +++ b/R/htmlStrong.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlStrong <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Strong', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSub.R b/R/htmlSub.R new file mode 100644 index 00000000..1c942583 --- /dev/null +++ b/R/htmlSub.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSub <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Sub', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSummary.R b/R/htmlSummary.R new file mode 100644 index 00000000..b9f65fe1 --- /dev/null +++ b/R/htmlSummary.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSummary <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Summary', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlSup.R b/R/htmlSup.R new file mode 100644 index 00000000..83b57bc6 --- /dev/null +++ b/R/htmlSup.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlSup <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Sup', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTable.R b/R/htmlTable.R new file mode 100644 index 00000000..ccb6f818 --- /dev/null +++ b/R/htmlTable.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTable <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, summary=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, summary=summary, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Table', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'summary', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTbody.R b/R/htmlTbody.R new file mode 100644 index 00000000..0102f22b --- /dev/null +++ b/R/htmlTbody.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTbody <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Tbody', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTd.R b/R/htmlTd.R new file mode 100644 index 00000000..35868e74 --- /dev/null +++ b/R/htmlTd.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTd <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, colSpan=NULL, headers=NULL, rowSpan=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, colSpan=colSpan, headers=headers, rowSpan=rowSpan, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Td', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'colSpan', 'headers', 'rowSpan', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTemplate.R b/R/htmlTemplate.R new file mode 100644 index 00000000..81227087 --- /dev/null +++ b/R/htmlTemplate.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTemplate <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Template', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTextarea.R b/R/htmlTextarea.R new file mode 100644 index 00000000..e67623b8 --- /dev/null +++ b/R/htmlTextarea.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTextarea <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, autoComplete=NULL, autoFocus=NULL, cols=NULL, disabled=NULL, form=NULL, inputMode=NULL, maxLength=NULL, minLength=NULL, name=NULL, placeholder=NULL, readOnly=NULL, required=NULL, rows=NULL, wrap=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, autoComplete=autoComplete, autoFocus=autoFocus, cols=cols, disabled=disabled, form=form, inputMode=inputMode, maxLength=maxLength, minLength=minLength, name=name, placeholder=placeholder, readOnly=readOnly, required=required, rows=rows, wrap=wrap, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Textarea', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'autoComplete', 'autoFocus', 'cols', 'disabled', 'form', 'inputMode', 'maxLength', 'minLength', 'name', 'placeholder', 'readOnly', 'required', 'rows', 'wrap', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTfoot.R b/R/htmlTfoot.R new file mode 100644 index 00000000..e41d5024 --- /dev/null +++ b/R/htmlTfoot.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTfoot <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Tfoot', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTh.R b/R/htmlTh.R new file mode 100644 index 00000000..ca0168e2 --- /dev/null +++ b/R/htmlTh.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTh <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, colSpan=NULL, headers=NULL, rowSpan=NULL, scope=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, colSpan=colSpan, headers=headers, rowSpan=rowSpan, scope=scope, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Th', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'colSpan', 'headers', 'rowSpan', 'scope', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlThead.R b/R/htmlThead.R new file mode 100644 index 00000000..73add1ff --- /dev/null +++ b/R/htmlThead.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlThead <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Thead', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTime.R b/R/htmlTime.R new file mode 100644 index 00000000..732f5397 --- /dev/null +++ b/R/htmlTime.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTime <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, dateTime=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, dateTime=dateTime, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Time', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'dateTime', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTitle.R b/R/htmlTitle.R new file mode 100644 index 00000000..c4f068d2 --- /dev/null +++ b/R/htmlTitle.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTitle <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Title', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTr.R b/R/htmlTr.R new file mode 100644 index 00000000..e7781378 --- /dev/null +++ b/R/htmlTr.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTr <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Tr', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlTrack.R b/R/htmlTrack.R new file mode 100644 index 00000000..bf6e6959 --- /dev/null +++ b/R/htmlTrack.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlTrack <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, default=NULL, kind=NULL, label=NULL, src=NULL, srcLang=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, default=default, kind=kind, label=label, src=src, srcLang=srcLang, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Track', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'default', 'kind', 'label', 'src', 'srcLang', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlU.R b/R/htmlU.R new file mode 100644 index 00000000..87320c1b --- /dev/null +++ b/R/htmlU.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlU <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'U', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlUl.R b/R/htmlUl.R new file mode 100644 index 00000000..f9fb617f --- /dev/null +++ b/R/htmlUl.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlUl <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Ul', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlVar.R b/R/htmlVar.R new file mode 100644 index 00000000..d023115c --- /dev/null +++ b/R/htmlVar.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlVar <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Var', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlVideo.R b/R/htmlVideo.R new file mode 100644 index 00000000..362885f0 --- /dev/null +++ b/R/htmlVideo.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlVideo <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, autoPlay=NULL, controls=NULL, crossOrigin=NULL, height=NULL, loop=NULL, muted=NULL, poster=NULL, preload=NULL, src=NULL, width=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, autoPlay=autoPlay, controls=controls, crossOrigin=crossOrigin, height=height, loop=loop, muted=muted, poster=poster, preload=preload, src=src, width=width, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Video', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'autoPlay', 'controls', 'crossOrigin', 'height', 'loop', 'muted', 'poster', 'preload', 'src', 'width', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlWbr.R b/R/htmlWbr.R new file mode 100644 index 00000000..33778caf --- /dev/null +++ b/R/htmlWbr.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlWbr <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Wbr', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/htmlXmp.R b/R/htmlXmp.R new file mode 100644 index 00000000..463a47f4 --- /dev/null +++ b/R/htmlXmp.R @@ -0,0 +1,20 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +htmlXmp <- function(children=NULL, id=NULL, n_clicks=NULL, n_clicks_timestamp=NULL, key=NULL, role=NULL, accessKey=NULL, className=NULL, contentEditable=NULL, contextMenu=NULL, dir=NULL, draggable=NULL, hidden=NULL, lang=NULL, spellCheck=NULL, style=NULL, tabIndex=NULL, title=NULL, loading_state=NULL, ...) { + + wildcard_names = names(dash_assert_valid_wildcards(attrib = list('data', 'aria'), ...)) + + props <- list(children=children, id=id, n_clicks=n_clicks, n_clicks_timestamp=n_clicks_timestamp, key=key, role=role, accessKey=accessKey, className=className, contentEditable=contentEditable, contextMenu=contextMenu, dir=dir, draggable=draggable, hidden=hidden, lang=lang, spellCheck=spellCheck, style=style, tabIndex=tabIndex, title=title, loading_state=loading_state, ...) + if (length(props) > 0) { + props <- props[!vapply(props, is.null, logical(1))] + } + component <- list( + props = props, + type = 'Xmp', + namespace = 'dash_html_components', + propNames = c('children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state', wildcard_names), + package = 'dashHtmlComponents' + ) + + structure(component, class = c('dash_component', 'list')) +} diff --git a/R/internal.R b/R/internal.R new file mode 100644 index 00000000..c8e0abca --- /dev/null +++ b/R/internal.R @@ -0,0 +1,32 @@ +.dashHtmlComponents_js_metadata <- function() { +deps_metadata <- list(`dash_html_components` = structure(list(name = "dash_html_components", +version = "1.0.2", src = list(href = NULL, +file = "deps"), meta = NULL, +script = 'dash_html_components.min.js', +stylesheet = NULL, head = NULL, attachment = NULL, package = "dashHtmlComponents", +all_files = FALSE), class = "html_dependency"), +`dash_html_components` = structure(list(name = "dash_html_components", +version = "1.0.2", src = list(href = NULL, +file = "deps"), meta = NULL, +script = 'dash_html_components.min.js.map', +stylesheet = NULL, head = NULL, attachment = NULL, package = "dashHtmlComponents", +all_files = FALSE), class = "html_dependency")) +return(deps_metadata) +} + +dash_assert_valid_wildcards <- function (attrib = list("data", "aria"), ...) +{ + args <- list(...) + validation_results <- lapply(names(args), function(x) { + grepl(paste0("^(", paste0(attrib, collapse="|"), ")-[a-zA-Z0-9_-]+$"), + x) + }) + if (FALSE %in% validation_results) { + stop(sprintf("The following props are not valid in this component: '%s'", + paste(names(args)[grepl(FALSE, unlist(validation_results))], + collapse = ", ")), call. = FALSE) + } + else { + return(args) + } +} diff --git a/dash_html_components/A.py b/dash_html_components/A.py new file mode 100644 index 00000000..813b7c81 --- /dev/null +++ b/dash_html_components/A.py @@ -0,0 +1,70 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class A(Component): + """An A component. +A is a wrapper for the HTML5 element. +For detailed attribute info see: +https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a + +Keyword arguments: +- children (a list of or a singular dash component, string or number; optional): The children of this component +- id (string; optional): The ID of this component, used to identify dash components +in callbacks. The ID needs to be unique across all of the +components in an app. +- n_clicks (number; default 0): An integer that represents the number of times +that this element has been clicked on. +- n_clicks_timestamp (number; default -1): An integer that represents the time (in ms since 1970) +at which n_clicks changed. This can be used to tell +which button was changed most recently. +- key (string; optional): A unique identifier for the component, used to improve +performance by React.js while rendering components +See https://reactjs.org/docs/lists-and-keys.html for more info +- role (string; optional): The ARIA role attribute +- data-* (string; optional): A wildcard data attribute +- aria-* (string; optional): A wildcard aria attribute +- download (string; optional): Indicates that the hyperlink is to be used for downloading a resource. +- href (string; optional): The URL of a linked resource. +- hrefLang (string; optional): Specifies the language of the linked resource. +- media (string; optional): Specifies a hint of the media for which the linked resource was designed. +- rel (string; optional): Specifies the relationship of the target object to the link object. +- shape (string; optional) +- target (string; optional) +- accessKey (string; optional): Defines a keyboard shortcut to activate or add focus to the element. +- className (string; optional): Often used with CSS to style elements with common properties. +- contentEditable (string; optional): Indicates whether the element's content is editable. +- contextMenu (string; optional): Defines the ID of a element which will serve as the element's context menu. +- dir (string; optional): Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) +- draggable (string; optional): Defines whether the element can be dragged. +- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional): Prevents rendering of given element, while keeping child elements, e.g. script elements, active. +- lang (string; optional): Defines the language used in the element. +- spellCheck (string; optional): Indicates whether spell checking is allowed for the element. +- style (dict; optional): Defines CSS styles which will override styles previously set. +- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead. +- title (string; optional): Text to be displayed in a tooltip when hovering over the element. +- loading_state (dict; optional): Object that holds the loading state object coming from dash-renderer. loading_state has the following type: dict containing keys 'is_loading', 'prop_name', 'component_name'. +Those keys have the following types: + - is_loading (boolean; optional): Determines if the component is loading or not + - prop_name (string; optional): Holds which property is loading + - component_name (string; optional): Holds the name of the component that is loading""" + @_explicitize_args + def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, download=Component.UNDEFINED, href=Component.UNDEFINED, hrefLang=Component.UNDEFINED, media=Component.UNDEFINED, rel=Component.UNDEFINED, shape=Component.UNDEFINED, target=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs): + self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'download', 'href', 'hrefLang', 'media', 'rel', 'shape', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self._type = 'A' + self._namespace = 'dash_html_components' + self._valid_wildcard_attributes = ['data-', 'aria-'] + self.available_properties = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'download', 'href', 'hrefLang', 'media', 'rel', 'shape', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self.available_wildcard_properties = ['data-', 'aria-'] + + _explicit_args = kwargs.pop('_explicit_args') + _locals = locals() + _locals.update(kwargs) # For wildcard attrs + args = {k: _locals[k] for k in _explicit_args if k != 'children'} + + for k in []: + if k not in args: + raise TypeError( + 'Required argument `' + k + '` was not specified.') + super(A, self).__init__(children=children, **args) diff --git a/dash_html_components/Abbr.py b/dash_html_components/Abbr.py new file mode 100644 index 00000000..93cbf00f --- /dev/null +++ b/dash_html_components/Abbr.py @@ -0,0 +1,63 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class Abbr(Component): + """An Abbr component. +Abbr is a wrapper for the HTML5 element. +For detailed attribute info see: +https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr + +Keyword arguments: +- children (a list of or a singular dash component, string or number; optional): The children of this component +- id (string; optional): The ID of this component, used to identify dash components +in callbacks. The ID needs to be unique across all of the +components in an app. +- n_clicks (number; default 0): An integer that represents the number of times +that this element has been clicked on. +- n_clicks_timestamp (number; default -1): An integer that represents the time (in ms since 1970) +at which n_clicks changed. This can be used to tell +which button was changed most recently. +- key (string; optional): A unique identifier for the component, used to improve +performance by React.js while rendering components +See https://reactjs.org/docs/lists-and-keys.html for more info +- role (string; optional): The ARIA role attribute +- data-* (string; optional): A wildcard data attribute +- aria-* (string; optional): A wildcard aria attribute +- accessKey (string; optional): Defines a keyboard shortcut to activate or add focus to the element. +- className (string; optional): Often used with CSS to style elements with common properties. +- contentEditable (string; optional): Indicates whether the element's content is editable. +- contextMenu (string; optional): Defines the ID of a element which will serve as the element's context menu. +- dir (string; optional): Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) +- draggable (string; optional): Defines whether the element can be dragged. +- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional): Prevents rendering of given element, while keeping child elements, e.g. script elements, active. +- lang (string; optional): Defines the language used in the element. +- spellCheck (string; optional): Indicates whether spell checking is allowed for the element. +- style (dict; optional): Defines CSS styles which will override styles previously set. +- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead. +- title (string; optional): Text to be displayed in a tooltip when hovering over the element. +- loading_state (dict; optional): Object that holds the loading state object coming from dash-renderer. loading_state has the following type: dict containing keys 'is_loading', 'prop_name', 'component_name'. +Those keys have the following types: + - is_loading (boolean; optional): Determines if the component is loading or not + - prop_name (string; optional): Holds which property is loading + - component_name (string; optional): Holds the name of the component that is loading""" + @_explicitize_args + def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs): + self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self._type = 'Abbr' + self._namespace = 'dash_html_components' + self._valid_wildcard_attributes = ['data-', 'aria-'] + self.available_properties = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self.available_wildcard_properties = ['data-', 'aria-'] + + _explicit_args = kwargs.pop('_explicit_args') + _locals = locals() + _locals.update(kwargs) # For wildcard attrs + args = {k: _locals[k] for k in _explicit_args if k != 'children'} + + for k in []: + if k not in args: + raise TypeError( + 'Required argument `' + k + '` was not specified.') + super(Abbr, self).__init__(children=children, **args) diff --git a/dash_html_components/Acronym.py b/dash_html_components/Acronym.py new file mode 100644 index 00000000..869174f2 --- /dev/null +++ b/dash_html_components/Acronym.py @@ -0,0 +1,63 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class Acronym(Component): + """An Acronym component. +Acronym is a wrapper for the HTML5 element. +For detailed attribute info see: +https://developer.mozilla.org/en-US/docs/Web/HTML/Element/acronym + +Keyword arguments: +- children (a list of or a singular dash component, string or number; optional): The children of this component +- id (string; optional): The ID of this component, used to identify dash components +in callbacks. The ID needs to be unique across all of the +components in an app. +- n_clicks (number; default 0): An integer that represents the number of times +that this element has been clicked on. +- n_clicks_timestamp (number; default -1): An integer that represents the time (in ms since 1970) +at which n_clicks changed. This can be used to tell +which button was changed most recently. +- key (string; optional): A unique identifier for the component, used to improve +performance by React.js while rendering components +See https://reactjs.org/docs/lists-and-keys.html for more info +- role (string; optional): The ARIA role attribute +- data-* (string; optional): A wildcard data attribute +- aria-* (string; optional): A wildcard aria attribute +- accessKey (string; optional): Defines a keyboard shortcut to activate or add focus to the element. +- className (string; optional): Often used with CSS to style elements with common properties. +- contentEditable (string; optional): Indicates whether the element's content is editable. +- contextMenu (string; optional): Defines the ID of a element which will serve as the element's context menu. +- dir (string; optional): Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) +- draggable (string; optional): Defines whether the element can be dragged. +- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional): Prevents rendering of given element, while keeping child elements, e.g. script elements, active. +- lang (string; optional): Defines the language used in the element. +- spellCheck (string; optional): Indicates whether spell checking is allowed for the element. +- style (dict; optional): Defines CSS styles which will override styles previously set. +- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead. +- title (string; optional): Text to be displayed in a tooltip when hovering over the element. +- loading_state (dict; optional): Object that holds the loading state object coming from dash-renderer. loading_state has the following type: dict containing keys 'is_loading', 'prop_name', 'component_name'. +Those keys have the following types: + - is_loading (boolean; optional): Determines if the component is loading or not + - prop_name (string; optional): Holds which property is loading + - component_name (string; optional): Holds the name of the component that is loading""" + @_explicitize_args + def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs): + self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self._type = 'Acronym' + self._namespace = 'dash_html_components' + self._valid_wildcard_attributes = ['data-', 'aria-'] + self.available_properties = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self.available_wildcard_properties = ['data-', 'aria-'] + + _explicit_args = kwargs.pop('_explicit_args') + _locals = locals() + _locals.update(kwargs) # For wildcard attrs + args = {k: _locals[k] for k in _explicit_args if k != 'children'} + + for k in []: + if k not in args: + raise TypeError( + 'Required argument `' + k + '` was not specified.') + super(Acronym, self).__init__(children=children, **args) diff --git a/dash_html_components/Address.py b/dash_html_components/Address.py new file mode 100644 index 00000000..e089ea1e --- /dev/null +++ b/dash_html_components/Address.py @@ -0,0 +1,63 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class Address(Component): + """An Address component. +Address is a wrapper for the
HTML5 element. +For detailed attribute info see: +https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address + +Keyword arguments: +- children (a list of or a singular dash component, string or number; optional): The children of this component +- id (string; optional): The ID of this component, used to identify dash components +in callbacks. The ID needs to be unique across all of the +components in an app. +- n_clicks (number; default 0): An integer that represents the number of times +that this element has been clicked on. +- n_clicks_timestamp (number; default -1): An integer that represents the time (in ms since 1970) +at which n_clicks changed. This can be used to tell +which button was changed most recently. +- key (string; optional): A unique identifier for the component, used to improve +performance by React.js while rendering components +See https://reactjs.org/docs/lists-and-keys.html for more info +- role (string; optional): The ARIA role attribute +- data-* (string; optional): A wildcard data attribute +- aria-* (string; optional): A wildcard aria attribute +- accessKey (string; optional): Defines a keyboard shortcut to activate or add focus to the element. +- className (string; optional): Often used with CSS to style elements with common properties. +- contentEditable (string; optional): Indicates whether the element's content is editable. +- contextMenu (string; optional): Defines the ID of a element which will serve as the element's context menu. +- dir (string; optional): Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) +- draggable (string; optional): Defines whether the element can be dragged. +- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional): Prevents rendering of given element, while keeping child elements, e.g. script elements, active. +- lang (string; optional): Defines the language used in the element. +- spellCheck (string; optional): Indicates whether spell checking is allowed for the element. +- style (dict; optional): Defines CSS styles which will override styles previously set. +- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead. +- title (string; optional): Text to be displayed in a tooltip when hovering over the element. +- loading_state (dict; optional): Object that holds the loading state object coming from dash-renderer. loading_state has the following type: dict containing keys 'is_loading', 'prop_name', 'component_name'. +Those keys have the following types: + - is_loading (boolean; optional): Determines if the component is loading or not + - prop_name (string; optional): Holds which property is loading + - component_name (string; optional): Holds the name of the component that is loading""" + @_explicitize_args + def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs): + self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self._type = 'Address' + self._namespace = 'dash_html_components' + self._valid_wildcard_attributes = ['data-', 'aria-'] + self.available_properties = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self.available_wildcard_properties = ['data-', 'aria-'] + + _explicit_args = kwargs.pop('_explicit_args') + _locals = locals() + _locals.update(kwargs) # For wildcard attrs + args = {k: _locals[k] for k in _explicit_args if k != 'children'} + + for k in []: + if k not in args: + raise TypeError( + 'Required argument `' + k + '` was not specified.') + super(Address, self).__init__(children=children, **args) diff --git a/dash_html_components/Area.py b/dash_html_components/Area.py new file mode 100644 index 00000000..2a23ce0c --- /dev/null +++ b/dash_html_components/Area.py @@ -0,0 +1,72 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class Area(Component): + """An Area component. +Area is a wrapper for the HTML5 element. +For detailed attribute info see: +https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area + +Keyword arguments: +- children (a list of or a singular dash component, string or number; optional): The children of this component +- id (string; optional): The ID of this component, used to identify dash components +in callbacks. The ID needs to be unique across all of the +components in an app. +- n_clicks (number; default 0): An integer that represents the number of times +that this element has been clicked on. +- n_clicks_timestamp (number; default -1): An integer that represents the time (in ms since 1970) +at which n_clicks changed. This can be used to tell +which button was changed most recently. +- key (string; optional): A unique identifier for the component, used to improve +performance by React.js while rendering components +See https://reactjs.org/docs/lists-and-keys.html for more info +- role (string; optional): The ARIA role attribute +- data-* (string; optional): A wildcard data attribute +- aria-* (string; optional): A wildcard aria attribute +- alt (string; optional): Alternative text in case an image can't be displayed. +- coords (string; optional): A set of values specifying the coordinates of the hot-spot region. +- download (string; optional): Indicates that the hyperlink is to be used for downloading a resource. +- href (string; optional): The URL of a linked resource. +- hrefLang (string; optional): Specifies the language of the linked resource. +- media (string; optional): Specifies a hint of the media for which the linked resource was designed. +- rel (string; optional): Specifies the relationship of the target object to the link object. +- shape (string; optional) +- target (string; optional) +- accessKey (string; optional): Defines a keyboard shortcut to activate or add focus to the element. +- className (string; optional): Often used with CSS to style elements with common properties. +- contentEditable (string; optional): Indicates whether the element's content is editable. +- contextMenu (string; optional): Defines the ID of a element which will serve as the element's context menu. +- dir (string; optional): Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) +- draggable (string; optional): Defines whether the element can be dragged. +- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional): Prevents rendering of given element, while keeping child elements, e.g. script elements, active. +- lang (string; optional): Defines the language used in the element. +- spellCheck (string; optional): Indicates whether spell checking is allowed for the element. +- style (dict; optional): Defines CSS styles which will override styles previously set. +- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead. +- title (string; optional): Text to be displayed in a tooltip when hovering over the element. +- loading_state (dict; optional): Object that holds the loading state object coming from dash-renderer. loading_state has the following type: dict containing keys 'is_loading', 'prop_name', 'component_name'. +Those keys have the following types: + - is_loading (boolean; optional): Determines if the component is loading or not + - prop_name (string; optional): Holds which property is loading + - component_name (string; optional): Holds the name of the component that is loading""" + @_explicitize_args + def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, alt=Component.UNDEFINED, coords=Component.UNDEFINED, download=Component.UNDEFINED, href=Component.UNDEFINED, hrefLang=Component.UNDEFINED, media=Component.UNDEFINED, rel=Component.UNDEFINED, shape=Component.UNDEFINED, target=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs): + self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'alt', 'coords', 'download', 'href', 'hrefLang', 'media', 'rel', 'shape', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self._type = 'Area' + self._namespace = 'dash_html_components' + self._valid_wildcard_attributes = ['data-', 'aria-'] + self.available_properties = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'alt', 'coords', 'download', 'href', 'hrefLang', 'media', 'rel', 'shape', 'target', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self.available_wildcard_properties = ['data-', 'aria-'] + + _explicit_args = kwargs.pop('_explicit_args') + _locals = locals() + _locals.update(kwargs) # For wildcard attrs + args = {k: _locals[k] for k in _explicit_args if k != 'children'} + + for k in []: + if k not in args: + raise TypeError( + 'Required argument `' + k + '` was not specified.') + super(Area, self).__init__(children=children, **args) diff --git a/dash_html_components/Article.py b/dash_html_components/Article.py new file mode 100644 index 00000000..f83701ee --- /dev/null +++ b/dash_html_components/Article.py @@ -0,0 +1,63 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class Article(Component): + """An Article component. +Article is a wrapper for the
HTML5 element. +For detailed attribute info see: +https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article + +Keyword arguments: +- children (a list of or a singular dash component, string or number; optional): The children of this component +- id (string; optional): The ID of this component, used to identify dash components +in callbacks. The ID needs to be unique across all of the +components in an app. +- n_clicks (number; default 0): An integer that represents the number of times +that this element has been clicked on. +- n_clicks_timestamp (number; default -1): An integer that represents the time (in ms since 1970) +at which n_clicks changed. This can be used to tell +which button was changed most recently. +- key (string; optional): A unique identifier for the component, used to improve +performance by React.js while rendering components +See https://reactjs.org/docs/lists-and-keys.html for more info +- role (string; optional): The ARIA role attribute +- data-* (string; optional): A wildcard data attribute +- aria-* (string; optional): A wildcard aria attribute +- accessKey (string; optional): Defines a keyboard shortcut to activate or add focus to the element. +- className (string; optional): Often used with CSS to style elements with common properties. +- contentEditable (string; optional): Indicates whether the element's content is editable. +- contextMenu (string; optional): Defines the ID of a element which will serve as the element's context menu. +- dir (string; optional): Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) +- draggable (string; optional): Defines whether the element can be dragged. +- hidden (a value equal to: 'hidden', 'HIDDEN' | boolean; optional): Prevents rendering of given element, while keeping child elements, e.g. script elements, active. +- lang (string; optional): Defines the language used in the element. +- spellCheck (string; optional): Indicates whether spell checking is allowed for the element. +- style (dict; optional): Defines CSS styles which will override styles previously set. +- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead. +- title (string; optional): Text to be displayed in a tooltip when hovering over the element. +- loading_state (dict; optional): Object that holds the loading state object coming from dash-renderer. loading_state has the following type: dict containing keys 'is_loading', 'prop_name', 'component_name'. +Those keys have the following types: + - is_loading (boolean; optional): Determines if the component is loading or not + - prop_name (string; optional): Holds which property is loading + - component_name (string; optional): Holds the name of the component that is loading""" + @_explicitize_args + def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs): + self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self._type = 'Article' + self._namespace = 'dash_html_components' + self._valid_wildcard_attributes = ['data-', 'aria-'] + self.available_properties = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title', 'loading_state'] + self.available_wildcard_properties = ['data-', 'aria-'] + + _explicit_args = kwargs.pop('_explicit_args') + _locals = locals() + _locals.update(kwargs) # For wildcard attrs + args = {k: _locals[k] for k in _explicit_args if k != 'children'} + + for k in []: + if k not in args: + raise TypeError( + 'Required argument `' + k + '` was not specified.') + super(Article, self).__init__(children=children, **args) diff --git a/dash_html_components/Aside.py b/dash_html_components/Aside.py new file mode 100644 index 00000000..fa94cce5 --- /dev/null +++ b/dash_html_components/Aside.py @@ -0,0 +1,63 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +from dash.development.base_component import Component, _explicitize_args + + +class Aside(Component): + """An Aside component. +Aside is a wrapper for the