hvp-shared 14.3.0 → 14.4.0
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.
|
@@ -64,6 +64,13 @@ export interface ChecklistViewItem {
|
|
|
64
64
|
} | null;
|
|
65
65
|
/** A full cadence was missed (Philosophy B). False when no cadence or never done. */
|
|
66
66
|
isOverdue: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Whether the activity is "due" today (Pendiente or Vencida) vs "Al día" (done
|
|
69
|
+
* within its cadence, not due yet). When false, the UI should NOT allow
|
|
70
|
+
* "No hacía falta" / "No se pudo" — those only make sense when it actually
|
|
71
|
+
* applies. "Hecho" is always allowed (doing it early resets the cycle).
|
|
72
|
+
*/
|
|
73
|
+
isDue: boolean;
|
|
67
74
|
/** today's matrix cell for this activity at this branch, if acted on */
|
|
68
75
|
today: ChecklistTodayStatus | null;
|
|
69
76
|
}
|