cloud-ide-layout 1.0.295 → 1.0.299

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 (16) hide show
  1. package/fesm2022/{cloud-ide-layout-cloud-ide-layout-CRx1Eh8n.mjs → cloud-ide-layout-cloud-ide-layout-HmeFdi-u.mjs} +11 -6
  2. package/fesm2022/{cloud-ide-layout-cloud-ide-layout-CRx1Eh8n.mjs.map → cloud-ide-layout-cloud-ide-layout-HmeFdi-u.mjs.map} +1 -1
  3. package/fesm2022/cloud-ide-layout-dashboard-manager.component-KTWusuWF.mjs +706 -0
  4. package/fesm2022/cloud-ide-layout-dashboard-manager.component-KTWusuWF.mjs.map +1 -0
  5. package/fesm2022/{cloud-ide-layout-drawer-theme.component-DoTjS0j1.mjs → cloud-ide-layout-drawer-theme.component-pfhoTzJt.mjs} +2 -2
  6. package/fesm2022/{cloud-ide-layout-drawer-theme.component-DoTjS0j1.mjs.map → cloud-ide-layout-drawer-theme.component-pfhoTzJt.mjs.map} +1 -1
  7. package/fesm2022/{cloud-ide-layout-home-wrapper.component-d_8bYcPS.mjs → cloud-ide-layout-home-wrapper.component-DyFnB93U.mjs} +22 -6
  8. package/fesm2022/cloud-ide-layout-home-wrapper.component-DyFnB93U.mjs.map +1 -0
  9. package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-Dx9Rxj7n.mjs → cloud-ide-layout-sidedrawer-notes.component-Sb7czuvE.mjs} +2 -2
  10. package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-Dx9Rxj7n.mjs.map → cloud-ide-layout-sidedrawer-notes.component-Sb7czuvE.mjs.map} +1 -1
  11. package/fesm2022/cloud-ide-layout.mjs +1 -1
  12. package/index.d.ts +1 -1
  13. package/package.json +1 -1
  14. package/fesm2022/cloud-ide-layout-dashboard-manager.component-geI-WzBz.mjs +0 -653
  15. package/fesm2022/cloud-ide-layout-dashboard-manager.component-geI-WzBz.mjs.map +0 -1
  16. package/fesm2022/cloud-ide-layout-home-wrapper.component-d_8bYcPS.mjs.map +0 -1
@@ -5568,8 +5568,8 @@ class CideLytSidedrawerWrapperComponent {
5568
5568
  }
5569
5569
  ngOnInit() {
5570
5570
  // Initialize the component map (You'd likely populate this from a config or service)
5571
- this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-Dx9Rxj7n.mjs').then(m => m.CideLytSidedrawerNotesComponent);
5572
- this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-DoTjS0j1.mjs').then(m => m.CideLytDrawerThemeComponent);
5571
+ this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-Sb7czuvE.mjs').then(m => m.CideLytSidedrawerNotesComponent);
5572
+ this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-pfhoTzJt.mjs').then(m => m.CideLytDrawerThemeComponent);
5573
5573
  }
5574
5574
  async loadComponent(configFor) {
5575
5575
  console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
@@ -7108,6 +7108,11 @@ class RightsService {
7108
7108
  * @param pageCode - Page code to load rights for
7109
7109
  */
7110
7110
  loadRightsOnly(pageCode) {
7111
+ // Check if already loading to prevent duplicate requests
7112
+ if (this.loadingRights()[pageCode]) {
7113
+ console.log('🔐 RightsService: Rights load skipped - already in progress for page:', pageCode);
7114
+ return;
7115
+ }
7111
7116
  const loading = this.loadingRights();
7112
7117
  this.loadingRights.set({ ...loading, [pageCode]: true });
7113
7118
  this.sharedService.getPageRights(pageCode).subscribe({
@@ -7150,7 +7155,7 @@ class RightsService {
7150
7155
  const rights = this.getCurrentRights();
7151
7156
  const right = rights[rightCode];
7152
7157
  const hasAccess = right?.allowed === true;
7153
- console.log(`🔐 Checking right '${rightCode}' for page '${this.currentPageCode()}':`, hasAccess);
7158
+ // console.log(`🔐 Checking right '${rightCode}' for page '${this.currentPageCode()}':`, hasAccess);
7154
7159
  return hasAccess;
7155
7160
  }
7156
7161
  /**
@@ -7294,7 +7299,7 @@ const layoutControlPannelChildRoutes = [{
7294
7299
  },
7295
7300
  {
7296
7301
  path: "home",
7297
- loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-d_8bYcPS.mjs').then(c => c.CideLytHomeWrapperComponent),
7302
+ loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-DyFnB93U.mjs').then(c => c.CideLytHomeWrapperComponent),
7298
7303
  canActivate: [authGuard],
7299
7304
  data: {
7300
7305
  sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
@@ -7302,7 +7307,7 @@ const layoutControlPannelChildRoutes = [{
7302
7307
  },
7303
7308
  {
7304
7309
  path: "dashboard-manager",
7305
- loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-geI-WzBz.mjs').then(c => c.DashboardManagerComponent),
7310
+ loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-KTWusuWF.mjs').then(c => c.DashboardManagerComponent),
7306
7311
  canActivate: [authGuard],
7307
7312
  data: {
7308
7313
  sypg_page_code: "cide_lyt_dashboard_manager"
@@ -9128,4 +9133,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
9128
9133
  */
9129
9134
 
9130
9135
  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, CloudIdeLayoutService as d, CloudIdeLayoutComponent as e, CideLytSharedService as f, ComponentContextService as g, layoutControlPannelChildRoutes as h, CustomRouteReuseStrategy as i, CideLytRequestService as j, AppStateService 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, CideLytFloatingEntitySelectionComponent as u, CideLytFloatingEntitySelectionService as v };
9131
- //# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-CRx1Eh8n.mjs.map
9136
+ //# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-HmeFdi-u.mjs.map