From d3ee3e0c21e3a8fd3ed2ca583afb3606f9d73280 Mon Sep 17 00:00:00 2001 From: agonzalez97 Date: Tue, 25 Jan 2022 16:09:15 +0100 Subject: [PATCH] [Patch] Fixing token selected select component --- .../dxc-ngx-cdk/src/lib/theme/complexThemeBindingStrategy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/dxc-ngx-cdk/src/lib/theme/complexThemeBindingStrategy.ts b/projects/dxc-ngx-cdk/src/lib/theme/complexThemeBindingStrategy.ts index 8ead33047..47308ae1c 100644 --- a/projects/dxc-ngx-cdk/src/lib/theme/complexThemeBindingStrategy.ts +++ b/projects/dxc-ngx-cdk/src/lib/theme/complexThemeBindingStrategy.ts @@ -247,9 +247,9 @@ export class ComplexThemeBindingStrategy implements MappingStrategy { tokens["--v3Select-hoverOptionBackgroundColor"]; //SELECT - proccessedTokens["--select-selectedlistItemBackgroundColor"] = + proccessedTokens["--select-selectedListItemBackgroundColor"] = theme?.select?.baseColor ?? - tokens["--select-selectedlistItemBackgroundColor"]; + tokens["--select-selectedListItemBackgroundColor"]; proccessedTokens["unselectedHoverListItemBackgroundColor"] = this.setOpacity(theme?.select?.baseColor, 0.34) ?? tokens["unselectedHoverListItemBackgroundColor"];