@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.
package/dist/index.esm.js CHANGED
@@ -7747,7 +7747,7 @@ class RawDateFieldClass extends BaseInputClass$b {
7747
7747
  }
7748
7748
 
7749
7749
  try {
7750
- const date = newDate(this.epoch);
7750
+ const date = this.isUtcTime ? new Date(this.epoch) : newDate(this.epoch);
7751
7751
 
7752
7752
  if (this.isUtcTime) {
7753
7753
  ret.month = date.getUTCMonth() + 1;