@progalaxyelabs/ngx-stonescriptphp-client 1.21.0 → 1.22.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.
@@ -3425,8 +3425,8 @@ class MonthYearPickerComponent {
3425
3425
  }, ...(ngDevMode ? [{ debugName: "preview" }] : []));
3426
3426
  open() {
3427
3427
  const v = this.value();
3428
- this.tempMonth.set(v?.month ?? null);
3429
- this.tempYear.set(v?.year ?? null);
3428
+ this.tempMonth.set(v?.month ?? this.today.month);
3429
+ this.tempYear.set(v?.year ?? this.today.year);
3430
3430
  this.isOpen.set(true);
3431
3431
  }
3432
3432
  selectMonth(m) { this.tempMonth.set(m); }