@underverse-ui/underverse 0.2.71 → 0.2.73
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/index.cjs +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1475,7 +1475,7 @@ var NumberInput = (0, import_react3.forwardRef)(
|
|
|
1475
1475
|
)
|
|
1476
1476
|
}
|
|
1477
1477
|
),
|
|
1478
|
-
showSteppers && /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "absolute right-4 top-1/2 -translate-y-
|
|
1478
|
+
showSteppers && /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "absolute right-4 top-1/2 -translate-y-1/7 flex flex-col gap-0.5", children: [
|
|
1479
1479
|
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1480
1480
|
"button",
|
|
1481
1481
|
{
|
|
@@ -2129,6 +2129,7 @@ function SmartImage({
|
|
|
2129
2129
|
src,
|
|
2130
2130
|
alt,
|
|
2131
2131
|
className,
|
|
2132
|
+
imageClassName,
|
|
2132
2133
|
ratioClass,
|
|
2133
2134
|
roundedClass = "rounded-2xl md:rounded-3xl",
|
|
2134
2135
|
fill = true,
|
|
@@ -2197,7 +2198,8 @@ function SmartImage({
|
|
|
2197
2198
|
onError: handleError,
|
|
2198
2199
|
priority,
|
|
2199
2200
|
quality,
|
|
2200
|
-
style: { objectFit: fit, objectPosition }
|
|
2201
|
+
style: { objectFit: fit, objectPosition },
|
|
2202
|
+
className: cn("transition-all duration-300", imageClassName)
|
|
2201
2203
|
}
|
|
2202
2204
|
) });
|
|
2203
2205
|
}
|
|
@@ -2221,7 +2223,8 @@ function SmartImage({
|
|
|
2221
2223
|
onError: handleError,
|
|
2222
2224
|
priority,
|
|
2223
2225
|
quality,
|
|
2224
|
-
style: { objectFit: fit, objectPosition, width: "100%", height: "100%" }
|
|
2226
|
+
style: { objectFit: fit, objectPosition, width: "100%", height: "100%" },
|
|
2227
|
+
className: cn("transition-all duration-300", imageClassName)
|
|
2225
2228
|
}
|
|
2226
2229
|
)
|
|
2227
2230
|
}
|