Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tanstack/table-core

Package Overview
Dependencies
Maintainers
1
Versions
195
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/table-core - npm Package Compare versions

Comparing version 8.0.0-alpha.30 to 8.0.0-alpha.32

build/cjs/utils/getColumnFilteredRowModelSync.js

1

build/cjs/aggregationTypes.js

@@ -132,2 +132,3 @@ /**

exports.aggregationTypes = aggregationTypes;
exports.mean = mean;
//# sourceMappingURL=aggregationTypes.js.map

100

build/cjs/core.js

@@ -28,2 +28,3 @@ /**

var Headers = require('./features/Headers.js');
var aggregationTypes = require('./aggregationTypes.js');

@@ -48,4 +49,7 @@ var features = [Headers.Headers, Visibility.Visibility, Ordering.Ordering, Pinning.Pinning, Filters.Filters, Sorting.Sorting, Grouping.Grouping, Expanding.Expanding, Pagination.Pagination, RowSelection.RowSelection, ColumnSizing.ColumnSizing];

instance.options = buildOptions(options);
var coreInitialState = {
coreProgress: 1
};
var initialState = _rollupPluginBabelHelpers["extends"]({}, features.reduce(function (obj, feature) {
var initialState = _rollupPluginBabelHelpers["extends"]({}, coreInitialState, features.reduce(function (obj, feature) {
return Object.assign(obj, feature.getInitialState == null ? void 0 : feature.getInitialState());

@@ -364,81 +368,9 @@ }, {}), (_options$initialState = options.initialState) != null ? _options$initialState : {});

},
getCoreRowModel: utils.memo(function () {
return [instance.options.data];
}, function (data) {
// Access the row model using initial columns
var rows = [];
var flatRows = [];
var rowsById = {};
var leafColumns = instance.getAllLeafColumns();
var accessRow = function accessRow(originalRow, rowIndex, depth, parentRows, parent) {
if (depth === void 0) {
depth = 0;
}
var id = instance.getRowId(originalRow, rowIndex, parent);
if (!id) {
if (process.env.NODE_ENV !== 'production') {
throw new Error("getRowId expected an ID, but got " + id);
}
}
var values = {};
for (var i = 0; i < leafColumns.length; i++) {
var _column = leafColumns[i];
if (_column && _column.accessorFn) {
values[_column.id] = _column.accessorFn(originalRow, rowIndex);
}
} // Make the row
var row = instance.createRow(id, originalRow, rowIndex, depth, values); // Push instance row into the parentRows array
parentRows.push(row); // Keep track of every row in a flat array
flatRows.push(row); // Also keep track of every row by its ID
rowsById[id] = row; // Get the original subrows
if (instance.options.getSubRows) {
var originalSubRows = instance.options.getSubRows(originalRow, rowIndex); // Then recursively access them
if (originalSubRows != null && originalSubRows.length) {
row.originalSubRows = originalSubRows;
var subRows = [];
for (var _i = 0; _i < row.originalSubRows.length; _i++) {
accessRow(row.originalSubRows[_i], _i, depth + 1, subRows, row);
}
row.subRows = subRows;
}
}
};
for (var i = 0; i < data.length; i++) {
accessRow(data[i], i, 0, rows);
getCoreRowModel: function getCoreRowModel() {
if (!instance._getCoreRowModel) {
instance._getCoreRowModel = instance.options.getCoreRowModel(instance);
}
return {
rows: rows,
flatRows: flatRows,
rowsById: rowsById
};
}, {
key: 'getRowModel',
debug: function debug() {
var _instance$options$deb10;
return (_instance$options$deb10 = instance.options.debugAll) != null ? _instance$options$deb10 : instance.options.debugTable;
},
onChange: function onChange() {
instance._notifyFiltersReset();
instance._notifyRowSelectionReset();
}
}),
return instance._getCoreRowModel();
},
// The final calls start at the bottom of the model,

@@ -546,2 +478,14 @@ // expanded rows, which then work their way up

}, 0)) != null ? _instance$getRightHea : 0;
},
getOverallProgress: function getOverallProgress() {
var _instance$getState = instance.getState(),
coreProgress = _instance$getState.coreProgress,
columnFiltersProgress = _instance$getState.columnFiltersProgress,
globalFilterProgress = _instance$getState.globalFilterProgress;
return aggregationTypes.mean(function () {
return [coreProgress, columnFiltersProgress, globalFilterProgress].filter(function (d) {
return d < 1;
});
});
}

@@ -548,0 +492,0 @@ });

@@ -37,2 +37,4 @@ /**

_notifyExpandedReset: function _notifyExpandedReset() {
instance._notifyPageIndexReset();
if (!registered) {

@@ -189,21 +191,15 @@ registered = true;

},
getExpandedRowModel: utils.memo(function () {
return [instance.getState().expanded, instance.getGroupedRowModel(), instance.options.expandRowsFn, instance.options.paginateExpandedRows];
}, function (expanded, rowModel, expandRowsFn, paginateExpandedRows) {
if (!expandRowsFn || // Do not expand if rows are not included in pagination
!paginateExpandedRows || expanded !== true && !Object.keys(expanded != null ? expanded : {}).length) {
return rowModel;
getPreExpandedRowModel: function getPreExpandedRowModel() {
return instance.getGroupedRowModel();
},
getExpandedRowModel: function getExpandedRowModel() {
if (!instance._getExpandedRowModel && instance.options.getExpandedRowModel) {
instance._getExpandedRowModel = instance.options.getExpandedRowModel(instance);
}
return expandRowsFn(instance, rowModel);
}, {
key: 'getExpandedRowModel',
debug: function debug() {
var _instance$options$deb;
if (!instance._getExpandedRowModel) {
return instance.getPreExpandedRowModel();
}
return (_instance$options$deb = instance.options.debugAll) != null ? _instance$options$deb : instance.options.debugTable;
}
}),
getPreExpandedRowModel: function getPreExpandedRowModel() {
return instance.getGroupedRowModel();
return instance._getExpandedRowModel();
}

@@ -210,0 +206,0 @@ };

@@ -28,3 +28,5 @@ /**

columnFilters: [],
globalFilter: undefined
globalFilter: undefined,
columnFiltersProgress: 1,
globalFilterProgress: 1
};

@@ -128,2 +130,4 @@ },

_notifyFiltersReset: function _notifyFiltersReset() {
instance._notifySortingReset();
if (!registered) {

@@ -138,12 +142,8 @@ registered = true;

if (instance.options.autoResetAll === true) {
instance.resetSorting();
} else {
if (instance.options.autoResetColumnFilters) {
instance.resetColumnFilters();
}
if (instance.options.autoResetAll === true || instance.options.autoResetColumnFilters) {
instance.resetColumnFilters();
}
if (instance.options.autoResetGlobalFilter) {
instance.resetGlobalFilter();
}
if (instance.options.autoResetAll === true || instance.options.autoResetGlobalFilter) {
instance.resetGlobalFilter();
}

@@ -328,80 +328,27 @@ },

},
getColumnFilteredRowModel: utils.memo(function () {
return [instance.getState().columnFilters, instance.getCoreRowModel(), instance.options.columnFilterRowsFn];
}, function (columnFilters, rowModel, columnFiltersFn) {
var columnFilteredRowModel = function () {
if (!(columnFilters != null && columnFilters.length) || !columnFiltersFn) {
return rowModel;
}
getColumnFilteredRowModel: function getColumnFilteredRowModel() {
if (!instance._getColumnFilteredRowModel && instance.options.getColumnFilteredRowModel) {
instance._getColumnFilteredRowModel = instance.options.getColumnFilteredRowModel(instance);
}
return columnFiltersFn(instance, rowModel);
}(); // Now that each filtered column has it's partially filtered rows,
// lets assign the final filtered rows to all of the other columns
if (!instance._getColumnFilteredRowModel) {
return instance.getPreColumnFilteredRowModel();
}
var nonFilteredColumns = instance.getAllLeafColumns().filter(function (column) {
var _instance$getState$co5;
return !((_instance$getState$co5 = instance.getState().columnFilters) != null && _instance$getState$co5.find(function (d) {
return d.id === column.id;
}));
}); // This essentially enables faceted filter options to be built easily
// using every column's preFilteredRows value
nonFilteredColumns.forEach(function (column) {
column.getPreFilteredRows = function () {
return columnFilteredRowModel.rows;
};
});
return columnFilteredRowModel;
}, {
key: 'getColumnFilteredRowModel',
debug: function debug() {
var _instance$options$deb2;
return (_instance$options$deb2 = instance.options.debugAll) != null ? _instance$options$deb2 : instance.options.debugTable;
}
}),
return instance._getColumnFilteredRowModel();
},
getPreGlobalFilteredRowModel: function getPreGlobalFilteredRowModel() {
return instance.getColumnFilteredRowModel();
},
getGlobalFilteredRowModel: utils.memo(function () {
return [instance.getState().globalFilter, instance.getColumnFilteredRowModel(), instance.options.globalFilterRowsFn];
}, function (globalFilterValue, columnFilteredRowModel, globalFiltersFn) {
var globalFilteredRowModel = function () {
if (!globalFiltersFn || !globalFilterValue) {
return columnFilteredRowModel;
}
getGlobalFilteredRowModel: function getGlobalFilteredRowModel() {
if (!instance._getGlobalFilteredRowModel && instance.options.getGlobalFilteredRowModel) {
instance._getGlobalFilteredRowModel = instance.options.getGlobalFilteredRowModel(instance);
}
return globalFiltersFn(instance, columnFilteredRowModel);
}(); // Now that each filtered column has it's partially filtered rows,
// lets assign the final filtered rows to all of the other columns
if (!instance._getGlobalFilteredRowModel) {
return instance.getPreGlobalFilteredRowModel();
}
var nonFilteredColumns = instance.getAllLeafColumns().filter(function (column) {
var _instance$getState$co6;
return !((_instance$getState$co6 = instance.getState().columnFilters) != null && _instance$getState$co6.find(function (d) {
return d.id === column.id;
}));
}); // This essentially enables faceted filter options to be built easily
// using every column's preFilteredRows value
nonFilteredColumns.forEach(function (column) {
column.getPreFilteredRows = function () {
return globalFilteredRowModel.rows;
};
});
return globalFilteredRowModel;
}, {
key: 'getGlobalFilteredRowModel',
debug: function debug() {
var _instance$options$deb3;
return (_instance$options$deb3 = instance.options.debugAll) != null ? _instance$options$deb3 : instance.options.debugTable;
},
onChange: function onChange() {
instance._notifySortingReset();
}
})
return instance._getGlobalFilteredRowModel();
}
};

@@ -408,0 +355,0 @@ }

@@ -61,2 +61,4 @@ /**

_notifyGroupingReset: function _notifyGroupingReset() {
instance._notifyExpandedReset();
if (!registered) {

@@ -161,21 +163,13 @@ registered = true;

},
getGroupedRowModel: utils.memo(function () {
return [instance.getState().grouping, instance.getSortedRowModel(), instance.options.groupRowsFn];
}, function (grouping, rowModel, groupRowsFn) {
if (!groupRowsFn || !grouping.length) {
return rowModel;
getGroupedRowModel: function getGroupedRowModel() {
if (!instance._getGroupedRowModel && instance.options.getGroupedRowModel) {
instance._getGroupedRowModel = instance.options.getGroupedRowModel(instance);
}
return groupRowsFn(instance, rowModel);
}, {
key: 'getGroupedRowModel',
debug: function debug() {
var _instance$options$deb;
if (!instance._getGroupedRowModel) {
return instance.getPreGroupedRowModel();
}
return (_instance$options$deb = instance.options.debugAll) != null ? _instance$options$deb : instance.options.debugTable;
},
onChange: function onChange() {
return instance._notifyExpandedReset();
}
})
return instance._getGroupedRowModel();
}
};

@@ -182,0 +176,0 @@ },

@@ -161,18 +161,13 @@ /**

},
getPaginationRowModel: utils.memo(function () {
return [instance.getState().pagination, instance.getExpandedRowModel(), instance.options.paginateRowsFn];
}, function (_pagination, rowModel, paginateRowsFn) {
if (!paginateRowsFn || !rowModel.rows.length) {
return rowModel;
getPaginationRowModel: function getPaginationRowModel() {
if (!instance._getPaginationRowModel && instance.options.getPaginationRowModel) {
instance._getPaginationRowModel = instance.options.getPaginationRowModel(instance);
}
return paginateRowsFn(instance, rowModel);
}, {
key: 'getPaginationRowModel',
debug: function debug() {
var _instance$options$deb2;
if (!instance._getPaginationRowModel) {
return instance.getPrePaginationRowModel();
}
return (_instance$options$deb2 = instance.options.debugAll) != null ? _instance$options$deb2 : instance.options.debugTable;
}
}),
return instance._getPaginationRowModel();
},
getPageCount: function getPageCount() {

@@ -179,0 +174,0 @@ var pageCount = instance.getState().pagination.pageCount;

@@ -70,2 +70,4 @@ /**

_notifySortingReset: function _notifySortingReset() {
instance._notifyGroupingReset();
if (!registered) {

@@ -301,21 +303,13 @@ registered = true;

},
getSortedRowModel: utils.memo(function () {
return [instance.getState().sorting, instance.getGlobalFilteredRowModel(), instance.options.sortRowsFn];
}, function (sorting, rowModel, sortingFn) {
if (!sortingFn || !(sorting != null && sorting.length)) {
return rowModel;
getSortedRowModel: function getSortedRowModel() {
if (!instance._getSortedRowModel && instance.options.getSortedRowModel) {
instance._getSortedRowModel = instance.options.getSortedRowModel(instance);
}
return sortingFn(instance, rowModel);
}, {
key: 'getSortedRowModel',
debug: function debug() {
var _instance$options$deb;
if (!instance._getSortedRowModel) {
return instance.getPreSortedRowModel();
}
return (_instance$options$deb = instance.options.debugAll) != null ? _instance$options$deb : instance.options.debugTable;
},
onChange: function onChange() {
instance._notifyGroupingReset();
}
})
return instance._getSortedRowModel();
}
};

@@ -322,0 +316,0 @@ }

@@ -29,8 +29,10 @@ /**

var utils = require('./utils.js');
var columnFilterRowsFn = require('./utils/columnFilterRowsFn.js');
var globalFilterRowsFn = require('./utils/globalFilterRowsFn.js');
var sortRowsFn = require('./utils/sortRowsFn.js');
var groupRowsFn = require('./utils/groupRowsFn.js');
var expandRowsFn = require('./utils/expandRowsFn.js');
var paginateRowsFn = require('./utils/paginateRowsFn.js');
var getCoreRowModelSync = require('./utils/getCoreRowModelSync.js');
var getCoreRowModelAsync = require('./utils/getCoreRowModelAsync.js');
var getColumnFilteredRowModelSync = require('./utils/getColumnFilteredRowModelSync.js');
var getGlobalFilteredRowModelSync = require('./utils/getGlobalFilteredRowModelSync.js');
var getSortedRowModelSync = require('./utils/getSortedRowModelSync.js');
var getGroupedRowModel = require('./utils/getGroupedRowModel.js');
var getExpandedRowModel = require('./utils/getExpandedRowModel.js');
var getPaginationRowModel = require('./utils/getPaginationRowModel.js');

@@ -60,2 +62,4 @@

exports.functionalUpdate = utils.functionalUpdate;
exports.getBatchGroups = utils.getBatchGroups;
exports.incrementalMemo = utils.incrementalMemo;
exports.isFunction = utils.isFunction;

@@ -66,8 +70,11 @@ exports.makeStateUpdater = utils.makeStateUpdater;

exports.propGetter = utils.propGetter;
exports.columnFilterRowsFn = columnFilterRowsFn.columnFilterRowsFn;
exports.globalFilterRowsFn = globalFilterRowsFn.globalFilterRowsFn;
exports.sortRowsFn = sortRowsFn.sortRowsFn;
exports.groupRowsFn = groupRowsFn.groupRowsFn;
exports.expandRowsFn = expandRowsFn.expandRowsFn;
exports.paginateRowsFn = paginateRowsFn.paginateRowsFn;
exports.getCoreRowModelSync = getCoreRowModelSync.getCoreRowModelSync;
exports.getCoreRowModelAsync = getCoreRowModelAsync.getCoreRowModelAsync;
exports.getColumnFilteredRowModelSync = getColumnFilteredRowModelSync.getColumnFilteredRowModelSync;
exports.getGlobalFilteredRowModelSync = getGlobalFilteredRowModelSync.getGlobalFilteredRowModelSync;
exports.getSortedRowModelSync = getSortedRowModelSync.getSortedRowModelSync;
exports.getGroupedRowModelSync = getGroupedRowModel.getGroupedRowModelSync;
exports.expandRows = getExpandedRowModel.expandRows;
exports.getExpandedRowModel = getExpandedRowModel.getExpandedRowModel;
exports.getPaginationRowModel = getPaginationRowModel.getPaginationRowModel;
//# sourceMappingURL=index.js.map

@@ -22,2 +22,28 @@ /**

}
function getBatchGroups(arr, count) {
var groups = [{
start: 0,
end: count - 1,
items: []
}];
var groupIndex = 0;
var group = groups[groupIndex];
for (var i = 0; i < arr.length; i++) {
if (i > group.end) {
groupIndex++;
groups[groupIndex] = {
start: i,
end: i + count - 1,
items: []
};
}
group = groups[groupIndex];
var _item = arr[i];
group.items.push(_item);
}
return groups;
}
function makeStateUpdater(key, instance) {

@@ -120,21 +146,134 @@ return function (updater) {

};
} // export function hashString(str: string, seed = 0): string {
// let h1 = 0xdeadbeef ^ seed,
// h2 = 0x41c6ce57 ^ seed
// for (let i = 0, ch; i < str.length; i++) {
// ch = str.charCodeAt(i)
// h1 = Math.imul(h1 ^ ch, 2654435761)
// h2 = Math.imul(h2 ^ ch, 1597334677)
// }
// h1 =
// Math.imul(h1 ^ (h1 >>> 16), 2246822507) ^
// Math.imul(h2 ^ (h2 >>> 13), 3266489909)
// h2 =
// Math.imul(h2 ^ (h2 >>> 16), 2246822507) ^
// Math.imul(h1 ^ (h1 >>> 13), 3266489909)
// return (4294967296 * (2097151 & h2) + (h1 >>> 0)).toString()
// }
}
function incrementalMemo(getDeps, getInitialValue, schedule, opts) {
var _opts$timeout;
var oldDeps;
var deps;
var result;
var nextResultRef;
var tasks = [];
var totalTaskCount = 0;
var resultStartTime;
var batchIndex = 0;
var progress = 0;
var working = false;
var callback;
var timeout = (_opts$timeout = opts.timeout) != null ? _opts$timeout : 100;
var onProgress = function onProgress(latestResult, previousResult) {
progress = 1 - tasks.length / totalTaskCount;
opts.onProgress(progress, latestResult, previousResult);
};
return function () {
var scheduleFn = function scheduleFn(workFn) {
totalTaskCount++;
tasks.push(workFn);
};
var newDeps = getDeps();
var first = false;
if (!deps) {
first = true;
deps = [];
result = getInitialValue.apply(void 0, newDeps);
}
var depsChanged = newDeps.length !== deps.length || newDeps.some(function (dep, index) {
return deps[index] !== dep;
});
if (depsChanged) {
cancelIdleCallback(callback);
oldDeps = deps;
deps = newDeps;
totalTaskCount = 0;
tasks = [];
nextResultRef = {
current: getInitialValue.apply(void 0, newDeps)
};
resultStartTime = Date.now();
schedule.apply(void 0, newDeps)(nextResultRef)(scheduleFn);
}
var commitResult = function commitResult() {
cancelIdleCallback(callback);
if (opts.key && opts.debug) {
if (opts != null && opts.debug()) {
var resultEndTime = Math.round((Date.now() - resultStartTime) * 100) / 100;
var resultFpsPercentage = resultEndTime / batchIndex / 16;
console.info("%c\u23F1 " + resultEndTime + " ms / " + batchIndex + " tasks = " + Math.round(resultEndTime / batchIndex) + " ms/task", "\n font-size: .6rem;\n font-weight: bold;\n color: hsl(" + Math.max(0, Math.min(120 - 120 * resultFpsPercentage, 120)) + "deg 100% 31%);", opts == null ? void 0 : opts.key, _rollupPluginBabelHelpers["extends"]({
length: oldDeps.length + " -> " + deps.length
}, deps.map(function (_, index) {
if (oldDeps[index] !== deps[index]) {
return [index, oldDeps[index], deps[index]];
}
return false;
}).filter(Boolean).reduce(function (accu, _ref2) {
var _extends4;
var a = _ref2[0],
b = _ref2[1];
return _rollupPluginBabelHelpers["extends"]({}, accu, (_extends4 = {}, _extends4[a] = b, _extends4));
}, {}), {
parent: parent
}));
}
}
working = false;
var previousResult = result;
result = nextResultRef.current;
onProgress(result, previousResult);
opts.onChange(result, previousResult);
};
if (opts.initialSync && first) {
batchIndex = 1;
first = false;
for (var i = 0; i < tasks.length; i++) {
tasks[i]();
}
tasks = [];
commitResult();
} else if (!working && tasks.length) {
cancelIdleCallback(callback);
working = true;
batchIndex = 0;
var workLoop = function workLoop(deadline) {
while (tasks.length && deadline.timeRemaining() > 0) {
tasks.shift()();
}
if (!tasks.length) {
commitResult();
} else {
++batchIndex;
onProgress(nextResultRef.current, result);
callback = requestIdleCallback(workLoop, {
timeout: timeout
});
}
};
callback = requestIdleCallback(workLoop, {
timeout: timeout
});
}
return result;
};
} // opts?.onChange?.(result, oldResult)
exports.flattenBy = flattenBy;
exports.functionalUpdate = functionalUpdate;
exports.getBatchGroups = getBatchGroups;
exports.incrementalMemo = incrementalMemo;
exports.isFunction = isFunction;

@@ -141,0 +280,0 @@ exports.makeStateUpdater = makeStateUpdater;

@@ -10,3 +10,3 @@ {

{
"uid": "134a-54",
"uid": "7fd3-58",
"name": "\u0000rollupPluginBabelHelpers.js"

@@ -18,3 +18,3 @@ },

{
"uid": "134a-56",
"uid": "7fd3-60",
"name": "utils.tsx"

@@ -26,43 +26,43 @@ },

{
"uid": "134a-58",
"uid": "7fd3-62",
"name": "ColumnSizing.ts"
},
{
"uid": "134a-60",
"uid": "7fd3-64",
"name": "Expanding.ts"
},
{
"uid": "134a-64",
"uid": "7fd3-68",
"name": "Filters.ts"
},
{
"uid": "134a-68",
"uid": "7fd3-72",
"name": "Grouping.ts"
},
{
"uid": "134a-70",
"uid": "7fd3-74",
"name": "Ordering.ts"
},
{
"uid": "134a-72",
"uid": "7fd3-76",
"name": "Pagination.ts"
},
{
"uid": "134a-74",
"uid": "7fd3-78",
"name": "Pinning.ts"
},
{
"uid": "134a-76",
"uid": "7fd3-80",
"name": "RowSelection.ts"
},
{
"uid": "134a-80",
"uid": "7fd3-84",
"name": "Sorting.ts"
},
{
"uid": "134a-82",
"uid": "7fd3-86",
"name": "Visibility.ts"
},
{
"uid": "134a-84",
"uid": "7fd3-88",
"name": "Headers.ts"

@@ -73,19 +73,19 @@ }

{
"uid": "134a-62",
"uid": "7fd3-66",
"name": "filterTypes.ts"
},
{
"uid": "134a-66",
"uid": "7fd3-70",
"name": "aggregationTypes.ts"
},
{
"uid": "134a-78",
"uid": "7fd3-82",
"name": "sortTypes.ts"
},
{
"uid": "134a-86",
"uid": "7fd3-90",
"name": "core.tsx"
},
{
"uid": "134a-88",
"uid": "7fd3-92",
"name": "createTable.tsx"

@@ -97,28 +97,36 @@ },

{
"uid": "134a-90",
"uid": "7fd3-94",
"name": "getCoreRowModelSync.ts"
},
{
"uid": "7fd3-96",
"name": "getCoreRowModelAsync.ts"
},
{
"uid": "7fd3-98",
"name": "filterRowsUtils.ts"
},
{
"uid": "134a-92",
"name": "columnFilterRowsFn.ts"
"uid": "7fd3-100",
"name": "getColumnFilteredRowModelSync.ts"
},
{
"uid": "134a-94",
"name": "globalFilterRowsFn.ts"
"uid": "7fd3-102",
"name": "getGlobalFilteredRowModelSync.ts"
},
{
"uid": "134a-96",
"name": "sortRowsFn.ts"
"uid": "7fd3-104",
"name": "getSortedRowModelSync.ts"
},
{
"uid": "134a-98",
"name": "groupRowsFn.ts"
"uid": "7fd3-106",
"name": "getGroupedRowModel.ts"
},
{
"uid": "134a-100",
"name": "expandRowsFn.ts"
"uid": "7fd3-108",
"name": "getExpandedRowModel.ts"
},
{
"uid": "134a-102",
"name": "paginateRowsFn.ts"
"uid": "7fd3-110",
"name": "getPaginationRowModel.ts"
}

@@ -128,3 +136,3 @@ ]

{
"uid": "134a-104",
"uid": "7fd3-112",
"name": "index.tsx"

@@ -140,164 +148,176 @@ }

"nodeParts": {
"134a-54": {
"7fd3-58": {
"renderedLength": 2695,
"gzipLength": 1065,
"brotliLength": 0,
"mainUid": "134a-53"
"mainUid": "7fd3-57"
},
"134a-56": {
"renderedLength": 3878,
"gzipLength": 1354,
"7fd3-60": {
"renderedLength": 7667,
"gzipLength": 1983,
"brotliLength": 0,
"mainUid": "134a-55"
"mainUid": "7fd3-59"
},
"134a-58": {
"7fd3-62": {
"renderedLength": 11667,
"gzipLength": 2272,
"brotliLength": 0,
"mainUid": "134a-57"
"mainUid": "7fd3-61"
},
"134a-60": {
"renderedLength": 7769,
"gzipLength": 1701,
"7fd3-64": {
"renderedLength": 7390,
"gzipLength": 1592,
"brotliLength": 0,
"mainUid": "134a-59"
"mainUid": "7fd3-63"
},
"134a-62": {
"7fd3-66": {
"renderedLength": 4437,
"gzipLength": 786,
"brotliLength": 0,
"mainUid": "134a-61"
"mainUid": "7fd3-65"
},
"134a-64": {
"renderedLength": 16529,
"gzipLength": 2897,
"7fd3-68": {
"renderedLength": 14165,
"gzipLength": 2535,
"brotliLength": 0,
"mainUid": "134a-63"
"mainUid": "7fd3-67"
},
"134a-66": {
"7fd3-70": {
"renderedLength": 2674,
"gzipLength": 773,
"brotliLength": 0,
"mainUid": "134a-65"
"mainUid": "7fd3-69"
},
"134a-68": {
"renderedLength": 8356,
"gzipLength": 1802,
"7fd3-72": {
"renderedLength": 8077,
"gzipLength": 1717,
"brotliLength": 0,
"mainUid": "134a-67"
"mainUid": "7fd3-71"
},
"134a-70": {
"7fd3-74": {
"renderedLength": 2639,
"gzipLength": 799,
"brotliLength": 0,
"mainUid": "134a-69"
"mainUid": "7fd3-73"
},
"134a-72": {
"renderedLength": 6200,
"gzipLength": 1261,
"7fd3-76": {
"renderedLength": 5978,
"gzipLength": 1232,
"brotliLength": 0,
"mainUid": "134a-71"
"mainUid": "7fd3-75"
},
"134a-74": {
"7fd3-78": {
"renderedLength": 5842,
"gzipLength": 1084,
"brotliLength": 0,
"mainUid": "134a-73"
"mainUid": "7fd3-77"
},
"134a-76": {
"7fd3-80": {
"renderedLength": 18035,
"gzipLength": 3049,
"brotliLength": 0,
"mainUid": "134a-75"
"mainUid": "7fd3-79"
},
"134a-78": {
"7fd3-82": {
"renderedLength": 2752,
"gzipLength": 846,
"brotliLength": 0,
"mainUid": "134a-77"
"mainUid": "7fd3-81"
},
"134a-80": {
"renderedLength": 12121,
"gzipLength": 2593,
"7fd3-84": {
"renderedLength": 11823,
"gzipLength": 2498,
"brotliLength": 0,
"mainUid": "134a-79"
"mainUid": "7fd3-83"
},
"134a-82": {
"7fd3-86": {
"renderedLength": 6367,
"gzipLength": 1219,
"brotliLength": 0,
"mainUid": "134a-81"
"mainUid": "7fd3-85"
},
"134a-84": {
"7fd3-88": {
"renderedLength": 23655,
"gzipLength": 3372,
"brotliLength": 0,
"mainUid": "134a-83"
"mainUid": "7fd3-87"
},
"134a-86": {
"renderedLength": 17596,
"gzipLength": 3408,
"7fd3-90": {
"renderedLength": 16080,
"gzipLength": 3057,
"brotliLength": 0,
"mainUid": "134a-85"
"mainUid": "7fd3-89"
},
"134a-88": {
"7fd3-92": {
"renderedLength": 1613,
"gzipLength": 444,
"brotliLength": 0,
"mainUid": "134a-87"
"mainUid": "7fd3-91"
},
"134a-90": {
"7fd3-94": {
"renderedLength": 2410,
"gzipLength": 793,
"brotliLength": 0,
"mainUid": "7fd3-93"
},
"7fd3-96": {
"renderedLength": 3507,
"gzipLength": 1011,
"brotliLength": 0,
"mainUid": "7fd3-95"
},
"7fd3-98": {
"renderedLength": 2457,
"gzipLength": 568,
"brotliLength": 0,
"mainUid": "134a-89"
"mainUid": "7fd3-97"
},
"134a-92": {
"renderedLength": 1362,
"gzipLength": 472,
"7fd3-100": {
"renderedLength": 3030,
"gzipLength": 884,
"brotliLength": 0,
"mainUid": "134a-91"
"mainUid": "7fd3-99"
},
"134a-94": {
"renderedLength": 807,
"gzipLength": 291,
"7fd3-102": {
"renderedLength": 2396,
"gzipLength": 692,
"brotliLength": 0,
"mainUid": "134a-93"
"mainUid": "7fd3-101"
},
"134a-96": {
"renderedLength": 2482,
"gzipLength": 823,
"7fd3-104": {
"renderedLength": 3389,
"gzipLength": 1017,
"brotliLength": 0,
"mainUid": "134a-95"
"mainUid": "7fd3-103"
},
"134a-98": {
"renderedLength": 4752,
"gzipLength": 1344,
"7fd3-106": {
"renderedLength": 5734,
"gzipLength": 1523,
"brotliLength": 0,
"mainUid": "134a-97"
"mainUid": "7fd3-105"
},
"134a-100": {
"renderedLength": 556,
"gzipLength": 265,
"7fd3-108": {
"renderedLength": 1381,
"gzipLength": 497,
"brotliLength": 0,
"mainUid": "134a-99"
"mainUid": "7fd3-107"
},
"134a-102": {
"renderedLength": 720,
"gzipLength": 281,
"7fd3-110": {
"renderedLength": 1249,
"gzipLength": 405,
"brotliLength": 0,
"mainUid": "134a-101"
"mainUid": "7fd3-109"
},
"134a-104": {
"7fd3-112": {
"renderedLength": 0,
"gzipLength": 0,
"brotliLength": 0,
"mainUid": "134a-103"
"mainUid": "7fd3-111"
}
},
"nodeMetas": {
"134a-53": {
"7fd3-57": {
"id": "\u0000rollupPluginBabelHelpers.js",
"moduleParts": {
"index.production.js": "134a-54"
"index.production.js": "7fd3-58"
},

@@ -307,41 +327,44 @@ "imported": [],

{
"uid": "134a-85"
"uid": "7fd3-89"
},
{
"uid": "134a-87"
"uid": "7fd3-91"
},
{
"uid": "134a-57"
"uid": "7fd3-61"
},
{
"uid": "134a-59"
"uid": "7fd3-63"
},
{
"uid": "134a-71"
"uid": "7fd3-75"
},
{
"uid": "134a-75"
"uid": "7fd3-79"
},
{
"uid": "134a-79"
"uid": "7fd3-83"
},
{
"uid": "134a-81"
"uid": "7fd3-85"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
},
{
"uid": "134a-65"
"uid": "7fd3-95"
},
{
"uid": "7fd3-69"
}
]
},
"134a-55": {
"7fd3-59": {
"id": "/packages/table-core/src/utils.tsx",
"moduleParts": {
"index.production.js": "134a-56"
"index.production.js": "7fd3-60"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
}

@@ -351,56 +374,77 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
},
{
"uid": "134a-57"
"uid": "7fd3-61"
},
{
"uid": "134a-59"
"uid": "7fd3-63"
},
{
"uid": "134a-63"
"uid": "7fd3-67"
},
{
"uid": "134a-67"
"uid": "7fd3-71"
},
{
"uid": "134a-83"
"uid": "7fd3-87"
},
{
"uid": "134a-69"
"uid": "7fd3-73"
},
{
"uid": "134a-71"
"uid": "7fd3-75"
},
{
"uid": "134a-73"
"uid": "7fd3-77"
},
{
"uid": "134a-75"
"uid": "7fd3-79"
},
{
"uid": "134a-79"
"uid": "7fd3-83"
},
{
"uid": "134a-81"
"uid": "7fd3-85"
},
{
"uid": "134a-97"
"uid": "7fd3-93"
},
{
"uid": "7fd3-95"
},
{
"uid": "7fd3-99"
},
{
"uid": "7fd3-101"
},
{
"uid": "7fd3-103"
},
{
"uid": "7fd3-105"
},
{
"uid": "7fd3-107"
},
{
"uid": "7fd3-109"
}
]
},
"134a-57": {
"7fd3-61": {
"id": "/packages/table-core/src/features/ColumnSizing.ts",
"moduleParts": {
"index.production.js": "134a-58"
"index.production.js": "7fd3-62"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -410,23 +454,23 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
},
{
"uid": "134a-83"
"uid": "7fd3-87"
}
]
},
"134a-59": {
"7fd3-63": {
"id": "/packages/table-core/src/features/Expanding.ts",
"moduleParts": {
"index.production.js": "134a-60"
"index.production.js": "7fd3-64"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -436,13 +480,13 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-61": {
"7fd3-65": {
"id": "/packages/table-core/src/filterTypes.ts",
"moduleParts": {
"index.production.js": "134a-62"
"index.production.js": "7fd3-66"
},

@@ -452,17 +496,17 @@ "imported": [],

{
"uid": "134a-63"
"uid": "7fd3-67"
}
]
},
"134a-63": {
"7fd3-67": {
"id": "/packages/table-core/src/features/Filters.ts",
"moduleParts": {
"index.production.js": "134a-64"
"index.production.js": "7fd3-68"
},
"imported": [
{
"uid": "134a-61"
"uid": "7fd3-65"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -472,17 +516,17 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-65": {
"7fd3-69": {
"id": "/packages/table-core/src/aggregationTypes.ts",
"moduleParts": {
"index.production.js": "134a-66"
"index.production.js": "7fd3-70"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
}

@@ -492,17 +536,20 @@ ],

{
"uid": "134a-67"
"uid": "7fd3-89"
},
{
"uid": "7fd3-71"
}
]
},
"134a-67": {
"7fd3-71": {
"id": "/packages/table-core/src/features/Grouping.ts",
"moduleParts": {
"index.production.js": "134a-68"
"index.production.js": "7fd3-72"
},
"imported": [
{
"uid": "134a-65"
"uid": "7fd3-69"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -512,23 +559,23 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
},
{
"uid": "134a-69"
"uid": "7fd3-73"
}
]
},
"134a-69": {
"7fd3-73": {
"id": "/packages/table-core/src/features/Ordering.ts",
"moduleParts": {
"index.production.js": "134a-70"
"index.production.js": "7fd3-74"
},
"imported": [
{
"uid": "134a-55"
"uid": "7fd3-59"
},
{
"uid": "134a-67"
"uid": "7fd3-71"
}

@@ -538,20 +585,20 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-71": {
"7fd3-75": {
"id": "/packages/table-core/src/features/Pagination.ts",
"moduleParts": {
"index.production.js": "134a-72"
"index.production.js": "7fd3-76"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -561,17 +608,17 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-73": {
"7fd3-77": {
"id": "/packages/table-core/src/features/Pinning.ts",
"moduleParts": {
"index.production.js": "134a-74"
"index.production.js": "7fd3-78"
},
"imported": [
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -581,20 +628,20 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-75": {
"7fd3-79": {
"id": "/packages/table-core/src/features/RowSelection.ts",
"moduleParts": {
"index.production.js": "134a-76"
"index.production.js": "7fd3-80"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -604,13 +651,13 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-77": {
"7fd3-81": {
"id": "/packages/table-core/src/sortTypes.ts",
"moduleParts": {
"index.production.js": "134a-78"
"index.production.js": "7fd3-82"
},

@@ -620,20 +667,20 @@ "imported": [],

{
"uid": "134a-79"
"uid": "7fd3-83"
}
]
},
"134a-79": {
"7fd3-83": {
"id": "/packages/table-core/src/features/Sorting.ts",
"moduleParts": {
"index.production.js": "134a-80"
"index.production.js": "7fd3-84"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-77"
"uid": "7fd3-81"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -643,20 +690,20 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-81": {
"7fd3-85": {
"id": "/packages/table-core/src/features/Visibility.ts",
"moduleParts": {
"index.production.js": "134a-82"
"index.production.js": "7fd3-86"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -666,20 +713,20 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-83": {
"7fd3-87": {
"id": "/packages/table-core/src/features/Headers.ts",
"moduleParts": {
"index.production.js": "134a-84"
"index.production.js": "7fd3-88"
},
"imported": [
{
"uid": "134a-55"
"uid": "7fd3-59"
},
{
"uid": "134a-57"
"uid": "7fd3-61"
}

@@ -689,53 +736,56 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-85"
"uid": "7fd3-89"
}
]
},
"134a-85": {
"7fd3-89": {
"id": "/packages/table-core/src/core.tsx",
"moduleParts": {
"index.production.js": "134a-86"
"index.production.js": "7fd3-90"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
},
{
"uid": "134a-57"
"uid": "7fd3-61"
},
{
"uid": "134a-59"
"uid": "7fd3-63"
},
{
"uid": "134a-63"
"uid": "7fd3-67"
},
{
"uid": "134a-67"
"uid": "7fd3-71"
},
{
"uid": "134a-69"
"uid": "7fd3-73"
},
{
"uid": "134a-71"
"uid": "7fd3-75"
},
{
"uid": "134a-73"
"uid": "7fd3-77"
},
{
"uid": "134a-75"
"uid": "7fd3-79"
},
{
"uid": "134a-79"
"uid": "7fd3-83"
},
{
"uid": "134a-81"
"uid": "7fd3-85"
},
{
"uid": "134a-83"
"uid": "7fd3-87"
},
{
"uid": "7fd3-69"
}

@@ -745,14 +795,14 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-87": {
"7fd3-91": {
"id": "/packages/table-core/src/createTable.tsx",
"moduleParts": {
"index.production.js": "134a-88"
"index.production.js": "7fd3-92"
},
"imported": [
{
"uid": "134a-53"
"uid": "7fd3-57"
}

@@ -762,10 +812,45 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-89": {
"7fd3-93": {
"id": "/packages/table-core/src/utils/getCoreRowModelSync.ts",
"moduleParts": {
"index.production.js": "7fd3-94"
},
"imported": [
{
"uid": "7fd3-59"
}
],
"importedBy": [
{
"uid": "7fd3-111"
}
]
},
"7fd3-95": {
"id": "/packages/table-core/src/utils/getCoreRowModelAsync.ts",
"moduleParts": {
"index.production.js": "7fd3-96"
},
"imported": [
{
"uid": "7fd3-57"
},
{
"uid": "7fd3-59"
}
],
"importedBy": [
{
"uid": "7fd3-111"
}
]
},
"7fd3-97": {
"id": "/packages/table-core/src/utils/filterRowsUtils.ts",
"moduleParts": {
"index.production.js": "134a-90"
"index.production.js": "7fd3-98"
},

@@ -775,17 +860,20 @@ "imported": [],

{
"uid": "134a-91"
"uid": "7fd3-99"
},
{
"uid": "134a-93"
"uid": "7fd3-101"
}
]
},
"134a-91": {
"id": "/packages/table-core/src/utils/columnFilterRowsFn.ts",
"7fd3-99": {
"id": "/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts",
"moduleParts": {
"index.production.js": "134a-92"
"index.production.js": "7fd3-100"
},
"imported": [
{
"uid": "134a-89"
"uid": "7fd3-59"
},
{
"uid": "7fd3-97"
}

@@ -795,14 +883,17 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-93": {
"id": "/packages/table-core/src/utils/globalFilterRowsFn.ts",
"7fd3-101": {
"id": "/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts",
"moduleParts": {
"index.production.js": "134a-94"
"index.production.js": "7fd3-102"
},
"imported": [
{
"uid": "134a-89"
"uid": "7fd3-59"
},
{
"uid": "7fd3-97"
}

@@ -812,26 +903,30 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-95": {
"id": "/packages/table-core/src/utils/sortRowsFn.ts",
"7fd3-103": {
"id": "/packages/table-core/src/utils/getSortedRowModelSync.ts",
"moduleParts": {
"index.production.js": "134a-96"
"index.production.js": "7fd3-104"
},
"imported": [],
"imported": [
{
"uid": "7fd3-59"
}
],
"importedBy": [
{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-97": {
"id": "/packages/table-core/src/utils/groupRowsFn.ts",
"7fd3-105": {
"id": "/packages/table-core/src/utils/getGroupedRowModel.ts",
"moduleParts": {
"index.production.js": "134a-98"
"index.production.js": "7fd3-106"
},
"imported": [
{
"uid": "134a-55"
"uid": "7fd3-59"
}

@@ -841,29 +936,36 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-99": {
"id": "/packages/table-core/src/utils/expandRowsFn.ts",
"7fd3-107": {
"id": "/packages/table-core/src/utils/getExpandedRowModel.ts",
"moduleParts": {
"index.production.js": "134a-100"
"index.production.js": "7fd3-108"
},
"imported": [],
"imported": [
{
"uid": "7fd3-59"
}
],
"importedBy": [
{
"uid": "134a-103"
"uid": "7fd3-111"
},
{
"uid": "134a-101"
"uid": "7fd3-109"
}
]
},
"134a-101": {
"id": "/packages/table-core/src/utils/paginateRowsFn.ts",
"7fd3-109": {
"id": "/packages/table-core/src/utils/getPaginationRowModel.ts",
"moduleParts": {
"index.production.js": "134a-102"
"index.production.js": "7fd3-110"
},
"imported": [
{
"uid": "134a-99"
"uid": "7fd3-59"
},
{
"uid": "7fd3-107"
}

@@ -873,74 +975,80 @@ ],

{
"uid": "134a-103"
"uid": "7fd3-111"
}
]
},
"134a-103": {
"7fd3-111": {
"id": "/packages/table-core/src/index.tsx",
"moduleParts": {
"index.production.js": "134a-104"
"index.production.js": "7fd3-112"
},
"imported": [
{
"uid": "134a-85"
"uid": "7fd3-89"
},
{
"uid": "134a-105"
"uid": "7fd3-113"
},
{
"uid": "134a-87"
"uid": "7fd3-91"
},
{
"uid": "134a-57"
"uid": "7fd3-61"
},
{
"uid": "134a-59"
"uid": "7fd3-63"
},
{
"uid": "134a-63"
"uid": "7fd3-67"
},
{
"uid": "134a-67"
"uid": "7fd3-71"
},
{
"uid": "134a-83"
"uid": "7fd3-87"
},
{
"uid": "134a-69"
"uid": "7fd3-73"
},
{
"uid": "134a-71"
"uid": "7fd3-75"
},
{
"uid": "134a-73"
"uid": "7fd3-77"
},
{
"uid": "134a-75"
"uid": "7fd3-79"
},
{
"uid": "134a-79"
"uid": "7fd3-83"
},
{
"uid": "134a-81"
"uid": "7fd3-85"
},
{
"uid": "134a-55"
"uid": "7fd3-59"
},
{
"uid": "134a-91"
"uid": "7fd3-93"
},
{
"uid": "134a-93"
"uid": "7fd3-95"
},
{
"uid": "134a-95"
"uid": "7fd3-99"
},
{
"uid": "134a-97"
"uid": "7fd3-101"
},
{
"uid": "134a-99"
"uid": "7fd3-103"
},
{
"uid": "134a-101"
"uid": "7fd3-105"
},
{
"uid": "7fd3-107"
},
{
"uid": "7fd3-109"
}

@@ -951,3 +1059,3 @@ ],

},
"134a-105": {
"7fd3-113": {
"id": "/packages/table-core/src/types.ts",

@@ -958,3 +1066,3 @@ "moduleParts": {},

{
"uid": "134a-103"
"uid": "7fd3-111"
}

@@ -965,3 +1073,3 @@ ]

"env": {
"rollup": "2.66.0"
"rollup": "2.70.2"
},

@@ -968,0 +1076,0 @@ "options": {

@@ -17,3 +17,3 @@ export declare const aggregationTypes: {

declare function extent(_getLeafValues: () => unknown[], getChildValues: () => unknown[]): (number | undefined)[];
declare function mean(getLeafValues: () => unknown[]): number | undefined;
export declare function mean(getLeafValues: () => unknown[]): number | undefined;
declare function median(getLeafValues: () => unknown[]): number | undefined;

@@ -20,0 +20,0 @@ declare function unique<T>(getLeafValues: () => T[]): T[];

import { RequiredKeys } from './utils';
import { Updater, PropGetterValue, Options, TableState, ColumnDef, Row, Column, Cell, Header, AccessorFn, TableProps, TableBodyProps, PropGetter, Getter, RowProps, CellProps, TableInstance, RowValues, Renderable, UseRenderer, RowModel, TableFeature, AnyGenerics } from './types';
export declare type CoreTableState = {
coreProgress: number;
};
export declare type CoreOptions<TGenerics extends AnyGenerics> = {

@@ -9,2 +12,3 @@ data: TGenerics['Row'][];

render: TGenerics['Render'];
getCoreRowModel: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
debugAll?: boolean;

@@ -21,3 +25,3 @@ debugTable?: boolean;

mergeOptions?: (defaultOptions: TableFeature, options: Partial<Options<TGenerics>>) => Options<TGenerics>;
meta?: TGenerics['TableMeta'] extends {} ? TGenerics['TableMeta'] : any;
meta?: TGenerics['TableMeta'];
};

@@ -44,2 +48,3 @@ export declare type TableCore<TGenerics extends AnyGenerics> = {

getCoreRowModel: () => RowModel<TGenerics>;
_getCoreRowModel?: () => RowModel<TGenerics>;
getRowModel: () => RowModel<TGenerics>;

@@ -57,2 +62,3 @@ getRow: (id: string) => Row<TGenerics>;

render: <TProps>(template: Renderable<TGenerics, TProps>, props: TProps) => string | null | ReturnType<UseRenderer<TGenerics>>;
getOverallProgress: () => number;
};

@@ -59,0 +65,0 @@ export declare type CoreRow<TGenerics extends AnyGenerics> = {

@@ -19,3 +19,3 @@ import { MouseEvent, TouchEvent } from 'react';

enableExpanded?: boolean;
expandRowsFn?: (instance: TableInstance<TGenerics>, rowModel: RowModel<TGenerics>) => RowModel<TGenerics>;
getExpandedRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
expandSubRows?: boolean;

@@ -45,2 +45,3 @@ defaultCanExpand?: boolean;

getExpandedRowModel: () => RowModel<TGenerics>;
_getExpandedRowModel?: () => RowModel<TGenerics>;
getPreExpandedRowModel: () => RowModel<TGenerics>;

@@ -47,0 +48,0 @@ };

@@ -19,2 +19,4 @@ import { RowModel } from '..';

globalFilter: any;
columnFiltersProgress: number;
globalFilterProgress: number;
};

@@ -54,3 +56,3 @@ export declare type FilterType<TGenerics extends AnyGenerics> = 'auto' | BuiltInFilterType | TGenerics['FilterFns'] | FilterFn<TGenerics>;

enableColumnFilters?: boolean;
columnFilterRowsFn?: (instance: TableInstance<TGenerics>, coreRowModel: RowModel<TGenerics>) => RowModel<TGenerics>;
getColumnFilteredRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
globalFilterType?: FilterType<TGenerics>;

@@ -61,3 +63,3 @@ onGlobalFilterChange?: OnChangeFn<any>;

enableGlobalFilter?: boolean;
globalFilterRowsFn?: (instance: TableInstance<TGenerics>, rowModel: RowModel<TGenerics>) => RowModel<TGenerics>;
getGlobalFilteredRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
getColumnCanGlobalFilterFn?: (column: Column<TGenerics>) => boolean;

@@ -80,2 +82,3 @@ };

getColumnFilteredRowModel: () => RowModel<TGenerics>;
_getColumnFilteredRowModel?: () => RowModel<TGenerics>;
setGlobalFilter: (updater: Updater<any>) => void;

@@ -88,2 +91,3 @@ resetGlobalFilter: () => void;

getGlobalFilteredRowModel: () => RowModel<TGenerics>;
_getGlobalFilteredRowModel?: () => RowModel<TGenerics>;
};

@@ -90,0 +94,0 @@ export declare const Filters: {

@@ -59,3 +59,3 @@ import { RowModel } from '..';

enableGroupingRemoval?: boolean;
groupRowsFn?: (instance: TableInstance<TGenerics>, rowModel: RowModel<TGenerics>) => RowModel<TGenerics>;
getGroupedRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
groupedColumnMode?: false | 'reorder' | 'remove';

@@ -82,2 +82,3 @@ };

getGroupedRowModel: () => RowModel<TGenerics>;
_getGroupedRowModel?: () => RowModel<TGenerics>;
};

@@ -92,3 +93,3 @@ export declare const Grouping: {

createCell: <TGenerics_5 extends AnyGenerics>(cell: Cell<TGenerics_5>, column: Column<TGenerics_5>, row: Row<TGenerics_5>, instance: TableInstance<TGenerics_5>) => GroupingCell<TGenerics_5>;
orderColumns: <TGenerics_6 extends AnyGenerics>(leafColumns: Column<TGenerics_6>[], grouping: string[], groupedColumnMode?: GroupingColumnMode | undefined) => Column<TGenerics_6>[];
orderColumns: <TGenerics_6 extends AnyGenerics>(leafColumns: Column<TGenerics_6>[], grouping: string[], groupedColumnMode?: GroupingColumnMode) => Column<TGenerics_6>[];
};

@@ -13,3 +13,3 @@ import { OnChangeFn, AnyGenerics, TableInstance, RowModel, Updater } from '../types';

autoResetPageIndex?: boolean;
paginateRowsFn?: (instance: TableInstance<TGenerics>, rowModel: RowModel<TGenerics>) => RowModel<TGenerics>;
getPaginationRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
};

@@ -36,2 +36,3 @@ export declare type PaginationDefaultOptions = {

getPaginationRowModel: () => RowModel<TGenerics>;
_getPaginationRowModel?: () => RowModel<TGenerics>;
getPageCount: () => number;

@@ -38,0 +39,0 @@ };

@@ -52,3 +52,3 @@ import { MouseEvent, TouchEvent } from 'react';

sortDescFirst?: boolean;
sortRowsFn?: (instance: TableInstance<TGenerics>, rowModel: RowModel<TGenerics>) => RowModel<TGenerics>;
getSortedRowModel?: (instance: TableInstance<TGenerics>) => () => RowModel<TGenerics>;
maxMultiSortColCount?: number;

@@ -76,2 +76,3 @@ isMultiSortEvent?: (e: MouseEvent | TouchEvent) => boolean;

getSortedRowModel: () => RowModel<TGenerics>;
_getSortedRowModel?: () => RowModel<TGenerics>;
};

@@ -78,0 +79,0 @@ export declare const Sorting: {

@@ -18,7 +18,9 @@ export * from './core';

export * from './utils';
export * from './utils/columnFilterRowsFn';
export * from './utils/globalFilterRowsFn';
export * from './utils/sortRowsFn';
export * from './utils/groupRowsFn';
export * from './utils/expandRowsFn';
export * from './utils/paginateRowsFn';
export * from './utils/getCoreRowModelSync';
export * from './utils/getCoreRowModelAsync';
export * from './utils/getColumnFilteredRowModelSync';
export * from './utils/getGlobalFilteredRowModelSync';
export * from './utils/getSortedRowModelSync';
export * from './utils/getGroupedRowModel';
export * from './utils/getExpandedRowModel';
export * from './utils/getPaginationRowModel';

@@ -1,2 +0,2 @@

import { CoreColumn, CoreColumnDef, CoreOptions, CoreRow, TableCore } from './core';
import { CoreColumn, CoreColumnDef, CoreOptions, CoreRow, CoreTableState, TableCore } from './core';
import { VisibilityInstance, VisibilityTableState, VisibilityColumn as ColumnVisibilityColumn, VisibilityOptions, VisibilityColumnDef, VisibilityRow } from './features/Visibility';

@@ -43,3 +43,3 @@ import { ColumnOrderInstance, ColumnOrderOptions, ColumnOrderTableState } from './features/Ordering';

export declare type OnChangeFn<T> = (updaterOrValue: Updater<T>, value: T) => void;
export declare type TableState = VisibilityTableState & ColumnOrderTableState & ColumnPinningTableState & FiltersTableState & SortingTableState & ExpandedTableState & GroupingTableState & ColumnSizingTableState & PaginationTableState & RowSelectionTableState;
export declare type TableState = CoreTableState & VisibilityTableState & ColumnOrderTableState & ColumnPinningTableState & FiltersTableState & SortingTableState & ExpandedTableState & GroupingTableState & ColumnSizingTableState & PaginationTableState & RowSelectionTableState;
export declare type Row<TGenerics extends AnyGenerics> = CoreRow<TGenerics> & VisibilityRow<TGenerics> & HeadersRow<TGenerics> & GroupingRow & RowSelectionRow & ExpandedRow;

@@ -46,0 +46,0 @@ export declare type RowValues = {

@@ -11,2 +11,7 @@ import { Getter, NoInfer, PropGetterValue, TableState, Updater } from './types';

export declare function noop(): void;
export declare function getBatchGroups<T>(arr: T[], count: number): {
start: number;
end: number;
items: T[];
}[];
export declare function makeStateUpdater(key: keyof TableState, instance: unknown): (updater: Updater<any>) => void;

@@ -23,2 +28,13 @@ declare type AnyFunction = (...args: any) => any;

}): () => TResult;
declare type WorkFn = () => void;
export declare function incrementalMemo<TDeps extends readonly any[], TResult>(getDeps: () => [...TDeps], getInitialValue: (...args: NoInfer<[...TDeps]>) => TResult, schedule: (...args: NoInfer<[...TDeps]>) => (resultRef: {
current: TResult;
}) => (scheduler: (workFn: WorkFn) => void) => void, opts: {
key: string;
onProgress: (progress: number, nextResult: TResult, result?: TResult) => void;
onChange: (result: TResult, previousResult?: TResult) => void;
initialSync?: boolean;
timeout?: number;
debug?: () => any;
}): () => TResult;
export {};
{
"name": "@tanstack/table-core",
"author": "Tanner Linsley",
"version": "8.0.0-alpha.30",
"version": "8.0.0-alpha.32",
"description": "Hooks for building lightweight, fast and extendable datagrids for React",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -75,3 +75,3 @@ export const aggregationTypes = {

function mean(getLeafValues: () => unknown[]) {
export function mean(getLeafValues: () => unknown[]) {
let count = 0

@@ -78,0 +78,0 @@ let sum = 0

@@ -34,6 +34,5 @@ import { MouseEvent, TouchEvent } from 'react'

enableExpanded?: boolean
expandRowsFn?: (
instance: TableInstance<TGenerics>,
rowModel: RowModel<TGenerics>
) => RowModel<TGenerics>
getExpandedRowModel?: (
instance: TableInstance<TGenerics>
) => () => RowModel<TGenerics>
expandSubRows?: boolean

@@ -70,2 +69,3 @@ defaultCanExpand?: boolean

getExpandedRowModel: () => RowModel<TGenerics>
_getExpandedRowModel?: () => RowModel<TGenerics>
getPreExpandedRowModel: () => RowModel<TGenerics>

@@ -101,2 +101,4 @@ }

_notifyExpandedReset: () => {
instance._notifyPageIndexReset()
if (!registered) {

@@ -275,28 +277,18 @@ registered = true

},
getExpandedRowModel: memo(
() => [
instance.getState().expanded,
instance.getGroupedRowModel(),
instance.options.expandRowsFn,
instance.options.paginateExpandedRows,
],
(expanded, rowModel, expandRowsFn, paginateExpandedRows) => {
if (
!expandRowsFn ||
// Do not expand if rows are not included in pagination
!paginateExpandedRows ||
(expanded !== true && !Object.keys(expanded ?? {}).length)
) {
return rowModel
}
getPreExpandedRowModel: () => instance.getGroupedRowModel(),
getExpandedRowModel: () => {
if (
!instance._getExpandedRowModel &&
instance.options.getExpandedRowModel
) {
instance._getExpandedRowModel =
instance.options.getExpandedRowModel(instance)
}
return expandRowsFn(instance, rowModel)
},
{
key: 'getExpandedRowModel',
debug: () => instance.options.debugAll ?? instance.options.debugTable,
if (!instance._getExpandedRowModel) {
return instance.getPreExpandedRowModel()
}
),
getPreExpandedRowModel: () => instance.getGroupedRowModel(),
return instance._getExpandedRowModel()
},
}

@@ -303,0 +295,0 @@ },

@@ -45,2 +45,4 @@ import { RowModel } from '..'

globalFilter: any
columnFiltersProgress: number
globalFilterProgress: number
}

@@ -85,6 +87,5 @@

enableColumnFilters?: boolean
columnFilterRowsFn?: (
instance: TableInstance<TGenerics>,
coreRowModel: RowModel<TGenerics>
) => RowModel<TGenerics>
getColumnFilteredRowModel?: (
instance: TableInstance<TGenerics>
) => () => RowModel<TGenerics>
// Global

@@ -96,6 +97,5 @@ globalFilterType?: FilterType<TGenerics>

enableGlobalFilter?: boolean
globalFilterRowsFn?: (
instance: TableInstance<TGenerics>,
rowModel: RowModel<TGenerics>
) => RowModel<TGenerics>
getGlobalFilteredRowModel?: (
instance: TableInstance<TGenerics>
) => () => RowModel<TGenerics>
getColumnCanGlobalFilterFn?: (column: Column<TGenerics>) => boolean

@@ -126,2 +126,3 @@ }

getColumnFilteredRowModel: () => RowModel<TGenerics>
_getColumnFilteredRowModel?: () => RowModel<TGenerics>

@@ -136,2 +137,3 @@ // Global Filters

getGlobalFilteredRowModel: () => RowModel<TGenerics>
_getGlobalFilteredRowModel?: () => RowModel<TGenerics>
}

@@ -154,2 +156,4 @@

globalFilter: undefined,
columnFiltersProgress: 1,
globalFilterProgress: 1,
}

@@ -244,2 +248,4 @@ },

_notifyFiltersReset: () => {
instance._notifySortingReset()
if (!registered) {

@@ -254,12 +260,15 @@ registered = true

if (instance.options.autoResetAll === true) {
instance.resetSorting()
} else {
if (instance.options.autoResetColumnFilters) {
instance.resetColumnFilters()
}
if (instance.options.autoResetGlobalFilter) {
instance.resetGlobalFilter()
}
if (
instance.options.autoResetAll === true ||
instance.options.autoResetColumnFilters
) {
instance.resetColumnFilters()
}
if (
instance.options.autoResetAll === true ||
instance.options.autoResetGlobalFilter
) {
instance.resetGlobalFilter()
}
},

@@ -473,89 +482,33 @@ getColumnAutoFilterFn: columnId => {

getPreColumnFilteredRowModel: () => instance.getCoreRowModel(),
getColumnFilteredRowModel: memo(
() => [
instance.getState().columnFilters,
instance.getCoreRowModel(),
instance.options.columnFilterRowsFn,
],
(columnFilters, rowModel, columnFiltersFn) => {
const columnFilteredRowModel = (() => {
if (!columnFilters?.length || !columnFiltersFn) {
return rowModel
}
getColumnFilteredRowModel: () => {
if (
!instance._getColumnFilteredRowModel &&
instance.options.getColumnFilteredRowModel
) {
instance._getColumnFilteredRowModel =
instance.options.getColumnFilteredRowModel(instance)
}
return columnFiltersFn(instance as any, rowModel)
})()
if (!instance._getColumnFilteredRowModel) {
return instance.getPreColumnFilteredRowModel()
}
// Now that each filtered column has it's partially filtered rows,
// lets assign the final filtered rows to all of the other columns
const nonFilteredColumns = instance
.getAllLeafColumns()
.filter(
column =>
!instance
.getState()
.columnFilters?.find(d => d.id === column.id)
)
return instance._getColumnFilteredRowModel()
},
getPreGlobalFilteredRowModel: () => instance.getColumnFilteredRowModel(),
getGlobalFilteredRowModel: () => {
if (
!instance._getGlobalFilteredRowModel &&
instance.options.getGlobalFilteredRowModel
) {
instance._getGlobalFilteredRowModel =
instance.options.getGlobalFilteredRowModel(instance)
}
// This essentially enables faceted filter options to be built easily
// using every column's preFilteredRows value
nonFilteredColumns.forEach(column => {
column.getPreFilteredRows = () => columnFilteredRowModel.rows
})
return columnFilteredRowModel
},
{
key: 'getColumnFilteredRowModel',
debug: () => instance.options.debugAll ?? instance.options.debugTable,
if (!instance._getGlobalFilteredRowModel) {
return instance.getPreGlobalFilteredRowModel()
}
),
getPreGlobalFilteredRowModel: () => instance.getColumnFilteredRowModel(),
getGlobalFilteredRowModel: memo(
() => [
instance.getState().globalFilter,
instance.getColumnFilteredRowModel(),
instance.options.globalFilterRowsFn,
],
(globalFilterValue, columnFilteredRowModel, globalFiltersFn) => {
const globalFilteredRowModel = (() => {
if (!globalFiltersFn || !globalFilterValue) {
return columnFilteredRowModel
}
return globalFiltersFn(
instance as TableInstance<TGenerics>,
columnFilteredRowModel
)
})()
// Now that each filtered column has it's partially filtered rows,
// lets assign the final filtered rows to all of the other columns
const nonFilteredColumns = instance
.getAllLeafColumns()
.filter(
column =>
!instance
.getState()
.columnFilters?.find(d => d.id === column.id)
)
// This essentially enables faceted filter options to be built easily
// using every column's preFilteredRows value
nonFilteredColumns.forEach(column => {
column.getPreFilteredRows = () => globalFilteredRowModel.rows
})
return globalFilteredRowModel
},
{
key: 'getGlobalFilteredRowModel',
debug: () => instance.options.debugAll ?? instance.options.debugTable,
onChange: () => {
instance._notifySortingReset()
},
}
),
return instance._getGlobalFilteredRowModel()
},
}

@@ -562,0 +515,0 @@ },

@@ -102,6 +102,5 @@ import { RowModel } from '..'

enableGroupingRemoval?: boolean
groupRowsFn?: (
instance: TableInstance<TGenerics>,
rowModel: RowModel<TGenerics>
) => RowModel<TGenerics>
getGroupedRowModel?: (
instance: TableInstance<TGenerics>
) => () => RowModel<TGenerics>

@@ -139,2 +138,3 @@ groupedColumnMode?: false | 'reorder' | 'remove'

getGroupedRowModel: () => RowModel<TGenerics>
_getGroupedRowModel?: () => RowModel<TGenerics>
}

@@ -191,2 +191,4 @@

_notifyGroupingReset: () => {
instance._notifyExpandedReset()
if (!registered) {

@@ -306,21 +308,17 @@ registered = true

getPreGroupedRowModel: () => instance.getSortedRowModel(),
getGroupedRowModel: memo(
() => [
instance.getState().grouping,
instance.getSortedRowModel(),
instance.options.groupRowsFn,
],
(grouping, rowModel, groupRowsFn) => {
if (!groupRowsFn || !grouping.length) {
return rowModel
}
getGroupedRowModel: () => {
if (
!instance._getGroupedRowModel &&
instance.options.getGroupedRowModel
) {
instance._getGroupedRowModel =
instance.options.getGroupedRowModel(instance)
}
return groupRowsFn(instance, rowModel)
},
{
key: 'getGroupedRowModel',
debug: () => instance.options.debugAll ?? instance.options.debugTable,
onChange: () => instance._notifyExpandedReset(),
if (!instance._getGroupedRowModel) {
return instance.getPreGroupedRowModel()
}
),
return instance._getGroupedRowModel()
},
}

@@ -327,0 +325,0 @@ },

@@ -24,6 +24,5 @@ import {

autoResetPageIndex?: boolean
paginateRowsFn?: (
instance: TableInstance<TGenerics>,
rowModel: RowModel<TGenerics>
) => RowModel<TGenerics>
getPaginationRowModel?: (
instance: TableInstance<TGenerics>
) => () => RowModel<TGenerics>
}

@@ -52,2 +51,3 @@

getPaginationRowModel: () => RowModel<TGenerics>
_getPaginationRowModel?: () => RowModel<TGenerics>
getPageCount: () => number

@@ -218,21 +218,18 @@ }

getPrePaginationRowModel: () => instance.getExpandedRowModel(),
getPaginationRowModel: memo(
() => [
instance.getState().pagination,
instance.getExpandedRowModel(),
instance.options.paginateRowsFn,
],
(_pagination, rowModel, paginateRowsFn) => {
if (!paginateRowsFn || !rowModel.rows.length) {
return rowModel
}
getPaginationRowModel: () => {
if (
!instance._getPaginationRowModel &&
instance.options.getPaginationRowModel
) {
instance._getPaginationRowModel =
instance.options.getPaginationRowModel(instance)
}
return paginateRowsFn(instance, rowModel)
},
{
key: 'getPaginationRowModel',
debug: () => instance.options.debugAll ?? instance.options.debugTable,
if (!instance._getPaginationRowModel) {
return instance.getPrePaginationRowModel()
}
),
return instance._getPaginationRowModel()
},
getPageCount: () => {

@@ -239,0 +236,0 @@ const { pageCount } = instance.getState().pagination

@@ -87,6 +87,5 @@ import { MouseEvent, TouchEvent } from 'react'

sortDescFirst?: boolean
sortRowsFn?: (
instance: TableInstance<TGenerics>,
rowModel: RowModel<TGenerics>
) => RowModel<TGenerics>
getSortedRowModel?: (
instance: TableInstance<TGenerics>
) => () => RowModel<TGenerics>
maxMultiSortColCount?: number

@@ -125,2 +124,3 @@ isMultiSortEvent?: (e: MouseEvent | TouchEvent) => boolean

getSortedRowModel: () => RowModel<TGenerics>
_getSortedRowModel?: () => RowModel<TGenerics>
}

@@ -182,2 +182,4 @@

_notifySortingReset: () => {
instance._notifyGroupingReset()
if (!registered) {

@@ -449,25 +451,19 @@ registered = true

getPreSortedRowModel: () => instance.getGlobalFilteredRowModel(),
getSortedRowModel: memo(
() => [
instance.getState().sorting,
instance.getGlobalFilteredRowModel(),
instance.options.sortRowsFn,
],
(sorting, rowModel, sortingFn) => {
if (!sortingFn || !sorting?.length) {
return rowModel
}
getSortedRowModel: () => {
if (
!instance._getSortedRowModel &&
instance.options.getSortedRowModel
) {
instance._getSortedRowModel =
instance.options.getSortedRowModel(instance)
}
return sortingFn(instance, rowModel)
},
{
key: 'getSortedRowModel',
debug: () => instance.options.debugAll ?? instance.options.debugTable,
onChange: () => {
instance._notifyGroupingReset()
},
if (!instance._getSortedRowModel) {
return instance.getPreSortedRowModel()
}
),
return instance._getSortedRowModel()
},
}
},
}

@@ -6,2 +6,3 @@ import {

CoreRow,
CoreTableState,
TableCore,

@@ -143,3 +144,4 @@ } from './core'

export type TableState = VisibilityTableState &
export type TableState = CoreTableState &
VisibilityTableState &
ColumnOrderTableState &

@@ -146,0 +148,0 @@ ColumnPinningTableState &

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 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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc