* Invalidate a specific item by key, forcing it to re-render
(key: string)
| 846 | * Invalidate a specific item by key, forcing it to re-render |
| 847 | */ |
| 848 | invalidateItem(key: string): void { |
| 849 | this.invalidateItems([key], { invalidateHeights: true }); |
| 850 | } |
| 851 | |
| 852 | /** |
| 853 | * Invalidate height measurements for specific indices |
nothing calls this directly
no test coverage detected