ps-toolkit-ui 1.3.81 → 1.3.82

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.
@@ -3619,6 +3619,7 @@
3619
3619
  previousDays.push(new DayClass(i, this.isToday(previousMonth, i), false));
3620
3620
  }
3621
3621
  }
3622
+ console.log(countDayInMonth, 'countDayInMonth');
3622
3623
  for (var i = 1; i <= countDayInMonth; i++) {
3623
3624
  days.push(new DayClass(i, this.isToday(this.active, i), this.isSelected(this.active, i)));
3624
3625
  }
@@ -3631,6 +3632,7 @@
3631
3632
  this.previousDays = previousDays;
3632
3633
  this.nextDays = nextDays;
3633
3634
  this.days = days;
3635
+ console.log(days, 'days');
3634
3636
  };
3635
3637
  FormDateComponent.prototype.isToday = function (m, d) {
3636
3638
  var month = parseInt(m.format('jMM'), 10);