sep-yui 0.1.87 → 0.1.89

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.
@@ -41275,7 +41275,10 @@ let Sn = class extends Pn {
41275
41275
  ];
41276
41276
  }
41277
41277
  isDateDisabled(e) {
41278
- return this.minDate && wu(e, this.minDate) || this.maxDate && vu(e, this.maxDate) ? !0 : this.disabledDates.some((n) => nm(e, n));
41278
+ if (this.minDate && (this.minDate.setHours(0, 0, 0, 0), wu(e, this.minDate)))
41279
+ return !0;
41280
+ if (this.maxDate)
41281
+ return this.maxDate.setHours(0, 0, 0, 0), vu(e, this.maxDate) ? !0 : this.disabledDates.some((n) => nm(e, n));
41279
41282
  }
41280
41283
  handleDateSelect(e) {
41281
41284
  this.isDateDisabled(e) || (this.selectedDate = e, this.dispatchEvent(new CustomEvent("change-date", { detail: e })));