@tanstack/table-core 8.0.0-alpha.10

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