@iobroker/adapter-react-v5 6.0.18 → 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.
@@ -8,7 +8,7 @@ import React, { Component } from 'react';
8
8
  interface DialogConfirmProps {
9
9
  title?: string;
10
10
  /** The dialog text */
11
- text: string | React.JSX.Element;
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,7 +781,7 @@ 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.18 (2024-07-14)
784
+ ### 6.0.19 (2024-07-14)
785
785
  * (bluefox) added some packages for federation
786
786
 
787
787
  ### 6.0.17 (2024-07-14)
@@ -17,11 +17,7 @@ module.exports = {
17
17
  '@iobroker/dm-gui-components',
18
18
  '@mui/icons-material',
19
19
  '@mui/material',
20
- '@mui/material/styles',
21
- '@mui/material/colors',
22
- '@mui/styles',
23
- '@mui/styles/withStyles',
24
- '@mui/x-date-pickers/AdapterDateFns',
20
+ '@mui/x-date-pickers',
25
21
  'date-fns/locale',
26
22
  'leaflet',
27
23
  'leaflet-geosearch',
@@ -30,6 +26,6 @@ module.exports = {
30
26
  'react-ace',
31
27
  'react-dom',
32
28
  'react-dropzone',
33
- 'semver'
29
+ 'semver',
34
30
  ]),
35
31
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/adapter-react-v5",
3
- "version": "6.0.18",
3
+ "version": "6.0.19",
4
4
  "description": "React classes to develop admin interfaces for ioBroker with react.",
5
5
  "author": {
6
6
  "name": "Denis Haev (bluefox)",