@hillac/mantine-react-table 0.0.0 → 0.0.1
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 +10 -16
- package/UPSTREAM.md +3 -6
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -1,21 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @hillac/mantine-react-table
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
An ESM-only build of the reusable Mantine React Table implementation
|
|
4
|
+
from the TanStack Table beta examples.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
The example application, Faker data, example tables, Vite
|
|
7
|
+
configuration, and tests are not included.
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
```json
|
|
14
|
-
{
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"mantine-react-table": "github:OWNER/REPOSITORY#package"
|
|
17
|
-
}
|
|
18
|
-
}
|
|
11
|
+
```bash
|
|
12
|
+
npm install @hillac/mantine-react-table
|
|
19
13
|
```
|
|
20
14
|
|
|
21
15
|
## Usage
|
|
@@ -25,12 +19,12 @@ import {
|
|
|
25
19
|
MantineReactTable,
|
|
26
20
|
createMRTColumnHelper,
|
|
27
21
|
useMantineReactTable,
|
|
28
|
-
} from 'mantine-react-table'
|
|
22
|
+
} from '@hillac/mantine-react-table'
|
|
29
23
|
|
|
30
|
-
import 'mantine-react-table/styles.css'
|
|
24
|
+
import '@hillac/mantine-react-table/styles.css'
|
|
31
25
|
```
|
|
32
26
|
|
|
33
|
-
|
|
27
|
+
Applications must also load Mantine's normal styles:
|
|
34
28
|
|
|
35
29
|
```tsx
|
|
36
30
|
import '@mantine/core/styles.css'
|
package/UPSTREAM.md
CHANGED
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
- Repository: https://github.com/TanStack/table
|
|
4
4
|
- Ref: `beta`
|
|
5
|
-
- Source
|
|
6
|
-
- Commit: `
|
|
5
|
+
- Source: `examples/react/mantine-react-table/src/mantine-react-table`
|
|
6
|
+
- Commit: `00bccc405fb8e366a436f3434c9cb9d0034ccc07`
|
|
7
7
|
|
|
8
|
-
Only the reusable Mantine React Table implementation is
|
|
9
|
-
|
|
10
|
-
The example entry point, example tables, Faker data, Vite
|
|
11
|
-
configuration, and tests are excluded.
|
|
8
|
+
Only the reusable Mantine React Table implementation is included.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hillac/mantine-react-table",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Mantine React Table built from the TanStack Table
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Mantine React Table built from the TanStack Table example",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": [
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"build": "rollup --config rollup.config.mjs",
|
|
30
30
|
"typecheck": "tsc --noEmit"
|
|
31
31
|
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public",
|
|
34
|
+
"registry": "https://registry.npmjs.org"
|
|
35
|
+
},
|
|
32
36
|
"peerDependencies": {
|
|
33
37
|
"@mantine/core": "^9.5.0",
|
|
34
38
|
"@mantine/dates": "^9.5.0",
|
|
@@ -42,7 +46,7 @@
|
|
|
42
46
|
"dependencies": {
|
|
43
47
|
"@tanstack/match-sorter-utils": "^9.0.0-beta.53",
|
|
44
48
|
"@tanstack/react-store": "^0.11.0",
|
|
45
|
-
"@tanstack/react-table": "^9.0.0-beta.
|
|
49
|
+
"@tanstack/react-table": "^9.0.0-beta.78",
|
|
46
50
|
"@tanstack/react-virtual": "^3.14.9"
|
|
47
51
|
},
|
|
48
52
|
"devDependencies": {
|
|
@@ -69,7 +73,11 @@
|
|
|
69
73
|
},
|
|
70
74
|
"repository": {
|
|
71
75
|
"type": "git",
|
|
72
|
-
"url": "https://github.com/hillac/mrt-package.git"
|
|
76
|
+
"url": "git+https://github.com/hillac/mrt-package.git"
|
|
77
|
+
},
|
|
78
|
+
"bugs": {
|
|
79
|
+
"url": "https://github.com/hillac/mrt-package/issues"
|
|
73
80
|
},
|
|
74
|
-
"
|
|
81
|
+
"homepage": "https://github.com/hillac/mrt-package#readme",
|
|
82
|
+
"xUpstreamRevision": "00bccc405fb8e366a436f3434c9cb9d0034ccc07"
|
|
75
83
|
}
|