mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 17:23:19 -05:00
Rework message panel (#10177)
* wip * fix compile * fix look * fix hygiene errors * add back functionality * fix some issues with accessibility * proper dispose template * handle state properly in message panel
This commit is contained in:
@@ -3,8 +3,15 @@
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
export interface IMessageTreeState {
|
||||
readonly focus: string[];
|
||||
readonly selection: string[];
|
||||
readonly expanded: string[];
|
||||
readonly scrollTop: number;
|
||||
}
|
||||
|
||||
export class MessagePanelState {
|
||||
public scrollPosition?: number;
|
||||
public viewState?: IMessageTreeState;
|
||||
|
||||
dispose() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user