cloud-ide-layout 1.0.180 → 1.0.182
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-W4WjBty3.mjs → cloud-ide-layout-cloud-ide-layout-l6s-ph1q.mjs} +9 -14
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-l6s-ph1q.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BVtdt1TW.mjs → cloud-ide-layout-dashboard-manager.component-BFmWPx5q.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BVtdt1TW.mjs.map → cloud-ide-layout-dashboard-manager.component-BFmWPx5q.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DywE01AM.mjs → cloud-ide-layout-drawer-theme.component-HsFPpuk1.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DywE01AM.mjs.map → cloud-ide-layout-drawer-theme.component-HsFPpuk1.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-DTKumUOV.mjs → cloud-ide-layout-home-wrapper.component-C9F3Ph0U.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-DTKumUOV.mjs.map → cloud-ide-layout-home-wrapper.component-C9F3Ph0U.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-D4zenTjI.mjs → cloud-ide-layout-sidedrawer-notes.component-9ZGNNWMi.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-D4zenTjI.mjs.map → cloud-ide-layout-sidedrawer-notes.component-9ZGNNWMi.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-W4WjBty3.mjs.map +0 -1
|
@@ -5158,15 +5158,10 @@ class CideLytRequestService {
|
|
|
5158
5158
|
console.warn('⚠️ Tab not found:', tabId);
|
|
5159
5159
|
return;
|
|
5160
5160
|
}
|
|
5161
|
-
//
|
|
5162
|
-
//
|
|
5163
|
-
//
|
|
5164
|
-
|
|
5165
|
-
if (this.routeReuseStrategy instanceof CustomRouteReuseStrategy) {
|
|
5166
|
-
// Use the new robust clearRoute method
|
|
5167
|
-
this.routeReuseStrategy.clearRoute(tabToActivate.route, tabToActivate.params);
|
|
5168
|
-
console.log(`🔄 REQUEST SERVICE: Cleared cached route for ${tabToActivate.title} before activating tab`);
|
|
5169
|
-
}
|
|
5161
|
+
// NOTE: Removed route clearing on activation.
|
|
5162
|
+
// We want to reuse the stored component state when switching tabs.
|
|
5163
|
+
// Clearing is only done when EXPLICITLY closing a tab or force refreshing.
|
|
5164
|
+
console.log(`🔄 REQUEST SERVICE: Resuming tab ${tabToActivate.title}`);
|
|
5170
5165
|
// Update tabs: deactivate all, then activate the target
|
|
5171
5166
|
const updatedTabs = tabs.map(tab => ({
|
|
5172
5167
|
...tab,
|
|
@@ -5417,8 +5412,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5417
5412
|
}
|
|
5418
5413
|
ngOnInit() {
|
|
5419
5414
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5420
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5421
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5415
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-9ZGNNWMi.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5416
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-HsFPpuk1.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5422
5417
|
}
|
|
5423
5418
|
async loadComponent(configFor) {
|
|
5424
5419
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7110,7 +7105,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7110
7105
|
},
|
|
7111
7106
|
{
|
|
7112
7107
|
path: "home",
|
|
7113
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7108
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-C9F3Ph0U.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7114
7109
|
canActivate: [authGuard],
|
|
7115
7110
|
data: {
|
|
7116
7111
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7118,7 +7113,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7118
7113
|
},
|
|
7119
7114
|
{
|
|
7120
7115
|
path: "dashboard-manager",
|
|
7121
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7116
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-BFmWPx5q.mjs').then(c => c.DashboardManagerComponent),
|
|
7122
7117
|
canActivate: [authGuard],
|
|
7123
7118
|
data: {
|
|
7124
7119
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8942,4 +8937,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
8942
8937
|
*/
|
|
8943
8938
|
|
|
8944
8939
|
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, AppStateService as j, CideLytUserStatusService as k, layoutRoutes as l, CacheManagerService as m, CideLytFileManagerService as n, CideLytFloatingEntityRightsSharingComponent as o, processThemeVariable as p, CideLytFloatingEntityRightsSharingService as q, CideLytFloatingEntitySelectionComponent as r, setCSSVariable as s, themeFactory as t, CideLytFloatingEntitySelectionService as u };
|
|
8945
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8940
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-l6s-ph1q.mjs.map
|