gantt-renderer 0.2.0 → 0.4.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/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/dist/index.d.mts +175 -84
- package/dist/index.mjs +1035 -280
- package/dist/index.mjs.map +1 -1
- package/dist/styles/gantt.css +17 -0
- package/package.json +4 -4
package/dist/styles/gantt.css
CHANGED
|
@@ -261,3 +261,20 @@
|
|
|
261
261
|
outline: 2px solid var(--gantt-task);
|
|
262
262
|
outline-offset: 2px;
|
|
263
263
|
}
|
|
264
|
+
|
|
265
|
+
/* ─── Tooltip ───────────────────────────────────────────────────────────── */
|
|
266
|
+
.gantt-tooltip {
|
|
267
|
+
position: fixed;
|
|
268
|
+
z-index: 100;
|
|
269
|
+
background: var(--gantt-bg);
|
|
270
|
+
border: 1px solid var(--gantt-border);
|
|
271
|
+
border-radius: 4px;
|
|
272
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
273
|
+
padding: 8px 12px;
|
|
274
|
+
font-size: var(--gantt-font-size-sm);
|
|
275
|
+
color: var(--gantt-text);
|
|
276
|
+
pointer-events: none;
|
|
277
|
+
max-width: 260px;
|
|
278
|
+
white-space: normal;
|
|
279
|
+
overflow-wrap: break-word;
|
|
280
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gantt-renderer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "A TypeScript Gantt chart renderer for precalculated project plans",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chart",
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
"conventional-changelog": "7.2.0",
|
|
54
54
|
"eslint-plugin-regexp": "3.1.0",
|
|
55
55
|
"husky": "9.1.7",
|
|
56
|
-
"oxfmt": "0.
|
|
57
|
-
"oxlint": "1.
|
|
56
|
+
"oxfmt": "0.48.0",
|
|
57
|
+
"oxlint": "1.63.0",
|
|
58
58
|
"oxlint-tsgolint": "0.22.1",
|
|
59
59
|
"playwright": "1.59.1",
|
|
60
60
|
"release-it": "20.0.1",
|
|
61
|
-
"stylelint": "17.
|
|
61
|
+
"stylelint": "17.11.0",
|
|
62
62
|
"stylelint-config-standard": "40.0.0",
|
|
63
63
|
"tsdown": "0.21.10",
|
|
64
64
|
"typedoc": "0.28.19",
|