@record-evolution/widget-gauge 1.6.7 → 1.6.8

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.
@@ -752,7 +752,7 @@ class WidgetGauge extends h {
752
752
  this.origWidth = 0;
753
753
  this.origHeight = 0;
754
754
  this.modifier = 1;
755
- this.version = '1.6.7';
755
+ this.version = '1.6.8';
756
756
  this.resizeObserver = new ResizeObserver(this.adjustSizes.bind(this));
757
757
  this.template = {
758
758
  title: {
@@ -1147,7 +1147,7 @@ __decorate([
1147
1147
  __decorate([
1148
1148
  r()
1149
1149
  ], WidgetGauge.prototype, "canvasList", void 0);
1150
- window.customElements.define('widget-gauge-1.6.7', WidgetGauge);
1150
+ window.customElements.define('widget-gauge-1.6.8', WidgetGauge);
1151
1151
 
1152
1152
  export { WidgetGauge };
1153
1153
  //# sourceMappingURL=widget-gauge.js.map
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "REWidget widget-gauge",
4
4
  "license": "MIT",
5
5
  "author": "widget-gauge",
6
- "version": "1.6.7",
6
+ "version": "1.6.8",
7
7
  "type": "module",
8
8
  "main": "dist/widget-gauge.js",
9
9
  "types": "dist/src/widget-gauge.d.ts",
@@ -35,11 +35,12 @@
35
35
  "title": "Unit",
36
36
  "description": "The unit of the values. e.g. °C or km/h",
37
37
  "type": "string",
38
+ "dataDrivenDisabled": true,
38
39
  "order": 3
39
40
  },
40
41
  "data": {
41
42
  "title": "Data",
42
- "description": "The data used to draw this gauge.",
43
+ "description": "Provide a list of values. Only the latest value is shown in the gauge unless you configure \"Advanced Settings\" below or use split Data.",
43
44
  "type": "array",
44
45
  "order": 4,
45
46
  "items": {
@@ -76,17 +77,21 @@
76
77
  "title": "Section Limits",
77
78
  "description": "The limits of the gauge sections. Starting from the min value, ending with the max value.",
78
79
  "type": "array",
80
+ "dataDrivenDisabled": true,
79
81
  "order": 4,
80
82
  "items": {
81
- "type": "number"
83
+ "type": "number",
84
+ "dataDrivenDisabled": true
82
85
  }
83
86
  },
84
87
  "backgroundColors": {
85
88
  "title": "Section background colors",
86
89
  "description": "Background color for each section. This Array is one shorter than the number of sections.",
87
90
  "type": "array",
91
+ "dataDrivenDisabled": true,
88
92
  "items": {
89
- "type": "color"
93
+ "type": "color",
94
+ "dataDrivenDisabled": true
90
95
  },
91
96
  "order": 5
92
97
  }
@@ -102,12 +107,14 @@
102
107
  "title": "Average Latest Values",
103
108
  "description": "Calculate the average over the given number of newest values. (If you use 'split by', then per each of the split dataseries.) If not specified then the latest value is shown without modification.",
104
109
  "type": "number",
110
+ "dataDrivenDisabled": true,
105
111
  "order": 6
106
112
  },
107
113
  "maxLatency": {
108
114
  "title": "Maximum Latency",
109
115
  "description": "If you provide timestamp data, the delivered value is only shown in the gauge when the age of the data is not older than the given maximum Latency in seconds.",
110
116
  "type": "number",
117
+ "dataDrivenDisabled": true,
111
118
  "order": 7
112
119
  }
113
120
  }