@iobroker/adapter-react-v5 7.4.9 → 7.4.12
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/README.md +2 -2
- package/build/Components/FileBrowser.d.ts +3 -1
- package/build/Components/FileBrowser.js +44 -14
- package/build/Components/FileBrowser.js.map +1 -1
- package/build/Components/ObjectBrowser.d.ts +20 -2
- package/build/Components/ObjectBrowser.js +42 -9
- package/build/Components/ObjectBrowser.js.map +1 -1
- package/build/Components/Utils.js +1 -1
- package/build/Components/Utils.js.map +1 -1
- package/build/GenericApp.js +3 -3
- package/build/GenericApp.js.map +1 -1
- package/build/LegacyConnection.d.ts +13 -1
- package/build/LegacyConnection.js.map +1 -1
- package/build/types.d.ts +14 -1
- package/index.css +56 -0
- package/package.json +3 -2
|
@@ -1186,7 +1186,7 @@ export class Utils {
|
|
|
1186
1186
|
if (themeName) {
|
|
1187
1187
|
return themeName;
|
|
1188
1188
|
}
|
|
1189
|
-
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : '
|
|
1189
|
+
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
1190
1190
|
}
|
|
1191
1191
|
/**
|
|
1192
1192
|
* Get the type of theme.
|