@annalib/anna-core 18.1.1 → 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 +8 -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 +10 -3
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +10 -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;
|
|
@@ -1335,6 +1337,7 @@ class AnnaFilterService {
|
|
|
1335
1337
|
};
|
|
1336
1338
|
dayjs.extend(minMax);
|
|
1337
1339
|
dayjs.extend(isBetween);
|
|
1340
|
+
dayjs.extend(customParseFormat);
|
|
1338
1341
|
const sliderArr = [
|
|
1339
1342
|
"rcvPreempt",
|
|
1340
1343
|
"osPreempt",
|
|
@@ -1407,7 +1410,9 @@ class AnnaFilterService {
|
|
|
1407
1410
|
"AUIMPS",
|
|
1408
1411
|
"bookedAmountValue",
|
|
1409
1412
|
"equivalizedBookedAmountValue",
|
|
1410
|
-
"IMPS"
|
|
1413
|
+
"IMPS",
|
|
1414
|
+
"udValue",
|
|
1415
|
+
"odValue"
|
|
1411
1416
|
];
|
|
1412
1417
|
const calendarArr = ["period", "AirDate", "flightStartDate", "flightEndDate", "date",
|
|
1413
1418
|
"startDate", "endDate", "revisionStartDate", "GeneratedOn", "Week", "timeoutDate"];
|
|
@@ -3605,9 +3610,9 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3605
3610
|
this.tooltipRadioTextMap.set("UDImps", "UD IMPS");
|
|
3606
3611
|
this.tooltipRadioTextMap.set("ODGrp", "OD GRP");
|
|
3607
3612
|
this.tooltipRadioTextMap.set("UDGrp", "UD GRP");
|
|
3608
|
-
this.tooltipRadioTextMap.set("udImpsPercent", "UD
|
|
3613
|
+
this.tooltipRadioTextMap.set("udImpsPercent", "UD %");
|
|
3609
3614
|
this.tooltipRadioTextMap.set("udGrpPercent", "UD GRP %");
|
|
3610
|
-
this.tooltipRadioTextMap.set("odImpsPercent", "OD
|
|
3615
|
+
this.tooltipRadioTextMap.set("odImpsPercent", "OD %");
|
|
3611
3616
|
this.tooltipRadioTextMap.set("odGrpPercent", "OD GRP %");
|
|
3612
3617
|
this.tooltipRadioTextMap.set("RevisionNumber", "Revision #");
|
|
3613
3618
|
this.tooltipRadioTextMap.set("RevisionType", "Revision Type");
|
|
@@ -3663,6 +3668,8 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3663
3668
|
this.tooltipRadioTextMap.set("DisplaytSpotStatusBI", "Spot Status");
|
|
3664
3669
|
this.tooltipRadioTextMap.set("LineSpot", "Line.Spot");
|
|
3665
3670
|
this.tooltipRadioTextMap.set("LurWindowName", "Political Window");
|
|
3671
|
+
this.tooltipRadioTextMap.set("udValue", "$ UD");
|
|
3672
|
+
this.tooltipRadioTextMap.set("odValue", "$ OD");
|
|
3666
3673
|
}
|
|
3667
3674
|
selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
|
|
3668
3675
|
rowData[columnKeys] = !rowData[columnKeys];
|