codexly-ui 0.10.14 → 0.10.15
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
|
@@ -14122,7 +14122,7 @@ class ClxProductComponent {
|
|
|
14122
14122
|
_imageClass = computed(() => {
|
|
14123
14123
|
const zoom = this._disabled() ? '' : 'group-hover:scale-105';
|
|
14124
14124
|
return this.imageFit() === 'contain'
|
|
14125
|
-
? `w-full h-full object-contain p-
|
|
14125
|
+
? `w-full h-full object-contain p-10 transition-transform duration-500 ${zoom}`
|
|
14126
14126
|
: `w-full h-full object-cover transition-transform duration-500 ${zoom}`;
|
|
14127
14127
|
}, ...(ngDevMode ? [{ debugName: "_imageClass" }] : /* istanbul ignore next */ []));
|
|
14128
14128
|
_contentClass = computed(() => 'flex flex-col gap-2 flex-1 p-3', ...(ngDevMode ? [{ debugName: "_contentClass" }] : /* istanbul ignore next */ []));
|