@tanstack/table-core 8.0.0-alpha.9 → 8.0.0-beta.0

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