@record-evolution/widget-linechart 1.4.10 → 1.4.11
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/src/widget-linechart.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/widget-linechart.js +170 -118
- package/dist/widget-linechart.js.map +1 -1
- package/package.json +3 -3
- package/src/definition-schema.json +12 -4
- package/src/widget-linechart.ts +418 -340
- package/dist/src/types.d.ts +0 -32
- package/src/types.ts +0 -34
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent widget-linechart following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "widget-linechart",
|
|
6
|
-
"version": "1.4.
|
|
6
|
+
"version": "1.4.11",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/widget-linechart.js",
|
|
9
9
|
"types": "dist/src/widget-linechart.d.ts",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"analyze": "cem analyze --litelement",
|
|
16
16
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
17
|
-
"build": "rollup -c rollup.config.js
|
|
18
|
-
"watch": "rollup -w -c rollup.config.js
|
|
17
|
+
"build": "rollup -c rollup.config.js",
|
|
18
|
+
"watch": "rollup -w -c rollup.config.js",
|
|
19
19
|
"types": "cat src/definition-schema.json | json2ts > src/definition-schema.d.ts",
|
|
20
20
|
"release": "npm version patch --tag-version-prefix='' && git push && git push --tag"
|
|
21
21
|
},
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
{
|
|
3
2
|
"title": "Configure the Chart",
|
|
4
3
|
"type": "object",
|
|
@@ -48,7 +47,6 @@
|
|
|
48
47
|
"order": 2,
|
|
49
48
|
"items": {
|
|
50
49
|
"type": "object",
|
|
51
|
-
"required": ["label", "type"],
|
|
52
50
|
"properties": {
|
|
53
51
|
"label": {
|
|
54
52
|
"title": "Label",
|
|
@@ -87,7 +85,18 @@
|
|
|
87
85
|
"pointStyle": {
|
|
88
86
|
"title": "Point Style",
|
|
89
87
|
"type": "string",
|
|
90
|
-
"enum": [
|
|
88
|
+
"enum": [
|
|
89
|
+
"circle",
|
|
90
|
+
"cross",
|
|
91
|
+
"crossRot",
|
|
92
|
+
"dash",
|
|
93
|
+
"line",
|
|
94
|
+
"rect",
|
|
95
|
+
"rectRounded",
|
|
96
|
+
"rectRot",
|
|
97
|
+
"star",
|
|
98
|
+
"triangle"
|
|
99
|
+
],
|
|
91
100
|
"order": 7
|
|
92
101
|
},
|
|
93
102
|
"backgroundColor": {
|
|
@@ -129,7 +138,6 @@
|
|
|
129
138
|
"buffersize": 1000,
|
|
130
139
|
"items": {
|
|
131
140
|
"type": "object",
|
|
132
|
-
"required": ["x", "y"],
|
|
133
141
|
"properties": {
|
|
134
142
|
"x": {
|
|
135
143
|
"description": "If timeseries is checked in the settings, then this should be an ISO String date like 2023-11-04T22:47:52.351152+00:00. But this works with many other formats as well.",
|