gantt-task-react-v 1.0.15 → 1.0.17
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 +8 -8
- package/dist/gantt-task-react.umd.js +8 -8
- package/dist/style.css +23 -21
- package/package.json +1 -1
|
@@ -10657,14 +10657,14 @@ const TaskListTableDefaultInner = ({
|
|
|
10657
10657
|
);
|
|
10658
10658
|
};
|
|
10659
10659
|
const TaskListTable = memo(TaskListTableDefaultInner);
|
|
10660
|
-
const taskListRoot = "
|
|
10661
|
-
const taskListHorizontalScroll = "
|
|
10662
|
-
const taskListResizer = "
|
|
10663
|
-
const horizontalContainer$1 = "
|
|
10664
|
-
const tableWrapper = "
|
|
10665
|
-
const scrollToTop = "
|
|
10666
|
-
const scrollToBottom = "
|
|
10667
|
-
const hidden = "
|
|
10660
|
+
const taskListRoot = "_taskListRoot_xeaio_1";
|
|
10661
|
+
const taskListHorizontalScroll = "_taskListHorizontalScroll_xeaio_21";
|
|
10662
|
+
const taskListResizer = "_taskListResizer_xeaio_85";
|
|
10663
|
+
const horizontalContainer$1 = "_horizontalContainer_xeaio_149";
|
|
10664
|
+
const tableWrapper = "_tableWrapper_xeaio_167";
|
|
10665
|
+
const scrollToTop = "_scrollToTop_xeaio_179";
|
|
10666
|
+
const scrollToBottom = "_scrollToBottom_xeaio_195";
|
|
10667
|
+
const hidden = "_hidden_xeaio_211";
|
|
10668
10668
|
const styles$d = {
|
|
10669
10669
|
taskListRoot,
|
|
10670
10670
|
taskListHorizontalScroll,
|
|
@@ -10674,14 +10674,14 @@
|
|
|
10674
10674
|
);
|
|
10675
10675
|
};
|
|
10676
10676
|
const TaskListTable = React.memo(TaskListTableDefaultInner);
|
|
10677
|
-
const taskListRoot = "
|
|
10678
|
-
const taskListHorizontalScroll = "
|
|
10679
|
-
const taskListResizer = "
|
|
10680
|
-
const horizontalContainer$1 = "
|
|
10681
|
-
const tableWrapper = "
|
|
10682
|
-
const scrollToTop = "
|
|
10683
|
-
const scrollToBottom = "
|
|
10684
|
-
const hidden = "
|
|
10677
|
+
const taskListRoot = "_taskListRoot_xeaio_1";
|
|
10678
|
+
const taskListHorizontalScroll = "_taskListHorizontalScroll_xeaio_21";
|
|
10679
|
+
const taskListResizer = "_taskListResizer_xeaio_85";
|
|
10680
|
+
const horizontalContainer$1 = "_horizontalContainer_xeaio_149";
|
|
10681
|
+
const tableWrapper = "_tableWrapper_xeaio_167";
|
|
10682
|
+
const scrollToTop = "_scrollToTop_xeaio_179";
|
|
10683
|
+
const scrollToBottom = "_scrollToBottom_xeaio_195";
|
|
10684
|
+
const hidden = "_hidden_xeaio_211";
|
|
10685
10685
|
const styles$d = {
|
|
10686
10686
|
taskListRoot,
|
|
10687
10687
|
taskListHorizontalScroll,
|
package/dist/style.css
CHANGED
|
@@ -282,32 +282,34 @@
|
|
|
282
282
|
border-bottom: 1px solid var(--gantt-divider-color);
|
|
283
283
|
table-layout: fixed;
|
|
284
284
|
}
|
|
285
|
-
.
|
|
285
|
+
._taskListRoot_xeaio_1 {
|
|
286
286
|
position: relative;
|
|
287
287
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
288
288
|
border-left: 1px solid var(--gantt-table-divider-color, var(--gantt-divider-color));
|
|
289
289
|
height: 100%;
|
|
290
290
|
display: flex;
|
|
291
291
|
flex-direction: column;
|
|
292
|
+
overflow: hidden;
|
|
292
293
|
}
|
|
293
294
|
|
|
294
|
-
.
|
|
295
|
-
overflow-x:
|
|
296
|
-
|
|
295
|
+
._taskListHorizontalScroll_xeaio_21 {
|
|
296
|
+
overflow-x: auto;
|
|
297
|
+
overflow-y: hidden;
|
|
298
|
+
flex: 1;
|
|
297
299
|
display: flex;
|
|
298
300
|
flex-direction: column;
|
|
299
301
|
}
|
|
300
302
|
|
|
301
|
-
.
|
|
303
|
+
._taskListHorizontalScroll_xeaio_21::-webkit-scrollbar {
|
|
302
304
|
width: 1rem;
|
|
303
305
|
height: 1rem;
|
|
304
306
|
}
|
|
305
307
|
|
|
306
|
-
.
|
|
308
|
+
._taskListHorizontalScroll_xeaio_21::-webkit-scrollbar-corner {
|
|
307
309
|
background: transparent;
|
|
308
310
|
}
|
|
309
311
|
|
|
310
|
-
.
|
|
312
|
+
._taskListHorizontalScroll_xeaio_21::-webkit-scrollbar-thumb {
|
|
311
313
|
border: 4px solid transparent;
|
|
312
314
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
313
315
|
background: var(--gantt-scrollbar-thumb-color);
|
|
@@ -315,14 +317,14 @@
|
|
|
315
317
|
background-clip: padding-box;
|
|
316
318
|
}
|
|
317
319
|
|
|
318
|
-
.
|
|
320
|
+
._taskListHorizontalScroll_xeaio_21::-webkit-scrollbar-thumb:hover {
|
|
319
321
|
border: 2px solid transparent;
|
|
320
322
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
321
323
|
background: var(--gantt-scrollbar-thumb-color);
|
|
322
324
|
background-clip: padding-box;
|
|
323
325
|
}
|
|
324
326
|
|
|
325
|
-
.
|
|
327
|
+
._taskListResizer_xeaio_85 {
|
|
326
328
|
position: absolute;
|
|
327
329
|
top: 0;
|
|
328
330
|
right: -3px;
|
|
@@ -334,16 +336,16 @@
|
|
|
334
336
|
}
|
|
335
337
|
|
|
336
338
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
337
|
-
.
|
|
339
|
+
._taskListResizer_xeaio_85:hover {
|
|
338
340
|
background-color: var(--gantt-table-hover-action-color);
|
|
339
341
|
filter: var(--gantt-hover-filter);
|
|
340
342
|
}
|
|
341
343
|
|
|
342
|
-
.
|
|
344
|
+
._taskListResizer_xeaio_85:hover::before {
|
|
343
345
|
display: none;
|
|
344
346
|
}
|
|
345
347
|
|
|
346
|
-
.
|
|
348
|
+
._taskListResizer_xeaio_85::before {
|
|
347
349
|
content: "";
|
|
348
350
|
position: absolute;
|
|
349
351
|
top: 0;
|
|
@@ -354,22 +356,22 @@
|
|
|
354
356
|
background-color: var(--gantt-table-resize-color, var(--gantt-divider-color));
|
|
355
357
|
}
|
|
356
358
|
|
|
357
|
-
.
|
|
359
|
+
._horizontalContainer_xeaio_149 {
|
|
358
360
|
margin: 0;
|
|
359
361
|
padding: 0;
|
|
360
|
-
overflow:
|
|
362
|
+
overflow-y: auto;
|
|
363
|
+
overflow-x: hidden;
|
|
361
364
|
height: 100%;
|
|
362
365
|
min-height: 0;
|
|
363
366
|
}
|
|
364
367
|
|
|
365
|
-
.
|
|
368
|
+
._tableWrapper_xeaio_167 {
|
|
366
369
|
position: relative;
|
|
367
|
-
flex: 1
|
|
368
|
-
|
|
369
|
-
flex-direction: column;
|
|
370
|
+
flex: 1;
|
|
371
|
+
min-height: 0;
|
|
370
372
|
}
|
|
371
373
|
|
|
372
|
-
.
|
|
374
|
+
._scrollToTop_xeaio_179 {
|
|
373
375
|
position: absolute;
|
|
374
376
|
top: 0;
|
|
375
377
|
left: 0;
|
|
@@ -377,7 +379,7 @@
|
|
|
377
379
|
height: 20px;
|
|
378
380
|
}
|
|
379
381
|
|
|
380
|
-
.
|
|
382
|
+
._scrollToBottom_xeaio_195 {
|
|
381
383
|
position: absolute;
|
|
382
384
|
bottom: 0;
|
|
383
385
|
left: 0;
|
|
@@ -385,7 +387,7 @@
|
|
|
385
387
|
height: 20px;
|
|
386
388
|
}
|
|
387
389
|
|
|
388
|
-
.
|
|
390
|
+
._hidden_xeaio_211 {
|
|
389
391
|
display: none;
|
|
390
392
|
}
|
|
391
393
|
._ganttToday_1oyhk_1 {
|
package/package.json
CHANGED