@tanstack/react-table 8.6.0 → 8.7.0

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.
@@ -1,90 +0,0 @@
1
- {
2
- "version": 2,
3
- "tree": {
4
- "name": "root",
5
- "children": [
6
- {
7
- "name": "index.production.js",
8
- "children": [
9
- {
10
- "name": "packages",
11
- "children": [
12
- {
13
- "name": "table-core/build/esm/index.js",
14
- "uid": "7238-132"
15
- },
16
- {
17
- "name": "react-table/src/index.tsx",
18
- "uid": "7238-134"
19
- }
20
- ]
21
- }
22
- ]
23
- }
24
- ],
25
- "isRoot": true
26
- },
27
- "nodeParts": {
28
- "7238-132": {
29
- "renderedLength": 126934,
30
- "gzipLength": 22466,
31
- "brotliLength": 0,
32
- "mainUid": "7238-131"
33
- },
34
- "7238-134": {
35
- "renderedLength": 1923,
36
- "gzipLength": 755,
37
- "brotliLength": 0,
38
- "mainUid": "7238-133"
39
- }
40
- },
41
- "nodeMetas": {
42
- "7238-131": {
43
- "id": "/packages/table-core/build/esm/index.js",
44
- "moduleParts": {
45
- "index.production.js": "7238-132"
46
- },
47
- "imported": [],
48
- "importedBy": [
49
- {
50
- "uid": "7238-133"
51
- }
52
- ]
53
- },
54
- "7238-133": {
55
- "id": "/packages/react-table/src/index.tsx",
56
- "moduleParts": {
57
- "index.production.js": "7238-134"
58
- },
59
- "imported": [
60
- {
61
- "uid": "7238-135"
62
- },
63
- {
64
- "uid": "7238-131"
65
- }
66
- ],
67
- "importedBy": [],
68
- "isEntry": true
69
- },
70
- "7238-135": {
71
- "id": "react",
72
- "moduleParts": {},
73
- "imported": [],
74
- "importedBy": [
75
- {
76
- "uid": "7238-133"
77
- }
78
- ],
79
- "isExternal": true
80
- }
81
- },
82
- "env": {
83
- "rollup": "2.79.1"
84
- },
85
- "options": {
86
- "gzip": true,
87
- "brotli": false,
88
- "sourcemap": false
89
- }
90
- }
@@ -1,20 +0,0 @@
1
- /**
2
- * react-table
3
- *
4
- * Copyright (c) TanStack
5
- *
6
- * This source code is licensed under the MIT license found in the
7
- * LICENSE.md file in the root directory of this source tree.
8
- *
9
- * @license MIT
10
- */
11
- import * as _tanstack_table_core from '@tanstack/table-core';
12
- import { RowData, TableOptions } from '@tanstack/table-core';
13
- export * from '@tanstack/table-core';
14
- import * as React from 'react';
15
-
16
- type Renderable<TProps> = React.ReactNode | React.ComponentType<TProps>;
17
- declare function flexRender<TProps extends object>(Comp: Renderable<TProps>, props: TProps): React.ReactNode | JSX.Element;
18
- declare function useReactTable<TData extends RowData>(options: TableOptions<TData>): _tanstack_table_core.Table<TData>;
19
-
20
- export { Renderable, flexRender, useReactTable };