@magic-xpa/angular 4.900.0-dev490.285 → 4.900.0-dev490.287

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.
@@ -4412,7 +4412,7 @@ class MgDateAdapter extends NativeDateAdapter {
4412
4412
  }
4413
4413
  if (month == 0 && year == 0 && date == 0)
4414
4414
  return null;
4415
- return new Date(Date.UTC(year, month, date));
4415
+ return new Date(year, month, date);
4416
4416
  }
4417
4417
  }
4418
4418
  format(date, displayFormat) {