({
tableId,
rowId,
store,
cellComponent: Cell = CellView,
getCellComponentProps,
customCellIds,
separator,
debugIds
})
| 1382 | return customCellIds ?? defaultCellIds; |
| 1383 | }; |
| 1384 | var RowView = ({ |
| 1385 | tableId, |
| 1386 | rowId, |
| 1387 | store, |
| 1388 | cellComponent: Cell = CellView, |
| 1389 | getCellComponentProps, |
| 1390 | customCellIds, |
| 1391 | separator, |
| 1392 | debugIds |
| 1393 | }) => /* @__PURE__ */ jsx(Wrap, { |
| 1394 | separator, |
| 1395 | debugIds, |
| 1396 | id: rowId, |
| 1397 | children: arrayMap( |
| 1398 | useCustomOrDefaultCellIds(customCellIds, tableId, rowId, store), |
| 1399 | (cellId) => /* @__PURE__ */ jsx( |
| 1400 | Cell, |
| 1401 | { |
| 1402 | ...getProps(getCellComponentProps, cellId), |
| 1403 | tableId, |
| 1404 | rowId, |
| 1405 | cellId, |
| 1406 | store, |
| 1407 | debugIds |
| 1408 | }, |
| 1409 | cellId |
| 1410 | ) |
| 1411 | ) |
| 1412 | }); |
| 1413 | var tableView = ({ |
| 1414 | tableId, |
| 1415 | store, |
nothing calls this directly
no test coverage detected
searching dependent graphs…