codexly-ui 0.0.48 → 0.0.50
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.
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -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
|
|