gantt-task-react-v 1.1.19 → 1.1.20
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/gantt-task-react.es.js +70 -59
- package/dist/gantt-task-react.umd.js +70 -59
- package/dist/style.css +50 -24
- package/package.json +1 -1
|
@@ -10637,20 +10637,22 @@ const TaskListTableDefaultInner = ({
|
|
|
10637
10637
|
);
|
|
10638
10638
|
};
|
|
10639
10639
|
const TaskListTable = memo(TaskListTableDefaultInner);
|
|
10640
|
-
const taskListRoot = "
|
|
10641
|
-
const taskListHorizontalScroll = "
|
|
10642
|
-
const taskListResizer = "
|
|
10643
|
-
const horizontalContainer$1 = "
|
|
10644
|
-
const tableWrapper = "
|
|
10645
|
-
const
|
|
10646
|
-
const
|
|
10647
|
-
const
|
|
10640
|
+
const taskListRoot = "_taskListRoot_6kpxi_1";
|
|
10641
|
+
const taskListHorizontalScroll = "_taskListHorizontalScroll_6kpxi_19";
|
|
10642
|
+
const taskListResizer = "_taskListResizer_6kpxi_81";
|
|
10643
|
+
const horizontalContainer$1 = "_horizontalContainer_6kpxi_145";
|
|
10644
|
+
const tableWrapper = "_tableWrapper_6kpxi_159";
|
|
10645
|
+
const loadingOverlayBody$1 = "_loadingOverlayBody_6kpxi_173";
|
|
10646
|
+
const scrollToTop = "_scrollToTop_6kpxi_195";
|
|
10647
|
+
const scrollToBottom = "_scrollToBottom_6kpxi_211";
|
|
10648
|
+
const hidden = "_hidden_6kpxi_227";
|
|
10648
10649
|
const styles$d = {
|
|
10649
10650
|
taskListRoot,
|
|
10650
10651
|
taskListHorizontalScroll,
|
|
10651
10652
|
taskListResizer,
|
|
10652
10653
|
horizontalContainer: horizontalContainer$1,
|
|
10653
10654
|
tableWrapper,
|
|
10655
|
+
loadingOverlayBody: loadingOverlayBody$1,
|
|
10654
10656
|
scrollToTop,
|
|
10655
10657
|
scrollToBottom,
|
|
10656
10658
|
hidden
|
|
@@ -10808,6 +10810,13 @@ const TaskListInner = ({
|
|
|
10808
10810
|
}
|
|
10809
10811
|
),
|
|
10810
10812
|
/* @__PURE__ */ jsxs("div", { className: styles$d.tableWrapper, children: [
|
|
10813
|
+
(isLoading || false) && /* @__PURE__ */ jsx(
|
|
10814
|
+
"div",
|
|
10815
|
+
{
|
|
10816
|
+
className: styles$d.loadingOverlayBody,
|
|
10817
|
+
"data-testid": "tasklist-loading-overlay"
|
|
10818
|
+
}
|
|
10819
|
+
),
|
|
10811
10820
|
/* @__PURE__ */ jsx(
|
|
10812
10821
|
"div",
|
|
10813
10822
|
{
|
|
@@ -13369,17 +13378,19 @@ const TaskGanttContentInner = (props) => {
|
|
|
13369
13378
|
] });
|
|
13370
13379
|
};
|
|
13371
13380
|
const TaskGanttContent = memo(TaskGanttContentInner);
|
|
13372
|
-
const ganttVerticalContainer = "
|
|
13373
|
-
const horizontalContainer = "
|
|
13374
|
-
const wrapper = "
|
|
13375
|
-
const calendarDragging = "
|
|
13376
|
-
const loadingOverlay = "
|
|
13381
|
+
const ganttVerticalContainer = "_ganttVerticalContainer_19ply_1";
|
|
13382
|
+
const horizontalContainer = "_horizontalContainer_19ply_73";
|
|
13383
|
+
const wrapper = "_wrapper_19ply_93";
|
|
13384
|
+
const calendarDragging = "_calendarDragging_19ply_117";
|
|
13385
|
+
const loadingOverlay = "_loadingOverlay_19ply_125";
|
|
13386
|
+
const loadingOverlayBody = "_loadingOverlayBody_19ply_141";
|
|
13377
13387
|
const styles$2 = {
|
|
13378
13388
|
ganttVerticalContainer,
|
|
13379
13389
|
horizontalContainer,
|
|
13380
13390
|
wrapper,
|
|
13381
13391
|
calendarDragging,
|
|
13382
|
-
loadingOverlay
|
|
13392
|
+
loadingOverlay,
|
|
13393
|
+
loadingOverlayBody
|
|
13383
13394
|
};
|
|
13384
13395
|
const TaskGanttInner = (props) => {
|
|
13385
13396
|
const {
|
|
@@ -13528,41 +13539,50 @@ const TaskGanttInner = (props) => {
|
|
|
13528
13539
|
children: /* @__PURE__ */ jsx(Calendar, { scrollRef: verticalGanttContainerRef, ...calendarProps })
|
|
13529
13540
|
}
|
|
13530
13541
|
),
|
|
13531
|
-
/* @__PURE__ */
|
|
13542
|
+
/* @__PURE__ */ jsxs(
|
|
13532
13543
|
"div",
|
|
13533
13544
|
{
|
|
13534
13545
|
ref: horizontalContainerRef,
|
|
13535
13546
|
className: styles$2.horizontalContainer,
|
|
13536
13547
|
style: containerStyle,
|
|
13537
|
-
children:
|
|
13538
|
-
|
|
13539
|
-
|
|
13540
|
-
|
|
13541
|
-
|
|
13542
|
-
|
|
13543
|
-
|
|
13544
|
-
|
|
13545
|
-
|
|
13546
|
-
|
|
13547
|
-
|
|
13548
|
-
|
|
13549
|
-
|
|
13550
|
-
|
|
13551
|
-
|
|
13552
|
-
|
|
13553
|
-
|
|
13554
|
-
|
|
13555
|
-
{
|
|
13556
|
-
|
|
13557
|
-
width: "100%",
|
|
13558
|
-
height: "100%",
|
|
13559
|
-
fill: "transparent"
|
|
13548
|
+
children: [
|
|
13549
|
+
barProps.isLoading && /* @__PURE__ */ jsx(
|
|
13550
|
+
"div",
|
|
13551
|
+
{
|
|
13552
|
+
className: styles$2.loadingOverlayBody,
|
|
13553
|
+
"data-testid": "gantt-loading-overlay-body"
|
|
13554
|
+
}
|
|
13555
|
+
),
|
|
13556
|
+
/* @__PURE__ */ jsx("div", { style: gridStyle, children: /* @__PURE__ */ jsxs(
|
|
13557
|
+
"svg",
|
|
13558
|
+
{
|
|
13559
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13560
|
+
width: fullSvgWidth,
|
|
13561
|
+
height: ganttFullHeight,
|
|
13562
|
+
fontFamily: "var(--gantt-font-family)",
|
|
13563
|
+
ref: ganttSVGRef,
|
|
13564
|
+
onContextMenu: (event) => {
|
|
13565
|
+
event.preventDefault();
|
|
13566
|
+
if (onOpenGanttContextMenu) {
|
|
13567
|
+
onOpenGanttContextMenu(event.clientX, event.clientY);
|
|
13560
13568
|
}
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
13565
|
-
|
|
13569
|
+
},
|
|
13570
|
+
children: [
|
|
13571
|
+
/* @__PURE__ */ jsx(GanttToday, { ...ganttTodayProps }),
|
|
13572
|
+
/* @__PURE__ */ jsx(
|
|
13573
|
+
"rect",
|
|
13574
|
+
{
|
|
13575
|
+
ref: contentRef,
|
|
13576
|
+
width: "100%",
|
|
13577
|
+
height: "100%",
|
|
13578
|
+
fill: "transparent"
|
|
13579
|
+
}
|
|
13580
|
+
),
|
|
13581
|
+
/* @__PURE__ */ jsx(TaskGanttContent, { ...barProps })
|
|
13582
|
+
]
|
|
13583
|
+
}
|
|
13584
|
+
) })
|
|
13585
|
+
]
|
|
13566
13586
|
}
|
|
13567
13587
|
)
|
|
13568
13588
|
]
|
|
@@ -20418,22 +20438,13 @@ const Gantt = (props) => {
|
|
|
20418
20438
|
ref: wrapperRef,
|
|
20419
20439
|
"data-testid": "gantt",
|
|
20420
20440
|
children: [
|
|
20421
|
-
(!columnsProp || columnsProp.length > 0) && /* @__PURE__ */
|
|
20422
|
-
|
|
20423
|
-
|
|
20424
|
-
|
|
20425
|
-
|
|
20426
|
-
|
|
20427
|
-
|
|
20428
|
-
),
|
|
20429
|
-
/* @__PURE__ */ jsx(
|
|
20430
|
-
TaskList,
|
|
20431
|
-
{
|
|
20432
|
-
...renderTaskListProps,
|
|
20433
|
-
taskListHorizontalScrollRef
|
|
20434
|
-
}
|
|
20435
|
-
)
|
|
20436
|
-
] }),
|
|
20441
|
+
(!columnsProp || columnsProp.length > 0) && /* @__PURE__ */ jsx(
|
|
20442
|
+
TaskList,
|
|
20443
|
+
{
|
|
20444
|
+
...renderTaskListProps,
|
|
20445
|
+
taskListHorizontalScrollRef
|
|
20446
|
+
}
|
|
20447
|
+
),
|
|
20437
20448
|
/* @__PURE__ */ jsx(
|
|
20438
20449
|
TaskGantt,
|
|
20439
20450
|
{
|
|
@@ -10654,20 +10654,22 @@
|
|
|
10654
10654
|
);
|
|
10655
10655
|
};
|
|
10656
10656
|
const TaskListTable = React.memo(TaskListTableDefaultInner);
|
|
10657
|
-
const taskListRoot = "
|
|
10658
|
-
const taskListHorizontalScroll = "
|
|
10659
|
-
const taskListResizer = "
|
|
10660
|
-
const horizontalContainer$1 = "
|
|
10661
|
-
const tableWrapper = "
|
|
10662
|
-
const
|
|
10663
|
-
const
|
|
10664
|
-
const
|
|
10657
|
+
const taskListRoot = "_taskListRoot_6kpxi_1";
|
|
10658
|
+
const taskListHorizontalScroll = "_taskListHorizontalScroll_6kpxi_19";
|
|
10659
|
+
const taskListResizer = "_taskListResizer_6kpxi_81";
|
|
10660
|
+
const horizontalContainer$1 = "_horizontalContainer_6kpxi_145";
|
|
10661
|
+
const tableWrapper = "_tableWrapper_6kpxi_159";
|
|
10662
|
+
const loadingOverlayBody$1 = "_loadingOverlayBody_6kpxi_173";
|
|
10663
|
+
const scrollToTop = "_scrollToTop_6kpxi_195";
|
|
10664
|
+
const scrollToBottom = "_scrollToBottom_6kpxi_211";
|
|
10665
|
+
const hidden = "_hidden_6kpxi_227";
|
|
10665
10666
|
const styles$d = {
|
|
10666
10667
|
taskListRoot,
|
|
10667
10668
|
taskListHorizontalScroll,
|
|
10668
10669
|
taskListResizer,
|
|
10669
10670
|
horizontalContainer: horizontalContainer$1,
|
|
10670
10671
|
tableWrapper,
|
|
10672
|
+
loadingOverlayBody: loadingOverlayBody$1,
|
|
10671
10673
|
scrollToTop,
|
|
10672
10674
|
scrollToBottom,
|
|
10673
10675
|
hidden
|
|
@@ -10825,6 +10827,13 @@
|
|
|
10825
10827
|
}
|
|
10826
10828
|
),
|
|
10827
10829
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$d.tableWrapper, children: [
|
|
10830
|
+
(isLoading || false) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
10831
|
+
"div",
|
|
10832
|
+
{
|
|
10833
|
+
className: styles$d.loadingOverlayBody,
|
|
10834
|
+
"data-testid": "tasklist-loading-overlay"
|
|
10835
|
+
}
|
|
10836
|
+
),
|
|
10828
10837
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10829
10838
|
"div",
|
|
10830
10839
|
{
|
|
@@ -13386,17 +13395,19 @@
|
|
|
13386
13395
|
] });
|
|
13387
13396
|
};
|
|
13388
13397
|
const TaskGanttContent = React.memo(TaskGanttContentInner);
|
|
13389
|
-
const ganttVerticalContainer = "
|
|
13390
|
-
const horizontalContainer = "
|
|
13391
|
-
const wrapper = "
|
|
13392
|
-
const calendarDragging = "
|
|
13393
|
-
const loadingOverlay = "
|
|
13398
|
+
const ganttVerticalContainer = "_ganttVerticalContainer_19ply_1";
|
|
13399
|
+
const horizontalContainer = "_horizontalContainer_19ply_73";
|
|
13400
|
+
const wrapper = "_wrapper_19ply_93";
|
|
13401
|
+
const calendarDragging = "_calendarDragging_19ply_117";
|
|
13402
|
+
const loadingOverlay = "_loadingOverlay_19ply_125";
|
|
13403
|
+
const loadingOverlayBody = "_loadingOverlayBody_19ply_141";
|
|
13394
13404
|
const styles$2 = {
|
|
13395
13405
|
ganttVerticalContainer,
|
|
13396
13406
|
horizontalContainer,
|
|
13397
13407
|
wrapper,
|
|
13398
13408
|
calendarDragging,
|
|
13399
|
-
loadingOverlay
|
|
13409
|
+
loadingOverlay,
|
|
13410
|
+
loadingOverlayBody
|
|
13400
13411
|
};
|
|
13401
13412
|
const TaskGanttInner = (props) => {
|
|
13402
13413
|
const {
|
|
@@ -13545,41 +13556,50 @@
|
|
|
13545
13556
|
children: /* @__PURE__ */ jsxRuntime.jsx(Calendar, { scrollRef: verticalGanttContainerRef, ...calendarProps })
|
|
13546
13557
|
}
|
|
13547
13558
|
),
|
|
13548
|
-
/* @__PURE__ */ jsxRuntime.
|
|
13559
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
13549
13560
|
"div",
|
|
13550
13561
|
{
|
|
13551
13562
|
ref: horizontalContainerRef,
|
|
13552
13563
|
className: styles$2.horizontalContainer,
|
|
13553
13564
|
style: containerStyle,
|
|
13554
|
-
children:
|
|
13555
|
-
|
|
13556
|
-
|
|
13557
|
-
|
|
13558
|
-
|
|
13559
|
-
|
|
13560
|
-
|
|
13561
|
-
|
|
13562
|
-
|
|
13563
|
-
|
|
13564
|
-
|
|
13565
|
-
|
|
13566
|
-
|
|
13567
|
-
|
|
13568
|
-
|
|
13569
|
-
|
|
13570
|
-
|
|
13571
|
-
|
|
13572
|
-
{
|
|
13573
|
-
|
|
13574
|
-
width: "100%",
|
|
13575
|
-
height: "100%",
|
|
13576
|
-
fill: "transparent"
|
|
13565
|
+
children: [
|
|
13566
|
+
barProps.isLoading && /* @__PURE__ */ jsxRuntime.jsx(
|
|
13567
|
+
"div",
|
|
13568
|
+
{
|
|
13569
|
+
className: styles$2.loadingOverlayBody,
|
|
13570
|
+
"data-testid": "gantt-loading-overlay-body"
|
|
13571
|
+
}
|
|
13572
|
+
),
|
|
13573
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { style: gridStyle, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
13574
|
+
"svg",
|
|
13575
|
+
{
|
|
13576
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13577
|
+
width: fullSvgWidth,
|
|
13578
|
+
height: ganttFullHeight,
|
|
13579
|
+
fontFamily: "var(--gantt-font-family)",
|
|
13580
|
+
ref: ganttSVGRef,
|
|
13581
|
+
onContextMenu: (event) => {
|
|
13582
|
+
event.preventDefault();
|
|
13583
|
+
if (onOpenGanttContextMenu) {
|
|
13584
|
+
onOpenGanttContextMenu(event.clientX, event.clientY);
|
|
13577
13585
|
}
|
|
13578
|
-
|
|
13579
|
-
|
|
13580
|
-
|
|
13581
|
-
|
|
13582
|
-
|
|
13586
|
+
},
|
|
13587
|
+
children: [
|
|
13588
|
+
/* @__PURE__ */ jsxRuntime.jsx(GanttToday, { ...ganttTodayProps }),
|
|
13589
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
13590
|
+
"rect",
|
|
13591
|
+
{
|
|
13592
|
+
ref: contentRef,
|
|
13593
|
+
width: "100%",
|
|
13594
|
+
height: "100%",
|
|
13595
|
+
fill: "transparent"
|
|
13596
|
+
}
|
|
13597
|
+
),
|
|
13598
|
+
/* @__PURE__ */ jsxRuntime.jsx(TaskGanttContent, { ...barProps })
|
|
13599
|
+
]
|
|
13600
|
+
}
|
|
13601
|
+
) })
|
|
13602
|
+
]
|
|
13583
13603
|
}
|
|
13584
13604
|
)
|
|
13585
13605
|
]
|
|
@@ -20435,22 +20455,13 @@
|
|
|
20435
20455
|
ref: wrapperRef,
|
|
20436
20456
|
"data-testid": "gantt",
|
|
20437
20457
|
children: [
|
|
20438
|
-
(!columnsProp || columnsProp.length > 0) && /* @__PURE__ */ jsxRuntime.
|
|
20439
|
-
|
|
20440
|
-
|
|
20441
|
-
|
|
20442
|
-
|
|
20443
|
-
|
|
20444
|
-
|
|
20445
|
-
),
|
|
20446
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
20447
|
-
TaskList,
|
|
20448
|
-
{
|
|
20449
|
-
...renderTaskListProps,
|
|
20450
|
-
taskListHorizontalScrollRef
|
|
20451
|
-
}
|
|
20452
|
-
)
|
|
20453
|
-
] }),
|
|
20458
|
+
(!columnsProp || columnsProp.length > 0) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
20459
|
+
TaskList,
|
|
20460
|
+
{
|
|
20461
|
+
...renderTaskListProps,
|
|
20462
|
+
taskListHorizontalScrollRef
|
|
20463
|
+
}
|
|
20464
|
+
),
|
|
20454
20465
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
20455
20466
|
TaskGantt,
|
|
20456
20467
|
{
|
package/dist/style.css
CHANGED
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
border-bottom: 1px solid var(--gantt-divider-color);
|
|
283
283
|
table-layout: fixed;
|
|
284
284
|
}
|
|
285
|
-
.
|
|
285
|
+
._taskListRoot_6kpxi_1 {
|
|
286
286
|
position: relative;
|
|
287
287
|
height: 100%;
|
|
288
288
|
display: flex;
|
|
@@ -291,23 +291,23 @@
|
|
|
291
291
|
border-left: 1px solid var(--gantt-table-divider-color, var(--gantt-divider-color));
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
-
.
|
|
294
|
+
._taskListHorizontalScroll_6kpxi_19 {
|
|
295
295
|
overflow-x: scroll;
|
|
296
296
|
height: 100%;
|
|
297
297
|
display: flex;
|
|
298
298
|
flex-direction: column;
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
-
.
|
|
301
|
+
._taskListHorizontalScroll_6kpxi_19::-webkit-scrollbar {
|
|
302
302
|
width: 1rem;
|
|
303
303
|
height: 1rem;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
.
|
|
306
|
+
._taskListHorizontalScroll_6kpxi_19::-webkit-scrollbar-corner {
|
|
307
307
|
background: transparent;
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
-
.
|
|
310
|
+
._taskListHorizontalScroll_6kpxi_19::-webkit-scrollbar-thumb {
|
|
311
311
|
border: 4px solid transparent;
|
|
312
312
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
313
313
|
background: var(--gantt-scrollbar-thumb-color);
|
|
@@ -315,14 +315,14 @@
|
|
|
315
315
|
background-clip: padding-box;
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
-
.
|
|
318
|
+
._taskListHorizontalScroll_6kpxi_19::-webkit-scrollbar-thumb:hover {
|
|
319
319
|
border: 2px solid transparent;
|
|
320
320
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
321
321
|
background: var(--gantt-scrollbar-thumb-color);
|
|
322
322
|
background-clip: padding-box;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
.
|
|
325
|
+
._taskListResizer_6kpxi_81 {
|
|
326
326
|
position: absolute;
|
|
327
327
|
top: 0;
|
|
328
328
|
right: -3px;
|
|
@@ -334,16 +334,16 @@
|
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
337
|
-
.
|
|
337
|
+
._taskListResizer_6kpxi_81:hover {
|
|
338
338
|
background-color: var(--gantt-table-hover-action-color);
|
|
339
339
|
filter: var(--gantt-hover-filter);
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
.
|
|
342
|
+
._taskListResizer_6kpxi_81:hover::before {
|
|
343
343
|
display: none;
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
.
|
|
346
|
+
._taskListResizer_6kpxi_81::before {
|
|
347
347
|
content: "";
|
|
348
348
|
position: absolute;
|
|
349
349
|
top: 0;
|
|
@@ -354,21 +354,32 @@
|
|
|
354
354
|
background-color: var(--gantt-table-resize-color, var(--gantt-divider-color));
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
.
|
|
357
|
+
._horizontalContainer_6kpxi_145 {
|
|
358
358
|
margin: 0;
|
|
359
359
|
padding: 0;
|
|
360
360
|
overflow: hidden;
|
|
361
361
|
flex-grow: 1;
|
|
362
362
|
}
|
|
363
363
|
|
|
364
|
-
.
|
|
364
|
+
._tableWrapper_6kpxi_159 {
|
|
365
365
|
position: relative;
|
|
366
366
|
flex-grow: 1;
|
|
367
367
|
display: flex;
|
|
368
368
|
flex-direction: column;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
|
-
.
|
|
371
|
+
._loadingOverlayBody_6kpxi_173 {
|
|
372
|
+
position: absolute;
|
|
373
|
+
left: 0;
|
|
374
|
+
right: 0;
|
|
375
|
+
top: 0; /* We'll position overlay inside body wrapper so header remains visible */
|
|
376
|
+
bottom: 0;
|
|
377
|
+
background: rgba(255,255,255,0.6);
|
|
378
|
+
z-index: 2;
|
|
379
|
+
pointer-events: auto;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
._scrollToTop_6kpxi_195 {
|
|
372
383
|
position: absolute;
|
|
373
384
|
top: 0;
|
|
374
385
|
left: 0;
|
|
@@ -376,7 +387,7 @@
|
|
|
376
387
|
height: 20px;
|
|
377
388
|
}
|
|
378
389
|
|
|
379
|
-
.
|
|
390
|
+
._scrollToBottom_6kpxi_211 {
|
|
380
391
|
position: absolute;
|
|
381
392
|
bottom: 0;
|
|
382
393
|
left: 0;
|
|
@@ -384,7 +395,7 @@
|
|
|
384
395
|
height: 20px;
|
|
385
396
|
}
|
|
386
397
|
|
|
387
|
-
.
|
|
398
|
+
._hidden_6kpxi_227 {
|
|
388
399
|
display: none;
|
|
389
400
|
}
|
|
390
401
|
._ganttToday_1oyhk_1 {
|
|
@@ -578,7 +589,7 @@
|
|
|
578
589
|
user-select: none;
|
|
579
590
|
stroke-width: 0;
|
|
580
591
|
}
|
|
581
|
-
.
|
|
592
|
+
._ganttVerticalContainer_19ply_1 {
|
|
582
593
|
overflow-x: scroll;
|
|
583
594
|
overflow-y: hidden;
|
|
584
595
|
font-size: 0;
|
|
@@ -590,16 +601,16 @@
|
|
|
590
601
|
height: 100%;
|
|
591
602
|
}
|
|
592
603
|
|
|
593
|
-
.
|
|
604
|
+
._ganttVerticalContainer_19ply_1::-webkit-scrollbar {
|
|
594
605
|
width: 1rem;
|
|
595
606
|
height: 1rem;
|
|
596
607
|
}
|
|
597
608
|
|
|
598
|
-
.
|
|
609
|
+
._ganttVerticalContainer_19ply_1::-webkit-scrollbar-corner {
|
|
599
610
|
background: transparent;
|
|
600
611
|
}
|
|
601
612
|
|
|
602
|
-
.
|
|
613
|
+
._ganttVerticalContainer_19ply_1::-webkit-scrollbar-thumb {
|
|
603
614
|
border: 4px solid transparent;
|
|
604
615
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
605
616
|
background: var(--gantt-scrollbar-thumb-color);
|
|
@@ -607,20 +618,24 @@
|
|
|
607
618
|
background-clip: padding-box;
|
|
608
619
|
}
|
|
609
620
|
|
|
610
|
-
.
|
|
621
|
+
._ganttVerticalContainer_19ply_1::-webkit-scrollbar-thumb:hover {
|
|
611
622
|
border: 2px solid transparent;
|
|
612
623
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
613
624
|
background: var(--gantt-scrollbar-thumb-color);
|
|
614
625
|
background-clip: padding-box;
|
|
615
626
|
}
|
|
616
627
|
|
|
617
|
-
.
|
|
628
|
+
._horizontalContainer_19ply_73 {
|
|
618
629
|
margin: 0;
|
|
619
630
|
padding: 0;
|
|
620
631
|
overflow: hidden;
|
|
621
632
|
}
|
|
622
633
|
|
|
623
|
-
.
|
|
634
|
+
._horizontalContainer_19ply_73 {
|
|
635
|
+
position: relative;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
._wrapper_19ply_93 {
|
|
624
639
|
display: flex;
|
|
625
640
|
padding: 0;
|
|
626
641
|
margin: 0;
|
|
@@ -632,17 +647,28 @@
|
|
|
632
647
|
border-bottom: 1px solid var(--gantt-divider-color);
|
|
633
648
|
}
|
|
634
649
|
|
|
635
|
-
.
|
|
650
|
+
._calendarDragging_19ply_117 {
|
|
636
651
|
cursor: grabbing;
|
|
637
652
|
}
|
|
638
653
|
|
|
639
|
-
.
|
|
654
|
+
._loadingOverlay_19ply_125 {
|
|
640
655
|
position: absolute;
|
|
641
656
|
inset: 0;
|
|
642
657
|
background: rgba(255, 255, 255, 0.6);
|
|
643
658
|
z-index: 9999;
|
|
644
659
|
pointer-events: auto;
|
|
645
660
|
}
|
|
661
|
+
|
|
662
|
+
._loadingOverlayBody_19ply_141 {
|
|
663
|
+
position: absolute;
|
|
664
|
+
left: 0;
|
|
665
|
+
right: 0;
|
|
666
|
+
top: 0;
|
|
667
|
+
bottom: 0;
|
|
668
|
+
background: rgba(255, 255, 255, 0.6);
|
|
669
|
+
z-index: 3;
|
|
670
|
+
pointer-events: auto;
|
|
671
|
+
}
|
|
646
672
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
647
673
|
._menuOption_1c3e3_3 {
|
|
648
674
|
display: flex;
|
package/package.json
CHANGED