import CheckBox from "@ui5/webcomponents/dist/CheckBox.js"; import type TableRow from "./TableRow.js"; export default function TableRowTemplate(this: TableRow) { return ( <> {this.isMultiSelect && } {this.shouldPopin ? this.visibleCells.map(cell => ) : this.cells.map(cell => ) }
{ this.shouldPopin && this.popinCells.map(cellData => {cellData.popinDisplayInline ?
{cellData.popinText && {cellData.popinText}: }
: <> {cellData.popinText && {cellData.popinText}: }
}
) } ); }