@iobroker/dm-gui-components 9.0.27 → 9.1.0
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 +4 -0
- package/build/Communication.js.map +1 -1
- package/build/DeviceCard.js.map +1 -1
- package/build/DeviceControl.js.map +1 -1
- package/build/DeviceImageUpload.js.map +1 -1
- package/build/DeviceList.d.ts +5 -0
- package/build/DeviceList.js +102 -25
- package/build/DeviceList.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/package.json +10 -6
package/build/i18n/zh-cn.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"allDevicesFilteredOut": "所有设备均被过滤掉",
|
|
3
3
|
"apiVersionError": "后端比图形用户界面更新。请更新管理员。",
|
|
4
|
+
"backToInstancesList": "返回实例列表",
|
|
4
5
|
"batteryTooltip": "电池",
|
|
5
6
|
"cancelButtonText": "取消",
|
|
6
7
|
"closeButtonText": "关闭",
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
"noButtonText": "不",
|
|
20
21
|
"noDevicesFoundText": "未找到设备",
|
|
21
22
|
"noInstanceSelectedText": "请选择实例",
|
|
23
|
+
"noInstancesFoundText": "未找到支持设备管理器的运行实例",
|
|
22
24
|
"nothingToCopy": "无可复制",
|
|
23
25
|
"okButtonText": "好的",
|
|
24
26
|
"pleaseEnterValueText": "请输入",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/dm-gui-components",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"description": "ReactJS components to develop admin interface for ioBroker device manager.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jey Cee",
|
|
@@ -52,17 +52,21 @@
|
|
|
52
52
|
},
|
|
53
53
|
"homepage": "https://github.com/ioBroker/dm-gui-components#readme",
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@iobroker/adapter-react-v5": "^8.
|
|
56
|
-
"@iobroker/json-config": "^8.
|
|
55
|
+
"@iobroker/adapter-react-v5": "^8.2.7",
|
|
56
|
+
"@iobroker/json-config": "^8.4.5"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@alcalzone/release-script": "^5.
|
|
60
|
-
"@alcalzone/release-script-plugin-license": "^5.
|
|
59
|
+
"@alcalzone/release-script": "^5.2.1",
|
|
60
|
+
"@alcalzone/release-script-plugin-license": "^5.2.0",
|
|
61
61
|
"@iobroker/build-tools": "^3.0.1",
|
|
62
62
|
"@iobroker/dm-utils": "^3.0.19",
|
|
63
63
|
"@iobroker/dm-utils-v1": "npm:@iobroker/dm-utils@^1.0.16",
|
|
64
64
|
"@iobroker/eslint-config": "^2.2.0",
|
|
65
|
-
"
|
|
65
|
+
"@types/react": "^18.3.27",
|
|
66
|
+
"@types/react-dom": "^18.3.7",
|
|
67
|
+
"react": "^18.3.1",
|
|
68
|
+
"react-dom": "^18.3.1",
|
|
69
|
+
"tsc-alias": "^1.8.17",
|
|
66
70
|
"typescript": "~5.9.3"
|
|
67
71
|
}
|
|
68
72
|
}
|