iobroker.webui 1.35.1 → 1.35.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 CHANGED
@@ -133,6 +133,9 @@ runtime.html?screenName=screen2
133
133
  Placeholder for next versions:
134
134
  ### __WORK IN PROGRESS__
135
135
  -->
136
+ ### 1.35.2 (2025-09-23)
137
+ - forgett to parse bindings
138
+
136
139
  ### 1.35.1 (2025-09-23)
137
140
  - fix reload custom controls
138
141
 
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "webui",
4
- "version": "1.35.1",
4
+ "version": "1.35.2",
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.35.2": {
33
+ "en": "forgett to parse bindings",
34
+ "de": "vergess auf parse bindungen",
35
+ "ru": "забыли разобрать привязки",
36
+ "pt": "esquecido de analisar as ligações",
37
+ "nl": "vergeten om bindingen te ontleden",
38
+ "fr": "oublier d'analyser les liaisons",
39
+ "it": "dimenticare di parse bindings",
40
+ "es": "olvidarse de parse bindings",
41
+ "pl": "zapominanie o przypisie",
42
+ "uk": "забути в обв'язках",
43
+ "zh-cn": "忘记解析绑定"
44
+ },
32
45
  "1.35.1": {
33
46
  "en": "fix reload custom controls",
34
47
  "de": "reload benutzerdefinierte bedienelemente",
@@ -106,19 +119,6 @@
106
119
  "pl": "fix NaN check",
107
120
  "uk": "виправити NaN перевірити",
108
121
  "zh-cn": "修复NaN 检查"
109
- },
110
- "1.32.0": {
111
- "en": "Support css prop suggestions",
112
- "de": "Support css prop Vorschläge",
113
- "ru": "Поддержка предложений css",
114
- "pt": "Suportar sugestões de suporte para css",
115
- "nl": "Ondersteuning css prop suggesties",
116
- "fr": "Soutien css prop suggestions",
117
- "it": "Support css prop suggerimenti",
118
- "es": "Sugerencias de apoyo css",
119
- "pl": "Support sugestie css prop",
120
- "uk": "Підтримка пропозицій css",
121
- "zh-cn": "支持 css 道具建议"
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.35.1",
3
+ "version": "1.35.2",
4
4
  "description": "ioBroker webui",
5
5
  "type": "module",
6
6
  "main": "dist/backend/main.js",
@@ -60,6 +60,7 @@ export class BaseCustomControl extends BaseCustomWebComponentConstructorAppend {
60
60
  this._rootDocumentFragment = this.constructor.template.content.cloneNode(true);
61
61
  this.shadowRoot.innerHTML = '';
62
62
  this.shadowRoot.appendChild(this._rootDocumentFragment);
63
+ this._bindingsParse(null, true);
63
64
  this.connectedCallback();
64
65
  }
65
66
  });
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.35.1 - d7d2637
221
+ webui - 1.35.2 - 0f79e49
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>