@iobroker/adapter-react-v5 4.4.4 → 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 +7 -1
- package/LegacyConnection.js +277 -227
- package/LegacyConnection.js.map +1 -1
- package/README.md +10 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -601,6 +601,12 @@ class MyComponent {
|
|
|
601
601
|
- javascript
|
|
602
602
|
- devices
|
|
603
603
|
- eventlist
|
|
604
|
+
- cameras
|
|
605
|
+
- web
|
|
606
|
+
- vis-2
|
|
607
|
+
- vis-2-widgets-xxx
|
|
608
|
+
- fullcalendar
|
|
609
|
+
- openweathermap
|
|
604
610
|
|
|
605
611
|
## Usability
|
|
606
612
|
In dialogs, the OK button is first (on the left) and the cancel button is last (on the right)
|
|
@@ -661,7 +667,10 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
661
667
|
-->
|
|
662
668
|
|
|
663
669
|
## Changelog
|
|
664
|
-
### 4.4.
|
|
670
|
+
### 4.4.6 (2023-08-10)
|
|
671
|
+
* (bluefox) Added `subscribeStateAsync` method to wait for answer
|
|
672
|
+
|
|
673
|
+
### 4.4.5 (2023-08-01)
|
|
665
674
|
* (bluefox) Updated packages
|
|
666
675
|
|
|
667
676
|
### 4.3.3 (2023-07-28)
|
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.
|
|
33
|
-
"@mui/icons-material": "^5.14.
|
|
34
|
-
"@mui/material": "^5.14.
|
|
35
|
-
"@mui/styles": "^5.14.
|
|
36
|
-
"@mui/x-date-pickers": "6.
|
|
37
|
-
"@sentry/browser": "^7.
|
|
38
|
-
"@sentry/integrations": "^7.
|
|
32
|
+
"@iobroker/socket-client": "^2.3.4",
|
|
33
|
+
"@mui/icons-material": "^5.14.3",
|
|
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
|
}
|