@descope/web-components-ui 1.127.0 → 1.128.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.
@@ -17257,9 +17257,10 @@ class RawDateFieldClass extends BaseInputClass$2 {
17257
17257
  }
17258
17258
 
17259
17259
  set value(val) {
17260
- if (!Number.isNaN(val)) {
17261
- this.updateEpoch(val);
17262
- this.updateDateCounters(newDate(val));
17260
+ let value = parseInt(val, 10);
17261
+ if (!Number.isNaN(value)) {
17262
+ this.updateEpoch(value);
17263
+ this.updateDateCounters(newDate(value));
17263
17264
  } else {
17264
17265
  this.updateEpoch('');
17265
17266
  }