@record-evolution/widget-linechart 1.5.3 → 1.5.4

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.
@@ -23500,7 +23500,7 @@ class WidgetLinechart extends h {
23500
23500
  constructor() {
23501
23501
  super(...arguments);
23502
23502
  this.canvasList = new Map();
23503
- this.version = '1.5.3';
23503
+ this.version = '1.5.4';
23504
23504
  }
23505
23505
  update(changedProperties) {
23506
23506
  if (changedProperties.has('inputData') && this.chartContainer) {
@@ -23747,7 +23747,7 @@ __decorate([
23747
23747
  __decorate([
23748
23748
  r()
23749
23749
  ], WidgetLinechart.prototype, "canvasList", void 0);
23750
- window.customElements.define('widget-linechart-1.5.3', WidgetLinechart);
23750
+ window.customElements.define('widget-linechart-1.5.4', WidgetLinechart);
23751
23751
  const FORMATS = {
23752
23752
  datetime: 'MMM d, yyyy, h:mm:ss aaaa',
23753
23753
  millisecond: 'h:mm:ss.SSS aaaa',
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.5.3",
6
+ "version": "1.5.4",
7
7
  "type": "module",
8
8
  "main": "dist/widget-linechart.js",
9
9
  "types": "dist/src/widget-linechart.d.ts",
@@ -14,6 +14,8 @@
14
14
  "scripts": {
15
15
  "analyze": "cem analyze --litelement",
16
16
  "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
17
+ "link": "npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-linechart",
18
+ "unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-linechart && npm i @record-evolution/widget-linechart",
17
19
  "build": "rollup -c rollup.config.js",
18
20
  "watch": "rollup -w -c rollup.config.js",
19
21
  "types": "cat src/definition-schema.json | json2ts > src/definition-schema.d.ts",
@@ -21,22 +21,26 @@
21
21
  "title": "Timeseries Chart",
22
22
  "description": "This will apply a proper time series x-Axis. Check if your x-values are timestamps.",
23
23
  "type": "boolean",
24
+ "dataDrivenDisabled": true,
24
25
  "order": 3
25
26
  },
26
27
  "xAxisLabel": {
27
28
  "title": "X-Axis Label",
28
29
  "type": "string",
30
+ "dataDrivenDisabled": true,
29
31
  "order": 4
30
32
  },
31
33
  "yAxisLabel": {
32
34
  "title": "Y-Axis Label",
33
35
  "type": "string",
36
+ "dataDrivenDisabled": true,
34
37
  "order": 5
35
38
  },
36
39
  "columnLayout": {
37
40
  "title": "Vertical Layout",
38
41
  "description": "When multiple charts are drawn, then they will be layed out horizontically or vertically.",
39
42
  "type": "boolean",
43
+ "dataDrivenDisabled": true,
40
44
  "order": 6
41
45
  }
42
46
  }
@@ -44,6 +48,7 @@
44
48
  "dataseries": {
45
49
  "title": "Dataseries",
46
50
  "type": "array",
51
+ "dataDrivenDisabled": true,
47
52
  "order": 4,
48
53
  "items": {
49
54
  "type": "object",
@@ -60,6 +65,7 @@
60
65
  "type": "string",
61
66
  "enum": ["bar", "line", "bubble"],
62
67
  "required": true,
68
+ "dataDrivenDisabled": true,
63
69
  "order": 2
64
70
  },
65
71
  "backgroundColor": {
@@ -85,18 +91,21 @@
85
91
  "title": "Line Area Fill",
86
92
  "description": "Check this box to turn a line chart into an area chart.",
87
93
  "type": "boolean",
94
+ "dataDrivenDisabled": true,
88
95
  "order": 1
89
96
  },
90
97
  "borderWidth": {
91
98
  "title": "Line Width",
92
99
  "description": "In case of Drawing Type 'bar' this determines the bar's border line width.",
93
100
  "type": "number",
101
+ "dataDrivenDisabled": true,
94
102
  "order": 2
95
103
  },
96
104
  "borderDash": {
97
105
  "title": "Line Dash Style",
98
106
  "description": "Specify dash length and space-between-dashes length like this: [10, 5].",
99
107
  "type": "string",
108
+ "dataDrivenDisabled": true,
100
109
  "order": 3
101
110
  },
102
111
  "radius": {
@@ -135,12 +144,14 @@
135
144
  "title": "Draw Order",
136
145
  "description": "Determines the draw order of the series. Dataseries with lower numbers are drawn on top of ones with higher numbers.",
137
146
  "type": "number",
147
+ "dataDrivenDisabled": true,
138
148
  "order": 2
139
149
  },
140
150
  "chartName": {
141
151
  "title": "Chart Name",
142
152
  "description": "If two dataseries have the same 'Chart Name', they will be drawn in the same chart. Otherwise they will get their own chart. If the name contains #split# as substring then a separat chart will be drawn for each split dataseries.",
143
153
  "type": "string",
154
+ "dataDrivenDisabled": true,
144
155
  "order": 3
145
156
  }
146
157
  }