updated ApexCharts to 3.29.0

This commit is contained in:
pvictor 2021-10-20 18:17:27 +02:00
parent c0672ba655
commit 05494785ae
No known key found for this signature in database
GPG Key ID: 31124C9F3F9268B8
7 changed files with 1740 additions and 63 deletions

View File

@ -1,5 +1,5 @@
Package: apexcharter Package: apexcharter
Version: 0.2.0.9100 Version: 0.2.0.9200
Title: Create Interactive Chart with the JavaScript 'ApexCharts' Library Title: Create Interactive Chart with the JavaScript 'ApexCharts' Library
Description: Provides an 'htmlwidgets' interface to 'apexcharts.js'. Description: Provides an 'htmlwidgets' interface to 'apexcharts.js'.
'Apexcharts' is a modern JavaScript charting library to build interactive charts and visualizations with simple API. 'Apexcharts' is a modern JavaScript charting library to build interactive charts and visualizations with simple API.
@ -28,7 +28,7 @@ Suggests:
scales, scales,
rmarkdown, rmarkdown,
covr covr
RoxygenNote: 7.1.1 RoxygenNote: 7.1.2
Roxygen: list(markdown = TRUE) Roxygen: list(markdown = TRUE)
URL: https://github.com/dreamRs/apexcharter, https://dreamrs.github.io/apexcharter/ URL: https://github.com/dreamRs/apexcharter, https://dreamrs.github.io/apexcharter/
BugReports: https://github.com/dreamRs/apexcharter/issues BugReports: https://github.com/dreamRs/apexcharter/issues

View File

@ -1,7 +1,7 @@
apexcharter 0.2.1 apexcharter 0.2.1
================== ==================
* Updated ApexCharts.js to 3.28.3 * Updated ApexCharts.js to 3.29.0
* Internal: use [{packer}](https://github.com/JohnCoene/packer) to manage JavaScript assets. * Internal: use [{packer}](https://github.com/JohnCoene/packer) to manage JavaScript assets.
* `d3.format` JavaScript functions are now available in browser under `format()` and `formatLocale()`. * `d3.format` JavaScript functions are now available in browser under `format()` and `formatLocale()`.

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
/*! /*!
* ApexCharts v3.28.3 * ApexCharts v3.29.0
* (c) 2018-2021 ApexCharts * (c) 2018-2021 ApexCharts
* Released under the MIT License. * Released under the MIT License.
*/ */

1778
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -28,14 +28,14 @@
}, },
"homepage": "https://github.com/dreamRs/apexcharter#readme", "homepage": "https://github.com/dreamRs/apexcharter#readme",
"devDependencies": { "devDependencies": {
"css-loader": "^6.2.0", "css-loader": "^6.4.0",
"style-loader": "^3.2.1", "style-loader": "^3.3.0",
"webpack": "^5.53.0", "webpack": "^5.59.0",
"webpack-cli": "^4.8.0", "webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0" "webpack-merge": "^5.8.0"
}, },
"dependencies": { "dependencies": {
"apexcharts": "^3.28.3", "apexcharts": "^3.29.0",
"d3-format": "^3.0.1" "d3-format": "^3.0.1"
} }
} }

View File

@ -59,9 +59,10 @@ var plugins = [
var options = { var options = {
entry: entryPoints, entry: entryPoints,
output: { output: {
filename: '[name].js', filename: "[name].js",
path: path.resolve(__dirname, JSON.parse(outputPath)), path: path.resolve(__dirname, JSON.parse(outputPath)),
libraryTarget: 'window' libraryTarget: "window",
hashFunction: "xxhash64",
}, },
externals: externals, externals: externals,
module: { module: {