@iobroker/adapter-react-v5 3.5.3 → 4.0.1
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/AdminConnection.d.ts +2 -0
- package/AdminConnection.js +10 -0
- package/AdminConnection.js.map +1 -0
- package/Components/ObjectBrowser.d.ts +1 -1
- package/Connection.d.ts +3 -793
- package/Connection.js +8 -3200
- package/Connection.js.map +1 -1
- package/GenericApp.js +6 -4
- package/GenericApp.js.map +1 -1
- package/README.md +4 -1
- package/_Connection.d.ts +794 -0
- package/_Connection.js +3208 -0
- package/_Connection.js.map +1 -0
- package/i18n.d.ts +6 -6
- package/index.d.ts +4 -2
- package/index.js +6 -3
- package/package.json +2 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _socketClient = require("@iobroker/socket-client");
|
|
8
|
+
var _default = _socketClient.AdminConnection;
|
|
9
|
+
exports["default"] = _default;
|
|
10
|
+
//# sourceMappingURL=AdminConnection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdminConnection.js","names":["AdminConnection"],"sources":["AdminConnection.js"],"sourcesContent":["import { AdminConnection } from '@iobroker/socket-client';\n\nexport default AdminConnection;"],"mappings":";;;;;;AAAA;AAA0D,eAE3CA,6BAAe;AAAA"}
|
|
@@ -551,7 +551,7 @@ declare class ObjectBrowser extends React.Component<import("./types").ObjectBrow
|
|
|
551
551
|
* @returns {JSX.Element | null}
|
|
552
552
|
*/
|
|
553
553
|
private renderEditValueDialog;
|
|
554
|
-
extendObject: (id: any, data: any) => Promise<
|
|
554
|
+
extendObject: (id: any, data: any) => Promise<void>;
|
|
555
555
|
setObject: (id: any, data: any) => Promise<void>;
|
|
556
556
|
/**
|
|
557
557
|
* The rendering method of this component.
|