@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.
@@ -1,2 +1,2 @@
1
- export * from "./template";
2
- export * from "./navigate";
1
+ export * from './template';
2
+ export * from './navigate';
@@ -1,3 +1,3 @@
1
- export * from "./data/interfaces";
2
- export * from "./modules";
3
- export * from "./functions";
1
+ export * from './data/interfaces';
2
+ export * from './modules';
3
+ export * from './functions';
@@ -57,6 +57,7 @@ const merge = (configuration, target) => {
57
57
  conceal: specifiedOrDefault("elements.toolbar.conceal", "boolean", configuration),
58
58
  transformIcons: specifiedOrDefault("elements.toolbar.transformIcons", "boolean", configuration),
59
59
  transformButtons: specifiedOrDefault("elements.toolbar.transformButtons", "boolean", configuration),
60
+ drawers: configuration.elements && configuration.elements.toolbar && configuration.elements.toolbar.drawers ? configuration.elements.toolbar.drawers : targetConfiguration.elements.toolbar.drawers,
60
61
  toggledDrawers: configuration.elements && configuration.elements.toolbar && configuration.elements.toolbar.toggledDrawers ? configuration.elements.toolbar.toggledDrawers : targetConfiguration.elements.toolbar.toggledDrawers
61
62
  },
62
63
  viewcube: {
@@ -1429,9 +1430,7 @@ class IsoMatcher {
1429
1430
  return;
1430
1431
  }
1431
1432
  matchRoute(value) {
1432
- console.log("matchRoute value", value);
1433
1433
  const routeValue = cleanPathValue(value);
1434
- console.log("matchRoute routeValue", routeValue);
1435
1434
  const route = this.routesIndex.get(routeValue);
1436
1435
  if (route) {
1437
1436
  const query = extractQuery(value);