cloud-ide-layout 1.0.297 → 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.
- package/fesm2022/{cloud-ide-layout-cloud-ide-layout-DgwU-sCr.mjs → cloud-ide-layout-cloud-ide-layout-HmeFdi-u.mjs} +11 -6
- package/fesm2022/{cloud-ide-layout-cloud-ide-layout-DgwU-sCr.mjs.map → cloud-ide-layout-cloud-ide-layout-HmeFdi-u.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout-dashboard-manager.component-KTWusuWF.mjs +706 -0
- package/fesm2022/cloud-ide-layout-dashboard-manager.component-KTWusuWF.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-BWSMDvLy.mjs → cloud-ide-layout-drawer-theme.component-pfhoTzJt.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-BWSMDvLy.mjs.map → cloud-ide-layout-drawer-theme.component-pfhoTzJt.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-CH7LlO1x.mjs → cloud-ide-layout-home-wrapper.component-DyFnB93U.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-CH7LlO1x.mjs.map → cloud-ide-layout-home-wrapper.component-DyFnB93U.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-DVj6eU3V.mjs → cloud-ide-layout-sidedrawer-notes.component-Sb7czuvE.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-DVj6eU3V.mjs.map → cloud-ide-layout-sidedrawer-notes.component-Sb7czuvE.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/fesm2022/cloud-ide-layout-dashboard-manager.component-CHthRoQj.mjs +0 -653
- package/fesm2022/cloud-ide-layout-dashboard-manager.component-CHthRoQj.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-
|
|
5572
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
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-
|
|
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-
|
|
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-
|
|
9136
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-HmeFdi-u.mjs.map
|