codexly-ui 0.7.2 → 0.7.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/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -9697,8 +9697,11 @@ class ClxMenuComponent {
|
|
|
9697
9697
|
const geom = this.collapsed() ? NAV_ITEM_COLLAPSED : NAV_ITEM_L1;
|
|
9698
9698
|
const t = resolveColor(this._color());
|
|
9699
9699
|
const typography = resolveNavZoneTypography(this._resolved());
|
|
9700
|
+
// Active state reuses the same light hover tint (just without the `hover:` pseudo-class)
|
|
9701
|
+
// instead of the darker bgSubtle token, so selected and hovered read as the same shade.
|
|
9702
|
+
const activeBg = t.hoverBgMuted.replace('hover:', '');
|
|
9700
9703
|
if (isActive) {
|
|
9701
|
-
return `${NAV_ITEM_BASE} ${typography} ${geom} ${t.textSubtle} ${
|
|
9704
|
+
return `${NAV_ITEM_BASE} ${typography} ${geom} ${t.textSubtle} ${activeBg} rounded-lg`;
|
|
9702
9705
|
}
|
|
9703
9706
|
return `${NAV_ITEM_BASE} ${typography} ${geom} ${t.hoverBgMuted} rounded-lg`;
|
|
9704
9707
|
}
|
|
@@ -9861,13 +9864,10 @@ class ClxMenuItemComponent {
|
|
|
9861
9864
|
}, ...(ngDevMode ? [{ debugName: "_geom" }] : /* istanbul ignore next */ []));
|
|
9862
9865
|
_iconCls = computed(() => resolveColor(this._resolved().color).textSubtle, ...(ngDevMode ? [{ debugName: "_iconCls" }] : /* istanbul ignore next */ []));
|
|
9863
9866
|
_typography = computed(() => resolveNavZoneTypography(this._resolved()), ...(ngDevMode ? [{ debugName: "_typography" }] : /* istanbul ignore next */ []));
|
|
9864
|
-
_idleCls = computed(() => {
|
|
9865
|
-
const hover = resolveColor(this._resolved().color).hoverBgMuted;
|
|
9866
|
-
return `${NAV_ITEM_BASE} ${this._typography()} ${this._geom()} ${hover} rounded-lg`;
|
|
9867
|
-
}, ...(ngDevMode ? [{ debugName: "_idleCls" }] : /* istanbul ignore next */ []));
|
|
9867
|
+
_idleCls = computed(() => `${NAV_ITEM_BASE} ${this._typography()} ${this._geom()}`, ...(ngDevMode ? [{ debugName: "_idleCls" }] : /* istanbul ignore next */ []));
|
|
9868
9868
|
_activeCls = computed(() => {
|
|
9869
9869
|
const t = resolveColor(this._resolved().color);
|
|
9870
|
-
return `${NAV_ITEM_BASE} ${this._typography()} ${this._geom()} ${t.textSubtle}
|
|
9870
|
+
return `${NAV_ITEM_BASE} ${this._typography()} ${this._geom()} ${t.textSubtle}`;
|
|
9871
9871
|
}, ...(ngDevMode ? [{ debugName: "_activeCls" }] : /* istanbul ignore next */ []));
|
|
9872
9872
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9873
9873
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxMenuItemComponent, isStandalone: true, selector: "clx-menu-item", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null }, nested: { classPropertyName: "nested", publicName: "nested", isSignal: true, isRequired: false, transformFunction: null }, collapsed: { classPropertyName: "collapsed", publicName: "collapsed", isSignal: true, isRequired: false, transformFunction: null }, routerLink: { classPropertyName: "routerLink", publicName: "routerLink", isSignal: true, isRequired: false, transformFunction: null }, routerLinkActiveOptions: { classPropertyName: "routerLinkActiveOptions", publicName: "routerLinkActiveOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { itemClick: "itemClick" }, host: { classAttribute: "block" }, ngImport: i0, template: `
|