iobroker.webui 1.18.2 → 1.18.3
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
CHANGED
package/io-package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "webui",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.3",
|
|
5
5
|
"titleLang": {
|
|
6
6
|
"en": "webui",
|
|
7
7
|
"de": "webui",
|
|
@@ -29,6 +29,19 @@
|
|
|
29
29
|
"zh-cn": "使用万维网传送器的高锰用户接口"
|
|
30
30
|
},
|
|
31
31
|
"news": {
|
|
32
|
+
"1.18.3": {
|
|
33
|
+
"en": "small typo fix",
|
|
34
|
+
"de": "kleine typo fix",
|
|
35
|
+
"ru": "маленький тайфун",
|
|
36
|
+
"pt": "pequena correção de tipo",
|
|
37
|
+
"nl": "kleine typfout",
|
|
38
|
+
"fr": "petite correction typographique",
|
|
39
|
+
"it": "piccolo typo fix",
|
|
40
|
+
"es": "pequeño neumático",
|
|
41
|
+
"pl": "mała literówka fix",
|
|
42
|
+
"uk": "маленький типофікс",
|
|
43
|
+
"zh-cn": "小类型修复"
|
|
44
|
+
},
|
|
32
45
|
"1.18.2": {
|
|
33
46
|
"en": "better refcatoring",
|
|
34
47
|
"de": "besser refcatoring",
|
|
@@ -106,19 +119,6 @@
|
|
|
106
119
|
"pl": "selektor właściwości",
|
|
107
120
|
"uk": "вибірник для властивостей",
|
|
108
121
|
"zh-cn": "属性选择器"
|
|
109
|
-
},
|
|
110
|
-
"1.17.0": {
|
|
111
|
-
"en": "internal control properties\ninternal screen properties",
|
|
112
|
-
"de": "interne steuereigenschaften\ninterne bildschirmeigenschaften",
|
|
113
|
-
"ru": "свойства внутреннего контроля\nвнутренние свойства экрана",
|
|
114
|
-
"pt": "propriedades de controle interno\npropriedades de tela interna",
|
|
115
|
-
"nl": "interne controle-eigenschappen\neigenschappen van intern scherm",
|
|
116
|
-
"fr": "propriétés de contrôle interne\npropriétés de l'écran interne",
|
|
117
|
-
"it": "proprietà di controllo interno\nproprietà dello schermo interno",
|
|
118
|
-
"es": "propiedades de control interno\npropiedades de pantalla interna",
|
|
119
|
-
"pl": "właściwości kontroli wewnętrznej\nwewnętrzne właściwości ekranu",
|
|
120
|
-
"uk": "внутрішні елементи управління\nвнутрішні параметри екрана",
|
|
121
|
-
"zh-cn": "内部控制属性\n内部屏幕属性"
|
|
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.18.
|
|
3
|
+
"version": "1.18.3",
|
|
4
4
|
"description": "ioBroker webui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/backend/main.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@node-projects/web-component-designer-codeview-monaco": "^0.1.32",
|
|
59
59
|
"@node-projects/web-component-designer-htmlparserservice-nodehtmlparser": "^0.1.11",
|
|
60
60
|
"@node-projects/web-component-designer-stylesheetservice-css-tools": "^0.1.10",
|
|
61
|
-
"@node-projects/web-component-designer-visualization-addons": "^0.1.
|
|
61
|
+
"@node-projects/web-component-designer-visualization-addons": "^0.1.90",
|
|
62
62
|
"@node-projects/web-component-designer-widgets-wunderbaum": "^0.1.29",
|
|
63
63
|
"@types/json-schema": "^7.0.15",
|
|
64
64
|
"@web/dev-server": "^0.4.6",
|
package/www/index.html
CHANGED
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
</button>
|
|
214
214
|
<button data-command="save" title="save" disabled><img src="./node_modules/@node-projects/web-component-designer/assets/icons/save.svg"></button>
|
|
215
215
|
<div style="margin-left: 30px;">
|
|
216
|
-
webui - 1.18.
|
|
216
|
+
webui - 1.18.3 - 68dea11
|
|
217
217
|
</div>
|
|
218
218
|
<button style="margin-left: 30px;" data-command="paste" title="paste" disabled><img
|
|
219
219
|
src="./node_modules/@node-projects/web-component-designer/assets/icons/paste.svg"></button>
|
|
@@ -15,10 +15,10 @@ export class ScriptRefactorService {
|
|
|
15
15
|
if (cp != null && typeof cp === 'object') {
|
|
16
16
|
let mp = cp;
|
|
17
17
|
if (mp.source === 'signal') {
|
|
18
|
-
refactorings.push({ name: mp.name, itemType: 'signal', target: BindingTarget.event, targetName: a[0], service: this, designItem: d, type: 'script', sourceObject: script, display: c.type + '/' + p + '[
|
|
18
|
+
refactorings.push({ name: mp.name, itemType: 'signal', target: BindingTarget.event, targetName: a[0], service: this, designItem: d, type: 'script', sourceObject: script, display: c.type + '/' + p + '[signal]', refactor: newValue => mp.name = newValue });
|
|
19
19
|
}
|
|
20
20
|
else if (mp.source === 'property') {
|
|
21
|
-
refactorings.push({ name: mp.name, itemType: 'property', target: BindingTarget.event, targetName: a[0], service: this, designItem: d, type: 'script', sourceObject: script, display: c.type + '/' + p + '[
|
|
21
|
+
refactorings.push({ name: mp.name, itemType: 'property', target: BindingTarget.event, targetName: a[0], service: this, designItem: d, type: 'script', sourceObject: script, display: c.type + '/' + p + '[property]', refactor: newValue => mp.name = newValue });
|
|
22
22
|
}
|
|
23
23
|
else if (mp.source === 'complexString') {
|
|
24
24
|
for (let m of mp.name.matchAll(/\{(.*?)\}/g)) {
|