@record-evolution/widget-scada 1.0.8 → 1.0.9
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/widget-scada.js +2 -2
- package/package.json +3 -2
- package/src/symbol-catalog.json +4936 -0
package/dist/widget-scada.js
CHANGED
|
@@ -1178,7 +1178,7 @@ var de = Object.defineProperty, pe = Object.getOwnPropertyDescriptor, v = (n, t,
|
|
|
1178
1178
|
};
|
|
1179
1179
|
let y = class extends P {
|
|
1180
1180
|
constructor() {
|
|
1181
|
-
super(), this.svgContent = "", this.version = "1.0.
|
|
1181
|
+
super(), this.svgContent = "", this.version = "1.0.9", this.svgModules = /* @__PURE__ */ new Map(), this.actionCleanups = [], this.resizeObserver = new ResizeObserver(() => this.requestUpdate()), this.resizeObserver.observe(this);
|
|
1182
1182
|
}
|
|
1183
1183
|
disconnectedCallback() {
|
|
1184
1184
|
super.disconnectedCallback(), this.resizeObserver?.disconnect(), this.cleanupActions();
|
|
@@ -1354,7 +1354,7 @@ v([
|
|
|
1354
1354
|
Yt(".svg-container")
|
|
1355
1355
|
], y.prototype, "svgContainer", 2);
|
|
1356
1356
|
y = v([
|
|
1357
|
-
Wt("widget-scada-1.0.
|
|
1357
|
+
Wt("widget-scada-1.0.9")
|
|
1358
1358
|
], y);
|
|
1359
1359
|
export {
|
|
1360
1360
|
y as WidgetScada
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "REWidget widget-SCADA",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "widget-SCADA",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.9",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=24.9.0",
|
|
9
9
|
"npm": ">=10.0.2"
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"link": "npm run build && npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-scada",
|
|
27
27
|
"unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-scada && npm i @record-evolution/widget-scada",
|
|
28
28
|
"types": "cat src/definition-schema.json | json2ts --style.tabWidth=4 > src/definition-schema.d.ts",
|
|
29
|
-
"
|
|
29
|
+
"catalog": "node scripts/generate-catalog.mjs",
|
|
30
|
+
"release": "npm run build && npm run types && npm run catalog && npm version patch --tag-version-prefix='' && git push && git push --tag && npm run build"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
32
33
|
"lit": "^3.3.3",
|