gantt-task-react-powern 0.6.12 → 0.6.13
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 +30 -31
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +30 -31
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3541,37 +3541,11 @@ var Gantt = function Gantt(_ref) {
|
|
|
3541
3541
|
taskLabelRenderer: taskLabelRenderer,
|
|
3542
3542
|
onMultiSelect: onMultiSelect
|
|
3543
3543
|
};
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
position: "relative",
|
|
3550
|
-
minHeight: ganttHeight + 70 || 400
|
|
3551
|
-
}
|
|
3552
|
-
}, React__default.createElement("div", {
|
|
3553
|
-
style: {
|
|
3554
|
-
position: "absolute",
|
|
3555
|
-
inset: 0,
|
|
3556
|
-
height: "100%",
|
|
3557
|
-
width: "100%",
|
|
3558
|
-
display: "flex",
|
|
3559
|
-
justifyContent: "center",
|
|
3560
|
-
alignItems: "center",
|
|
3561
|
-
gap: "16px"
|
|
3562
|
-
}
|
|
3563
|
-
}, React__default.createElement("span", {
|
|
3564
|
-
style: {
|
|
3565
|
-
fontSize: "24px",
|
|
3566
|
-
color: "#cc0404",
|
|
3567
|
-
fontFamily: "Arial, sans-serif"
|
|
3568
|
-
}
|
|
3569
|
-
}, "Loading..."), React__default.createElement("div", {
|
|
3570
|
-
className: styles$9.spinner
|
|
3571
|
-
})));
|
|
3572
|
-
}
|
|
3573
|
-
|
|
3574
|
-
return React__default.createElement("div", null, React__default.createElement("div", {
|
|
3544
|
+
return React__default.createElement("div", {
|
|
3545
|
+
style: {
|
|
3546
|
+
position: "relative"
|
|
3547
|
+
}
|
|
3548
|
+
}, React__default.createElement("div", {
|
|
3575
3549
|
className: styles$9.wrapper,
|
|
3576
3550
|
onKeyDown: handleKeyDown,
|
|
3577
3551
|
tabIndex: 0,
|
|
@@ -3606,6 +3580,31 @@ var Gantt = function Gantt(_ref) {
|
|
|
3606
3580
|
scroll: scrollY,
|
|
3607
3581
|
onScroll: handleScrollY,
|
|
3608
3582
|
rtl: rtl
|
|
3583
|
+
})), isProcessing && React__default.createElement("div", {
|
|
3584
|
+
style: {
|
|
3585
|
+
position: "absolute",
|
|
3586
|
+
top: 0,
|
|
3587
|
+
left: 0,
|
|
3588
|
+
right: 0,
|
|
3589
|
+
bottom: 0,
|
|
3590
|
+
backgroundColor: "rgba(255, 255, 255, 0.95)",
|
|
3591
|
+
display: "flex",
|
|
3592
|
+
justifyContent: "center",
|
|
3593
|
+
alignItems: "center",
|
|
3594
|
+
gap: "20px",
|
|
3595
|
+
zIndex: 9999,
|
|
3596
|
+
pointerEvents: "none",
|
|
3597
|
+
borderRadius: "8px"
|
|
3598
|
+
}
|
|
3599
|
+
}, React__default.createElement("span", {
|
|
3600
|
+
style: {
|
|
3601
|
+
fontSize: "24px",
|
|
3602
|
+
fontWeight: "600",
|
|
3603
|
+
color: "#cc0404",
|
|
3604
|
+
fontFamily: "Arial, sans-serif"
|
|
3605
|
+
}
|
|
3606
|
+
}, "Loading..."), React__default.createElement("div", {
|
|
3607
|
+
className: styles$9.spinner
|
|
3609
3608
|
})), React__default.createElement(HorizontalScroll, {
|
|
3610
3609
|
svgWidth: svgWidth,
|
|
3611
3610
|
taskListWidth: taskListWidth,
|