gantt-lib 0.17.2 → 0.19.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/index.css.map +1 -1
- package/dist/index.d.mts +95 -3
- package/dist/index.d.ts +95 -3
- package/dist/index.js +1058 -470
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1063 -471
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +15 -44
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -176,6 +176,17 @@
|
|
|
176
176
|
width: 32px;
|
|
177
177
|
height: 32px;
|
|
178
178
|
}
|
|
179
|
+
.gantt-cal-weekday {
|
|
180
|
+
width: 32px;
|
|
181
|
+
height: 24px;
|
|
182
|
+
font-size: 0.75rem;
|
|
183
|
+
font-family: inherit;
|
|
184
|
+
font-weight: 500;
|
|
185
|
+
display: flex;
|
|
186
|
+
align-items: center;
|
|
187
|
+
justify-content: center;
|
|
188
|
+
color: var(--gantt-calendar-text-muted);
|
|
189
|
+
}
|
|
179
190
|
.gantt-day-btn {
|
|
180
191
|
width: 32px;
|
|
181
192
|
height: 32px;
|
|
@@ -760,48 +771,8 @@
|
|
|
760
771
|
.gantt-tl-row-child {
|
|
761
772
|
padding-left: 0;
|
|
762
773
|
}
|
|
763
|
-
.gantt-tl-hierarchy-connector {
|
|
764
|
-
position: absolute;
|
|
765
|
-
left: 4px;
|
|
766
|
-
top: 0;
|
|
767
|
-
width: 16px;
|
|
768
|
-
height: 100%;
|
|
769
|
-
color: #d4bceb;
|
|
770
|
-
pointer-events: none;
|
|
771
|
-
}
|
|
772
|
-
.gantt-tl-hc-vline {
|
|
773
|
-
position: absolute;
|
|
774
|
-
left: 5px;
|
|
775
|
-
top: 0;
|
|
776
|
-
bottom: 0;
|
|
777
|
-
width: 1.5px;
|
|
778
|
-
background: currentColor;
|
|
779
|
-
border-radius: 1px;
|
|
780
|
-
}
|
|
781
|
-
.gantt-tl-hierarchy-connector--last .gantt-tl-hc-vline {
|
|
782
|
-
bottom: 50%;
|
|
783
|
-
}
|
|
784
|
-
.gantt-tl-hc-hline {
|
|
785
|
-
position: absolute;
|
|
786
|
-
left: 5px;
|
|
787
|
-
top: calc(50% - 0.75px);
|
|
788
|
-
width: 6px;
|
|
789
|
-
height: 1.5px;
|
|
790
|
-
background: currentColor;
|
|
791
|
-
border-radius: 1px;
|
|
792
|
-
}
|
|
793
|
-
.gantt-tl-hc-dot {
|
|
794
|
-
position: absolute;
|
|
795
|
-
left: 9px;
|
|
796
|
-
top: calc(50% - 2.5px);
|
|
797
|
-
width: 5px;
|
|
798
|
-
height: 5px;
|
|
799
|
-
border-radius: 50%;
|
|
800
|
-
background: currentColor;
|
|
801
|
-
}
|
|
802
774
|
.gantt-tl-row-parent {
|
|
803
775
|
font-weight: 600;
|
|
804
|
-
background-color: var(--gantt-parent-row-bg, #f2ebf9);
|
|
805
776
|
}
|
|
806
777
|
.gantt-tl-collapse-btn {
|
|
807
778
|
position: absolute;
|
|
@@ -1118,11 +1089,11 @@
|
|
|
1118
1089
|
position: relative;
|
|
1119
1090
|
}
|
|
1120
1091
|
.gantt-tl-action-insert {
|
|
1121
|
-
background-color: #
|
|
1092
|
+
background-color: #3b82f6;
|
|
1122
1093
|
color: white;
|
|
1123
1094
|
}
|
|
1124
1095
|
.gantt-tl-action-insert:hover {
|
|
1125
|
-
background-color: #
|
|
1096
|
+
background-color: #2563eb;
|
|
1126
1097
|
}
|
|
1127
1098
|
.gantt-tl-action-delete {
|
|
1128
1099
|
background-color: #ef4444;
|
|
@@ -1147,11 +1118,11 @@
|
|
|
1147
1118
|
display: inline-flex;
|
|
1148
1119
|
align-items: center;
|
|
1149
1120
|
justify-content: center;
|
|
1150
|
-
background-color: #
|
|
1121
|
+
background-color: #4b5563;
|
|
1151
1122
|
color: white;
|
|
1152
1123
|
}
|
|
1153
1124
|
.gantt-tl-action-hierarchy:hover {
|
|
1154
|
-
background-color: #
|
|
1125
|
+
background-color: #374151;
|
|
1155
1126
|
}
|
|
1156
1127
|
.gantt-tl-dep-type-trigger {
|
|
1157
1128
|
display: flex;
|