iobroker.webui 1.24.0 → 1.24.2
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 +6 -0
- package/binary/{iobroker.iobroker-webcomponent-object-selector-0.0.1.tgz → iobroker-webcomponent-object-selector-0.0.1.tgz} +0 -0
- package/dist/importmaps/importmap-config.d.ts +1 -1
- package/dist/importmaps/importmap-config.js +1 -1
- package/gulpfile.mjs +3 -3
- package/io-package.json +27 -27
- package/package.json +3 -3
- package/www/dist/frontend/config/IobrokerWebuiBindingsEditor.js +1 -1
- package/www/dist/frontend/config/IobrokerWebuiSignalPropertyEditor.js +1 -1
- package/www/dist/importmaps/importmap-config.js +1 -1
- package/www/index.html +1 -1
- package/www/node_modules/es-module-shims/dist/es-module-shims.js +442 -512
- /package/www/node_modules/{iobroker.iobroker-webcomponent-object-selector → iobroker-webcomponent-object-selector}/dist/iobrokerSelectId.es.js +0 -0
- /package/www/node_modules/{iobroker.iobroker-webcomponent-object-selector → iobroker-webcomponent-object-selector}/dist/selectIdHelper.js +0 -0
- /package/www/node_modules/{iobroker.iobroker-webcomponent-object-selector → iobroker-webcomponent-object-selector}/dist/socket.iob.js +0 -0
package/README.md
CHANGED
|
@@ -133,6 +133,12 @@ runtime.html?screenName=screen2
|
|
|
133
133
|
Placeholder for next versions:
|
|
134
134
|
### __WORK IN PROGRESS__
|
|
135
135
|
-->
|
|
136
|
+
### 1.24.2 (2025-01-19)
|
|
137
|
+
- revert back es module shims, leads to errors
|
|
138
|
+
|
|
139
|
+
### 1.24.1 (2025-01-19)
|
|
140
|
+
- hopefully fix package upload by changed name
|
|
141
|
+
|
|
136
142
|
### 1.24.0 (2025-01-19)
|
|
137
143
|
- cleanup www dir
|
|
138
144
|
|
|
Binary file
|
|
@@ -32,7 +32,7 @@ const importMapConfig = {
|
|
|
32
32
|
"wunderbaum": "./node_modules/wunderbaum/dist/wunderbaum.esm.min.js",
|
|
33
33
|
"wunderbaum/": "./node_modules/wunderbaum/",
|
|
34
34
|
"toastify-js": "./node_modules/toastify-js/src/toastify-es.js",
|
|
35
|
-
"iobroker
|
|
35
|
+
"iobroker-webcomponent-object-selector/": "./node_modules/iobroker-webcomponent-object-selector/"
|
|
36
36
|
}
|
|
37
37
|
};
|
|
38
38
|
//@ts-ignore
|
package/gulpfile.mjs
CHANGED
|
@@ -68,9 +68,9 @@ function copyNodeFiles() {
|
|
|
68
68
|
"toastify-js/src/toastify-es.js",
|
|
69
69
|
"toastify-js/src/toastify.css",
|
|
70
70
|
"dayjs/dayjs.min.js",
|
|
71
|
-
"iobroker
|
|
72
|
-
"iobroker
|
|
73
|
-
"iobroker
|
|
71
|
+
"iobroker-webcomponent-object-selector/dist/iobrokerSelectId.es.js",
|
|
72
|
+
"iobroker-webcomponent-object-selector/dist/selectIdHelper.js",
|
|
73
|
+
"iobroker-webcomponent-object-selector/dist/socket.iob.js"
|
|
74
74
|
]
|
|
75
75
|
|
|
76
76
|
runtimeModules = runtimeModules.map(x => './node_modules/' + x)
|
package/io-package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "webui",
|
|
4
|
-
"version": "1.24.
|
|
4
|
+
"version": "1.24.2",
|
|
5
5
|
"titleLang": {
|
|
6
6
|
"en": "webui",
|
|
7
7
|
"de": "webui",
|
|
@@ -29,6 +29,32 @@
|
|
|
29
29
|
"zh-cn": "使用万维网传送器的高锰用户接口"
|
|
30
30
|
},
|
|
31
31
|
"news": {
|
|
32
|
+
"1.24.2": {
|
|
33
|
+
"en": "revert back es module shims, leads to errors",
|
|
34
|
+
"de": "zurückkehren es modul shims, führt zu fehlern",
|
|
35
|
+
"ru": "возвращать назад эс-модульные шимы, приводит к ошибкам",
|
|
36
|
+
"pt": "reverter para trás es módulo shims, leva a erros",
|
|
37
|
+
"nl": "terug te keren es module shims, leidt tot fouten",
|
|
38
|
+
"fr": "retour du module es shims, conduit à des erreurs",
|
|
39
|
+
"it": "revert back es modulo shims, conduce a errori",
|
|
40
|
+
"es": "revert back es module shims, leads to errors",
|
|
41
|
+
"pl": "revert es module shims, prowadzi do błędów",
|
|
42
|
+
"uk": "перевернути назад es модуль шімів, призводить до помилок",
|
|
43
|
+
"zh-cn": "返回 es 模块 shims, 导致错误"
|
|
44
|
+
},
|
|
45
|
+
"1.24.1": {
|
|
46
|
+
"en": "hopefully fix package upload by changed name",
|
|
47
|
+
"de": "hoffentlich paket-upload mit geändertem namen beheben",
|
|
48
|
+
"ru": "надеюсь исправить загрузку пакета измененным именем",
|
|
49
|
+
"pt": "esperançosamente corrigir o upload do pacote por nome alterado",
|
|
50
|
+
"nl": "hopelijk pakket uploaden op gewijzigde naam repareren",
|
|
51
|
+
"fr": "j'espère corriger le téléchargement du paquet par changement de nom",
|
|
52
|
+
"it": "si spera di risolvere il pacchetto upload con il nome cambiato",
|
|
53
|
+
"es": "esperemos fijar la carga del paquete por nombre cambiado",
|
|
54
|
+
"pl": "miejmy nadzieję, że uda się naprawić przesyłkę po zmianie nazwy",
|
|
55
|
+
"uk": "сподіваємось на те, що завантаження пакету змінено",
|
|
56
|
+
"zh-cn": "希望用更改的名称修正软件包上传"
|
|
57
|
+
},
|
|
32
58
|
"1.24.0": {
|
|
33
59
|
"en": "cleanup www dir",
|
|
34
60
|
"de": "reinigung www dr",
|
|
@@ -93,32 +119,6 @@
|
|
|
93
119
|
"pl": "przeglądarka lokalnych sygnałów\npoprawki zakończenia stylu\nspecjalne wiązania do kamer \"ring\"",
|
|
94
120
|
"uk": "веб камера\nфіксація стилів\nспеціальні прив'язки для камер \"обручка\"",
|
|
95
121
|
"zh-cn": "本地信号浏览器\n样式补丁修正\n“环”相机的特殊装订"
|
|
96
|
-
},
|
|
97
|
-
"1.21.0": {
|
|
98
|
-
"en": "fix scripts with empty names on css\ncss props with only bindings are not shown\nremove of css prop should remove binding?\nOpen Screen in sub screen command",
|
|
99
|
-
"de": "skripte mit leeren namen auf css fixieren\ncss props mit nur bindungen sind nicht dargestellt\nentfernen css prop sollte bindung entfernen?\nBildschirm im Sub-Bildschirm-Befehl öffnen",
|
|
100
|
-
"ru": "исправить сценарии с пустыми именами на css\ncss реквизиты только связывания не показаны\nудаление css prop должно удалить связывания?\nОткрытый экран в командном пункте",
|
|
101
|
-
"pt": "corrigir scripts com nomes vazios no css\ncss adereços com apenas ligações não são mostrados\nremover de css prop deve remover a ligação?\nAbra a tela no comando sub screen",
|
|
102
|
-
"nl": "scripts herstellen met lege namen op css\ncss rekwisieten met alleen bindingen worden niet getoond\nverwijderen van css prop moet binden verwijderen?\nScherm openen in subschermcommando",
|
|
103
|
-
"fr": "corriger des scripts avec des noms vides sur css\nles accessoires css avec uniquement des fixations ne sont pas montrés\nenlever de css prop devrait supprimer la liaison?\nOuvre l'écran dans la commande sous-écran",
|
|
104
|
-
"it": "correggere gli script con nomi vuoti su css\ncss props con solo binding non sono mostrati\nrimuovere di css prop dovrebbe rimuovere il legame?\nSchermo aperto nel comando sotto schermata",
|
|
105
|
-
"es": "fijar scripts con nombres vacíos en css\ncss props with only bindings are not shown\nremover el css prop debe eliminar la unión?\nPantalla abierta en el comando sub pantalla",
|
|
106
|
-
"pl": "naprawić skrypty z pustymi nazwami na css\npropy css z tylko wiązaniami nie są wyświetlane\nusunięcie rekwizytu css powinno usunąć wiązanie?\nOtwórz ekran w komendzie podekranu",
|
|
107
|
-
"uk": "виправлено сценарії з порожніми іменами на css\ncss пропси з тільки зв'язками не показані\nприбрати css проп слід видалити зв'язок?\nВідкритий екран в командному режимі",
|
|
108
|
-
"zh-cn": "css 上的空名脚本\n未显示只装订的 cs 道具\n删除 css 道具应删除绑定吗 ?\n在子屏幕命令中打开屏幕"
|
|
109
|
-
},
|
|
110
|
-
"1.20.1": {
|
|
111
|
-
"en": "fix in designer with svgs",
|
|
112
|
-
"de": "fix in designer mit svgs",
|
|
113
|
-
"ru": "исправить в дизайнере с svgs",
|
|
114
|
-
"pt": "corrigir no designer com svgs",
|
|
115
|
-
"nl": "fix in ontwerper met svgs",
|
|
116
|
-
"fr": "fixer en concepteur avec svgs",
|
|
117
|
-
"it": "fix in designer con svgs",
|
|
118
|
-
"es": "fijado en diseñador con svgs",
|
|
119
|
-
"pl": "fix in designer with svgs",
|
|
120
|
-
"uk": "фіксація в дизайнеру з кс",
|
|
121
|
-
"zh-cn": "使用 svgs 在设计器中固定"
|
|
122
122
|
}
|
|
123
123
|
},
|
|
124
124
|
"icon": "logo.png",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.webui",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.2",
|
|
4
4
|
"description": "ioBroker webui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/backend/main.js",
|
|
@@ -75,14 +75,14 @@
|
|
|
75
75
|
"dayjs": "^1.11.13",
|
|
76
76
|
"del": "^8.0.0",
|
|
77
77
|
"dock-spawn-ts": "^3.2.1",
|
|
78
|
-
"es-module-shims": "
|
|
78
|
+
"es-module-shims": "1.10.1",
|
|
79
79
|
"eslint": "^9.18.0",
|
|
80
80
|
"esprima-next": "^6.0.3",
|
|
81
81
|
"glob-stream": "^8.0.2",
|
|
82
82
|
"gulp": "^5.0.0",
|
|
83
83
|
"gulp-git": "^2.11.0",
|
|
84
84
|
"gulp-replace": "^1.1.4",
|
|
85
|
-
"iobroker
|
|
85
|
+
"iobroker-webcomponent-object-selector": "file:binary/iobroker-webcomponent-object-selector-0.0.1.tgz",
|
|
86
86
|
"long": "^5.2.4",
|
|
87
87
|
"mobile-drag-drop": "^3.0.0-rc.0",
|
|
88
88
|
"mocha": "^11.0.1",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BindingsEditor } from "@node-projects/web-component-designer-visualization-addons";
|
|
2
|
-
import { openSelectIdDialog } from "iobroker
|
|
2
|
+
import { openSelectIdDialog } from "iobroker-webcomponent-object-selector/dist/selectIdHelper.js";
|
|
3
3
|
//@ts-ignore
|
|
4
4
|
export class IobrokerWebuiBindingsEditor extends BindingsEditor {
|
|
5
5
|
static is = 'iobroker-webui-bindings-editor';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SignalPropertyEditor } from "@node-projects/web-component-designer-visualization-addons";
|
|
2
|
-
import { openSelectIdDialog } from "iobroker
|
|
2
|
+
import { openSelectIdDialog } from "iobroker-webcomponent-object-selector/dist/selectIdHelper.js";
|
|
3
3
|
export class IobrokerWebuiSignalPropertyEditor extends SignalPropertyEditor {
|
|
4
4
|
constructor(property, shell) {
|
|
5
5
|
super(property, shell);
|
|
@@ -32,7 +32,7 @@ const importMapConfig = {
|
|
|
32
32
|
"wunderbaum": "./node_modules/wunderbaum/dist/wunderbaum.esm.min.js",
|
|
33
33
|
"wunderbaum/": "./node_modules/wunderbaum/",
|
|
34
34
|
"toastify-js": "./node_modules/toastify-js/src/toastify-es.js",
|
|
35
|
-
"iobroker
|
|
35
|
+
"iobroker-webcomponent-object-selector/": "./node_modules/iobroker-webcomponent-object-selector/"
|
|
36
36
|
}
|
|
37
37
|
};
|
|
38
38
|
//@ts-ignore
|
package/www/index.html
CHANGED
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
</button>
|
|
219
219
|
<button data-command="save" title="save" disabled><img src="./node_modules/@node-projects/web-component-designer/assets/icons/save.svg"></button>
|
|
220
220
|
<div style="margin-left: 30px;">
|
|
221
|
-
webui - 1.24.
|
|
221
|
+
webui - 1.24.2 - 9d75808
|
|
222
222
|
</div>
|
|
223
223
|
<button style="margin-left: 30px;" data-command="paste" title="paste" disabled><img
|
|
224
224
|
src="./node_modules/@node-projects/web-component-designer/assets/icons/paste.svg"></button>
|