cloud-ide-layout 1.0.105 → 1.0.106

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.
Files changed (12) hide show
  1. package/fesm2022/{cloud-ide-layout-cloud-ide-layout-BamR8RAT.mjs → cloud-ide-layout-cloud-ide-layout-DLvP5juv.mjs} +11 -9
  2. package/fesm2022/{cloud-ide-layout-cloud-ide-layout-BamR8RAT.mjs.map → cloud-ide-layout-cloud-ide-layout-DLvP5juv.mjs.map} +1 -1
  3. package/fesm2022/{cloud-ide-layout-drawer-theme.component-Cht8K9ql.mjs → cloud-ide-layout-drawer-theme.component-NUZatXga.mjs} +2 -2
  4. package/fesm2022/{cloud-ide-layout-drawer-theme.component-Cht8K9ql.mjs.map → cloud-ide-layout-drawer-theme.component-NUZatXga.mjs.map} +1 -1
  5. package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-CfkiqZHY.mjs → cloud-ide-layout-floating-entity-selection.component-B7-PEUCH.mjs} +2 -2
  6. package/fesm2022/{cloud-ide-layout-floating-entity-selection.component-CfkiqZHY.mjs.map → cloud-ide-layout-floating-entity-selection.component-B7-PEUCH.mjs.map} +1 -1
  7. package/fesm2022/{cloud-ide-layout-home-wrapper.component-BHRtEqmU.mjs → cloud-ide-layout-home-wrapper.component-DkZyDgER.mjs} +2 -2
  8. package/fesm2022/{cloud-ide-layout-home-wrapper.component-BHRtEqmU.mjs.map → cloud-ide-layout-home-wrapper.component-DkZyDgER.mjs.map} +1 -1
  9. package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-CBaWZcFe.mjs → cloud-ide-layout-sidedrawer-notes.component-ByBbXxXy.mjs} +2 -2
  10. package/fesm2022/{cloud-ide-layout-sidedrawer-notes.component-CBaWZcFe.mjs.map → cloud-ide-layout-sidedrawer-notes.component-ByBbXxXy.mjs.map} +1 -1
  11. package/fesm2022/cloud-ide-layout.mjs +1 -1
  12. package/package.json +1 -1
@@ -1268,7 +1268,7 @@ class CideLytFloatingEntitySelectionService {
1268
1268
  }
1269
1269
  try {
1270
1270
  // Use relative import to avoid circular dependency
1271
- const module = await import('./cloud-ide-layout-floating-entity-selection.component-CfkiqZHY.mjs');
1271
+ const module = await import('./cloud-ide-layout-floating-entity-selection.component-B7-PEUCH.mjs');
1272
1272
  if (module.CideLytFloatingEntitySelectionComponent) {
1273
1273
  this.containerService.registerComponent('entity-selection-header', module.CideLytFloatingEntitySelectionComponent);
1274
1274
  console.log('✅ Entity selection component registered successfully');
@@ -4701,8 +4701,8 @@ class CideLytSidedrawerWrapperComponent {
4701
4701
  }
4702
4702
  ngOnInit() {
4703
4703
  // Initialize the component map (You'd likely populate this from a config or service)
4704
- this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-CBaWZcFe.mjs').then(m => m.CideLytSidedrawerNotesComponent);
4705
- this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-Cht8K9ql.mjs').then(m => m.CideLytDrawerThemeComponent);
4704
+ this.componentMap['drowar_notes'] = () => import('./cloud-ide-layout-sidedrawer-notes.component-ByBbXxXy.mjs').then(m => m.CideLytSidedrawerNotesComponent);
4705
+ this.componentMap['drawer_theme'] = () => import('./cloud-ide-layout-drawer-theme.component-NUZatXga.mjs').then(m => m.CideLytDrawerThemeComponent);
4706
4706
  }
4707
4707
  async loadComponent(configFor) {
4708
4708
  console.log('🔍 SIDEDRAWER - Loading component:', configFor, 'Current tab:', this.currentTabId);
@@ -5310,12 +5310,13 @@ class SettingsContainerComponent {
5310
5310
  @for (section of sections(); track section.id) {
5311
5311
  <button
5312
5312
  type="button"
5313
- (click)="selectSection(section.id)"
5313
+ cideEleButton
5314
5314
  [ngClass]="{
5315
5315
  'tw-bg-blue-50 dark:tw-bg-blue-900/20 tw-text-blue-600 dark:tw-text-blue-400': selectedSection() === section.id,
5316
5316
  'tw-text-gray-700 dark:tw-text-gray-300': selectedSection() !== section.id
5317
5317
  }"
5318
- class="tw-w-full tw-flex tw-items-center tw-gap-3 tw-px-3 tw-py-2.5 tw-mb-1 tw-rounded-lg tw-transition-colors tw-text-left hover:tw-bg-gray-100 dark:hover:tw-bg-gray-700">
5318
+ (click)="selectSection(section.id)"
5319
+ class="tw-w-full tw-flex tw-items-center tw-gap-3 tw-px-3 tw-py-2.5 tw-mb-1 tw-rounded-lg tw-transition-colors tw-text-left hover:tw-bg-gray-100 dark:hover:tw-bg-gray-700 tw-justify-start">
5319
5320
  <cide-ele-icon class="tw-text-lg">{{ section.icon }}</cide-ele-icon>
5320
5321
  <div class="tw-flex-1 tw-min-w-0">
5321
5322
  <div class="tw-flex tw-items-center tw-gap-2">
@@ -5403,12 +5404,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
5403
5404
  @for (section of sections(); track section.id) {
5404
5405
  <button
5405
5406
  type="button"
5406
- (click)="selectSection(section.id)"
5407
+ cideEleButton
5407
5408
  [ngClass]="{
5408
5409
  'tw-bg-blue-50 dark:tw-bg-blue-900/20 tw-text-blue-600 dark:tw-text-blue-400': selectedSection() === section.id,
5409
5410
  'tw-text-gray-700 dark:tw-text-gray-300': selectedSection() !== section.id
5410
5411
  }"
5411
- class="tw-w-full tw-flex tw-items-center tw-gap-3 tw-px-3 tw-py-2.5 tw-mb-1 tw-rounded-lg tw-transition-colors tw-text-left hover:tw-bg-gray-100 dark:hover:tw-bg-gray-700">
5412
+ (click)="selectSection(section.id)"
5413
+ class="tw-w-full tw-flex tw-items-center tw-gap-3 tw-px-3 tw-py-2.5 tw-mb-1 tw-rounded-lg tw-transition-colors tw-text-left hover:tw-bg-gray-100 dark:hover:tw-bg-gray-700 tw-justify-start">
5412
5414
  <cide-ele-icon class="tw-text-lg">{{ section.icon }}</cide-ele-icon>
5413
5415
  <div class="tw-flex-1 tw-min-w-0">
5414
5416
  <div class="tw-flex tw-items-center tw-gap-2">
@@ -5867,7 +5869,7 @@ const layoutControlPannelChildRoutes = [{
5867
5869
  },
5868
5870
  {
5869
5871
  path: "home",
5870
- loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-BHRtEqmU.mjs').then(c => c.CideLytHomeWrapperComponent),
5872
+ loadComponent: () => import('./cloud-ide-layout-home-wrapper.component-DkZyDgER.mjs').then(c => c.CideLytHomeWrapperComponent),
5871
5873
  canActivate: [authGuard],
5872
5874
  data: {
5873
5875
  reuseTab: true, // For CustomRouteReuseStrategy
@@ -7435,4 +7437,4 @@ var floatingEntityRightsSharing_component = /*#__PURE__*/Object.freeze({
7435
7437
  */
7436
7438
 
7437
7439
  export { AppStateHelperService as A, CideLytSharedWrapperComponent as C, ENVIRONMENT_CONFIG as E, NotificationSettingsService as N, CideLytSidebarService as a, CideLytRequestService as b, CideLytSidedrawerService as c, CideLytThemeService as d, AppStateService as e, CloudIdeLayoutService as f, CloudIdeLayoutComponent as g, CideLytSharedService 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 };
7438
- //# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-BamR8RAT.mjs.map
7440
+ //# sourceMappingURL=cloud-ide-layout-cloud-ide-layout-DLvP5juv.mjs.map