iobroker.webui 1.31.2 → 1.31.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
@@ -133,6 +133,9 @@ runtime.html?screenName=screen2
133
133
  Placeholder for next versions:
134
134
  ### __WORK IN PROGRESS__
135
135
  -->
136
+ ### 1.31.3 (2025-08-19)
137
+ - NaN not NaN
138
+
136
139
  ### 1.31.2 (2025-08-18)
137
140
  - update npms
138
141
 
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "webui",
4
- "version": "1.31.2",
4
+ "version": "1.31.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.31.3": {
33
+ "en": "NaN not NaN",
34
+ "de": "NaN nicht NaN",
35
+ "ru": "Нан не нан",
36
+ "pt": "NaN não NaN",
37
+ "nl": "NaN niet NaN",
38
+ "fr": "NaN pas NaN",
39
+ "it": "NaN non NaN",
40
+ "es": "Nan no Nan",
41
+ "pl": "Nie",
42
+ "uk": "Не NaN",
43
+ "zh-cn": "纳恩不纳恩"
44
+ },
32
45
  "1.31.2": {
33
46
  "en": "update npms",
34
47
  "de": "aktualisierung von npms",
@@ -106,19 +119,6 @@
106
119
  "pl": "aktualizacja pakietów",
107
120
  "uk": "оновлення пакетів",
108
121
  "zh-cn": "更新软件包"
109
- },
110
- "1.27.1": {
111
- "en": "fix xml import",
112
- "de": "xml importieren",
113
- "ru": "xml импортировать",
114
- "pt": "corrigir a importação xml",
115
- "nl": "xml-import herstellen",
116
- "fr": "correction de l'importation de xml",
117
- "it": "correzione xml importazione",
118
- "es": "fijar importación xml",
119
- "pl": "fix import xml",
120
- "uk": "виправлено імпорт xml",
121
- "zh-cn": "修正 xml 导入"
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.31.2",
3
+ "version": "1.31.3",
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) {
146
+ if (this['_' + p] !== newValue && (!isNaN(this['_' + p]) || !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.31.2 - ab85074
221
+ webui - 1.31.3 - 15bc6b0
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>