cloud-ide-layout 1.0.195 → 1.0.196
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-Bg2j0XfT.mjs → cloud-ide-layout-cloud-ide-layout-DNJnD_Vr.mjs} +16 -5
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-DNJnD_Vr.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DP7G62qH.mjs → cloud-ide-layout-dashboard-manager.component-BC7_konM.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DP7G62qH.mjs.map → cloud-ide-layout-dashboard-manager.component-BC7_konM.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component--ZkrhILT.mjs → cloud-ide-layout-drawer-theme.component-kfMpJ8HO.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component--ZkrhILT.mjs.map → cloud-ide-layout-drawer-theme.component-kfMpJ8HO.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-CY567Tsp.mjs → cloud-ide-layout-home-wrapper.component-Bcw1UvWD.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-CY567Tsp.mjs.map → cloud-ide-layout-home-wrapper.component-Bcw1UvWD.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-HMa0q-AC.mjs → cloud-ide-layout-sidedrawer-notes.component-i21oz3ul.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-HMa0q-AC.mjs.map → cloud-ide-layout-sidedrawer-notes.component-i21oz3ul.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-Bg2j0XfT.mjs.map +0 -1
|
@@ -5154,6 +5154,17 @@ class CideLytRequestService {
|
|
|
5154
5154
|
if (pathKeyWithoutParams !== pathKey) {
|
|
5155
5155
|
this.routeReuseStrategy.clearStoredRoute(pathKeyWithoutParams);
|
|
5156
5156
|
}
|
|
5157
|
+
// FUZZY MATCHING: Clear any stored route that starts with our route path
|
|
5158
|
+
const fuzzyMatches = allKeys.filter(key => key.startsWith(pathKey) || key.startsWith(pathKeyWithoutParams) ||
|
|
5159
|
+
pathKey.startsWith(key) || pathKeyWithoutParams.startsWith(key));
|
|
5160
|
+
if (fuzzyMatches.length > 0) {
|
|
5161
|
+
console.log('🎯 [CLOSE TAB] Found fuzzy matches:', fuzzyMatches);
|
|
5162
|
+
fuzzyMatches.forEach(key => {
|
|
5163
|
+
this.routeReuseStrategy.clearStoredRoute(key);
|
|
5164
|
+
});
|
|
5165
|
+
}
|
|
5166
|
+
const remainingKeys = this.routeReuseStrategy.getAllStoredRouteKeys();
|
|
5167
|
+
console.log('📋 [CLOSE TAB] Remaining after clearing:', remainingKeys);
|
|
5157
5168
|
// Force a route refresh to ensure clean component state
|
|
5158
5169
|
// This prevents old data from persisting when the same route is reopened
|
|
5159
5170
|
console.log(`🧹 REQUEST SERVICE: Cleared stored route for ${pathKey} and destroyed component instance`);
|
|
@@ -5406,8 +5417,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5406
5417
|
}
|
|
5407
5418
|
ngOnInit() {
|
|
5408
5419
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5409
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5410
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component
|
|
5420
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-i21oz3ul.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5421
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-kfMpJ8HO.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5411
5422
|
}
|
|
5412
5423
|
async loadComponent(configFor) {
|
|
5413
5424
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -7099,7 +7110,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7099
7110
|
},
|
|
7100
7111
|
{
|
|
7101
7112
|
path: "home",
|
|
7102
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7113
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-Bcw1UvWD.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7103
7114
|
canActivate: [authGuard],
|
|
7104
7115
|
data: {
|
|
7105
7116
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7107,7 +7118,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7107
7118
|
},
|
|
7108
7119
|
{
|
|
7109
7120
|
path: "dashboard-manager",
|
|
7110
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7121
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-BC7_konM.mjs').then(c => c.DashboardManagerComponent),
|
|
7111
7122
|
canActivate: [authGuard],
|
|
7112
7123
|
data: {
|
|
7113
7124
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8931,4 +8942,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
8931
8942
|
*/
|
|
8932
8943
|
|
|
8933
8944
|
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 };
|
|
8934
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8945
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-DNJnD_Vr.mjs.map
|