@iobroker/adapter-react-v5 4.11.2 → 4.11.3
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/Dialogs/SelectFile.d.ts +1 -1
- package/README.md +3 -0
- package/package.json +1 -1
package/Dialogs/SelectFile.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ interface DialogSelectFileProps {
|
|
|
53
53
|
onOk: (selected: string | string[] | undefined) => void;
|
|
54
54
|
/** The styling class names. */
|
|
55
55
|
classes: Record<string, string>;
|
|
56
|
-
filters
|
|
56
|
+
filters?: Record<string, string>;
|
|
57
57
|
/** Allow switch views Table<=>Rows */
|
|
58
58
|
showViewTypeButton?: boolean;
|
|
59
59
|
/** If type selector should be shown */
|
package/README.md
CHANGED
|
@@ -670,6 +670,9 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
670
670
|
-->
|
|
671
671
|
|
|
672
672
|
## Changelog
|
|
673
|
+
### 4.11.3 (2024-03-17)
|
|
674
|
+
* (bluefox) Made filters for the file selector dialog optional
|
|
675
|
+
|
|
673
676
|
### 4.11.2 (2024-03-16)
|
|
674
677
|
* (bluefox) Migrated GenericApp to typescript
|
|
675
678
|
|