@tanstack/table-core 8.0.0-alpha.27 → 8.0.0-alpha.32

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