@operato/scene-chartjs 9.1.1 → 10.0.0-beta.2
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/dist/chartjs.js +13 -18
- package/dist/chartjs.js.map +1 -1
- package/dist/config-converter.d.ts +5 -1
- package/dist/config-converter.js +248 -273
- package/dist/config-converter.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/ox-chart.d.ts +2 -2
- package/dist/ox-chart.js +81 -67
- package/dist/ox-chart.js.map +1 -1
- package/dist/plugins/chart-series-highlight.d.ts +0 -1
- package/dist/plugins/chart-series-highlight.js +13 -9
- package/dist/plugins/chart-series-highlight.js.map +1 -1
- package/dist/plugins/chartjs-plugin-data-binder.js +1 -1
- package/dist/plugins/chartjs-plugin-data-binder.js.map +1 -1
- package/dist/templates/horizontal-bar-chart.js +1 -1
- package/dist/templates/horizontal-bar-chart.js.map +1 -1
- package/package.json +18 -24
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-chartjs",
|
|
3
3
|
"description": "Things Scene ChartJS Component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "10.0.0-beta.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "heartyoh",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -22,45 +22,39 @@
|
|
|
22
22
|
"serve:dev": "npm run serve",
|
|
23
23
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
24
24
|
"build": "tsc",
|
|
25
|
-
"
|
|
26
|
-
"lint": "eslint
|
|
27
|
-
"format": "eslint
|
|
25
|
+
"prepublishOnly": "tsc",
|
|
26
|
+
"lint": "eslint src/ && prettier \"src/**/*.ts\" --check",
|
|
27
|
+
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write",
|
|
28
28
|
"migration": "things-factory-migration"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@ctrl/tinycolor": "^3.1.6",
|
|
32
|
-
"@hatiolab/things-scene": "^
|
|
32
|
+
"@hatiolab/things-scene": "^10.0.0-beta.1",
|
|
33
33
|
"@material/web": "^2.0.0",
|
|
34
|
-
"@operato/chart": "^
|
|
35
|
-
"@operato/utils": "^
|
|
34
|
+
"@operato/chart": "^10.0.0-beta.1",
|
|
35
|
+
"@operato/utils": "^10.0.0-beta.1",
|
|
36
36
|
"@webcomponents/template": "^1.5.0",
|
|
37
37
|
"@webcomponents/webcomponentsjs": "^2.6.0",
|
|
38
|
-
"chart.js": "^
|
|
39
|
-
"chartjs-plugin-
|
|
40
|
-
"chartjs-plugin-
|
|
41
|
-
"chartjs-plugin-datalabels": "^0.7.0",
|
|
42
|
-
"chartjs-plugin-style": "^0.5.0",
|
|
43
|
-
"core-js": "^3.26.0",
|
|
38
|
+
"chart.js": "^4.4.3",
|
|
39
|
+
"chartjs-plugin-crosshair": "^2.0.0",
|
|
40
|
+
"chartjs-plugin-datalabels": "^2.2.0",
|
|
44
41
|
"lit": "^3.1.2",
|
|
45
|
-
"lodash-es": "^4.17.21"
|
|
46
|
-
"regenerator-runtime": "^0.13.3",
|
|
47
|
-
"ses": "^1.5.0"
|
|
42
|
+
"lodash-es": "^4.17.21"
|
|
48
43
|
},
|
|
49
44
|
"devDependencies": {
|
|
50
45
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
51
|
-
"@things-factory/builder": "^
|
|
52
|
-
"@things-factory/operato-board": "^
|
|
53
|
-
"@types/chart.js": "2.9.34",
|
|
46
|
+
"@things-factory/builder": "^10.0.0-beta.1",
|
|
47
|
+
"@things-factory/operato-board": "^10.0.0-beta.1",
|
|
54
48
|
"@types/lodash-es": "^4.17.5",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
56
|
-
"@typescript-eslint/parser": "^
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
50
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
57
51
|
"@web/dev-server": "^0.1.28",
|
|
58
52
|
"concurrently": "^8.0.1",
|
|
59
53
|
"eslint": "^9.18.0",
|
|
60
54
|
"eslint-config-prettier": "^10.0.1",
|
|
61
55
|
"husky": "^8.0.3",
|
|
62
|
-
"lint-staged": "^
|
|
63
|
-
"prettier": "^2.
|
|
56
|
+
"lint-staged": "^15.2.2",
|
|
57
|
+
"prettier": "^3.2.5",
|
|
64
58
|
"tslib": "^2.3.1",
|
|
65
59
|
"typescript": "^5.0.4"
|
|
66
60
|
},
|
|
@@ -76,5 +70,5 @@
|
|
|
76
70
|
"prettier --write"
|
|
77
71
|
]
|
|
78
72
|
},
|
|
79
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "350ece104754d007967cf8e3f54d0d157465e94a"
|
|
80
74
|
}
|