@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
|
@@ -1284,6 +1284,8 @@ class AnnaFilterService {
|
|
|
1284
1284
|
'buyerChanges',
|
|
1285
1285
|
'userChanges',
|
|
1286
1286
|
'userMG',
|
|
1287
|
+
"udValue",
|
|
1288
|
+
"odValue"
|
|
1287
1289
|
]);
|
|
1288
1290
|
this.isFilterSortActive = {};
|
|
1289
1291
|
this.resetFilterSortActiveStatus = true;
|
|
@@ -1398,7 +1400,9 @@ class AnnaFilterService {
|
|
|
1398
1400
|
"AUIMPS",
|
|
1399
1401
|
"bookedAmountValue",
|
|
1400
1402
|
"equivalizedBookedAmountValue",
|
|
1401
|
-
"IMPS"
|
|
1403
|
+
"IMPS",
|
|
1404
|
+
"udValue",
|
|
1405
|
+
"odValue"
|
|
1402
1406
|
];
|
|
1403
1407
|
const calendarArr = ["period", "AirDate", "flightStartDate", "flightEndDate", "date",
|
|
1404
1408
|
"startDate", "endDate", "revisionStartDate", "GeneratedOn", "Week", "timeoutDate"];
|
|
@@ -3603,9 +3607,9 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3603
3607
|
this.tooltipRadioTextMap.set("UDImps", "UD IMPS");
|
|
3604
3608
|
this.tooltipRadioTextMap.set("ODGrp", "OD GRP");
|
|
3605
3609
|
this.tooltipRadioTextMap.set("UDGrp", "UD GRP");
|
|
3606
|
-
this.tooltipRadioTextMap.set("udImpsPercent", "UD
|
|
3610
|
+
this.tooltipRadioTextMap.set("udImpsPercent", "UD %");
|
|
3607
3611
|
this.tooltipRadioTextMap.set("udGrpPercent", "UD GRP %");
|
|
3608
|
-
this.tooltipRadioTextMap.set("odImpsPercent", "OD
|
|
3612
|
+
this.tooltipRadioTextMap.set("odImpsPercent", "OD %");
|
|
3609
3613
|
this.tooltipRadioTextMap.set("odGrpPercent", "OD GRP %");
|
|
3610
3614
|
this.tooltipRadioTextMap.set("RevisionNumber", "Revision #");
|
|
3611
3615
|
this.tooltipRadioTextMap.set("RevisionType", "Revision Type");
|
|
@@ -3661,6 +3665,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3661
3665
|
this.tooltipRadioTextMap.set("DisplaytSpotStatusBI", "Spot Status");
|
|
3662
3666
|
this.tooltipRadioTextMap.set("LineSpot", "Line.Spot");
|
|
3663
3667
|
this.tooltipRadioTextMap.set("LurWindowName", "Political Window");
|
|
3668
|
+
this.tooltipRadioTextMap.set("udValue", "$ UD");
|
|
3669
|
+
this.tooltipRadioTextMap.set("odValue", "$ OD");
|
|
3664
3670
|
}
|
|
3665
3671
|
selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
|
|
3666
3672
|
rowData[columnKeys] = !rowData[columnKeys];
|