@iobroker/adapter-react-v5 8.2.13 → 8.3.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/README.md +3 -0
- package/build/Components/DeviceType/DeviceTypeSelector.js +2 -2
- package/build/Components/DeviceType/DeviceTypeSelector.js.map +1 -1
- package/build/Components/FileBrowser.js +1 -1
- package/build/Components/FileBrowser.js.map +1 -1
- package/build/Components/Image.js +8 -4
- package/build/Components/Image.js.map +1 -1
- package/build/Components/IobUri.js +3 -3
- package/build/Components/IobUri.js.map +1 -1
- package/build/Components/ObjectBrowser.d.ts +2 -2
- package/build/Components/ObjectBrowser.js +46 -38
- package/build/Components/ObjectBrowser.js.map +1 -1
- package/build/Components/Schedule.d.ts +26 -1
- package/build/Components/Schedule.js +37 -24
- package/build/Components/Schedule.js.map +1 -1
- package/build/Components/SelectWithIcon.js +1 -1
- package/build/Components/SelectWithIcon.js.map +1 -1
- package/build/Components/TextWithIcon.js.map +1 -1
- package/build/Components/TreeTable.js +3 -3
- package/build/Components/TreeTable.js.map +1 -1
- package/build/Components/Utils.d.ts +2 -2
- package/build/Components/Utils.js +4 -4
- package/build/Components/Utils.js.map +1 -1
- package/build/Components/objectBrowserUtils.js +9 -6
- package/build/Components/objectBrowserUtils.js.map +1 -1
- package/build/LegacyConnection.d.ts +2 -2
- package/build/LegacyConnection.js.map +1 -1
- package/build/types.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright 2020-
|
|
2
|
+
* Copyright 2020-2026, Denis Haev (bluefox) <dogafox@gmail.com>
|
|
3
3
|
*
|
|
4
4
|
* MIT License
|
|
5
5
|
*
|
|
@@ -497,7 +497,7 @@ export declare class LegacyConnection {
|
|
|
497
497
|
/** The type of object. */
|
|
498
498
|
type: ioBroker.ObjectType,
|
|
499
499
|
/** The start ID. */
|
|
500
|
-
start
|
|
500
|
+
start?: string,
|
|
501
501
|
/** The end ID. */
|
|
502
502
|
end?: string): Promise<Record<string, ioBroker.Object>>;
|
|
503
503
|
/**
|