codexly-ui 0.0.50 → 0.0.51

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.
@@ -13928,7 +13928,10 @@ class ClxDrawerService {
13928
13928
  pointerEvents: 'none',
13929
13929
  });
13930
13930
  // Re-enable pointer events on the drawer panel itself
13931
- wrapperRef.location.nativeElement.style.pointerEvents = 'auto';
13931
+ // height:100% needed so clx-drawer h-full works (wrapper is display:contents)
13932
+ const wrapperEl = wrapperRef.location.nativeElement;
13933
+ wrapperEl.style.pointerEvents = 'auto';
13934
+ wrapperEl.style.height = '100%';
13932
13935
  // Mount user component inside the wrapper via a second portal
13933
13936
  const contentPortal = new ComponentPortal(component, null, innerInjector);
13934
13937
  wrapperRef.instance.portal.set(contentPortal);