cloud-ide-layout 1.0.166 → 1.0.167
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-BGVK8JFk.mjs → cloud-ide-layout-cloud-ide-layout-CWu1ldko.mjs} +12 -7
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-CWu1ldko.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BFXNvqCW.mjs → cloud-ide-layout-dashboard-manager.component-D5xhRxvK.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-dashboard-manager.component-BFXNvqCW.mjs.map → cloud-ide-layout-dashboard-manager.component-D5xhRxvK.mjs.map} +1 -1
- package/fesm2022/{cloud-ide-layout-drawer-theme.component-CzGTCVg9.mjs → cloud-ide-layout-drawer-theme.component-BI_t7U7P.mjs} +21 -5
- package/fesm2022/cloud-ide-layout-drawer-theme.component-BI_t7U7P.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-DGj8AnSO.mjs → cloud-ide-layout-floating-entity-selection.component-DiNiFhKC.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-DGj8AnSO.mjs.map → cloud-ide-layout-floating-entity-selection.component-DiNiFhKC.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout-home-wrapper.component-CLu7_1E7.mjs +330 -0
- package/fesm2022/cloud-ide-layout-home-wrapper.component-CLu7_1E7.mjs.map +1 -0
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-CLBjDYA3.mjs → cloud-ide-layout-sidedrawer-notes.component-uZ1Vel7T.mjs} +2 -2
- package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-CLBjDYA3.mjs.map → cloud-ide-layout-sidedrawer-notes.component-uZ1Vel7T.mjs.map} +1 -1
- package/fesm2022/cloud-ide-layout.mjs +1 -1
- package/package.json +1 -1
- package/src/lib/assets/css/cide-lyt-variable.scss +36 -28
- package/fesm2022/cloud-ide-layout-cloud-ide-layout-BGVK8JFk.mjs.map +0 -1
- package/fesm2022/cloud-ide-layout-drawer-theme.component-CzGTCVg9.mjs.map +0 -1
- package/fesm2022/cloud-ide-layout-home-wrapper.component-BR-ETlty.mjs +0 -324
- package/fesm2022/cloud-ide-layout-home-wrapper.component-BR-ETlty.mjs.map +0 -1
|
@@ -15,7 +15,7 @@ import * as i1 from '@angular/forms';
|
|
|
15
15
|
import { FormBuilder, Validators, ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
16
16
|
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
17
17
|
import { trigger, state, transition, style, animate } from '@angular/animations';
|
|
18
|
-
import { merge } from 'lodash';
|
|
18
|
+
import { merge } from 'lodash-es';
|
|
19
19
|
|
|
20
20
|
class CloudIdeLayoutService {
|
|
21
21
|
constructor() { }
|
|
@@ -1408,7 +1408,7 @@ class CideLytFloatingEntitySelectionService {
|
|
|
1408
1408
|
}
|
|
1409
1409
|
try {
|
|
1410
1410
|
// Use relative import to avoid circular dependency
|
|
1411
|
-
const module = await import('./cloud-ide-layout-floating-entity-selection.component-
|
|
1411
|
+
const module = await import('./cloud-ide-layout-floating-entity-selection.component-DiNiFhKC.mjs');
|
|
1412
1412
|
if (module.CideLytFloatingEntitySelectionComponent) {
|
|
1413
1413
|
this.containerService.registerComponent('entity-selection-header', module.CideLytFloatingEntitySelectionComponent);
|
|
1414
1414
|
console.log('✅ Entity selection component registered successfully');
|
|
@@ -5192,8 +5192,8 @@ class CideLytSidedrawerWrapperComponent {
|
|
|
5192
5192
|
}
|
|
5193
5193
|
ngOnInit() {
|
|
5194
5194
|
// Initialize the component map (You'd likely populate this from a config or service)
|
|
5195
|
-
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-
|
|
5196
|
-
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-
|
|
5195
|
+
this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-uZ1Vel7T.mjs').then(m => m.CideLytSidedrawerNotesComponent);
|
|
5196
|
+
this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-BI_t7U7P.mjs').then(m => m.CideLytDrawerThemeComponent);
|
|
5197
5197
|
}
|
|
5198
5198
|
async loadComponent(configFor) {
|
|
5199
5199
|
console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
|
|
@@ -6885,7 +6885,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6885
6885
|
},
|
|
6886
6886
|
{
|
|
6887
6887
|
path: "home",
|
|
6888
|
-
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-
|
|
6888
|
+
loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-CLu7_1E7.mjs').then(c => c.CideLytHomeWrapperComponent),
|
|
6889
6889
|
canActivate: [authGuard],
|
|
6890
6890
|
data: {
|
|
6891
6891
|
sypg_page_code: "cide_lyt_home" // Used by RequestService to fetch tab properties
|
|
@@ -6893,7 +6893,7 @@ const layoutControlPannelChildRoutes = [{
|
|
|
6893
6893
|
},
|
|
6894
6894
|
{
|
|
6895
6895
|
path: "dashboard-manager",
|
|
6896
|
-
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-
|
|
6896
|
+
loadComponent: () => import('./cloud-ide-layout-dashboard-manager.component-D5xhRxvK.mjs').then(c => c.DashboardManagerComponent),
|
|
6897
6897
|
canActivate: [authGuard],
|
|
6898
6898
|
data: {
|
|
6899
6899
|
sypg_page_code: "cide_lyt_dashboard_manager"
|
|
@@ -6994,6 +6994,11 @@ class CideLytThemeService {
|
|
|
6994
6994
|
const { cssVarName, processedValue } = processThemeVariable(key, value);
|
|
6995
6995
|
// Set the CSS custom property on the root element.
|
|
6996
6996
|
root.style.setProperty(cssVarName, processedValue);
|
|
6997
|
+
// For font sizes, also update the -base variable so media queries work correctly
|
|
6998
|
+
if (cssVarName.includes('font-size') && !cssVarName.includes('-base')) {
|
|
6999
|
+
const baseVarName = cssVarName + '-base';
|
|
7000
|
+
root.style.setProperty(baseVarName, processedValue);
|
|
7001
|
+
}
|
|
6997
7002
|
}
|
|
6998
7003
|
}
|
|
6999
7004
|
}
|
|
@@ -8460,4 +8465,4 @@ var floatingEntityRightsSharing_component = /*#__PURE__*/Object.freeze({
|
|
|
8460
8465
|
*/
|
|
8461
8466
|
|
|
8462
8467
|
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 };
|
|
8463
|
-
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-
|
|
8468
|
+
//# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-CWu1ldko.mjs.map
|