@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/index.esm.js
CHANGED
@@ -7187,9 +7187,10 @@ class RawDateFieldClass extends BaseInputClass$b {
|
|
7187
7187
|
}
|
7188
7188
|
|
7189
7189
|
set value(val) {
|
7190
|
-
|
7191
|
-
|
7192
|
-
this.
|
7190
|
+
let value = parseInt(val, 10);
|
7191
|
+
if (!Number.isNaN(value)) {
|
7192
|
+
this.updateEpoch(value);
|
7193
|
+
this.updateDateCounters(newDate(value));
|
7193
7194
|
} else {
|
7194
7195
|
this.updateEpoch('');
|
7195
7196
|
}
|
@@ -24959,7 +24960,7 @@ const OutboundAppButtonClass = compose(
|
|
24959
24960
|
const compVars = OutboundAppButtonClass.cssVarList;
|
24960
24961
|
|
24961
24962
|
const outboundAppButton = {
|
24962
|
-
[compVars.
|
24963
|
+
[compVars.iconFillCurrentColor]: 'inherit',
|
24963
24964
|
|
24964
24965
|
_iconFillCurrentColor: {
|
24965
24966
|
[compVars.iconFillCurrentColor]: 'currentColor',
|