@iobroker/adapter-react-v5 6.0.17 → 6.0.19
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/Confirm.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import React, { Component } from 'react';
|
|
|
8
8
|
interface DialogConfirmProps {
|
|
9
9
|
title?: string;
|
|
10
10
|
/** The dialog text */
|
|
11
|
-
text
|
|
11
|
+
text?: string | React.JSX.Element;
|
|
12
12
|
/** Close handler. */
|
|
13
13
|
onClose?: (ok: boolean) => void;
|
|
14
14
|
/** if the dialog must be fill sized */
|
package/README.md
CHANGED
|
@@ -781,6 +781,9 @@ The best practice is to replace `padding` with `p` and `margin` with `m`, so you
|
|
|
781
781
|
-->
|
|
782
782
|
|
|
783
783
|
## Changelog
|
|
784
|
+
### 6.0.19 (2024-07-14)
|
|
785
|
+
* (bluefox) added some packages for federation
|
|
786
|
+
|
|
784
787
|
### 6.0.17 (2024-07-14)
|
|
785
788
|
* (bluefox) Allowed playing mp3 files in the file browser
|
|
786
789
|
* (bluefox) Corrected jump by object selection
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
const paths = require('react-scripts/config/paths');
|
|
3
3
|
|
|
4
4
|
const getModuleFederationConfigPath = (additionalPaths = []) => {
|
|
5
|
-
const path = require('path');
|
|
6
|
-
const fs = require('fs');
|
|
5
|
+
const path = require('node:path');
|
|
6
|
+
const fs = require('node:fs');
|
|
7
7
|
const appDirectory = fs.realpathSync(process.cwd());
|
|
8
8
|
const resolveApp = relativePath => path.resolve(appDirectory, relativePath);
|
|
9
9
|
|
|
@@ -17,10 +17,7 @@ module.exports = {
|
|
|
17
17
|
'@iobroker/dm-gui-components',
|
|
18
18
|
'@mui/icons-material',
|
|
19
19
|
'@mui/material',
|
|
20
|
-
'@mui/
|
|
21
|
-
'@mui/styles',
|
|
22
|
-
'@mui/styles/withStyles',
|
|
23
|
-
'@mui/x-date-pickers/AdapterDateFns',
|
|
20
|
+
'@mui/x-date-pickers',
|
|
24
21
|
'date-fns/locale',
|
|
25
22
|
'leaflet',
|
|
26
23
|
'leaflet-geosearch',
|
|
@@ -29,6 +26,6 @@ module.exports = {
|
|
|
29
26
|
'react-ace',
|
|
30
27
|
'react-dom',
|
|
31
28
|
'react-dropzone',
|
|
32
|
-
'semver'
|
|
29
|
+
'semver',
|
|
33
30
|
]),
|
|
34
31
|
};
|