@tanstack/table-core 8.0.0-alpha.36 → 8.0.0-alpha.40
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/build/cjs/core.js.map +1 -1
- package/build/cjs/createTable.js.map +1 -1
- package/build/cjs/features/ColumnSizing.js.map +1 -1
- package/build/cjs/features/Expanding.js.map +1 -1
- package/build/cjs/features/Sorting.js.map +1 -1
- package/build/cjs/utils.js.map +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +297 -297
- package/build/types/features/Expanding.d.ts +0 -1
- package/build/types/features/Sorting.d.ts +0 -1
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +2 -6
- package/src/{core.tsx → core.ts} +0 -1
- package/src/{createTable.tsx → createTable.ts} +0 -0
- package/src/features/ColumnSizing.ts +4 -4
- package/src/features/Expanding.ts +2 -3
- package/src/features/Sorting.ts +1 -2
- /package/src/{index.tsx → index.ts} +0 -0
- /package/src/{utils.tsx → utils.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/table-core",
|
|
3
3
|
"author": "Tanner Linsley",
|
|
4
|
-
"version": "8.0.0-alpha.
|
|
4
|
+
"version": "8.0.0-alpha.40",
|
|
5
5
|
"description": "Hooks for building lightweight, fast and extendable datagrids for React",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/tanstack/react-table#readme",
|
|
@@ -34,9 +34,5 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"build",
|
|
36
36
|
"src"
|
|
37
|
-
]
|
|
38
|
-
"peerDependencies": {
|
|
39
|
-
"react": ">=16",
|
|
40
|
-
"react-dom": ">=16"
|
|
41
|
-
}
|
|
37
|
+
]
|
|
42
38
|
}
|
package/src/{core.tsx → core.ts}
RENAMED
|
@@ -47,7 +47,6 @@ import { Sorting } from './features/Sorting'
|
|
|
47
47
|
import { Visibility } from './features/Visibility'
|
|
48
48
|
import { Headers } from './features/Headers'
|
|
49
49
|
import { mean } from './aggregationTypes'
|
|
50
|
-
import React from 'react'
|
|
51
50
|
|
|
52
51
|
const features: TableFeature[] = [
|
|
53
52
|
Headers,
|
|
File without changes
|
|
@@ -381,12 +381,12 @@ export const ColumnSizing = {
|
|
|
381
381
|
title: 'Toggle Grouping',
|
|
382
382
|
draggable: false,
|
|
383
383
|
role: 'separator',
|
|
384
|
-
onMouseDown: (e: MouseEvent
|
|
385
|
-
e.persist?.()
|
|
384
|
+
onMouseDown: (e: MouseEvent) => {
|
|
385
|
+
;(e as any).persist?.()
|
|
386
386
|
onResizeStart(e)
|
|
387
387
|
},
|
|
388
|
-
onTouchStart: (e: TouchEvent
|
|
389
|
-
e.persist?.()
|
|
388
|
+
onTouchStart: (e: TouchEvent) => {
|
|
389
|
+
;(e as any).persist?.()
|
|
390
390
|
onResizeStart(e)
|
|
391
391
|
},
|
|
392
392
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { MouseEvent, TouchEvent } from 'react'
|
|
2
1
|
import { RowModel } from '..'
|
|
3
2
|
import {
|
|
4
3
|
Getter,
|
|
@@ -213,7 +212,7 @@ export const Expanding = {
|
|
|
213
212
|
title: canExpand ? 'Toggle Expanded' : undefined,
|
|
214
213
|
onClick: canExpand
|
|
215
214
|
? (e: MouseEvent | TouchEvent) => {
|
|
216
|
-
e.persist?.()
|
|
215
|
+
;(e as any).persist?.()
|
|
217
216
|
instance.toggleRowExpanded(rowId)
|
|
218
217
|
}
|
|
219
218
|
: undefined,
|
|
@@ -225,7 +224,7 @@ export const Expanding = {
|
|
|
225
224
|
const initialProps: ToggleExpandedProps = {
|
|
226
225
|
title: 'Toggle All Expanded',
|
|
227
226
|
onClick: (e: MouseEvent | TouchEvent) => {
|
|
228
|
-
e.persist?.()
|
|
227
|
+
;(e as any).persist?.()
|
|
229
228
|
instance.toggleAllRowsExpanded()
|
|
230
229
|
},
|
|
231
230
|
}
|
package/src/features/Sorting.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { MouseEvent, TouchEvent } from 'react'
|
|
2
1
|
import { RowModel } from '..'
|
|
3
2
|
import { BuiltInSortType, reSplitAlphaNumeric, sortTypes } from '../sortTypes'
|
|
4
3
|
|
|
@@ -430,7 +429,7 @@ export const Sorting = {
|
|
|
430
429
|
title: canSort ? 'Toggle Sorting' : undefined,
|
|
431
430
|
onClick: canSort
|
|
432
431
|
? (e: MouseEvent | TouchEvent) => {
|
|
433
|
-
e.persist?.()
|
|
432
|
+
;(e as any).persist?.()
|
|
434
433
|
column.toggleSorting?.(
|
|
435
434
|
undefined,
|
|
436
435
|
column.getCanMultiSort()
|
|
File without changes
|
|
File without changes
|