@iobroker/json-config 7.7.4 → 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.
Files changed (2) hide show
  1. package/build/types.d.ts +40 -16
  2. package/package.json +3 -3
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;
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.4",
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.4",
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": "7b7abb99a3143d9cd596ef842455d881528be359"
39
+ "gitHead": "195d5b66dbec074361d7d4f258b68e1d66bfa985"
40
40
  }