cloud-ide-layout 1.0.142 → 1.0.143
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-kPzrNdq8.mjs → cloud-ide-layout-cloud-ide-layout-ChGVLIdx.mjs} +6 -6
- package/fesm2022/{cloud-ide-layout-cloud-ide-layout-kPzrNdq8.mjs.map → cloud-ide-layout-cloud-ide-layout-ChGVLIdx.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DzI_ZzYo.mjs → cloud-ide-layout-dashboard-manager.component-CexN59ty.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-DzI_ZzYo.mjs.map → cloud-ide-layout-dashboard-manager.component-CexN59ty.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DKtGyOSb.mjs → cloud-ide-layout-drawer-theme.component-CBRIZvx2.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-DKtGyOSb.mjs.map → cloud-ide-layout-drawer-theme.component-CBRIZvx2.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-C8BmpX1i.mjs → cloud-ide-layout-floating-entity-selection.component-CcAdnHFQ.mjs} +17 -6
- package/fesm2022/cloud-ide-layout-floating-entity-selection.component-CcAdnHFQ.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-BglE2JPh.mjs → cloud-ide-layout-home-wrapper.component-B0kKQ3pC.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-BglE2JPh.mjs.map → cloud-ide-layout-home-wrapper.component-B0kKQ3pC.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-BKzulMu8.mjs → cloud-ide-layout-sidedrawer-notes.component-BE7biT8I.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-BKzulMu8.mjs.map → cloud-ide-layout-sidedrawer-notes.component-BE7biT8I.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/package.json +1 -1
- package/fesm2022/cloud-ide-layout-floating-entity-selection.component-C8BmpX1i.mjs.map +0 -1
|
@@ -1379,7 +1379,7 @@ class CideLytFloatingEntitySelectionService {
|
|
|
1379
1379
|
}
|
|
1380
1380
|
try {
|
|
1381
1381
|
// Use relative import to avoid circular dependency
|
|
1382
|
-
const module = await import('./cloud-ide-layout-floating-entity-selection.component-
|
|
1382
|
+
const module = await import('./cloud-ide-layout-floating-entity-selection.component-CcAdnHFQ.mjs');
|
|
1383
1383
|
if (module.CideLytFloatingEntitySelectionComponent) {
|
|
1384
1384
|
this.containerService.registerComponent('entity-selection-header', module.CideLytFloatingEntitySelectionComponent);
|
|
1385
1385
|
console.log('✅ Entity selection component registered successfully');
|
|
@@ -5004,8 +5004,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5004
5004
|
}
|
|
5005
5005
|
ngOnInit() {
|
|
5006
5006
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5007
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5008
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5007
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-BE7biT8I.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5008
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-CBRIZvx2.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5009
5009
|
}
|
|
5010
5010
|
async loadComponent(configFor) {
|
|
5011
5011
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -6697,7 +6697,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6697
6697
|
},
|
|
6698
6698
|
{
|
|
6699
6699
|
path: "home",
|
|
6700
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
6700
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-B0kKQ3pC.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
6701
6701
|
canActivate: [authGuard],
|
|
6702
6702
|
data: {
|
|
6703
6703
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -6705,7 +6705,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6705
6705
|
},
|
|
6706
6706
|
{
|
|
6707
6707
|
path: "dashboard-manager",
|
|
6708
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
6708
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-CexN59ty.mjs').then(c => c.DashboardManagerComponent),
|
|
6709
6709
|
canActivate: [authGuard],
|
|
6710
6710
|
data: {
|
|
6711
6711
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8272,4 +8272,4 @@ var floatingEntityRightsSharing_component = /*#__PURE__*/Object.freeze({
|
|
|
8272
8272
|
*/
|
|
8273
8273
|
|
|
8274
8274
|
export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, NotificationSettingsService as N, RightsService as R, CideLytSidebarService as a, CideLytRequestService as b, CideLytSidedrawerService as c, CideLytThemeService as d, AppStateService as e, CloudIdeLayoutService as f, CloudIdeLayoutComponent as g, CideLytSharedService as h, ComponentContextService as i, layoutControlPannelChildRoutes as j, CustomRouteReuseStrategy 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 };
|
|
8275
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8275
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-ChGVLIdx.mjs.map
|