@annalib/anna-core 12.0.10 → 12.0.12
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/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -5
- package/fesm2015/annalib-anna-core.mjs +4 -4
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4 -4
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1890,7 +1890,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
1890
1890
|
this.tooltipRadioTextMap.set("agencyName", "Agency");
|
|
1891
1891
|
this.tooltipRadioTextMap.set("location", "Location");
|
|
1892
1892
|
this.tooltipRadioTextMap.set("advertiserName", "Advertiser");
|
|
1893
|
-
this.tooltipRadioTextMap.set("productCode", "Product
|
|
1893
|
+
this.tooltipRadioTextMap.set("productCode", "Product Code");
|
|
1894
1894
|
this.tooltipRadioTextMap.set("flightStartDate", "Start Date");
|
|
1895
1895
|
this.tooltipRadioTextMap.set("flightEndDate", "End Date");
|
|
1896
1896
|
this.tooltipRadioTextMap.set("orderIdAndRevNumber", "STN Order#-Rev#");
|
|
@@ -1938,7 +1938,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
1938
1938
|
this.tooltipRadioTextMap.set("audienceDeficit", "$ O/S Audience");
|
|
1939
1939
|
this.tooltipRadioTextMap.set("postedAudPercent", "Posted Audience %");
|
|
1940
1940
|
this.tooltipRadioTextMap.set("potentialUnitsValue", "POT Units");
|
|
1941
|
-
this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked
|
|
1941
|
+
this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Units");
|
|
1942
1942
|
this.tooltipRadioTextMap.set("bookedAmountWithZeroRatingValue", "Total $ Booked");
|
|
1943
1943
|
this.tooltipRadioTextMap.set("bookedAmountPercentageWithZeroRatingValue", "% Against All Demos");
|
|
1944
1944
|
this.tooltipRadioTextMap.set("bookedAmountWithoutZeroRatingValue", "$Booked With Imps(’000)");
|
|
@@ -2309,8 +2309,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2309
2309
|
}
|
|
2310
2310
|
getCheckboxData(header) {
|
|
2311
2311
|
let tooltipOptions = this.createListForCheckboxFilter(header);
|
|
2312
|
-
let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "
|
|
2313
|
-
let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "
|
|
2312
|
+
let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "value");
|
|
2313
|
+
let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "value");
|
|
2314
2314
|
this.clonedTooltipOptions = [...selectedItems, ...unselectedItems];
|
|
2315
2315
|
this.tooltipOptions = cloneDeep(this.clonedTooltipOptions);
|
|
2316
2316
|
let margin = 5;
|