@iobroker/adapter-react-v5 4.5.1 → 4.5.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 +3 -0
- package/index.d.ts +2 -0
- package/index.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -667,6 +667,9 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
|
|
|
667
667
|
-->
|
|
668
668
|
|
|
669
669
|
## Changelog
|
|
670
|
+
### 4.5.2 (2023-08-20)
|
|
671
|
+
* (foxriver76) added missing export of TableResize
|
|
672
|
+
|
|
670
673
|
### 4.5.1 (2023-08-19)
|
|
671
674
|
* (foxriver76) fix dialog TextInput
|
|
672
675
|
|
package/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from "./Components/SelectWithIcon";
|
|
|
22
22
|
export * from "./Components/TabContainer";
|
|
23
23
|
export * from "./Components/TabContent";
|
|
24
24
|
export * from "./Components/TabHeader";
|
|
25
|
+
export * from "./Components/TableResize";
|
|
25
26
|
export * from "./Components/TextWithIcon";
|
|
26
27
|
export * from "./Components/ToggleThemeMenu";
|
|
27
28
|
export * from "./Components/TreeTable";
|
|
@@ -79,6 +80,7 @@ export { default as SelectWithIcon } from "./Components/SelectWithIcon";
|
|
|
79
80
|
export { default as TabContainer } from "./Components/TabContainer";
|
|
80
81
|
export { default as TabContent } from "./Components/TabContent";
|
|
81
82
|
export { default as TabHeader } from "./Components/TabHeader";
|
|
83
|
+
export { default as TableResize } from "./Components/TableResize";
|
|
82
84
|
export { default as TextWithIcon } from "./Components/TextWithIcon";
|
|
83
85
|
export { default as ToggleThemeMenu } from "./Components/ToggleThemeMenu";
|
|
84
86
|
export { default as TreeTable } from "./Components/TreeTable";
|
package/index.js
CHANGED
|
@@ -73,6 +73,9 @@ export * from './Components/TabContent';
|
|
|
73
73
|
export { default as TabHeader } from './Components/TabHeader';
|
|
74
74
|
export * from './Components/TabHeader';
|
|
75
75
|
|
|
76
|
+
export { default as TableResize } from './Components/TableResize';
|
|
77
|
+
export * from './Components/TableResize';
|
|
78
|
+
|
|
76
79
|
export { default as TextWithIcon } from './Components/TextWithIcon';
|
|
77
80
|
export * from './Components/TextWithIcon';
|
|
78
81
|
|