@iobroker/json-config 7.7.3 → 7.7.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
@@ -137,7 +137,7 @@ You can install it via GitHub icon in admin by entering `iobroker.jsonconfig-dem
137
137
  - [**`certificateCollection`:**](#certificatecollection) Selects a collection for Let's Encrypt certificates
138
138
  - [**`certificates`:**](#certificates) Universal type for managing different certificate types (from Admin 6.4.0)
139
139
  - [**`checkbox`:**](#checkbox) Checkbox for boolean values
140
- - [**`checkDocker`:**](#checklicense) Special component to check if the docker available and if yes, you can activate a checkbox (from Admin 7.8.0)
140
+ - [**`checkDocker`:**](#checkdocker) Special component to check if the docker available and if yes, you can activate a checkbox (from Admin 7.8.0)
141
141
  - [**`checkLicense`:**](#checklicense) Very special component to check the license online
142
142
  - [**`chips`:**](#chips) User can enter words that are added to an array
143
143
  - [**`color`:**](#color) Color picker
@@ -1107,7 +1107,7 @@ shows the license information if not already accepted. One of attributes `texts`
1107
1107
  | `checkBox` | If defined, the checkbox with the given name will be shown. If checked, the agreed button will be enabled. |
1108
1108
 
1109
1109
  ### `checkDocker`
1110
- - (admin >= 7.1.0) initial implementation
1110
+ - (admin >= 7.7.2) initial implementation
1111
1111
 
1112
1112
  Special component to check if Docker is installed and running.
1113
1113
  If docker is installed, a checkbox will be shown to allow the usage of docker.
package/build/types.d.ts CHANGED
@@ -385,11 +385,11 @@ export interface ConfigItemObjectId extends ConfigItem {
385
385
  filters?: {
386
386
  id?: string;
387
387
  name?: string;
388
- room?: string;
389
- func?: string;
390
- role?: string;
391
- type?: string;
392
- custom?: string;
388
+ room?: string[];
389
+ func?: string[];
390
+ role?: string[];
391
+ type?: string[];
392
+ custom?: string[];
393
393
  };
394
394
  /** Cannot be used together with `type` settings. It is a function that will be called for every object and must return true or false. Example: `obj.common.type === 'number'` */
395
395
  filterFunc?: (obj: ioBroker.Object) => boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@iobroker/json-config",
3
3
  "description": "This package contains the ioBroker JSON config UI components",
4
- "version": "7.7.3",
4
+ "version": "7.7.4",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
7
7
  "scripts": {
@@ -18,7 +18,7 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "@iobroker/adapter-react-v5": "7.7.3",
21
+ "@iobroker/adapter-react-v5": "7.7.4",
22
22
  "@module-federation/runtime": "^0.15.0",
23
23
  "@mui/x-date-pickers": "^7.29.4",
24
24
  "crypto-js": "^4.2.0",
@@ -36,5 +36,5 @@
36
36
  "build/",
37
37
  "LICENSE"
38
38
  ],
39
- "gitHead": "c57be4e2c14d811bf02f648bd95596c5fae16c04"
39
+ "gitHead": "7b7abb99a3143d9cd596ef842455d881528be359"
40
40
  }