@record-evolution/widget-gauge 1.6.3 → 1.6.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.
package/README.md CHANGED
@@ -71,6 +71,14 @@ Note that `npm run release` automatically increases the path version number. If
71
71
 
72
72
  After the version tag has been successfully published to github, our github action kicks in and creates a release on github and publishes the release on npm as well.
73
73
 
74
+ Now you need to tell the IronFlock system that a new version of the widget should be offered. You do this by executing with the new version string you created.
75
+
76
+ ```sql
77
+ select swarm.f_update_widget_master('{"package_name": "widget-gauge", "version": "1.5.21"}'::jsonb);
78
+ ```
79
+
80
+ To make it work locally you need to restart the node web server container.
81
+
74
82
  # About Widgets
75
83
 
76
84
  ## Overview
@@ -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.3';
755
+ this.version = '1.6.4';
756
756
  this.resizeObserver = new ResizeObserver(this.adjustSizes.bind(this));
757
757
  this.template = {
758
758
  title: {
@@ -1154,7 +1154,7 @@ __decorate([
1154
1154
  __decorate([
1155
1155
  r()
1156
1156
  ], WidgetGauge.prototype, "canvasList", void 0);
1157
- window.customElements.define('widget-gauge-1.6.3', WidgetGauge);
1157
+ window.customElements.define('widget-gauge-1.6.4', WidgetGauge);
1158
1158
 
1159
1159
  export { WidgetGauge };
1160
1160
  //# 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.3",
6
+ "version": "1.6.4",
7
7
  "type": "module",
8
8
  "main": "dist/widget-gauge.js",
9
9
  "types": "dist/src/widget-gauge.d.ts",