@iobroker/adapter-react-v5 4.0.0 → 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/README.md +2 -2
- package/index.d.ts +1 -2
- package/index.js +0 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ If you want to create the configuration page with react:
|
|
|
10
10
|
- Change `name` from `src` to `ADAPTERNAME-admin` (Of course replace `ADAPTERNAME` with yours)
|
|
11
11
|
- Add to devDependencies:
|
|
12
12
|
```
|
|
13
|
-
"@iobroker/adapter-react": "^4.0.
|
|
13
|
+
"@iobroker/adapter-react": "^4.0.1",
|
|
14
14
|
```
|
|
15
15
|
Versions can be higher.
|
|
16
16
|
So your src/package.json should look like:
|
|
@@ -643,7 +643,7 @@ If you still have questions, try to find an answer [here](https://mui.com/guides
|
|
|
643
643
|
-->
|
|
644
644
|
|
|
645
645
|
## Changelog
|
|
646
|
-
### 4.0.
|
|
646
|
+
### 4.0.1 (2022-11-30)
|
|
647
647
|
* (bluefox) use `@iobroker/socket-client` instead of `Connection.js`
|
|
648
648
|
|
|
649
649
|
### 3.5.3 (2022-11-30)
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export { default as Theme } from "./Theme";
|
|
2
2
|
export * from "./Theme";
|
|
3
|
-
export * from "./Connection";
|
|
4
3
|
export * from "./i18n";
|
|
5
4
|
export * from "./Prompt";
|
|
6
5
|
export * from "./Components/ColorPicker";
|
|
@@ -114,5 +113,5 @@ export { default as SimpleCronDialog } from "./Dialogs/SimpleCron";
|
|
|
114
113
|
export { default as TextInput } from "./Dialogs/TextInput";
|
|
115
114
|
export { default as ConfigGeneric } from "./Components/JsonConfigComponent/ConfigGeneric";
|
|
116
115
|
export { default as AdminConnection } from "./AdminConnection";
|
|
117
|
-
export { default as Connection, PROGRESS } from "./Connection";
|
|
118
116
|
export { default as i18n, default as I18n } from "./i18n";
|
|
117
|
+
export { default as Connection, PROGRESS } from "./Connection";
|
package/index.js
CHANGED
|
@@ -4,9 +4,6 @@ export * from './Theme';
|
|
|
4
4
|
// export { default as GenericApp } from './GenericApp';
|
|
5
5
|
// export * from './GenericApp';
|
|
6
6
|
|
|
7
|
-
export { default as Connection } from './Connection';
|
|
8
|
-
export * from './Connection';
|
|
9
|
-
|
|
10
7
|
export { default as i18n } from './i18n';
|
|
11
8
|
export { default as I18n } from './i18n';
|
|
12
9
|
export * from './i18n';
|