codexly-ui 0.1.0 → 0.1.1
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
|
@@ -11907,10 +11907,10 @@ class ClxMenuItemComponent {
|
|
|
11907
11907
|
return this.nested() ? NAV_ITEM_L2 : NAV_ITEM_L1;
|
|
11908
11908
|
}, ...(ngDevMode ? [{ debugName: "_geom" }] : /* istanbul ignore next */ []));
|
|
11909
11909
|
_iconCls = computed(() => resolveColor(this._resolvedColor()).textSubtle, ...(ngDevMode ? [{ debugName: "_iconCls" }] : /* istanbul ignore next */ []));
|
|
11910
|
-
_idleIconCls = computed(() =>
|
|
11910
|
+
_idleIconCls = computed(() => NAV_ITEM_IDLE, ...(ngDevMode ? [{ debugName: "_idleIconCls" }] : /* istanbul ignore next */ []));
|
|
11911
11911
|
_idleCls = computed(() => {
|
|
11912
|
-
const
|
|
11913
|
-
return `${NAV_ITEM_BASE} ${this._geom()} ${
|
|
11912
|
+
const hover = resolveColor(this._resolvedColor()).hoverBgMuted;
|
|
11913
|
+
return `${NAV_ITEM_BASE} ${this._geom()} ${NAV_ITEM_IDLE} ${hover}`;
|
|
11914
11914
|
}, ...(ngDevMode ? [{ debugName: "_idleCls" }] : /* istanbul ignore next */ []));
|
|
11915
11915
|
_activeCls = computed(() => {
|
|
11916
11916
|
const t = resolveColor(this._resolvedColor());
|