feat(Table): improve expanded row (#2485)

This commit is contained in:
kyyy
2024-11-05 21:52:10 +07:00
committed by GitHub
parent 0b2a3989a2
commit 1acd01a440
7 changed files with 301 additions and 25 deletions

View File

@@ -11,3 +11,8 @@ export interface TableColumn {
rowClass?: string
[key: string]: any
}
export interface Expanded<T> {
openedRows: T[]
row: T | null
}