@arsedizioni/ars-utils 19.3.5 → 19.3.6

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.
@@ -1560,7 +1560,9 @@ class ClipperSearchCalendarComponent {
1560
1560
  return '';
1561
1561
  };
1562
1562
  this.calendarDateFilter = (cellDate) => {
1563
- return this.canFilter() && this.calendarSpecialDays != null && this.calendarSpecialDays[cellDate.getDate() - 1] > 0;
1563
+ console.log("date: " + (cellDate.getDate() - 1));
1564
+ const value = this.canFilter() && this.calendarSpecialDays != null && this.calendarSpecialDays[cellDate.getDate() - 1] > 0;
1565
+ return value;
1564
1566
  };
1565
1567
  this.canFilter = input(false);
1566
1568
  }