@plurid/plurid-engine 0.0.0-6 → 0.0.0-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.
@@ -71,6 +71,7 @@ const merge = (configuration, target) => {
71
71
  conceal: specifiedOrDefault("elements.toolbar.conceal", "boolean", configuration),
72
72
  transformIcons: specifiedOrDefault("elements.toolbar.transformIcons", "boolean", configuration),
73
73
  transformButtons: specifiedOrDefault("elements.toolbar.transformButtons", "boolean", configuration),
74
+ drawers: configuration.elements && configuration.elements.toolbar && configuration.elements.toolbar.drawers ? configuration.elements.toolbar.drawers : targetConfiguration.elements.toolbar.drawers,
74
75
  toggledDrawers: configuration.elements && configuration.elements.toolbar && configuration.elements.toolbar.toggledDrawers ? configuration.elements.toolbar.toggledDrawers : targetConfiguration.elements.toolbar.toggledDrawers
75
76
  },
76
77
  viewcube: {
@@ -1443,9 +1444,7 @@ class IsoMatcher {
1443
1444
  return;
1444
1445
  }
1445
1446
  matchRoute(value) {
1446
- console.log("matchRoute value", value);
1447
1447
  const routeValue = cleanPathValue(value);
1448
- console.log("matchRoute routeValue", routeValue);
1449
1448
  const route = this.routesIndex.get(routeValue);
1450
1449
  if (route) {
1451
1450
  const query = extractQuery(value);