codexly-ui 0.0.38 → 0.0.40

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.
@@ -10925,7 +10925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
10925
10925
 
10926
10926
  class ClxAppLayoutComponent {
10927
10927
  _zone;
10928
- _document = inject(DOCUMENT);
10928
+ _document;
10929
10929
  activeColor = input('indigo', ...(ngDevMode ? [{ debugName: "activeColor" }] : []));
10930
10930
  _sidebarOpen = signal(false, ...(ngDevMode ? [{ debugName: "_sidebarOpen" }] : []));
10931
10931
  collapsed = signal(false, ...(ngDevMode ? [{ debugName: "collapsed" }] : []));
@@ -10936,6 +10936,7 @@ class ClxAppLayoutComponent {
10936
10936
  constructor() {
10937
10937
  const zone = inject(NgZone, { optional: true });
10938
10938
  this._zone = zone ?? { run: (fn) => fn(), runOutsideAngular: (fn) => fn() };
10939
+ this._document = inject(DOCUMENT);
10939
10940
  }
10940
10941
  _showBackdrop = computed(() => this._sidebarOpen() && this._isMobile(), ...(ngDevMode ? [{ debugName: "_showBackdrop" }] : []));
10941
10942
  _isExpanded = computed(() => !this.collapsed() || this._hovered(), ...(ngDevMode ? [{ debugName: "_isExpanded" }] : []));