slicejs-web-framework 1.0.23 → 1.0.24

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.
@@ -105,6 +105,9 @@ export default class Router {
105
105
  targetElement.appendChild(component);
106
106
  }
107
107
 
108
+ await this.renderRoutesComponentsInPage();
109
+
110
+
108
111
  if (slice.loading) {
109
112
  slice.loading.stop();
110
113
  }
package/Slice/Slice.js CHANGED
@@ -123,7 +123,9 @@ export default class Slice {
123
123
  }
124
124
 
125
125
  this.controller.registerComponent(componentInstance);
126
- this.controller.registerComponentsRecursively(componentInstance);
126
+ if(isVisual){
127
+ this.controller.registerComponentsRecursively(componentInstance);
128
+ }
127
129
 
128
130
  this.logger.logInfo('Slice', `Instance ${componentInstance.sliceId} created`);
129
131
  return componentInstance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-web-framework",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "",
5
5
  "engines": {
6
6
  "node": ">=20"