add version 1.1.0.1 to r-crosstalk (#20869)
This commit is contained in:
parent
a7316a24ca
commit
faa1f84d57
1 changed files with 9 additions and 4 deletions
|
@ -7,18 +7,23 @@
|
||||||
|
|
||||||
|
|
||||||
class RCrosstalk(RPackage):
|
class RCrosstalk(RPackage):
|
||||||
"""Provides building blocks for allowing HTML widgets to communicate with
|
"""Inter-Widget Interactivity for HTML Widgets
|
||||||
each other, with Shiny or without (i.e. static .html files)."""
|
|
||||||
|
Provides building blocks for allowing HTML widgets to communicate with each
|
||||||
|
other, with Shiny or without (i.e. static .html files). Currently supports
|
||||||
|
linked brushing and filtering."""
|
||||||
|
|
||||||
homepage = "https://cloud.r-project.org/package=crosstalk"
|
homepage = "https://cloud.r-project.org/package=crosstalk"
|
||||||
url = "https://cloud.r-project.org/src/contrib/crosstalk_1.0.0.tar.gz"
|
url = "https://cloud.r-project.org/src/contrib/crosstalk_1.0.0.tar.gz"
|
||||||
list_url = "https://cloud.r-project.org/src/contrib/Archive/crosstalk"
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/crosstalk"
|
||||||
|
|
||||||
|
version('1.1.0.1', sha256='36a70b10bc11826e314c05f9579fd791b9ac3b3a2cfed4d4ca74ce1ad991300e')
|
||||||
version('1.0.0', sha256='b31eada24cac26f24c9763d9a8cbe0adfd87b264cf57f8725027fe0c7742ca51')
|
version('1.0.0', sha256='b31eada24cac26f24c9763d9a8cbe0adfd87b264cf57f8725027fe0c7742ca51')
|
||||||
|
|
||||||
depends_on('r-htmltools@0.3.5:', type=('build', 'run'))
|
depends_on('r-htmltools@0.3.5:', type=('build', 'run'))
|
||||||
|
depends_on('r-htmltools@0.3.6:', when='@1.1.0.1:', type=('build', 'run'))
|
||||||
depends_on('r-jsonlite', type=('build', 'run'))
|
depends_on('r-jsonlite', type=('build', 'run'))
|
||||||
depends_on('r-lazyeval', type=('build', 'run'))
|
depends_on('r-lazyeval', type=('build', 'run'))
|
||||||
depends_on('r-ggplot2', type=('build', 'run'))
|
|
||||||
depends_on('r-shiny@0.11:', type=('build', 'run'))
|
|
||||||
depends_on('r-r6', type=('build', 'run'))
|
depends_on('r-r6', type=('build', 'run'))
|
||||||
|
depends_on('r-ggplot2', when='@:1.0.0', type=('build', 'run'))
|
||||||
|
depends_on('r-shiny@0.11:', when='@:1.0.0', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue