iobroker.mywebui 1.37.30 → 1.37.31
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
|
@@ -31,8 +31,13 @@ export class IobrokerWebuiVisibilityPropertiesService {
|
|
|
31
31
|
// Load user groups
|
|
32
32
|
const userGroups = await iobrokerHandler.getUserGroups();
|
|
33
33
|
|
|
34
|
-
// Simple test property first
|
|
35
34
|
const properties = [
|
|
35
|
+
{
|
|
36
|
+
name: 'hidden',
|
|
37
|
+
type: 'boolean',
|
|
38
|
+
service: this,
|
|
39
|
+
propertyType: PropertyType.propertyAndAttribute
|
|
40
|
+
},
|
|
36
41
|
{
|
|
37
42
|
name: 'data-visibility',
|
|
38
43
|
type: 'string',
|
|
@@ -40,7 +45,7 @@ export class IobrokerWebuiVisibilityPropertiesService {
|
|
|
40
45
|
propertyType: PropertyType.propertyAndAttribute
|
|
41
46
|
}
|
|
42
47
|
];
|
|
43
|
-
|
|
48
|
+
|
|
44
49
|
return properties;
|
|
45
50
|
|
|
46
51
|
/* DISABLED FOR NOW - TESTING
|