@descope/web-components-ui 1.122.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/cjs/index.cjs.js +2 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -2
- 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/dist/umd/descope-outbound-app-button.js +1 -1
- package/dist/umd/descope-outbound-app-button.js.map +1 -1
- package/package.json +3 -3
- package/src/components/descope-date-field/DateFieldClass.js +1 -1
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;
|
@@ -24888,7 +24888,7 @@ class RawOutboundAppButton extends createBaseClass({
|
|
24888
24888
|
init() {
|
24889
24889
|
super.init?.();
|
24890
24890
|
|
24891
|
-
forwardAttrs(this, this.button, { excludeAttrs: ['style', 'class'] });
|
24891
|
+
forwardAttrs(this, this.button, { excludeAttrs: ['style', 'class', 'icon-src', 'label'] });
|
24892
24892
|
}
|
24893
24893
|
|
24894
24894
|
updateLabel(val = '') {
|