iobroker.webui 1.29.0 → 1.30.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 CHANGED
@@ -133,6 +133,9 @@ runtime.html?screenName=screen2
133
133
  Placeholder for next versions:
134
134
  ### __WORK IN PROGRESS__
135
135
  -->
136
+ ### 1.30.0 (2025-05-25)
137
+ - starting indirect binding fix
138
+
136
139
  ### 1.29.0 (2025-05-25)
137
140
  - complexer indirect bindings
138
141
 
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "webui",
4
- "version": "1.29.0",
4
+ "version": "1.30.0",
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.30.0": {
33
+ "en": "starting indirect binding fix",
34
+ "de": "start indirekter bindungsfix",
35
+ "ru": "начало косвенного связывания",
36
+ "pt": "correção de ligação indireta",
37
+ "nl": "beginnen met indirecte bindingsfix",
38
+ "fr": "début de la fixation indirecte",
39
+ "it": "start indirect binding fix",
40
+ "es": "inicio de fijación indirecta",
41
+ "pl": "początkowy łącznik pośredni",
42
+ "uk": "від непрямої фіксації",
43
+ "zh-cn": "开始间接绑定"
44
+ },
32
45
  "1.29.0": {
33
46
  "en": "complexer indirect bindings",
34
47
  "de": "komplexe indirekte bindungen",
@@ -106,19 +119,6 @@
106
119
  "pl": "naprawić błąd null na rekwizytach",
107
120
  "uk": "виправити помилку null на пропсах",
108
121
  "zh-cn": "修复道具上的无效错误"
109
- },
110
- "1.25.1": {
111
- "en": "escape xml\nswitch to official selector package",
112
- "de": "entkommen xml\nwechsel zum offiziellen auswahlpaket",
113
- "ru": "xml\nпереход на официальный пакет селектора",
114
- "pt": "escapar xml\nmudar para o pacote seletor oficial",
115
- "nl": "ontsnappen xml\nschakel over op officiële selectiepakket",
116
- "fr": "évasion xml\npasser au sélecteur officiel",
117
- "it": "fuga xml\npassare al pacchetto selettore ufficiale",
118
- "es": "escape xml\ncambiar al paquete oficial selector",
119
- "pl": "escape xml\nprzełączanie na oficjalny pakiet wyboru",
120
- "uk": "втеча xml\nвимикач на офіційному пакеті selector",
121
- "zh-cn": "越狱 xml\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.29.0",
3
+ "version": "1.30.0",
4
4
  "description": "ioBroker webui",
5
5
  "type": "module",
6
6
  "main": "dist/backend/main.js",
@@ -64,7 +64,7 @@
64
64
  "@node-projects/web-component-designer-codeview-monaco": "^0.1.33",
65
65
  "@node-projects/web-component-designer-htmlparserservice-nodehtmlparser": "^0.1.11",
66
66
  "@node-projects/web-component-designer-stylesheetservice-css-tools": "^0.1.10",
67
- "@node-projects/web-component-designer-visualization-addons": "^0.1.119",
67
+ "@node-projects/web-component-designer-visualization-addons": "^0.1.120",
68
68
  "@node-projects/web-component-designer-widgets-wunderbaum": "^0.1.33",
69
69
  "@types/json-schema": "^7.0.15",
70
70
  "@web/dev-server": "^0.4.6",
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.29.0 - eb18062
221
+ webui - 1.30.0 - 1dc0333
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>
@@ -247,6 +247,8 @@ export class BindingsHelper {
247
247
  let needsJson = false;
248
248
  if (eventsString && binding.expression?.includes('::') || binding.expressionTwoWay?.includes('::'))
249
249
  needsJson = true;
250
+ if (binding.signal.trim()[0] == '{')
251
+ needsJson = true;
250
252
  if (!needsJson && binding.target == BindingTarget.property &&
251
253
  !binding.expression && !binding.expressionTwoWay &&
252
254
  binding.converter == null &&