@tanstack/react-table 8.0.0-alpha.1 → 8.0.0-alpha.4

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 (100) hide show
  1. package/build/cjs/core.js +118 -59
  2. package/build/cjs/core.js.map +1 -1
  3. package/build/cjs/createTable.js +11 -6
  4. package/build/cjs/createTable.js.map +1 -1
  5. package/build/cjs/features/ColumnSizing.js +317 -0
  6. package/build/cjs/features/ColumnSizing.js.map +1 -0
  7. package/build/cjs/features/Expanding.js +23 -2
  8. package/build/cjs/features/Expanding.js.map +1 -1
  9. package/build/cjs/features/Filters.js +54 -5
  10. package/build/cjs/features/Filters.js.map +1 -1
  11. package/build/cjs/features/Grouping.js +23 -2
  12. package/build/cjs/features/Grouping.js.map +1 -1
  13. package/build/cjs/features/Headers.js +88 -22
  14. package/build/cjs/features/Headers.js.map +1 -1
  15. package/build/cjs/features/Ordering.js +4 -1
  16. package/build/cjs/features/Ordering.js.map +1 -1
  17. package/build/cjs/features/Pagination.js +198 -0
  18. package/build/cjs/features/Pagination.js.map +1 -0
  19. package/build/cjs/features/Pinning.js +0 -14
  20. package/build/cjs/features/Pinning.js.map +1 -1
  21. package/build/cjs/features/RowSelection.js +541 -0
  22. package/build/cjs/features/RowSelection.js.map +1 -0
  23. package/build/cjs/features/Sorting.js +76 -18
  24. package/build/cjs/features/Sorting.js.map +1 -1
  25. package/build/cjs/features/Visibility.js +8 -2
  26. package/build/cjs/features/Visibility.js.map +1 -1
  27. package/build/cjs/index.js +2 -0
  28. package/build/cjs/index.js.map +1 -1
  29. package/build/cjs/sortTypes.js +1 -0
  30. package/build/cjs/sortTypes.js.map +1 -1
  31. package/build/cjs/utils/columnFilterRowsFn.js +3 -2
  32. package/build/cjs/utils/columnFilterRowsFn.js.map +1 -1
  33. package/build/cjs/utils/expandRowsFn.js +2 -2
  34. package/build/cjs/utils/expandRowsFn.js.map +1 -1
  35. package/build/cjs/utils/globalFilterRowsFn.js +3 -2
  36. package/build/cjs/utils/globalFilterRowsFn.js.map +1 -1
  37. package/build/cjs/utils/groupRowsFn.js +4 -3
  38. package/build/cjs/utils/groupRowsFn.js.map +1 -1
  39. package/build/cjs/utils/paginateRowsFn.js +44 -0
  40. package/build/cjs/utils/paginateRowsFn.js.map +1 -0
  41. package/build/cjs/utils/sortRowsFn.js +3 -2
  42. package/build/cjs/utils/sortRowsFn.js.map +1 -1
  43. package/build/cjs/utils.js +6 -3
  44. package/build/cjs/utils.js.map +1 -1
  45. package/build/esm/index.js +1613 -225
  46. package/build/esm/index.js.map +1 -1
  47. package/build/stats-html.html +1 -1
  48. package/build/stats-react.json +363 -217
  49. package/build/types/core.d.ts +14 -25
  50. package/build/types/createTable.d.ts +21 -3
  51. package/build/types/features/ColumnSizing.d.ts +67 -0
  52. package/build/types/features/Expanding.d.ts +2 -1
  53. package/build/types/features/Filters.d.ts +7 -2
  54. package/build/types/features/Grouping.d.ts +2 -2
  55. package/build/types/features/Ordering.d.ts +1 -1
  56. package/build/types/features/Pagination.d.ts +44 -0
  57. package/build/types/features/Pinning.d.ts +3 -3
  58. package/build/types/features/RowSelection.d.ts +66 -0
  59. package/build/types/features/Sorting.d.ts +5 -2
  60. package/build/types/index.d.ts +1 -0
  61. package/build/types/sortTypes.d.ts +5 -4
  62. package/build/types/types.d.ts +13 -8
  63. package/build/types/utils/columnFilterRowsFn.d.ts +2 -2
  64. package/build/types/utils/expandRowsFn.d.ts +2 -2
  65. package/build/types/utils/globalFilterRowsFn.d.ts +2 -2
  66. package/build/types/utils/groupRowsFn.d.ts +2 -2
  67. package/build/types/utils/paginateRowsFn.d.ts +2 -0
  68. package/build/types/utils/sortRowsFn.d.ts +2 -2
  69. package/build/types/utils.d.ts +7 -3
  70. package/build/umd/index.development.js +1613 -224
  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 +1 -1
  75. package/src/core.tsx +252 -265
  76. package/src/createTable.tsx +69 -9
  77. package/src/features/ColumnSizing.ts +453 -0
  78. package/src/features/Expanding.ts +27 -11
  79. package/src/features/Filters.ts +75 -20
  80. package/src/features/Grouping.ts +27 -12
  81. package/src/features/Headers.ts +55 -50
  82. package/src/features/Ordering.ts +2 -3
  83. package/src/features/Pagination.ts +327 -0
  84. package/src/features/Pinning.ts +3 -16
  85. package/src/features/RowSelection.ts +831 -0
  86. package/src/features/Sorting.ts +82 -22
  87. package/src/features/Visibility.ts +2 -4
  88. package/src/index.tsx +1 -0
  89. package/src/sortTypes.ts +1 -1
  90. package/src/types.ts +55 -9
  91. package/src/utils/columnFilterRowsFn.ts +5 -12
  92. package/src/utils/expandRowsFn.ts +2 -5
  93. package/src/utils/globalFilterRowsFn.ts +3 -10
  94. package/src/utils/groupRowsFn.ts +3 -5
  95. package/src/utils/paginateRowsFn.ts +34 -0
  96. package/src/utils/sortRowsFn.ts +5 -5
  97. package/src/utils.tsx +20 -6
  98. package/src/features/withColumnResizing.oldts +0 -281
  99. package/src/features/withPagination.oldts +0 -208
  100. package/src/features/withRowSelection.oldts +0 -467
@@ -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":[{"name":"packages/react-table/src","children":[{"name":"utils","children":[{"uid":"22aa-1","name":"columnFilterRowsFn.ts"},{"uid":"22aa-3","name":"globalFilterRowsFn.ts"},{"uid":"22aa-5","name":"sortRowsFn.ts"},{"uid":"22aa-11","name":"groupRowsFn.ts"},{"uid":"22aa-13","name":"expandRowsFn.ts"}]},{"uid":"22aa-9","name":"utils.tsx"},{"name":"features","children":[{"uid":"22aa-15","name":"Visibility.ts"},{"uid":"22aa-19","name":"Grouping.ts"},{"uid":"22aa-21","name":"Ordering.ts"},{"uid":"22aa-23","name":"Pinning.ts"},{"uid":"22aa-25","name":"Headers.ts"},{"uid":"22aa-29","name":"Filters.ts"},{"uid":"22aa-33","name":"Sorting.ts"},{"uid":"22aa-35","name":"Expanding.ts"}]},{"uid":"22aa-17","name":"aggregationTypes.ts"},{"uid":"22aa-27","name":"filterTypes.ts"},{"uid":"22aa-31","name":"sortTypes.ts"},{"uid":"22aa-37","name":"core.tsx"},{"uid":"22aa-39","name":"createTable.tsx"},{"uid":"22aa-41","name":"index.tsx"}]},{"uid":"22aa-7","name":"\u0000rollupPluginBabelHelpers.js"}]}],"isRoot":true},"nodeParts":{"22aa-1":{"renderedLength":3156,"gzipLength":860,"brotliLength":0,"mainUid":"22aa-0"},"22aa-3":{"renderedLength":2523,"gzipLength":714,"brotliLength":0,"mainUid":"22aa-2"},"22aa-5":{"renderedLength":2416,"gzipLength":811,"brotliLength":0,"mainUid":"22aa-4"},"22aa-7":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"22aa-6"},"22aa-9":{"renderedLength":3913,"gzipLength":1413,"brotliLength":0,"mainUid":"22aa-8"},"22aa-11":{"renderedLength":4797,"gzipLength":1351,"brotliLength":0,"mainUid":"22aa-10"},"22aa-13":{"renderedLength":631,"gzipLength":278,"brotliLength":0,"mainUid":"22aa-12"},"22aa-15":{"renderedLength":5559,"gzipLength":1139,"brotliLength":0,"mainUid":"22aa-14"},"22aa-17":{"renderedLength":2520,"gzipLength":755,"brotliLength":0,"mainUid":"22aa-16"},"22aa-19":{"renderedLength":7455,"gzipLength":1615,"brotliLength":0,"mainUid":"22aa-18"},"22aa-21":{"renderedLength":2381,"gzipLength":745,"brotliLength":0,"mainUid":"22aa-20"},"22aa-23":{"renderedLength":5325,"gzipLength":1040,"brotliLength":0,"mainUid":"22aa-22"},"22aa-25":{"renderedLength":17919,"gzipLength":2898,"brotliLength":0,"mainUid":"22aa-24"},"22aa-27":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"22aa-26"},"22aa-29":{"renderedLength":15814,"gzipLength":2768,"brotliLength":0,"mainUid":"22aa-28"},"22aa-31":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"22aa-30"},"22aa-33":{"renderedLength":9830,"gzipLength":2116,"brotliLength":0,"mainUid":"22aa-32"},"22aa-35":{"renderedLength":7502,"gzipLength":1624,"brotliLength":0,"mainUid":"22aa-34"},"22aa-37":{"renderedLength":15063,"gzipLength":3151,"brotliLength":0,"mainUid":"22aa-36"},"22aa-39":{"renderedLength":1694,"gzipLength":487,"brotliLength":0,"mainUid":"22aa-38"},"22aa-41":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"22aa-40"}},"nodeMetas":{"22aa-0":{"id":"/packages/react-table/src/utils/columnFilterRowsFn.ts","moduleParts":{"index.production.js":"22aa-1"},"imported":[],"importedBy":[{"uid":"22aa-40"}]},"22aa-2":{"id":"/packages/react-table/src/utils/globalFilterRowsFn.ts","moduleParts":{"index.production.js":"22aa-3"},"imported":[],"importedBy":[{"uid":"22aa-40"}]},"22aa-4":{"id":"/packages/react-table/src/utils/sortRowsFn.ts","moduleParts":{"index.production.js":"22aa-5"},"imported":[],"importedBy":[{"uid":"22aa-40"}]},"22aa-6":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"22aa-7"},"imported":[],"importedBy":[{"uid":"22aa-38"},{"uid":"22aa-8"},{"uid":"22aa-36"},{"uid":"22aa-14"},{"uid":"22aa-32"},{"uid":"22aa-34"},{"uid":"22aa-16"}]},"22aa-8":{"id":"/packages/react-table/src/utils.tsx","moduleParts":{"index.production.js":"22aa-9"},"imported":[{"uid":"22aa-6"},{"uid":"22aa-43"}],"importedBy":[{"uid":"22aa-10"},{"uid":"22aa-36"},{"uid":"22aa-14"},{"uid":"22aa-20"},{"uid":"22aa-22"},{"uid":"22aa-24"},{"uid":"22aa-28"},{"uid":"22aa-32"},{"uid":"22aa-18"},{"uid":"22aa-34"}]},"22aa-10":{"id":"/packages/react-table/src/utils/groupRowsFn.ts","moduleParts":{"index.production.js":"22aa-11"},"imported":[{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-40"}]},"22aa-12":{"id":"/packages/react-table/src/utils/expandRowsFn.ts","moduleParts":{"index.production.js":"22aa-13"},"imported":[],"importedBy":[{"uid":"22aa-40"}]},"22aa-14":{"id":"/packages/react-table/src/features/Visibility.ts","moduleParts":{"index.production.js":"22aa-15"},"imported":[{"uid":"22aa-6"},{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-16":{"id":"/packages/react-table/src/aggregationTypes.ts","moduleParts":{"index.production.js":"22aa-17"},"imported":[{"uid":"22aa-6"}],"importedBy":[{"uid":"22aa-18"}]},"22aa-18":{"id":"/packages/react-table/src/features/Grouping.ts","moduleParts":{"index.production.js":"22aa-19"},"imported":[{"uid":"22aa-16"},{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"},{"uid":"22aa-20"}]},"22aa-20":{"id":"/packages/react-table/src/features/Ordering.ts","moduleParts":{"index.production.js":"22aa-21"},"imported":[{"uid":"22aa-8"},{"uid":"22aa-18"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-22":{"id":"/packages/react-table/src/features/Pinning.ts","moduleParts":{"index.production.js":"22aa-23"},"imported":[{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-24":{"id":"/packages/react-table/src/features/Headers.ts","moduleParts":{"index.production.js":"22aa-25"},"imported":[{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-26":{"id":"/packages/react-table/src/filterTypes.ts","moduleParts":{"index.production.js":"22aa-27"},"imported":[],"importedBy":[{"uid":"22aa-28"}]},"22aa-28":{"id":"/packages/react-table/src/features/Filters.ts","moduleParts":{"index.production.js":"22aa-29"},"imported":[{"uid":"22aa-26"},{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-30":{"id":"/packages/react-table/src/sortTypes.ts","moduleParts":{"index.production.js":"22aa-31"},"imported":[],"importedBy":[{"uid":"22aa-32"}]},"22aa-32":{"id":"/packages/react-table/src/features/Sorting.ts","moduleParts":{"index.production.js":"22aa-33"},"imported":[{"uid":"22aa-6"},{"uid":"22aa-30"},{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-34":{"id":"/packages/react-table/src/features/Expanding.ts","moduleParts":{"index.production.js":"22aa-35"},"imported":[{"uid":"22aa-6"},{"uid":"22aa-8"}],"importedBy":[{"uid":"22aa-36"}]},"22aa-36":{"id":"/packages/react-table/src/core.tsx","moduleParts":{"index.production.js":"22aa-37"},"imported":[{"uid":"22aa-6"},{"uid":"22aa-8"},{"uid":"22aa-14"},{"uid":"22aa-20"},{"uid":"22aa-22"},{"uid":"22aa-24"},{"uid":"22aa-28"},{"uid":"22aa-32"},{"uid":"22aa-18"},{"uid":"22aa-34"}],"importedBy":[{"uid":"22aa-38"}]},"22aa-38":{"id":"/packages/react-table/src/createTable.tsx","moduleParts":{"index.production.js":"22aa-39"},"imported":[{"uid":"22aa-6"},{"uid":"22aa-43"},{"uid":"22aa-36"}],"importedBy":[{"uid":"22aa-40"}]},"22aa-40":{"id":"/packages/react-table/src/index.tsx","moduleParts":{"index.production.js":"22aa-41"},"imported":[{"uid":"22aa-42"},{"uid":"22aa-0"},{"uid":"22aa-2"},{"uid":"22aa-4"},{"uid":"22aa-10"},{"uid":"22aa-12"},{"uid":"22aa-38"}],"importedBy":[],"isEntry":true},"22aa-42":{"id":"/packages/react-table/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"22aa-40"}]},"22aa-43":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"22aa-38"},{"uid":"22aa-8"}],"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":[{"name":"packages/react-table/src","children":[{"name":"utils","children":[{"uid":"fa9c-1","name":"columnFilterRowsFn.ts"},{"uid":"fa9c-3","name":"globalFilterRowsFn.ts"},{"uid":"fa9c-5","name":"sortRowsFn.ts"},{"uid":"fa9c-11","name":"groupRowsFn.ts"},{"uid":"fa9c-13","name":"expandRowsFn.ts"},{"uid":"fa9c-15","name":"paginateRowsFn.ts"}]},{"uid":"fa9c-9","name":"utils.tsx"},{"name":"features","children":[{"uid":"fa9c-17","name":"Visibility.ts"},{"uid":"fa9c-21","name":"Grouping.ts"},{"uid":"fa9c-23","name":"Ordering.ts"},{"uid":"fa9c-25","name":"Pinning.ts"},{"uid":"fa9c-27","name":"Headers.ts"},{"uid":"fa9c-31","name":"Filters.ts"},{"uid":"fa9c-35","name":"Sorting.ts"},{"uid":"fa9c-37","name":"Expanding.ts"},{"uid":"fa9c-39","name":"ColumnSizing.ts"},{"uid":"fa9c-41","name":"Pagination.ts"},{"uid":"fa9c-43","name":"RowSelection.ts"}]},{"uid":"fa9c-19","name":"aggregationTypes.ts"},{"uid":"fa9c-29","name":"filterTypes.ts"},{"uid":"fa9c-33","name":"sortTypes.ts"},{"uid":"fa9c-45","name":"core.tsx"},{"uid":"fa9c-47","name":"createTable.tsx"},{"uid":"fa9c-49","name":"index.tsx"}]},{"uid":"fa9c-7","name":"\u0000rollupPluginBabelHelpers.js"}]}],"isRoot":true},"nodeParts":{"fa9c-1":{"renderedLength":3174,"gzipLength":863,"brotliLength":0,"mainUid":"fa9c-0"},"fa9c-3":{"renderedLength":2540,"gzipLength":721,"brotliLength":0,"mainUid":"fa9c-2"},"fa9c-5":{"renderedLength":2436,"gzipLength":818,"brotliLength":0,"mainUid":"fa9c-4"},"fa9c-7":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"fa9c-6"},"fa9c-9":{"renderedLength":4119,"gzipLength":1464,"brotliLength":0,"mainUid":"fa9c-8"},"fa9c-11":{"renderedLength":4814,"gzipLength":1358,"brotliLength":0,"mainUid":"fa9c-10"},"fa9c-13":{"renderedLength":595,"gzipLength":266,"brotliLength":0,"mainUid":"fa9c-12"},"fa9c-15":{"renderedLength":720,"gzipLength":281,"brotliLength":0,"mainUid":"fa9c-14"},"fa9c-17":{"renderedLength":5635,"gzipLength":1151,"brotliLength":0,"mainUid":"fa9c-16"},"fa9c-19":{"renderedLength":2520,"gzipLength":755,"brotliLength":0,"mainUid":"fa9c-18"},"fa9c-21":{"renderedLength":7990,"gzipLength":1739,"brotliLength":0,"mainUid":"fa9c-20"},"fa9c-23":{"renderedLength":2419,"gzipLength":757,"brotliLength":0,"mainUid":"fa9c-22"},"fa9c-25":{"renderedLength":5178,"gzipLength":1014,"brotliLength":0,"mainUid":"fa9c-24"},"fa9c-27":{"renderedLength":18878,"gzipLength":2991,"brotliLength":0,"mainUid":"fa9c-26"},"fa9c-29":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"fa9c-28"},"fa9c-31":{"renderedLength":17178,"gzipLength":3007,"brotliLength":0,"mainUid":"fa9c-30"},"fa9c-33":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"fa9c-32"},"fa9c-35":{"renderedLength":11632,"gzipLength":2582,"brotliLength":0,"mainUid":"fa9c-34"},"fa9c-37":{"renderedLength":8046,"gzipLength":1752,"brotliLength":0,"mainUid":"fa9c-36"},"fa9c-39":{"renderedLength":9842,"gzipLength":2050,"brotliLength":0,"mainUid":"fa9c-38"},"fa9c-41":{"renderedLength":6299,"gzipLength":1320,"brotliLength":0,"mainUid":"fa9c-40"},"fa9c-43":{"renderedLength":17855,"gzipLength":3118,"brotliLength":0,"mainUid":"fa9c-42"},"fa9c-45":{"renderedLength":17035,"gzipLength":3474,"brotliLength":0,"mainUid":"fa9c-44"},"fa9c-47":{"renderedLength":1855,"gzipLength":503,"brotliLength":0,"mainUid":"fa9c-46"},"fa9c-49":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"fa9c-48"}},"nodeMetas":{"fa9c-0":{"id":"/packages/react-table/src/utils/columnFilterRowsFn.ts","moduleParts":{"index.production.js":"fa9c-1"},"imported":[],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-2":{"id":"/packages/react-table/src/utils/globalFilterRowsFn.ts","moduleParts":{"index.production.js":"fa9c-3"},"imported":[],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-4":{"id":"/packages/react-table/src/utils/sortRowsFn.ts","moduleParts":{"index.production.js":"fa9c-5"},"imported":[],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-6":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"fa9c-7"},"imported":[],"importedBy":[{"uid":"fa9c-46"},{"uid":"fa9c-8"},{"uid":"fa9c-44"},{"uid":"fa9c-16"},{"uid":"fa9c-34"},{"uid":"fa9c-36"},{"uid":"fa9c-38"},{"uid":"fa9c-40"},{"uid":"fa9c-42"},{"uid":"fa9c-18"}]},"fa9c-8":{"id":"/packages/react-table/src/utils.tsx","moduleParts":{"index.production.js":"fa9c-9"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-51"}],"importedBy":[{"uid":"fa9c-10"},{"uid":"fa9c-44"},{"uid":"fa9c-16"},{"uid":"fa9c-22"},{"uid":"fa9c-24"},{"uid":"fa9c-26"},{"uid":"fa9c-30"},{"uid":"fa9c-34"},{"uid":"fa9c-20"},{"uid":"fa9c-36"},{"uid":"fa9c-38"},{"uid":"fa9c-40"},{"uid":"fa9c-42"}]},"fa9c-10":{"id":"/packages/react-table/src/utils/groupRowsFn.ts","moduleParts":{"index.production.js":"fa9c-11"},"imported":[{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-12":{"id":"/packages/react-table/src/utils/expandRowsFn.ts","moduleParts":{"index.production.js":"fa9c-13"},"imported":[],"importedBy":[{"uid":"fa9c-48"},{"uid":"fa9c-14"}]},"fa9c-14":{"id":"/packages/react-table/src/utils/paginateRowsFn.ts","moduleParts":{"index.production.js":"fa9c-15"},"imported":[{"uid":"fa9c-12"}],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-16":{"id":"/packages/react-table/src/features/Visibility.ts","moduleParts":{"index.production.js":"fa9c-17"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-18":{"id":"/packages/react-table/src/aggregationTypes.ts","moduleParts":{"index.production.js":"fa9c-19"},"imported":[{"uid":"fa9c-6"}],"importedBy":[{"uid":"fa9c-20"}]},"fa9c-20":{"id":"/packages/react-table/src/features/Grouping.ts","moduleParts":{"index.production.js":"fa9c-21"},"imported":[{"uid":"fa9c-18"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"},{"uid":"fa9c-22"}]},"fa9c-22":{"id":"/packages/react-table/src/features/Ordering.ts","moduleParts":{"index.production.js":"fa9c-23"},"imported":[{"uid":"fa9c-8"},{"uid":"fa9c-20"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-24":{"id":"/packages/react-table/src/features/Pinning.ts","moduleParts":{"index.production.js":"fa9c-25"},"imported":[{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-26":{"id":"/packages/react-table/src/features/Headers.ts","moduleParts":{"index.production.js":"fa9c-27"},"imported":[{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-28":{"id":"/packages/react-table/src/filterTypes.ts","moduleParts":{"index.production.js":"fa9c-29"},"imported":[],"importedBy":[{"uid":"fa9c-30"}]},"fa9c-30":{"id":"/packages/react-table/src/features/Filters.ts","moduleParts":{"index.production.js":"fa9c-31"},"imported":[{"uid":"fa9c-28"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-32":{"id":"/packages/react-table/src/sortTypes.ts","moduleParts":{"index.production.js":"fa9c-33"},"imported":[],"importedBy":[{"uid":"fa9c-34"}]},"fa9c-34":{"id":"/packages/react-table/src/features/Sorting.ts","moduleParts":{"index.production.js":"fa9c-35"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-32"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-36":{"id":"/packages/react-table/src/features/Expanding.ts","moduleParts":{"index.production.js":"fa9c-37"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-38":{"id":"/packages/react-table/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"fa9c-39"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-40":{"id":"/packages/react-table/src/features/Pagination.ts","moduleParts":{"index.production.js":"fa9c-41"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-42":{"id":"/packages/react-table/src/features/RowSelection.ts","moduleParts":{"index.production.js":"fa9c-43"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-8"}],"importedBy":[{"uid":"fa9c-44"}]},"fa9c-44":{"id":"/packages/react-table/src/core.tsx","moduleParts":{"index.production.js":"fa9c-45"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-8"},{"uid":"fa9c-16"},{"uid":"fa9c-22"},{"uid":"fa9c-24"},{"uid":"fa9c-26"},{"uid":"fa9c-30"},{"uid":"fa9c-34"},{"uid":"fa9c-20"},{"uid":"fa9c-36"},{"uid":"fa9c-38"},{"uid":"fa9c-40"},{"uid":"fa9c-42"}],"importedBy":[{"uid":"fa9c-46"}]},"fa9c-46":{"id":"/packages/react-table/src/createTable.tsx","moduleParts":{"index.production.js":"fa9c-47"},"imported":[{"uid":"fa9c-6"},{"uid":"fa9c-51"},{"uid":"fa9c-44"}],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-48":{"id":"/packages/react-table/src/index.tsx","moduleParts":{"index.production.js":"fa9c-49"},"imported":[{"uid":"fa9c-50"},{"uid":"fa9c-0"},{"uid":"fa9c-2"},{"uid":"fa9c-4"},{"uid":"fa9c-10"},{"uid":"fa9c-12"},{"uid":"fa9c-14"},{"uid":"fa9c-46"}],"importedBy":[],"isEntry":true},"fa9c-50":{"id":"/packages/react-table/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"fa9c-48"}]},"fa9c-51":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"fa9c-46"},{"uid":"fa9c-8"}],"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;