framepexls-ui-lib 0.2.2 → 0.2.3

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/dist/Dialog.js CHANGED
@@ -157,7 +157,7 @@ function DialogBase({
157
157
  className: cx(
158
158
  "w-full overflow-hidden rounded-3xl border border-slate-200 bg-white shadow-xl",
159
159
  "dark:border-white/10 dark:bg-[#0b0a0a]",
160
- "flex max-h-[88vh] flex-col",
160
+ size === "full" ? "flex h-[calc(100vh-2rem)] flex-col" : "flex max-h-[88vh] flex-col",
161
161
  sizeToMaxW[size],
162
162
  className
163
163
  ),
package/dist/Dialog.mjs CHANGED
@@ -117,7 +117,7 @@ function DialogBase({
117
117
  className: cx(
118
118
  "w-full overflow-hidden rounded-3xl border border-slate-200 bg-white shadow-xl",
119
119
  "dark:border-white/10 dark:bg-[#0b0a0a]",
120
- "flex max-h-[88vh] flex-col",
120
+ size === "full" ? "flex h-[calc(100vh-2rem)] flex-col" : "flex max-h-[88vh] flex-col",
121
121
  sizeToMaxW[size],
122
122
  className
123
123
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framepexls-ui-lib",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "description": "Componentes UI de Framepexls para React/Next.",