@descope/web-components-ui 1.116.0 → 1.118.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/index.esm.js CHANGED
@@ -7040,7 +7040,7 @@ class RawDateFieldClass extends BaseInputClass$b {
7040
7040
  if (!epochOrDate) {
7041
7041
  this.epoch = '';
7042
7042
  } else {
7043
- this.epoch = newDate(epochOrDate).getTime();
7043
+ this.epoch = dateToEpoch(newDate(epochOrDate), this.isUtcTime);
7044
7044
  }
7045
7045
  }
7046
7046
 
@@ -7571,13 +7571,13 @@ class RawDateFieldClass extends BaseInputClass$b {
7571
7571
  this.dateCounters.forEach((dc) => {
7572
7572
  switch (dc.id) {
7573
7573
  case counterConfig.MONTH.id:
7574
- dc.set(date.getMonth() + 1);
7574
+ dc.set(this.isUtcTime ? date.getUTCMonth() + 1 : date.getMonth() + 1);
7575
7575
  break;
7576
7576
  case counterConfig.YEAR.id:
7577
- dc.set(date.getFullYear());
7577
+ dc.set(this.isUtcTime ? date.getUTCFullYear() : date.getFullYear());
7578
7578
  break;
7579
7579
  case counterConfig.DAY.id:
7580
- dc.set(date.getDate());
7580
+ dc.set(this.isUtcTime ? date.getUTCDate() : date.getDate());
7581
7581
  break;
7582
7582
  }
7583
7583
  });
@@ -24788,7 +24788,6 @@ const outboundApps = {
24788
24788
  [vars$1.iconColor]: globals.colors.primary.main,
24789
24789
  [vars$1.errorIconColor]: globals.colors.error.main,
24790
24790
 
24791
- [vars$1.appLogoBackgroundColor]: 'none',
24792
24791
  [vars$1.appLogoGap]: globals.spacing.md,
24793
24792
  [vars$1.contentGap]: globals.spacing.xs,
24794
24793