@annalib/anna-core 36.0.5 → 36.0.8

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.
@@ -2097,6 +2097,8 @@ class AnnaFilterService {
2097
2097
  "BookedNormalizedImps",
2098
2098
  "Cpp",
2099
2099
  "Cpm",
2100
+ "StationPoliticalRateValue",
2101
+ "LURComputedByAnnaValue",
2100
2102
  ];
2101
2103
  const calendarArr = [
2102
2104
  "period",
@@ -4866,6 +4868,14 @@ class AnnaNonEditableGenericTableComponent {
4866
4868
  this.setTableHeight();
4867
4869
  this.setTableBottomBorder();
4868
4870
  }
4871
+ if (changes &&
4872
+ changes.fixNumberOfRowsForPopup &&
4873
+ !changes.gtDimension &&
4874
+ this.setTableHeightWhenRowSizeIsFixed &&
4875
+ !changes.showSkeletonLoading) {
4876
+ this.setTableHeight();
4877
+ this.setTableBottomBorder();
4878
+ }
4869
4879
  if (this.showSkeletonLoading) {
4870
4880
  this.setScrollToInitialPosition();
4871
4881
  this.tableData = this.numberOfSkeletonRows;
@@ -5452,6 +5462,8 @@ class AnnaNonEditableGenericTableComponent {
5452
5462
  this.tooltipRadioTextMap.set("ModifiedFilterEndDate", "End Date");
5453
5463
  this.tooltipRadioTextMap.set("Daypart", "Daypart");
5454
5464
  this.tooltipRadioTextMap.set("Length", "Len");
5465
+ this.tooltipRadioTextMap.set("StationPoliticalRateValue", "Station Poltical Rate");
5466
+ this.tooltipRadioTextMap.set("LURComputedByAnnaValue", "LUR Computed By ANNA");
5455
5467
  }
5456
5468
  selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
5457
5469
  rowData[columnKeys] = !rowData[columnKeys];