@ardium-ui/ui 5.0.0-alpha.93 → 5.0.0-alpha.94

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.
@@ -6556,7 +6556,7 @@ function getCalendarDayData(year, monthIndex, firstWeekday = 1, min, max, fillUp
6556
6556
  continue;
6557
6557
  }
6558
6558
  // add the day number
6559
- const valueDate = new Date(year, monthIndex, currentDay);
6559
+ const valueDate = getUTCDate(year, monthIndex, currentDay);
6560
6560
  currentWeek.push({
6561
6561
  value: currentDay,
6562
6562
  valueDate,
@@ -6633,6 +6633,7 @@ class ArdiumIconButtonComponent extends _FocusableComponentBase {
6633
6633
  `ard-color-${this.disabled() ? ComponentColor.None : this.color()}`,
6634
6634
  this.lightColoring() ? `ard-light-coloring` : '',
6635
6635
  this.compact() ? 'ard-compact' : '',
6636
+ this.pointerEventsWhenDisabled() ? 'ard-icon-button-with-pointer-events-when-disabled' : '',
6636
6637
  ].join(' '));
6637
6638
  }
6638
6639
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ArdiumIconButtonComponent, deps: [{ token: ARD_ICON_BUTTON_DEFAULTS }], target: i0.ɵɵFactoryTarget.Component }); }