codexly-ui 0.0.63 → 0.0.65

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.
@@ -6,7 +6,7 @@
6
6
  }
7
7
 
8
8
  /* ── Scrollbar ───────────────────────────────────────────────────────────── */
9
- ::-webkit-scrollbar { width: 0.5rem; }
9
+ ::-webkit-scrollbar { width: 0.5rem; height: 0.5rem; }
10
10
  ::-webkit-scrollbar-track { background-color: transparent; }
11
11
  ::-webkit-scrollbar-thumb {
12
12
  background-color: var(--clx-scrollbar);
@@ -5202,6 +5202,7 @@ const MODAL_SIZE_MAP = {
5202
5202
  sm: 'w-full',
5203
5203
  md: 'w-full',
5204
5204
  lg: 'w-full',
5205
+ xl: 'w-full',
5205
5206
  full: 'w-full h-screen rounded-none',
5206
5207
  };
5207
5208
  const MODAL_CONTAINER_CLASS = 'flex flex-col bg-white rounded-2xl shadow-2xl overflow-hidden';
@@ -9001,9 +9002,10 @@ class ClxModalService {
9001
9002
  };
9002
9003
  const extraClasses = Array.isArray(panelClass) ? panelClass : [panelClass];
9003
9004
  const sizeMaxWidth = {
9004
- sm: '400px',
9005
- md: '600px',
9005
+ sm: '480px',
9006
+ md: '680px',
9006
9007
  lg: '900px',
9008
+ xl: '1200px',
9007
9009
  full: '100vw',
9008
9010
  };
9009
9011
  const maxWidth = sizeMaxWidth[size] ?? '600px';