@iobroker/adapter-react-v5 4.0.14 → 4.0.16
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/FileBrowser.js +2 -1
- package/Components/FileBrowser.js.map +1 -1
- package/Components/FileViewer.js +31 -19
- package/Components/FileViewer.js.map +1 -1
- package/Components/Icon.js +5 -5
- package/Components/Icon.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigCoordinates.d.ts +1 -1
- package/Components/JsonConfigComponent/ConfigCoordinates.js +112 -16
- package/Components/JsonConfigComponent/ConfigCoordinates.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigGeneric.js +6 -1
- package/Components/JsonConfigComponent/ConfigGeneric.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigPanel.js +2 -0
- package/Components/JsonConfigComponent/ConfigPanel.js.map +1 -1
- package/Components/JsonConfigComponent/ConfigPort.d.ts +3 -0
- package/Components/JsonConfigComponent/ConfigPort.js +200 -0
- package/Components/JsonConfigComponent/ConfigPort.js.map +1 -0
- package/Components/JsonConfigComponent/ConfigTextSendTo.js +3 -3
- package/Components/JsonConfigComponent/ConfigTextSendTo.js.map +1 -1
- package/Components/ObjectBrowser.d.ts +4 -2
- package/Components/ObjectBrowser.js +502 -371
- package/Components/ObjectBrowser.js.map +1 -1
- package/Components/Utils.js +1 -1
- package/Components/Utils.js.map +1 -1
- package/README.md +7 -0
- package/i18n/de.json +12 -4
- package/i18n/en.json +9 -1
- package/i18n/es.json +9 -1
- package/i18n/fr.json +9 -1
- package/i18n/it.json +9 -1
- package/i18n/nl.json +9 -1
- package/i18n/pl.json +9 -1
- package/i18n/pt.json +9 -1
- package/i18n/ru.json +9 -1
- package/i18n/uk.json +9 -1
- package/i18n/zh-cn.json +9 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -661,6 +661,13 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
661
661
|
-->
|
|
662
662
|
|
|
663
663
|
## Changelog
|
|
664
|
+
### 4.0.16 (2023-03-15)
|
|
665
|
+
* (bluefox) Added translations
|
|
666
|
+
* (bluefox) Added port controller to JSON config
|
|
667
|
+
|
|
668
|
+
### 4.0.15 (2023-03-12)
|
|
669
|
+
* (bluefox) Updated the object browser and file browser
|
|
670
|
+
|
|
664
671
|
### 4.0.14 (2023-03-03)
|
|
665
672
|
* (bluefox) added handler of alert messages
|
|
666
673
|
|
package/i18n/de.json
CHANGED
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"ra_Value": "Wert",
|
|
29
29
|
"ra_invalidConfig": "Ungültige Einstellungen",
|
|
30
30
|
"ra_otherConfig": "Einstellungen von anderen Adaptern %s",
|
|
31
|
-
"ra_tooltip_copyState": "
|
|
31
|
+
"ra_tooltip_copyState": "Statuswert kopieren",
|
|
32
32
|
"ra_tooltip_customConfig": "Benutzerdefinierte Einstellungen",
|
|
33
33
|
"ra_tooltip_deleteObject": "Objekt löschen",
|
|
34
34
|
"ra_tooltip_editObject": "Objekt bearbeiten",
|
|
35
|
-
"ra_tooltip_editState": "
|
|
35
|
+
"ra_tooltip_editState": "Statuswert bearbeiten",
|
|
36
36
|
"ra_dow_Fr": "Fr",
|
|
37
37
|
"ra_dow_Mo": "Mo",
|
|
38
38
|
"ra_dow_Sa": "Sa",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"ra_Create folder": "Ordner erstellen",
|
|
59
59
|
"ra_Upload file": "Datei hochladen",
|
|
60
60
|
"ra_User files": "Benutzerdaten",
|
|
61
|
-
"ra_Confirm deletion of %s": "
|
|
61
|
+
"ra_Confirm deletion of %s": "Das Löschen von %s bestätigen",
|
|
62
62
|
"ra_Delete (no confirm for 5 mins)": "Löschen (keine Bestätigung für 5 Minuten)",
|
|
63
63
|
"ra_Delete": "Löschen",
|
|
64
64
|
"ra_Toggle expert mode": "Expertenmodus umschalten",
|
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Seriennummer (UUID)",
|
|
355
355
|
"ra_Check license": "Lizenz prüfen",
|
|
356
356
|
"ra_Request timed out": "Zeitüberschreitung der Anforderung",
|
|
357
|
-
"ra_Instance is not alive": "Instanz ist nicht am Leben"
|
|
357
|
+
"ra_Instance is not alive": "Instanz ist nicht am Leben",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Objektbeschreibungen ein-/ausblenden",
|
|
359
|
+
"ra_Use system settings for position": "Systemeinstellungen für die Position verwenden",
|
|
360
|
+
"ra_Longitude": "Längengrad",
|
|
361
|
+
"ra_Latitude": "Breite",
|
|
362
|
+
"ra_Take browser position": "Position vom Browser einnehmen",
|
|
363
|
+
"ra_Take position from system settings": "Position aus den Systemeinstellungen übernehmen",
|
|
364
|
+
"ra_Port is already used by %s": "Port wird bereits von %s verwendet",
|
|
365
|
+
"ra_Port could be used by %s": "Port könnte von %s verwendet werden"
|
|
358
366
|
}
|
package/i18n/en.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Serial number (UUID)",
|
|
355
355
|
"ra_Check license": "Check license",
|
|
356
356
|
"ra_Request timed out": "Request timed out",
|
|
357
|
-
"ra_Instance is not alive": "Instance is not alive"
|
|
357
|
+
"ra_Instance is not alive": "Instance is not alive",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Show/Hide object descriptions",
|
|
359
|
+
"ra_Use system settings for position": "Use system settings for position",
|
|
360
|
+
"ra_Longitude": "Longitude",
|
|
361
|
+
"ra_Latitude": "Latitude",
|
|
362
|
+
"ra_Take browser position": "Take position from browser",
|
|
363
|
+
"ra_Take position from system settings": "Take position from system settings",
|
|
364
|
+
"ra_Port is already used by %s": "Port is already used by %s",
|
|
365
|
+
"ra_Port could be used by %s": "Port could be used by %s"
|
|
358
366
|
}
|
package/i18n/es.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Número de serie (UUID)",
|
|
355
355
|
"ra_Check license": "Verificar licencia",
|
|
356
356
|
"ra_Request timed out": "Tiempo de espera agotado",
|
|
357
|
-
"ra_Instance is not alive": "La instancia no está viva"
|
|
357
|
+
"ra_Instance is not alive": "La instancia no está viva",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Mostrar/ocultar descripciones de objetos",
|
|
359
|
+
"ra_Use system settings for position": "Usar la configuración del sistema para la posición",
|
|
360
|
+
"ra_Longitude": "Longitud",
|
|
361
|
+
"ra_Latitude": "Latitud",
|
|
362
|
+
"ra_Take browser position": "Tomar posición desde el navegador",
|
|
363
|
+
"ra_Take position from system settings": "Tomar posición desde la configuración del sistema",
|
|
364
|
+
"ra_Port is already used by %s": "El puerto ya está en uso por %s",
|
|
365
|
+
"ra_Port could be used by %s": "El puerto podría ser utilizado por %s"
|
|
358
366
|
}
|
package/i18n/fr.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Numéro de série (UUID)",
|
|
355
355
|
"ra_Check license": "Vérifier la licence",
|
|
356
356
|
"ra_Request timed out": "La demande a expiré",
|
|
357
|
-
"ra_Instance is not alive": "L'instance n'est pas active"
|
|
357
|
+
"ra_Instance is not alive": "L'instance n'est pas active",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Afficher/Masquer les descriptions d'objets",
|
|
359
|
+
"ra_Use system settings for position": "Utiliser les paramètres système pour la position",
|
|
360
|
+
"ra_Longitude": "Longitude",
|
|
361
|
+
"ra_Latitude": "Latitude",
|
|
362
|
+
"ra_Take browser position": "Prendre position depuis le navigateur",
|
|
363
|
+
"ra_Take position from system settings": "Prendre position à partir des paramètres système",
|
|
364
|
+
"ra_Port is already used by %s": "Le port est déjà utilisé par %s",
|
|
365
|
+
"ra_Port could be used by %s": "Le port pourrait être utilisé par %s"
|
|
358
366
|
}
|
package/i18n/it.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Numero di serie (UUID)",
|
|
355
355
|
"ra_Check license": "Controlla la licenza",
|
|
356
356
|
"ra_Request timed out": "Tempo scaduto per la richiesta",
|
|
357
|
-
"ra_Instance is not alive": "L'istanza non è viva"
|
|
357
|
+
"ra_Instance is not alive": "L'istanza non è viva",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Mostra/Nascondi le descrizioni degli oggetti",
|
|
359
|
+
"ra_Use system settings for position": "Usa le impostazioni di sistema per la posizione",
|
|
360
|
+
"ra_Longitude": "Longitudine",
|
|
361
|
+
"ra_Latitude": "Latitudine",
|
|
362
|
+
"ra_Take browser position": "Prendi posizione dal browser",
|
|
363
|
+
"ra_Take position from system settings": "Prendi posizione dalle impostazioni di sistema",
|
|
364
|
+
"ra_Port is already used by %s": "La porta è già utilizzata da %s",
|
|
365
|
+
"ra_Port could be used by %s": "La porta potrebbe essere utilizzata da %s"
|
|
358
366
|
}
|
package/i18n/nl.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Serienummer (UUID)",
|
|
355
355
|
"ra_Check license": "Licentie controleren",
|
|
356
356
|
"ra_Request timed out": "Verzoek verlopen",
|
|
357
|
-
"ra_Instance is not alive": "Instantie leeft niet"
|
|
357
|
+
"ra_Instance is not alive": "Instantie leeft niet",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Toon/verberg objectbeschrijvingen",
|
|
359
|
+
"ra_Use system settings for position": "Gebruik systeeminstellingen voor positie",
|
|
360
|
+
"ra_Longitude": "Lengtegraad",
|
|
361
|
+
"ra_Latitude": "Breedtegraad",
|
|
362
|
+
"ra_Take browser position": "Positie innemen vanuit de browser",
|
|
363
|
+
"ra_Take position from system settings": "Neem positie over van systeeminstellingen",
|
|
364
|
+
"ra_Port is already used by %s": "Poort wordt al gebruikt door %s",
|
|
365
|
+
"ra_Port could be used by %s": "Poort kan worden gebruikt door %s"
|
|
358
366
|
}
|
package/i18n/pl.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Numer seryjny (UUID)",
|
|
355
355
|
"ra_Check license": "Sprawdź licencję",
|
|
356
356
|
"ra_Request timed out": "Upłynął limit czasu żądania",
|
|
357
|
-
"ra_Instance is not alive": "Instancja nie jest aktywna"
|
|
357
|
+
"ra_Instance is not alive": "Instancja nie jest aktywna",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Pokaż/ukryj opisy obiektów",
|
|
359
|
+
"ra_Use system settings for position": "Użyj ustawień systemowych dla pozycji",
|
|
360
|
+
"ra_Longitude": "Długość geograficzna",
|
|
361
|
+
"ra_Latitude": "Szerokość",
|
|
362
|
+
"ra_Take browser position": "Zajmij pozycję z przeglądarki",
|
|
363
|
+
"ra_Take position from system settings": "Zajmij pozycję z ustawień systemowych",
|
|
364
|
+
"ra_Port is already used by %s": "Port jest już używany przez %s",
|
|
365
|
+
"ra_Port could be used by %s": "Port może być używany przez %s"
|
|
358
366
|
}
|
package/i18n/pt.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Número de série (UUID)",
|
|
355
355
|
"ra_Check license": "Verifique a licença",
|
|
356
356
|
"ra_Request timed out": "Solicitação expirou",
|
|
357
|
-
"ra_Instance is not alive": "A instância não está ativa"
|
|
357
|
+
"ra_Instance is not alive": "A instância não está ativa",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Mostrar/ocultar descrições de objetos",
|
|
359
|
+
"ra_Use system settings for position": "Use as configurações do sistema para a posição",
|
|
360
|
+
"ra_Longitude": "Longitude",
|
|
361
|
+
"ra_Latitude": "Latitude",
|
|
362
|
+
"ra_Take browser position": "Tomar posição do navegador",
|
|
363
|
+
"ra_Take position from system settings": "Tomar posição a partir das configurações do sistema",
|
|
364
|
+
"ra_Port is already used by %s": "A porta já está sendo usada por %s",
|
|
365
|
+
"ra_Port could be used by %s": "A porta pode ser usada por %s"
|
|
358
366
|
}
|
package/i18n/ru.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Серийный номер (UUID)",
|
|
355
355
|
"ra_Check license": "Проверить лицензию",
|
|
356
356
|
"ra_Request timed out": "Истекло время запроса",
|
|
357
|
-
"ra_Instance is not alive": "Экземпляр не живой"
|
|
357
|
+
"ra_Instance is not alive": "Экземпляр не живой",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Показать/скрыть описания объектов",
|
|
359
|
+
"ra_Use system settings for position": "Использовать системные настройки для позиции",
|
|
360
|
+
"ra_Longitude": "Долгота",
|
|
361
|
+
"ra_Latitude": "Широта",
|
|
362
|
+
"ra_Take browser position": "Взять позицию из браузера",
|
|
363
|
+
"ra_Take position from system settings": "Занять позицию из системных настроек",
|
|
364
|
+
"ra_Port is already used by %s": "Порт уже используется %s",
|
|
365
|
+
"ra_Port could be used by %s": "Порт может использоваться %s"
|
|
358
366
|
}
|
package/i18n/uk.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "Серійний номер (UUID)",
|
|
355
355
|
"ra_Check license": "Перевірити ліцензію",
|
|
356
356
|
"ra_Request timed out": "Час запиту вичерпано",
|
|
357
|
-
"ra_Instance is not alive": "Примірник не живий"
|
|
357
|
+
"ra_Instance is not alive": "Примірник не живий",
|
|
358
|
+
"ra_Show/Hide object descriptions": "Показати/Сховати описи об’єктів",
|
|
359
|
+
"ra_Use system settings for position": "Використовуйте системні налаштування для позиції",
|
|
360
|
+
"ra_Longitude": "Довгота",
|
|
361
|
+
"ra_Latitude": "Широта",
|
|
362
|
+
"ra_Take browser position": "Займіть позицію з браузера",
|
|
363
|
+
"ra_Take position from system settings": "Займіть позицію в налаштуваннях системи",
|
|
364
|
+
"ra_Port is already used by %s": "Порт уже використовується %s",
|
|
365
|
+
"ra_Port could be used by %s": "Порт може використовуватися %s"
|
|
358
366
|
}
|
package/i18n/zh-cn.json
CHANGED
|
@@ -354,5 +354,13 @@
|
|
|
354
354
|
"ra_Serial number (UUID)": "序列号 (UUID)",
|
|
355
355
|
"ra_Check license": "检查许可证",
|
|
356
356
|
"ra_Request timed out": "请求超时",
|
|
357
|
-
"ra_Instance is not alive": "实例不存在"
|
|
357
|
+
"ra_Instance is not alive": "实例不存在",
|
|
358
|
+
"ra_Show/Hide object descriptions": "显示/隐藏对象描述",
|
|
359
|
+
"ra_Use system settings for position": "使用系统设置定位",
|
|
360
|
+
"ra_Longitude": "经度",
|
|
361
|
+
"ra_Latitude": "纬度",
|
|
362
|
+
"ra_Take browser position": "从浏览器获取位置",
|
|
363
|
+
"ra_Take position from system settings": "从系统设置中获取位置",
|
|
364
|
+
"ra_Port is already used by %s": "端口已被 %s 使用",
|
|
365
|
+
"ra_Port could be used by %s": "%s 可以使用端口"
|
|
358
366
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/adapter-react-v5",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.16",
|
|
4
4
|
"description": "React classes to develop admin interfaces for ioBroker with react.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "bluefox",
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"homepage": "https://github.com/ioBroker/adapter-react-v5#readme",
|
|
28
28
|
"devDependencies": {},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@emotion/react": "^11.10.
|
|
31
|
-
"@emotion/styled": "^11.10.
|
|
32
|
-
"@mui/icons-material": "^5.11.
|
|
33
|
-
"@mui/material": "^5.11.
|
|
34
|
-
"@mui/styles": "^5.11.
|
|
35
|
-
"@mui/x-date-pickers": "5.0.
|
|
30
|
+
"@emotion/react": "^11.10.6",
|
|
31
|
+
"@emotion/styled": "^11.10.6",
|
|
32
|
+
"@mui/icons-material": "^5.11.11",
|
|
33
|
+
"@mui/material": "^5.11.13",
|
|
34
|
+
"@mui/styles": "^5.11.13",
|
|
35
|
+
"@mui/x-date-pickers": "5.0.20",
|
|
36
36
|
"@iobroker/socket-client": "^2.0.4",
|
|
37
|
-
"react-cropper": "^2.
|
|
38
|
-
"@sentry/browser": "^7.
|
|
39
|
-
"@sentry/integrations": "^7.
|
|
37
|
+
"react-cropper": "^2.3.2",
|
|
38
|
+
"@sentry/browser": "^7.43.0",
|
|
39
|
+
"@sentry/integrations": "^7.43.0",
|
|
40
40
|
"@types/iobroker": "^4.0.5",
|
|
41
41
|
"react-color": "^2.19.3",
|
|
42
42
|
"react-colorful": "^5.6.1",
|
|
43
43
|
"react-dropzone": "^14.2.3",
|
|
44
|
-
"react-icons": "^4.
|
|
45
|
-
"react-inlinesvg": "^3.0.
|
|
44
|
+
"react-icons": "^4.8.0",
|
|
45
|
+
"react-inlinesvg": "^3.0.2",
|
|
46
46
|
"react-text-mask": "^5.5.0"
|
|
47
47
|
}
|
|
48
48
|
}
|