@tanstack/table-core 8.0.0-alpha.10 → 8.0.0-alpha.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"filterTypes.js","sources":["../../src/filterTypes.ts"],"sourcesContent":["import { AccessorFn, PartialGenerics, Row } from './types'\n\nexport const filterTypes = {\n includesString,\n includesStringSensitive,\n equalsString,\n equalsStringSensitive,\n arrIncludes,\n arrIncludesAll,\n equals,\n weakEquals,\n betweenNumberRange,\n}\n\nexport type BuiltInFilterType = keyof typeof filterTypes\n\nfunction includesString<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue).toLowerCase()\n\n rows = rows.filter(row => {\n return columnIds.some(id => {\n return String(row.values[id]).toLowerCase().includes(search)\n })\n })\n return rows\n}\n\nincludesString.autoRemove = (val: any) => testFalsey(val)\n\nfunction includesStringSensitive<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue)\n\n rows = rows.filter(row => {\n return columnIds.some(id => {\n return String(row.values[id]).includes(search)\n })\n })\n return rows\n}\n\nincludesStringSensitive.autoRemove = (val: any) => testFalsey(val)\n\nfunction equalsString<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue).toLowerCase()\n\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue !== undefined\n ? String(rowValue).toLowerCase() === search\n : true\n })\n })\n}\n\nequalsString.autoRemove = (val: any) => testFalsey(val)\n\nfunction equalsStringSensitive<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue)\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue !== undefined ? String(rowValue) === search : true\n })\n })\n}\n\nequalsStringSensitive.autoRemove = (val: any) => testFalsey(val)\n\nfunction arrIncludes<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue.includes(filterValue)\n })\n })\n}\n\narrIncludes.autoRemove = (val: any) => testFalsey(val) || !val?.length\n\nfunction arrIncludesAll<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown[]\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return (\n rowValue &&\n rowValue.length &&\n filterValue.every(val => rowValue.includes(val))\n )\n })\n })\n}\n\narrIncludesAll.autoRemove = (val: any) => testFalsey(val) || !val?.length\n\nfunction equals<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue === filterValue\n })\n })\n}\n\nequals.autoRemove = (val: any) => testFalsey(val)\n\nfunction weakEquals<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n // eslint-disable-next-line eqeqeq\n return rowValue == filterValue\n })\n })\n}\n\nweakEquals.autoRemove = (val: any) => testFalsey(val)\n\nfunction betweenNumberRange<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: [unknown, unknown]\n) {\n let [unsafeMin, unsafeMax] = filterValue || []\n\n let parsedMin =\n typeof unsafeMin !== 'number' ? parseFloat(unsafeMin as string) : unsafeMin\n let parsedMax =\n typeof unsafeMax !== 'number' ? parseFloat(unsafeMax as string) : unsafeMax\n\n let min =\n unsafeMin === null || Number.isNaN(parsedMin) ? -Infinity : parsedMin\n let max = unsafeMax === null || Number.isNaN(parsedMax) ? Infinity : parsedMax\n\n if (min > max) {\n const temp = min\n min = max\n max = temp\n }\n\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue >= min && rowValue <= max\n })\n })\n}\n\nbetweenNumberRange.autoRemove = (val: any) =>\n testFalsey(val) || (testFalsey(val[0]) && testFalsey(val[1]))\n\n// Utils\n\nfunction testFalsey(val: any) {\n return val === undefined || val === null || val === ''\n}\n"],"names":["filterTypes","includesString","includesStringSensitive","equalsString","equalsStringSensitive","arrIncludes","arrIncludesAll","equals","weakEquals","betweenNumberRange","rows","columnIds","filterValue","search","String","toLowerCase","filter","row","some","id","values","includes","autoRemove","val","testFalsey","rowValue","undefined","length","every","unsafeMin","unsafeMax","parsedMin","parseFloat","parsedMax","min","Number","isNaN","Infinity","max","temp"],"mappings":"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"}
1
+ {"version":3,"file":"filterTypes.js","sources":["../../src/filterTypes.ts"],"sourcesContent":["import { PartialGenerics, Row } from './types'\n\nexport const filterTypes = {\n includesString,\n includesStringSensitive,\n equalsString,\n equalsStringSensitive,\n arrIncludes,\n arrIncludesAll,\n equals,\n weakEquals,\n betweenNumberRange,\n}\n\nexport type BuiltInFilterType = keyof typeof filterTypes\n\nfunction includesString<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue).toLowerCase()\n\n rows = rows.filter(row => {\n return columnIds.some(id => {\n return String(row.values[id]).toLowerCase().includes(search)\n })\n })\n return rows\n}\n\nincludesString.autoRemove = (val: any) => testFalsey(val)\n\nfunction includesStringSensitive<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue)\n\n rows = rows.filter(row => {\n return columnIds.some(id => {\n return String(row.values[id]).includes(search)\n })\n })\n return rows\n}\n\nincludesStringSensitive.autoRemove = (val: any) => testFalsey(val)\n\nfunction equalsString<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue).toLowerCase()\n\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue !== undefined\n ? String(rowValue).toLowerCase() === search\n : true\n })\n })\n}\n\nequalsString.autoRemove = (val: any) => testFalsey(val)\n\nfunction equalsStringSensitive<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n const search = String(filterValue)\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue !== undefined ? String(rowValue) === search : true\n })\n })\n}\n\nequalsStringSensitive.autoRemove = (val: any) => testFalsey(val)\n\nfunction arrIncludes<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue.includes(filterValue)\n })\n })\n}\n\narrIncludes.autoRemove = (val: any) => testFalsey(val) || !val?.length\n\nfunction arrIncludesAll<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown[]\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return (\n rowValue &&\n rowValue.length &&\n filterValue.every(val => rowValue.includes(val))\n )\n })\n })\n}\n\narrIncludesAll.autoRemove = (val: any) => testFalsey(val) || !val?.length\n\nfunction equals<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue === filterValue\n })\n })\n}\n\nequals.autoRemove = (val: any) => testFalsey(val)\n\nfunction weakEquals<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: unknown\n) {\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n // eslint-disable-next-line eqeqeq\n return rowValue == filterValue\n })\n })\n}\n\nweakEquals.autoRemove = (val: any) => testFalsey(val)\n\nfunction betweenNumberRange<TGenerics extends PartialGenerics>(\n rows: Row<TGenerics>[],\n columnIds: string[],\n filterValue: [unknown, unknown]\n) {\n let [unsafeMin, unsafeMax] = filterValue || []\n\n let parsedMin =\n typeof unsafeMin !== 'number' ? parseFloat(unsafeMin as string) : unsafeMin\n let parsedMax =\n typeof unsafeMax !== 'number' ? parseFloat(unsafeMax as string) : unsafeMax\n\n let min =\n unsafeMin === null || Number.isNaN(parsedMin) ? -Infinity : parsedMin\n let max = unsafeMax === null || Number.isNaN(parsedMax) ? Infinity : parsedMax\n\n if (min > max) {\n const temp = min\n min = max\n max = temp\n }\n\n return rows.filter(row => {\n return columnIds.some(id => {\n const rowValue = row.values[id]\n return rowValue >= min && rowValue <= max\n })\n })\n}\n\nbetweenNumberRange.autoRemove = (val: any) =>\n testFalsey(val) || (testFalsey(val[0]) && testFalsey(val[1]))\n\n// Utils\n\nfunction testFalsey(val: any) {\n return val === undefined || val === null || val === ''\n}\n"],"names":["filterTypes","includesString","includesStringSensitive","equalsString","equalsStringSensitive","arrIncludes","arrIncludesAll","equals","weakEquals","betweenNumberRange","rows","columnIds","filterValue","search","String","toLowerCase","filter","row","some","id","values","includes","autoRemove","val","testFalsey","rowValue","undefined","length","every","unsafeMin","unsafeMax","parsedMin","parseFloat","parsedMax","min","Number","isNaN","Infinity","max","temp"],"mappings":"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"}
@@ -2669,7 +2669,7 @@ var drawChart = (function (exports) {
2669
2669
  </script>
2670
2670
  <script>
2671
2671
  /*<!--*/
2672
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"uid":"92c1-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"92c1-3","name":"utils.tsx"},{"uid":"92c1-5","name":"types.ts"},{"name":"features","children":[{"uid":"92c1-7","name":"Visibility.ts"},{"uid":"92c1-11","name":"Grouping.ts"},{"uid":"92c1-13","name":"Ordering.ts"},{"uid":"92c1-15","name":"Pinning.ts"},{"uid":"92c1-17","name":"ColumnSizing.ts"},{"uid":"92c1-19","name":"Headers.ts"},{"uid":"92c1-23","name":"Filters.ts"},{"uid":"92c1-27","name":"Sorting.ts"},{"uid":"92c1-29","name":"Expanding.ts"},{"uid":"92c1-31","name":"Pagination.ts"},{"uid":"92c1-33","name":"RowSelection.ts"}]},{"uid":"92c1-9","name":"aggregationTypes.ts"},{"uid":"92c1-21","name":"filterTypes.ts"},{"uid":"92c1-25","name":"sortTypes.ts"},{"uid":"92c1-35","name":"core.tsx"},{"uid":"92c1-37","name":"createTable.tsx"},{"name":"utils","children":[{"uid":"92c1-39","name":"columnFilterRowsFn.ts"},{"uid":"92c1-41","name":"globalFilterRowsFn.ts"},{"uid":"92c1-43","name":"sortRowsFn.ts"},{"uid":"92c1-45","name":"groupRowsFn.ts"},{"uid":"92c1-47","name":"expandRowsFn.ts"},{"uid":"92c1-49","name":"paginateRowsFn.ts"}]},{"uid":"92c1-51","name":"index.tsx"}]}]}],"isRoot":true},"nodeParts":{"92c1-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"92c1-0"},"92c1-3":{"renderedLength":4669,"gzipLength":1600,"brotliLength":0,"mainUid":"92c1-2"},"92c1-5":{"renderedLength":166,"gzipLength":144,"brotliLength":0,"mainUid":"92c1-4"},"92c1-7":{"renderedLength":6367,"gzipLength":1219,"brotliLength":0,"mainUid":"92c1-6"},"92c1-9":{"renderedLength":2520,"gzipLength":755,"brotliLength":0,"mainUid":"92c1-8"},"92c1-11":{"renderedLength":7933,"gzipLength":1720,"brotliLength":0,"mainUid":"92c1-10"},"92c1-13":{"renderedLength":2639,"gzipLength":799,"brotliLength":0,"mainUid":"92c1-12"},"92c1-15":{"renderedLength":5479,"gzipLength":1030,"brotliLength":0,"mainUid":"92c1-14"},"92c1-17":{"renderedLength":10861,"gzipLength":2159,"brotliLength":0,"mainUid":"92c1-16"},"92c1-19":{"renderedLength":23599,"gzipLength":3363,"brotliLength":0,"mainUid":"92c1-18"},"92c1-21":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"92c1-20"},"92c1-23":{"renderedLength":16477,"gzipLength":2909,"brotliLength":0,"mainUid":"92c1-22"},"92c1-25":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"92c1-24"},"92c1-27":{"renderedLength":11708,"gzipLength":2560,"brotliLength":0,"mainUid":"92c1-26"},"92c1-29":{"renderedLength":7896,"gzipLength":1718,"brotliLength":0,"mainUid":"92c1-28"},"92c1-31":{"renderedLength":6386,"gzipLength":1279,"brotliLength":0,"mainUid":"92c1-30"},"92c1-33":{"renderedLength":18164,"gzipLength":3123,"brotliLength":0,"mainUid":"92c1-32"},"92c1-35":{"renderedLength":17695,"gzipLength":3452,"brotliLength":0,"mainUid":"92c1-34"},"92c1-37":{"renderedLength":1145,"gzipLength":364,"brotliLength":0,"mainUid":"92c1-36"},"92c1-39":{"renderedLength":3174,"gzipLength":863,"brotliLength":0,"mainUid":"92c1-38"},"92c1-41":{"renderedLength":2540,"gzipLength":721,"brotliLength":0,"mainUid":"92c1-40"},"92c1-43":{"renderedLength":2436,"gzipLength":818,"brotliLength":0,"mainUid":"92c1-42"},"92c1-45":{"renderedLength":4814,"gzipLength":1358,"brotliLength":0,"mainUid":"92c1-44"},"92c1-47":{"renderedLength":595,"gzipLength":266,"brotliLength":0,"mainUid":"92c1-46"},"92c1-49":{"renderedLength":720,"gzipLength":281,"brotliLength":0,"mainUid":"92c1-48"},"92c1-51":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"92c1-50"}},"nodeMetas":{"92c1-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"92c1-1"},"imported":[],"importedBy":[{"uid":"92c1-34"},{"uid":"92c1-36"},{"uid":"92c1-16"},{"uid":"92c1-28"},{"uid":"92c1-30"},{"uid":"92c1-32"},{"uid":"92c1-26"},{"uid":"92c1-6"},{"uid":"92c1-2"},{"uid":"92c1-8"}]},"92c1-2":{"id":"/packages/table-core/src/utils.tsx","moduleParts":{"index.production.js":"92c1-3"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-52"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"},{"uid":"92c1-16"},{"uid":"92c1-28"},{"uid":"92c1-22"},{"uid":"92c1-10"},{"uid":"92c1-18"},{"uid":"92c1-12"},{"uid":"92c1-30"},{"uid":"92c1-14"},{"uid":"92c1-32"},{"uid":"92c1-26"},{"uid":"92c1-6"},{"uid":"92c1-44"}]},"92c1-4":{"id":"/packages/table-core/src/types.ts","moduleParts":{"index.production.js":"92c1-5"},"imported":[],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-6":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"92c1-7"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-8":{"id":"/packages/table-core/src/aggregationTypes.ts","moduleParts":{"index.production.js":"92c1-9"},"imported":[{"uid":"92c1-0"}],"importedBy":[{"uid":"92c1-10"}]},"92c1-10":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"92c1-11"},"imported":[{"uid":"92c1-8"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"},{"uid":"92c1-12"}]},"92c1-12":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"92c1-13"},"imported":[{"uid":"92c1-2"},{"uid":"92c1-10"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-14":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"92c1-15"},"imported":[{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-16":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"92c1-17"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"},{"uid":"92c1-18"}]},"92c1-18":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"92c1-19"},"imported":[{"uid":"92c1-2"},{"uid":"92c1-16"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-20":{"id":"/packages/table-core/src/filterTypes.ts","moduleParts":{"index.production.js":"92c1-21"},"imported":[],"importedBy":[{"uid":"92c1-22"}]},"92c1-22":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"92c1-23"},"imported":[{"uid":"92c1-20"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-24":{"id":"/packages/table-core/src/sortTypes.ts","moduleParts":{"index.production.js":"92c1-25"},"imported":[],"importedBy":[{"uid":"92c1-26"}]},"92c1-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"92c1-27"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-24"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-28":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"92c1-29"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-30":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"92c1-31"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-32":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"92c1-33"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-34"}]},"92c1-34":{"id":"/packages/table-core/src/core.tsx","moduleParts":{"index.production.js":"92c1-35"},"imported":[{"uid":"92c1-0"},{"uid":"92c1-2"},{"uid":"92c1-4"},{"uid":"92c1-6"},{"uid":"92c1-12"},{"uid":"92c1-14"},{"uid":"92c1-18"},{"uid":"92c1-22"},{"uid":"92c1-26"},{"uid":"92c1-10"},{"uid":"92c1-28"},{"uid":"92c1-16"},{"uid":"92c1-30"},{"uid":"92c1-32"}],"importedBy":[{"uid":"92c1-50"}]},"92c1-36":{"id":"/packages/table-core/src/createTable.tsx","moduleParts":{"index.production.js":"92c1-37"},"imported":[{"uid":"92c1-0"}],"importedBy":[{"uid":"92c1-50"}]},"92c1-38":{"id":"/packages/table-core/src/utils/columnFilterRowsFn.ts","moduleParts":{"index.production.js":"92c1-39"},"imported":[],"importedBy":[{"uid":"92c1-50"}]},"92c1-40":{"id":"/packages/table-core/src/utils/globalFilterRowsFn.ts","moduleParts":{"index.production.js":"92c1-41"},"imported":[],"importedBy":[{"uid":"92c1-50"}]},"92c1-42":{"id":"/packages/table-core/src/utils/sortRowsFn.ts","moduleParts":{"index.production.js":"92c1-43"},"imported":[],"importedBy":[{"uid":"92c1-50"}]},"92c1-44":{"id":"/packages/table-core/src/utils/groupRowsFn.ts","moduleParts":{"index.production.js":"92c1-45"},"imported":[{"uid":"92c1-2"}],"importedBy":[{"uid":"92c1-50"}]},"92c1-46":{"id":"/packages/table-core/src/utils/expandRowsFn.ts","moduleParts":{"index.production.js":"92c1-47"},"imported":[],"importedBy":[{"uid":"92c1-50"},{"uid":"92c1-48"}]},"92c1-48":{"id":"/packages/table-core/src/utils/paginateRowsFn.ts","moduleParts":{"index.production.js":"92c1-49"},"imported":[{"uid":"92c1-46"}],"importedBy":[{"uid":"92c1-50"}]},"92c1-50":{"id":"/packages/table-core/src/index.tsx","moduleParts":{"index.production.js":"92c1-51"},"imported":[{"uid":"92c1-34"},{"uid":"92c1-4"},{"uid":"92c1-36"},{"uid":"92c1-16"},{"uid":"92c1-28"},{"uid":"92c1-22"},{"uid":"92c1-10"},{"uid":"92c1-18"},{"uid":"92c1-12"},{"uid":"92c1-30"},{"uid":"92c1-14"},{"uid":"92c1-32"},{"uid":"92c1-26"},{"uid":"92c1-6"},{"uid":"92c1-2"},{"uid":"92c1-38"},{"uid":"92c1-40"},{"uid":"92c1-42"},{"uid":"92c1-44"},{"uid":"92c1-46"},{"uid":"92c1-48"}],"importedBy":[],"isEntry":true},"92c1-52":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"92c1-2"}],"isExternal":true}},"env":{"rollup":"2.66.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2672
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"uid":"ff18-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"ff18-3","name":"utils.tsx"},{"uid":"ff18-5","name":"types.ts"},{"name":"features","children":[{"uid":"ff18-7","name":"Visibility.ts"},{"uid":"ff18-11","name":"Grouping.ts"},{"uid":"ff18-13","name":"Ordering.ts"},{"uid":"ff18-15","name":"Pinning.ts"},{"uid":"ff18-17","name":"ColumnSizing.ts"},{"uid":"ff18-19","name":"Headers.ts"},{"uid":"ff18-23","name":"Filters.ts"},{"uid":"ff18-27","name":"Sorting.ts"},{"uid":"ff18-29","name":"Expanding.ts"},{"uid":"ff18-31","name":"Pagination.ts"},{"uid":"ff18-33","name":"RowSelection.ts"}]},{"uid":"ff18-9","name":"aggregationTypes.ts"},{"uid":"ff18-21","name":"filterTypes.ts"},{"uid":"ff18-25","name":"sortTypes.ts"},{"uid":"ff18-35","name":"core.tsx"},{"uid":"ff18-37","name":"createTable.tsx"},{"name":"utils","children":[{"uid":"ff18-39","name":"columnFilterRowsFn.ts"},{"uid":"ff18-41","name":"globalFilterRowsFn.ts"},{"uid":"ff18-43","name":"sortRowsFn.ts"},{"uid":"ff18-45","name":"groupRowsFn.ts"},{"uid":"ff18-47","name":"expandRowsFn.ts"},{"uid":"ff18-49","name":"paginateRowsFn.ts"}]},{"uid":"ff18-51","name":"index.tsx"}]}]}],"isRoot":true},"nodeParts":{"ff18-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"ff18-0"},"ff18-3":{"renderedLength":4669,"gzipLength":1600,"brotliLength":0,"mainUid":"ff18-2"},"ff18-5":{"renderedLength":166,"gzipLength":144,"brotliLength":0,"mainUid":"ff18-4"},"ff18-7":{"renderedLength":6367,"gzipLength":1219,"brotliLength":0,"mainUid":"ff18-6"},"ff18-9":{"renderedLength":2520,"gzipLength":755,"brotliLength":0,"mainUid":"ff18-8"},"ff18-11":{"renderedLength":7933,"gzipLength":1720,"brotliLength":0,"mainUid":"ff18-10"},"ff18-13":{"renderedLength":2639,"gzipLength":799,"brotliLength":0,"mainUid":"ff18-12"},"ff18-15":{"renderedLength":5479,"gzipLength":1030,"brotliLength":0,"mainUid":"ff18-14"},"ff18-17":{"renderedLength":10861,"gzipLength":2159,"brotliLength":0,"mainUid":"ff18-16"},"ff18-19":{"renderedLength":23599,"gzipLength":3363,"brotliLength":0,"mainUid":"ff18-18"},"ff18-21":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"ff18-20"},"ff18-23":{"renderedLength":16477,"gzipLength":2909,"brotliLength":0,"mainUid":"ff18-22"},"ff18-25":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"ff18-24"},"ff18-27":{"renderedLength":11708,"gzipLength":2560,"brotliLength":0,"mainUid":"ff18-26"},"ff18-29":{"renderedLength":7896,"gzipLength":1718,"brotliLength":0,"mainUid":"ff18-28"},"ff18-31":{"renderedLength":6386,"gzipLength":1279,"brotliLength":0,"mainUid":"ff18-30"},"ff18-33":{"renderedLength":18164,"gzipLength":3123,"brotliLength":0,"mainUid":"ff18-32"},"ff18-35":{"renderedLength":17695,"gzipLength":3452,"brotliLength":0,"mainUid":"ff18-34"},"ff18-37":{"renderedLength":1145,"gzipLength":364,"brotliLength":0,"mainUid":"ff18-36"},"ff18-39":{"renderedLength":3174,"gzipLength":863,"brotliLength":0,"mainUid":"ff18-38"},"ff18-41":{"renderedLength":2540,"gzipLength":721,"brotliLength":0,"mainUid":"ff18-40"},"ff18-43":{"renderedLength":2436,"gzipLength":818,"brotliLength":0,"mainUid":"ff18-42"},"ff18-45":{"renderedLength":4814,"gzipLength":1358,"brotliLength":0,"mainUid":"ff18-44"},"ff18-47":{"renderedLength":595,"gzipLength":266,"brotliLength":0,"mainUid":"ff18-46"},"ff18-49":{"renderedLength":720,"gzipLength":281,"brotliLength":0,"mainUid":"ff18-48"},"ff18-51":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"ff18-50"}},"nodeMetas":{"ff18-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"ff18-1"},"imported":[],"importedBy":[{"uid":"ff18-34"},{"uid":"ff18-36"},{"uid":"ff18-16"},{"uid":"ff18-28"},{"uid":"ff18-30"},{"uid":"ff18-32"},{"uid":"ff18-26"},{"uid":"ff18-6"},{"uid":"ff18-2"},{"uid":"ff18-8"}]},"ff18-2":{"id":"/packages/table-core/src/utils.tsx","moduleParts":{"index.production.js":"ff18-3"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-52"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"},{"uid":"ff18-16"},{"uid":"ff18-28"},{"uid":"ff18-22"},{"uid":"ff18-10"},{"uid":"ff18-18"},{"uid":"ff18-12"},{"uid":"ff18-30"},{"uid":"ff18-14"},{"uid":"ff18-32"},{"uid":"ff18-26"},{"uid":"ff18-6"},{"uid":"ff18-44"}]},"ff18-4":{"id":"/packages/table-core/src/types.ts","moduleParts":{"index.production.js":"ff18-5"},"imported":[],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-6":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"ff18-7"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-8":{"id":"/packages/table-core/src/aggregationTypes.ts","moduleParts":{"index.production.js":"ff18-9"},"imported":[{"uid":"ff18-0"}],"importedBy":[{"uid":"ff18-10"}]},"ff18-10":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"ff18-11"},"imported":[{"uid":"ff18-8"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"},{"uid":"ff18-12"}]},"ff18-12":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"ff18-13"},"imported":[{"uid":"ff18-2"},{"uid":"ff18-10"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-14":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"ff18-15"},"imported":[{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-16":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"ff18-17"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"},{"uid":"ff18-18"}]},"ff18-18":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"ff18-19"},"imported":[{"uid":"ff18-2"},{"uid":"ff18-16"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-20":{"id":"/packages/table-core/src/filterTypes.ts","moduleParts":{"index.production.js":"ff18-21"},"imported":[],"importedBy":[{"uid":"ff18-22"}]},"ff18-22":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"ff18-23"},"imported":[{"uid":"ff18-20"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-24":{"id":"/packages/table-core/src/sortTypes.ts","moduleParts":{"index.production.js":"ff18-25"},"imported":[],"importedBy":[{"uid":"ff18-26"}]},"ff18-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"ff18-27"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-24"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-28":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"ff18-29"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-30":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"ff18-31"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-32":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"ff18-33"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-34"}]},"ff18-34":{"id":"/packages/table-core/src/core.tsx","moduleParts":{"index.production.js":"ff18-35"},"imported":[{"uid":"ff18-0"},{"uid":"ff18-2"},{"uid":"ff18-4"},{"uid":"ff18-6"},{"uid":"ff18-12"},{"uid":"ff18-14"},{"uid":"ff18-18"},{"uid":"ff18-22"},{"uid":"ff18-26"},{"uid":"ff18-10"},{"uid":"ff18-28"},{"uid":"ff18-16"},{"uid":"ff18-30"},{"uid":"ff18-32"}],"importedBy":[{"uid":"ff18-50"}]},"ff18-36":{"id":"/packages/table-core/src/createTable.tsx","moduleParts":{"index.production.js":"ff18-37"},"imported":[{"uid":"ff18-0"}],"importedBy":[{"uid":"ff18-50"}]},"ff18-38":{"id":"/packages/table-core/src/utils/columnFilterRowsFn.ts","moduleParts":{"index.production.js":"ff18-39"},"imported":[],"importedBy":[{"uid":"ff18-50"}]},"ff18-40":{"id":"/packages/table-core/src/utils/globalFilterRowsFn.ts","moduleParts":{"index.production.js":"ff18-41"},"imported":[],"importedBy":[{"uid":"ff18-50"}]},"ff18-42":{"id":"/packages/table-core/src/utils/sortRowsFn.ts","moduleParts":{"index.production.js":"ff18-43"},"imported":[],"importedBy":[{"uid":"ff18-50"}]},"ff18-44":{"id":"/packages/table-core/src/utils/groupRowsFn.ts","moduleParts":{"index.production.js":"ff18-45"},"imported":[{"uid":"ff18-2"}],"importedBy":[{"uid":"ff18-50"}]},"ff18-46":{"id":"/packages/table-core/src/utils/expandRowsFn.ts","moduleParts":{"index.production.js":"ff18-47"},"imported":[],"importedBy":[{"uid":"ff18-50"},{"uid":"ff18-48"}]},"ff18-48":{"id":"/packages/table-core/src/utils/paginateRowsFn.ts","moduleParts":{"index.production.js":"ff18-49"},"imported":[{"uid":"ff18-46"}],"importedBy":[{"uid":"ff18-50"}]},"ff18-50":{"id":"/packages/table-core/src/index.tsx","moduleParts":{"index.production.js":"ff18-51"},"imported":[{"uid":"ff18-34"},{"uid":"ff18-4"},{"uid":"ff18-36"},{"uid":"ff18-16"},{"uid":"ff18-28"},{"uid":"ff18-22"},{"uid":"ff18-10"},{"uid":"ff18-18"},{"uid":"ff18-12"},{"uid":"ff18-30"},{"uid":"ff18-14"},{"uid":"ff18-32"},{"uid":"ff18-26"},{"uid":"ff18-6"},{"uid":"ff18-2"},{"uid":"ff18-38"},{"uid":"ff18-40"},{"uid":"ff18-42"},{"uid":"ff18-44"},{"uid":"ff18-46"},{"uid":"ff18-48"}],"importedBy":[],"isEntry":true},"ff18-52":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"ff18-2"}],"isExternal":true}},"env":{"rollup":"2.66.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;