@descope/web-components-ui 1.126.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
  }
@@ -22245,7 +22246,7 @@ const OutboundAppButtonClass = compose(
22245
22246
  const compVars = OutboundAppButtonClass.cssVarList;
22246
22247
 
22247
22248
  const outboundAppButton = {
22248
- [compVars.iconFill]: 'inherit',
22249
+ [compVars.iconFillCurrentColor]: 'inherit',
22249
22250
 
22250
22251
  _iconFillCurrentColor: {
22251
22252
  [compVars.iconFillCurrentColor]: 'currentColor',