@iobroker/json-config 10.0.0 → 10.0.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 +10 -1
- package/build/types.d.ts +3 -2
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -849,7 +849,7 @@ Example:
|
|
|
849
849
|
}
|
|
850
850
|
```
|
|
851
851
|
|
|
852
|
-
### `
|
|
852
|
+
### `certCollection`
|
|
853
853
|
|
|
854
854
|
select a certificate collection or just use all collections or don't use let's encrypt at all.
|
|
855
855
|
|
|
@@ -1956,6 +1956,15 @@ The schema is used here: https://github.com/SchemaStore/schemastore/blob/6da29cd
|
|
|
1956
1956
|
### **WORK IN PROGRESS**
|
|
1957
1957
|
-->
|
|
1958
1958
|
## Changelog
|
|
1959
|
+
### 10.0.2 (2026-09-15)
|
|
1960
|
+
- (@MiSchroe) Fixed: CRON schema accepts either simple or complex or none of them
|
|
1961
|
+
- (@GermanBluefox) Updated Schema
|
|
1962
|
+
|
|
1963
|
+
### 10.0.1 (2026-09-12)
|
|
1964
|
+
|
|
1965
|
+
- (@GermanBluefox) The schema was corrected: closable to closeable.
|
|
1966
|
+
- (@GermanBluefox) Updated packages
|
|
1967
|
+
|
|
1959
1968
|
### 10.0.0 (2026-09-04)
|
|
1960
1969
|
|
|
1961
1970
|
- (@GermanBluefox) The schema allows the root property `command` of a JSON tab now. It was documented and honoured by admin, but every `jsonTab.json5` that uses it was reported as invalid: https://github.com/ioBroker/ioBroker.admin/issues/3610
|
package/build/types.d.ts
CHANGED
|
@@ -741,7 +741,7 @@ export interface ConfigItemAutocompleteSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
741
741
|
/** max length of the text in the field */
|
|
742
742
|
maxLength?: number;
|
|
743
743
|
/** @deprecated use maxLength */
|
|
744
|
-
max?:
|
|
744
|
+
max?: number;
|
|
745
745
|
alsoDependsOn?: string[];
|
|
746
746
|
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
747
747
|
instance?: string;
|
|
@@ -878,7 +878,8 @@ export interface ConfigItemImageSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
878
878
|
}
|
|
879
879
|
|
|
880
880
|
export interface ConfigItemSendTo extends Omit<ConfigItem, 'data'> {
|
|
881
|
-
|
|
881
|
+
/** `sendto` is a backwards compatible alias of `sendTo` */
|
|
882
|
+
type: 'sendTo' | 'sendto';
|
|
882
883
|
command?: string;
|
|
883
884
|
jsonData?: string;
|
|
884
885
|
data?: Record<string, any>;
|
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": "10.0.
|
|
4
|
+
"version": "10.0.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "bluefox",
|
|
7
7
|
"email": "dogafox@gmail.com"
|
|
@@ -38,40 +38,40 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@emotion/react": "^11.14.0",
|
|
40
40
|
"@emotion/styled": "^11.14.1",
|
|
41
|
-
"@iobroker/gui-components": "^10.2.
|
|
41
|
+
"@iobroker/gui-components": "^10.2.3",
|
|
42
42
|
"@module-federation/runtime": "^2.9.0",
|
|
43
43
|
"@mui/icons-material": "^9.4.0",
|
|
44
44
|
"@mui/material": "^9.4.0",
|
|
45
|
-
"@mui/x-date-pickers": "^9.
|
|
45
|
+
"@mui/x-date-pickers": "^9.13.0",
|
|
46
46
|
"crypto-js": "^4.2.0",
|
|
47
47
|
"json5": "^2.2.3",
|
|
48
|
-
"react": "^19.
|
|
49
|
-
"react-dom": "^19.
|
|
48
|
+
"react": "^19.3.0",
|
|
49
|
+
"react-dom": "^19.3.0",
|
|
50
50
|
"react-dropzone": "^20.1.1",
|
|
51
51
|
"react-qr-code": "^2.2.0",
|
|
52
|
-
"yaml": "^2.9.
|
|
52
|
+
"yaml": "^2.9.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@alcalzone/release-script": "^5.2.1",
|
|
56
56
|
"@alcalzone/release-script-plugin-license": "^5.2.2",
|
|
57
|
-
"@iobroker/build-tools": "^3.0.
|
|
57
|
+
"@iobroker/build-tools": "^3.0.3",
|
|
58
58
|
"@iobroker/eslint-config": "^2.3.4",
|
|
59
59
|
"@iobroker/types": "^7.2.2",
|
|
60
60
|
"@types/crypto-js": "^4.2.2",
|
|
61
61
|
"@types/node": "^26.4.0",
|
|
62
|
-
"@types/react": "^19.
|
|
63
|
-
"@types/react-dom": "^19.
|
|
62
|
+
"@types/react": "^19.3.0",
|
|
63
|
+
"@types/react-dom": "^19.3.0",
|
|
64
64
|
"ajv": "^8.20.0",
|
|
65
65
|
"date-fns": "^4.4.0",
|
|
66
66
|
"react-ace": "^15.0.0",
|
|
67
|
-
"tsc-alias": "^1.9.
|
|
67
|
+
"tsc-alias": "^1.9.5",
|
|
68
68
|
"typescript": "~6.0.3"
|
|
69
69
|
},
|
|
70
70
|
"overrides": {
|
|
71
|
-
"react": "^19.
|
|
72
|
-
"react-dom": "^19.
|
|
73
|
-
"@types/react": "^19.
|
|
74
|
-
"@types/react-dom": "^19.
|
|
71
|
+
"react": "^19.3.0",
|
|
72
|
+
"react-dom": "^19.3.0",
|
|
73
|
+
"@types/react": "^19.3.0",
|
|
74
|
+
"@types/react-dom": "^19.3.0"
|
|
75
75
|
},
|
|
76
76
|
"files": [
|
|
77
77
|
"build/",
|