ui-layout-manager-dev 0.0.31-dev → 0.0.33-dev
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/LayoutManager/Components/RootContainer/RootContainer.jsx +1 -1
- package/src/components/LayoutManager/Controller/LayoutController.js +2 -2
package/package.json
CHANGED
|
@@ -171,6 +171,8 @@ export class LayoutController {
|
|
|
171
171
|
};
|
|
172
172
|
if (isInitial) {
|
|
173
173
|
this.layoutLoaded = true;
|
|
174
|
+
// After initial layout is applied, we can hide the loading screen.
|
|
175
|
+
this.containers[this.ldf.layoutRoot].current.hideLoadingScreen();
|
|
174
176
|
}
|
|
175
177
|
});
|
|
176
178
|
};
|
|
@@ -185,8 +187,6 @@ export class LayoutController {
|
|
|
185
187
|
case LAYOUT_WORKER_PROTOCOL.INITIALIZE_FLEXBOX:
|
|
186
188
|
transformations = event.data.data;
|
|
187
189
|
this.applyTransformations(transformations, true);
|
|
188
|
-
// After initial layout is applied, we can hide the loading screen.
|
|
189
|
-
this.containers["root"].current.hideLoadingScreen();
|
|
190
190
|
break;
|
|
191
191
|
case LAYOUT_WORKER_PROTOCOL.TRANSFORMATIONS:
|
|
192
192
|
transformations = event.data.data;
|