@descope/web-components-ui 1.123.0 → 1.124.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.
@@ -17817,7 +17817,7 @@ class RawDateFieldClass extends BaseInputClass$2 {
17817
17817
  }
17818
17818
 
17819
17819
  try {
17820
- const date = newDate(this.epoch);
17820
+ const date = this.isUtcTime ? new Date(this.epoch) : newDate(this.epoch);
17821
17821
 
17822
17822
  if (this.isUtcTime) {
17823
17823
  ret.month = date.getUTCMonth() + 1;