iris-gantt 1.0.2 → 1.0.4
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/README.md +3 -3
- package/USAGE.md +1 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npm install iris-gantt
|
|
|
16
16
|
### 2. Install Peer Dependencies
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install react react-dom antd dayjs @fortawesome/react-fontawesome @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons
|
|
19
|
+
npm install react react-dom antd@^5.29.3 dayjs @fortawesome/react-fontawesome@^3.1.0 @fortawesome/fontawesome-svg-core@^7.1.0 @fortawesome/free-solid-svg-icons@^7.1.0
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
### 3. Use in Your Component
|
|
@@ -55,7 +55,7 @@ function App() {
|
|
|
55
55
|
### Option 1: Install Everything at Once
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
npm install iris-gantt react react-dom antd dayjs @fortawesome/react-fontawesome @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons
|
|
58
|
+
npm install iris-gantt react react-dom antd@^5.29.3 dayjs @fortawesome/react-fontawesome@^3.1.0 @fortawesome/fontawesome-svg-core@^7.1.0 @fortawesome/free-solid-svg-icons@^7.1.0
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
### Option 2: Install Separately
|
|
@@ -65,7 +65,7 @@ npm install iris-gantt react react-dom antd dayjs @fortawesome/react-fontawesome
|
|
|
65
65
|
npm install iris-gantt
|
|
66
66
|
|
|
67
67
|
# Install peer dependencies
|
|
68
|
-
npm install react react-dom antd dayjs @fortawesome/react-fontawesome @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons
|
|
68
|
+
npm install react react-dom antd@^5.29.3 dayjs @fortawesome/react-fontawesome@^3.1.0 @fortawesome/fontawesome-svg-core@^7.1.0 @fortawesome/free-solid-svg-icons@^7.1.0
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
## 💻 Basic Usage
|
package/USAGE.md
CHANGED
|
@@ -27,7 +27,7 @@ npm install iris-gantt
|
|
|
27
27
|
### Install Peer Dependencies
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
npm install react react-dom antd dayjs @fortawesome/react-fontawesome @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons
|
|
30
|
+
npm install react react-dom antd@^5.29.3 dayjs @fortawesome/react-fontawesome@^3.1.0 @fortawesome/fontawesome-svg-core@^7.1.0 @fortawesome/free-solid-svg-icons@^7.1.0
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
**Note:** These are required peer dependencies. Make sure they're installed in your project.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iris-gantt",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A comprehensive, production-ready Gantt chart component built with React and TypeScript. Easy to install, simple to use.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gantt",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"build-storybook": "storybook build"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"react": "^18.
|
|
57
|
-
"react-dom": "^18.
|
|
58
|
-
"antd": "^
|
|
56
|
+
"react": "^18.3.1",
|
|
57
|
+
"react-dom": "^18.3.1",
|
|
58
|
+
"antd": "^5.29.3",
|
|
59
59
|
"dayjs": "^1.11.0",
|
|
60
60
|
"@fortawesome/react-fontawesome": "^3.1.0",
|
|
61
61
|
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
@@ -75,8 +75,10 @@
|
|
|
75
75
|
"@storybook/addon-vitest": "^10.1.11",
|
|
76
76
|
"@storybook/react-vite": "^10.1.11",
|
|
77
77
|
"@types/node": "^24.10.1",
|
|
78
|
-
"@types/react": "^
|
|
79
|
-
"@types/react-dom": "^
|
|
78
|
+
"@types/react": "^18.3.0",
|
|
79
|
+
"@types/react-dom": "^18.3.0",
|
|
80
|
+
"react": "^18.3.1",
|
|
81
|
+
"react-dom": "^18.3.1",
|
|
80
82
|
"@vitejs/plugin-react": "^5.1.1",
|
|
81
83
|
"@vitest/browser-playwright": "^4.0.17",
|
|
82
84
|
"@vitest/coverage-v8": "^4.0.17",
|