@annalib/anna-core 22.0.7 → 22.1.0

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.
@@ -1443,6 +1443,13 @@ class AnnaFilterService {
1443
1443
  "bookedAmountValue",
1444
1444
  "equivalizedBookedAmountValue",
1445
1445
  "IMPS",
1446
+ "parentRowRtg",
1447
+ "parentRowImps",
1448
+ "parentRowShares",
1449
+ "parentRowPutPercent",
1450
+ "parentRowPut",
1451
+ "parentRowStationRtg",
1452
+ "parentRowStationImps",
1446
1453
  "udValue",
1447
1454
  "odValue",
1448
1455
  "ViolatedBookedValue",
@@ -1450,24 +1457,7 @@ class AnnaFilterService {
1450
1457
  "ViolatingBookedEURValue",
1451
1458
  "ViolatingBookedValue",
1452
1459
  "Rebate",
1453
- "OtherAvailableSpotsTableWeeklyAUR",
1454
- "parentRowAnnaEstimatesRtg",
1455
- "parentRowPostedRtg",
1456
- "parentRowRollingAverageRtg",
1457
- "parentRowStationEstimatesRtg",
1458
- "parentRowAnnaEstimatesImps",
1459
- "parentRowPostedImps",
1460
- "parentRowRollingAverageImps",
1461
- "parentRowStationEstimatesImps",
1462
- "parentRowAnnaEstimatesShare",
1463
- "parentRowPostedShare",
1464
- "parentRowRollingAverageShare",
1465
- "parentRowAnnaEstimatesPutPer",
1466
- "parentRowPostedPutPer",
1467
- "parentRowRollingAveragePutPer",
1468
- "parentRowAnnaEstimatesPut",
1469
- "parentRowPostedPut",
1470
- "parentRowRollingAveragePut"
1460
+ "OtherAvailableSpotsTableWeeklyAUR"
1471
1461
  ];
1472
1462
  const calendarArr = ["period", "AirDate", "flightStartDate", "flightEndDate", "date",
1473
1463
  "startDate", "endDate", "revisionStartDate", "GeneratedOn", "Week", "timeoutDate", "ViolatingSpotDate", "ViolatedSpotDate"];
@@ -3625,6 +3615,8 @@ class AnnaNonEditableGenericTableComponent {
3625
3615
  actualTableHeight = this.maximumRowsWhichCanBeRenderedWithoutScroll * rowHeight + headerHeight;
3626
3616
  }
3627
3617
  else {
3618
+ let minHeightForTable = headerHeight + 3 * rowHeight;
3619
+ viewportHeight = viewportHeight <= dataOnTopHeight ? dataOnTopHeight + minHeightForTable : viewportHeight;
3628
3620
  let heightLeftForTable = viewportHeight - dataOnTopHeight - marginFromBottom;
3629
3621
  this.maximumRowsWhichCanBeRenderedWithoutScroll =
3630
3622
  Math.ceil((heightLeftForTable - headerHeight - rowHeight) / rowHeight) + 1;
@@ -3741,14 +3733,14 @@ class AnnaNonEditableGenericTableComponent {
3741
3733
  this.tooltipRadioTextMap.set("stationList", "stationList");
3742
3734
  this.tooltipRadioTextMap.set("approvedOn", "Approved On");
3743
3735
  this.tooltipRadioTextMap.set("approvedBy", "Approved By");
3744
- this.tooltipRadioTextMap.set("ODImps", "OD IMPS");
3745
- this.tooltipRadioTextMap.set("UDImps", "UD IMPS");
3746
- this.tooltipRadioTextMap.set("ODGrp", "OD GRP");
3747
- this.tooltipRadioTextMap.set("UDGrp", "UD GRP");
3748
- this.tooltipRadioTextMap.set("udImpsPercent", "UD %");
3749
- this.tooltipRadioTextMap.set("udGrpPercent", "UD GRP %");
3750
- this.tooltipRadioTextMap.set("odImpsPercent", "OD %");
3751
- this.tooltipRadioTextMap.set("odGrpPercent", "OD GRP %");
3736
+ this.tooltipRadioTextMap.set("ODImps", "Proj. OD IMPS");
3737
+ this.tooltipRadioTextMap.set("UDImps", "Proj. UD IMPS");
3738
+ this.tooltipRadioTextMap.set("ODGrp", "Proj. OD GRP");
3739
+ this.tooltipRadioTextMap.set("UDGrp", "Proj. UD GRP");
3740
+ this.tooltipRadioTextMap.set("udImpsPercent", "Proj. UD %");
3741
+ this.tooltipRadioTextMap.set("udGrpPercent", "Proj. UD GRP %");
3742
+ this.tooltipRadioTextMap.set("odImpsPercent", "Proj. OD %");
3743
+ this.tooltipRadioTextMap.set("odGrpPercent", "Proj. OD GRP %");
3752
3744
  this.tooltipRadioTextMap.set("RevisionNumber", "Revision #");
3753
3745
  this.tooltipRadioTextMap.set("RevisionType", "Revision Type");
3754
3746
  this.tooltipRadioTextMap.set("GeneratedOn", "Generated On");
@@ -3804,8 +3796,8 @@ class AnnaNonEditableGenericTableComponent {
3804
3796
  this.tooltipRadioTextMap.set("DisplaytSpotStatusBI", "Spot Status");
3805
3797
  this.tooltipRadioTextMap.set("LineSpot", "Line.Spot");
3806
3798
  this.tooltipRadioTextMap.set("LurWindowName", "Political Window");
3807
- this.tooltipRadioTextMap.set("udValue", "$ UD");
3808
- this.tooltipRadioTextMap.set("odValue", "$ OD");
3799
+ this.tooltipRadioTextMap.set("udValue", "Proj. $ UD");
3800
+ this.tooltipRadioTextMap.set("odValue", "Proj. $ OD");
3809
3801
  this.tooltipRadioTextMap.set("OtherAvailableSpotsTableInventoryCode", "Inventory Code");
3810
3802
  this.tooltipRadioTextMap.set("OtherAvailableSpotsTableBuyerProgramName", "Buyer Program Name");
3811
3803
  this.tooltipRadioTextMap.set("OtherAvailableSpotsTableStartTime", "Start Time");