@iobroker/adapter-react-v5 4.13.18 → 4.13.21

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.
@@ -365,7 +365,7 @@ class ComplexCron extends react_1.Component {
365
365
  this.setState({ hours: value, modes }, () => this.recalcCron());
366
366
  }
367
367
  else if (attr === 'dates') {
368
- this.setState({ hours: value, modes }, () => this.recalcCron());
368
+ this.setState({ dates: value, modes }, () => this.recalcCron());
369
369
  }
370
370
  else if (attr === 'months') {
371
371
  this.setState({ months: value, modes }, () => this.recalcCron());
@@ -388,7 +388,7 @@ class ComplexCron extends react_1.Component {
388
388
  this.setState({ hours: value }, () => this.recalcCron());
389
389
  }
390
390
  else if (attr === 'dates') {
391
- this.setState({ hours: value }, () => this.recalcCron());
391
+ this.setState({ dates: value }, () => this.recalcCron());
392
392
  }
393
393
  else if (attr === 'months') {
394
394
  this.setState({ months: value }, () => this.recalcCron());
package/GenericApp.d.ts CHANGED
@@ -35,7 +35,7 @@ declare class GenericApp<TProps extends GenericAppProps = GenericAppProps, TStat
35
35
  private _secret;
36
36
  protected _systemConfig: ioBroker.SystemConfigCommon | undefined;
37
37
  private savedNative;
38
- private common;
38
+ protected common: ioBroker.InstanceCommon | null;
39
39
  private sentryStarted;
40
40
  private sentryInited;
41
41
  private resizeTimer;
@@ -153,7 +153,7 @@ declare class GenericApp<TProps extends GenericAppProps = GenericAppProps, TStat
153
153
  /**
154
154
  * Closes the dialog.
155
155
  */
156
- private static onClose;
156
+ static onClose(): void;
157
157
  /**
158
158
  * Renders the error dialog.
159
159
  */
package/README.md CHANGED
@@ -670,9 +670,13 @@ socket.getObjectViewCustom('custom', 'state', 'startKey', 'endKey')
670
670
  -->
671
671
 
672
672
  ## Changelog
673
- ### 4.13.18 (2024-05-21)
673
+ ### 4.13.21 (2024-05-23)
674
+ * (bluefox) Updated packages
675
+
676
+ ### 4.13.20 (2024-05-22)
674
677
  * (bluefox) Better types added
675
678
  * (bluefox) updated theme definitions
679
+ * (bluefox) corrected dates in cron dialog
676
680
 
677
681
  ### 4.13.14 (2024-05-19)
678
682
  * (bluefox) Updated packages
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/adapter-react-v5",
3
- "version": "4.13.18",
3
+ "version": "4.13.21",
4
4
  "description": "React classes to develop admin interfaces for ioBroker with react.",
5
5
  "author": {
6
6
  "name": "Denis Haev (bluefox)",
@@ -30,16 +30,16 @@
30
30
  "@emotion/react": "^11.11.4",
31
31
  "@emotion/styled": "^11.11.5",
32
32
  "@iobroker/dm-utils": "^0.1.9",
33
- "@iobroker/json-config": "^6.17.6",
33
+ "@iobroker/json-config": "^6.17.12",
34
34
  "@iobroker/socket-client": "^2.4.11",
35
- "@iobroker/types": "^5.0.20-alpha.0-20240510-819f1976e",
36
- "@iobroker/js-controller-common": "^5.0.20-alpha.0-20240510-819f1976e",
37
- "@iobroker/js-controller-common-db": "^5.0.20-alpha.0-20240510-819f1976e",
35
+ "@iobroker/types": "^5.0.20-alpha.0-20240522-9b71d3242",
36
+ "@iobroker/js-controller-common": "^5.0.20-alpha.0-20240522-9b71d3242",
37
+ "@iobroker/js-controller-common-db": "^5.0.20-alpha.0-20240522-9b71d3242",
38
38
  "@mui/icons-material": "^5.15.18",
39
39
  "@mui/material": "5.14.14",
40
40
  "@mui/styles": "5.14.14",
41
41
  "@mui/x-date-pickers": "^7.5.0",
42
- "@sentry/browser": "^8.2.1",
42
+ "@sentry/browser": "^8.3.0",
43
43
  "react-color": "^2.19.3",
44
44
  "react-colorful": "^5.6.1",
45
45
  "react-cropper": "^2.3.3",