@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.
- package/dist/cjs/index.cjs.js +5 -4
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/DescopeDev.js.map +1 -1
- package/dist/umd/descope-date-field-index-js.js +1 -1
- package/dist/umd/descope-date-field-index-js.js.map +1 -1
- package/package.json +2 -2
- package/src/components/descope-date-field/DateFieldClass.js +4 -3
package/dist/cjs/index.cjs.js
CHANGED
@@ -17257,9 +17257,10 @@ class RawDateFieldClass extends BaseInputClass$2 {
|
|
17257
17257
|
}
|
17258
17258
|
|
17259
17259
|
set value(val) {
|
17260
|
-
|
17261
|
-
|
17262
|
-
this.
|
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.
|
22249
|
+
[compVars.iconFillCurrentColor]: 'inherit',
|
22249
22250
|
|
22250
22251
|
_iconFillCurrentColor: {
|
22251
22252
|
[compVars.iconFillCurrentColor]: 'currentColor',
|