({
tableId,
store,
rowComponent: Row = RowView,
getRowComponentProps,
customCellIds,
separator,
debugIds
}, rowIds)
| 1411 | ) |
| 1412 | }); |
| 1413 | var tableView = ({ |
| 1414 | tableId, |
| 1415 | store, |
| 1416 | rowComponent: Row = RowView, |
| 1417 | getRowComponentProps, |
| 1418 | customCellIds, |
| 1419 | separator, |
| 1420 | debugIds |
| 1421 | }, rowIds) => /* @__PURE__ */ jsx(Wrap, { |
| 1422 | separator, |
| 1423 | debugIds, |
| 1424 | id: tableId, |
| 1425 | children: arrayMap( |
| 1426 | rowIds, |
| 1427 | (rowId) => /* @__PURE__ */ jsx( |
| 1428 | Row, |
| 1429 | { |
| 1430 | ...getProps(getRowComponentProps, rowId), |
| 1431 | tableId, |
| 1432 | rowId, |
| 1433 | customCellIds, |
| 1434 | store, |
| 1435 | debugIds |
| 1436 | }, |
| 1437 | rowId |
| 1438 | ) |
| 1439 | ) |
| 1440 | }); |
| 1441 | var resultTableView = ({ |
| 1442 | queryId, |
| 1443 | queries, |
no test coverage detected
searching dependent graphs…