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

Update dashHtmlComponents to 1.0.2 with support for async loading in R #146

Merged
merged 11 commits into from
Dec 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
Package: dashHtmlComponents
Title: Vanilla HTML components for Dash
Title: Vanilla HTML Components for Dash
Version: 1.0.2
Authors @R: as.person(c(Chris Parmer <chris@plot.ly>))
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'.
Description: Dash is a web application framework that provides pure Python and R abstraction around HTML, CSS, and JavaScript. Instead of writing HTML or using an HTML templating engine, you compose your layout using R functions within the dashHtmlComponents package. The source for this package is on GitHub: plotly/dash-html-components.
Depends: R (>= 3.0.2)
Imports:
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
VignetteBuilder: knitr
Author: Chris Parmer [aut]
Maintainer: Ryan Patrick Kyle <ryan@plot.ly>
2 changes: 1 addition & 1 deletion R/internal.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ 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"))
all_files = FALSE, dynamic = TRUE), class = "html_dependency"))
return(deps_metadata)
}

Expand Down
Loading