@annalib/anna-core 8.0.49 → 8.0.51
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 -9
- package/fesm2015/annalib-anna-core.mjs +4 -8
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4 -8
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/style.scss +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +0 -129
|
@@ -1975,12 +1975,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
1975
1975
|
this.tooltipRadioTextMap.set("PostedRatingsOrImpressions", "Posted RTG");
|
|
1976
1976
|
this.tooltipRadioTextMap.set("ScheduleFlightWeek", "Schedule Week");
|
|
1977
1977
|
this.tooltipRadioTextMap.set("ScheduledDay", "Scheduled Day");
|
|
1978
|
-
this.tooltipRadioTextMap.set("AirStatus", "
|
|
1979
|
-
this.tooltipRadioTextMap.set("AirDateAndTime", "
|
|
1980
|
-
this.tooltipRadioTextMap.set("NormalizedOrderedRating", "Normalized Booked RTG");
|
|
1981
|
-
this.tooltipRadioTextMap.set("NormalizedOrderedImpressions", "Normalized Booked RTG");
|
|
1982
|
-
this.tooltipRadioTextMap.set("NormalizedPostedRating", "Normalized Posted IMPS('000)");
|
|
1983
|
-
this.tooltipRadioTextMap.set("NormalizedPostedImpressions", "Normalized Posted IMPS('000)");
|
|
1978
|
+
this.tooltipRadioTextMap.set("AirStatus", "Aired Status");
|
|
1979
|
+
this.tooltipRadioTextMap.set("AirDateAndTime", "Aired Date & Time");
|
|
1984
1980
|
this.tooltipRadioTextMap.set("AdId", "Ad-Id");
|
|
1985
1981
|
}
|
|
1986
1982
|
generateTableDataWrapper() {
|
|
@@ -3175,8 +3171,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3175
3171
|
-1;
|
|
3176
3172
|
let includeZero = this.clonedTableData.findIndex((obj) => obj[key][0] == "0") != -1;
|
|
3177
3173
|
let includeTimeRange = this.clonedTableData.findIndex((obj) => obj[key][0] != "0" && obj[key][0] != "<multi>") != -1;
|
|
3178
|
-
let startTimeArr = map(this.clonedTableData, "startTime");
|
|
3179
|
-
let endTimeArr = map(this.clonedTableData, "endTime");
|
|
3174
|
+
let startTimeArr = map(this.clonedTableData, "startTime").filter(n => n != "");
|
|
3175
|
+
let endTimeArr = map(this.clonedTableData, "endTime").filter(n => n != "");
|
|
3180
3176
|
startTimeArr.sort((a, b) => {
|
|
3181
3177
|
return this.annaDateTimeFormatService.sortByTimeAscending(a, b);
|
|
3182
3178
|
});
|