@sinequa/atomic-angular 0.4.19-dev.1 → 0.4.19-dev.2

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.
@@ -13634,7 +13634,7 @@ class FilterButtonComponent {
13634
13634
  column: this.column(),
13635
13635
  icon,
13636
13636
  hidden,
13637
- display: agg?.isTree ? display : (f?.display ?? f?.value ?? display),
13637
+ display: f?.display ?? f?.value ?? display,
13638
13638
  isTree: agg?.isTree || false,
13639
13639
  count,
13640
13640
  disabled: !!(!agg?.items || agg.items?.length === 0),
@@ -13677,7 +13677,8 @@ class FilterButtonComponent {
13677
13677
  <span [innerHTML]="filter().legacyFilter | operator | syslang | transloco"></span>
13678
13678
  } @else {
13679
13679
  <!-- display the first filter value or the aggregation name if no value is set -->
13680
- <span class="max-w-40 truncate">{{ filter().display || filter().name | syslang | transloco }}</span>
13680
+ @let display = filter().display || filter().name | syslang | transloco;
13681
+ <span class="max-w-40 truncate" [title]="display">{{ display }}</span>
13681
13682
  }
13682
13683
 
13683
13684
  <!-- show the count of selected items -->
@@ -13741,7 +13742,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
13741
13742
  <span [innerHTML]="filter().legacyFilter | operator | syslang | transloco"></span>
13742
13743
  } @else {
13743
13744
  <!-- display the first filter value or the aggregation name if no value is set -->
13744
- <span class="max-w-40 truncate">{{ filter().display || filter().name | syslang | transloco }}</span>
13745
+ @let display = filter().display || filter().name | syslang | transloco;
13746
+ <span class="max-w-40 truncate" [title]="display">{{ display }}</span>
13745
13747
  }
13746
13748
 
13747
13749
  <!-- show the count of selected items -->