Skip to content
Open
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
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
}
91 changes: 46 additions & 45 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,48 @@
{
"name": "coroowicaksono/chart-js-integration",
"description": "A Simple Dashboard Chart in Laravel Nova using Chart JS. Starting create your own dashboard with Chart JS Integration can save your time and help you maintain consistency across standard elements such as Bar, Stacked, Line, Area, Doughnut and Pie Chart.",
"keywords": [
"laravel",
"nova",
"stacked chart",
"chart js"
],
"license": "MIT",
"homepage": "https://github.com/coroo",
"authors": [
{
"name": "Kuncoro Wicaksono",
"email": "[email protected]",
"role": "Software Engineer"
}
],
"require": {
"php": ">=7.1.0",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
"Coroowicaksono\\ChartJsIntegration\\": "src/",
"Coroowicaksono\\ChartJsIntegration\\Api\\": "src/api"
}
},
"extra": {
"laravel": {
"providers": [
"Coroowicaksono\\ChartJsIntegration\\CardServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
"name": "coroowicaksono/chart-js-integration",
"description": "A Simple Dashboard Chart in Laravel Nova using Chart JS. Starting create your own dashboard with Chart JS Integration can save your time and help you maintain consistency across standard elements such as Bar, Stacked, Line, Area, Doughnut and Pie Chart.",
"keywords": [
"laravel",
"nova",
"stacked chart",
"chart js"
],
"license": "MIT",
"homepage": "https://github.com/coroo",
"authors": [
{
"name": "Kuncoro Wicaksono",
"email": "[email protected]",
"role": "Software Engineer"
}
],
"require": {
"php": ">=8.0",
"laravel/nova": "^5.0",
"phpoffice/phpspreadsheet": "^1.29|^2.0"
},
"autoload": {
"psr-4": {
"Coroowicaksono\\ChartJsIntegration\\": "src/",
"Coroowicaksono\\ChartJsIntegration\\Api\\": "src/api"
}
},
"extra": {
"laravel": {
"providers": [
"Coroowicaksono\\ChartJsIntegration\\CardServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}
2 changes: 1 addition & 1 deletion dist/js/chart-js-integration.js

Large diffs are not rendered by default.

16 changes: 15 additions & 1 deletion dist/js/chart-js-integration.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
/*!
* Chart.js v3.7.1
* @kurkle/color v0.2.1
* https://github.com/kurkle/color#readme
* (c) 2022 Jukka Kurkela
* Released under the MIT License
*/

/*!
* Chart.js v3.9.1
* https://www.chartjs.org
* (c) 2022 Chart.js Contributors
* Released under the MIT License
*/

/*!
* chartjs-plugin-annotation v2.2.1
* https://www.chartjs.org/chartjs-plugin-annotation/index
* (c) 2023 chartjs-plugin-annotation Contributors
* Released under the MIT License
*/
Loading