@iobroker/json-config 8.3.8 → 8.3.10
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 +20 -7
- package/build/JsonConfigComponent/ConfigAlive.js +1 -1
- package/build/JsonConfigComponent/ConfigAlive.js.map +1 -1
- package/build/JsonConfigComponent/ConfigAutocompleteSendTo.js +1 -1
- package/build/JsonConfigComponent/ConfigAutocompleteSendTo.js.map +1 -1
- package/build/JsonConfigComponent/ConfigIFrameSendTo.js +1 -1
- package/build/JsonConfigComponent/ConfigIFrameSendTo.js.map +1 -1
- package/build/JsonConfigComponent/ConfigImageSendTo.js +4 -3
- package/build/JsonConfigComponent/ConfigImageSendTo.js.map +1 -1
- package/build/JsonConfigComponent/ConfigInstanceSelect.js +3 -3
- package/build/JsonConfigComponent/ConfigInstanceSelect.js.map +1 -1
- package/build/JsonConfigComponent/ConfigQrCodeSendTo.js +2 -1
- package/build/JsonConfigComponent/ConfigQrCodeSendTo.js.map +1 -1
- package/build/JsonConfigComponent/ConfigSelectSendTo.js +2 -1
- package/build/JsonConfigComponent/ConfigSelectSendTo.js.map +1 -1
- package/build/JsonConfigComponent/ConfigSendto.js +1 -1
- package/build/JsonConfigComponent/ConfigSendto.js.map +1 -1
- package/build/JsonConfigComponent/ConfigStaticImage.js +3 -3
- package/build/JsonConfigComponent/ConfigStaticImage.js.map +1 -1
- package/build/JsonConfigComponent/ConfigTextSendTo.js +1 -1
- package/build/JsonConfigComponent/ConfigTextSendTo.js.map +1 -1
- package/build/JsonConfigComponent/index.js +1 -1
- package/build/JsonConfigComponent/index.js.map +1 -1
- package/build/types.d.ts +14 -0
- package/package.json +5 -5
package/build/types.d.ts
CHANGED
|
@@ -405,6 +405,8 @@ export interface ConfigItemQrCodeSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
405
405
|
bgColor?: string;
|
|
406
406
|
/** QR code level */
|
|
407
407
|
level?: 'L' | 'M' | 'Q' | 'H';
|
|
408
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
409
|
+
instance?: string;
|
|
408
410
|
}
|
|
409
411
|
|
|
410
412
|
export interface ConfigItemPassword extends ConfigItem {
|
|
@@ -667,6 +669,8 @@ export interface ConfigItemAutocompleteSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
667
669
|
/** @deprecated use maxLength */
|
|
668
670
|
max?: string;
|
|
669
671
|
alsoDependsOn?: string[];
|
|
672
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
673
|
+
instance?: string;
|
|
670
674
|
}
|
|
671
675
|
|
|
672
676
|
export interface ConfigItemAccordion extends ConfigItem {
|
|
@@ -772,6 +776,8 @@ export interface ConfigItemIFrameSendTo extends Omit<ConfigItemIFrame, 'data' |
|
|
|
772
776
|
command?: string;
|
|
773
777
|
alsoDependsOn?: string[];
|
|
774
778
|
data?: Record<string, any>;
|
|
779
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
780
|
+
instance?: string;
|
|
775
781
|
}
|
|
776
782
|
|
|
777
783
|
export interface ConfigItemImageSendTo extends Omit<ConfigItem, 'data'> {
|
|
@@ -781,6 +787,8 @@ export interface ConfigItemImageSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
781
787
|
height?: number | string;
|
|
782
788
|
data?: Record<string, any>;
|
|
783
789
|
sendFirstByClick?: boolean | ioBroker.StringOrTranslated;
|
|
790
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
791
|
+
instance?: string;
|
|
784
792
|
}
|
|
785
793
|
|
|
786
794
|
export interface ConfigItemSendTo extends Omit<ConfigItem, 'data'> {
|
|
@@ -809,6 +817,8 @@ export interface ConfigItemSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
809
817
|
copyToClipboard?: boolean;
|
|
810
818
|
/** Styles for the button itself */
|
|
811
819
|
controlStyle?: CustomCSSProperties;
|
|
820
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
821
|
+
instance?: string;
|
|
812
822
|
}
|
|
813
823
|
|
|
814
824
|
export interface ConfigItemState extends ConfigItem {
|
|
@@ -884,6 +894,8 @@ export interface ConfigItemTextSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
884
894
|
jsonData?: string;
|
|
885
895
|
/** object - `{"subject1": 1, "data": "static"}`. You can specify jsonData or data, but not both. This data will be sent to the backend if jsonData is not defined. */
|
|
886
896
|
data?: Record<string, any>;
|
|
897
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
898
|
+
instance?: string;
|
|
887
899
|
}
|
|
888
900
|
|
|
889
901
|
export interface ConfigItemSelectSendTo extends Omit<ConfigItem, 'data'> {
|
|
@@ -904,6 +916,8 @@ export interface ConfigItemSelectSendTo extends Omit<ConfigItem, 'data'> {
|
|
|
904
916
|
data?: Record<string, any>;
|
|
905
917
|
/** by change of which attributes, the command must be resent */
|
|
906
918
|
alsoDependsOn?: string[];
|
|
919
|
+
/** Instance where to send the request to. Overrides the value of `oContext.instance` */
|
|
920
|
+
instance?: string;
|
|
907
921
|
}
|
|
908
922
|
|
|
909
923
|
export interface ConfigItemTable extends ConfigItem {
|
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.3.
|
|
4
|
+
"version": "8.3.10",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "bluefox",
|
|
7
7
|
"email": "dogafox@gmail.com"
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@iobroker/adapter-react-v5": "^8.
|
|
39
|
-
"@module-federation/runtime": "^2.3.
|
|
38
|
+
"@iobroker/adapter-react-v5": "^8.2.0",
|
|
39
|
+
"@module-federation/runtime": "^2.3.3",
|
|
40
40
|
"@mui/x-date-pickers": "^7.29.4",
|
|
41
41
|
"crypto-js": "^4.2.0",
|
|
42
42
|
"json5": "^2.2.3",
|
|
43
43
|
"react-ace": "^14.0.1",
|
|
44
44
|
"react-qr-code": "^2.0.18",
|
|
45
|
-
"yaml": "^2.8.
|
|
45
|
+
"yaml": "^2.8.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@alcalzone/release-script": "^5.1.1",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@iobroker/build-tools": "^3.0.1",
|
|
51
51
|
"@iobroker/eslint-config": "^2.2.0",
|
|
52
52
|
"@types/crypto-js": "^4.2.2",
|
|
53
|
-
"@types/node": "^25.
|
|
53
|
+
"@types/node": "^25.6.0",
|
|
54
54
|
"@types/react": "^18.3.28",
|
|
55
55
|
"@types/react-color": "^3.0.13",
|
|
56
56
|
"@types/react-dom": "^18.3.7",
|