gantt-lib 0.20.0 → 0.22.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.
package/dist/styles.css CHANGED
@@ -424,9 +424,15 @@
424
424
  border-bottom: 1px solid var(--gantt-grid-line-color);
425
425
  box-sizing: border-box;
426
426
  }
427
+ .gantt-tr-row.gantt-tr-row-filter-match {
428
+ background-color: rgba(250, 204, 21, 0.24);
429
+ }
427
430
  .gantt-tr-row:hover {
428
431
  background-color: rgba(59, 130, 246, 0.04);
429
432
  }
433
+ .gantt-tr-row.gantt-tr-row-filter-match:hover {
434
+ background-color: rgba(250, 204, 21, 0.3);
435
+ }
430
436
  .gantt-tr-taskBar {
431
437
  position: absolute;
432
438
  top: 50%;
@@ -476,7 +482,6 @@
476
482
  color: #2563eb;
477
483
  white-space: nowrap;
478
484
  user-select: none;
479
- margin-left: 4px;
480
485
  }
481
486
  .gantt-tr-resizeHandle {
482
487
  position: absolute;
@@ -562,8 +567,12 @@
562
567
  font-weight: 500;
563
568
  color: #6b7280;
564
569
  white-space: nowrap;
565
- margin-right: 4px;
566
- margin-left: 4px;
570
+ }
571
+ .gantt-tr-externalDuration {
572
+ font-size: 0.875rem;
573
+ font-weight: 600;
574
+ color: #374151;
575
+ white-space: nowrap;
567
576
  }
568
577
  .gantt-tr-taskBar.gantt-tr-locked {
569
578
  cursor: not-allowed;
@@ -762,9 +771,15 @@
762
771
  cursor: pointer;
763
772
  position: relative;
764
773
  }
774
+ .gantt-tl-row-filter-match {
775
+ background-color: rgba(250, 204, 21, 0.24);
776
+ }
765
777
  .gantt-tl-row:hover {
766
778
  box-shadow: inset 0 0 0 9999px rgba(17, 24, 39, 0.04);
767
779
  }
780
+ .gantt-tl-row-filter-match:hover {
781
+ box-shadow: inset 0 0 0 9999px rgba(250, 204, 21, 0.3);
782
+ }
768
783
  .gantt-tl-row-selected {
769
784
  box-shadow: inset 0 0 0 9999px rgba(17, 24, 39, 0.08);
770
785
  }
@@ -774,6 +789,9 @@
774
789
  .gantt-tl-row-parent {
775
790
  font-weight: 600;
776
791
  }
792
+ .gantt-tl-row-parent .gantt-datepicker-trigger {
793
+ font-weight: 600;
794
+ }
777
795
  .gantt-tl-collapse-btn {
778
796
  position: absolute;
779
797
  left: 4px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-lib",
3
- "version": "0.20.0",
3
+ "version": "0.22.0",
4
4
  "description": "Lightweight React Gantt chart component library",
5
5
  "license": "MIT",
6
6
  "repository": {