@iobroker/json-config 8.0.4 → 8.0.6
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 +9 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -249,7 +249,7 @@ admin/i18n/en.json
|
|
|
249
249
|
Additionally, user can provide the path to `i18n` files, `i18n`: `customI18n` and provide files in admin:
|
|
250
250
|
|
|
251
251
|
```json5
|
|
252
|
-
i18n: "customI18n",
|
|
252
|
+
"i18n": "customI18n",
|
|
253
253
|
```
|
|
254
254
|
|
|
255
255
|
```text
|
|
@@ -444,9 +444,9 @@ Select function from `enum.func` (With color and icon) - (only Admin6)
|
|
|
444
444
|
|
|
445
445
|
#### Example for `select options`
|
|
446
446
|
|
|
447
|
-
```
|
|
447
|
+
```json5
|
|
448
448
|
[
|
|
449
|
-
{"label": {"en": "option 1"}, "value": 1},
|
|
449
|
+
{"label": {"en": "option 1"}, "value": 1}, //...
|
|
450
450
|
]
|
|
451
451
|
```
|
|
452
452
|
or
|
|
@@ -1393,7 +1393,7 @@ Component must look like
|
|
|
1393
1393
|
schema={schema}
|
|
1394
1394
|
customInstancesEditor={CustomInstancesEditor}
|
|
1395
1395
|
data={common.native}
|
|
1396
|
-
onError={(error, attribute) => error can be true/false or text. Attribute is optional}
|
|
1396
|
+
onError={(error, attribute) => {/* error can be true/false or text. Attribute is optional */}}
|
|
1397
1397
|
onChanged={(newData, isChanged) => console.log('Changed ' + isChanged)}
|
|
1398
1398
|
/>
|
|
1399
1399
|
```
|
|
@@ -1504,7 +1504,7 @@ The following variables are available in JS function in custom settings:
|
|
|
1504
1504
|
theme={this.props.theme}
|
|
1505
1505
|
name="accessAllowedConfigs"
|
|
1506
1506
|
onChange={(newData, isChanged) => {}}
|
|
1507
|
-
onError={error => error can be true/false or text}
|
|
1507
|
+
onError={error => /* error can be true/false or text */ {}}
|
|
1508
1508
|
/>
|
|
1509
1509
|
```
|
|
1510
1510
|
|
|
@@ -1599,7 +1599,10 @@ The schema is used here: https://github.com/SchemaStore/schemastore/blob/6da29cd
|
|
|
1599
1599
|
### **WORK IN PROGRESS**
|
|
1600
1600
|
-->
|
|
1601
1601
|
## Changelog
|
|
1602
|
-
### 8.0.
|
|
1602
|
+
### 8.0.6 (2025-11-10)
|
|
1603
|
+
- (@GermanBluefox) Added width to many table elements
|
|
1604
|
+
|
|
1605
|
+
### 8.0.5 (2025-10-25)
|
|
1603
1606
|
- (@GermanBluefox) Do not translate certificates names
|
|
1604
1607
|
- (@GermanBluefox) Update packages
|
|
1605
1608
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/json-config",
|
|
3
3
|
"description": "This package contains the ioBroker JSON config UI components",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.6",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "bluefox",
|
|
7
7
|
"email": "dogafox@gmail.com"
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@iobroker/adapter-react-v5": "^8.0.
|
|
38
|
-
"@module-federation/runtime": "^0.21.
|
|
37
|
+
"@iobroker/adapter-react-v5": "^8.0.12",
|
|
38
|
+
"@module-federation/runtime": "^0.21.3",
|
|
39
39
|
"@mui/x-date-pickers": "^7.29.4",
|
|
40
40
|
"crypto-js": "^4.2.0",
|
|
41
41
|
"json5": "^2.2.3",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@iobroker/eslint-config": "^2.2.0",
|
|
50
50
|
"@types/crypto-js": "^4.2.2",
|
|
51
51
|
"@types/json5": "^2.2.0",
|
|
52
|
-
"@types/node": "^24.
|
|
52
|
+
"@types/node": "^24.10.0",
|
|
53
53
|
"@types/react": "^18.3.26",
|
|
54
54
|
"@types/react-color": "^3.0.13",
|
|
55
55
|
"@types/react-dom": "^18.3.7",
|