cloud-ide-layout 1.0.144 → 1.0.147

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.
Files changed (18) hide show
  1. package/fesm2022/{cloud-ide-layout-cloud-ide-layout-DAMoriNy.mjs → cloud-ide-layout-cloud-ide-layout-C5PGNAll.mjs} +10 -11
  2. package/fesm2022/cloud-ide-layout-cloud-ide-layout-C5PGNAll.mjs.map +1 -0
  3. package/fesm2022/cloud-ide-layout-dashboard-cards.service-BGaKcq7H.mjs.map +1 -1
  4. package/fesm2022/{cloud-ide-layout-dashboard-manager.component-CLK3GEDE.mjs → cloud-ide-layout-dashboard-manager.component-C07O86cW.mjs} +2 -2
  5. package/fesm2022/{cloud-ide-layout-dashboard-manager.component-CLK3GEDE.mjs.map → cloud-ide-layout-dashboard-manager.component-C07O86cW.mjs.map} +1 -1
  6. package/fesm2022/{cloud-ide-layout-drawer-theme.component-CXtOrrAi.mjs → cloud-ide-layout-drawer-theme.component-BFk0pHD9.mjs} +2 -2
  7. package/fesm2022/{cloud-ide-layout-drawer-theme.component-CXtOrrAi.mjs.map → cloud-ide-layout-drawer-theme.component-BFk0pHD9.mjs.map} +1 -1
  8. package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-DY5alAWh.mjs → cloud-ide-layout-floating-entity-selection.component-DJhoaSJ7.mjs} +38 -16
  9. package/fesm2022/cloud-ide-layout-floating-entity-selection.component-DJhoaSJ7.mjs.map +1 -0
  10. package/fesm2022/{cloud-ide-layout-home-wrapper.component-CyQ6WbYZ.mjs → cloud-ide-layout-home-wrapper.component-DslMllBv.mjs} +66 -18
  11. package/fesm2022/cloud-ide-layout-home-wrapper.component-DslMllBv.mjs.map +1 -0
  12. package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-Dn7UiMOo.mjs → cloud-ide-layout-sidedrawer-notes.component-DaSO2tlP.mjs} +2 -2
  13. package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-Dn7UiMOo.mjs.map → cloud-ide-layout-sidedrawer-notes.component-DaSO2tlP.mjs.map} +1 -1
  14. package/fesm2022/cloud-ide-layout.mjs +1 -1
  15. package/package.json +1 -1
  16. package/fesm2022/cloud-ide-layout-cloud-ide-layout-DAMoriNy.mjs.map +0 -1
  17. package/fesm2022/cloud-ide-layout-floating-entity-selection.component-DY5alAWh.mjs.map +0 -1
  18. package/fesm2022/cloud-ide-layout-home-wrapper.component-CyQ6WbYZ.mjs.map +0 -1
@@ -1379,7 +1379,7 @@ class CideLytFloatingEntitySelectionService {
1379
1379
  }
1380
1380
  try {
1381
1381
  // Use relative import to avoid circular dependency
1382
- const module = await import('./cloud-ide-layout-floating-entity-selection.component-DY5alAWh.mjs');
1382
+ const module = await import('./cloud-ide-layout-floating-entity-selection.component-DJhoaSJ7.mjs');
1383
1383
  if (module.CideLytFloatingEntitySelectionComponent) {
1384
1384
  this.containerService.registerComponent('entity-selection-header', module.CideLytFloatingEntitySelectionComponent);
1385
1385
  console.log('✅ Entity selection component registered successfully');
@@ -3390,7 +3390,9 @@ class CideLytHeaderWrapperComponent {
3390
3390
  console.error('Cannot navigate to profile: User ID not found');
3391
3391
  return;
3392
3392
  }
3393
- this.router.navigate(['/user-master/edit', currentUserId]);
3393
+ // Encode user ID using generateStringFromObject (same pattern as user-list component)
3394
+ const queryData = generateStringFromObject({ user_id: currentUserId });
3395
+ this.router.navigate(['/control-panel/user-master/edit', queryData]);
3394
3396
  }
3395
3397
  /**
3396
3398
  * Handle more options dropdown item clicks (DEPRECATED)
@@ -3942,9 +3944,6 @@ class CideLytSidebarWrapperComponent {
3942
3944
  this.loadingMenus.set(true);
3943
3945
  this.menuLoadComplete.set(false);
3944
3946
  // Fetch menus for the selected module
3945
- // Include entity ID to get menus/rights as per logged in entity
3946
- const activeEntity = this.appState.activeEntity();
3947
- const entityId = activeEntity?._id;
3948
3947
  this.sidebarService?.getSidebarMenues({
3949
3948
  syme_id: module._id,
3950
3949
  sort: 'asc'
@@ -5004,8 +5003,8 @@ class CideLytSidedrawerWrapperComponent {
5004
5003
  }
5005
5004
  ngOnInit() {
5006
5005
  // Initialize the component map (You'd likely populate this from a config or service)
5007
- this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-Dn7UiMOo.mjs').then(m => m.CideLytSidedrawerNotesComponent);
5008
- this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-CXtOrrAi.mjs').then(m => m.CideLytDrawerThemeComponent);
5006
+ this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-DaSO2tlP.mjs').then(m => m.CideLytSidedrawerNotesComponent);
5007
+ this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-BFk0pHD9.mjs').then(m => m.CideLytDrawerThemeComponent);
5009
5008
  }
5010
5009
  async loadComponent(configFor) {
5011
5010
  console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
@@ -6697,7 +6696,7 @@ const layoutControlPannelChildRoutes = [{
6697
6696
  },
6698
6697
  {
6699
6698
  path: "home",
6700
- loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CyQ6WbYZ.mjs').then(c => c.CideLytHomeWrapperComponent),
6699
+ loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-DslMllBv.mjs').then(c => c.CideLytHomeWrapperComponent),
6701
6700
  canActivate: [authGuard],
6702
6701
  data: {
6703
6702
  sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
@@ -6705,7 +6704,7 @@ const layoutControlPannelChildRoutes = [{
6705
6704
  },
6706
6705
  {
6707
6706
  path: "dashboard-manager",
6708
- loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-CLK3GEDE.mjs').then(c => c.DashboardManagerComponent),
6707
+ loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-C07O86cW.mjs').then(c => c.DashboardManagerComponent),
6709
6708
  canActivate: [authGuard],
6710
6709
  data: {
6711
6710
  sypg_page_code: "cide_lyt_dashboard_manager"
@@ -8271,5 +8270,5 @@ var floatingEntityRightsSharing_component = /*#__PURE__*/Object.freeze({
8271
8270
  * Generated bundle index. Do not edit.
8272
8271
  */
8273
8272
 
8274
- export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, NotificationSettingsService as N, RightsService as R, CideLytSidebarService as a, CideLytRequestService as b, CideLytSidedrawerService as c, CideLytThemeService as d, AppStateService as e, CloudIdeLayoutService as f, CloudIdeLayoutComponent as g, CideLytSharedService as h, ComponentContextService as i, layoutControlPannelChildRoutes as j, CustomRouteReuseStrategy as k, layoutRoutes as l, CideLytUserStatusService as m, CacheManagerService as n, CideLytFileManagerService as o, processThemeVariable as p, CideLytFloatingEntityRightsSharingComponent as q, CideLytFloatingEntityRightsSharingService as r, setCSSVariable as s, themeFactory as t };
8275
- //# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-DAMoriNy.mjs.map
8273
+ export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, NotificationSettingsService as N, RightsService as R, CideLytSidebarService as a, CideLytSidedrawerService as b, CideLytThemeService as c, AppStateService as d, CloudIdeLayoutService as e, CloudIdeLayoutComponent as f, CideLytSharedService as g, ComponentContextService as h, layoutControlPannelChildRoutes as i, CustomRouteReuseStrategy as j, CideLytUserStatusService as k, layoutRoutes as l, CacheManagerService as m, CideLytFileManagerService as n, CideLytFloatingEntityRightsSharingComponent as o, processThemeVariable as p, CideLytFloatingEntityRightsSharingService as q, setCSSVariable as s, themeFactory as t };
8274
+ //# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-C5PGNAll.mjs.map