@configuratorware/configurator-frontendgui 1.43.4 → 1.44.0
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/App/Services/VisualizationService.js +2 -2
- package/App/Shared/Components/ConfigurationOverview/index.js +1 -2
- package/package.json +4 -4
- package/public/translations/en_GB.json +1 -0
- package/src/App/Services/VisualizationService.js +2 -2
- package/src/App/Shared/Components/ConfigurationOverview/index.js +0 -1
|
@@ -344,8 +344,8 @@ var VisualizationService = exports["default"] = /*#__PURE__*/function (_Abstract
|
|
|
344
344
|
if (!(0, _configuration.isProduction)()) {
|
|
345
345
|
window.visualization = component;
|
|
346
346
|
}
|
|
347
|
-
if (component.
|
|
348
|
-
this.registerScreenshotsGetter(component.
|
|
347
|
+
if (component.getScreenshotsSync) {
|
|
348
|
+
this.registerScreenshotsGetter(component.getScreenshotsSync.bind(component));
|
|
349
349
|
}
|
|
350
350
|
if (component.setView) {
|
|
351
351
|
component.setView(_ServiceLocator.Services.store.state.designView.selectedDesignView);
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configuratorware/configurator-frontendgui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.0",
|
|
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.
|
|
9
|
+
"@configuratorware/scripts": "1.44.0",
|
|
10
10
|
"@material-ui/core": "^4.12.4",
|
|
11
11
|
"@material-ui/icons": "^4.11.3",
|
|
12
12
|
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"react-router-dom": "^5.3.4",
|
|
37
37
|
"react-swipeable": "^5.5.1",
|
|
38
38
|
"react-zoom-pan-pinch": "^2.1.3",
|
|
39
|
-
"redhotmagma-graphics-editor": "1.
|
|
40
|
-
"redhotmagma-visualization": "1.
|
|
39
|
+
"redhotmagma-graphics-editor": "1.44.0",
|
|
40
|
+
"redhotmagma-visualization": "1.44.0",
|
|
41
41
|
"redux": "^4.1.0",
|
|
42
42
|
"redux-logger": "^3.0.6",
|
|
43
43
|
"redux-persist": "^5.10.0",
|
|
@@ -251,8 +251,8 @@ export default class VisualizationService extends AbstractVisualizationService {
|
|
|
251
251
|
window.visualization = component;
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
-
if (component.
|
|
255
|
-
this.registerScreenshotsGetter(component.
|
|
254
|
+
if (component.getScreenshotsSync) {
|
|
255
|
+
this.registerScreenshotsGetter(component.getScreenshotsSync.bind(component));
|
|
256
256
|
}
|
|
257
257
|
if (component.setView) {
|
|
258
258
|
component.setView(Services.store.state.designView.selectedDesignView);
|