@tanstack/table-core 8.0.0-alpha.53 → 8.0.0-alpha.54

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.
Files changed (94) hide show
  1. package/build/cjs/core.js +2 -2
  2. package/build/cjs/core.js.map +1 -1
  3. package/build/cjs/createTable.js.map +1 -1
  4. package/build/cjs/features/ColumnSizing.js.map +1 -1
  5. package/build/cjs/features/Expanding.js.map +1 -1
  6. package/build/cjs/features/Filters.js.map +1 -1
  7. package/build/cjs/features/Grouping.js.map +1 -1
  8. package/build/cjs/features/Headers.js.map +1 -1
  9. package/build/cjs/features/Ordering.js +1 -1
  10. package/build/cjs/features/Ordering.js.map +1 -1
  11. package/build/cjs/features/Pagination.js.map +1 -1
  12. package/build/cjs/features/Pinning.js.map +1 -1
  13. package/build/cjs/features/RowSelection.js.map +1 -1
  14. package/build/cjs/features/Sorting.js.map +1 -1
  15. package/build/cjs/features/Visibility.js.map +1 -1
  16. package/build/cjs/filterFns.js.map +1 -1
  17. package/build/cjs/sortingFns.js.map +1 -1
  18. package/build/cjs/utils/filterRowsUtils.js.map +1 -1
  19. package/build/cjs/utils/getColumnFilteredRowModelSync.js.map +1 -1
  20. package/build/cjs/utils/getCoreRowModelAsync.js.map +1 -1
  21. package/build/cjs/utils/getCoreRowModelSync.js.map +1 -1
  22. package/build/cjs/utils/getExpandedRowModel.js.map +1 -1
  23. package/build/cjs/utils/getGlobalFilteredRowModelSync.js.map +1 -1
  24. package/build/cjs/utils/getGroupedRowModel.js.map +1 -1
  25. package/build/cjs/utils/getPaginationRowModel.js.map +1 -1
  26. package/build/cjs/utils/getSortedRowModelSync.js.map +1 -1
  27. package/build/cjs/utils.js +2 -2
  28. package/build/cjs/utils.js.map +1 -1
  29. package/build/esm/index.js +5 -5
  30. package/build/esm/index.js.map +1 -1
  31. package/build/stats-html.html +1 -1
  32. package/build/stats-react.json +295 -295
  33. package/build/types/core.d.ts +7 -7
  34. package/build/types/createTable.d.ts +4 -4
  35. package/build/types/features/ColumnSizing.d.ts +8 -8
  36. package/build/types/features/Expanding.d.ts +6 -6
  37. package/build/types/features/Filters.d.ts +14 -14
  38. package/build/types/features/Grouping.d.ts +16 -16
  39. package/build/types/features/Headers.d.ts +6 -6
  40. package/build/types/features/Ordering.d.ts +5 -5
  41. package/build/types/features/Pagination.d.ts +5 -5
  42. package/build/types/features/Pinning.d.ts +5 -5
  43. package/build/types/features/RowSelection.d.ts +8 -8
  44. package/build/types/features/Sorting.d.ts +12 -12
  45. package/build/types/features/Visibility.d.ts +6 -6
  46. package/build/types/filterFns.d.ts +10 -10
  47. package/build/types/sortingFns.d.ts +7 -7
  48. package/build/types/types.d.ts +22 -26
  49. package/build/types/utils/filterRowsUtils.d.ts +3 -3
  50. package/build/types/utils/getColumnFilteredRowModelAsync.d.ts +2 -2
  51. package/build/types/utils/getColumnFilteredRowModelSync.d.ts +2 -2
  52. package/build/types/utils/getCoreRowModelAsync.d.ts +2 -2
  53. package/build/types/utils/getCoreRowModelSync.d.ts +2 -2
  54. package/build/types/utils/getExpandedRowModel.d.ts +3 -3
  55. package/build/types/utils/getGlobalFilteredRowModelAsync.d.ts +2 -2
  56. package/build/types/utils/getGlobalFilteredRowModelSync.d.ts +2 -2
  57. package/build/types/utils/getGroupedRowModel.d.ts +2 -2
  58. package/build/types/utils/getPaginationRowModel.d.ts +2 -2
  59. package/build/types/utils/getSortedRowModelAsync.d.ts +4 -4
  60. package/build/types/utils/getSortedRowModelSync.d.ts +2 -2
  61. package/build/umd/index.development.js +5 -5
  62. package/build/umd/index.development.js.map +1 -1
  63. package/build/umd/index.production.js +1 -1
  64. package/build/umd/index.production.js.map +1 -1
  65. package/package.json +1 -1
  66. package/src/core.ts +9 -9
  67. package/src/createTable.ts +12 -5
  68. package/src/features/ColumnSizing.ts +9 -10
  69. package/src/features/Expanding.ts +6 -7
  70. package/src/features/Filters.ts +14 -15
  71. package/src/features/Grouping.ts +16 -17
  72. package/src/features/Headers.ts +6 -7
  73. package/src/features/Ordering.ts +8 -7
  74. package/src/features/Pagination.ts +5 -6
  75. package/src/features/Pinning.ts +5 -6
  76. package/src/features/RowSelection.ts +9 -10
  77. package/src/features/Sorting.ts +12 -13
  78. package/src/features/Visibility.ts +7 -8
  79. package/src/filterFns.ts +10 -10
  80. package/src/sortingFns.ts +7 -7
  81. package/src/types.ts +23 -29
  82. package/src/utils/filterRowsUtils.ts +3 -3
  83. package/src/utils/getColumnFilteredRowModelAsync.ts +2 -2
  84. package/src/utils/getColumnFilteredRowModelSync.ts +2 -2
  85. package/src/utils/getCoreRowModelAsync.ts +2 -2
  86. package/src/utils/getCoreRowModelSync.ts +2 -2
  87. package/src/utils/getExpandedRowModel.ts +3 -3
  88. package/src/utils/getGlobalFilteredRowModelAsync.ts +2 -2
  89. package/src/utils/getGlobalFilteredRowModelSync.ts +2 -2
  90. package/src/utils/getGroupedRowModel.ts +3 -3
  91. package/src/utils/getPaginationRowModel.ts +2 -2
  92. package/src/utils/getSortedRowModelAsync.ts +4 -4
  93. package/src/utils/getSortedRowModelSync.ts +2 -2
  94. package/src/utils.ts +2 -2
@@ -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":"b550-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"b550-3","name":"utils.ts"},{"name":"features","children":[{"uid":"b550-5","name":"ColumnSizing.ts"},{"uid":"b550-7","name":"Expanding.ts"},{"uid":"b550-11","name":"Filters.ts"},{"uid":"b550-15","name":"Grouping.ts"},{"uid":"b550-17","name":"Ordering.ts"},{"uid":"b550-19","name":"Pagination.ts"},{"uid":"b550-21","name":"Pinning.ts"},{"uid":"b550-23","name":"RowSelection.ts"},{"uid":"b550-27","name":"Sorting.ts"},{"uid":"b550-29","name":"Visibility.ts"},{"uid":"b550-31","name":"Headers.ts"}]},{"uid":"b550-9","name":"filterFns.ts"},{"uid":"b550-13","name":"aggregationFns.ts"},{"uid":"b550-25","name":"sortingFns.ts"},{"uid":"b550-33","name":"core.ts"},{"uid":"b550-35","name":"createTable.ts"},{"name":"utils","children":[{"uid":"b550-37","name":"getCoreRowModelSync.ts"},{"uid":"b550-39","name":"getCoreRowModelAsync.ts"},{"uid":"b550-41","name":"filterRowsUtils.ts"},{"uid":"b550-43","name":"getColumnFilteredRowModelSync.ts"},{"uid":"b550-45","name":"getGlobalFilteredRowModelSync.ts"},{"uid":"b550-47","name":"getSortedRowModelSync.ts"},{"uid":"b550-49","name":"getGroupedRowModel.ts"},{"uid":"b550-51","name":"getExpandedRowModel.ts"},{"uid":"b550-53","name":"getPaginationRowModel.ts"}]},{"uid":"b550-55","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"b550-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"b550-0"},"b550-3":{"renderedLength":7936,"gzipLength":2087,"brotliLength":0,"mainUid":"b550-2"},"b550-5":{"renderedLength":11541,"gzipLength":2257,"brotliLength":0,"mainUid":"b550-4"},"b550-7":{"renderedLength":7548,"gzipLength":1589,"brotliLength":0,"mainUid":"b550-6"},"b550-9":{"renderedLength":4435,"gzipLength":783,"brotliLength":0,"mainUid":"b550-8"},"b550-11":{"renderedLength":13865,"gzipLength":2490,"brotliLength":0,"mainUid":"b550-10"},"b550-13":{"renderedLength":2672,"gzipLength":771,"brotliLength":0,"mainUid":"b550-12"},"b550-15":{"renderedLength":7982,"gzipLength":1693,"brotliLength":0,"mainUid":"b550-14"},"b550-17":{"renderedLength":2579,"gzipLength":790,"brotliLength":0,"mainUid":"b550-16"},"b550-19":{"renderedLength":5911,"gzipLength":1220,"brotliLength":0,"mainUid":"b550-18"},"b550-21":{"renderedLength":5780,"gzipLength":1073,"brotliLength":0,"mainUid":"b550-20"},"b550-23":{"renderedLength":18123,"gzipLength":3035,"brotliLength":0,"mainUid":"b550-22"},"b550-25":{"renderedLength":2753,"gzipLength":846,"brotliLength":0,"mainUid":"b550-24"},"b550-27":{"renderedLength":11775,"gzipLength":2476,"brotliLength":0,"mainUid":"b550-26"},"b550-29":{"renderedLength":6302,"gzipLength":1207,"brotliLength":0,"mainUid":"b550-28"},"b550-31":{"renderedLength":23655,"gzipLength":3372,"brotliLength":0,"mainUid":"b550-30"},"b550-33":{"renderedLength":16750,"gzipLength":3189,"brotliLength":0,"mainUid":"b550-32"},"b550-35":{"renderedLength":1895,"gzipLength":565,"brotliLength":0,"mainUid":"b550-34"},"b550-37":{"renderedLength":2462,"gzipLength":797,"brotliLength":0,"mainUid":"b550-36"},"b550-39":{"renderedLength":3559,"gzipLength":1014,"brotliLength":0,"mainUid":"b550-38"},"b550-41":{"renderedLength":2457,"gzipLength":568,"brotliLength":0,"mainUid":"b550-40"},"b550-43":{"renderedLength":3130,"gzipLength":892,"brotliLength":0,"mainUid":"b550-42"},"b550-45":{"renderedLength":2469,"gzipLength":693,"brotliLength":0,"mainUid":"b550-44"},"b550-47":{"renderedLength":3437,"gzipLength":1020,"brotliLength":0,"mainUid":"b550-46"},"b550-49":{"renderedLength":5782,"gzipLength":1525,"brotliLength":0,"mainUid":"b550-48"},"b550-51":{"renderedLength":1385,"gzipLength":494,"brotliLength":0,"mainUid":"b550-50"},"b550-53":{"renderedLength":1254,"gzipLength":407,"brotliLength":0,"mainUid":"b550-52"},"b550-55":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"b550-54"}},"nodeMetas":{"b550-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"b550-1"},"imported":[],"importedBy":[{"uid":"b550-32"},{"uid":"b550-34"},{"uid":"b550-4"},{"uid":"b550-6"},{"uid":"b550-18"},{"uid":"b550-22"},{"uid":"b550-26"},{"uid":"b550-28"},{"uid":"b550-2"},{"uid":"b550-38"},{"uid":"b550-12"}]},"b550-2":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"b550-3"},"imported":[{"uid":"b550-0"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"},{"uid":"b550-4"},{"uid":"b550-6"},{"uid":"b550-10"},{"uid":"b550-14"},{"uid":"b550-30"},{"uid":"b550-16"},{"uid":"b550-18"},{"uid":"b550-20"},{"uid":"b550-22"},{"uid":"b550-26"},{"uid":"b550-28"},{"uid":"b550-36"},{"uid":"b550-38"},{"uid":"b550-42"},{"uid":"b550-44"},{"uid":"b550-46"},{"uid":"b550-48"},{"uid":"b550-50"},{"uid":"b550-52"}]},"b550-4":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"b550-5"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"},{"uid":"b550-30"}]},"b550-6":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"b550-7"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-8":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"b550-9"},"imported":[],"importedBy":[{"uid":"b550-10"}]},"b550-10":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"b550-11"},"imported":[{"uid":"b550-8"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-12":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"b550-13"},"imported":[{"uid":"b550-0"}],"importedBy":[{"uid":"b550-32"},{"uid":"b550-14"}]},"b550-14":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"b550-15"},"imported":[{"uid":"b550-12"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"},{"uid":"b550-16"}]},"b550-16":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"b550-17"},"imported":[{"uid":"b550-2"},{"uid":"b550-14"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-18":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"b550-19"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-20":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"b550-21"},"imported":[{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-22":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"b550-23"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-24":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"b550-25"},"imported":[],"importedBy":[{"uid":"b550-26"}]},"b550-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"b550-27"},"imported":[{"uid":"b550-0"},{"uid":"b550-24"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-28":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"b550-29"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-30":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"b550-31"},"imported":[{"uid":"b550-2"},{"uid":"b550-4"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-32"}]},"b550-32":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"b550-33"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"},{"uid":"b550-4"},{"uid":"b550-6"},{"uid":"b550-10"},{"uid":"b550-14"},{"uid":"b550-16"},{"uid":"b550-18"},{"uid":"b550-20"},{"uid":"b550-22"},{"uid":"b550-26"},{"uid":"b550-28"},{"uid":"b550-30"},{"uid":"b550-12"}],"importedBy":[{"uid":"b550-54"}]},"b550-34":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"b550-35"},"imported":[{"uid":"b550-0"}],"importedBy":[{"uid":"b550-54"}]},"b550-36":{"id":"/packages/table-core/src/utils/getCoreRowModelSync.ts","moduleParts":{"index.production.js":"b550-37"},"imported":[{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"}]},"b550-38":{"id":"/packages/table-core/src/utils/getCoreRowModelAsync.ts","moduleParts":{"index.production.js":"b550-39"},"imported":[{"uid":"b550-0"},{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"}]},"b550-40":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"b550-41"},"imported":[],"importedBy":[{"uid":"b550-42"},{"uid":"b550-44"}]},"b550-42":{"id":"/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts","moduleParts":{"index.production.js":"b550-43"},"imported":[{"uid":"b550-2"},{"uid":"b550-40"}],"importedBy":[{"uid":"b550-54"}]},"b550-44":{"id":"/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts","moduleParts":{"index.production.js":"b550-45"},"imported":[{"uid":"b550-2"},{"uid":"b550-40"}],"importedBy":[{"uid":"b550-54"}]},"b550-46":{"id":"/packages/table-core/src/utils/getSortedRowModelSync.ts","moduleParts":{"index.production.js":"b550-47"},"imported":[{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"}]},"b550-48":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"b550-49"},"imported":[{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"}]},"b550-50":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"b550-51"},"imported":[{"uid":"b550-2"}],"importedBy":[{"uid":"b550-54"},{"uid":"b550-52"}]},"b550-52":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"b550-53"},"imported":[{"uid":"b550-2"},{"uid":"b550-50"}],"importedBy":[{"uid":"b550-54"}]},"b550-54":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"b550-55"},"imported":[{"uid":"b550-32"},{"uid":"b550-56"},{"uid":"b550-34"},{"uid":"b550-4"},{"uid":"b550-6"},{"uid":"b550-10"},{"uid":"b550-14"},{"uid":"b550-30"},{"uid":"b550-16"},{"uid":"b550-18"},{"uid":"b550-20"},{"uid":"b550-22"},{"uid":"b550-26"},{"uid":"b550-28"},{"uid":"b550-2"},{"uid":"b550-36"},{"uid":"b550-38"},{"uid":"b550-42"},{"uid":"b550-44"},{"uid":"b550-46"},{"uid":"b550-48"},{"uid":"b550-50"},{"uid":"b550-52"}],"importedBy":[],"isEntry":true},"b550-56":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"b550-54"}]}},"env":{"rollup":"2.70.2"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2672
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"uid":"fda5-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"fda5-3","name":"utils.ts"},{"name":"features","children":[{"uid":"fda5-5","name":"ColumnSizing.ts"},{"uid":"fda5-7","name":"Expanding.ts"},{"uid":"fda5-11","name":"Filters.ts"},{"uid":"fda5-15","name":"Grouping.ts"},{"uid":"fda5-17","name":"Ordering.ts"},{"uid":"fda5-19","name":"Pagination.ts"},{"uid":"fda5-21","name":"Pinning.ts"},{"uid":"fda5-23","name":"RowSelection.ts"},{"uid":"fda5-27","name":"Sorting.ts"},{"uid":"fda5-29","name":"Visibility.ts"},{"uid":"fda5-31","name":"Headers.ts"}]},{"uid":"fda5-9","name":"filterFns.ts"},{"uid":"fda5-13","name":"aggregationFns.ts"},{"uid":"fda5-25","name":"sortingFns.ts"},{"uid":"fda5-33","name":"core.ts"},{"uid":"fda5-35","name":"createTable.ts"},{"name":"utils","children":[{"uid":"fda5-37","name":"getCoreRowModelSync.ts"},{"uid":"fda5-39","name":"getCoreRowModelAsync.ts"},{"uid":"fda5-41","name":"filterRowsUtils.ts"},{"uid":"fda5-43","name":"getColumnFilteredRowModelSync.ts"},{"uid":"fda5-45","name":"getGlobalFilteredRowModelSync.ts"},{"uid":"fda5-47","name":"getSortedRowModelSync.ts"},{"uid":"fda5-49","name":"getGroupedRowModel.ts"},{"uid":"fda5-51","name":"getExpandedRowModel.ts"},{"uid":"fda5-53","name":"getPaginationRowModel.ts"}]},{"uid":"fda5-55","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"fda5-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"fda5-0"},"fda5-3":{"renderedLength":7940,"gzipLength":2088,"brotliLength":0,"mainUid":"fda5-2"},"fda5-5":{"renderedLength":11541,"gzipLength":2257,"brotliLength":0,"mainUid":"fda5-4"},"fda5-7":{"renderedLength":7548,"gzipLength":1589,"brotliLength":0,"mainUid":"fda5-6"},"fda5-9":{"renderedLength":4435,"gzipLength":783,"brotliLength":0,"mainUid":"fda5-8"},"fda5-11":{"renderedLength":13865,"gzipLength":2490,"brotliLength":0,"mainUid":"fda5-10"},"fda5-13":{"renderedLength":2672,"gzipLength":771,"brotliLength":0,"mainUid":"fda5-12"},"fda5-15":{"renderedLength":7982,"gzipLength":1693,"brotliLength":0,"mainUid":"fda5-14"},"fda5-17":{"renderedLength":2580,"gzipLength":791,"brotliLength":0,"mainUid":"fda5-16"},"fda5-19":{"renderedLength":5911,"gzipLength":1220,"brotliLength":0,"mainUid":"fda5-18"},"fda5-21":{"renderedLength":5780,"gzipLength":1073,"brotliLength":0,"mainUid":"fda5-20"},"fda5-23":{"renderedLength":18123,"gzipLength":3035,"brotliLength":0,"mainUid":"fda5-22"},"fda5-25":{"renderedLength":2753,"gzipLength":846,"brotliLength":0,"mainUid":"fda5-24"},"fda5-27":{"renderedLength":11775,"gzipLength":2476,"brotliLength":0,"mainUid":"fda5-26"},"fda5-29":{"renderedLength":6302,"gzipLength":1207,"brotliLength":0,"mainUid":"fda5-28"},"fda5-31":{"renderedLength":23655,"gzipLength":3372,"brotliLength":0,"mainUid":"fda5-30"},"fda5-33":{"renderedLength":16752,"gzipLength":3192,"brotliLength":0,"mainUid":"fda5-32"},"fda5-35":{"renderedLength":1895,"gzipLength":565,"brotliLength":0,"mainUid":"fda5-34"},"fda5-37":{"renderedLength":2462,"gzipLength":797,"brotliLength":0,"mainUid":"fda5-36"},"fda5-39":{"renderedLength":3559,"gzipLength":1014,"brotliLength":0,"mainUid":"fda5-38"},"fda5-41":{"renderedLength":2457,"gzipLength":568,"brotliLength":0,"mainUid":"fda5-40"},"fda5-43":{"renderedLength":3130,"gzipLength":892,"brotliLength":0,"mainUid":"fda5-42"},"fda5-45":{"renderedLength":2469,"gzipLength":693,"brotliLength":0,"mainUid":"fda5-44"},"fda5-47":{"renderedLength":3437,"gzipLength":1020,"brotliLength":0,"mainUid":"fda5-46"},"fda5-49":{"renderedLength":5782,"gzipLength":1525,"brotliLength":0,"mainUid":"fda5-48"},"fda5-51":{"renderedLength":1385,"gzipLength":494,"brotliLength":0,"mainUid":"fda5-50"},"fda5-53":{"renderedLength":1254,"gzipLength":407,"brotliLength":0,"mainUid":"fda5-52"},"fda5-55":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"fda5-54"}},"nodeMetas":{"fda5-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"fda5-1"},"imported":[],"importedBy":[{"uid":"fda5-32"},{"uid":"fda5-34"},{"uid":"fda5-4"},{"uid":"fda5-6"},{"uid":"fda5-18"},{"uid":"fda5-22"},{"uid":"fda5-26"},{"uid":"fda5-28"},{"uid":"fda5-2"},{"uid":"fda5-38"},{"uid":"fda5-12"}]},"fda5-2":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"fda5-3"},"imported":[{"uid":"fda5-0"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"},{"uid":"fda5-4"},{"uid":"fda5-6"},{"uid":"fda5-10"},{"uid":"fda5-14"},{"uid":"fda5-30"},{"uid":"fda5-16"},{"uid":"fda5-18"},{"uid":"fda5-20"},{"uid":"fda5-22"},{"uid":"fda5-26"},{"uid":"fda5-28"},{"uid":"fda5-36"},{"uid":"fda5-38"},{"uid":"fda5-42"},{"uid":"fda5-44"},{"uid":"fda5-46"},{"uid":"fda5-48"},{"uid":"fda5-50"},{"uid":"fda5-52"}]},"fda5-4":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"fda5-5"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"},{"uid":"fda5-30"}]},"fda5-6":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"fda5-7"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-8":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"fda5-9"},"imported":[],"importedBy":[{"uid":"fda5-10"}]},"fda5-10":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"fda5-11"},"imported":[{"uid":"fda5-8"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-12":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"fda5-13"},"imported":[{"uid":"fda5-0"}],"importedBy":[{"uid":"fda5-32"},{"uid":"fda5-14"}]},"fda5-14":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"fda5-15"},"imported":[{"uid":"fda5-12"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"},{"uid":"fda5-16"}]},"fda5-16":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"fda5-17"},"imported":[{"uid":"fda5-2"},{"uid":"fda5-14"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-18":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"fda5-19"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-20":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"fda5-21"},"imported":[{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-22":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"fda5-23"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-24":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"fda5-25"},"imported":[],"importedBy":[{"uid":"fda5-26"}]},"fda5-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"fda5-27"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-24"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-28":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"fda5-29"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-30":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"fda5-31"},"imported":[{"uid":"fda5-2"},{"uid":"fda5-4"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-32"}]},"fda5-32":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"fda5-33"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"},{"uid":"fda5-4"},{"uid":"fda5-6"},{"uid":"fda5-10"},{"uid":"fda5-14"},{"uid":"fda5-16"},{"uid":"fda5-18"},{"uid":"fda5-20"},{"uid":"fda5-22"},{"uid":"fda5-26"},{"uid":"fda5-28"},{"uid":"fda5-30"},{"uid":"fda5-12"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-34":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"fda5-35"},"imported":[{"uid":"fda5-0"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-36":{"id":"/packages/table-core/src/utils/getCoreRowModelSync.ts","moduleParts":{"index.production.js":"fda5-37"},"imported":[{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-38":{"id":"/packages/table-core/src/utils/getCoreRowModelAsync.ts","moduleParts":{"index.production.js":"fda5-39"},"imported":[{"uid":"fda5-0"},{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-40":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"fda5-41"},"imported":[],"importedBy":[{"uid":"fda5-42"},{"uid":"fda5-44"}]},"fda5-42":{"id":"/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts","moduleParts":{"index.production.js":"fda5-43"},"imported":[{"uid":"fda5-2"},{"uid":"fda5-40"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-44":{"id":"/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts","moduleParts":{"index.production.js":"fda5-45"},"imported":[{"uid":"fda5-2"},{"uid":"fda5-40"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-46":{"id":"/packages/table-core/src/utils/getSortedRowModelSync.ts","moduleParts":{"index.production.js":"fda5-47"},"imported":[{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-48":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"fda5-49"},"imported":[{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-50":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"fda5-51"},"imported":[{"uid":"fda5-2"}],"importedBy":[{"uid":"fda5-54"},{"uid":"fda5-52"}]},"fda5-52":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"fda5-53"},"imported":[{"uid":"fda5-2"},{"uid":"fda5-50"}],"importedBy":[{"uid":"fda5-54"}]},"fda5-54":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"fda5-55"},"imported":[{"uid":"fda5-32"},{"uid":"fda5-56"},{"uid":"fda5-34"},{"uid":"fda5-4"},{"uid":"fda5-6"},{"uid":"fda5-10"},{"uid":"fda5-14"},{"uid":"fda5-30"},{"uid":"fda5-16"},{"uid":"fda5-18"},{"uid":"fda5-20"},{"uid":"fda5-22"},{"uid":"fda5-26"},{"uid":"fda5-28"},{"uid":"fda5-2"},{"uid":"fda5-36"},{"uid":"fda5-38"},{"uid":"fda5-42"},{"uid":"fda5-44"},{"uid":"fda5-46"},{"uid":"fda5-48"},{"uid":"fda5-50"},{"uid":"fda5-52"}],"importedBy":[],"isEntry":true},"fda5-56":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"fda5-54"}]}},"env":{"rollup":"2.70.2"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;