codexly-ui 0.0.48 → 0.0.49

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.
@@ -5220,6 +5220,11 @@ const DRAWER_SIZE_MAP = {
5220
5220
  md: 'w-full max-w-[420px]',
5221
5221
  lg: 'w-full max-w-[560px]',
5222
5222
  };
5223
+ const DRAWER_WIDTH_MAP = {
5224
+ sm: '320px',
5225
+ md: '420px',
5226
+ lg: '560px',
5227
+ };
5223
5228
  const DRAWER_CONTAINER_CLASS = 'flex flex-col bg-white shadow-2xl overflow-hidden h-full';
5224
5229
  const CLX_DRAWER_SIZE = new InjectionToken('CLX_DRAWER_SIZE');
5225
5230
 
@@ -13919,6 +13924,7 @@ class ClxDrawerService {
13919
13924
  const wrapperRef = overlayRef.attach(wrapperPortal);
13920
13925
  // Apply drawer-specific styles AFTER attach() so CDK doesn't overwrite them
13921
13926
  Object.assign(overlayRef.overlayElement.style, {
13927
+ width: DRAWER_WIDTH_MAP[size],
13922
13928
  height: '100vh',
13923
13929
  pointerEvents: 'none',
13924
13930
  });