@iobroker/adapter-react-v5 4.4.5 → 4.4.6
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/Components/JsonConfigComponent/ConfigGeneric.js +27 -26
- package/Components/JsonConfigComponent/ConfigGeneric.js.map +1 -1
- package/Components/ObjectBrowser.js +2 -3
- package/Components/ObjectBrowser.js.map +1 -1
- package/LegacyConnection.d.ts +6 -0
- package/LegacyConnection.js +244 -210
- package/LegacyConnection.js.map +1 -1
- package/README.md +3 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -667,6 +667,9 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
667
667
|
-->
|
|
668
668
|
|
|
669
669
|
## Changelog
|
|
670
|
+
### 4.4.6 (2023-08-10)
|
|
671
|
+
* (bluefox) Added `subscribeStateAsync` method to wait for answer
|
|
672
|
+
|
|
670
673
|
### 4.4.5 (2023-08-01)
|
|
671
674
|
* (bluefox) Updated packages
|
|
672
675
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/adapter-react-v5",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.6",
|
|
4
4
|
"description": "React classes to develop admin interfaces for ioBroker with react.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "bluefox",
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@emotion/react": "^11.11.1",
|
|
31
31
|
"@emotion/styled": "^11.11.0",
|
|
32
|
-
"@iobroker/socket-client": "^2.3.
|
|
32
|
+
"@iobroker/socket-client": "^2.3.4",
|
|
33
33
|
"@mui/icons-material": "^5.14.3",
|
|
34
|
-
"@mui/material": "^5.14.
|
|
35
|
-
"@mui/styles": "^5.14.
|
|
36
|
-
"@mui/x-date-pickers": "6.
|
|
37
|
-
"@sentry/browser": "^7.
|
|
38
|
-
"@sentry/integrations": "^7.
|
|
34
|
+
"@mui/material": "^5.14.4",
|
|
35
|
+
"@mui/styles": "^5.14.4",
|
|
36
|
+
"@mui/x-date-pickers": "6.11.0",
|
|
37
|
+
"@sentry/browser": "^7.62.0",
|
|
38
|
+
"@sentry/integrations": "^7.62.0",
|
|
39
39
|
"@types/iobroker": "^4.0.5",
|
|
40
40
|
"react-color": "^2.19.3",
|
|
41
41
|
"react-colorful": "^5.6.1",
|
|
42
42
|
"react-cropper": "^2.3.3",
|
|
43
43
|
"react-dropzone": "^14.2.3",
|
|
44
44
|
"react-icons": "^4.10.1",
|
|
45
|
-
"react-inlinesvg": "^
|
|
45
|
+
"react-inlinesvg": "^4.0.1",
|
|
46
46
|
"react-text-mask": "^5.5.0"
|
|
47
47
|
}
|
|
48
48
|
}
|