@tanstack/react-table 0.0.1-alpha.8 → 8.0.0-alpha.2

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