gantt-renderer 0.1.1 → 0.1.2
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 +7 -0
- package/README.md +5 -5
- package/package.json +91 -72
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.1.2](https://github.com/doberkofler/gantt-renderer/compare/v0.1.1...v0.1.2) (2026-05-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* improve the documentation ([948cbf6](https://github.com/doberkofler/gantt-renderer/commit/948cbf62e25272116eea54ef03bf5d5ef522cfe8))
|
|
7
|
+
|
|
1
8
|
## [0.1.1](https://github.com/doberkofler/gantt-renderer/compare/v0.1.0...v0.1.1) (2026-05-07)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
[](https://github.com/doberkofler/gantt-renderer/actions/workflows/ci.yml)
|
|
7
7
|
[](https://coveralls.io/github/doberkofler/gantt-renderer?branch=main)
|
|
8
8
|
|
|
9
|
-

|
|
9
|
+

|
|
10
10
|
|
|
11
11
|
**[Live Demo →](https://doberkofler.github.io/gantt-renderer/)**
|
|
12
12
|
|
|
|
13
|
-
**[Usage Guide →](
|
|
13
|
+
**[Usage Guide →](https://github.com/doberkofler/gantt-renderer/blob/main/docs/guide.md)**
|
|
14
14
|
|
|
|
15
15
|
**[API Docs →](https://doberkofler.github.io/gantt-renderer/docs/api/)**
|
|
16
16
|
|
|
|
17
|
-
**[Contributing →](
|
|
17
|
+
**[Contributing →](https://github.com/doberkofler/gantt-renderer/blob/main/CONTRIBUTING.md)**
|
|
18
18
|
|
|
19
19
|
A TypeScript Gantt chart renderer for **precalculated project plans**.
|
|
20
20
|
|
|
@@ -86,8 +86,8 @@ const instance = new GanttChart(document.getElementById('chart')!, input, {
|
|
|
86
86
|
|
|
87
87
|
## Further Reading
|
|
88
88
|
|
|
89
|
-
- **[Usage Guide](
|
|
89
|
+
- **[Usage Guide](https://github.com/doberkofler/gantt-renderer/blob/main/docs/guide.md)** — All constructor options: locale, theme, grid schema, CSS tokens,
|
|
90
90
|
link creation, special days, density constants, and more.
|
|
91
91
|
- **[API Documentation](https://doberkofler.github.io/gantt-renderer/docs/api/)** — TypeDoc-generated
|
|
92
92
|
API reference.
|
|
93
|
-
- **[Contributing](
|
|
93
|
+
- **[Contributing](https://github.com/doberkofler/gantt-renderer/blob/main/CONTRIBUTING.md)** — Dev setup, scripts, demo verification, and code conventions.
|
package/package.json
CHANGED
|
@@ -1,73 +1,92 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
2
|
+
"name": "gantt-renderer",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "A TypeScript Gantt chart renderer for precalculated project plans",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"chart",
|
|
7
|
+
"gantt",
|
|
8
|
+
"project",
|
|
9
|
+
"renderer",
|
|
10
|
+
"timeline"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://doberkofler.github.io/gantt-renderer/",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/doberkofler/gantt-renderer/issues"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "doberkofler",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/doberkofler/gantt-renderer.git"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"CHANGELOG.md"
|
|
25
|
+
],
|
|
26
|
+
"type": "module",
|
|
27
|
+
"main": "./dist/index.mjs",
|
|
28
|
+
"module": "./dist/index.mjs",
|
|
29
|
+
"types": "./dist/index.d.mts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.mts",
|
|
33
|
+
"import": "./dist/index.mjs",
|
|
34
|
+
"default": "./dist/index.mjs"
|
|
35
|
+
},
|
|
36
|
+
"./styles/gantt.css": "./dist/styles/gantt.css"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"lint": "oxlint",
|
|
41
|
+
"lint:css": "stylelint 'src/**/*.css'",
|
|
42
|
+
"lint:css:fix": "stylelint --fix 'src/**/*.css'",
|
|
43
|
+
"format": "oxfmt --write && stylelint --fix 'src/**/*.css'",
|
|
44
|
+
"format:check": "oxfmt --check",
|
|
45
|
+
"ci": "pnpm run typecheck && pnpm run lint && pnpm run lint:css && pnpm run format:check && pnpm run build:lib && pnpm run build && pnpm run docs:api && pnpm run test",
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"test:build": "vitest run --config vitest.node.config.ts",
|
|
48
|
+
"release": "release-it",
|
|
49
|
+
"create-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
50
|
+
"prepare": "husky",
|
|
51
|
+
"dev": "vite",
|
|
52
|
+
"build": "vite build",
|
|
53
|
+
"build:lib": "tsdown",
|
|
54
|
+
"build:demo": "vite build",
|
|
55
|
+
"docs:api": "typedoc",
|
|
56
|
+
"preview": "vite preview",
|
|
57
|
+
"test:ui": "vitest",
|
|
58
|
+
"integration-test": "playwright test",
|
|
59
|
+
"screenshot": "npx tsx scripts/screenshot.ts"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"debug": "4.4.3",
|
|
63
|
+
"zod": "4.4.3"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@commitlint/cli": "20.5.3",
|
|
67
|
+
"@commitlint/config-conventional": "20.5.3",
|
|
68
|
+
"@playwright/test": "1.59.1",
|
|
69
|
+
"@tsdown/css": "0.21.10",
|
|
70
|
+
"@types/debug": "4.1.13",
|
|
71
|
+
"@types/node": "25.6.0",
|
|
72
|
+
"@vitest/browser": "4.1.5",
|
|
73
|
+
"@vitest/browser-playwright": "4.1.5",
|
|
74
|
+
"@vitest/coverage-istanbul": "4.1.5",
|
|
75
|
+
"@vitest/coverage-v8": "4.1.5",
|
|
76
|
+
"conventional-changelog": "7.2.0",
|
|
77
|
+
"eslint-plugin-regexp": "3.1.0",
|
|
78
|
+
"husky": "9.1.7",
|
|
79
|
+
"oxfmt": "0.47.0",
|
|
80
|
+
"oxlint": "1.62.0",
|
|
81
|
+
"oxlint-tsgolint": "0.22.1",
|
|
82
|
+
"playwright": "1.59.1",
|
|
83
|
+
"release-it": "20.0.1",
|
|
84
|
+
"stylelint": "17.10.0",
|
|
85
|
+
"stylelint-config-standard": "40.0.0",
|
|
86
|
+
"tsdown": "0.21.10",
|
|
87
|
+
"typedoc": "0.28.19",
|
|
88
|
+
"typescript": "6.0.3",
|
|
89
|
+
"vite": "8.0.10",
|
|
90
|
+
"vitest": "4.1.5"
|
|
91
|
+
}
|
|
92
|
+
}
|