@annalib/anna-core 15.0.10 → 15.0.11

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.
@@ -3231,6 +3231,8 @@ class AnnaNonEditableGenericTableComponent {
3231
3231
  }
3232
3232
  else {
3233
3233
  this.tooltipOptions = cloneDeep(this.clonedTooltipOptions);
3234
+ let dataLength = this.tooltipOptions.length;
3235
+ this.heightOfCheckboxTooltipFilter = this.tooltipOptions.length > 6 ? 200 : ((26.03 * dataLength) + (this.margin * dataLength) + this.margin);
3234
3236
  let unselectedItems = this.tooltipOptions.filter(item => !item.isSelected);
3235
3237
  let selectedItems = this.tooltipOptions.filter(item => item.isSelected);
3236
3238
  this.selectedCheckboxOptionsCount = selectedItems.length;