cloud-ide-layout 1.0.188 → 1.0.190
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-uA8lWEih.mjs → cloud-ide-layout-cloud-ide-layout-Dh8C_GOh.mjs} +13 -5
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-Dh8C_GOh.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DRi08LTz.mjs → cloud-ide-layout-dashboard-manager.component-Doa7j6EL.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DRi08LTz.mjs.map → cloud-ide-layout-dashboard-manager.component-Doa7j6EL.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-BfbYAsrL.mjs → cloud-ide-layout-drawer-theme.component-3Mhdb_MJ.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-BfbYAsrL.mjs.map → cloud-ide-layout-drawer-theme.component-3Mhdb_MJ.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-35VCCHPu.mjs → cloud-ide-layout-home-wrapper.component-CpFBT11P.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-35VCCHPu.mjs.map → cloud-ide-layout-home-wrapper.component-CpFBT11P.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-fmRM4jbS.mjs → cloud-ide-layout-sidedrawer-notes.component-CBcv7F6Y.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-fmRM4jbS.mjs.map → cloud-ide-layout-sidedrawer-notes.component-CBcv7F6Y.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-uA8lWEih.mjs.map +0 -1
|
@@ -4838,6 +4838,10 @@ class CustomRouteReuseStrategy {
|
|
|
4838
4838
|
getStoredRoutesCount() {
|
|
4839
4839
|
return Object.keys(this.storedRoutes).length;
|
|
4840
4840
|
}
|
|
4841
|
+
// Gets all stored route keys (useful for debugging)
|
|
4842
|
+
getAllStoredRouteKeys() {
|
|
4843
|
+
return Object.keys(this.storedRoutes);
|
|
4844
|
+
}
|
|
4841
4845
|
}
|
|
4842
4846
|
|
|
4843
4847
|
/**
|
|
@@ -5118,6 +5122,10 @@ class CideLytRequestService {
|
|
|
5118
5122
|
this.tabStateService.removeTab(id);
|
|
5119
5123
|
// Clear stored route from strategy and ensure proper component cleanup
|
|
5120
5124
|
if (this.routeReuseStrategy instanceof CustomRouteReuseStrategy) {
|
|
5125
|
+
// First, show what routes are currently stored
|
|
5126
|
+
const allKeys = this.routeReuseStrategy.getAllStoredRouteKeys();
|
|
5127
|
+
console.log('🔍 [CLOSE TAB] All stored route keys:', allKeys);
|
|
5128
|
+
console.log('🔍 [CLOSE TAB] Tab to close - route:', tabToClose.route, 'params:', tabToClose.params);
|
|
5121
5129
|
// Generate pathKey in the same format as CustomRouteReuseStrategy.getPathKey()
|
|
5122
5130
|
// Remove leading slash to match the format used by getPathKey
|
|
5123
5131
|
let pathKey = tabToClose.route.startsWith('/') ? tabToClose.route.substring(1) : tabToClose.route;
|
|
@@ -5390,8 +5398,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5390
5398
|
}
|
|
5391
5399
|
ngOnInit() {
|
|
5392
5400
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5393
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5394
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5401
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-CBcv7F6Y.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5402
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-3Mhdb_MJ.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5395
5403
|
}
|
|
5396
5404
|
async loadComponent(configFor) {
|
|
5397
5405
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7083,7 +7091,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7083
7091
|
},
|
|
7084
7092
|
{
|
|
7085
7093
|
path: "home",
|
|
7086
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7094
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CpFBT11P.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7087
7095
|
canActivate: [authGuard],
|
|
7088
7096
|
data: {
|
|
7089
7097
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7091,7 +7099,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7091
7099
|
},
|
|
7092
7100
|
{
|
|
7093
7101
|
path: "dashboard-manager",
|
|
7094
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7102
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-Doa7j6EL.mjs').then(c => c.DashboardManagerComponent),
|
|
7095
7103
|
canActivate: [authGuard],
|
|
7096
7104
|
data: {
|
|
7097
7105
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8915,4 +8923,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
8915
8923
|
*/
|
|
8916
8924
|
|
|
8917
8925
|
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 };
|
|
8918
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8926
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-Dh8C_GOh.mjs.map
|