@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 +8 -0
- package/dist/widget-gauge.js +2 -2
- package/package.json +1 -1
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
|
package/dist/widget-gauge.js
CHANGED
|
@@ -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.
|
|
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.
|
|
1157
|
+
window.customElements.define('widget-gauge-1.6.4', WidgetGauge);
|
|
1158
1158
|
|
|
1159
1159
|
export { WidgetGauge };
|
|
1160
1160
|
//# sourceMappingURL=widget-gauge.js.map
|