@annalib/anna-core 20.2.41 → 20.2.43
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.
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +9 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +10 -4
- package/fesm2022/annalib-anna-core.mjs +17 -5
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1453,9 +1453,15 @@ class AnnaFilterService {
|
|
|
1453
1453
|
'BookedRate',
|
|
1454
1454
|
'averageRate',
|
|
1455
1455
|
'projectedIMPS',
|
|
1456
|
+
'bookedCppLY',
|
|
1457
|
+
'bookedCpmLY',
|
|
1458
|
+
'avgCpmLY',
|
|
1459
|
+
'avgCppLY',
|
|
1460
|
+
'bookedCpmTY',
|
|
1461
|
+
'bookedCppTY',
|
|
1456
1462
|
'projectedRTG',
|
|
1457
|
-
'
|
|
1458
|
-
'
|
|
1463
|
+
'avgCPM',
|
|
1464
|
+
'avgCPP',
|
|
1459
1465
|
'inventoryFillPercentageSameWeek',
|
|
1460
1466
|
'inventoryFillPercentageFinal',
|
|
1461
1467
|
'inventoryFillPercentageTillDate',
|
|
@@ -3904,6 +3910,12 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3904
3910
|
this.tooltipRadioTextMap.set('postedAverageRating', 'Posted AU Rating');
|
|
3905
3911
|
this.tooltipRadioTextMap.set('bookedAverageImpression', 'Booked AU IMPS');
|
|
3906
3912
|
this.tooltipRadioTextMap.set('postedAverageImpression', 'Posted AU IMPS');
|
|
3913
|
+
this.tooltipRadioTextMap.set('bookedCppTY', 'Booked CPP (TY)');
|
|
3914
|
+
this.tooltipRadioTextMap.set('bookedCpmTY', 'Booked CPM (TY)');
|
|
3915
|
+
this.tooltipRadioTextMap.set('bookedCppLY', 'Booked CPP (LY)');
|
|
3916
|
+
this.tooltipRadioTextMap.set('bookedCpmLY', 'Booked CPM (LY)');
|
|
3917
|
+
this.tooltipRadioTextMap.set('avgCpmLY', 'Avg. CPM (LY)');
|
|
3918
|
+
this.tooltipRadioTextMap.set('avgCppLY', 'Avg. CPP (LY)');
|
|
3907
3919
|
this.tooltipRadioTextMap.set('bookedCppValue', 'Booked CPP');
|
|
3908
3920
|
this.tooltipRadioTextMap.set('bookedEffectiveCppValue', 'Effective CPP');
|
|
3909
3921
|
this.tooltipRadioTextMap.set('bookedCpmValue', 'Booked CPM');
|
|
@@ -3962,8 +3974,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3962
3974
|
this.tooltipRadioTextMap.set('inventoryFillPercentageFinal', 'Inv Fill Final (LY)');
|
|
3963
3975
|
this.tooltipRadioTextMap.set('projectedRTG', 'Projected RTG');
|
|
3964
3976
|
this.tooltipRadioTextMap.set('projectedIMPS', "Projected IMPS('000)");
|
|
3965
|
-
this.tooltipRadioTextMap.set('
|
|
3966
|
-
this.tooltipRadioTextMap.set('
|
|
3977
|
+
this.tooltipRadioTextMap.set('avgCPM', 'Avg. CPM (TY)');
|
|
3978
|
+
this.tooltipRadioTextMap.set('avgCPP', 'Avg. CPP (TY)');
|
|
3967
3979
|
this.tooltipRadioTextMap.set('origin', 'Origin');
|
|
3968
3980
|
this.tooltipRadioTextMap.set('BookedRTG', 'Booked RTG');
|
|
3969
3981
|
this.tooltipRadioTextMap.set('BookedIMPS', "Booked IMPS('000)");
|
|
@@ -4308,7 +4320,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
4308
4320
|
const elements = document.getElementsByClassName('remarks-info-tooltip');
|
|
4309
4321
|
// const tooltipElements = document.getElementsByClassName("tooltip");
|
|
4310
4322
|
const gtTooltip = document.getElementsByClassName('remove-on-scroll-class');
|
|
4311
|
-
document.querySelectorAll(
|
|
4323
|
+
document.querySelectorAll('.tooltip:not(.keep-on-scroll-tooltip)').forEach((e) => {
|
|
4312
4324
|
e.remove();
|
|
4313
4325
|
this.tooltip = null;
|
|
4314
4326
|
});
|