@annalib/anna-core 12.3.0 → 12.3.1
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 +4 -4
- package/fesm2015/annalib-anna-core.mjs +3 -3
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +3 -3
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1948,7 +1948,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
1948
1948
|
this.tooltipRadioTextMap.set("audienceDeficit", "$ O/S Audience");
|
|
1949
1949
|
this.tooltipRadioTextMap.set("postedAudPercent", "Posted Audience %");
|
|
1950
1950
|
this.tooltipRadioTextMap.set("potentialUnitsValue", "POT Units");
|
|
1951
|
-
this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Units");
|
|
1951
|
+
this.tooltipRadioTextMap.set("bookedUnitsValue", "Booked Eq Units");
|
|
1952
1952
|
this.tooltipRadioTextMap.set("bookedAmountWithZeroRatingValue", "Total $ Booked");
|
|
1953
1953
|
this.tooltipRadioTextMap.set("bookedAmountPercentageWithZeroRatingValue", "% Against All Demos");
|
|
1954
1954
|
this.tooltipRadioTextMap.set("bookedAmountWithoutZeroRatingValue", "$Booked With Imps(’000)");
|
|
@@ -2319,8 +2319,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2319
2319
|
}
|
|
2320
2320
|
getCheckboxData(header) {
|
|
2321
2321
|
let tooltipOptions = this.createListForCheckboxFilter(header);
|
|
2322
|
-
let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "
|
|
2323
|
-
let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "
|
|
2322
|
+
let selectedItems = sortBy(tooltipOptions.filter(item => item.isSelected), "value");
|
|
2323
|
+
let unselectedItems = sortBy(tooltipOptions.filter(item => !item.isSelected), "value");
|
|
2324
2324
|
this.clonedTooltipOptions = [...selectedItems, ...unselectedItems];
|
|
2325
2325
|
this.tooltipOptions = cloneDeep(this.clonedTooltipOptions);
|
|
2326
2326
|
let margin = 5;
|