componentes-sinco 1.1.24 → 1.1.25

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.cjs CHANGED
@@ -5193,7 +5193,7 @@ var SCActivityCalendar = ({
5193
5193
  console.log("D\xEDa:", day);
5194
5194
  console.log("Filtrando eventos para el d\xEDa:", datosEventos);
5195
5195
  const eventosDelDia = datosEventos.filter(
5196
- (event2) => new Date(event2.date).toDateString() === day.toDateString()
5196
+ (event2) => (/* @__PURE__ */ new Date(event2.date + "T00:00:00")).toDateString() === day.toDateString()
5197
5197
  );
5198
5198
  console.log("Cantidad eventos para el d\xEDa:", eventosDelDia);
5199
5199
  if (eventosDelDia.length > 0) {