gantt-lib 0.113.0 → 0.113.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.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10807,10 +10807,10 @@ function PlanFactRowInner({
|
|
|
10807
10807
|
className: joinClasses2(
|
|
10808
10808
|
"gantt-pf-cell",
|
|
10809
10809
|
`gantt-pf-cell-${kind}`,
|
|
10810
|
-
planned && kind === "plan" && "gantt-pf-cell-planned",
|
|
10811
|
-
value !== void 0 && "gantt-pf-cell-hasValue",
|
|
10812
|
-
kind === "fact" && factStatus === "success" && "gantt-pf-cell-factSuccess",
|
|
10813
|
-
kind === "fact" && factStatus === "warning" && "gantt-pf-cell-factWarning",
|
|
10810
|
+
!isParent && planned && kind === "plan" && "gantt-pf-cell-planned",
|
|
10811
|
+
!isParent && value !== void 0 && "gantt-pf-cell-hasValue",
|
|
10812
|
+
!isParent && kind === "fact" && factStatus === "success" && "gantt-pf-cell-factSuccess",
|
|
10813
|
+
!isParent && kind === "fact" && factStatus === "warning" && "gantt-pf-cell-factWarning",
|
|
10814
10814
|
isSelected && "gantt-pf-cell-selected",
|
|
10815
10815
|
isInRenderedRange && renderedRangeBounds !== null && dateIndex === renderedRangeBounds.fromDateIndex && "gantt-pf-cell-rangeLeft",
|
|
10816
10816
|
isInRenderedRange && renderedRangeBounds !== null && dateIndex === renderedRangeBounds.toDateIndex && "gantt-pf-cell-rangeRight",
|