codexly-ui 0.0.63 → 0.0.64
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
|
@@ -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: '
|
|
9005
|
-
md: '
|
|
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';
|