@tanstack/table-core
Advanced tools
Comparing version 8.0.0-alpha.60 to 8.0.0-alpha.61
@@ -36,5 +36,3 @@ /** | ||
return { | ||
queueResetExpanded: function queueResetExpanded() { | ||
instance.queueResetPageIndex(); | ||
_autoResetExpanded: function _autoResetExpanded() { | ||
if (!registered) { | ||
@@ -41,0 +39,0 @@ registered = true; |
@@ -37,5 +37,3 @@ /** | ||
onGlobalFilterChange: utils.makeStateUpdater('globalFilter', instance), | ||
autoResetColumnFilters: true, | ||
filterFromLeafRows: true, | ||
autoResetGlobalFilter: true, | ||
globalFilterFn: 'auto', | ||
@@ -127,24 +125,3 @@ getColumnCanGlobalFilterFn: function getColumnCanGlobalFilterFn(column) { | ||
createInstance: function createInstance(instance) { | ||
var registered = false; | ||
return { | ||
queueResetFilters: function queueResetFilters() { | ||
instance.queueResetSorting(); | ||
if (!registered) { | ||
registered = true; | ||
return; | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return; | ||
} | ||
if (instance.options.autoResetAll === true || instance.options.autoResetColumnFilters) { | ||
instance.resetColumnFilters(); | ||
} | ||
if (instance.options.autoResetAll === true || instance.options.autoResetGlobalFilter) { | ||
instance.resetGlobalFilter(); | ||
} | ||
}, | ||
getColumnAutoFilterFn: function getColumnAutoFilterFn(columnId) { | ||
@@ -151,0 +128,0 @@ var firstRow = instance.getCoreRowModel().flatRows[0]; |
@@ -33,3 +33,2 @@ /** | ||
onGroupingChange: utils.makeStateUpdater('grouping', instance), | ||
autoResetGrouping: true, | ||
groupedColumnMode: 'reorder' | ||
@@ -59,20 +58,3 @@ }; | ||
createInstance: function createInstance(instance) { | ||
var registered = false; | ||
return { | ||
queueResetGrouping: function queueResetGrouping() { | ||
instance.queueResetExpanded(); | ||
if (!registered) { | ||
registered = true; | ||
return; | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return; | ||
} | ||
if (instance.options.autoResetAll === true || instance.options.autoResetGrouping) { | ||
instance.resetGrouping(); | ||
} | ||
}, | ||
getColumnAutoAggregationFn: function getColumnAutoAggregationFn(columnId) { | ||
@@ -79,0 +61,0 @@ var firstRow = instance.getCoreRowModel().flatRows[0]; |
@@ -38,3 +38,3 @@ /** | ||
return { | ||
queueResetPageIndex: function queueResetPageIndex() { | ||
_autoResetPageIndex: function _autoResetPageIndex() { | ||
if (!registered) { | ||
@@ -41,0 +41,0 @@ registered = true; |
@@ -28,3 +28,2 @@ /** | ||
onRowSelectionChange: utils.makeStateUpdater('rowSelection', instance), | ||
autoResetRowSelection: true, | ||
enableRowSelection: true, | ||
@@ -39,19 +38,3 @@ enableMultiRowSelection: true, | ||
createInstance: function createInstance(instance) { | ||
var registered = false; // const pageRows = instance.getPageRows() | ||
return { | ||
queueResetRowSelection: function queueResetRowSelection() { | ||
if (!registered) { | ||
registered = true; | ||
return; | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return; | ||
} | ||
if (instance.options.autoResetAll === true || instance.options.autoResetRowSelection) { | ||
instance.resetRowSelection(); | ||
} | ||
}, | ||
setRowSelection: function setRowSelection(updater) { | ||
@@ -186,7 +169,2 @@ return instance.options.onRowSelectionChange == null ? void 0 : instance.options.onRowSelectionChange(updater); | ||
return (_instance$options$deb = instance.options.debugAll) != null ? _instance$options$deb : instance.options.debugTable; | ||
}, | ||
onChange: function onChange() { | ||
instance.queue(function () { | ||
return instance.queueResetExpanded(); | ||
}); | ||
} | ||
@@ -212,7 +190,2 @@ }), | ||
return (_instance$options$deb2 = instance.options.debugAll) != null ? _instance$options$deb2 : instance.options.debugTable; | ||
}, | ||
onChange: function onChange() { | ||
return instance.queue(function () { | ||
return instance.queueResetExpanded(); | ||
}); | ||
} | ||
@@ -238,7 +211,2 @@ }), | ||
return (_instance$options$deb3 = instance.options.debugAll) != null ? _instance$options$deb3 : instance.options.debugTable; | ||
}, | ||
onChange: function onChange() { | ||
return instance.queue(function () { | ||
return instance.queueResetExpanded(); | ||
}); | ||
} | ||
@@ -245,0 +213,0 @@ }), |
@@ -34,3 +34,2 @@ /** | ||
onSortingChange: utils.makeStateUpdater('sorting', instance), | ||
autoResetSorting: true, | ||
isMultiSortEvent: function isMultiSortEvent(e) { | ||
@@ -68,20 +67,3 @@ return e.shiftKey; | ||
createInstance: function createInstance(instance) { | ||
var registered = false; | ||
return { | ||
queueResetSorting: function queueResetSorting() { | ||
instance.queueResetGrouping(); | ||
if (!registered) { | ||
registered = true; | ||
return; | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return; | ||
} | ||
if (instance.options.autoResetAll === true || instance.options.autoResetSorting) { | ||
instance.resetSorting(); | ||
} | ||
}, | ||
getColumnAutoSortingFn: function getColumnAutoSortingFn(columnId) { | ||
@@ -88,0 +70,0 @@ var firstRows = instance.getGlobalFilteredRowModel().flatRows.slice(100); |
@@ -107,3 +107,3 @@ /** | ||
instance.queue(function () { | ||
instance.queueResetSorting(); | ||
instance._autoResetPageIndex(); | ||
}); | ||
@@ -110,0 +110,0 @@ } |
@@ -117,4 +117,3 @@ /** | ||
instance.queue(function () { | ||
instance.queueResetFilters(); | ||
instance.queueResetRowSelection(); | ||
instance._autoResetPageIndex(); | ||
}); | ||
@@ -121,0 +120,0 @@ } |
@@ -94,4 +94,3 @@ /** | ||
instance.queue(function () { | ||
instance.queueResetFilters(); | ||
instance.queueResetRowSelection(); | ||
instance._autoResetPageIndex(); | ||
}); | ||
@@ -98,0 +97,0 @@ } |
@@ -83,3 +83,3 @@ /** | ||
instance.queue(function () { | ||
instance.queueResetSorting(); | ||
instance._autoResetPageIndex(); | ||
}); | ||
@@ -86,0 +86,0 @@ } |
@@ -152,3 +152,5 @@ /** | ||
instance.queue(function () { | ||
instance.queueResetExpanded(); | ||
instance._autoResetExpanded(); | ||
instance._autoResetPageIndex(); | ||
}); | ||
@@ -155,0 +157,0 @@ } |
@@ -110,3 +110,3 @@ /** | ||
instance.queue(function () { | ||
instance.queueResetGrouping(); | ||
instance._autoResetPageIndex(); | ||
}); | ||
@@ -113,0 +113,0 @@ } |
@@ -10,3 +10,3 @@ { | ||
{ | ||
"uid": "60dc-64", | ||
"uid": "5ba1-64", | ||
"name": "\u0000rollupPluginBabelHelpers.js" | ||
@@ -18,3 +18,3 @@ }, | ||
{ | ||
"uid": "60dc-66", | ||
"uid": "5ba1-66", | ||
"name": "utils.ts" | ||
@@ -26,55 +26,55 @@ }, | ||
{ | ||
"uid": "60dc-68", | ||
"uid": "5ba1-68", | ||
"name": "Columns.ts" | ||
}, | ||
{ | ||
"uid": "60dc-70", | ||
"uid": "5ba1-70", | ||
"name": "Rows.ts" | ||
}, | ||
{ | ||
"uid": "60dc-72", | ||
"uid": "5ba1-72", | ||
"name": "Cells.ts" | ||
}, | ||
{ | ||
"uid": "60dc-74", | ||
"uid": "5ba1-74", | ||
"name": "ColumnSizing.ts" | ||
}, | ||
{ | ||
"uid": "60dc-76", | ||
"uid": "5ba1-76", | ||
"name": "Expanding.ts" | ||
}, | ||
{ | ||
"uid": "60dc-80", | ||
"uid": "5ba1-80", | ||
"name": "Filters.ts" | ||
}, | ||
{ | ||
"uid": "60dc-84", | ||
"uid": "5ba1-84", | ||
"name": "Grouping.ts" | ||
}, | ||
{ | ||
"uid": "60dc-86", | ||
"uid": "5ba1-86", | ||
"name": "Ordering.ts" | ||
}, | ||
{ | ||
"uid": "60dc-88", | ||
"uid": "5ba1-88", | ||
"name": "Pagination.ts" | ||
}, | ||
{ | ||
"uid": "60dc-90", | ||
"uid": "5ba1-90", | ||
"name": "Pinning.ts" | ||
}, | ||
{ | ||
"uid": "60dc-92", | ||
"uid": "5ba1-92", | ||
"name": "RowSelection.ts" | ||
}, | ||
{ | ||
"uid": "60dc-96", | ||
"uid": "5ba1-96", | ||
"name": "Sorting.ts" | ||
}, | ||
{ | ||
"uid": "60dc-98", | ||
"uid": "5ba1-98", | ||
"name": "Visibility.ts" | ||
}, | ||
{ | ||
"uid": "60dc-100", | ||
"uid": "5ba1-100", | ||
"name": "Headers.ts" | ||
@@ -85,19 +85,19 @@ } | ||
{ | ||
"uid": "60dc-78", | ||
"uid": "5ba1-78", | ||
"name": "filterFns.ts" | ||
}, | ||
{ | ||
"uid": "60dc-82", | ||
"uid": "5ba1-82", | ||
"name": "aggregationFns.ts" | ||
}, | ||
{ | ||
"uid": "60dc-94", | ||
"uid": "5ba1-94", | ||
"name": "sortingFns.ts" | ||
}, | ||
{ | ||
"uid": "60dc-102", | ||
"uid": "5ba1-102", | ||
"name": "core.ts" | ||
}, | ||
{ | ||
"uid": "60dc-104", | ||
"uid": "5ba1-104", | ||
"name": "createTable.ts" | ||
@@ -109,35 +109,35 @@ }, | ||
{ | ||
"uid": "60dc-106", | ||
"uid": "5ba1-106", | ||
"name": "getCoreRowModelSync.ts" | ||
}, | ||
{ | ||
"uid": "60dc-108", | ||
"uid": "5ba1-108", | ||
"name": "getCoreRowModelAsync.ts" | ||
}, | ||
{ | ||
"uid": "60dc-110", | ||
"uid": "5ba1-110", | ||
"name": "filterRowsUtils.ts" | ||
}, | ||
{ | ||
"uid": "60dc-112", | ||
"uid": "5ba1-112", | ||
"name": "getColumnFilteredRowModelSync.ts" | ||
}, | ||
{ | ||
"uid": "60dc-114", | ||
"uid": "5ba1-114", | ||
"name": "getGlobalFilteredRowModelSync.ts" | ||
}, | ||
{ | ||
"uid": "60dc-116", | ||
"uid": "5ba1-116", | ||
"name": "getSortedRowModelSync.ts" | ||
}, | ||
{ | ||
"uid": "60dc-118", | ||
"uid": "5ba1-118", | ||
"name": "getGroupedRowModel.ts" | ||
}, | ||
{ | ||
"uid": "60dc-120", | ||
"uid": "5ba1-120", | ||
"name": "getExpandedRowModel.ts" | ||
}, | ||
{ | ||
"uid": "60dc-122", | ||
"uid": "5ba1-122", | ||
"name": "getPaginationRowModel.ts" | ||
@@ -148,3 +148,3 @@ } | ||
{ | ||
"uid": "60dc-124", | ||
"uid": "5ba1-124", | ||
"name": "index.ts" | ||
@@ -160,194 +160,194 @@ } | ||
"nodeParts": { | ||
"60dc-64": { | ||
"5ba1-64": { | ||
"renderedLength": 2695, | ||
"gzipLength": 1065, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-63" | ||
"mainUid": "5ba1-63" | ||
}, | ||
"60dc-66": { | ||
"5ba1-66": { | ||
"renderedLength": 7408, | ||
"gzipLength": 1895, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-65" | ||
"mainUid": "5ba1-65" | ||
}, | ||
"60dc-68": { | ||
"5ba1-68": { | ||
"renderedLength": 7169, | ||
"gzipLength": 1386, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-67" | ||
"mainUid": "5ba1-67" | ||
}, | ||
"60dc-70": { | ||
"5ba1-70": { | ||
"renderedLength": 2013, | ||
"gzipLength": 671, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-69" | ||
"mainUid": "5ba1-69" | ||
}, | ||
"60dc-72": { | ||
"5ba1-72": { | ||
"renderedLength": 2415, | ||
"gzipLength": 642, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-71" | ||
"mainUid": "5ba1-71" | ||
}, | ||
"60dc-74": { | ||
"5ba1-74": { | ||
"renderedLength": 13618, | ||
"gzipLength": 2498, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-73" | ||
"mainUid": "5ba1-73" | ||
}, | ||
"60dc-76": { | ||
"renderedLength": 7196, | ||
"gzipLength": 1519, | ||
"5ba1-76": { | ||
"renderedLength": 7153, | ||
"gzipLength": 1498, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-75" | ||
"mainUid": "5ba1-75" | ||
}, | ||
"60dc-78": { | ||
"5ba1-78": { | ||
"renderedLength": 4925, | ||
"gzipLength": 807, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-77" | ||
"mainUid": "5ba1-77" | ||
}, | ||
"60dc-80": { | ||
"renderedLength": 13955, | ||
"gzipLength": 2506, | ||
"5ba1-80": { | ||
"renderedLength": 13250, | ||
"gzipLength": 2394, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-79" | ||
"mainUid": "5ba1-79" | ||
}, | ||
"60dc-82": { | ||
"5ba1-82": { | ||
"renderedLength": 2672, | ||
"gzipLength": 771, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-81" | ||
"mainUid": "5ba1-81" | ||
}, | ||
"60dc-84": { | ||
"renderedLength": 7847, | ||
"gzipLength": 1627, | ||
"5ba1-84": { | ||
"renderedLength": 7344, | ||
"gzipLength": 1521, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-83" | ||
"mainUid": "5ba1-83" | ||
}, | ||
"60dc-86": { | ||
"5ba1-86": { | ||
"renderedLength": 2586, | ||
"gzipLength": 794, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-85" | ||
"mainUid": "5ba1-85" | ||
}, | ||
"60dc-88": { | ||
"5ba1-88": { | ||
"renderedLength": 6033, | ||
"gzipLength": 1248, | ||
"gzipLength": 1245, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-87" | ||
"mainUid": "5ba1-87" | ||
}, | ||
"60dc-90": { | ||
"5ba1-90": { | ||
"renderedLength": 12828, | ||
"gzipLength": 1658, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-89" | ||
"mainUid": "5ba1-89" | ||
}, | ||
"60dc-92": { | ||
"renderedLength": 16516, | ||
"gzipLength": 2789, | ||
"5ba1-92": { | ||
"renderedLength": 15485, | ||
"gzipLength": 2661, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-91" | ||
"mainUid": "5ba1-91" | ||
}, | ||
"60dc-94": { | ||
"5ba1-94": { | ||
"renderedLength": 2753, | ||
"gzipLength": 846, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-93" | ||
"mainUid": "5ba1-93" | ||
}, | ||
"60dc-96": { | ||
"renderedLength": 11640, | ||
"gzipLength": 2428, | ||
"5ba1-96": { | ||
"renderedLength": 11142, | ||
"gzipLength": 2332, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-95" | ||
"mainUid": "5ba1-95" | ||
}, | ||
"60dc-98": { | ||
"5ba1-98": { | ||
"renderedLength": 6959, | ||
"gzipLength": 1289, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-97" | ||
"mainUid": "5ba1-97" | ||
}, | ||
"60dc-100": { | ||
"5ba1-100": { | ||
"renderedLength": 18481, | ||
"gzipLength": 2898, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-99" | ||
"mainUid": "5ba1-99" | ||
}, | ||
"60dc-102": { | ||
"5ba1-102": { | ||
"renderedLength": 3427, | ||
"gzipLength": 914, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-101" | ||
"mainUid": "5ba1-101" | ||
}, | ||
"60dc-104": { | ||
"5ba1-104": { | ||
"renderedLength": 1882, | ||
"gzipLength": 562, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-103" | ||
"mainUid": "5ba1-103" | ||
}, | ||
"60dc-106": { | ||
"renderedLength": 2462, | ||
"gzipLength": 797, | ||
"5ba1-106": { | ||
"renderedLength": 2417, | ||
"gzipLength": 792, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-105" | ||
"mainUid": "5ba1-105" | ||
}, | ||
"60dc-108": { | ||
"renderedLength": 3559, | ||
"gzipLength": 1014, | ||
"5ba1-108": { | ||
"renderedLength": 3514, | ||
"gzipLength": 1006, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-107" | ||
"mainUid": "5ba1-107" | ||
}, | ||
"60dc-110": { | ||
"5ba1-110": { | ||
"renderedLength": 2457, | ||
"gzipLength": 568, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-109" | ||
"mainUid": "5ba1-109" | ||
}, | ||
"60dc-112": { | ||
"renderedLength": 3130, | ||
"gzipLength": 892, | ||
"5ba1-112": { | ||
"renderedLength": 3132, | ||
"gzipLength": 897, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-111" | ||
"mainUid": "5ba1-111" | ||
}, | ||
"60dc-114": { | ||
"renderedLength": 2469, | ||
"gzipLength": 693, | ||
"5ba1-114": { | ||
"renderedLength": 2471, | ||
"gzipLength": 698, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-113" | ||
"mainUid": "5ba1-113" | ||
}, | ||
"60dc-116": { | ||
"renderedLength": 3437, | ||
"gzipLength": 1020, | ||
"5ba1-116": { | ||
"renderedLength": 3438, | ||
"gzipLength": 1024, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-115" | ||
"mainUid": "5ba1-115" | ||
}, | ||
"60dc-118": { | ||
"renderedLength": 5782, | ||
"gzipLength": 1525, | ||
"5ba1-118": { | ||
"renderedLength": 5827, | ||
"gzipLength": 1540, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-117" | ||
"mainUid": "5ba1-117" | ||
}, | ||
"60dc-120": { | ||
"5ba1-120": { | ||
"renderedLength": 1385, | ||
"gzipLength": 494, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-119" | ||
"mainUid": "5ba1-119" | ||
}, | ||
"60dc-122": { | ||
"5ba1-122": { | ||
"renderedLength": 1254, | ||
"gzipLength": 407, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-121" | ||
"mainUid": "5ba1-121" | ||
}, | ||
"60dc-124": { | ||
"5ba1-124": { | ||
"renderedLength": 0, | ||
"gzipLength": 0, | ||
"brotliLength": 0, | ||
"mainUid": "60dc-123" | ||
"mainUid": "5ba1-123" | ||
} | ||
}, | ||
"nodeMetas": { | ||
"60dc-63": { | ||
"5ba1-63": { | ||
"id": "\u0000rollupPluginBabelHelpers.js", | ||
"moduleParts": { | ||
"index.production.js": "60dc-64" | ||
"index.production.js": "5ba1-64" | ||
}, | ||
@@ -357,50 +357,50 @@ "imported": [], | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
}, | ||
{ | ||
"uid": "60dc-103" | ||
"uid": "5ba1-103" | ||
}, | ||
{ | ||
"uid": "60dc-73" | ||
"uid": "5ba1-73" | ||
}, | ||
{ | ||
"uid": "60dc-75" | ||
"uid": "5ba1-75" | ||
}, | ||
{ | ||
"uid": "60dc-87" | ||
"uid": "5ba1-87" | ||
}, | ||
{ | ||
"uid": "60dc-89" | ||
"uid": "5ba1-89" | ||
}, | ||
{ | ||
"uid": "60dc-91" | ||
"uid": "5ba1-91" | ||
}, | ||
{ | ||
"uid": "60dc-95" | ||
"uid": "5ba1-95" | ||
}, | ||
{ | ||
"uid": "60dc-97" | ||
"uid": "5ba1-97" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-107" | ||
"uid": "5ba1-107" | ||
}, | ||
{ | ||
"uid": "60dc-67" | ||
"uid": "5ba1-67" | ||
}, | ||
{ | ||
"uid": "60dc-81" | ||
"uid": "5ba1-81" | ||
} | ||
] | ||
}, | ||
"60dc-65": { | ||
"5ba1-65": { | ||
"id": "/packages/table-core/src/utils.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-66" | ||
"index.production.js": "5ba1-66" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
} | ||
@@ -410,86 +410,86 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
}, | ||
{ | ||
"uid": "60dc-73" | ||
"uid": "5ba1-73" | ||
}, | ||
{ | ||
"uid": "60dc-75" | ||
"uid": "5ba1-75" | ||
}, | ||
{ | ||
"uid": "60dc-79" | ||
"uid": "5ba1-79" | ||
}, | ||
{ | ||
"uid": "60dc-83" | ||
"uid": "5ba1-83" | ||
}, | ||
{ | ||
"uid": "60dc-99" | ||
"uid": "5ba1-99" | ||
}, | ||
{ | ||
"uid": "60dc-85" | ||
"uid": "5ba1-85" | ||
}, | ||
{ | ||
"uid": "60dc-87" | ||
"uid": "5ba1-87" | ||
}, | ||
{ | ||
"uid": "60dc-89" | ||
"uid": "5ba1-89" | ||
}, | ||
{ | ||
"uid": "60dc-91" | ||
"uid": "5ba1-91" | ||
}, | ||
{ | ||
"uid": "60dc-95" | ||
"uid": "5ba1-95" | ||
}, | ||
{ | ||
"uid": "60dc-97" | ||
"uid": "5ba1-97" | ||
}, | ||
{ | ||
"uid": "60dc-105" | ||
"uid": "5ba1-105" | ||
}, | ||
{ | ||
"uid": "60dc-107" | ||
"uid": "5ba1-107" | ||
}, | ||
{ | ||
"uid": "60dc-111" | ||
"uid": "5ba1-111" | ||
}, | ||
{ | ||
"uid": "60dc-113" | ||
"uid": "5ba1-113" | ||
}, | ||
{ | ||
"uid": "60dc-115" | ||
"uid": "5ba1-115" | ||
}, | ||
{ | ||
"uid": "60dc-117" | ||
"uid": "5ba1-117" | ||
}, | ||
{ | ||
"uid": "60dc-119" | ||
"uid": "5ba1-119" | ||
}, | ||
{ | ||
"uid": "60dc-121" | ||
"uid": "5ba1-121" | ||
}, | ||
{ | ||
"uid": "60dc-67" | ||
"uid": "5ba1-67" | ||
}, | ||
{ | ||
"uid": "60dc-69" | ||
"uid": "5ba1-69" | ||
}, | ||
{ | ||
"uid": "60dc-71" | ||
"uid": "5ba1-71" | ||
} | ||
] | ||
}, | ||
"60dc-67": { | ||
"5ba1-67": { | ||
"id": "/packages/table-core/src/features/Columns.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-68" | ||
"index.production.js": "5ba1-68" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -499,14 +499,14 @@ ], | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-69": { | ||
"5ba1-69": { | ||
"id": "/packages/table-core/src/features/Rows.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-70" | ||
"index.production.js": "5ba1-70" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -516,14 +516,14 @@ ], | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-71": { | ||
"5ba1-71": { | ||
"id": "/packages/table-core/src/features/Cells.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-72" | ||
"index.production.js": "5ba1-72" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -533,17 +533,17 @@ ], | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-73": { | ||
"5ba1-73": { | ||
"id": "/packages/table-core/src/features/ColumnSizing.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-74" | ||
"index.production.js": "5ba1-74" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -553,20 +553,20 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-75": { | ||
"5ba1-75": { | ||
"id": "/packages/table-core/src/features/Expanding.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-76" | ||
"index.production.js": "5ba1-76" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -576,13 +576,13 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-77": { | ||
"5ba1-77": { | ||
"id": "/packages/table-core/src/filterFns.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-78" | ||
"index.production.js": "5ba1-78" | ||
}, | ||
@@ -592,17 +592,17 @@ "imported": [], | ||
{ | ||
"uid": "60dc-79" | ||
"uid": "5ba1-79" | ||
} | ||
] | ||
}, | ||
"60dc-79": { | ||
"5ba1-79": { | ||
"id": "/packages/table-core/src/features/Filters.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-80" | ||
"index.production.js": "5ba1-80" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-77" | ||
"uid": "5ba1-77" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -612,17 +612,17 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-81": { | ||
"5ba1-81": { | ||
"id": "/packages/table-core/src/aggregationFns.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-82" | ||
"index.production.js": "5ba1-82" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
} | ||
@@ -632,20 +632,20 @@ ], | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
}, | ||
{ | ||
"uid": "60dc-83" | ||
"uid": "5ba1-83" | ||
} | ||
] | ||
}, | ||
"60dc-83": { | ||
"5ba1-83": { | ||
"id": "/packages/table-core/src/features/Grouping.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-84" | ||
"index.production.js": "5ba1-84" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-81" | ||
"uid": "5ba1-81" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -655,23 +655,23 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
}, | ||
{ | ||
"uid": "60dc-85" | ||
"uid": "5ba1-85" | ||
} | ||
] | ||
}, | ||
"60dc-85": { | ||
"5ba1-85": { | ||
"id": "/packages/table-core/src/features/Ordering.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-86" | ||
"index.production.js": "5ba1-86" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-83" | ||
"uid": "5ba1-83" | ||
} | ||
@@ -681,20 +681,20 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-87": { | ||
"5ba1-87": { | ||
"id": "/packages/table-core/src/features/Pagination.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-88" | ||
"index.production.js": "5ba1-88" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -704,20 +704,20 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-89": { | ||
"5ba1-89": { | ||
"id": "/packages/table-core/src/features/Pinning.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-90" | ||
"index.production.js": "5ba1-90" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -727,20 +727,20 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-91": { | ||
"5ba1-91": { | ||
"id": "/packages/table-core/src/features/RowSelection.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-92" | ||
"index.production.js": "5ba1-92" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -750,13 +750,13 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-93": { | ||
"5ba1-93": { | ||
"id": "/packages/table-core/src/sortingFns.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-94" | ||
"index.production.js": "5ba1-94" | ||
}, | ||
@@ -766,20 +766,20 @@ "imported": [], | ||
{ | ||
"uid": "60dc-95" | ||
"uid": "5ba1-95" | ||
} | ||
] | ||
}, | ||
"60dc-95": { | ||
"5ba1-95": { | ||
"id": "/packages/table-core/src/features/Sorting.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-96" | ||
"index.production.js": "5ba1-96" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-93" | ||
"uid": "5ba1-93" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -789,20 +789,20 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-97": { | ||
"5ba1-97": { | ||
"id": "/packages/table-core/src/features/Visibility.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-98" | ||
"index.production.js": "5ba1-98" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -812,17 +812,17 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-99": { | ||
"5ba1-99": { | ||
"id": "/packages/table-core/src/features/Headers.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-100" | ||
"index.production.js": "5ba1-100" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -832,65 +832,65 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
} | ||
] | ||
}, | ||
"60dc-101": { | ||
"5ba1-101": { | ||
"id": "/packages/table-core/src/core.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-102" | ||
"index.production.js": "5ba1-102" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-67" | ||
"uid": "5ba1-67" | ||
}, | ||
{ | ||
"uid": "60dc-69" | ||
"uid": "5ba1-69" | ||
}, | ||
{ | ||
"uid": "60dc-71" | ||
"uid": "5ba1-71" | ||
}, | ||
{ | ||
"uid": "60dc-73" | ||
"uid": "5ba1-73" | ||
}, | ||
{ | ||
"uid": "60dc-75" | ||
"uid": "5ba1-75" | ||
}, | ||
{ | ||
"uid": "60dc-79" | ||
"uid": "5ba1-79" | ||
}, | ||
{ | ||
"uid": "60dc-83" | ||
"uid": "5ba1-83" | ||
}, | ||
{ | ||
"uid": "60dc-85" | ||
"uid": "5ba1-85" | ||
}, | ||
{ | ||
"uid": "60dc-87" | ||
"uid": "5ba1-87" | ||
}, | ||
{ | ||
"uid": "60dc-89" | ||
"uid": "5ba1-89" | ||
}, | ||
{ | ||
"uid": "60dc-91" | ||
"uid": "5ba1-91" | ||
}, | ||
{ | ||
"uid": "60dc-95" | ||
"uid": "5ba1-95" | ||
}, | ||
{ | ||
"uid": "60dc-97" | ||
"uid": "5ba1-97" | ||
}, | ||
{ | ||
"uid": "60dc-99" | ||
"uid": "5ba1-99" | ||
}, | ||
{ | ||
"uid": "60dc-81" | ||
"uid": "5ba1-81" | ||
} | ||
@@ -900,14 +900,14 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-103": { | ||
"5ba1-103": { | ||
"id": "/packages/table-core/src/createTable.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-104" | ||
"index.production.js": "5ba1-104" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
} | ||
@@ -917,14 +917,14 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-105": { | ||
"5ba1-105": { | ||
"id": "/packages/table-core/src/utils/getCoreRowModelSync.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-106" | ||
"index.production.js": "5ba1-106" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -934,17 +934,17 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-107": { | ||
"5ba1-107": { | ||
"id": "/packages/table-core/src/utils/getCoreRowModelAsync.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-108" | ||
"index.production.js": "5ba1-108" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-63" | ||
"uid": "5ba1-63" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -954,10 +954,10 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-109": { | ||
"5ba1-109": { | ||
"id": "/packages/table-core/src/utils/filterRowsUtils.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-110" | ||
"index.production.js": "5ba1-110" | ||
}, | ||
@@ -967,20 +967,20 @@ "imported": [], | ||
{ | ||
"uid": "60dc-111" | ||
"uid": "5ba1-111" | ||
}, | ||
{ | ||
"uid": "60dc-113" | ||
"uid": "5ba1-113" | ||
} | ||
] | ||
}, | ||
"60dc-111": { | ||
"5ba1-111": { | ||
"id": "/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-112" | ||
"index.production.js": "5ba1-112" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-109" | ||
"uid": "5ba1-109" | ||
} | ||
@@ -990,17 +990,17 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-113": { | ||
"5ba1-113": { | ||
"id": "/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-114" | ||
"index.production.js": "5ba1-114" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-109" | ||
"uid": "5ba1-109" | ||
} | ||
@@ -1010,14 +1010,14 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-115": { | ||
"5ba1-115": { | ||
"id": "/packages/table-core/src/utils/getSortedRowModelSync.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-116" | ||
"index.production.js": "5ba1-116" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -1027,14 +1027,14 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-117": { | ||
"5ba1-117": { | ||
"id": "/packages/table-core/src/utils/getGroupedRowModel.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-118" | ||
"index.production.js": "5ba1-118" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -1044,14 +1044,14 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-119": { | ||
"5ba1-119": { | ||
"id": "/packages/table-core/src/utils/getExpandedRowModel.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-120" | ||
"index.production.js": "5ba1-120" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
} | ||
@@ -1061,20 +1061,20 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
}, | ||
{ | ||
"uid": "60dc-121" | ||
"uid": "5ba1-121" | ||
} | ||
] | ||
}, | ||
"60dc-121": { | ||
"5ba1-121": { | ||
"id": "/packages/table-core/src/utils/getPaginationRowModel.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-122" | ||
"index.production.js": "5ba1-122" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-119" | ||
"uid": "5ba1-119" | ||
} | ||
@@ -1084,80 +1084,80 @@ ], | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
] | ||
}, | ||
"60dc-123": { | ||
"5ba1-123": { | ||
"id": "/packages/table-core/src/index.ts", | ||
"moduleParts": { | ||
"index.production.js": "60dc-124" | ||
"index.production.js": "5ba1-124" | ||
}, | ||
"imported": [ | ||
{ | ||
"uid": "60dc-101" | ||
"uid": "5ba1-101" | ||
}, | ||
{ | ||
"uid": "60dc-125" | ||
"uid": "5ba1-125" | ||
}, | ||
{ | ||
"uid": "60dc-103" | ||
"uid": "5ba1-103" | ||
}, | ||
{ | ||
"uid": "60dc-73" | ||
"uid": "5ba1-73" | ||
}, | ||
{ | ||
"uid": "60dc-75" | ||
"uid": "5ba1-75" | ||
}, | ||
{ | ||
"uid": "60dc-79" | ||
"uid": "5ba1-79" | ||
}, | ||
{ | ||
"uid": "60dc-83" | ||
"uid": "5ba1-83" | ||
}, | ||
{ | ||
"uid": "60dc-99" | ||
"uid": "5ba1-99" | ||
}, | ||
{ | ||
"uid": "60dc-85" | ||
"uid": "5ba1-85" | ||
}, | ||
{ | ||
"uid": "60dc-87" | ||
"uid": "5ba1-87" | ||
}, | ||
{ | ||
"uid": "60dc-89" | ||
"uid": "5ba1-89" | ||
}, | ||
{ | ||
"uid": "60dc-91" | ||
"uid": "5ba1-91" | ||
}, | ||
{ | ||
"uid": "60dc-95" | ||
"uid": "5ba1-95" | ||
}, | ||
{ | ||
"uid": "60dc-97" | ||
"uid": "5ba1-97" | ||
}, | ||
{ | ||
"uid": "60dc-65" | ||
"uid": "5ba1-65" | ||
}, | ||
{ | ||
"uid": "60dc-105" | ||
"uid": "5ba1-105" | ||
}, | ||
{ | ||
"uid": "60dc-107" | ||
"uid": "5ba1-107" | ||
}, | ||
{ | ||
"uid": "60dc-111" | ||
"uid": "5ba1-111" | ||
}, | ||
{ | ||
"uid": "60dc-113" | ||
"uid": "5ba1-113" | ||
}, | ||
{ | ||
"uid": "60dc-115" | ||
"uid": "5ba1-115" | ||
}, | ||
{ | ||
"uid": "60dc-117" | ||
"uid": "5ba1-117" | ||
}, | ||
{ | ||
"uid": "60dc-119" | ||
"uid": "5ba1-119" | ||
}, | ||
{ | ||
"uid": "60dc-121" | ||
"uid": "5ba1-121" | ||
} | ||
@@ -1168,3 +1168,3 @@ ], | ||
}, | ||
"60dc-125": { | ||
"5ba1-125": { | ||
"id": "/packages/table-core/src/types.ts", | ||
@@ -1175,3 +1175,3 @@ "moduleParts": {}, | ||
{ | ||
"uid": "60dc-123" | ||
"uid": "5ba1-123" | ||
} | ||
@@ -1178,0 +1178,0 @@ ] |
@@ -27,3 +27,3 @@ import { RowModel } from '..'; | ||
export declare type ExpandedInstance<TGenerics extends TableGenerics> = { | ||
queueResetExpanded: () => void; | ||
_autoResetExpanded: () => void; | ||
setExpanded: (updater: Updater<ExpandedState>) => void; | ||
@@ -30,0 +30,0 @@ toggleRowExpanded: (rowId: string, expanded?: boolean) => void; |
@@ -54,3 +54,2 @@ import { RowModel } from '..'; | ||
onColumnFiltersChange?: OnChangeFn<ColumnFiltersState>; | ||
autoResetColumnFilters?: boolean; | ||
enableColumnFilters?: boolean; | ||
@@ -61,3 +60,2 @@ getColumnFilteredRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>; | ||
onGlobalFilterChange?: OnChangeFn<any>; | ||
autoResetGlobalFilter?: boolean; | ||
enableGlobalFilter?: boolean; | ||
@@ -68,3 +66,2 @@ getGlobalFilteredRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>; | ||
export declare type FiltersInstance<TGenerics extends TableGenerics> = { | ||
queueResetFilters: () => void; | ||
getColumnAutoFilterFn: (columnId: string) => FilterFn<TGenerics> | undefined; | ||
@@ -71,0 +68,0 @@ getColumnFilterFn: (columnId: string) => FilterFn<TGenerics> | undefined; |
@@ -50,3 +50,2 @@ import { RowModel } from '..'; | ||
onGroupingChange: OnChangeFn<GroupingState>; | ||
autoResetGrouping: boolean; | ||
enableGrouping: boolean; | ||
@@ -58,3 +57,2 @@ }; | ||
onGroupingChange?: OnChangeFn<GroupingState>; | ||
autoResetGrouping?: boolean; | ||
enableGrouping?: boolean; | ||
@@ -67,3 +65,2 @@ enableGroupingRemoval?: boolean; | ||
export declare type GroupingInstance<TGenerics extends TableGenerics> = { | ||
queueResetGrouping: () => void; | ||
getColumnAutoAggregationFn: (columnId: string) => AggregationFn<TGenerics> | undefined; | ||
@@ -70,0 +67,0 @@ getColumnAggregationFn: (columnId: string) => AggregationFn<TGenerics> | undefined; |
@@ -24,3 +24,3 @@ import { OnChangeFn, TableGenerics, TableInstance, RowModel, Updater, TableFeature } from '../types'; | ||
export declare type PaginationInstance<TGenerics extends TableGenerics> = { | ||
queueResetPageIndex: () => void; | ||
_autoResetPageIndex: () => void; | ||
setPagination: (updater: Updater<PaginationState>) => void; | ||
@@ -27,0 +27,0 @@ resetPagination: () => void; |
@@ -8,3 +8,2 @@ import { OnChangeFn, TableGenerics, TableInstance, Row, RowModel, Updater } from '../types'; | ||
onRowSelectionChange?: OnChangeFn<RowSelectionState>; | ||
autoResetRowSelection?: boolean; | ||
enableRowSelection?: boolean | ((row: Row<TGenerics>) => boolean); | ||
@@ -23,3 +22,2 @@ enableMultiRowSelection?: boolean | ((row: Row<TGenerics>) => boolean); | ||
export declare type RowSelectionInstance<TGenerics extends TableGenerics> = { | ||
queueResetRowSelection: () => void; | ||
getToggleRowSelectedHandler: (rowId: string) => undefined | ((e: unknown) => void); | ||
@@ -26,0 +24,0 @@ getToggleAllRowsSelectedHandler: () => (event: unknown) => void; |
@@ -46,3 +46,2 @@ import { RowModel } from '..'; | ||
onSortingChange?: OnChangeFn<SortingState>; | ||
autoResetSorting?: boolean; | ||
enableSorting?: boolean; | ||
@@ -58,3 +57,2 @@ enableSortingRemoval?: boolean; | ||
export declare type SortingInstance<TGenerics extends TableGenerics> = { | ||
queueResetSorting: () => void; | ||
getColumnAutoSortingFn: (columnId: string) => SortingFn<TGenerics> | undefined; | ||
@@ -61,0 +59,0 @@ getColumnAutoSortDir: (columnId: string) => SortDirection; |
{ | ||
"name": "@tanstack/table-core", | ||
"author": "Tanner Linsley", | ||
"version": "8.0.0-alpha.60", | ||
"version": "8.0.0-alpha.61", | ||
"description": "Hooks for building lightweight, fast and extendable datagrids for React", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -40,3 +40,3 @@ import { RowModel } from '..' | ||
export type ExpandedInstance<TGenerics extends TableGenerics> = { | ||
queueResetExpanded: () => void | ||
_autoResetExpanded: () => void | ||
setExpanded: (updater: Updater<ExpandedState>) => void | ||
@@ -85,5 +85,3 @@ toggleRowExpanded: (rowId: string, expanded?: boolean) => void | ||
return { | ||
queueResetExpanded: () => { | ||
instance.queueResetPageIndex() | ||
_autoResetExpanded: () => { | ||
if (!registered) { | ||
@@ -90,0 +88,0 @@ registered = true |
@@ -88,3 +88,2 @@ import { RowModel } from '..' | ||
onColumnFiltersChange?: OnChangeFn<ColumnFiltersState> | ||
autoResetColumnFilters?: boolean | ||
enableColumnFilters?: boolean | ||
@@ -98,3 +97,2 @@ getColumnFilteredRowModel?: ( | ||
onGlobalFilterChange?: OnChangeFn<any> | ||
autoResetGlobalFilter?: boolean | ||
enableGlobalFilter?: boolean | ||
@@ -108,3 +106,2 @@ getGlobalFilteredRowModel?: ( | ||
export type FiltersInstance<TGenerics extends TableGenerics> = { | ||
queueResetFilters: () => void | ||
getColumnAutoFilterFn: (columnId: string) => FilterFn<TGenerics> | undefined | ||
@@ -165,5 +162,3 @@ | ||
onGlobalFilterChange: makeStateUpdater('globalFilter', instance), | ||
autoResetColumnFilters: true, | ||
filterFromLeafRows: true, | ||
autoResetGlobalFilter: true, | ||
globalFilterFn: 'auto', | ||
@@ -242,31 +237,3 @@ getColumnCanGlobalFilterFn: column => { | ||
): FiltersInstance<TGenerics> => { | ||
let registered = false | ||
return { | ||
queueResetFilters: () => { | ||
instance.queueResetSorting() | ||
if (!registered) { | ||
registered = true | ||
return | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return | ||
} | ||
if ( | ||
instance.options.autoResetAll === true || | ||
instance.options.autoResetColumnFilters | ||
) { | ||
instance.resetColumnFilters() | ||
} | ||
if ( | ||
instance.options.autoResetAll === true || | ||
instance.options.autoResetGlobalFilter | ||
) { | ||
instance.resetGlobalFilter() | ||
} | ||
}, | ||
getColumnAutoFilterFn: columnId => { | ||
@@ -273,0 +240,0 @@ const firstRow = instance.getCoreRowModel().flatRows[0] |
@@ -79,3 +79,2 @@ import { RowModel } from '..' | ||
onGroupingChange: OnChangeFn<GroupingState> | ||
autoResetGrouping: boolean | ||
enableGrouping: boolean | ||
@@ -88,3 +87,2 @@ } | ||
onGroupingChange?: OnChangeFn<GroupingState> | ||
autoResetGrouping?: boolean | ||
enableGrouping?: boolean | ||
@@ -102,3 +100,2 @@ enableGroupingRemoval?: boolean | ||
export type GroupingInstance<TGenerics extends TableGenerics> = { | ||
queueResetGrouping: () => void | ||
getColumnAutoAggregationFn: ( | ||
@@ -145,3 +142,2 @@ columnId: string | ||
onGroupingChange: makeStateUpdater('grouping', instance), | ||
autoResetGrouping: true, | ||
groupedColumnMode: 'reorder', | ||
@@ -169,24 +165,3 @@ } | ||
): GroupingInstance<TGenerics> => { | ||
let registered = false | ||
return { | ||
queueResetGrouping: () => { | ||
instance.queueResetExpanded() | ||
if (!registered) { | ||
registered = true | ||
return | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return | ||
} | ||
if ( | ||
instance.options.autoResetAll === true || | ||
instance.options.autoResetGrouping | ||
) { | ||
instance.resetGrouping() | ||
} | ||
}, | ||
getColumnAutoAggregationFn: columnId => { | ||
@@ -193,0 +168,0 @@ const firstRow = instance.getCoreRowModel().flatRows[0] |
@@ -40,3 +40,3 @@ import { | ||
export type PaginationInstance<TGenerics extends TableGenerics> = { | ||
queueResetPageIndex: () => void | ||
_autoResetPageIndex: () => void | ||
setPagination: (updater: Updater<PaginationState>) => void | ||
@@ -87,4 +87,5 @@ resetPagination: () => void | ||
let registered = false | ||
return { | ||
queueResetPageIndex: () => { | ||
_autoResetPageIndex: () => { | ||
if (!registered) { | ||
@@ -91,0 +92,0 @@ registered = true |
@@ -19,3 +19,2 @@ import { | ||
onRowSelectionChange?: OnChangeFn<RowSelectionState> | ||
autoResetRowSelection?: boolean | ||
enableRowSelection?: boolean | ((row: Row<TGenerics>) => boolean) | ||
@@ -53,3 +52,2 @@ enableMultiRowSelection?: boolean | ((row: Row<TGenerics>) => boolean) | ||
export type RowSelectionInstance<TGenerics extends TableGenerics> = { | ||
queueResetRowSelection: () => void | ||
getToggleRowSelectedHandler: ( | ||
@@ -95,3 +93,2 @@ rowId: string | ||
onRowSelectionChange: makeStateUpdater('rowSelection', instance), | ||
autoResetRowSelection: true, | ||
enableRowSelection: true, | ||
@@ -109,24 +106,3 @@ enableMultiRowSelection: true, | ||
): RowSelectionInstance<TGenerics> => { | ||
let registered = false | ||
// const pageRows = instance.getPageRows() | ||
return { | ||
queueResetRowSelection: () => { | ||
if (!registered) { | ||
registered = true | ||
return | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return | ||
} | ||
if ( | ||
instance.options.autoResetAll === true || | ||
instance.options.autoResetRowSelection | ||
) { | ||
instance.resetRowSelection() | ||
} | ||
}, | ||
setRowSelection: updater => | ||
@@ -270,5 +246,2 @@ instance.options.onRowSelectionChange?.(updater), | ||
debug: () => instance.options.debugAll ?? instance.options.debugTable, | ||
onChange: () => { | ||
instance.queue(() => instance.queueResetExpanded()) | ||
}, | ||
} | ||
@@ -296,3 +269,2 @@ ), | ||
debug: () => instance.options.debugAll ?? instance.options.debugTable, | ||
onChange: () => instance.queue(() => instance.queueResetExpanded()), | ||
} | ||
@@ -317,3 +289,2 @@ ), | ||
debug: () => instance.options.debugAll ?? instance.options.debugTable, | ||
onChange: () => instance.queue(() => instance.queueResetExpanded()), | ||
} | ||
@@ -320,0 +291,0 @@ ), |
@@ -72,3 +72,2 @@ import { RowModel } from '..' | ||
onSortingChange?: OnChangeFn<SortingState> | ||
autoResetSorting?: boolean | ||
enableSorting?: boolean | ||
@@ -87,3 +86,2 @@ enableSortingRemoval?: boolean | ||
export type SortingInstance<TGenerics extends TableGenerics> = { | ||
queueResetSorting: () => void | ||
getColumnAutoSortingFn: (columnId: string) => SortingFn<TGenerics> | undefined | ||
@@ -135,3 +133,2 @@ getColumnAutoSortDir: (columnId: string) => SortDirection | ||
onSortingChange: makeStateUpdater('sorting', instance), | ||
autoResetSorting: true, | ||
isMultiSortEvent: (e: unknown) => { | ||
@@ -167,21 +164,2 @@ return (e as MouseEvent).shiftKey | ||
return { | ||
queueResetSorting: () => { | ||
instance.queueResetGrouping() | ||
if (!registered) { | ||
registered = true | ||
return | ||
} | ||
if (instance.options.autoResetAll === false) { | ||
return | ||
} | ||
if ( | ||
instance.options.autoResetAll === true || | ||
instance.options.autoResetSorting | ||
) { | ||
instance.resetSorting() | ||
} | ||
}, | ||
getColumnAutoSortingFn: columnId => { | ||
@@ -188,0 +166,0 @@ const firstRows = instance |
@@ -113,3 +113,3 @@ import { TableInstance, RowModel, TableGenerics, Row } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetSorting() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -116,0 +116,0 @@ }, |
@@ -97,3 +97,3 @@ import { TableInstance, RowModel, TableGenerics, Row } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetSorting() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -100,0 +100,0 @@ }, |
@@ -99,4 +99,3 @@ import { TableInstance, Row, RowModel, TableGenerics } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetFilters() | ||
instance.queueResetRowSelection() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -103,0 +102,0 @@ }, |
@@ -101,4 +101,3 @@ import { TableInstance, Row, RowModel, TableGenerics } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetFilters() | ||
instance.queueResetRowSelection() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -105,0 +104,0 @@ }, |
@@ -91,3 +91,3 @@ import { TableInstance, RowModel, TableGenerics } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetSorting() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -94,0 +94,0 @@ }, |
@@ -74,3 +74,3 @@ import { TableInstance, RowModel, TableGenerics, Row } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetSorting() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -77,0 +77,0 @@ }, |
@@ -168,3 +168,4 @@ import { TableInstance, Row, RowModel, TableGenerics } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetExpanded() | ||
instance._autoResetExpanded() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -171,0 +172,0 @@ }, |
@@ -86,3 +86,3 @@ import { TableInstance, Row, RowModel, TableGenerics } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetGrouping() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -89,0 +89,0 @@ }, |
@@ -113,3 +113,3 @@ import { TableInstance, Row, RowModel, TableGenerics } from '../types' | ||
instance.queue(() => { | ||
instance.queueResetGrouping() | ||
instance._autoResetPageIndex() | ||
}) | ||
@@ -116,0 +116,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2507100
22540