@tanstack/table-core 8.0.0-alpha.62 → 8.0.0-alpha.65

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 (113) hide show
  1. package/build/cjs/core.js +8 -5
  2. package/build/cjs/core.js.map +1 -1
  3. package/build/cjs/features/Cells.js +1 -1
  4. package/build/cjs/features/Cells.js.map +1 -1
  5. package/build/cjs/features/ColumnSizing.js +3 -3
  6. package/build/cjs/features/ColumnSizing.js.map +1 -1
  7. package/build/cjs/features/Columns.js +7 -7
  8. package/build/cjs/features/Columns.js.map +1 -1
  9. package/build/cjs/features/Expanding.js +3 -3
  10. package/build/cjs/features/Expanding.js.map +1 -1
  11. package/build/cjs/features/Filters.js +158 -80
  12. package/build/cjs/features/Filters.js.map +1 -1
  13. package/build/cjs/features/Grouping.js +24 -22
  14. package/build/cjs/features/Grouping.js.map +1 -1
  15. package/build/cjs/features/Headers.js +16 -16
  16. package/build/cjs/features/Headers.js.map +1 -1
  17. package/build/cjs/features/Ordering.js +6 -5
  18. package/build/cjs/features/Ordering.js.map +1 -1
  19. package/build/cjs/features/Pagination.js +5 -5
  20. package/build/cjs/features/Pagination.js.map +1 -1
  21. package/build/cjs/features/Pinning.js +17 -78
  22. package/build/cjs/features/Pinning.js.map +1 -1
  23. package/build/cjs/features/RowSelection.js +8 -8
  24. package/build/cjs/features/RowSelection.js.map +1 -1
  25. package/build/cjs/features/Sorting.js +8 -8
  26. package/build/cjs/features/Sorting.js.map +1 -1
  27. package/build/cjs/features/Visibility.js +5 -5
  28. package/build/cjs/features/Visibility.js.map +1 -1
  29. package/build/cjs/filterFns.js +51 -108
  30. package/build/cjs/filterFns.js.map +1 -1
  31. package/build/cjs/index.js +5 -4
  32. package/build/cjs/index.js.map +1 -1
  33. package/build/cjs/utils/filterRowsUtils.js +21 -0
  34. package/build/cjs/utils/filterRowsUtils.js.map +1 -1
  35. package/build/cjs/utils/getCoreRowModelAsync.js +1 -1
  36. package/build/cjs/utils/getCoreRowModelAsync.js.map +1 -1
  37. package/build/cjs/utils/getCoreRowModelSync.js +1 -1
  38. package/build/cjs/utils/getCoreRowModelSync.js.map +1 -1
  39. package/build/cjs/utils/getExpandedRowModel.js +1 -1
  40. package/build/cjs/utils/getExpandedRowModel.js.map +1 -1
  41. package/build/cjs/utils/getFilteredRowModelSync.js +130 -0
  42. package/build/cjs/utils/getFilteredRowModelSync.js.map +1 -0
  43. package/build/cjs/utils/getGroupedRowModel.js +1 -1
  44. package/build/cjs/utils/getGroupedRowModel.js.map +1 -1
  45. package/build/cjs/utils/getPaginationRowModel.js +1 -1
  46. package/build/cjs/utils/getPaginationRowModel.js.map +1 -1
  47. package/build/cjs/utils/getSortedRowModelSync.js +1 -1
  48. package/build/cjs/utils/getSortedRowModelSync.js.map +1 -1
  49. package/build/cjs/utils.js +2 -6
  50. package/build/cjs/utils.js.map +1 -1
  51. package/build/esm/index.js +491 -573
  52. package/build/esm/index.js.map +1 -1
  53. package/build/stats-html.html +1 -1
  54. package/build/stats-react.json +388 -402
  55. package/build/types/features/Expanding.d.ts +2 -7
  56. package/build/types/features/Filters.d.ts +27 -29
  57. package/build/types/features/Grouping.d.ts +3 -11
  58. package/build/types/features/Ordering.d.ts +2 -6
  59. package/build/types/features/Pinning.d.ts +2 -15
  60. package/build/types/features/RowSelection.d.ts +3 -8
  61. package/build/types/features/Sorting.d.ts +2 -8
  62. package/build/types/features/Visibility.d.ts +2 -11
  63. package/build/types/filterFns.d.ts +10 -52
  64. package/build/types/index.d.ts +1 -2
  65. package/build/types/types.d.ts +2 -2
  66. package/build/types/utils/filterRowsUtils.d.ts +1 -0
  67. package/build/types/utils/{getColumnFilteredRowModelAsync.d.ts → getFilteredRowModelAsync.d.ts} +1 -1
  68. package/build/types/utils/getFilteredRowModelSync.d.ts +2 -0
  69. package/build/types/utils.d.ts +2 -2
  70. package/build/umd/index.development.js +494 -574
  71. package/build/umd/index.development.js.map +1 -1
  72. package/build/umd/index.production.js +1 -1
  73. package/build/umd/index.production.js.map +1 -1
  74. package/package.json +2 -1
  75. package/src/core.ts +6 -5
  76. package/src/features/Cells.ts +3 -1
  77. package/src/features/ColumnSizing.ts +2 -1
  78. package/src/features/Columns.ts +11 -7
  79. package/src/features/Expanding.ts +4 -2
  80. package/src/features/Filters.ts +216 -116
  81. package/src/features/Grouping.ts +23 -21
  82. package/src/features/Headers.ts +16 -16
  83. package/src/features/Ordering.ts +7 -9
  84. package/src/features/Pagination.ts +4 -3
  85. package/src/features/Pinning.ts +16 -80
  86. package/src/features/RowSelection.ts +14 -9
  87. package/src/features/Sorting.ts +12 -12
  88. package/src/features/Visibility.ts +7 -4
  89. package/src/filterFns.ts +74 -147
  90. package/src/index.ts +1 -2
  91. package/src/types.ts +2 -0
  92. package/src/utils/filterRowsUtils.ts +24 -0
  93. package/src/utils/getCoreRowModelAsync.ts +1 -1
  94. package/src/utils/getCoreRowModelSync.ts +1 -1
  95. package/src/utils/getExpandedRowModel.ts +1 -1
  96. package/src/utils/getFilteredRowModelAsync.ts +49 -0
  97. package/src/utils/getFilteredRowModelSync.ts +150 -0
  98. package/src/utils/getGroupedRowModel.ts +1 -1
  99. package/src/utils/getPaginationRowModel.ts +1 -1
  100. package/src/utils/getSortedRowModelAsync.ts +1 -1
  101. package/src/utils/getSortedRowModelSync.ts +1 -1
  102. package/src/utils.ts +2 -4
  103. package/build/cjs/utils/getColumnFilteredRowModelSync.js +0 -115
  104. package/build/cjs/utils/getColumnFilteredRowModelSync.js.map +0 -1
  105. package/build/cjs/utils/getGlobalFilteredRowModelSync.js +0 -91
  106. package/build/cjs/utils/getGlobalFilteredRowModelSync.js.map +0 -1
  107. package/build/types/utils/getColumnFilteredRowModelSync.d.ts +0 -2
  108. package/build/types/utils/getGlobalFilteredRowModelAsync.d.ts +0 -4
  109. package/build/types/utils/getGlobalFilteredRowModelSync.d.ts +0 -2
  110. package/src/utils/getColumnFilteredRowModelAsync.ts +0 -118
  111. package/src/utils/getColumnFilteredRowModelSync.ts +0 -102
  112. package/src/utils/getGlobalFilteredRowModelAsync.ts +0 -96
  113. package/src/utils/getGlobalFilteredRowModelSync.ts +0 -79
@@ -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":"c493-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"c493-3","name":"utils.ts"},{"name":"features","children":[{"uid":"c493-5","name":"Columns.ts"},{"uid":"c493-7","name":"Rows.ts"},{"uid":"c493-9","name":"Cells.ts"},{"uid":"c493-11","name":"ColumnSizing.ts"},{"uid":"c493-13","name":"Expanding.ts"},{"uid":"c493-17","name":"Filters.ts"},{"uid":"c493-21","name":"Grouping.ts"},{"uid":"c493-23","name":"Ordering.ts"},{"uid":"c493-25","name":"Pagination.ts"},{"uid":"c493-27","name":"Pinning.ts"},{"uid":"c493-29","name":"RowSelection.ts"},{"uid":"c493-33","name":"Sorting.ts"},{"uid":"c493-35","name":"Visibility.ts"},{"uid":"c493-37","name":"Headers.ts"}]},{"uid":"c493-15","name":"filterFns.ts"},{"uid":"c493-19","name":"aggregationFns.ts"},{"uid":"c493-31","name":"sortingFns.ts"},{"uid":"c493-39","name":"core.ts"},{"uid":"c493-41","name":"createTable.ts"},{"name":"utils","children":[{"uid":"c493-43","name":"getCoreRowModelSync.ts"},{"uid":"c493-45","name":"getCoreRowModelAsync.ts"},{"uid":"c493-47","name":"filterRowsUtils.ts"},{"uid":"c493-49","name":"getColumnFilteredRowModelSync.ts"},{"uid":"c493-51","name":"getGlobalFilteredRowModelSync.ts"},{"uid":"c493-53","name":"getSortedRowModelSync.ts"},{"uid":"c493-55","name":"getGroupedRowModel.ts"},{"uid":"c493-57","name":"getExpandedRowModel.ts"},{"uid":"c493-59","name":"getPaginationRowModel.ts"}]},{"uid":"c493-61","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"c493-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"c493-0"},"c493-3":{"renderedLength":7408,"gzipLength":1895,"brotliLength":0,"mainUid":"c493-2"},"c493-5":{"renderedLength":7169,"gzipLength":1386,"brotliLength":0,"mainUid":"c493-4"},"c493-7":{"renderedLength":2013,"gzipLength":671,"brotliLength":0,"mainUid":"c493-6"},"c493-9":{"renderedLength":2415,"gzipLength":642,"brotliLength":0,"mainUid":"c493-8"},"c493-11":{"renderedLength":13618,"gzipLength":2498,"brotliLength":0,"mainUid":"c493-10"},"c493-13":{"renderedLength":7153,"gzipLength":1498,"brotliLength":0,"mainUid":"c493-12"},"c493-15":{"renderedLength":4925,"gzipLength":807,"brotliLength":0,"mainUid":"c493-14"},"c493-17":{"renderedLength":13250,"gzipLength":2394,"brotliLength":0,"mainUid":"c493-16"},"c493-19":{"renderedLength":2672,"gzipLength":771,"brotliLength":0,"mainUid":"c493-18"},"c493-21":{"renderedLength":7344,"gzipLength":1521,"brotliLength":0,"mainUid":"c493-20"},"c493-23":{"renderedLength":2586,"gzipLength":794,"brotliLength":0,"mainUid":"c493-22"},"c493-25":{"renderedLength":6033,"gzipLength":1245,"brotliLength":0,"mainUid":"c493-24"},"c493-27":{"renderedLength":12828,"gzipLength":1658,"brotliLength":0,"mainUid":"c493-26"},"c493-29":{"renderedLength":15485,"gzipLength":2661,"brotliLength":0,"mainUid":"c493-28"},"c493-31":{"renderedLength":2753,"gzipLength":846,"brotliLength":0,"mainUid":"c493-30"},"c493-33":{"renderedLength":11142,"gzipLength":2332,"brotliLength":0,"mainUid":"c493-32"},"c493-35":{"renderedLength":6959,"gzipLength":1289,"brotliLength":0,"mainUid":"c493-34"},"c493-37":{"renderedLength":18481,"gzipLength":2898,"brotliLength":0,"mainUid":"c493-36"},"c493-39":{"renderedLength":3635,"gzipLength":1042,"brotliLength":0,"mainUid":"c493-38"},"c493-41":{"renderedLength":1882,"gzipLength":562,"brotliLength":0,"mainUid":"c493-40"},"c493-43":{"renderedLength":2417,"gzipLength":792,"brotliLength":0,"mainUid":"c493-42"},"c493-45":{"renderedLength":3514,"gzipLength":1006,"brotliLength":0,"mainUid":"c493-44"},"c493-47":{"renderedLength":2457,"gzipLength":568,"brotliLength":0,"mainUid":"c493-46"},"c493-49":{"renderedLength":3132,"gzipLength":897,"brotliLength":0,"mainUid":"c493-48"},"c493-51":{"renderedLength":2471,"gzipLength":698,"brotliLength":0,"mainUid":"c493-50"},"c493-53":{"renderedLength":3438,"gzipLength":1024,"brotliLength":0,"mainUid":"c493-52"},"c493-55":{"renderedLength":5827,"gzipLength":1540,"brotliLength":0,"mainUid":"c493-54"},"c493-57":{"renderedLength":1385,"gzipLength":494,"brotliLength":0,"mainUid":"c493-56"},"c493-59":{"renderedLength":1254,"gzipLength":407,"brotliLength":0,"mainUid":"c493-58"},"c493-61":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"c493-60"}},"nodeMetas":{"c493-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"c493-1"},"imported":[],"importedBy":[{"uid":"c493-38"},{"uid":"c493-40"},{"uid":"c493-10"},{"uid":"c493-12"},{"uid":"c493-24"},{"uid":"c493-26"},{"uid":"c493-28"},{"uid":"c493-32"},{"uid":"c493-34"},{"uid":"c493-2"},{"uid":"c493-44"},{"uid":"c493-4"},{"uid":"c493-18"}]},"c493-2":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"c493-3"},"imported":[{"uid":"c493-0"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"},{"uid":"c493-10"},{"uid":"c493-12"},{"uid":"c493-16"},{"uid":"c493-20"},{"uid":"c493-36"},{"uid":"c493-22"},{"uid":"c493-24"},{"uid":"c493-26"},{"uid":"c493-28"},{"uid":"c493-32"},{"uid":"c493-34"},{"uid":"c493-42"},{"uid":"c493-44"},{"uid":"c493-48"},{"uid":"c493-50"},{"uid":"c493-52"},{"uid":"c493-54"},{"uid":"c493-56"},{"uid":"c493-58"},{"uid":"c493-4"},{"uid":"c493-6"},{"uid":"c493-8"}]},"c493-4":{"id":"/packages/table-core/src/features/Columns.ts","moduleParts":{"index.production.js":"c493-5"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-38"}]},"c493-6":{"id":"/packages/table-core/src/features/Rows.ts","moduleParts":{"index.production.js":"c493-7"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-38"}]},"c493-8":{"id":"/packages/table-core/src/features/Cells.ts","moduleParts":{"index.production.js":"c493-9"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-38"}]},"c493-10":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"c493-11"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-12":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"c493-13"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-14":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"c493-15"},"imported":[],"importedBy":[{"uid":"c493-16"}]},"c493-16":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"c493-17"},"imported":[{"uid":"c493-14"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-18":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"c493-19"},"imported":[{"uid":"c493-0"}],"importedBy":[{"uid":"c493-38"},{"uid":"c493-20"}]},"c493-20":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"c493-21"},"imported":[{"uid":"c493-18"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"},{"uid":"c493-22"}]},"c493-22":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"c493-23"},"imported":[{"uid":"c493-2"},{"uid":"c493-20"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-24":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"c493-25"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-26":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"c493-27"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-28":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"c493-29"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-30":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"c493-31"},"imported":[],"importedBy":[{"uid":"c493-32"}]},"c493-32":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"c493-33"},"imported":[{"uid":"c493-0"},{"uid":"c493-30"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-34":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"c493-35"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-36":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"c493-37"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-38"}]},"c493-38":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"c493-39"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"},{"uid":"c493-4"},{"uid":"c493-6"},{"uid":"c493-8"},{"uid":"c493-10"},{"uid":"c493-12"},{"uid":"c493-16"},{"uid":"c493-20"},{"uid":"c493-22"},{"uid":"c493-24"},{"uid":"c493-26"},{"uid":"c493-28"},{"uid":"c493-32"},{"uid":"c493-34"},{"uid":"c493-36"},{"uid":"c493-18"}],"importedBy":[{"uid":"c493-60"}]},"c493-40":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"c493-41"},"imported":[{"uid":"c493-0"}],"importedBy":[{"uid":"c493-60"}]},"c493-42":{"id":"/packages/table-core/src/utils/getCoreRowModelSync.ts","moduleParts":{"index.production.js":"c493-43"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"}]},"c493-44":{"id":"/packages/table-core/src/utils/getCoreRowModelAsync.ts","moduleParts":{"index.production.js":"c493-45"},"imported":[{"uid":"c493-0"},{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"}]},"c493-46":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"c493-47"},"imported":[],"importedBy":[{"uid":"c493-48"},{"uid":"c493-50"}]},"c493-48":{"id":"/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts","moduleParts":{"index.production.js":"c493-49"},"imported":[{"uid":"c493-2"},{"uid":"c493-46"}],"importedBy":[{"uid":"c493-60"}]},"c493-50":{"id":"/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts","moduleParts":{"index.production.js":"c493-51"},"imported":[{"uid":"c493-2"},{"uid":"c493-46"}],"importedBy":[{"uid":"c493-60"}]},"c493-52":{"id":"/packages/table-core/src/utils/getSortedRowModelSync.ts","moduleParts":{"index.production.js":"c493-53"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"}]},"c493-54":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"c493-55"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"}]},"c493-56":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"c493-57"},"imported":[{"uid":"c493-2"}],"importedBy":[{"uid":"c493-60"},{"uid":"c493-58"}]},"c493-58":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"c493-59"},"imported":[{"uid":"c493-2"},{"uid":"c493-56"}],"importedBy":[{"uid":"c493-60"}]},"c493-60":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"c493-61"},"imported":[{"uid":"c493-38"},{"uid":"c493-62"},{"uid":"c493-40"},{"uid":"c493-10"},{"uid":"c493-12"},{"uid":"c493-16"},{"uid":"c493-20"},{"uid":"c493-36"},{"uid":"c493-22"},{"uid":"c493-24"},{"uid":"c493-26"},{"uid":"c493-28"},{"uid":"c493-32"},{"uid":"c493-34"},{"uid":"c493-2"},{"uid":"c493-42"},{"uid":"c493-44"},{"uid":"c493-48"},{"uid":"c493-50"},{"uid":"c493-52"},{"uid":"c493-54"},{"uid":"c493-56"},{"uid":"c493-58"}],"importedBy":[],"isEntry":true},"c493-62":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"c493-60"}]}},"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":"31f9-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"31f9-3","name":"utils.ts"},{"name":"features","children":[{"uid":"31f9-5","name":"Columns.ts"},{"uid":"31f9-7","name":"Rows.ts"},{"uid":"31f9-9","name":"Cells.ts"},{"uid":"31f9-11","name":"ColumnSizing.ts"},{"uid":"31f9-13","name":"Expanding.ts"},{"uid":"31f9-19","name":"Filters.ts"},{"uid":"31f9-23","name":"Grouping.ts"},{"uid":"31f9-25","name":"Ordering.ts"},{"uid":"31f9-27","name":"Pagination.ts"},{"uid":"31f9-29","name":"Pinning.ts"},{"uid":"31f9-31","name":"RowSelection.ts"},{"uid":"31f9-35","name":"Sorting.ts"},{"uid":"31f9-37","name":"Visibility.ts"},{"uid":"31f9-39","name":"Headers.ts"}]},{"uid":"31f9-15","name":"filterFns.ts"},{"name":"utils","children":[{"uid":"31f9-17","name":"filterRowsUtils.ts"},{"uid":"31f9-45","name":"getCoreRowModelSync.ts"},{"uid":"31f9-47","name":"getCoreRowModelAsync.ts"},{"uid":"31f9-49","name":"getFilteredRowModelSync.ts"},{"uid":"31f9-51","name":"getSortedRowModelSync.ts"},{"uid":"31f9-53","name":"getGroupedRowModel.ts"},{"uid":"31f9-55","name":"getExpandedRowModel.ts"},{"uid":"31f9-57","name":"getPaginationRowModel.ts"}]},{"uid":"31f9-21","name":"aggregationFns.ts"},{"uid":"31f9-33","name":"sortingFns.ts"},{"uid":"31f9-41","name":"core.ts"},{"uid":"31f9-43","name":"createTable.ts"},{"uid":"31f9-59","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"31f9-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"31f9-0"},"31f9-3":{"renderedLength":7316,"gzipLength":1880,"brotliLength":0,"mainUid":"31f9-2"},"31f9-5":{"renderedLength":7169,"gzipLength":1386,"brotliLength":0,"mainUid":"31f9-4"},"31f9-7":{"renderedLength":2013,"gzipLength":671,"brotliLength":0,"mainUid":"31f9-6"},"31f9-9":{"renderedLength":2415,"gzipLength":642,"brotliLength":0,"mainUid":"31f9-8"},"31f9-11":{"renderedLength":13640,"gzipLength":2509,"brotliLength":0,"mainUid":"31f9-10"},"31f9-13":{"renderedLength":7175,"gzipLength":1511,"brotliLength":0,"mainUid":"31f9-12"},"31f9-15":{"renderedLength":3353,"gzipLength":736,"brotliLength":0,"mainUid":"31f9-14"},"31f9-17":{"renderedLength":3070,"gzipLength":717,"brotliLength":0,"mainUid":"31f9-16"},"31f9-19":{"renderedLength":16322,"gzipLength":2610,"brotliLength":0,"mainUid":"31f9-18"},"31f9-21":{"renderedLength":2672,"gzipLength":771,"brotliLength":0,"mainUid":"31f9-20"},"31f9-23":{"renderedLength":7317,"gzipLength":1533,"brotliLength":0,"mainUid":"31f9-22"},"31f9-25":{"renderedLength":2599,"gzipLength":805,"brotliLength":0,"mainUid":"31f9-24"},"31f9-27":{"renderedLength":6033,"gzipLength":1255,"brotliLength":0,"mainUid":"31f9-26"},"31f9-29":{"renderedLength":10368,"gzipLength":1566,"brotliLength":0,"mainUid":"31f9-28"},"31f9-31":{"renderedLength":15495,"gzipLength":2663,"brotliLength":0,"mainUid":"31f9-30"},"31f9-33":{"renderedLength":2753,"gzipLength":846,"brotliLength":0,"mainUid":"31f9-32"},"31f9-35":{"renderedLength":11146,"gzipLength":2334,"brotliLength":0,"mainUid":"31f9-34"},"31f9-37":{"renderedLength":6981,"gzipLength":1297,"brotliLength":0,"mainUid":"31f9-36"},"31f9-39":{"renderedLength":18481,"gzipLength":2898,"brotliLength":0,"mainUid":"31f9-38"},"31f9-41":{"renderedLength":3721,"gzipLength":1079,"brotliLength":0,"mainUid":"31f9-40"},"31f9-43":{"renderedLength":1882,"gzipLength":562,"brotliLength":0,"mainUid":"31f9-42"},"31f9-45":{"renderedLength":2417,"gzipLength":792,"brotliLength":0,"mainUid":"31f9-44"},"31f9-47":{"renderedLength":3514,"gzipLength":1006,"brotliLength":0,"mainUid":"31f9-46"},"31f9-49":{"renderedLength":3954,"gzipLength":1017,"brotliLength":0,"mainUid":"31f9-48"},"31f9-51":{"renderedLength":3438,"gzipLength":1024,"brotliLength":0,"mainUid":"31f9-50"},"31f9-53":{"renderedLength":5827,"gzipLength":1540,"brotliLength":0,"mainUid":"31f9-52"},"31f9-55":{"renderedLength":1385,"gzipLength":494,"brotliLength":0,"mainUid":"31f9-54"},"31f9-57":{"renderedLength":1254,"gzipLength":407,"brotliLength":0,"mainUid":"31f9-56"},"31f9-59":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"31f9-58"}},"nodeMetas":{"31f9-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"31f9-1"},"imported":[],"importedBy":[{"uid":"31f9-40"},{"uid":"31f9-42"},{"uid":"31f9-10"},{"uid":"31f9-12"},{"uid":"31f9-18"},{"uid":"31f9-22"},{"uid":"31f9-24"},{"uid":"31f9-26"},{"uid":"31f9-28"},{"uid":"31f9-30"},{"uid":"31f9-34"},{"uid":"31f9-36"},{"uid":"31f9-2"},{"uid":"31f9-46"},{"uid":"31f9-4"},{"uid":"31f9-20"}]},"31f9-2":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"31f9-3"},"imported":[{"uid":"31f9-0"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"},{"uid":"31f9-10"},{"uid":"31f9-12"},{"uid":"31f9-18"},{"uid":"31f9-22"},{"uid":"31f9-38"},{"uid":"31f9-24"},{"uid":"31f9-26"},{"uid":"31f9-28"},{"uid":"31f9-30"},{"uid":"31f9-34"},{"uid":"31f9-36"},{"uid":"31f9-44"},{"uid":"31f9-46"},{"uid":"31f9-48"},{"uid":"31f9-50"},{"uid":"31f9-52"},{"uid":"31f9-54"},{"uid":"31f9-56"},{"uid":"31f9-4"},{"uid":"31f9-6"},{"uid":"31f9-8"}]},"31f9-4":{"id":"/packages/table-core/src/features/Columns.ts","moduleParts":{"index.production.js":"31f9-5"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-40"}]},"31f9-6":{"id":"/packages/table-core/src/features/Rows.ts","moduleParts":{"index.production.js":"31f9-7"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-40"}]},"31f9-8":{"id":"/packages/table-core/src/features/Cells.ts","moduleParts":{"index.production.js":"31f9-9"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-40"}]},"31f9-10":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"31f9-11"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-12":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"31f9-13"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-14":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"31f9-15"},"imported":[],"importedBy":[{"uid":"31f9-18"}]},"31f9-16":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"31f9-17"},"imported":[],"importedBy":[{"uid":"31f9-18"},{"uid":"31f9-48"}]},"31f9-18":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"31f9-19"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-14"},{"uid":"31f9-2"},{"uid":"31f9-16"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-20":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"31f9-21"},"imported":[{"uid":"31f9-0"}],"importedBy":[{"uid":"31f9-40"},{"uid":"31f9-22"}]},"31f9-22":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"31f9-23"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-20"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"},{"uid":"31f9-24"}]},"31f9-24":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"31f9-25"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"},{"uid":"31f9-22"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-26":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"31f9-27"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-28":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"31f9-29"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-30":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"31f9-31"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-32":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"31f9-33"},"imported":[],"importedBy":[{"uid":"31f9-34"}]},"31f9-34":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"31f9-35"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-32"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-36":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"31f9-37"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-38":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"31f9-39"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-40"}]},"31f9-40":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"31f9-41"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"},{"uid":"31f9-4"},{"uid":"31f9-6"},{"uid":"31f9-8"},{"uid":"31f9-10"},{"uid":"31f9-12"},{"uid":"31f9-18"},{"uid":"31f9-22"},{"uid":"31f9-24"},{"uid":"31f9-26"},{"uid":"31f9-28"},{"uid":"31f9-30"},{"uid":"31f9-34"},{"uid":"31f9-36"},{"uid":"31f9-38"},{"uid":"31f9-20"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-42":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"31f9-43"},"imported":[{"uid":"31f9-0"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-44":{"id":"/packages/table-core/src/utils/getCoreRowModelSync.ts","moduleParts":{"index.production.js":"31f9-45"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-46":{"id":"/packages/table-core/src/utils/getCoreRowModelAsync.ts","moduleParts":{"index.production.js":"31f9-47"},"imported":[{"uid":"31f9-0"},{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-48":{"id":"/packages/table-core/src/utils/getFilteredRowModelSync.ts","moduleParts":{"index.production.js":"31f9-49"},"imported":[{"uid":"31f9-2"},{"uid":"31f9-16"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-50":{"id":"/packages/table-core/src/utils/getSortedRowModelSync.ts","moduleParts":{"index.production.js":"31f9-51"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-52":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"31f9-53"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-54":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"31f9-55"},"imported":[{"uid":"31f9-2"}],"importedBy":[{"uid":"31f9-58"},{"uid":"31f9-56"}]},"31f9-56":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"31f9-57"},"imported":[{"uid":"31f9-2"},{"uid":"31f9-54"}],"importedBy":[{"uid":"31f9-58"}]},"31f9-58":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"31f9-59"},"imported":[{"uid":"31f9-40"},{"uid":"31f9-60"},{"uid":"31f9-42"},{"uid":"31f9-10"},{"uid":"31f9-12"},{"uid":"31f9-18"},{"uid":"31f9-22"},{"uid":"31f9-38"},{"uid":"31f9-24"},{"uid":"31f9-26"},{"uid":"31f9-28"},{"uid":"31f9-30"},{"uid":"31f9-34"},{"uid":"31f9-36"},{"uid":"31f9-2"},{"uid":"31f9-44"},{"uid":"31f9-46"},{"uid":"31f9-48"},{"uid":"31f9-50"},{"uid":"31f9-52"},{"uid":"31f9-54"},{"uid":"31f9-56"}],"importedBy":[],"isEntry":true},"31f9-60":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"31f9-58"}]}},"env":{"rollup":"2.70.2"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;