chartjs-plugin-autocolors 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  *Automatic color generation for [Chart.js](https://www.chartjs.org)*
4
4
 
5
- ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/kurkle/chartjs-plugin-autocolors/CI)
5
+ ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/kurkle/chartjs-plugin-autocolors/ci.yml)
6
6
 
7
7
  The generation is based on Janus Troelsen's answer at [Stack Overflow](https://stackoverflow.com/a/13781114/10359775).
8
8
 
@@ -1,7 +1,7 @@
1
1
  /*!
2
- * chartjs-plugin-autocolors v0.2.0
2
+ * chartjs-plugin-autocolors v0.2.1
3
3
  * https://github.com/kurkle/chartjs-plugin-autocolors#readme
4
- * (c) 2022 Jukka Kurkela <jukka.kurkela@gmail.com>
4
+ * (c) 2023 Jukka Kurkela <jukka.kurkela@gmail.com>
5
5
  * Released under the MIT license
6
6
  */
7
7
  (function (global, factory) {
@@ -1,7 +1,7 @@
1
1
  /*!
2
- * chartjs-plugin-autocolors v0.2.0
2
+ * chartjs-plugin-autocolors v0.2.1
3
3
  * https://github.com/kurkle/chartjs-plugin-autocolors#readme
4
- * (c) 2022 Jukka Kurkela <jukka.kurkela@gmail.com>
4
+ * (c) 2023 Jukka Kurkela <jukka.kurkela@gmail.com>
5
5
  * Released under the MIT license
6
6
  */
7
7
  import { hsv2rgb, rgbString } from '@kurkle/color';
@@ -1,7 +1,7 @@
1
1
  /*!
2
- * chartjs-plugin-autocolors v0.2.0
2
+ * chartjs-plugin-autocolors v0.2.1
3
3
  * https://github.com/kurkle/chartjs-plugin-autocolors#readme
4
- * (c) 2022 Jukka Kurkela <jukka.kurkela@gmail.com>
4
+ * (c) 2023 Jukka Kurkela <jukka.kurkela@gmail.com>
5
5
  * Released under the MIT license
6
6
  */
7
7
  !function(t,o){"object"==typeof exports&&"undefined"!=typeof module?module.exports=o():"function"==typeof define&&define.amd?define(o):(t="undefined"!=typeof globalThis?globalThis:t||self)["chartjs-plugin-autocolors"]=o()}(this,(function(){"use strict";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chartjs-plugin-autocolors",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Automatic color generation for Chart.js",
5
5
  "type": "module",
6
6
  "main": "dist/chartjs-plugin-autocolors.cjs",
@@ -70,7 +70,7 @@
70
70
  "karma-firefox-launcher": "^2.1.2",
71
71
  "karma-jasmine": "^5.1.0",
72
72
  "karma-jasmine-html-reporter": "^2.0.0",
73
- "karma-rollup-preprocessor": "^7.0.7",
73
+ "karma-rollup-preprocessor": "7.0.7",
74
74
  "karma-spec-reporter": "^0.0.36",
75
75
  "rollup": "^3.7.0",
76
76
  "rollup-plugin-istanbul": "^4.0.0",
@@ -78,6 +78,6 @@
78
78
  },
79
79
  "peerDependencies": {
80
80
  "@kurkle/color": "^0.3.1",
81
- "chart.js": "^4.0.1"
81
+ "chart.js": ">=2"
82
82
  }
83
83
  }