@iobroker/adapter-react-v5 7.4.19 → 7.4.22
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/build/Components/Image.d.ts +1 -2
- package/build/Components/Image.js +1 -2
- package/build/Components/Image.js.map +1 -1
- package/build/Components/InfoBox.d.ts +37 -0
- package/build/Components/InfoBox.js +115 -0
- package/build/Components/InfoBox.js.map +1 -0
- package/build/Components/Logo.js +1 -0
- package/build/Components/Logo.js.map +1 -1
- package/build/Components/ObjectBrowser.js +3 -2
- package/build/Components/ObjectBrowser.js.map +1 -1
- package/build/Components/Utils.js +1 -0
- package/build/Components/Utils.js.map +1 -1
- package/build/GenericApp.d.ts +1 -0
- package/build/GenericApp.js +26 -20
- package/build/GenericApp.js.map +1 -1
- package/build/Theme.js +6 -6
- package/build/Theme.js.map +1 -1
- package/build/i18n/de.json +2 -0
- package/build/i18n/en.json +2 -0
- package/build/i18n/es.json +2 -0
- package/build/i18n/fr.json +2 -0
- package/build/i18n/it.json +2 -0
- package/build/i18n/nl.json +2 -0
- package/build/i18n/pl.json +2 -0
- package/build/i18n/pt.json +2 -0
- package/build/i18n/ru.json +2 -0
- package/build/i18n/uk.json +2 -0
- package/build/i18n/zh-cn.json +2 -0
- package/i18n/de.json +2 -0
- package/i18n/en.json +2 -0
- package/i18n/es.json +2 -0
- package/i18n/fr.json +2 -0
- package/i18n/it.json +2 -0
- package/i18n/nl.json +2 -0
- package/i18n/pl.json +2 -0
- package/i18n/pt.json +2 -0
- package/i18n/ru.json +2 -0
- package/i18n/uk.json +2 -0
- package/i18n/zh-cn.json +2 -0
- package/package.json +13 -13
|
@@ -1525,6 +1525,7 @@ export class Utils {
|
|
|
1525
1525
|
const blob = await response.blob();
|
|
1526
1526
|
return new Promise(resolve => {
|
|
1527
1527
|
const reader = new FileReader();
|
|
1528
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
1528
1529
|
reader.onload = () => resolve(reader.result?.toString() || '');
|
|
1529
1530
|
reader.readAsDataURL(blob);
|
|
1530
1531
|
});
|