gantt-lib 0.0.7 → 0.0.9
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 +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +108 -76
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +108 -76
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +22 -1
- package/package.json +3 -2
package/dist/styles.css
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
--gantt-week-separator-color: #f3f4f6;
|
|
21
21
|
--gantt-day-line-width: 1px;
|
|
22
22
|
--gantt-day-line-color: #f3f4f6;
|
|
23
|
-
--gantt-progress-color: rgba(0, 0, 0, 0.
|
|
23
|
+
--gantt-progress-color: rgba(0, 0, 0, 0.4);
|
|
24
24
|
--gantt-progress-completed: #ffb800;
|
|
25
25
|
--gantt-progress-accepted: #17c964;
|
|
26
26
|
--gantt-dependency-line-color: rgba(0, 0, 55, 0.8);
|
|
@@ -442,6 +442,9 @@
|
|
|
442
442
|
top: 50%;
|
|
443
443
|
transform: translateY(-50%);
|
|
444
444
|
}
|
|
445
|
+
.gantt-tr-leftLabels-locked .gantt-tr-dateLabelLeft {
|
|
446
|
+
margin-right: 22px;
|
|
447
|
+
}
|
|
445
448
|
.gantt-tr-progressBar {
|
|
446
449
|
position: absolute;
|
|
447
450
|
top: 0;
|
|
@@ -476,6 +479,24 @@
|
|
|
476
479
|
margin-right: 4px;
|
|
477
480
|
margin-left: 4px;
|
|
478
481
|
}
|
|
482
|
+
.gantt-tr-taskBar.gantt-tr-locked {
|
|
483
|
+
cursor: not-allowed;
|
|
484
|
+
}
|
|
485
|
+
.gantt-tr-divider {
|
|
486
|
+
position: absolute;
|
|
487
|
+
left: 0;
|
|
488
|
+
width: 100%;
|
|
489
|
+
height: 0;
|
|
490
|
+
border-top: 1px solid #999;
|
|
491
|
+
pointer-events: none;
|
|
492
|
+
z-index: 0;
|
|
493
|
+
}
|
|
494
|
+
.gantt-tr-divider-top {
|
|
495
|
+
top: 0;
|
|
496
|
+
}
|
|
497
|
+
.gantt-tr-divider-bottom {
|
|
498
|
+
bottom: 0;
|
|
499
|
+
}
|
|
479
500
|
|
|
480
501
|
/* src/components/TodayIndicator/TodayIndicator.css */
|
|
481
502
|
.gantt-ti-indicator {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gantt-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Lightweight React Gantt chart component library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"./styles.css": "./dist/styles.css"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
-
"dist"
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md"
|
|
27
28
|
],
|
|
28
29
|
"scripts": {
|
|
29
30
|
"build": "tsup",
|