@iobroker/adapter-react-v5 4.6.13 → 4.7.1
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/ColorPicker.d.ts +6 -12
- package/Components/ColorPicker.js +18 -20
- package/Components/ColorPicker.js.map +1 -1
- package/Components/FileBrowser.js +2 -16
- package/Components/FileBrowser.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigGeneric.d.ts +88 -0
- package/Components/JsonConfigComponent/ConfigGeneric.js +637 -0
- package/Components/JsonConfigComponent/ConfigNumber.d.ts +17 -0
- package/Components/JsonConfigComponent/ConfigNumber.js +117 -0
- package/Components/JsonConfigComponent/ConfigPort.d.ts +3 -0
- package/Components/JsonConfigComponent/ConfigPort.js +176 -0
- package/Components/JsonConfigComponent/wrapper/AdminConnection.d.ts +2 -0
- package/Components/JsonConfigComponent/wrapper/AdminConnection.js +7 -0
- package/Components/MDUtils.js +3 -3
- package/Components/MDUtils.js.map +1 -1
- package/Components/SimpleCron/cron2text.js +31 -36
- package/Components/SimpleCron/cron2text.js.map +1 -1
- package/Components/SimpleCron/index.js +10 -10
- package/Components/SimpleCron/index.js.map +1 -1
- package/LegacyConnection.js.map +1 -1
- package/README.md +5 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -670,7 +670,11 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
670
670
|
-->
|
|
671
671
|
|
|
672
672
|
## Changelog
|
|
673
|
-
### 4.
|
|
673
|
+
### 4.7.1 (2023-11-03)
|
|
674
|
+
* (foxriver76) fixed problem with color picker, where editing TextField was buggy
|
|
675
|
+
* (foxriver76) fixed light mode color of path in FileBrowser
|
|
676
|
+
|
|
677
|
+
### 4.7.0 (2023-10-31)
|
|
674
678
|
* (bluefox) Synced with admin
|
|
675
679
|
* (bluefox) Added GIF to image files
|
|
676
680
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/adapter-react-v5",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.1",
|
|
4
4
|
"description": "React classes to develop admin interfaces for ioBroker with react.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Denis Haev (bluefox)",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@emotion/react": "^11.11.1",
|
|
31
31
|
"@emotion/styled": "^11.11.0",
|
|
32
|
-
"@iobroker/socket-client": "2.3.11",
|
|
33
|
-
"@mui/icons-material": "5.14.
|
|
32
|
+
"@iobroker/socket-client": "^2.3.11",
|
|
33
|
+
"@mui/icons-material": "^5.14.16",
|
|
34
34
|
"@mui/material": "5.14.14",
|
|
35
|
-
"@mui/styles": "5.14.
|
|
36
|
-
"@mui/x-date-pickers": "6.17.0",
|
|
35
|
+
"@mui/styles": "5.14.16",
|
|
36
|
+
"@mui/x-date-pickers": "^6.17.0",
|
|
37
37
|
"@sentry/browser": "^7.76.0",
|
|
38
38
|
"@sentry/integrations": "^7.76.0",
|
|
39
39
|
"@types/iobroker": "^4.0.5",
|