react-glide-table 1.0.1 → 1.0.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/README.md +8 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -45,23 +45,21 @@ These Glide features are **not** included: Canvas custom cell drawing, frozen/pi
|
|
|
45
45
|
|
|
46
46
|
## Requirements
|
|
47
47
|
|
|
48
|
-
| Package | Version |
|
|
49
|
-
| --- | --- |
|
|
50
|
-
| `react` | `^18` or `^19` |
|
|
51
|
-
| `react-dom` | `^18` or `^19` |
|
|
52
|
-
| `@tanstack/react-table` | `^8` |
|
|
53
|
-
| `@tanstack/react-virtual` | `^3` |
|
|
48
|
+
| Package | Version | Notes |
|
|
49
|
+
| --- | --- | --- |
|
|
50
|
+
| `react` | `^18` or `^19` | Peer dependency — provided by your app |
|
|
51
|
+
| `react-dom` | `^18` or `^19` | Peer dependency — provided by your app |
|
|
54
52
|
|
|
55
|
-
|
|
53
|
+
`@tanstack/react-table` and `@tanstack/react-virtual` are installed automatically with this package.
|
|
56
54
|
|
|
57
55
|
## Installation
|
|
58
56
|
|
|
59
57
|
```bash
|
|
60
|
-
npm install react-glide-table
|
|
58
|
+
npm install react-glide-table
|
|
61
59
|
# or
|
|
62
|
-
pnpm add react-glide-table
|
|
60
|
+
pnpm add react-glide-table
|
|
63
61
|
# or
|
|
64
|
-
yarn add react-glide-table
|
|
62
|
+
yarn add react-glide-table
|
|
65
63
|
```
|
|
66
64
|
|
|
67
65
|
Import styles once at your app entry (or layout):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-glide-table",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/zpxlffjrm/react-glide-table.git"
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"typecheck": "tsc"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@tanstack/react-table": "^8.0.0",
|
|
34
|
-
"@tanstack/react-virtual": "^3.0.0",
|
|
35
33
|
"react": "^18.0.0 || ^19.0.0",
|
|
36
34
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
37
35
|
},
|
|
38
|
-
"
|
|
36
|
+
"dependencies": {
|
|
39
37
|
"@tanstack/react-table": "^8.21.3",
|
|
40
|
-
"@tanstack/react-virtual": "^3.14.7"
|
|
38
|
+
"@tanstack/react-virtual": "^3.14.7"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
41
|
"@testing-library/jest-dom": "^7.0.0",
|
|
42
42
|
"@testing-library/react": "^16.3.2",
|
|
43
43
|
"@testing-library/user-event": "^14.6.1",
|