@configuratorware/configurator-frontendgui 1.31.7 → 1.31.9

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.
@@ -431,7 +431,7 @@ var AmountPrice = /*#__PURE__*/function (_React$Component) {
431
431
  clientTexts = _this$props3.clientTexts;
432
432
  var dataPrivacyLink = clientTexts.dataPrivacyLink;
433
433
  var dataPrivacyApproved = _this.state.dataPrivacyAccepted.value;
434
- return showReceiveOfferForm && dataPrivacyApproved && dataPrivacyLink;
434
+ return !dataPrivacyLink || !showReceiveOfferForm || dataPrivacyApproved;
435
435
  });
436
436
 
437
437
  _defineProperty(_assertThisInitialized(_this), "handleTouchMove", function (evt) {
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@configuratorware/configurator-frontendgui",
3
- "version": "1.31.7",
3
+ "version": "1.31.9",
4
4
  "license": "UNLICENSED",
5
5
  "private": false,
6
6
  "main": "./index.js",
7
7
  "dependencies": {
8
8
  "@babel/polyfill": "^7.12.1",
9
- "@configuratorware/scripts": "1.31.7",
9
+ "@configuratorware/scripts": "1.31.9",
10
10
  "@hot-loader/react-dom": "^17.0.1",
11
11
  "@material-ui/core": "^4.12.2",
12
12
  "@material-ui/icons": "^4.11.2",
@@ -39,8 +39,8 @@
39
39
  "react-router-dom": "^5.2.0",
40
40
  "react-swipeable": "^5.5.1",
41
41
  "react-zoom-pan-pinch": "^2.1.3",
42
- "redhotmagma-graphics-editor": "1.31.7",
43
- "redhotmagma-visualization": "1.31.7",
42
+ "redhotmagma-graphics-editor": "1.31.9",
43
+ "redhotmagma-visualization": "1.31.9",
44
44
  "redux": "^4.1.0",
45
45
  "redux-logger": "^3.0.6",
46
46
  "redux-persist": "^5.10.0",
@@ -402,7 +402,7 @@ class AmountPrice extends React.Component {
402
402
  const { showReceiveOfferForm, clientTexts } = this.props;
403
403
  const { dataPrivacyLink } = clientTexts;
404
404
  const dataPrivacyApproved = this.state.dataPrivacyAccepted.value;
405
- return showReceiveOfferForm && dataPrivacyApproved && dataPrivacyLink;
405
+ return !dataPrivacyLink || !showReceiveOfferForm || dataPrivacyApproved;
406
406
  };
407
407
 
408
408
  handleTouchMove = (evt => {