@annalib/anna-core 18.1.2 → 18.1.3
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-core-shared-lib/services/anna-filter.service.mjs +6 -2
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -3
- package/fesm2015/annalib-anna-core.mjs +9 -3
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +9 -3
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1294,6 +1294,8 @@ class AnnaFilterService {
|
|
|
1294
1294
|
'buyerChanges',
|
|
1295
1295
|
'userChanges',
|
|
1296
1296
|
'userMG',
|
|
1297
|
+
"udValue",
|
|
1298
|
+
"odValue"
|
|
1297
1299
|
]);
|
|
1298
1300
|
this.isFilterSortActive = {};
|
|
1299
1301
|
this.resetFilterSortActiveStatus = true;
|
|
@@ -1408,7 +1410,9 @@ class AnnaFilterService {
|
|
|
1408
1410
|
"AUIMPS",
|
|
1409
1411
|
"bookedAmountValue",
|
|
1410
1412
|
"equivalizedBookedAmountValue",
|
|
1411
|
-
"IMPS"
|
|
1413
|
+
"IMPS",
|
|
1414
|
+
"udValue",
|
|
1415
|
+
"odValue"
|
|
1412
1416
|
];
|
|
1413
1417
|
const calendarArr = ["period", "AirDate", "flightStartDate", "flightEndDate", "date",
|
|
1414
1418
|
"startDate", "endDate", "revisionStartDate", "GeneratedOn", "Week", "timeoutDate"];
|
|
@@ -3606,9 +3610,9 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3606
3610
|
this.tooltipRadioTextMap.set("UDImps", "UD IMPS");
|
|
3607
3611
|
this.tooltipRadioTextMap.set("ODGrp", "OD GRP");
|
|
3608
3612
|
this.tooltipRadioTextMap.set("UDGrp", "UD GRP");
|
|
3609
|
-
this.tooltipRadioTextMap.set("udImpsPercent", "UD
|
|
3613
|
+
this.tooltipRadioTextMap.set("udImpsPercent", "UD %");
|
|
3610
3614
|
this.tooltipRadioTextMap.set("udGrpPercent", "UD GRP %");
|
|
3611
|
-
this.tooltipRadioTextMap.set("odImpsPercent", "OD
|
|
3615
|
+
this.tooltipRadioTextMap.set("odImpsPercent", "OD %");
|
|
3612
3616
|
this.tooltipRadioTextMap.set("odGrpPercent", "OD GRP %");
|
|
3613
3617
|
this.tooltipRadioTextMap.set("RevisionNumber", "Revision #");
|
|
3614
3618
|
this.tooltipRadioTextMap.set("RevisionType", "Revision Type");
|
|
@@ -3664,6 +3668,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3664
3668
|
this.tooltipRadioTextMap.set("DisplaytSpotStatusBI", "Spot Status");
|
|
3665
3669
|
this.tooltipRadioTextMap.set("LineSpot", "Line.Spot");
|
|
3666
3670
|
this.tooltipRadioTextMap.set("LurWindowName", "Political Window");
|
|
3671
|
+
this.tooltipRadioTextMap.set("udValue", "$ UD");
|
|
3672
|
+
this.tooltipRadioTextMap.set("odValue", "$ OD");
|
|
3667
3673
|
}
|
|
3668
3674
|
selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
|
|
3669
3675
|
rowData[columnKeys] = !rowData[columnKeys];
|