Skip to content

Commit bd3f3d6

Browse files
committed
version 1.3.1
1 parent 847b208 commit bd3f3d6

File tree

7 files changed

+244
-102
lines changed

7 files changed

+244
-102
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: rAmCharts4
22
Title: Interface to the JavaScript Library 'amCharts 4'
3-
Version: 1.3.0
3+
Version: 1.3.1
44
Authors@R: c(
55
person(given = "Stéphane",
66
family = "Laurent",
@@ -30,7 +30,7 @@ Encoding: UTF-8
3030
LazyData: true
3131
Imports:
3232
htmltools,
33-
htmlwidgets,
33+
htmlwidgets (>= 1.5.3),
3434
reactR,
3535
shiny,
3636
jsonlite,

NEWS.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# rAmCharts4 1.3.1 (2021-03-06)
2+
3+
* Updated 'amcharts4'.
4+
* Compliance with the new 'htmlwidgets' convention.
5+
6+
17
# rAmCharts4 1.3.0 (2021-01-11)
28

39
* New options for legends: `maxWidth`, `maxHeight`, and `scrollable`.

R/internal.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Called by HTMLWidgets to produce the widget's root element.
22
#' @noRd
3-
amChart4_html <- function(id, style, class, ...) {
3+
widget_html.amChart4 <- function(id, style, class, ...) {
44
htmltools::tagList(
55
# Necessary for RStudio viewer version < 1.2
66
reactR::html_dependency_corejs(),

inst/htmlwidgets/amChart4.js

+229-93
Large diffs are not rendered by default.

inst/htmlwidgets/amChart4.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"dependencies": {
4-
"@amcharts/amcharts4": "^4.10.12",
4+
"@amcharts/amcharts4": "^4.10.16",
55
"regression": "^2.0.1"
66
},
77
"devDependencies": {

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# yarn lockfile v1
33

44

5-
"@amcharts/amcharts4@^4.10.12":
6-
version "4.10.12"
7-
resolved "https://registry.yarnpkg.com/@amcharts/amcharts4/-/amcharts4-4.10.12.tgz#ecec7c456a3840694c71854e2fc39b1c33d6ef18"
8-
integrity sha512-TC3YQEiL+SA8YA9LtIIQlgCu+43TVeVXg2jAyZKr6Th3t5t04fFkT+NvNqN9/k312ud8RIipEtSG/6ozUFssuw==
5+
"@amcharts/amcharts4@^4.10.16":
6+
version "4.10.16"
7+
resolved "https://registry.yarnpkg.com/@amcharts/amcharts4/-/amcharts4-4.10.16.tgz#6da21413d9c7190ab19e81339182a8044cc85546"
8+
integrity sha512-RCXQ/7g6DXTQ2owEgDWojVD1FSe+6oiKeNWNxC9+miDNgX2OU/y2g8rDo65OXf5/7ZhD5uvu7msh/Ma4vw9EtA==
99
dependencies:
1010
"@babel/runtime" "^7.6.3"
1111
core-js "^3.0.0"

0 commit comments

Comments
 (0)