codexly-ui 0.10.93 → 0.10.94
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
|
@@ -1667,11 +1667,11 @@ class ClxCollapseComponent {
|
|
|
1667
1667
|
const border = this.bordered() ? 'border border-clx-border rounded-lg' : '';
|
|
1668
1668
|
const cursor = this.disabled() ? 'cursor-not-allowed opacity-60' : 'cursor-pointer';
|
|
1669
1669
|
const hover = this.disabled() ? '' : resolveColor(this._color()).hoverBgMuted;
|
|
1670
|
-
return `w-full flex items-center gap-2.5 ${s.header} ${border} ${hover} transition-colors duration-200 outline-none select-none`;
|
|
1670
|
+
return `w-full flex items-center gap-2.5 ${s.header} ${border} ${hover} ${cursor} transition-colors duration-200 outline-none select-none`;
|
|
1671
1671
|
}, ...(ngDevMode ? [{ debugName: "_headerClass" }] : /* istanbul ignore next */ []));
|
|
1672
1672
|
_bodyClass = computed(() => {
|
|
1673
1673
|
const s = this._sizeConfig();
|
|
1674
|
-
return `${s.header}
|
|
1674
|
+
return `${s.header}`;
|
|
1675
1675
|
}, ...(ngDevMode ? [{ debugName: "_bodyClass" }] : /* istanbul ignore next */ []));
|
|
1676
1676
|
toggle() {
|
|
1677
1677
|
if (this.disabled())
|