cloud-ide-layout 1.0.286 → 1.0.288
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-BGz76EOB.mjs → cloud-ide-layout-cloud-ide-layout-CZS_uk7L.mjs} +10 -9
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-CZS_uk7L.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DD-5709C.mjs → cloud-ide-layout-dashboard-manager.component-oprkFwPg.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DD-5709C.mjs.map → cloud-ide-layout-dashboard-manager.component-oprkFwPg.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-o3ASGY1C.mjs → cloud-ide-layout-drawer-theme.component-esrMSZuA.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-o3ASGY1C.mjs.map → cloud-ide-layout-drawer-theme.component-esrMSZuA.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-B9fIopIt.mjs → cloud-ide-layout-home-wrapper.component-B5C3j0oT.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-B9fIopIt.mjs.map → cloud-ide-layout-home-wrapper.component-B5C3j0oT.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-BxzavdmZ.mjs → cloud-ide-layout-sidedrawer-notes.component-C6qySl7V.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-BxzavdmZ.mjs.map → cloud-ide-layout-sidedrawer-notes.component-C6qySl7V.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-BGz76EOB.mjs.map +0 -1
|
@@ -4080,14 +4080,15 @@ class CideLytSidebarWrapperComponent {
|
|
|
4080
4080
|
event.stopPropagation();
|
|
4081
4081
|
}
|
|
4082
4082
|
if (menu.syme_path) {
|
|
4083
|
+
// Auto-collapse sidebar immediately when a menu item is clicked
|
|
4084
|
+
// This removes the delay user was experiencing
|
|
4085
|
+
this.isCollapsed.set(true);
|
|
4086
|
+
this.sidebarService.setCollapsedState(true);
|
|
4083
4087
|
// Navigate without reloading the menu - just route navigation
|
|
4084
4088
|
// The menu should not reload unless the module actually changes
|
|
4085
4089
|
this.router.navigate([`/control-panel/${menu.syme_path}`])
|
|
4086
4090
|
.then(() => {
|
|
4087
|
-
|
|
4088
|
-
console.log('🔗 Navigation successful, collapsing sidebar');
|
|
4089
|
-
this.isCollapsed.set(true);
|
|
4090
|
-
this.sidebarService.setCollapsedState(true);
|
|
4091
|
+
console.log('🔗 Navigation successful');
|
|
4091
4092
|
})
|
|
4092
4093
|
.catch(err => {
|
|
4093
4094
|
console.error('Navigation error:', err);
|
|
@@ -5566,8 +5567,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5566
5567
|
}
|
|
5567
5568
|
ngOnInit() {
|
|
5568
5569
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5569
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5570
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5570
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-C6qySl7V.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5571
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-esrMSZuA.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5571
5572
|
}
|
|
5572
5573
|
async loadComponent(configFor) {
|
|
5573
5574
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7292,7 +7293,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7292
7293
|
},
|
|
7293
7294
|
{
|
|
7294
7295
|
path: "home",
|
|
7295
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7296
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-B5C3j0oT.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7296
7297
|
canActivate: [authGuard],
|
|
7297
7298
|
data: {
|
|
7298
7299
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7300,7 +7301,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7300
7301
|
},
|
|
7301
7302
|
{
|
|
7302
7303
|
path: "dashboard-manager",
|
|
7303
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7304
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-oprkFwPg.mjs').then(c => c.DashboardManagerComponent),
|
|
7304
7305
|
canActivate: [authGuard],
|
|
7305
7306
|
data: {
|
|
7306
7307
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -9124,4 +9125,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
9124
9125
|
*/
|
|
9125
9126
|
|
|
9126
9127
|
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 };
|
|
9127
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
9128
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-CZS_uk7L.mjs.map
|