gantt-renderer 0.12.18 → 0.12.20
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/CHANGELOG.md +4 -0
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [0.12.20](https://github.com/doberkofler/gantt-renderer/compare/v0.12.19...v0.12.20) (2026-08-18)
|
|
2
|
+
|
|
3
|
+
## [0.12.19](https://github.com/doberkofler/gantt-renderer/compare/v0.12.18...v0.12.19) (2026-08-10)
|
|
4
|
+
|
|
1
5
|
## [0.12.18](https://github.com/doberkofler/gantt-renderer/compare/v0.12.17...v0.12.18) (2026-08-10)
|
|
2
6
|
|
|
3
7
|
## [0.12.17](https://github.com/doberkofler/gantt-renderer/compare/v0.12.16...v0.12.17) (2026-08-01)
|
package/dist/index.mjs
CHANGED
|
@@ -3464,8 +3464,10 @@ var GanttChart = class {
|
|
|
3464
3464
|
}
|
|
3465
3465
|
#syncActionsColumnVisibility() {
|
|
3466
3466
|
const actionsCol = this.#columns.find((c) => c.id === "actions");
|
|
3467
|
-
if (actionsCol !== void 0)
|
|
3468
|
-
|
|
3467
|
+
if (actionsCol !== void 0) {
|
|
3468
|
+
if (this.#showAddTaskButton) delete actionsCol.visible;
|
|
3469
|
+
else actionsCol.visible = false;
|
|
3470
|
+
}
|
|
3469
3471
|
}
|
|
3470
3472
|
#handleGridClick = (payload) => {
|
|
3471
3473
|
const now = Date.now();
|