* Get the expanded state, fallback to normal state if not expandable.
()
| 171 | * Get the expanded state, fallback to normal state if not expandable. |
| 172 | */ |
| 173 | getExpandedState() { |
| 174 | return { |
| 175 | expandedData: this._data, |
| 176 | expandedRowKeys: this.getExpandedRowKeys(), |
| 177 | expandedDepthMap: this._depthMap, |
| 178 | }; |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Get the total height of all rows, including expanded rows. |
nothing calls this directly
no test coverage detected