@iobroker/adapter-react-v5 5.0.2 → 5.0.4
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/Utils.d.ts +1 -1
- package/README.md +3 -0
- package/package.json +6 -6
package/Components/Utils.d.ts
CHANGED
|
@@ -178,7 +178,7 @@ declare class Utils {
|
|
|
178
178
|
* @param themeType theme type
|
|
179
179
|
* @param invert dark theme has light color in control or light theme has light color in control
|
|
180
180
|
*/
|
|
181
|
-
static getInvertedColor(color: string, themeType?:
|
|
181
|
+
static getInvertedColor(color: string, themeType?: ThemeType, invert?: boolean): string | undefined;
|
|
182
182
|
/**
|
|
183
183
|
* Invert the given color
|
|
184
184
|
* @param hex Color in the format '#rrggbb' or '#rgb' (or without hash)
|
package/README.md
CHANGED
|
@@ -676,6 +676,9 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
676
676
|
-->
|
|
677
677
|
|
|
678
678
|
## Changelog
|
|
679
|
+
### 5.0.4 (2024-06-07)
|
|
680
|
+
* (bluefox) Added better typing
|
|
681
|
+
|
|
679
682
|
### 5.0.2 (2024-05-30)
|
|
680
683
|
* (bluefox) Added better typing
|
|
681
684
|
* (bluefox) Json-Config is now a separate package and must be installed additionally
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/adapter-react-v5",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
4
4
|
"description": "React classes to develop admin interfaces for ioBroker with react.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Denis Haev (bluefox)",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@emotion/react": "^11.11.4",
|
|
31
31
|
"@emotion/styled": "^11.11.5",
|
|
32
|
-
"@iobroker/socket-client": "^2.4.
|
|
33
|
-
"@iobroker/types": "^6.0.1-alpha.0-
|
|
34
|
-
"@iobroker/js-controller-common": "^6.0.1-alpha.0-
|
|
35
|
-
"@iobroker/js-controller-common-db": "^6.0.1-alpha.0-
|
|
32
|
+
"@iobroker/socket-client": "^2.4.18",
|
|
33
|
+
"@iobroker/types": "^6.0.1-alpha.0-20240603-8378eb65c",
|
|
34
|
+
"@iobroker/js-controller-common": "^6.0.1-alpha.0-20240603-8378eb65c",
|
|
35
|
+
"@iobroker/js-controller-common-db": "^6.0.1-alpha.0-20240603-8378eb65c",
|
|
36
36
|
"@mui/icons-material": "^5.15.19",
|
|
37
37
|
"@mui/material": "5.14.14",
|
|
38
38
|
"@mui/styles": "5.14.14",
|
|
39
|
-
"@mui/x-date-pickers": "^7.
|
|
39
|
+
"@mui/x-date-pickers": "^7.6.2",
|
|
40
40
|
"@sentry/browser": "^8.7.0",
|
|
41
41
|
"react-color": "^2.19.3",
|
|
42
42
|
"react-colorful": "^5.6.1",
|