@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
@@ -13,96 +13,112 @@
13
13
  "name": "utils",
14
14
  "children": [
15
15
  {
16
- "uid": "22aa-45",
16
+ "uid": "fa9c-53",
17
17
  "name": "columnFilterRowsFn.ts"
18
18
  },
19
19
  {
20
- "uid": "22aa-47",
20
+ "uid": "fa9c-55",
21
21
  "name": "globalFilterRowsFn.ts"
22
22
  },
23
23
  {
24
- "uid": "22aa-49",
24
+ "uid": "fa9c-57",
25
25
  "name": "sortRowsFn.ts"
26
26
  },
27
27
  {
28
- "uid": "22aa-55",
28
+ "uid": "fa9c-63",
29
29
  "name": "groupRowsFn.ts"
30
30
  },
31
31
  {
32
- "uid": "22aa-57",
32
+ "uid": "fa9c-65",
33
33
  "name": "expandRowsFn.ts"
34
+ },
35
+ {
36
+ "uid": "fa9c-67",
37
+ "name": "paginateRowsFn.ts"
34
38
  }
35
39
  ]
36
40
  },
37
41
  {
38
- "uid": "22aa-53",
42
+ "uid": "fa9c-61",
39
43
  "name": "utils.tsx"
40
44
  },
41
45
  {
42
46
  "name": "features",
43
47
  "children": [
44
48
  {
45
- "uid": "22aa-59",
49
+ "uid": "fa9c-69",
46
50
  "name": "Visibility.ts"
47
51
  },
48
52
  {
49
- "uid": "22aa-63",
53
+ "uid": "fa9c-73",
50
54
  "name": "Grouping.ts"
51
55
  },
52
56
  {
53
- "uid": "22aa-65",
57
+ "uid": "fa9c-75",
54
58
  "name": "Ordering.ts"
55
59
  },
56
60
  {
57
- "uid": "22aa-67",
61
+ "uid": "fa9c-77",
58
62
  "name": "Pinning.ts"
59
63
  },
60
64
  {
61
- "uid": "22aa-69",
65
+ "uid": "fa9c-79",
62
66
  "name": "Headers.ts"
63
67
  },
64
68
  {
65
- "uid": "22aa-73",
69
+ "uid": "fa9c-83",
66
70
  "name": "Filters.ts"
67
71
  },
68
72
  {
69
- "uid": "22aa-77",
73
+ "uid": "fa9c-87",
70
74
  "name": "Sorting.ts"
71
75
  },
72
76
  {
73
- "uid": "22aa-79",
77
+ "uid": "fa9c-89",
74
78
  "name": "Expanding.ts"
79
+ },
80
+ {
81
+ "uid": "fa9c-91",
82
+ "name": "ColumnSizing.ts"
83
+ },
84
+ {
85
+ "uid": "fa9c-93",
86
+ "name": "Pagination.ts"
87
+ },
88
+ {
89
+ "uid": "fa9c-95",
90
+ "name": "RowSelection.ts"
75
91
  }
76
92
  ]
77
93
  },
78
94
  {
79
- "uid": "22aa-61",
95
+ "uid": "fa9c-71",
80
96
  "name": "aggregationTypes.ts"
81
97
  },
82
98
  {
83
- "uid": "22aa-71",
99
+ "uid": "fa9c-81",
84
100
  "name": "filterTypes.ts"
85
101
  },
86
102
  {
87
- "uid": "22aa-75",
103
+ "uid": "fa9c-85",
88
104
  "name": "sortTypes.ts"
89
105
  },
90
106
  {
91
- "uid": "22aa-81",
107
+ "uid": "fa9c-97",
92
108
  "name": "core.tsx"
93
109
  },
94
110
  {
95
- "uid": "22aa-83",
111
+ "uid": "fa9c-99",
96
112
  "name": "createTable.tsx"
97
113
  },
98
114
  {
99
- "uid": "22aa-85",
115
+ "uid": "fa9c-101",
100
116
  "name": "index.tsx"
101
117
  }
102
118
  ]
103
119
  },
104
120
  {
105
- "uid": "22aa-51",
121
+ "uid": "fa9c-59",
106
122
  "name": "\u0000rollupPluginBabelHelpers.js"
107
123
  }
108
124
  ]
@@ -111,582 +127,712 @@
111
127
  "isRoot": true
112
128
  },
113
129
  "nodeParts": {
114
- "22aa-45": {
115
- "renderedLength": 3156,
116
- "gzipLength": 860,
130
+ "fa9c-53": {
131
+ "renderedLength": 3174,
132
+ "gzipLength": 863,
117
133
  "brotliLength": 0,
118
- "mainUid": "22aa-44"
134
+ "mainUid": "fa9c-52"
119
135
  },
120
- "22aa-47": {
121
- "renderedLength": 2523,
122
- "gzipLength": 714,
136
+ "fa9c-55": {
137
+ "renderedLength": 2540,
138
+ "gzipLength": 721,
123
139
  "brotliLength": 0,
124
- "mainUid": "22aa-46"
140
+ "mainUid": "fa9c-54"
125
141
  },
126
- "22aa-49": {
127
- "renderedLength": 2416,
128
- "gzipLength": 811,
142
+ "fa9c-57": {
143
+ "renderedLength": 2436,
144
+ "gzipLength": 818,
129
145
  "brotliLength": 0,
130
- "mainUid": "22aa-48"
146
+ "mainUid": "fa9c-56"
131
147
  },
132
- "22aa-51": {
148
+ "fa9c-59": {
133
149
  "renderedLength": 2695,
134
150
  "gzipLength": 1065,
135
151
  "brotliLength": 0,
136
- "mainUid": "22aa-50"
152
+ "mainUid": "fa9c-58"
137
153
  },
138
- "22aa-53": {
139
- "renderedLength": 3913,
140
- "gzipLength": 1413,
154
+ "fa9c-61": {
155
+ "renderedLength": 4119,
156
+ "gzipLength": 1464,
141
157
  "brotliLength": 0,
142
- "mainUid": "22aa-52"
158
+ "mainUid": "fa9c-60"
143
159
  },
144
- "22aa-55": {
145
- "renderedLength": 4797,
146
- "gzipLength": 1351,
160
+ "fa9c-63": {
161
+ "renderedLength": 4814,
162
+ "gzipLength": 1358,
147
163
  "brotliLength": 0,
148
- "mainUid": "22aa-54"
164
+ "mainUid": "fa9c-62"
149
165
  },
150
- "22aa-57": {
151
- "renderedLength": 631,
152
- "gzipLength": 278,
166
+ "fa9c-65": {
167
+ "renderedLength": 595,
168
+ "gzipLength": 266,
153
169
  "brotliLength": 0,
154
- "mainUid": "22aa-56"
170
+ "mainUid": "fa9c-64"
155
171
  },
156
- "22aa-59": {
157
- "renderedLength": 5559,
158
- "gzipLength": 1139,
172
+ "fa9c-67": {
173
+ "renderedLength": 720,
174
+ "gzipLength": 281,
159
175
  "brotliLength": 0,
160
- "mainUid": "22aa-58"
176
+ "mainUid": "fa9c-66"
161
177
  },
162
- "22aa-61": {
178
+ "fa9c-69": {
179
+ "renderedLength": 5635,
180
+ "gzipLength": 1151,
181
+ "brotliLength": 0,
182
+ "mainUid": "fa9c-68"
183
+ },
184
+ "fa9c-71": {
163
185
  "renderedLength": 2520,
164
186
  "gzipLength": 755,
165
187
  "brotliLength": 0,
166
- "mainUid": "22aa-60"
188
+ "mainUid": "fa9c-70"
167
189
  },
168
- "22aa-63": {
169
- "renderedLength": 7455,
170
- "gzipLength": 1615,
190
+ "fa9c-73": {
191
+ "renderedLength": 7990,
192
+ "gzipLength": 1739,
171
193
  "brotliLength": 0,
172
- "mainUid": "22aa-62"
194
+ "mainUid": "fa9c-72"
173
195
  },
174
- "22aa-65": {
175
- "renderedLength": 2381,
176
- "gzipLength": 745,
196
+ "fa9c-75": {
197
+ "renderedLength": 2419,
198
+ "gzipLength": 757,
177
199
  "brotliLength": 0,
178
- "mainUid": "22aa-64"
200
+ "mainUid": "fa9c-74"
179
201
  },
180
- "22aa-67": {
181
- "renderedLength": 5325,
182
- "gzipLength": 1040,
202
+ "fa9c-77": {
203
+ "renderedLength": 5178,
204
+ "gzipLength": 1014,
183
205
  "brotliLength": 0,
184
- "mainUid": "22aa-66"
206
+ "mainUid": "fa9c-76"
185
207
  },
186
- "22aa-69": {
187
- "renderedLength": 17919,
188
- "gzipLength": 2898,
208
+ "fa9c-79": {
209
+ "renderedLength": 18878,
210
+ "gzipLength": 2991,
189
211
  "brotliLength": 0,
190
- "mainUid": "22aa-68"
212
+ "mainUid": "fa9c-78"
191
213
  },
192
- "22aa-71": {
214
+ "fa9c-81": {
193
215
  "renderedLength": 4437,
194
216
  "gzipLength": 786,
195
217
  "brotliLength": 0,
196
- "mainUid": "22aa-70"
218
+ "mainUid": "fa9c-80"
197
219
  },
198
- "22aa-73": {
199
- "renderedLength": 15814,
200
- "gzipLength": 2768,
220
+ "fa9c-83": {
221
+ "renderedLength": 17178,
222
+ "gzipLength": 3007,
201
223
  "brotliLength": 0,
202
- "mainUid": "22aa-72"
224
+ "mainUid": "fa9c-82"
203
225
  },
204
- "22aa-75": {
226
+ "fa9c-85": {
205
227
  "renderedLength": 2752,
206
228
  "gzipLength": 846,
207
229
  "brotliLength": 0,
208
- "mainUid": "22aa-74"
230
+ "mainUid": "fa9c-84"
231
+ },
232
+ "fa9c-87": {
233
+ "renderedLength": 11632,
234
+ "gzipLength": 2582,
235
+ "brotliLength": 0,
236
+ "mainUid": "fa9c-86"
237
+ },
238
+ "fa9c-89": {
239
+ "renderedLength": 8046,
240
+ "gzipLength": 1752,
241
+ "brotliLength": 0,
242
+ "mainUid": "fa9c-88"
209
243
  },
210
- "22aa-77": {
211
- "renderedLength": 9830,
212
- "gzipLength": 2116,
244
+ "fa9c-91": {
245
+ "renderedLength": 9842,
246
+ "gzipLength": 2050,
213
247
  "brotliLength": 0,
214
- "mainUid": "22aa-76"
248
+ "mainUid": "fa9c-90"
215
249
  },
216
- "22aa-79": {
217
- "renderedLength": 7502,
218
- "gzipLength": 1624,
250
+ "fa9c-93": {
251
+ "renderedLength": 6299,
252
+ "gzipLength": 1320,
219
253
  "brotliLength": 0,
220
- "mainUid": "22aa-78"
254
+ "mainUid": "fa9c-92"
221
255
  },
222
- "22aa-81": {
223
- "renderedLength": 15063,
224
- "gzipLength": 3151,
256
+ "fa9c-95": {
257
+ "renderedLength": 17855,
258
+ "gzipLength": 3118,
225
259
  "brotliLength": 0,
226
- "mainUid": "22aa-80"
260
+ "mainUid": "fa9c-94"
227
261
  },
228
- "22aa-83": {
229
- "renderedLength": 1694,
230
- "gzipLength": 487,
262
+ "fa9c-97": {
263
+ "renderedLength": 17035,
264
+ "gzipLength": 3474,
231
265
  "brotliLength": 0,
232
- "mainUid": "22aa-82"
266
+ "mainUid": "fa9c-96"
233
267
  },
234
- "22aa-85": {
268
+ "fa9c-99": {
269
+ "renderedLength": 1855,
270
+ "gzipLength": 503,
271
+ "brotliLength": 0,
272
+ "mainUid": "fa9c-98"
273
+ },
274
+ "fa9c-101": {
235
275
  "renderedLength": 0,
236
276
  "gzipLength": 0,
237
277
  "brotliLength": 0,
238
- "mainUid": "22aa-84"
278
+ "mainUid": "fa9c-100"
239
279
  }
240
280
  },
241
281
  "nodeMetas": {
242
- "22aa-44": {
282
+ "fa9c-52": {
243
283
  "id": "/packages/react-table/src/utils/columnFilterRowsFn.ts",
244
284
  "moduleParts": {
245
- "index.production.js": "22aa-45"
285
+ "index.production.js": "fa9c-53"
246
286
  },
247
287
  "imported": [],
248
288
  "importedBy": [
249
289
  {
250
- "uid": "22aa-84"
290
+ "uid": "fa9c-100"
251
291
  }
252
292
  ]
253
293
  },
254
- "22aa-46": {
294
+ "fa9c-54": {
255
295
  "id": "/packages/react-table/src/utils/globalFilterRowsFn.ts",
256
296
  "moduleParts": {
257
- "index.production.js": "22aa-47"
297
+ "index.production.js": "fa9c-55"
258
298
  },
259
299
  "imported": [],
260
300
  "importedBy": [
261
301
  {
262
- "uid": "22aa-84"
302
+ "uid": "fa9c-100"
263
303
  }
264
304
  ]
265
305
  },
266
- "22aa-48": {
306
+ "fa9c-56": {
267
307
  "id": "/packages/react-table/src/utils/sortRowsFn.ts",
268
308
  "moduleParts": {
269
- "index.production.js": "22aa-49"
309
+ "index.production.js": "fa9c-57"
270
310
  },
271
311
  "imported": [],
272
312
  "importedBy": [
273
313
  {
274
- "uid": "22aa-84"
314
+ "uid": "fa9c-100"
275
315
  }
276
316
  ]
277
317
  },
278
- "22aa-50": {
318
+ "fa9c-58": {
279
319
  "id": "\u0000rollupPluginBabelHelpers.js",
280
320
  "moduleParts": {
281
- "index.production.js": "22aa-51"
321
+ "index.production.js": "fa9c-59"
282
322
  },
283
323
  "imported": [],
284
324
  "importedBy": [
285
325
  {
286
- "uid": "22aa-82"
326
+ "uid": "fa9c-98"
327
+ },
328
+ {
329
+ "uid": "fa9c-60"
330
+ },
331
+ {
332
+ "uid": "fa9c-96"
333
+ },
334
+ {
335
+ "uid": "fa9c-68"
287
336
  },
288
337
  {
289
- "uid": "22aa-52"
338
+ "uid": "fa9c-86"
290
339
  },
291
340
  {
292
- "uid": "22aa-80"
341
+ "uid": "fa9c-88"
293
342
  },
294
343
  {
295
- "uid": "22aa-58"
344
+ "uid": "fa9c-90"
296
345
  },
297
346
  {
298
- "uid": "22aa-76"
347
+ "uid": "fa9c-92"
299
348
  },
300
349
  {
301
- "uid": "22aa-78"
350
+ "uid": "fa9c-94"
302
351
  },
303
352
  {
304
- "uid": "22aa-60"
353
+ "uid": "fa9c-70"
305
354
  }
306
355
  ]
307
356
  },
308
- "22aa-52": {
357
+ "fa9c-60": {
309
358
  "id": "/packages/react-table/src/utils.tsx",
310
359
  "moduleParts": {
311
- "index.production.js": "22aa-53"
360
+ "index.production.js": "fa9c-61"
312
361
  },
313
362
  "imported": [
314
363
  {
315
- "uid": "22aa-50"
364
+ "uid": "fa9c-58"
316
365
  },
317
366
  {
318
- "uid": "22aa-87"
367
+ "uid": "fa9c-103"
319
368
  }
320
369
  ],
321
370
  "importedBy": [
322
371
  {
323
- "uid": "22aa-54"
372
+ "uid": "fa9c-62"
324
373
  },
325
374
  {
326
- "uid": "22aa-80"
375
+ "uid": "fa9c-96"
327
376
  },
328
377
  {
329
- "uid": "22aa-58"
378
+ "uid": "fa9c-68"
330
379
  },
331
380
  {
332
- "uid": "22aa-64"
381
+ "uid": "fa9c-74"
333
382
  },
334
383
  {
335
- "uid": "22aa-66"
384
+ "uid": "fa9c-76"
336
385
  },
337
386
  {
338
- "uid": "22aa-68"
387
+ "uid": "fa9c-78"
339
388
  },
340
389
  {
341
- "uid": "22aa-72"
390
+ "uid": "fa9c-82"
342
391
  },
343
392
  {
344
- "uid": "22aa-76"
393
+ "uid": "fa9c-86"
345
394
  },
346
395
  {
347
- "uid": "22aa-62"
396
+ "uid": "fa9c-72"
348
397
  },
349
398
  {
350
- "uid": "22aa-78"
399
+ "uid": "fa9c-88"
400
+ },
401
+ {
402
+ "uid": "fa9c-90"
403
+ },
404
+ {
405
+ "uid": "fa9c-92"
406
+ },
407
+ {
408
+ "uid": "fa9c-94"
351
409
  }
352
410
  ]
353
411
  },
354
- "22aa-54": {
412
+ "fa9c-62": {
355
413
  "id": "/packages/react-table/src/utils/groupRowsFn.ts",
356
414
  "moduleParts": {
357
- "index.production.js": "22aa-55"
415
+ "index.production.js": "fa9c-63"
358
416
  },
359
417
  "imported": [
360
418
  {
361
- "uid": "22aa-52"
419
+ "uid": "fa9c-60"
362
420
  }
363
421
  ],
364
422
  "importedBy": [
365
423
  {
366
- "uid": "22aa-84"
424
+ "uid": "fa9c-100"
367
425
  }
368
426
  ]
369
427
  },
370
- "22aa-56": {
428
+ "fa9c-64": {
371
429
  "id": "/packages/react-table/src/utils/expandRowsFn.ts",
372
430
  "moduleParts": {
373
- "index.production.js": "22aa-57"
431
+ "index.production.js": "fa9c-65"
374
432
  },
375
433
  "imported": [],
376
434
  "importedBy": [
377
435
  {
378
- "uid": "22aa-84"
436
+ "uid": "fa9c-100"
437
+ },
438
+ {
439
+ "uid": "fa9c-66"
440
+ }
441
+ ]
442
+ },
443
+ "fa9c-66": {
444
+ "id": "/packages/react-table/src/utils/paginateRowsFn.ts",
445
+ "moduleParts": {
446
+ "index.production.js": "fa9c-67"
447
+ },
448
+ "imported": [
449
+ {
450
+ "uid": "fa9c-64"
451
+ }
452
+ ],
453
+ "importedBy": [
454
+ {
455
+ "uid": "fa9c-100"
379
456
  }
380
457
  ]
381
458
  },
382
- "22aa-58": {
459
+ "fa9c-68": {
383
460
  "id": "/packages/react-table/src/features/Visibility.ts",
384
461
  "moduleParts": {
385
- "index.production.js": "22aa-59"
462
+ "index.production.js": "fa9c-69"
386
463
  },
387
464
  "imported": [
388
465
  {
389
- "uid": "22aa-50"
466
+ "uid": "fa9c-58"
390
467
  },
391
468
  {
392
- "uid": "22aa-52"
469
+ "uid": "fa9c-60"
393
470
  }
394
471
  ],
395
472
  "importedBy": [
396
473
  {
397
- "uid": "22aa-80"
474
+ "uid": "fa9c-96"
398
475
  }
399
476
  ]
400
477
  },
401
- "22aa-60": {
478
+ "fa9c-70": {
402
479
  "id": "/packages/react-table/src/aggregationTypes.ts",
403
480
  "moduleParts": {
404
- "index.production.js": "22aa-61"
481
+ "index.production.js": "fa9c-71"
405
482
  },
406
483
  "imported": [
407
484
  {
408
- "uid": "22aa-50"
485
+ "uid": "fa9c-58"
409
486
  }
410
487
  ],
411
488
  "importedBy": [
412
489
  {
413
- "uid": "22aa-62"
490
+ "uid": "fa9c-72"
414
491
  }
415
492
  ]
416
493
  },
417
- "22aa-62": {
494
+ "fa9c-72": {
418
495
  "id": "/packages/react-table/src/features/Grouping.ts",
419
496
  "moduleParts": {
420
- "index.production.js": "22aa-63"
497
+ "index.production.js": "fa9c-73"
421
498
  },
422
499
  "imported": [
423
500
  {
424
- "uid": "22aa-60"
501
+ "uid": "fa9c-70"
425
502
  },
426
503
  {
427
- "uid": "22aa-52"
504
+ "uid": "fa9c-60"
428
505
  }
429
506
  ],
430
507
  "importedBy": [
431
508
  {
432
- "uid": "22aa-80"
509
+ "uid": "fa9c-96"
433
510
  },
434
511
  {
435
- "uid": "22aa-64"
512
+ "uid": "fa9c-74"
436
513
  }
437
514
  ]
438
515
  },
439
- "22aa-64": {
516
+ "fa9c-74": {
440
517
  "id": "/packages/react-table/src/features/Ordering.ts",
441
518
  "moduleParts": {
442
- "index.production.js": "22aa-65"
519
+ "index.production.js": "fa9c-75"
443
520
  },
444
521
  "imported": [
445
522
  {
446
- "uid": "22aa-52"
523
+ "uid": "fa9c-60"
447
524
  },
448
525
  {
449
- "uid": "22aa-62"
526
+ "uid": "fa9c-72"
450
527
  }
451
528
  ],
452
529
  "importedBy": [
453
530
  {
454
- "uid": "22aa-80"
531
+ "uid": "fa9c-96"
455
532
  }
456
533
  ]
457
534
  },
458
- "22aa-66": {
535
+ "fa9c-76": {
459
536
  "id": "/packages/react-table/src/features/Pinning.ts",
460
537
  "moduleParts": {
461
- "index.production.js": "22aa-67"
538
+ "index.production.js": "fa9c-77"
462
539
  },
463
540
  "imported": [
464
541
  {
465
- "uid": "22aa-52"
542
+ "uid": "fa9c-60"
466
543
  }
467
544
  ],
468
545
  "importedBy": [
469
546
  {
470
- "uid": "22aa-80"
547
+ "uid": "fa9c-96"
471
548
  }
472
549
  ]
473
550
  },
474
- "22aa-68": {
551
+ "fa9c-78": {
475
552
  "id": "/packages/react-table/src/features/Headers.ts",
476
553
  "moduleParts": {
477
- "index.production.js": "22aa-69"
554
+ "index.production.js": "fa9c-79"
478
555
  },
479
556
  "imported": [
480
557
  {
481
- "uid": "22aa-52"
558
+ "uid": "fa9c-60"
482
559
  }
483
560
  ],
484
561
  "importedBy": [
485
562
  {
486
- "uid": "22aa-80"
563
+ "uid": "fa9c-96"
487
564
  }
488
565
  ]
489
566
  },
490
- "22aa-70": {
567
+ "fa9c-80": {
491
568
  "id": "/packages/react-table/src/filterTypes.ts",
492
569
  "moduleParts": {
493
- "index.production.js": "22aa-71"
570
+ "index.production.js": "fa9c-81"
494
571
  },
495
572
  "imported": [],
496
573
  "importedBy": [
497
574
  {
498
- "uid": "22aa-72"
575
+ "uid": "fa9c-82"
499
576
  }
500
577
  ]
501
578
  },
502
- "22aa-72": {
579
+ "fa9c-82": {
503
580
  "id": "/packages/react-table/src/features/Filters.ts",
504
581
  "moduleParts": {
505
- "index.production.js": "22aa-73"
582
+ "index.production.js": "fa9c-83"
506
583
  },
507
584
  "imported": [
508
585
  {
509
- "uid": "22aa-70"
586
+ "uid": "fa9c-80"
510
587
  },
511
588
  {
512
- "uid": "22aa-52"
589
+ "uid": "fa9c-60"
513
590
  }
514
591
  ],
515
592
  "importedBy": [
516
593
  {
517
- "uid": "22aa-80"
594
+ "uid": "fa9c-96"
518
595
  }
519
596
  ]
520
597
  },
521
- "22aa-74": {
598
+ "fa9c-84": {
522
599
  "id": "/packages/react-table/src/sortTypes.ts",
523
600
  "moduleParts": {
524
- "index.production.js": "22aa-75"
601
+ "index.production.js": "fa9c-85"
525
602
  },
526
603
  "imported": [],
527
604
  "importedBy": [
528
605
  {
529
- "uid": "22aa-76"
606
+ "uid": "fa9c-86"
530
607
  }
531
608
  ]
532
609
  },
533
- "22aa-76": {
610
+ "fa9c-86": {
534
611
  "id": "/packages/react-table/src/features/Sorting.ts",
535
612
  "moduleParts": {
536
- "index.production.js": "22aa-77"
613
+ "index.production.js": "fa9c-87"
537
614
  },
538
615
  "imported": [
539
616
  {
540
- "uid": "22aa-50"
617
+ "uid": "fa9c-58"
541
618
  },
542
619
  {
543
- "uid": "22aa-74"
620
+ "uid": "fa9c-84"
544
621
  },
545
622
  {
546
- "uid": "22aa-52"
623
+ "uid": "fa9c-60"
547
624
  }
548
625
  ],
549
626
  "importedBy": [
550
627
  {
551
- "uid": "22aa-80"
628
+ "uid": "fa9c-96"
552
629
  }
553
630
  ]
554
631
  },
555
- "22aa-78": {
632
+ "fa9c-88": {
556
633
  "id": "/packages/react-table/src/features/Expanding.ts",
557
634
  "moduleParts": {
558
- "index.production.js": "22aa-79"
635
+ "index.production.js": "fa9c-89"
636
+ },
637
+ "imported": [
638
+ {
639
+ "uid": "fa9c-58"
640
+ },
641
+ {
642
+ "uid": "fa9c-60"
643
+ }
644
+ ],
645
+ "importedBy": [
646
+ {
647
+ "uid": "fa9c-96"
648
+ }
649
+ ]
650
+ },
651
+ "fa9c-90": {
652
+ "id": "/packages/react-table/src/features/ColumnSizing.ts",
653
+ "moduleParts": {
654
+ "index.production.js": "fa9c-91"
655
+ },
656
+ "imported": [
657
+ {
658
+ "uid": "fa9c-58"
659
+ },
660
+ {
661
+ "uid": "fa9c-60"
662
+ }
663
+ ],
664
+ "importedBy": [
665
+ {
666
+ "uid": "fa9c-96"
667
+ }
668
+ ]
669
+ },
670
+ "fa9c-92": {
671
+ "id": "/packages/react-table/src/features/Pagination.ts",
672
+ "moduleParts": {
673
+ "index.production.js": "fa9c-93"
674
+ },
675
+ "imported": [
676
+ {
677
+ "uid": "fa9c-58"
678
+ },
679
+ {
680
+ "uid": "fa9c-60"
681
+ }
682
+ ],
683
+ "importedBy": [
684
+ {
685
+ "uid": "fa9c-96"
686
+ }
687
+ ]
688
+ },
689
+ "fa9c-94": {
690
+ "id": "/packages/react-table/src/features/RowSelection.ts",
691
+ "moduleParts": {
692
+ "index.production.js": "fa9c-95"
559
693
  },
560
694
  "imported": [
561
695
  {
562
- "uid": "22aa-50"
696
+ "uid": "fa9c-58"
563
697
  },
564
698
  {
565
- "uid": "22aa-52"
699
+ "uid": "fa9c-60"
566
700
  }
567
701
  ],
568
702
  "importedBy": [
569
703
  {
570
- "uid": "22aa-80"
704
+ "uid": "fa9c-96"
571
705
  }
572
706
  ]
573
707
  },
574
- "22aa-80": {
708
+ "fa9c-96": {
575
709
  "id": "/packages/react-table/src/core.tsx",
576
710
  "moduleParts": {
577
- "index.production.js": "22aa-81"
711
+ "index.production.js": "fa9c-97"
578
712
  },
579
713
  "imported": [
580
714
  {
581
- "uid": "22aa-50"
715
+ "uid": "fa9c-58"
582
716
  },
583
717
  {
584
- "uid": "22aa-52"
718
+ "uid": "fa9c-60"
585
719
  },
586
720
  {
587
- "uid": "22aa-58"
721
+ "uid": "fa9c-68"
588
722
  },
589
723
  {
590
- "uid": "22aa-64"
724
+ "uid": "fa9c-74"
591
725
  },
592
726
  {
593
- "uid": "22aa-66"
727
+ "uid": "fa9c-76"
594
728
  },
595
729
  {
596
- "uid": "22aa-68"
730
+ "uid": "fa9c-78"
597
731
  },
598
732
  {
599
- "uid": "22aa-72"
733
+ "uid": "fa9c-82"
600
734
  },
601
735
  {
602
- "uid": "22aa-76"
736
+ "uid": "fa9c-86"
603
737
  },
604
738
  {
605
- "uid": "22aa-62"
739
+ "uid": "fa9c-72"
606
740
  },
607
741
  {
608
- "uid": "22aa-78"
742
+ "uid": "fa9c-88"
743
+ },
744
+ {
745
+ "uid": "fa9c-90"
746
+ },
747
+ {
748
+ "uid": "fa9c-92"
749
+ },
750
+ {
751
+ "uid": "fa9c-94"
609
752
  }
610
753
  ],
611
754
  "importedBy": [
612
755
  {
613
- "uid": "22aa-82"
756
+ "uid": "fa9c-98"
614
757
  }
615
758
  ]
616
759
  },
617
- "22aa-82": {
760
+ "fa9c-98": {
618
761
  "id": "/packages/react-table/src/createTable.tsx",
619
762
  "moduleParts": {
620
- "index.production.js": "22aa-83"
763
+ "index.production.js": "fa9c-99"
621
764
  },
622
765
  "imported": [
623
766
  {
624
- "uid": "22aa-50"
767
+ "uid": "fa9c-58"
625
768
  },
626
769
  {
627
- "uid": "22aa-87"
770
+ "uid": "fa9c-103"
628
771
  },
629
772
  {
630
- "uid": "22aa-80"
773
+ "uid": "fa9c-96"
631
774
  }
632
775
  ],
633
776
  "importedBy": [
634
777
  {
635
- "uid": "22aa-84"
778
+ "uid": "fa9c-100"
636
779
  }
637
780
  ]
638
781
  },
639
- "22aa-84": {
782
+ "fa9c-100": {
640
783
  "id": "/packages/react-table/src/index.tsx",
641
784
  "moduleParts": {
642
- "index.production.js": "22aa-85"
785
+ "index.production.js": "fa9c-101"
643
786
  },
644
787
  "imported": [
645
788
  {
646
- "uid": "22aa-86"
789
+ "uid": "fa9c-102"
790
+ },
791
+ {
792
+ "uid": "fa9c-52"
647
793
  },
648
794
  {
649
- "uid": "22aa-44"
795
+ "uid": "fa9c-54"
650
796
  },
651
797
  {
652
- "uid": "22aa-46"
798
+ "uid": "fa9c-56"
653
799
  },
654
800
  {
655
- "uid": "22aa-48"
801
+ "uid": "fa9c-62"
656
802
  },
657
803
  {
658
- "uid": "22aa-54"
804
+ "uid": "fa9c-64"
659
805
  },
660
806
  {
661
- "uid": "22aa-56"
807
+ "uid": "fa9c-66"
662
808
  },
663
809
  {
664
- "uid": "22aa-82"
810
+ "uid": "fa9c-98"
665
811
  }
666
812
  ],
667
813
  "importedBy": [],
668
814
  "isEntry": true
669
815
  },
670
- "22aa-86": {
816
+ "fa9c-102": {
671
817
  "id": "/packages/react-table/src/types.ts",
672
818
  "moduleParts": {},
673
819
  "imported": [],
674
820
  "importedBy": [
675
821
  {
676
- "uid": "22aa-84"
822
+ "uid": "fa9c-100"
677
823
  }
678
824
  ]
679
825
  },
680
- "22aa-87": {
826
+ "fa9c-103": {
681
827
  "id": "react",
682
828
  "moduleParts": {},
683
829
  "imported": [],
684
830
  "importedBy": [
685
831
  {
686
- "uid": "22aa-82"
832
+ "uid": "fa9c-98"
687
833
  },
688
834
  {
689
- "uid": "22aa-52"
835
+ "uid": "fa9c-60"
690
836
  }
691
837
  ],
692
838
  "isExternal": true