iobroker.webui 1.32.0 → 1.33.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.33.0 (2025-08-26)
137
+ - fix NaN check
138
+
136
139
  ### 1.32.0 (2025-08-20)
137
140
  - Support css prop suggestions
138
141
 
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "webui",
4
- "version": "1.32.0",
4
+ "version": "1.33.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.33.0": {
33
+ "en": "fix NaN check",
34
+ "de": "naN-Check",
35
+ "ru": "проверьте NaN",
36
+ "pt": "corrigir verificação NaN",
37
+ "nl": "naN-controle herstellen",
38
+ "fr": "correction du contrôle NaN",
39
+ "it": "correzione del controllo NaN",
40
+ "es": "arreglar NaN",
41
+ "pl": "fix NaN check",
42
+ "uk": "виправити NaN перевірити",
43
+ "zh-cn": "修复NaN 检查"
44
+ },
32
45
  "1.32.0": {
33
46
  "en": "Support css prop suggestions",
34
47
  "de": "Support css prop Vorschläge",
@@ -106,19 +119,6 @@
106
119
  "pl": "update npms",
107
120
  "uk": "оновлення npms",
108
121
  "zh-cn": "更新 npms"
109
- },
110
- "1.31.1": {
111
- "en": "remove nod 18 from github actions",
112
- "de": "nod 18 von github aktionen entfernen",
113
- "ru": "удалить кивок 18 из действий github",
114
- "pt": "remover aceno 18 das ações do github",
115
- "nl": "verwijderen nod 18 uit github acties",
116
- "fr": "supprimer le nod 18 des actions github",
117
- "it": "rimuovere nd 18 da azioni github",
118
- "es": "eliminar nod 18 de las acciones de github",
119
- "pl": "usuń nod 18 z działań github",
120
- "uk": "remove nod 18 від github дії",
121
- "zh-cn": "从 github 动作中删除点头 18"
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.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "ioBroker webui",
5
5
  "type": "module",
6
6
  "main": "dist/backend/main.js",
@@ -143,7 +143,7 @@ export function generateCustomControl(name, control) {
143
143
  return this['_' + p];
144
144
  },
145
145
  set(newValue) {
146
- if (this['_' + p] !== newValue && (!isNaN(this['_' + p]) || !isNaN(newValue))) {
146
+ if (this['_' + p] !== newValue && (!Number.isNaN(this['_' + p]) || !Number.isNaN(newValue))) {
147
147
  this['_' + p] = newValue;
148
148
  this._bindingsRefresh(p);
149
149
  instance.dispatchEvent(new CustomEvent(PropertiesHelper.camelToDashCase(p) + '-changed', { detail: { newValue } }));
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.32.0 - 009880e
221
+ webui - 1.33.0 - f59b0a9
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>