ps-toolkit-ui 1.5.99 → 1.6.0

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.
@@ -3693,6 +3693,9 @@
3693
3693
  FormDateComponent.prototype.setDate = function () {
3694
3694
  var n = this.active.clone();
3695
3695
  var countDayInMonth = n.daysInMonth();
3696
+ console.log(countDayInMonth);
3697
+ var countDayInMonth2 = n.locale('fa').daysInMonth();
3698
+ console.log(countDayInMonth2);
3696
3699
  var startWeek = parseInt(n.startOf('month').format('d'), 10);
3697
3700
  var previousMonth = n.subtract(1, 'month');
3698
3701
  var countDayInPreviousMonth = previousMonth.daysInMonth();