@iobroker/json-config 7.7.3 → 7.7.5

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
@@ -77,44 +77,68 @@ export type ConfigItemType =
77
77
  | 'user'
78
78
  | 'uuid';
79
79
 
80
- type ConfigIconType =
80
+ export type ConfigIconType =
81
81
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
82
- | 'edit'
82
+ | 'add'
83
83
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
84
- | 'auth'
84
+ | 'backlight'
85
85
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
86
- | 'send'
86
+ | 'book'
87
87
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
88
- | 'web'
88
+ | 'delete'
89
89
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
90
- | 'warning'
90
+ | 'dimmer'
91
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
92
+ | 'edit'
91
93
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
92
94
  | 'error'
93
95
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
96
+ | 'group'
97
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
98
+ | 'help'
99
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
100
+ | 'identify'
101
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
94
102
  | 'info'
95
103
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
96
- | 'search'
104
+ | 'light'
97
105
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
98
- | 'book'
106
+ | 'lines'
99
107
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
100
- | 'help'
108
+ | 'next'
101
109
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
102
- | 'upload'
110
+ | 'pair'
103
111
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
104
- | 'user'
112
+ | 'pause'
105
113
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
106
- | 'group'
114
+ | 'play'
107
115
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
108
- | 'delete'
116
+ | 'previous'
117
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
118
+ | 'qrcode'
109
119
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
110
120
  | 'refresh'
111
121
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
112
- | 'add'
122
+ | 'search'
123
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
124
+ | 'send'
125
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
126
+ | 'settings'
127
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
128
+ | 'socket'
129
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
130
+ | 'stop'
113
131
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
114
132
  | 'unpair'
115
133
  // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
116
- | 'pair'
117
- | string;
134
+ | 'upload'
135
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
136
+ | 'user'
137
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
138
+ | 'warning'
139
+ // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents
140
+ | 'web'
141
+ | string; // base 64 string
118
142
 
119
143
  export interface ConfigItemConfirmData {
120
144
  condition: string;
@@ -385,11 +409,11 @@ export interface ConfigItemObjectId extends ConfigItem {
385
409
  filters?: {
386
410
  id?: string;
387
411
  name?: string;
388
- room?: string;
389
- func?: string;
390
- role?: string;
391
- type?: string;
392
- custom?: string;
412
+ room?: string[];
413
+ func?: string[];
414
+ role?: string[];
415
+ type?: string[];
416
+ custom?: string[];
393
417
  };
394
418
  /** 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
419
  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.5",
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.5",
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": "195d5b66dbec074361d7d4f258b68e1d66bfa985"
40
40
  }