* Save UI state for a specific element
(key: string, element: HTMLElement)
| 291 | * Save UI state for a specific element |
| 292 | */ |
| 293 | saveState(key: string, element: HTMLElement): void { |
| 294 | const reconciler = new DOMReconciler(); |
| 295 | this.stateMap.set(key, reconciler.preserveState(element)); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Restore UI state for a specific element |
nothing calls this directly
no test coverage detected