kitchen-simulator 11.26.0 → 11.27.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.
@@ -70,7 +70,7 @@ export function ccdfMapper(ccdf_list, layer) {
70
70
  });
71
71
  }
72
72
  // make structure_json
73
- if (cd.category === 'cabinet') structure_json = {
73
+ if (cd.category === 'cabinet' || cd.category === 'Base' /* TEMP fix: DIY-973, 'Base' should have not been set in 'category' */) structure_json = {
74
74
  tempPlaceholders: tempPlaceholders
75
75
  };else structure_json = structure;
76
76
  // make cabinet definition using structure_json and catalog
@@ -77,7 +77,7 @@ function ccdfMapper(ccdf_list, layer) {
77
77
  });
78
78
  }
79
79
  // make structure_json
80
- if (cd.category === 'cabinet') structure_json = {
80
+ if (cd.category === 'cabinet' || cd.category === 'Base' /* TEMP fix: DIY-973, 'Base' should have not been set in 'category' */) structure_json = {
81
81
  tempPlaceholders: tempPlaceholders
82
82
  };else structure_json = structure;
83
83
  // make cabinet definition using structure_json and catalog
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kitchen-simulator",
3
- "version": "11.26.0",
3
+ "version": "11.27.0",
4
4
  "description": "It is a kitchen simulator (self-contained micro-frontend).",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",