@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.
- package/distribution/functions/index.d.ts +2 -2
- package/distribution/index.d.ts +3 -3
- package/distribution/index.es.js +1 -2
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +1 -2
- package/distribution/index.js.map +1 -1
- package/distribution/modules/general/index.d.ts +2 -2
- package/distribution/modules/index.d.ts +8 -8
- package/distribution/modules/interaction/direction/index.d.ts +1 -1
- package/distribution/modules/interaction/index.d.ts +4 -4
- package/distribution/modules/planes/index.d.ts +2 -2
- package/distribution/modules/planes/registrar/index.d.ts +2 -2
- package/distribution/modules/routing/IsoMatcher/index.d.ts +1 -1
- package/distribution/modules/routing/Parser/index.d.ts +1 -1
- package/distribution/modules/routing/Parser/logic.d.ts +1 -1
- package/distribution/modules/routing/index.d.ts +5 -6
- package/distribution/modules/routing/logic/index.d.ts +3 -3
- package/distribution/modules/space/index.d.ts +5 -5
- package/distribution/modules/space/layout/index.d.ts +5 -5
- package/distribution/modules/space/location/index.d.ts +1 -1
- package/distribution/modules/space/tree/index.d.ts +2 -2
- package/distribution/modules/space/view/index.d.ts +1 -1
- package/distribution/modules/state/index.d.ts +2 -2
- package/package.json +21 -21
- package/distribution/modules/routing/IsoMatcher/interfaces.d.ts +0 -57
package/distribution/index.js
CHANGED
|
@@ -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);
|