@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/cjs/index.cjs.js
CHANGED
@@ -17817,7 +17817,7 @@ class RawDateFieldClass extends BaseInputClass$2 {
|
|
17817
17817
|
}
|
17818
17818
|
|
17819
17819
|
try {
|
17820
|
-
const date = newDate(this.epoch);
|
17820
|
+
const date = this.isUtcTime ? new Date(this.epoch) : newDate(this.epoch);
|
17821
17821
|
|
17822
17822
|
if (this.isUtcTime) {
|
17823
17823
|
ret.month = date.getUTCMonth() + 1;
|
@@ -22174,7 +22174,7 @@ class RawOutboundAppButton extends createBaseClass$1({
|
|
22174
22174
|
init() {
|
22175
22175
|
super.init?.();
|
22176
22176
|
|
22177
|
-
forwardAttrs(this, this.button, { excludeAttrs: ['style', 'class'] });
|
22177
|
+
forwardAttrs(this, this.button, { excludeAttrs: ['style', 'class', 'icon-src', 'label'] });
|
22178
22178
|
}
|
22179
22179
|
|
22180
22180
|
updateLabel(val = '') {
|