gantt-lib 0.22.0 → 0.22.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/styles.css CHANGED
@@ -725,12 +725,28 @@
725
725
  flex-direction: column;
726
726
  flex-shrink: 0;
727
727
  pointer-events: auto;
728
+ width: var(--tasklist-width, 640px);
729
+ min-width: var(--tasklist-width, 640px);
728
730
  }
729
731
  .gantt-tl-overlay.gantt-tl-overlay-shadowed {
730
732
  box-shadow: 10px 0 18px -14px rgba(15, 23, 42, 0.45);
731
733
  }
732
734
  .gantt-tl-overlay.gantt-tl-hidden {
733
- display: none;
735
+ opacity: 0;
736
+ visibility: hidden;
737
+ transform: translateX(-100%);
738
+ pointer-events: none;
739
+ width: 0 !important;
740
+ min-width: 0 !important;
741
+ overflow: hidden;
742
+ }
743
+ .gantt-tl-overlay {
744
+ transition:
745
+ opacity 0.25s ease,
746
+ transform 0.25s ease,
747
+ visibility 0.25s ease,
748
+ width 0.25s ease,
749
+ min-width 0.25s ease;
734
750
  }
735
751
  .gantt-tl-table {
736
752
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantt-lib",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "Lightweight React Gantt chart component library",
5
5
  "license": "MIT",
6
6
  "repository": {