@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
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './template';
|
|
2
|
+
export * from './navigate';
|
package/distribution/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
1
|
+
export * from './data/interfaces';
|
|
2
|
+
export * from './modules';
|
|
3
|
+
export * from './functions';
|
package/distribution/index.es.js
CHANGED
|
@@ -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);
|