bito-code-review[bot] commented on PR #35866:
URL: https://github.com/apache/superset/pull/35866#issuecomment-3455541489
<details open>
<summary><strong>Interaction Diagram by <a
href="https://bito.ai#sequence_diagram">Bito</a></strong></summary>
```mermaid
sequenceDiagram
participant UI as UI Component
participant LV as ListView<br/>🔄 Updated | ●●○ Medium
participant TC as TableCollection<br/>🔄 Updated | ●●○ Medium
participant ST as StyledTable
participant Table as Ant Table
Note over TC: New prop 'highlightRowId' added to interface
UI->>LV: Pass highlightRowId prop
LV->>TC: Pass highlightRowId to TableCollection
TC->>ST: Apply CSS styling for highlighted row
TC->>Table: Set rowClassName with highlight logic
Table->>Table: Render rows with class 'table-row-highlighted'
Note over ST: CSS rule applies colorPrimaryBg to highlighted row
```
Critical path: UI
Component->ListView->TableCollection->StyledTable->Ant Table
> **Note:** Added row highlighting feature to TableCollection by introducing
a new optional 'highlightRowId' prop and CSS styling. The prop flows
from ListView through TableCollection to the underlying Ant Table, enabling
visual row highlighting via the 'table-row-highlighted' class when
record.id matches highlightRowId.
</details>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]