(updates: Partial<AppState>)
| 64 | } |
| 65 | |
| 66 | private updateState(updates: Partial<AppState>): void { |
| 67 | this.state = { ...this.state, ...updates }; |
| 68 | this.notifyStateChange(); |
| 69 | } |
| 70 | |
| 71 | updateLayout(layout: Partial<LayoutState>): void { |
| 72 | const hasLayoutChange = Object.entries(layout).some(([key, value]) => ( |
no test coverage detected