componentes-sinco 1.0.10-rc.0 → 1.0.10-rc.1

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
@@ -3391,7 +3391,7 @@ var DayView = ({
3391
3391
  startHour = 0,
3392
3392
  endHour = 24
3393
3393
  }) => {
3394
- const hours = Array.from({ length: endHour - startHour }, (_, i) => startHour + i);
3394
+ const hours = Array.from({ length: endHour - startHour + 1 }, (_, i) => startHour + i);
3395
3395
  const getCellBorderType = (cellHour, dayEvents2) => {
3396
3396
  for (const event2 of dayEvents2) {
3397
3397
  const start = event2.start.hour() + event2.start.minute() / 60;