@tanstack/table-core 8.0.0-alpha.55 → 8.0.0-alpha.59

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 (88) hide show
  1. package/build/cjs/core.js +18 -404
  2. package/build/cjs/core.js.map +1 -1
  3. package/build/cjs/createTable.js +3 -3
  4. package/build/cjs/createTable.js.map +1 -1
  5. package/build/cjs/features/Cells.js +107 -0
  6. package/build/cjs/features/Cells.js.map +1 -0
  7. package/build/cjs/features/ColumnSizing.js +96 -54
  8. package/build/cjs/features/ColumnSizing.js.map +1 -1
  9. package/build/cjs/features/Columns.js +216 -0
  10. package/build/cjs/features/Columns.js.map +1 -0
  11. package/build/cjs/features/Expanding.js +13 -21
  12. package/build/cjs/features/Expanding.js.map +1 -1
  13. package/build/cjs/features/Filters.js +3 -3
  14. package/build/cjs/features/Filters.js.map +1 -1
  15. package/build/cjs/features/Grouping.js +8 -11
  16. package/build/cjs/features/Grouping.js.map +1 -1
  17. package/build/cjs/features/Headers.js +79 -220
  18. package/build/cjs/features/Headers.js.map +1 -1
  19. package/build/cjs/features/Ordering.js +1 -1
  20. package/build/cjs/features/Ordering.js.map +1 -1
  21. package/build/cjs/features/Pagination.js +5 -5
  22. package/build/cjs/features/Pagination.js.map +1 -1
  23. package/build/cjs/features/Pinning.js +172 -2
  24. package/build/cjs/features/Pinning.js.map +1 -1
  25. package/build/cjs/features/RowSelection.js +16 -48
  26. package/build/cjs/features/RowSelection.js.map +1 -1
  27. package/build/cjs/features/Rows.js +84 -0
  28. package/build/cjs/features/Rows.js.map +1 -0
  29. package/build/cjs/features/Sorting.js +9 -12
  30. package/build/cjs/features/Sorting.js.map +1 -1
  31. package/build/cjs/features/Visibility.js +59 -38
  32. package/build/cjs/features/Visibility.js.map +1 -1
  33. package/build/cjs/filterFns.js +16 -0
  34. package/build/cjs/filterFns.js.map +1 -1
  35. package/build/cjs/index.js +0 -1
  36. package/build/cjs/index.js.map +1 -1
  37. package/build/cjs/utils.js +0 -16
  38. package/build/cjs/utils.js.map +1 -1
  39. package/build/esm/index.js +866 -856
  40. package/build/esm/index.js.map +1 -1
  41. package/build/stats-html.html +1 -1
  42. package/build/stats-react.json +424 -322
  43. package/build/types/core.d.ts +9 -88
  44. package/build/types/createTable.d.ts +10 -11
  45. package/build/types/features/Cells.d.ts +13 -0
  46. package/build/types/features/ColumnSizing.d.ts +24 -30
  47. package/build/types/features/Columns.d.ts +54 -0
  48. package/build/types/features/Expanding.d.ts +6 -9
  49. package/build/types/features/Filters.d.ts +3 -1
  50. package/build/types/features/Grouping.d.ts +6 -9
  51. package/build/types/features/Headers.d.ts +3 -15
  52. package/build/types/features/Ordering.d.ts +1 -1
  53. package/build/types/features/Pagination.d.ts +6 -6
  54. package/build/types/features/Pinning.d.ts +18 -4
  55. package/build/types/features/RowSelection.d.ts +6 -13
  56. package/build/types/features/Rows.d.ts +27 -0
  57. package/build/types/features/Sorting.d.ts +5 -8
  58. package/build/types/features/Visibility.d.ts +9 -7
  59. package/build/types/filterFns.d.ts +5 -0
  60. package/build/types/types.d.ts +27 -69
  61. package/build/types/utils.d.ts +1 -5
  62. package/build/umd/index.development.js +844 -835
  63. package/build/umd/index.development.js.map +1 -1
  64. package/build/umd/index.production.js +1 -1
  65. package/build/umd/index.production.js.map +1 -1
  66. package/package.json +1 -1
  67. package/src/core.ts +55 -601
  68. package/src/createTable.ts +13 -17
  69. package/src/features/Cells.ts +130 -0
  70. package/src/features/ColumnSizing.ts +111 -89
  71. package/src/features/Columns.ts +288 -0
  72. package/src/features/Expanding.ts +20 -42
  73. package/src/features/Filters.ts +11 -3
  74. package/src/features/Grouping.ts +13 -39
  75. package/src/features/Headers.ts +49 -233
  76. package/src/features/Ordering.ts +1 -1
  77. package/src/features/Pagination.ts +14 -4
  78. package/src/features/Pinning.ts +194 -3
  79. package/src/features/RowSelection.ts +26 -88
  80. package/src/features/Rows.ts +123 -0
  81. package/src/features/Sorting.ts +20 -43
  82. package/src/features/Visibility.ts +82 -63
  83. package/src/filterFns.ts +20 -0
  84. package/src/types.ts +59 -133
  85. package/src/utils/getColumnFilteredRowModelAsync.ts +1 -5
  86. package/src/utils/getGlobalFilteredRowModelAsync.ts +2 -6
  87. package/src/utils/getSortedRowModelAsync.ts +0 -1
  88. package/src/utils.ts +2 -31
@@ -7,128 +7,140 @@
7
7
  "name": "index.production.js",
8
8
  "children": [
9
9
  {
10
- "uid": "413f-58",
10
+ "uid": "76c7-64",
11
11
  "name": "\u0000rollupPluginBabelHelpers.js"
12
12
  },
13
13
  {
14
14
  "name": "packages/table-core/src",
15
15
  "children": [
16
16
  {
17
- "uid": "413f-60",
17
+ "uid": "76c7-66",
18
18
  "name": "utils.ts"
19
19
  },
20
20
  {
21
21
  "name": "features",
22
22
  "children": [
23
23
  {
24
- "uid": "413f-62",
24
+ "uid": "76c7-68",
25
+ "name": "Columns.ts"
26
+ },
27
+ {
28
+ "uid": "76c7-70",
29
+ "name": "Rows.ts"
30
+ },
31
+ {
32
+ "uid": "76c7-72",
33
+ "name": "Cells.ts"
34
+ },
35
+ {
36
+ "uid": "76c7-74",
25
37
  "name": "ColumnSizing.ts"
26
38
  },
27
39
  {
28
- "uid": "413f-64",
40
+ "uid": "76c7-76",
29
41
  "name": "Expanding.ts"
30
42
  },
31
43
  {
32
- "uid": "413f-68",
44
+ "uid": "76c7-80",
33
45
  "name": "Filters.ts"
34
46
  },
35
47
  {
36
- "uid": "413f-72",
48
+ "uid": "76c7-84",
37
49
  "name": "Grouping.ts"
38
50
  },
39
51
  {
40
- "uid": "413f-74",
52
+ "uid": "76c7-86",
41
53
  "name": "Ordering.ts"
42
54
  },
43
55
  {
44
- "uid": "413f-76",
56
+ "uid": "76c7-88",
45
57
  "name": "Pagination.ts"
46
58
  },
47
59
  {
48
- "uid": "413f-78",
60
+ "uid": "76c7-90",
49
61
  "name": "Pinning.ts"
50
62
  },
51
63
  {
52
- "uid": "413f-80",
64
+ "uid": "76c7-92",
53
65
  "name": "RowSelection.ts"
54
66
  },
55
67
  {
56
- "uid": "413f-84",
68
+ "uid": "76c7-96",
57
69
  "name": "Sorting.ts"
58
70
  },
59
71
  {
60
- "uid": "413f-86",
72
+ "uid": "76c7-98",
61
73
  "name": "Visibility.ts"
62
74
  },
63
75
  {
64
- "uid": "413f-88",
76
+ "uid": "76c7-100",
65
77
  "name": "Headers.ts"
66
78
  }
67
79
  ]
68
80
  },
69
81
  {
70
- "uid": "413f-66",
82
+ "uid": "76c7-78",
71
83
  "name": "filterFns.ts"
72
84
  },
73
85
  {
74
- "uid": "413f-70",
86
+ "uid": "76c7-82",
75
87
  "name": "aggregationFns.ts"
76
88
  },
77
89
  {
78
- "uid": "413f-82",
90
+ "uid": "76c7-94",
79
91
  "name": "sortingFns.ts"
80
92
  },
81
93
  {
82
- "uid": "413f-90",
94
+ "uid": "76c7-102",
83
95
  "name": "core.ts"
84
96
  },
85
97
  {
86
- "uid": "413f-92",
98
+ "uid": "76c7-104",
87
99
  "name": "createTable.ts"
88
100
  },
89
101
  {
90
102
  "name": "utils",
91
103
  "children": [
92
104
  {
93
- "uid": "413f-94",
105
+ "uid": "76c7-106",
94
106
  "name": "getCoreRowModelSync.ts"
95
107
  },
96
108
  {
97
- "uid": "413f-96",
109
+ "uid": "76c7-108",
98
110
  "name": "getCoreRowModelAsync.ts"
99
111
  },
100
112
  {
101
- "uid": "413f-98",
113
+ "uid": "76c7-110",
102
114
  "name": "filterRowsUtils.ts"
103
115
  },
104
116
  {
105
- "uid": "413f-100",
117
+ "uid": "76c7-112",
106
118
  "name": "getColumnFilteredRowModelSync.ts"
107
119
  },
108
120
  {
109
- "uid": "413f-102",
121
+ "uid": "76c7-114",
110
122
  "name": "getGlobalFilteredRowModelSync.ts"
111
123
  },
112
124
  {
113
- "uid": "413f-104",
125
+ "uid": "76c7-116",
114
126
  "name": "getSortedRowModelSync.ts"
115
127
  },
116
128
  {
117
- "uid": "413f-106",
129
+ "uid": "76c7-118",
118
130
  "name": "getGroupedRowModel.ts"
119
131
  },
120
132
  {
121
- "uid": "413f-108",
133
+ "uid": "76c7-120",
122
134
  "name": "getExpandedRowModel.ts"
123
135
  },
124
136
  {
125
- "uid": "413f-110",
137
+ "uid": "76c7-122",
126
138
  "name": "getPaginationRowModel.ts"
127
139
  }
128
140
  ]
129
141
  },
130
142
  {
131
- "uid": "413f-112",
143
+ "uid": "76c7-124",
132
144
  "name": "index.ts"
133
145
  }
134
146
  ]
@@ -139,900 +151,990 @@
139
151
  "isRoot": true
140
152
  },
141
153
  "nodeParts": {
142
- "413f-58": {
154
+ "76c7-64": {
143
155
  "renderedLength": 2695,
144
156
  "gzipLength": 1065,
145
157
  "brotliLength": 0,
146
- "mainUid": "413f-57"
158
+ "mainUid": "76c7-63"
159
+ },
160
+ "76c7-66": {
161
+ "renderedLength": 7408,
162
+ "gzipLength": 1895,
163
+ "brotliLength": 0,
164
+ "mainUid": "76c7-65"
147
165
  },
148
- "413f-60": {
149
- "renderedLength": 7940,
150
- "gzipLength": 2088,
166
+ "76c7-68": {
167
+ "renderedLength": 7169,
168
+ "gzipLength": 1386,
151
169
  "brotliLength": 0,
152
- "mainUid": "413f-59"
170
+ "mainUid": "76c7-67"
153
171
  },
154
- "413f-62": {
155
- "renderedLength": 11541,
156
- "gzipLength": 2257,
172
+ "76c7-70": {
173
+ "renderedLength": 2013,
174
+ "gzipLength": 671,
157
175
  "brotliLength": 0,
158
- "mainUid": "413f-61"
176
+ "mainUid": "76c7-69"
159
177
  },
160
- "413f-64": {
161
- "renderedLength": 7548,
162
- "gzipLength": 1589,
178
+ "76c7-72": {
179
+ "renderedLength": 2415,
180
+ "gzipLength": 642,
163
181
  "brotliLength": 0,
164
- "mainUid": "413f-63"
182
+ "mainUid": "76c7-71"
165
183
  },
166
- "413f-66": {
167
- "renderedLength": 4435,
168
- "gzipLength": 783,
184
+ "76c7-74": {
185
+ "renderedLength": 13618,
186
+ "gzipLength": 2498,
169
187
  "brotliLength": 0,
170
- "mainUid": "413f-65"
188
+ "mainUid": "76c7-73"
171
189
  },
172
- "413f-68": {
173
- "renderedLength": 13865,
174
- "gzipLength": 2490,
190
+ "76c7-76": {
191
+ "renderedLength": 7196,
192
+ "gzipLength": 1519,
175
193
  "brotliLength": 0,
176
- "mainUid": "413f-67"
194
+ "mainUid": "76c7-75"
177
195
  },
178
- "413f-70": {
196
+ "76c7-78": {
197
+ "renderedLength": 4925,
198
+ "gzipLength": 807,
199
+ "brotliLength": 0,
200
+ "mainUid": "76c7-77"
201
+ },
202
+ "76c7-80": {
203
+ "renderedLength": 13955,
204
+ "gzipLength": 2506,
205
+ "brotliLength": 0,
206
+ "mainUid": "76c7-79"
207
+ },
208
+ "76c7-82": {
179
209
  "renderedLength": 2672,
180
210
  "gzipLength": 771,
181
211
  "brotliLength": 0,
182
- "mainUid": "413f-69"
212
+ "mainUid": "76c7-81"
183
213
  },
184
- "413f-72": {
185
- "renderedLength": 7982,
186
- "gzipLength": 1693,
214
+ "76c7-84": {
215
+ "renderedLength": 7847,
216
+ "gzipLength": 1627,
187
217
  "brotliLength": 0,
188
- "mainUid": "413f-71"
218
+ "mainUid": "76c7-83"
189
219
  },
190
- "413f-74": {
191
- "renderedLength": 2580,
192
- "gzipLength": 791,
220
+ "76c7-86": {
221
+ "renderedLength": 2586,
222
+ "gzipLength": 794,
193
223
  "brotliLength": 0,
194
- "mainUid": "413f-73"
224
+ "mainUid": "76c7-85"
195
225
  },
196
- "413f-76": {
197
- "renderedLength": 5911,
198
- "gzipLength": 1220,
226
+ "76c7-88": {
227
+ "renderedLength": 6033,
228
+ "gzipLength": 1248,
199
229
  "brotliLength": 0,
200
- "mainUid": "413f-75"
230
+ "mainUid": "76c7-87"
201
231
  },
202
- "413f-78": {
203
- "renderedLength": 5780,
204
- "gzipLength": 1073,
232
+ "76c7-90": {
233
+ "renderedLength": 12828,
234
+ "gzipLength": 1658,
205
235
  "brotliLength": 0,
206
- "mainUid": "413f-77"
236
+ "mainUid": "76c7-89"
207
237
  },
208
- "413f-80": {
209
- "renderedLength": 18123,
210
- "gzipLength": 3035,
238
+ "76c7-92": {
239
+ "renderedLength": 16516,
240
+ "gzipLength": 2789,
211
241
  "brotliLength": 0,
212
- "mainUid": "413f-79"
242
+ "mainUid": "76c7-91"
213
243
  },
214
- "413f-82": {
244
+ "76c7-94": {
215
245
  "renderedLength": 2753,
216
246
  "gzipLength": 846,
217
247
  "brotliLength": 0,
218
- "mainUid": "413f-81"
248
+ "mainUid": "76c7-93"
219
249
  },
220
- "413f-84": {
221
- "renderedLength": 11775,
222
- "gzipLength": 2476,
250
+ "76c7-96": {
251
+ "renderedLength": 11640,
252
+ "gzipLength": 2428,
223
253
  "brotliLength": 0,
224
- "mainUid": "413f-83"
254
+ "mainUid": "76c7-95"
225
255
  },
226
- "413f-86": {
227
- "renderedLength": 6302,
228
- "gzipLength": 1207,
256
+ "76c7-98": {
257
+ "renderedLength": 6959,
258
+ "gzipLength": 1289,
229
259
  "brotliLength": 0,
230
- "mainUid": "413f-85"
260
+ "mainUid": "76c7-97"
231
261
  },
232
- "413f-88": {
233
- "renderedLength": 23655,
234
- "gzipLength": 3372,
262
+ "76c7-100": {
263
+ "renderedLength": 18481,
264
+ "gzipLength": 2898,
235
265
  "brotliLength": 0,
236
- "mainUid": "413f-87"
266
+ "mainUid": "76c7-99"
237
267
  },
238
- "413f-90": {
239
- "renderedLength": 16752,
240
- "gzipLength": 3192,
268
+ "76c7-102": {
269
+ "renderedLength": 3427,
270
+ "gzipLength": 914,
241
271
  "brotliLength": 0,
242
- "mainUid": "413f-89"
272
+ "mainUid": "76c7-101"
243
273
  },
244
- "413f-92": {
245
- "renderedLength": 1895,
246
- "gzipLength": 565,
274
+ "76c7-104": {
275
+ "renderedLength": 1882,
276
+ "gzipLength": 562,
247
277
  "brotliLength": 0,
248
- "mainUid": "413f-91"
278
+ "mainUid": "76c7-103"
249
279
  },
250
- "413f-94": {
280
+ "76c7-106": {
251
281
  "renderedLength": 2462,
252
282
  "gzipLength": 797,
253
283
  "brotliLength": 0,
254
- "mainUid": "413f-93"
284
+ "mainUid": "76c7-105"
255
285
  },
256
- "413f-96": {
286
+ "76c7-108": {
257
287
  "renderedLength": 3559,
258
288
  "gzipLength": 1014,
259
289
  "brotliLength": 0,
260
- "mainUid": "413f-95"
290
+ "mainUid": "76c7-107"
261
291
  },
262
- "413f-98": {
292
+ "76c7-110": {
263
293
  "renderedLength": 2457,
264
294
  "gzipLength": 568,
265
295
  "brotliLength": 0,
266
- "mainUid": "413f-97"
296
+ "mainUid": "76c7-109"
267
297
  },
268
- "413f-100": {
298
+ "76c7-112": {
269
299
  "renderedLength": 3130,
270
300
  "gzipLength": 892,
271
301
  "brotliLength": 0,
272
- "mainUid": "413f-99"
302
+ "mainUid": "76c7-111"
273
303
  },
274
- "413f-102": {
304
+ "76c7-114": {
275
305
  "renderedLength": 2469,
276
306
  "gzipLength": 693,
277
307
  "brotliLength": 0,
278
- "mainUid": "413f-101"
308
+ "mainUid": "76c7-113"
279
309
  },
280
- "413f-104": {
310
+ "76c7-116": {
281
311
  "renderedLength": 3437,
282
312
  "gzipLength": 1020,
283
313
  "brotliLength": 0,
284
- "mainUid": "413f-103"
314
+ "mainUid": "76c7-115"
285
315
  },
286
- "413f-106": {
316
+ "76c7-118": {
287
317
  "renderedLength": 5782,
288
318
  "gzipLength": 1525,
289
319
  "brotliLength": 0,
290
- "mainUid": "413f-105"
320
+ "mainUid": "76c7-117"
291
321
  },
292
- "413f-108": {
322
+ "76c7-120": {
293
323
  "renderedLength": 1385,
294
324
  "gzipLength": 494,
295
325
  "brotliLength": 0,
296
- "mainUid": "413f-107"
326
+ "mainUid": "76c7-119"
297
327
  },
298
- "413f-110": {
328
+ "76c7-122": {
299
329
  "renderedLength": 1254,
300
330
  "gzipLength": 407,
301
331
  "brotliLength": 0,
302
- "mainUid": "413f-109"
332
+ "mainUid": "76c7-121"
303
333
  },
304
- "413f-112": {
334
+ "76c7-124": {
305
335
  "renderedLength": 0,
306
336
  "gzipLength": 0,
307
337
  "brotliLength": 0,
308
- "mainUid": "413f-111"
338
+ "mainUid": "76c7-123"
309
339
  }
310
340
  },
311
341
  "nodeMetas": {
312
- "413f-57": {
342
+ "76c7-63": {
313
343
  "id": "\u0000rollupPluginBabelHelpers.js",
314
344
  "moduleParts": {
315
- "index.production.js": "413f-58"
345
+ "index.production.js": "76c7-64"
316
346
  },
317
347
  "imported": [],
318
348
  "importedBy": [
319
349
  {
320
- "uid": "413f-89"
350
+ "uid": "76c7-101"
351
+ },
352
+ {
353
+ "uid": "76c7-103"
354
+ },
355
+ {
356
+ "uid": "76c7-73"
321
357
  },
322
358
  {
323
- "uid": "413f-91"
359
+ "uid": "76c7-75"
324
360
  },
325
361
  {
326
- "uid": "413f-61"
362
+ "uid": "76c7-87"
327
363
  },
328
364
  {
329
- "uid": "413f-63"
365
+ "uid": "76c7-89"
330
366
  },
331
367
  {
332
- "uid": "413f-75"
368
+ "uid": "76c7-91"
333
369
  },
334
370
  {
335
- "uid": "413f-79"
371
+ "uid": "76c7-95"
336
372
  },
337
373
  {
338
- "uid": "413f-83"
374
+ "uid": "76c7-97"
339
375
  },
340
376
  {
341
- "uid": "413f-85"
377
+ "uid": "76c7-65"
342
378
  },
343
379
  {
344
- "uid": "413f-59"
380
+ "uid": "76c7-107"
345
381
  },
346
382
  {
347
- "uid": "413f-95"
383
+ "uid": "76c7-67"
348
384
  },
349
385
  {
350
- "uid": "413f-69"
386
+ "uid": "76c7-81"
351
387
  }
352
388
  ]
353
389
  },
354
- "413f-59": {
390
+ "76c7-65": {
355
391
  "id": "/packages/table-core/src/utils.ts",
356
392
  "moduleParts": {
357
- "index.production.js": "413f-60"
393
+ "index.production.js": "76c7-66"
358
394
  },
359
395
  "imported": [
360
396
  {
361
- "uid": "413f-57"
397
+ "uid": "76c7-63"
362
398
  }
363
399
  ],
364
400
  "importedBy": [
365
401
  {
366
- "uid": "413f-111"
402
+ "uid": "76c7-123"
403
+ },
404
+ {
405
+ "uid": "76c7-101"
406
+ },
407
+ {
408
+ "uid": "76c7-73"
409
+ },
410
+ {
411
+ "uid": "76c7-75"
367
412
  },
368
413
  {
369
- "uid": "413f-89"
414
+ "uid": "76c7-79"
370
415
  },
371
416
  {
372
- "uid": "413f-61"
417
+ "uid": "76c7-83"
373
418
  },
374
419
  {
375
- "uid": "413f-63"
420
+ "uid": "76c7-99"
376
421
  },
377
422
  {
378
- "uid": "413f-67"
423
+ "uid": "76c7-85"
379
424
  },
380
425
  {
381
- "uid": "413f-71"
426
+ "uid": "76c7-87"
382
427
  },
383
428
  {
384
- "uid": "413f-87"
429
+ "uid": "76c7-89"
385
430
  },
386
431
  {
387
- "uid": "413f-73"
432
+ "uid": "76c7-91"
388
433
  },
389
434
  {
390
- "uid": "413f-75"
435
+ "uid": "76c7-95"
391
436
  },
392
437
  {
393
- "uid": "413f-77"
438
+ "uid": "76c7-97"
394
439
  },
395
440
  {
396
- "uid": "413f-79"
441
+ "uid": "76c7-105"
397
442
  },
398
443
  {
399
- "uid": "413f-83"
444
+ "uid": "76c7-107"
400
445
  },
401
446
  {
402
- "uid": "413f-85"
447
+ "uid": "76c7-111"
403
448
  },
404
449
  {
405
- "uid": "413f-93"
450
+ "uid": "76c7-113"
406
451
  },
407
452
  {
408
- "uid": "413f-95"
453
+ "uid": "76c7-115"
409
454
  },
410
455
  {
411
- "uid": "413f-99"
456
+ "uid": "76c7-117"
412
457
  },
413
458
  {
414
- "uid": "413f-101"
459
+ "uid": "76c7-119"
415
460
  },
416
461
  {
417
- "uid": "413f-103"
462
+ "uid": "76c7-121"
418
463
  },
419
464
  {
420
- "uid": "413f-105"
465
+ "uid": "76c7-67"
421
466
  },
422
467
  {
423
- "uid": "413f-107"
468
+ "uid": "76c7-69"
424
469
  },
425
470
  {
426
- "uid": "413f-109"
471
+ "uid": "76c7-71"
427
472
  }
428
473
  ]
429
474
  },
430
- "413f-61": {
431
- "id": "/packages/table-core/src/features/ColumnSizing.ts",
475
+ "76c7-67": {
476
+ "id": "/packages/table-core/src/features/Columns.ts",
432
477
  "moduleParts": {
433
- "index.production.js": "413f-62"
478
+ "index.production.js": "76c7-68"
434
479
  },
435
480
  "imported": [
436
481
  {
437
- "uid": "413f-57"
482
+ "uid": "76c7-63"
438
483
  },
439
484
  {
440
- "uid": "413f-59"
485
+ "uid": "76c7-65"
486
+ }
487
+ ],
488
+ "importedBy": [
489
+ {
490
+ "uid": "76c7-101"
491
+ }
492
+ ]
493
+ },
494
+ "76c7-69": {
495
+ "id": "/packages/table-core/src/features/Rows.ts",
496
+ "moduleParts": {
497
+ "index.production.js": "76c7-70"
498
+ },
499
+ "imported": [
500
+ {
501
+ "uid": "76c7-65"
441
502
  }
442
503
  ],
443
504
  "importedBy": [
444
505
  {
445
- "uid": "413f-111"
506
+ "uid": "76c7-101"
507
+ }
508
+ ]
509
+ },
510
+ "76c7-71": {
511
+ "id": "/packages/table-core/src/features/Cells.ts",
512
+ "moduleParts": {
513
+ "index.production.js": "76c7-72"
514
+ },
515
+ "imported": [
516
+ {
517
+ "uid": "76c7-65"
518
+ }
519
+ ],
520
+ "importedBy": [
521
+ {
522
+ "uid": "76c7-101"
523
+ }
524
+ ]
525
+ },
526
+ "76c7-73": {
527
+ "id": "/packages/table-core/src/features/ColumnSizing.ts",
528
+ "moduleParts": {
529
+ "index.production.js": "76c7-74"
530
+ },
531
+ "imported": [
532
+ {
533
+ "uid": "76c7-63"
446
534
  },
447
535
  {
448
- "uid": "413f-89"
536
+ "uid": "76c7-65"
537
+ }
538
+ ],
539
+ "importedBy": [
540
+ {
541
+ "uid": "76c7-123"
449
542
  },
450
543
  {
451
- "uid": "413f-87"
544
+ "uid": "76c7-101"
452
545
  }
453
546
  ]
454
547
  },
455
- "413f-63": {
548
+ "76c7-75": {
456
549
  "id": "/packages/table-core/src/features/Expanding.ts",
457
550
  "moduleParts": {
458
- "index.production.js": "413f-64"
551
+ "index.production.js": "76c7-76"
459
552
  },
460
553
  "imported": [
461
554
  {
462
- "uid": "413f-57"
555
+ "uid": "76c7-63"
463
556
  },
464
557
  {
465
- "uid": "413f-59"
558
+ "uid": "76c7-65"
466
559
  }
467
560
  ],
468
561
  "importedBy": [
469
562
  {
470
- "uid": "413f-111"
563
+ "uid": "76c7-123"
471
564
  },
472
565
  {
473
- "uid": "413f-89"
566
+ "uid": "76c7-101"
474
567
  }
475
568
  ]
476
569
  },
477
- "413f-65": {
570
+ "76c7-77": {
478
571
  "id": "/packages/table-core/src/filterFns.ts",
479
572
  "moduleParts": {
480
- "index.production.js": "413f-66"
573
+ "index.production.js": "76c7-78"
481
574
  },
482
575
  "imported": [],
483
576
  "importedBy": [
484
577
  {
485
- "uid": "413f-67"
578
+ "uid": "76c7-79"
486
579
  }
487
580
  ]
488
581
  },
489
- "413f-67": {
582
+ "76c7-79": {
490
583
  "id": "/packages/table-core/src/features/Filters.ts",
491
584
  "moduleParts": {
492
- "index.production.js": "413f-68"
585
+ "index.production.js": "76c7-80"
493
586
  },
494
587
  "imported": [
495
588
  {
496
- "uid": "413f-65"
589
+ "uid": "76c7-77"
497
590
  },
498
591
  {
499
- "uid": "413f-59"
592
+ "uid": "76c7-65"
500
593
  }
501
594
  ],
502
595
  "importedBy": [
503
596
  {
504
- "uid": "413f-111"
597
+ "uid": "76c7-123"
505
598
  },
506
599
  {
507
- "uid": "413f-89"
600
+ "uid": "76c7-101"
508
601
  }
509
602
  ]
510
603
  },
511
- "413f-69": {
604
+ "76c7-81": {
512
605
  "id": "/packages/table-core/src/aggregationFns.ts",
513
606
  "moduleParts": {
514
- "index.production.js": "413f-70"
607
+ "index.production.js": "76c7-82"
515
608
  },
516
609
  "imported": [
517
610
  {
518
- "uid": "413f-57"
611
+ "uid": "76c7-63"
519
612
  }
520
613
  ],
521
614
  "importedBy": [
522
615
  {
523
- "uid": "413f-89"
616
+ "uid": "76c7-101"
524
617
  },
525
618
  {
526
- "uid": "413f-71"
619
+ "uid": "76c7-83"
527
620
  }
528
621
  ]
529
622
  },
530
- "413f-71": {
623
+ "76c7-83": {
531
624
  "id": "/packages/table-core/src/features/Grouping.ts",
532
625
  "moduleParts": {
533
- "index.production.js": "413f-72"
626
+ "index.production.js": "76c7-84"
534
627
  },
535
628
  "imported": [
536
629
  {
537
- "uid": "413f-69"
630
+ "uid": "76c7-81"
538
631
  },
539
632
  {
540
- "uid": "413f-59"
633
+ "uid": "76c7-65"
541
634
  }
542
635
  ],
543
636
  "importedBy": [
544
637
  {
545
- "uid": "413f-111"
638
+ "uid": "76c7-123"
546
639
  },
547
640
  {
548
- "uid": "413f-89"
641
+ "uid": "76c7-101"
549
642
  },
550
643
  {
551
- "uid": "413f-73"
644
+ "uid": "76c7-85"
552
645
  }
553
646
  ]
554
647
  },
555
- "413f-73": {
648
+ "76c7-85": {
556
649
  "id": "/packages/table-core/src/features/Ordering.ts",
557
650
  "moduleParts": {
558
- "index.production.js": "413f-74"
651
+ "index.production.js": "76c7-86"
559
652
  },
560
653
  "imported": [
561
654
  {
562
- "uid": "413f-59"
655
+ "uid": "76c7-65"
563
656
  },
564
657
  {
565
- "uid": "413f-71"
658
+ "uid": "76c7-83"
566
659
  }
567
660
  ],
568
661
  "importedBy": [
569
662
  {
570
- "uid": "413f-111"
663
+ "uid": "76c7-123"
571
664
  },
572
665
  {
573
- "uid": "413f-89"
666
+ "uid": "76c7-101"
574
667
  }
575
668
  ]
576
669
  },
577
- "413f-75": {
670
+ "76c7-87": {
578
671
  "id": "/packages/table-core/src/features/Pagination.ts",
579
672
  "moduleParts": {
580
- "index.production.js": "413f-76"
673
+ "index.production.js": "76c7-88"
581
674
  },
582
675
  "imported": [
583
676
  {
584
- "uid": "413f-57"
677
+ "uid": "76c7-63"
585
678
  },
586
679
  {
587
- "uid": "413f-59"
680
+ "uid": "76c7-65"
588
681
  }
589
682
  ],
590
683
  "importedBy": [
591
684
  {
592
- "uid": "413f-111"
685
+ "uid": "76c7-123"
593
686
  },
594
687
  {
595
- "uid": "413f-89"
688
+ "uid": "76c7-101"
596
689
  }
597
690
  ]
598
691
  },
599
- "413f-77": {
692
+ "76c7-89": {
600
693
  "id": "/packages/table-core/src/features/Pinning.ts",
601
694
  "moduleParts": {
602
- "index.production.js": "413f-78"
695
+ "index.production.js": "76c7-90"
603
696
  },
604
697
  "imported": [
605
698
  {
606
- "uid": "413f-59"
699
+ "uid": "76c7-63"
700
+ },
701
+ {
702
+ "uid": "76c7-65"
607
703
  }
608
704
  ],
609
705
  "importedBy": [
610
706
  {
611
- "uid": "413f-111"
707
+ "uid": "76c7-123"
612
708
  },
613
709
  {
614
- "uid": "413f-89"
710
+ "uid": "76c7-101"
615
711
  }
616
712
  ]
617
713
  },
618
- "413f-79": {
714
+ "76c7-91": {
619
715
  "id": "/packages/table-core/src/features/RowSelection.ts",
620
716
  "moduleParts": {
621
- "index.production.js": "413f-80"
717
+ "index.production.js": "76c7-92"
622
718
  },
623
719
  "imported": [
624
720
  {
625
- "uid": "413f-57"
721
+ "uid": "76c7-63"
626
722
  },
627
723
  {
628
- "uid": "413f-59"
724
+ "uid": "76c7-65"
629
725
  }
630
726
  ],
631
727
  "importedBy": [
632
728
  {
633
- "uid": "413f-111"
729
+ "uid": "76c7-123"
634
730
  },
635
731
  {
636
- "uid": "413f-89"
732
+ "uid": "76c7-101"
637
733
  }
638
734
  ]
639
735
  },
640
- "413f-81": {
736
+ "76c7-93": {
641
737
  "id": "/packages/table-core/src/sortingFns.ts",
642
738
  "moduleParts": {
643
- "index.production.js": "413f-82"
739
+ "index.production.js": "76c7-94"
644
740
  },
645
741
  "imported": [],
646
742
  "importedBy": [
647
743
  {
648
- "uid": "413f-83"
744
+ "uid": "76c7-95"
649
745
  }
650
746
  ]
651
747
  },
652
- "413f-83": {
748
+ "76c7-95": {
653
749
  "id": "/packages/table-core/src/features/Sorting.ts",
654
750
  "moduleParts": {
655
- "index.production.js": "413f-84"
751
+ "index.production.js": "76c7-96"
656
752
  },
657
753
  "imported": [
658
754
  {
659
- "uid": "413f-57"
755
+ "uid": "76c7-63"
660
756
  },
661
757
  {
662
- "uid": "413f-81"
758
+ "uid": "76c7-93"
663
759
  },
664
760
  {
665
- "uid": "413f-59"
761
+ "uid": "76c7-65"
666
762
  }
667
763
  ],
668
764
  "importedBy": [
669
765
  {
670
- "uid": "413f-111"
766
+ "uid": "76c7-123"
671
767
  },
672
768
  {
673
- "uid": "413f-89"
769
+ "uid": "76c7-101"
674
770
  }
675
771
  ]
676
772
  },
677
- "413f-85": {
773
+ "76c7-97": {
678
774
  "id": "/packages/table-core/src/features/Visibility.ts",
679
775
  "moduleParts": {
680
- "index.production.js": "413f-86"
776
+ "index.production.js": "76c7-98"
681
777
  },
682
778
  "imported": [
683
779
  {
684
- "uid": "413f-57"
780
+ "uid": "76c7-63"
685
781
  },
686
782
  {
687
- "uid": "413f-59"
783
+ "uid": "76c7-65"
688
784
  }
689
785
  ],
690
786
  "importedBy": [
691
787
  {
692
- "uid": "413f-111"
788
+ "uid": "76c7-123"
693
789
  },
694
790
  {
695
- "uid": "413f-89"
791
+ "uid": "76c7-101"
696
792
  }
697
793
  ]
698
794
  },
699
- "413f-87": {
795
+ "76c7-99": {
700
796
  "id": "/packages/table-core/src/features/Headers.ts",
701
797
  "moduleParts": {
702
- "index.production.js": "413f-88"
798
+ "index.production.js": "76c7-100"
703
799
  },
704
800
  "imported": [
705
801
  {
706
- "uid": "413f-59"
707
- },
708
- {
709
- "uid": "413f-61"
802
+ "uid": "76c7-65"
710
803
  }
711
804
  ],
712
805
  "importedBy": [
713
806
  {
714
- "uid": "413f-111"
807
+ "uid": "76c7-123"
715
808
  },
716
809
  {
717
- "uid": "413f-89"
810
+ "uid": "76c7-101"
718
811
  }
719
812
  ]
720
813
  },
721
- "413f-89": {
814
+ "76c7-101": {
722
815
  "id": "/packages/table-core/src/core.ts",
723
816
  "moduleParts": {
724
- "index.production.js": "413f-90"
817
+ "index.production.js": "76c7-102"
725
818
  },
726
819
  "imported": [
727
820
  {
728
- "uid": "413f-57"
821
+ "uid": "76c7-63"
822
+ },
823
+ {
824
+ "uid": "76c7-65"
825
+ },
826
+ {
827
+ "uid": "76c7-67"
828
+ },
829
+ {
830
+ "uid": "76c7-69"
729
831
  },
730
832
  {
731
- "uid": "413f-59"
833
+ "uid": "76c7-71"
732
834
  },
733
835
  {
734
- "uid": "413f-61"
836
+ "uid": "76c7-73"
735
837
  },
736
838
  {
737
- "uid": "413f-63"
839
+ "uid": "76c7-75"
738
840
  },
739
841
  {
740
- "uid": "413f-67"
842
+ "uid": "76c7-79"
741
843
  },
742
844
  {
743
- "uid": "413f-71"
845
+ "uid": "76c7-83"
744
846
  },
745
847
  {
746
- "uid": "413f-73"
848
+ "uid": "76c7-85"
747
849
  },
748
850
  {
749
- "uid": "413f-75"
851
+ "uid": "76c7-87"
750
852
  },
751
853
  {
752
- "uid": "413f-77"
854
+ "uid": "76c7-89"
753
855
  },
754
856
  {
755
- "uid": "413f-79"
857
+ "uid": "76c7-91"
756
858
  },
757
859
  {
758
- "uid": "413f-83"
860
+ "uid": "76c7-95"
759
861
  },
760
862
  {
761
- "uid": "413f-85"
863
+ "uid": "76c7-97"
762
864
  },
763
865
  {
764
- "uid": "413f-87"
866
+ "uid": "76c7-99"
765
867
  },
766
868
  {
767
- "uid": "413f-69"
869
+ "uid": "76c7-81"
768
870
  }
769
871
  ],
770
872
  "importedBy": [
771
873
  {
772
- "uid": "413f-111"
874
+ "uid": "76c7-123"
773
875
  }
774
876
  ]
775
877
  },
776
- "413f-91": {
878
+ "76c7-103": {
777
879
  "id": "/packages/table-core/src/createTable.ts",
778
880
  "moduleParts": {
779
- "index.production.js": "413f-92"
881
+ "index.production.js": "76c7-104"
780
882
  },
781
883
  "imported": [
782
884
  {
783
- "uid": "413f-57"
885
+ "uid": "76c7-63"
784
886
  }
785
887
  ],
786
888
  "importedBy": [
787
889
  {
788
- "uid": "413f-111"
890
+ "uid": "76c7-123"
789
891
  }
790
892
  ]
791
893
  },
792
- "413f-93": {
894
+ "76c7-105": {
793
895
  "id": "/packages/table-core/src/utils/getCoreRowModelSync.ts",
794
896
  "moduleParts": {
795
- "index.production.js": "413f-94"
897
+ "index.production.js": "76c7-106"
796
898
  },
797
899
  "imported": [
798
900
  {
799
- "uid": "413f-59"
901
+ "uid": "76c7-65"
800
902
  }
801
903
  ],
802
904
  "importedBy": [
803
905
  {
804
- "uid": "413f-111"
906
+ "uid": "76c7-123"
805
907
  }
806
908
  ]
807
909
  },
808
- "413f-95": {
910
+ "76c7-107": {
809
911
  "id": "/packages/table-core/src/utils/getCoreRowModelAsync.ts",
810
912
  "moduleParts": {
811
- "index.production.js": "413f-96"
913
+ "index.production.js": "76c7-108"
812
914
  },
813
915
  "imported": [
814
916
  {
815
- "uid": "413f-57"
917
+ "uid": "76c7-63"
816
918
  },
817
919
  {
818
- "uid": "413f-59"
920
+ "uid": "76c7-65"
819
921
  }
820
922
  ],
821
923
  "importedBy": [
822
924
  {
823
- "uid": "413f-111"
925
+ "uid": "76c7-123"
824
926
  }
825
927
  ]
826
928
  },
827
- "413f-97": {
929
+ "76c7-109": {
828
930
  "id": "/packages/table-core/src/utils/filterRowsUtils.ts",
829
931
  "moduleParts": {
830
- "index.production.js": "413f-98"
932
+ "index.production.js": "76c7-110"
831
933
  },
832
934
  "imported": [],
833
935
  "importedBy": [
834
936
  {
835
- "uid": "413f-99"
937
+ "uid": "76c7-111"
836
938
  },
837
939
  {
838
- "uid": "413f-101"
940
+ "uid": "76c7-113"
839
941
  }
840
942
  ]
841
943
  },
842
- "413f-99": {
944
+ "76c7-111": {
843
945
  "id": "/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts",
844
946
  "moduleParts": {
845
- "index.production.js": "413f-100"
947
+ "index.production.js": "76c7-112"
846
948
  },
847
949
  "imported": [
848
950
  {
849
- "uid": "413f-59"
951
+ "uid": "76c7-65"
850
952
  },
851
953
  {
852
- "uid": "413f-97"
954
+ "uid": "76c7-109"
853
955
  }
854
956
  ],
855
957
  "importedBy": [
856
958
  {
857
- "uid": "413f-111"
959
+ "uid": "76c7-123"
858
960
  }
859
961
  ]
860
962
  },
861
- "413f-101": {
963
+ "76c7-113": {
862
964
  "id": "/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts",
863
965
  "moduleParts": {
864
- "index.production.js": "413f-102"
966
+ "index.production.js": "76c7-114"
865
967
  },
866
968
  "imported": [
867
969
  {
868
- "uid": "413f-59"
970
+ "uid": "76c7-65"
869
971
  },
870
972
  {
871
- "uid": "413f-97"
973
+ "uid": "76c7-109"
872
974
  }
873
975
  ],
874
976
  "importedBy": [
875
977
  {
876
- "uid": "413f-111"
978
+ "uid": "76c7-123"
877
979
  }
878
980
  ]
879
981
  },
880
- "413f-103": {
982
+ "76c7-115": {
881
983
  "id": "/packages/table-core/src/utils/getSortedRowModelSync.ts",
882
984
  "moduleParts": {
883
- "index.production.js": "413f-104"
985
+ "index.production.js": "76c7-116"
884
986
  },
885
987
  "imported": [
886
988
  {
887
- "uid": "413f-59"
989
+ "uid": "76c7-65"
888
990
  }
889
991
  ],
890
992
  "importedBy": [
891
993
  {
892
- "uid": "413f-111"
994
+ "uid": "76c7-123"
893
995
  }
894
996
  ]
895
997
  },
896
- "413f-105": {
998
+ "76c7-117": {
897
999
  "id": "/packages/table-core/src/utils/getGroupedRowModel.ts",
898
1000
  "moduleParts": {
899
- "index.production.js": "413f-106"
1001
+ "index.production.js": "76c7-118"
900
1002
  },
901
1003
  "imported": [
902
1004
  {
903
- "uid": "413f-59"
1005
+ "uid": "76c7-65"
904
1006
  }
905
1007
  ],
906
1008
  "importedBy": [
907
1009
  {
908
- "uid": "413f-111"
1010
+ "uid": "76c7-123"
909
1011
  }
910
1012
  ]
911
1013
  },
912
- "413f-107": {
1014
+ "76c7-119": {
913
1015
  "id": "/packages/table-core/src/utils/getExpandedRowModel.ts",
914
1016
  "moduleParts": {
915
- "index.production.js": "413f-108"
1017
+ "index.production.js": "76c7-120"
916
1018
  },
917
1019
  "imported": [
918
1020
  {
919
- "uid": "413f-59"
1021
+ "uid": "76c7-65"
920
1022
  }
921
1023
  ],
922
1024
  "importedBy": [
923
1025
  {
924
- "uid": "413f-111"
1026
+ "uid": "76c7-123"
925
1027
  },
926
1028
  {
927
- "uid": "413f-109"
1029
+ "uid": "76c7-121"
928
1030
  }
929
1031
  ]
930
1032
  },
931
- "413f-109": {
1033
+ "76c7-121": {
932
1034
  "id": "/packages/table-core/src/utils/getPaginationRowModel.ts",
933
1035
  "moduleParts": {
934
- "index.production.js": "413f-110"
1036
+ "index.production.js": "76c7-122"
935
1037
  },
936
1038
  "imported": [
937
1039
  {
938
- "uid": "413f-59"
1040
+ "uid": "76c7-65"
939
1041
  },
940
1042
  {
941
- "uid": "413f-107"
1043
+ "uid": "76c7-119"
942
1044
  }
943
1045
  ],
944
1046
  "importedBy": [
945
1047
  {
946
- "uid": "413f-111"
1048
+ "uid": "76c7-123"
947
1049
  }
948
1050
  ]
949
1051
  },
950
- "413f-111": {
1052
+ "76c7-123": {
951
1053
  "id": "/packages/table-core/src/index.ts",
952
1054
  "moduleParts": {
953
- "index.production.js": "413f-112"
1055
+ "index.production.js": "76c7-124"
954
1056
  },
955
1057
  "imported": [
956
1058
  {
957
- "uid": "413f-89"
1059
+ "uid": "76c7-101"
958
1060
  },
959
1061
  {
960
- "uid": "413f-113"
1062
+ "uid": "76c7-125"
961
1063
  },
962
1064
  {
963
- "uid": "413f-91"
1065
+ "uid": "76c7-103"
964
1066
  },
965
1067
  {
966
- "uid": "413f-61"
1068
+ "uid": "76c7-73"
967
1069
  },
968
1070
  {
969
- "uid": "413f-63"
1071
+ "uid": "76c7-75"
970
1072
  },
971
1073
  {
972
- "uid": "413f-67"
1074
+ "uid": "76c7-79"
973
1075
  },
974
1076
  {
975
- "uid": "413f-71"
1077
+ "uid": "76c7-83"
976
1078
  },
977
1079
  {
978
- "uid": "413f-87"
1080
+ "uid": "76c7-99"
979
1081
  },
980
1082
  {
981
- "uid": "413f-73"
1083
+ "uid": "76c7-85"
982
1084
  },
983
1085
  {
984
- "uid": "413f-75"
1086
+ "uid": "76c7-87"
985
1087
  },
986
1088
  {
987
- "uid": "413f-77"
1089
+ "uid": "76c7-89"
988
1090
  },
989
1091
  {
990
- "uid": "413f-79"
1092
+ "uid": "76c7-91"
991
1093
  },
992
1094
  {
993
- "uid": "413f-83"
1095
+ "uid": "76c7-95"
994
1096
  },
995
1097
  {
996
- "uid": "413f-85"
1098
+ "uid": "76c7-97"
997
1099
  },
998
1100
  {
999
- "uid": "413f-59"
1101
+ "uid": "76c7-65"
1000
1102
  },
1001
1103
  {
1002
- "uid": "413f-93"
1104
+ "uid": "76c7-105"
1003
1105
  },
1004
1106
  {
1005
- "uid": "413f-95"
1107
+ "uid": "76c7-107"
1006
1108
  },
1007
1109
  {
1008
- "uid": "413f-99"
1110
+ "uid": "76c7-111"
1009
1111
  },
1010
1112
  {
1011
- "uid": "413f-101"
1113
+ "uid": "76c7-113"
1012
1114
  },
1013
1115
  {
1014
- "uid": "413f-103"
1116
+ "uid": "76c7-115"
1015
1117
  },
1016
1118
  {
1017
- "uid": "413f-105"
1119
+ "uid": "76c7-117"
1018
1120
  },
1019
1121
  {
1020
- "uid": "413f-107"
1122
+ "uid": "76c7-119"
1021
1123
  },
1022
1124
  {
1023
- "uid": "413f-109"
1125
+ "uid": "76c7-121"
1024
1126
  }
1025
1127
  ],
1026
1128
  "importedBy": [],
1027
1129
  "isEntry": true
1028
1130
  },
1029
- "413f-113": {
1131
+ "76c7-125": {
1030
1132
  "id": "/packages/table-core/src/types.ts",
1031
1133
  "moduleParts": {},
1032
1134
  "imported": [],
1033
1135
  "importedBy": [
1034
1136
  {
1035
- "uid": "413f-111"
1137
+ "uid": "76c7-123"
1036
1138
  }
1037
1139
  ]
1038
1140
  }