cloud-ide-layout 1.0.11 → 1.0.12
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/fesm2022/{cloud-ide-layout-cloud-ide-layout-CQJB93Rs.mjs → cloud-ide-layout-cloud-ide-layout-DA_1fUfr.mjs} +8 -4
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-DA_1fUfr.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DBnbJVq_.mjs → cloud-ide-layout-drawer-theme.component-8QZ9670v.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DBnbJVq_.mjs.map → cloud-ide-layout-drawer-theme.component-8QZ9670v.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-jSCIv-3f.mjs → cloud-ide-layout-home-wrapper.component-CvIiZmmm.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-jSCIv-3f.mjs.map → cloud-ide-layout-home-wrapper.component-CvIiZmmm.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-5RDOJLKd.mjs → cloud-ide-layout-sidedrawer-notes.component-Cl4Ls2Ps.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-5RDOJLKd.mjs.map → cloud-ide-layout-sidedrawer-notes.component-Cl4Ls2Ps.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/package.json +1 -1
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-CQJB93Rs.mjs.map +0 -1
|
@@ -752,6 +752,10 @@ class CideLytSharedService {
|
|
|
752
752
|
*/
|
|
753
753
|
loadPageData(body, forceRefresh = false, customTTL = this.DEFAULT_CACHE_TTL) {
|
|
754
754
|
const pageCode = body.sypg_page_code?.toString() || '';
|
|
755
|
+
const sytm_entity_id_syen = body.sytm_entity_id_syen?.toString() || this.appState.getActiveEntityId();
|
|
756
|
+
if (!body.sytm_entity_id_syen) {
|
|
757
|
+
body.sytm_entity_id_syen = sytm_entity_id_syen;
|
|
758
|
+
}
|
|
755
759
|
if (!pageCode) {
|
|
756
760
|
return throwError(() => new Error('Page code is required'));
|
|
757
761
|
}
|
|
@@ -2400,8 +2404,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
2400
2404
|
}
|
|
2401
2405
|
ngOnInit() {
|
|
2402
2406
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
2403
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
2404
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
2407
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-Cl4Ls2Ps.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
2408
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-8QZ9670v.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
2405
2409
|
}
|
|
2406
2410
|
async loadComponent(configFor) {
|
|
2407
2411
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -2773,7 +2777,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
2773
2777
|
},
|
|
2774
2778
|
{
|
|
2775
2779
|
path: "home",
|
|
2776
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
2780
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CvIiZmmm.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
2777
2781
|
data: {
|
|
2778
2782
|
reuseTab: true, // For CustomRouteReuseStrategy
|
|
2779
2783
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -3047,4 +3051,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
|
|
|
3047
3051
|
*/
|
|
3048
3052
|
|
|
3049
3053
|
export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, CideLytSidebarService as a, CideLytRequestService as b, CideLytSidedrawerService as c, CideLytThemeService as d, CloudIdeLayoutService as e, CloudIdeLayoutComponent as f, CideLytSharedService as g, layoutControlPannelChildRoutes as h, CustomRouteReuseStrategy as i, AppStateService as j, CideLytUserStatusService as k, layoutRoutes as l, CacheManagerService as m, processThemeVariable as p, setCSSVariable as s, themeFactory as t };
|
|
3050
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
3054
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-DA_1fUfr.mjs.map
|