Datalayer VS Code Extension - v0.0.6
    Preparing search index...

    Tree provider for document outline view. Manages outline data from multiple documents and handles navigation.

    Implements

    Index

    Constructors

    Properties

    _onDidChangeTreeData: EventEmitter<void | OutlineTreeItem> = ...
    activeDocumentUri: string
    activeItemId: string
    onDidChangeTreeData: Event<void | OutlineTreeItem> = ...

    An optional event to signal that an element or root has changed. This will trigger the view to update the changed element/root and its children recursively (if shown). To signal that root has changed, do not pass any argument or pass undefined or null.

    outlineData: Map<string, OutlineItem[]> = ...
    webviewPanels: Map<string, WebviewPanel> = ...

    Methods

    • Register a webview panel for a document. Required for navigation functionality.

      Parameters

      • documentUri: string
      • panel: WebviewPanel

      Returns void

    • Update outline for a document. Called when webview sends outline-update message.

      Parameters

      • documentUri: string
      • items: OutlineItem[]
      • OptionalactiveItemId: string

      Returns void