({
queryId,
queries,
resultRowComponent: ResultRow = ResultRowView,
getResultRowComponentProps,
separator,
debugIds
}, rowIds)
| 1439 | ) |
| 1440 | }); |
| 1441 | var resultTableView = ({ |
| 1442 | queryId, |
| 1443 | queries, |
| 1444 | resultRowComponent: ResultRow = ResultRowView, |
| 1445 | getResultRowComponentProps, |
| 1446 | separator, |
| 1447 | debugIds |
| 1448 | }, rowIds) => /* @__PURE__ */ jsx(Wrap, { |
| 1449 | separator, |
| 1450 | debugIds, |
| 1451 | id: queryId, |
| 1452 | children: arrayMap( |
| 1453 | rowIds, |
| 1454 | (rowId) => /* @__PURE__ */ jsx( |
| 1455 | ResultRow, |
| 1456 | { |
| 1457 | ...getProps(getResultRowComponentProps, rowId), |
| 1458 | queryId, |
| 1459 | rowId, |
| 1460 | queries, |
| 1461 | debugIds |
| 1462 | }, |
| 1463 | rowId |
| 1464 | ) |
| 1465 | ) |
| 1466 | }); |
| 1467 | var useComponentPerRow = ({ |
| 1468 | relationshipId, |
| 1469 | relationships, |
no test coverage detected
searching dependent graphs…