@iobroker/adapter-react-v5 4.6.4 → 4.6.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/404.js +2 -2
- package/Components/404.js.map +1 -1
- package/Components/CustomModal.js +2 -2
- package/Components/CustomModal.js.map +1 -1
- package/Components/FileBrowser.js +2 -2
- package/Components/FileBrowser.js.map +1 -1
- package/Components/FileViewer.js +2 -2
- package/Components/FileViewer.js.map +1 -1
- package/Components/IconPicker.js +2 -2
- package/Components/IconPicker.js.map +1 -1
- package/Components/IconSelector.js +2 -2
- package/Components/IconSelector.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigCustom.js +2 -2
- package/Components/JsonConfigComponent/ConfigCustom.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigGeneric.js +2 -2
- package/Components/JsonConfigComponent/ConfigGeneric.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigTable.js +2 -2
- package/Components/JsonConfigComponent/ConfigTable.js.map +1 -1
- package/Components/JsonConfigComponent/index.js +2 -2
- package/Components/JsonConfigComponent/index.js.map +1 -1
- package/Components/ObjectBrowser.js +2 -2
- package/Components/ObjectBrowser.js.map +1 -1
- package/Components/Router.d.ts +3 -3
- package/Components/Router.js +2 -2
- package/Components/Router.js.map +1 -1
- package/Components/SelectWithIcon.js +2 -2
- package/Components/SelectWithIcon.js.map +1 -1
- package/Components/TableResize.js +2 -2
- package/Components/TableResize.js.map +1 -1
- package/Components/Utils.d.ts +14 -0
- package/Components/Utils.js +24 -0
- package/Components/Utils.js.map +1 -1
- package/GenericApp.js +2 -2
- package/GenericApp.js.map +1 -1
- package/LegacyConnection.js +13 -17
- package/LegacyConnection.js.map +1 -1
- package/README.md +6 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -670,6 +670,12 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
670
670
|
-->
|
|
671
671
|
|
|
672
672
|
## Changelog
|
|
673
|
+
### 4.6.6 (2023-10-13)
|
|
674
|
+
* (bluefox) Fixed the legacy connection
|
|
675
|
+
|
|
676
|
+
### 4.6.5 (2023-10-12)
|
|
677
|
+
* (foxriver76) fixed object browser with date
|
|
678
|
+
|
|
673
679
|
### 4.6.4 (2023-10-11)
|
|
674
680
|
* (bluefox) Updated the packages
|
|
675
681
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/adapter-react-v5",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.6",
|
|
4
4
|
"description": "React classes to develop admin interfaces for ioBroker with react.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Denis Haev (bluefox)",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"@mui/icons-material": "^5.14.13",
|
|
34
34
|
"@mui/material": "^5.14.13",
|
|
35
35
|
"@mui/styles": "^5.14.13",
|
|
36
|
-
"@mui/x-date-pickers": "6.16.
|
|
37
|
-
"@sentry/browser": "^7.
|
|
38
|
-
"@sentry/integrations": "^7.
|
|
36
|
+
"@mui/x-date-pickers": "6.16.2",
|
|
37
|
+
"@sentry/browser": "^7.74.0",
|
|
38
|
+
"@sentry/integrations": "^7.74.0",
|
|
39
39
|
"@types/iobroker": "^4.0.5",
|
|
40
40
|
"react-color": "^2.19.3",
|
|
41
41
|
"react-colorful": "^5.6.1",
|