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.js CHANGED
@@ -5110,7 +5110,7 @@ var SCActivityCalendar = ({
5110
5110
  console.log("D\xEDa:", day);
5111
5111
  console.log("Filtrando eventos para el d\xEDa:", datosEventos);
5112
5112
  const eventosDelDia = datosEventos.filter(
5113
- (event2) => new Date(event2.date).toDateString() === day.toDateString()
5113
+ (event2) => (/* @__PURE__ */ new Date(event2.date + "T00:00:00")).toDateString() === day.toDateString()
5114
5114
  );
5115
5115
  console.log("Cantidad eventos para el d\xEDa:", eventosDelDia);
5116
5116
  if (eventosDelDia.length > 0) {