cloud-ide-layout 1.0.129 → 1.0.130
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-BTybdTmB.mjs → cloud-ide-layout-cloud-ide-layout-BbNpkUNq.mjs} +8 -7
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-BbNpkUNq.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BBLAswxu.mjs → cloud-ide-layout-dashboard-manager.component-Cet1zc7W.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BBLAswxu.mjs.map → cloud-ide-layout-dashboard-manager.component-Cet1zc7W.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-ButcOElJ.mjs → cloud-ide-layout-drawer-theme.component-Gdug6J1K.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-ButcOElJ.mjs.map → cloud-ide-layout-drawer-theme.component-Gdug6J1K.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-CXj1uIaR.mjs → cloud-ide-layout-floating-entity-selection.component-C6e-ATZ_.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-CXj1uIaR.mjs.map → cloud-ide-layout-floating-entity-selection.component-C6e-ATZ_.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout-home-wrapper.component-CeuB9Nsb.mjs +272 -0
- package/fesm2022/cloud-ide-layout-home-wrapper.component-CeuB9Nsb.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-DMnaN5vv.mjs → cloud-ide-layout-sidedrawer-notes.component-DMlbYKSS.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-DMnaN5vv.mjs.map → cloud-ide-layout-sidedrawer-notes.component-DMlbYKSS.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-BTybdTmB.mjs.map +0 -1
- package/fesm2022/cloud-ide-layout-home-wrapper.component-B-sD0ic5.mjs +0 -272
- package/fesm2022/cloud-ide-layout-home-wrapper.component-B-sD0ic5.mjs.map +0 -1
|
@@ -7,7 +7,7 @@ import { map, filter, tap, catchError, shareReplay, take, distinctUntilChanged }
|
|
|
7
7
|
import * as i2 from '@angular/router';
|
|
8
8
|
import { Router, NavigationEnd, RouteReuseStrategy, RouterModule, ActivatedRoute } from '@angular/router';
|
|
9
9
|
import { Title, DomSanitizer } from '@angular/platform-browser';
|
|
10
|
-
import { CideEleFileManagerService, CideElementsService, CideEleFloatingContainerService, NotificationService, CideIconComponent, CideEleButtonComponent, CideInputComponent, CideSelectComponent, CideThemeService, WebSocketNotificationService, NotificationApiService, CideEleDropdownComponent, CideEleFileImageDirective, CideEleResizerDirective, TooltipDirective, CideSpinnerComponent, CideEleSkeletonLoaderComponent, KeyboardShortcutService, FloatingContainerShortcutsService, CideEleFloatingContainerManagerComponent, CideEleGlobalNotificationsComponent, CideEleBreadcrumbComponent } from 'cloud-ide-element';
|
|
10
|
+
import { CideEleFileManagerService, CideElementsService, CideEleFloatingContainerService, NotificationService, CideIconComponent, CideEleButtonComponent, CideInputComponent, CideSelectComponent, CideThemeService, ConfirmationService, WebSocketNotificationService, NotificationApiService, CideEleDropdownComponent, CideEleFileImageDirective, CideEleResizerDirective, TooltipDirective, CideSpinnerComponent, CideEleSkeletonLoaderComponent, KeyboardShortcutService, FloatingContainerShortcutsService, CideEleFloatingContainerManagerComponent, CideEleGlobalNotificationsComponent, CideEleBreadcrumbComponent } from 'cloud-ide-element';
|
|
11
11
|
import * as i1$1 from '@angular/common';
|
|
12
12
|
import { CommonModule, NgClass, NgFor, NgIf, isPlatformBrowser } from '@angular/common';
|
|
13
13
|
import { FINANCIAL_YEAR_SERVICE_TOKEN, ACADEMIC_YEAR_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, authGuard, ENTITY_SERVICE_TOKEN } from 'cloud-ide-shared';
|
|
@@ -1353,7 +1353,7 @@ class CideLytFloatingEntitySelectionService {
|
|
|
1353
1353
|
}
|
|
1354
1354
|
try {
|
|
1355
1355
|
// Use relative import to avoid circular dependency
|
|
1356
|
-
const module = await import('./cloud-ide-layout-floating-entity-selection.component-
|
|
1356
|
+
const module = await import('./cloud-ide-layout-floating-entity-selection.component-C6e-ATZ_.mjs');
|
|
1357
1357
|
if (module.CideLytFloatingEntitySelectionComponent) {
|
|
1358
1358
|
this.containerService.registerComponent('entity-selection-header', module.CideLytFloatingEntitySelectionComponent);
|
|
1359
1359
|
console.log('✅ Entity selection component registered successfully');
|
|
@@ -2323,6 +2323,7 @@ class CideLytHeaderWrapperComponent {
|
|
|
2323
2323
|
sharedService = inject(CideLytSharedService);
|
|
2324
2324
|
fileManagerService = inject(CideLytFileManagerService);
|
|
2325
2325
|
router = inject(Router);
|
|
2326
|
+
confirmationService = inject(ConfirmationService);
|
|
2326
2327
|
authService = inject(AUTH_SERVICE_TOKEN);
|
|
2327
2328
|
wsNotificationService = inject(WebSocketNotificationService);
|
|
2328
2329
|
notificationApiService = inject(NotificationApiService);
|
|
@@ -4954,8 +4955,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
4954
4955
|
}
|
|
4955
4956
|
ngOnInit() {
|
|
4956
4957
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
4957
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
4958
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
4958
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-DMlbYKSS.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
4959
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-Gdug6J1K.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
4959
4960
|
}
|
|
4960
4961
|
async loadComponent(configFor) {
|
|
4961
4962
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -6647,7 +6648,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6647
6648
|
},
|
|
6648
6649
|
{
|
|
6649
6650
|
path: "home",
|
|
6650
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
6651
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CeuB9Nsb.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
6651
6652
|
canActivate: [authGuard],
|
|
6652
6653
|
data: {
|
|
6653
6654
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -6655,7 +6656,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6655
6656
|
},
|
|
6656
6657
|
{
|
|
6657
6658
|
path: "dashboard-manager",
|
|
6658
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
6659
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-Cet1zc7W.mjs').then(c => c.DashboardManagerComponent),
|
|
6659
6660
|
canActivate: [authGuard],
|
|
6660
6661
|
data: {
|
|
6661
6662
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -8222,4 +8223,4 @@ var floatingEntityRightsSharing_component = /*#__PURE__*/Object.freeze({
|
|
|
8222
8223
|
*/
|
|
8223
8224
|
|
|
8224
8225
|
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 };
|
|
8225
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8226
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-BbNpkUNq.mjs.map
|