@wavemaker/app-ng-runtime 11.6.0-next.26272 → 11.6.0-next.26274
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.
- app-ng-runtime/components/navigation/popover/bundles/index.umd.js +6 -6
- app-ng-runtime/components/navigation/popover/esm2020/popover.component.mjs +7 -7
- app-ng-runtime/components/navigation/popover/fesm2015/index.mjs +6 -6
- app-ng-runtime/components/navigation/popover/fesm2015/index.mjs.map +1 -1
- app-ng-runtime/components/navigation/popover/fesm2020/index.mjs +6 -6
- app-ng-runtime/components/navigation/popover/fesm2020/index.mjs.map +1 -1
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/runtime/base/bundles/index.umd.js +2 -0
- app-ng-runtime/runtime/base/esm2020/components/base-page.component.mjs +3 -1
- app-ng-runtime/runtime/base/fesm2015/index.mjs +2 -0
- app-ng-runtime/runtime/base/fesm2015/index.mjs.map +1 -1
- app-ng-runtime/runtime/base/fesm2020/index.mjs +2 -0
- app-ng-runtime/runtime/base/fesm2020/index.mjs.map +1 -1
|
@@ -1212,6 +1212,8 @@ class BasePageComponent extends FragmentMonitor {
|
|
|
1212
1212
|
this.onReady();
|
|
1213
1213
|
this.appManager.notify('pageReady', { 'name': this.pageName, instance: this });
|
|
1214
1214
|
(this.App.onPageReady || noop$1)(this.pageName, this);
|
|
1215
|
+
if (window.top.name !== window.name && this.App.landingPageName === this.pageName)
|
|
1216
|
+
window.top.postMessage({ key: 'onHomepageLoad' }, "*");
|
|
1215
1217
|
}
|
|
1216
1218
|
loadScripts() {
|
|
1217
1219
|
return new Promise((resolve) => {
|