cloud-ide-layout 1.0.144 → 1.0.146
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-DAMoriNy.mjs → cloud-ide-layout-cloud-ide-layout-JYQBTRrb.mjs} +7 -10
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-JYQBTRrb.mjs.map +1 -0
- package/fesm2022/cloud-ide-layout-dashboard-cards.service-BGaKcq7H.mjs.map +1 -1
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-CLK3GEDE.mjs → cloud-ide-layout-dashboard-manager.component-CpjdIeuX.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-CLK3GEDE.mjs.map → cloud-ide-layout-dashboard-manager.component-CpjdIeuX.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-CXtOrrAi.mjs → cloud-ide-layout-drawer-theme.component-BavBnxPb.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-CXtOrrAi.mjs.map → cloud-ide-layout-drawer-theme.component-BavBnxPb.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-DY5alAWh.mjs → cloud-ide-layout-floating-entity-selection.component-D9xDFZ2U.mjs} +38 -16
- package/fesm2022/cloud-ide-layout-floating-entity-selection.component-D9xDFZ2U.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-home-wrapper.component-CyQ6WbYZ.mjs → cloud-ide-layout-home-wrapper.component-CcZAQSRK.mjs} +66 -18
- package/fesm2022/cloud-ide-layout-home-wrapper.component-CcZAQSRK.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-Dn7UiMOo.mjs → cloud-ide-layout-sidedrawer-notes.component-CfMjTTs9.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-Dn7UiMOo.mjs.map → cloud-ide-layout-sidedrawer-notes.component-CfMjTTs9.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-DAMoriNy.mjs.map +0 -1
- package/fesm2022/cloud-ide-layout-floating-entity-selection.component-DY5alAWh.mjs.map +0 -1
- package/fesm2022/cloud-ide-layout-home-wrapper.component-CyQ6WbYZ.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-D9xDFZ2U.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');
|
|
@@ -3942,9 +3942,6 @@ class CideLytSidebarWrapperComponent {
|
|
|
3942
3942
|
this.loadingMenus.set(true);
|
|
3943
3943
|
this.menuLoadComplete.set(false);
|
|
3944
3944
|
// Fetch menus for the selected module
|
|
3945
|
-
// Include entity ID to get menus/rights as per logged in entity
|
|
3946
|
-
const activeEntity = this.appState.activeEntity();
|
|
3947
|
-
const entityId = activeEntity?._id;
|
|
3948
3945
|
this.sidebarService?.getSidebarMenues({
|
|
3949
3946
|
syme_id: module._id,
|
|
3950
3947
|
sort: 'asc'
|
|
@@ -5004,8 +5001,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5004
5001
|
}
|
|
5005
5002
|
ngOnInit() {
|
|
5006
5003
|
// 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-
|
|
5004
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-CfMjTTs9.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5005
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-BavBnxPb.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5009
5006
|
}
|
|
5010
5007
|
async loadComponent(configFor) {
|
|
5011
5008
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -6697,7 +6694,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6697
6694
|
},
|
|
6698
6695
|
{
|
|
6699
6696
|
path: "home",
|
|
6700
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
6697
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CcZAQSRK.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
6701
6698
|
canActivate: [authGuard],
|
|
6702
6699
|
data: {
|
|
6703
6700
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -6705,7 +6702,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6705
6702
|
},
|
|
6706
6703
|
{
|
|
6707
6704
|
path: "dashboard-manager",
|
|
6708
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
6705
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-CpjdIeuX.mjs').then(c => c.DashboardManagerComponent),
|
|
6709
6706
|
canActivate: [authGuard],
|
|
6710
6707
|
data: {
|
|
6711
6708
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8271,5 +8268,5 @@ var floatingEntityRightsSharing_component = /*#__PURE__*/Object.freeze({
|
|
|
8271
8268
|
* Generated bundle index. Do not edit.
|
|
8272
8269
|
*/
|
|
8273
8270
|
|
|
8274
|
-
export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, NotificationSettingsService as N, RightsService as R, CideLytSidebarService as a,
|
|
8275
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8271
|
+
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, AppStateService as d, CloudIdeLayoutService as e, CloudIdeLayoutComponent as f, CideLytSharedService as g, ComponentContextService as h, layoutControlPannelChildRoutes as i, CustomRouteReuseStrategy as j, CideLytUserStatusService as k, layoutRoutes as l, CacheManagerService as m, CideLytFileManagerService as n, CideLytFloatingEntityRightsSharingComponent as o, processThemeVariable as p, CideLytFloatingEntityRightsSharingService as q, setCSSVariable as s, themeFactory as t };
|
|
8272
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-JYQBTRrb.mjs.map
|