Skip to content

Commit 79b026a

Browse files
authored
Feature/full width gantt (#1)
* updated react and ts * added helpers method and wrapper components to calculate component width and calculate min number of columns * use short format for month display * updated package config
1 parent e287736 commit 79b026a

11 files changed

Lines changed: 193 additions & 136 deletions

File tree

example/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"noImplicitThis": true,
1616
"noImplicitAny": true,
1717
"strictNullChecks": true,
18-
"suppressImplicitAnyIndexErrors": true,
1918
"noUnusedLocals": true,
2019
"noUnusedParameters": true,
2120
"allowSyntheticDefaultImports": true,

package-lock.json

Lines changed: 93 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "gantt-task-react",
3-
"version": "0.3.9",
3+
"version": "0.4.0",
44
"description": "Interactive Gantt Chart for React with TypeScript.",
5-
"author": "MaTeMaTuK <maksym.vikarii@gmail.com>",
6-
"homepage": "https://github.com/MaTeMaTuK/gantt-task-react",
5+
"author": "Sparkle <contact@sparkle.tech>",
6+
"homepage": "https://github.com/sprkl/gantt-task-react",
77
"license": "MIT",
8-
"repository": "MaTeMaTuK/gantt-task-react",
8+
"repository": "@sparkle_tech/gantt-task-react",
99
"main": "dist/index.js",
1010
"module": "dist/index.modern.js",
1111
"source": "src/index.tsx",
@@ -36,16 +36,16 @@
3636
"deploy": "gh-pages -d example/build"
3737
},
3838
"peerDependencies": {
39-
"react": "^18.0.0"
39+
"react": "^19.0.0"
4040
},
4141
"devDependencies": {
4242
"@testing-library/jest-dom": "^5.16.4",
4343
"@testing-library/react": "^13.3.0",
4444
"@testing-library/user-event": "^14.2.1",
4545
"@types/jest": "^27.5.1",
4646
"@types/node": "^15.0.1",
47-
"@types/react": "^18.0.5",
48-
"@types/react-dom": "^18.0.5",
47+
"@types/react": "^19.0.0",
48+
"@types/react-dom": "^19.0.0",
4949
"cross-env": "^7.0.3",
5050
"gh-pages": "^3.1.0",
5151
"microbundle-crl": "^0.13.11",
@@ -62,5 +62,8 @@
6262
},
6363
"files": [
6464
"dist"
65-
]
65+
],
66+
"dependencies": {
67+
"@uidotdev/usehooks": "^2.4.1"
68+
}
6669
}

0 commit comments

Comments
 (0)