@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.
@@ -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;
@@ -1325,6 +1327,7 @@ class AnnaFilterService {
1325
1327
  };
1326
1328
  dayjs.extend(minMax);
1327
1329
  dayjs.extend(isBetween);
1330
+ dayjs.extend(customParseFormat);
1328
1331
  const sliderArr = [
1329
1332
  "rcvPreempt",
1330
1333
  "osPreempt",
@@ -1397,7 +1400,9 @@ class AnnaFilterService {
1397
1400
  "AUIMPS",
1398
1401
  "bookedAmountValue",
1399
1402
  "equivalizedBookedAmountValue",
1400
- "IMPS"
1403
+ "IMPS",
1404
+ "udValue",
1405
+ "odValue"
1401
1406
  ];
1402
1407
  const calendarArr = ["period", "AirDate", "flightStartDate", "flightEndDate", "date",
1403
1408
  "startDate", "endDate", "revisionStartDate", "GeneratedOn", "Week", "timeoutDate"];
@@ -3602,9 +3607,9 @@ class AnnaNonEditableGenericTableComponent {
3602
3607
  this.tooltipRadioTextMap.set("UDImps", "UD IMPS");
3603
3608
  this.tooltipRadioTextMap.set("ODGrp", "OD GRP");
3604
3609
  this.tooltipRadioTextMap.set("UDGrp", "UD GRP");
3605
- this.tooltipRadioTextMap.set("udImpsPercent", "UD IMPS %");
3610
+ this.tooltipRadioTextMap.set("udImpsPercent", "UD %");
3606
3611
  this.tooltipRadioTextMap.set("udGrpPercent", "UD GRP %");
3607
- this.tooltipRadioTextMap.set("odImpsPercent", "OD IMPS %");
3612
+ this.tooltipRadioTextMap.set("odImpsPercent", "OD %");
3608
3613
  this.tooltipRadioTextMap.set("odGrpPercent", "OD GRP %");
3609
3614
  this.tooltipRadioTextMap.set("RevisionNumber", "Revision #");
3610
3615
  this.tooltipRadioTextMap.set("RevisionType", "Revision Type");
@@ -3660,6 +3665,8 @@ class AnnaNonEditableGenericTableComponent {
3660
3665
  this.tooltipRadioTextMap.set("DisplaytSpotStatusBI", "Spot Status");
3661
3666
  this.tooltipRadioTextMap.set("LineSpot", "Line.Spot");
3662
3667
  this.tooltipRadioTextMap.set("LurWindowName", "Political Window");
3668
+ this.tooltipRadioTextMap.set("udValue", "$ UD");
3669
+ this.tooltipRadioTextMap.set("odValue", "$ OD");
3663
3670
  }
3664
3671
  selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
3665
3672
  rowData[columnKeys] = !rowData[columnKeys];