cloud-ide-layout 1.0.201 → 1.0.203
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-DHW_nlcO.mjs → cloud-ide-layout-cloud-ide-layout-BvFZVSjZ.mjs} +13 -6
- package/fesm2022/{cloud-ide-layout-cloud-ide-layout-DHW_nlcO.mjs.map → cloud-ide-layout-cloud-ide-layout-BvFZVSjZ.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-LiWvRKm-.mjs → cloud-ide-layout-dashboard-manager.component-CYS-8fLf.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-LiWvRKm-.mjs.map → cloud-ide-layout-dashboard-manager.component-CYS-8fLf.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-Bbdpy9Aq.mjs → cloud-ide-layout-drawer-theme.component-XFb3tGBD.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-Bbdpy9Aq.mjs.map → cloud-ide-layout-drawer-theme.component-XFb3tGBD.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-DD0AJBQY.mjs → cloud-ide-layout-home-wrapper.component-w9Okruwd.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-DD0AJBQY.mjs.map → cloud-ide-layout-home-wrapper.component-w9Okruwd.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-C0PZLwXJ.mjs → cloud-ide-layout-sidedrawer-notes.component-CCiOXRJJ.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-C0PZLwXJ.mjs.map → cloud-ide-layout-sidedrawer-notes.component-CCiOXRJJ.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5485,8 +5485,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5485
5485
|
}
|
|
5486
5486
|
ngOnInit() {
|
|
5487
5487
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5488
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5489
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5488
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-CCiOXRJJ.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5489
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-XFb3tGBD.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5490
5490
|
}
|
|
5491
5491
|
async loadComponent(configFor) {
|
|
5492
5492
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -6919,12 +6919,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
6919
6919
|
*/
|
|
6920
6920
|
class RightsService {
|
|
6921
6921
|
sharedService = inject(CideLytSharedService);
|
|
6922
|
-
|
|
6922
|
+
appStateService = inject(AppStateService);
|
|
6923
6923
|
// Current page code signal
|
|
6924
6924
|
currentPageCode = signal('', ...(ngDevMode ? [{ debugName: "currentPageCode" }] : []));
|
|
6925
6925
|
// Separate signal for rights-only data (when fetched via rights-only endpoint)
|
|
6926
6926
|
rightsOnlyCache = signal({}, ...(ngDevMode ? [{ debugName: "rightsOnlyCache" }] : []));
|
|
6927
6927
|
constructor() {
|
|
6928
|
+
// Listen for entity changes and clear rights cache
|
|
6929
|
+
this.appStateService.registerEntityChangeHandler(() => {
|
|
6930
|
+
console.log('🔄 RightsService: Entity changed, clearing rights cache');
|
|
6931
|
+
this.rightsOnlyCache.set({});
|
|
6932
|
+
// We also reset current page code to force effect to re-run if needed
|
|
6933
|
+
// this.currentPageCode.set('');
|
|
6934
|
+
});
|
|
6928
6935
|
// Auto-fetch rights when page code changes and rights are not loaded
|
|
6929
6936
|
effect(() => {
|
|
6930
6937
|
const pageCode = this.currentPageCode();
|
|
@@ -7178,7 +7185,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7178
7185
|
},
|
|
7179
7186
|
{
|
|
7180
7187
|
path: "home",
|
|
7181
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
7188
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-w9Okruwd.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
7182
7189
|
canActivate: [authGuard],
|
|
7183
7190
|
data: {
|
|
7184
7191
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -7186,7 +7193,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
7186
7193
|
},
|
|
7187
7194
|
{
|
|
7188
7195
|
path: "dashboard-manager",
|
|
7189
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
7196
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-CYS-8fLf.mjs').then(c => c.DashboardManagerComponent),
|
|
7190
7197
|
canActivate: [authGuard],
|
|
7191
7198
|
data: {
|
|
7192
7199
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -9010,4 +9017,4 @@ var floatingEntitySelection_component = /*#__PURE__*/Object.freeze({
|
|
|
9010
9017
|
*/
|
|
9011
9018
|
|
|
9012
9019
|
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 };
|
|
9013
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
9020
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-BvFZVSjZ.mjs.map
|