@annalib/anna-core 34.0.12 → 34.0.13

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.
@@ -5106,7 +5106,6 @@ class AnnaNonEditableGenericTableComponent {
5106
5106
  this.tooltipRadioTextMap.set("NormalizedOrderedImpressions", "Normalized Booked IMP('000)");
5107
5107
  this.tooltipRadioTextMap.set("BuyerLineNumber", "Buy Line #");
5108
5108
  this.tooltipRadioTextMap.set("NormalizedPostedRating", "Normalized Posted RTG");
5109
- this.tooltipRadioTextMap.set("NormalizedPostedImpressions", "Normalized Posted IMP('000)");
5110
5109
  this.tooltipRadioTextMap.set("AdId", "Ad-Id");
5111
5110
  this.tooltipRadioTextMap.set("BookedRTG", "Booked RTG");
5112
5111
  this.tooltipRadioTextMap.set("BookedIMPS", "Booked IMP('000)");
@@ -5602,7 +5601,7 @@ class AnnaNonEditableGenericTableComponent {
5602
5601
  }
5603
5602
  toPascalCaseWithExceptions(input) {
5604
5603
  // List of words that should remain all uppercase
5605
- const uppercaseExceptions = ["IMPS", "RTG", "AU", "CPM", "CPP"];
5604
+ const uppercaseExceptions = ["IMPS", "IMP('000)", "RTG", "AU", "CPM", "CPP"];
5606
5605
  const uppercaseExceptionsSet = new Set(uppercaseExceptions);
5607
5606
  return input
5608
5607
  .split(" ")