@qtsurfer/sveltecharts 0.4.3 → 0.4.5
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/SVECharts.svelte +4 -4
- package/package.json +2 -2
package/dist/SVECharts.svelte
CHANGED
|
@@ -74,10 +74,10 @@
|
|
|
74
74
|
|
|
75
75
|
let instance: ECharts;
|
|
76
76
|
|
|
77
|
-
const {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
77
|
+
const mergedConfig = $derived({ ...DEFAULT_CONFIG, ...config });
|
|
78
|
+
const theme = $derived(mergedConfig.theme);
|
|
79
|
+
const renderer = $derived(mergedConfig.renderer);
|
|
80
|
+
const option = $derived(mergedConfig.option);
|
|
81
81
|
|
|
82
82
|
const handleDataZoom = (zoomEvent: unknown) => {
|
|
83
83
|
if (!onDataZoom) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@qtsurfer/sveltecharts",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.5",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "QTSurfer (https://github.com/QTSurfer)",
|
|
7
7
|
"homepage": "https://github.com/QTSurfer/svelte-timeseries/tree/main/packages/sveltecharts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@sveltejs/package": "^2.5.7",
|
|
39
39
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
40
40
|
"@types/eslint": "^9.6.1",
|
|
41
|
-
"@types/node": "^24.
|
|
41
|
+
"@types/node": "^24.12.0",
|
|
42
42
|
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
43
43
|
"@typescript-eslint/parser": "^8.57.1",
|
|
44
44
|
"echarts": "^6.0.0",
|