iobroker.mywebui 1.37.22 → 1.37.24
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/io-package.json
CHANGED
package/package.json
CHANGED
|
@@ -412,6 +412,12 @@ export class IobrokerHandler {
|
|
|
412
412
|
else
|
|
413
413
|
this.connection.unsubscribeState(id, cb);
|
|
414
414
|
}
|
|
415
|
+
subscribeObject(id, cb) {
|
|
416
|
+
return this.connection.subscribeObject(id, cb);
|
|
417
|
+
}
|
|
418
|
+
unsubscribeObject(id, cb) {
|
|
419
|
+
return this.connection.unsubscribeObject(id, cb);
|
|
420
|
+
}
|
|
415
421
|
getObjectList(type, id) {
|
|
416
422
|
return iobrokerHandler.connection.getObjectView(id, null, type);
|
|
417
423
|
}
|
|
@@ -17,6 +17,7 @@ const importMapConfig = {
|
|
|
17
17
|
"@node-projects/web-component-designer/": "./node_modules/@gokturk413/web-component-designer/",
|
|
18
18
|
"@adobe/css-tools": "./node_modules/@adobe/css-tools/dist/esm/adobe-css-tools.mjs",
|
|
19
19
|
"esprima-next": "./node_modules/esprima-next/dist/esprima.js",
|
|
20
|
+
"@node-projects/css-parser": "./node_modules/@node-projects/css-parser/dist/index.js",
|
|
20
21
|
"@node-projects/": "./node_modules/@node-projects/",
|
|
21
22
|
"@node-projects/web-component-designer-htmlparserservice-nodehtmlparser": "./node_modules/@gokturk413/web-component-designer-htmlparserservice-nodehtmlparser/dist/service/htmlParserService/NodeHtmlParserService.js",
|
|
22
23
|
"@node-projects/web-component-designer-codeview-monaco": "./node_modules/@gokturk413/web-component-designer-codeview-monaco/dist/widgets/codeView/code-view-monaco.js",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const importMapRuntime = {
|
|
3
3
|
"imports": {
|
|
4
|
+
"@node-projects/css-parser": "./node_modules/@node-projects/css-parser/dist/index.js",
|
|
4
5
|
"@node-projects/": "./node_modules/@node-projects/",
|
|
5
6
|
"@node-projects/web-component-designer": "./node_modules/@gokturk413/web-component-designer/dist/index.js",
|
|
6
7
|
"@node-projects/base-custom-webcomponent": "./node_modules/@gokturk413/base-custom-webcomponent/dist/index.js",
|