@descope/web-components-ui 1.116.0 → 1.117.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.
@@ -17085,7 +17085,7 @@ class RawDateFieldClass extends BaseInputClass$2 {
17085
17085
  if (!epochOrDate) {
17086
17086
  this.epoch = '';
17087
17087
  } else {
17088
- this.epoch = newDate(epochOrDate).getTime();
17088
+ this.epoch = dateToEpoch(newDate(epochOrDate), this.isUtcTime);
17089
17089
  }
17090
17090
  }
17091
17091
 
@@ -17616,13 +17616,13 @@ class RawDateFieldClass extends BaseInputClass$2 {
17616
17616
  this.dateCounters.forEach((dc) => {
17617
17617
  switch (dc.id) {
17618
17618
  case counterConfig.MONTH.id:
17619
- dc.set(date.getMonth() + 1);
17619
+ dc.set(this.isUtcTime ? date.getUTCMonth() + 1 : date.getMonth() + 1);
17620
17620
  break;
17621
17621
  case counterConfig.YEAR.id:
17622
- dc.set(date.getFullYear());
17622
+ dc.set(this.isUtcTime ? date.getUTCFullYear() : date.getFullYear());
17623
17623
  break;
17624
17624
  case counterConfig.DAY.id:
17625
- dc.set(date.getDate());
17625
+ dc.set(this.isUtcTime ? date.getUTCDate() : date.getDate());
17626
17626
  break;
17627
17627
  }
17628
17628
  });
@@ -22074,7 +22074,6 @@ const outboundApps = {
22074
22074
  [vars$1.iconColor]: globals.colors.primary.main,
22075
22075
  [vars$1.errorIconColor]: globals.colors.error.main,
22076
22076
 
22077
- [vars$1.appLogoBackgroundColor]: 'none',
22078
22077
  [vars$1.appLogoGap]: globals.spacing.md,
22079
22078
  [vars$1.contentGap]: globals.spacing.xs,
22080
22079