@tanstack/react-table 8.0.0-alpha.2 → 8.0.0-alpha.3

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