codexly-ui 0.12.16 → 0.12.17

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.
@@ -15373,7 +15373,7 @@ class ClxProductComponent {
15373
15373
  * along with it. */
15374
15374
  _cardClass = computed(() => {
15375
15375
  const shadowCls = CARD_SHADOW_MAP[this.shadow() ?? 'sm'];
15376
- const hover = this._disabled() ? '' : (this.shadow() === 'none' ? 'hover:-translate-y-0.5' : 'hover:shadow-md hover:-translate-y-0.5');
15376
+ const hover = this._disabled() ? '' : 'hover:shadow-md hover:-translate-y-0.5';
15377
15377
  const t = resolveColor(this._themeSvc.cardBorderColor());
15378
15378
  return `bg-clx-surface rounded-2xl ${shadowCls} border ${t.borderLight} transition-[box-shadow,transform] duration-200 overflow-hidden group ${hover} ${this._h() ? 'flex flex-col sm:flex-row' : 'flex flex-col'}`;
15379
15379
  }, ...(ngDevMode ? [{ debugName: "_cardClass" }] : /* istanbul ignore next */ []));
@@ -16058,8 +16058,7 @@ class ClxWishlistComponent {
16058
16058
  _cardClass = computed(() => {
16059
16059
  const t = resolveColor(this._themeSvc.cardBorderColor());
16060
16060
  const shadowCls = CARD_SHADOW_MAP[this.shadow() ?? 'sm'];
16061
- const hover = this.shadow() === 'none' ? 'hover:-translate-y-0.5' : 'hover:shadow-md hover:-translate-y-0.5';
16062
- return `bg-clx-surface rounded-2xl ${shadowCls} border ${t.borderLight} transition-[box-shadow,transform] duration-200 overflow-hidden group ${hover} flex flex-col sm:flex-row`;
16061
+ return `bg-clx-surface rounded-2xl ${shadowCls} border ${t.borderLight} transition-[box-shadow,transform] duration-200 overflow-hidden group hover:shadow-md hover:-translate-y-0.5 flex flex-col sm:flex-row`;
16063
16062
  }, ...(ngDevMode ? [{ debugName: "_cardClass" }] : /* istanbul ignore next */ []));
16064
16063
  _imageContainerClass = 'relative shrink-0 w-full p-2.5 aspect-square sm:aspect-auto sm:w-40 overflow-hidden rounded-t-2xl sm:rounded-t-none sm:rounded-l-2xl';
16065
16064
  _imageClass = 'w-full h-full object-cover transition-transform duration-500 group-hover:scale-105';
@@ -16558,8 +16557,7 @@ class ClxCartComponent {
16558
16557
  _cardClass = computed(() => {
16559
16558
  const t = resolveColor(this._themeSvc.cardBorderColor());
16560
16559
  const shadowCls = CARD_SHADOW_MAP[this.shadow() ?? 'sm'];
16561
- const hover = this.shadow() === 'none' ? 'hover:-translate-y-0.5' : 'hover:shadow-md hover:-translate-y-0.5';
16562
- return `bg-clx-surface rounded-2xl ${shadowCls} border ${t.borderLight} flex gap-0 overflow-hidden group transition-[box-shadow,transform] duration-200 ${hover}`;
16560
+ return `bg-clx-surface rounded-2xl ${shadowCls} border ${t.borderLight} flex gap-0 overflow-hidden group transition-[box-shadow,transform] duration-200 hover:shadow-md hover:-translate-y-0.5`;
16563
16561
  }, ...(ngDevMode ? [{ debugName: "_cardClass" }] : /* istanbul ignore next */ []));
16564
16562
  /** Order Summary panel — same border/shadow treatment as _cardClass, but no hover lift (it's a
16565
16563
  * static panel, not a clickable card). */