Preparing search index...

    Interface IVirtualTreeState<N, T, K>

    interface IVirtualTreeState<
        N extends ITreeNodeModel<T, K>,
        T,
        K extends NodeKeyType = NodeKeyType,
    > {
        childrenLoadedKeys: Set<K>;
        disabledCascadeNodes: Set<K>;
        disabledNodes: Set<K>;
        filteredExpandedKeys: Set<K>;
        filterFn?: (item: VirtualItem<N>) => boolean;
        firstRenderIndex: number;
        itemKeys: K[];
        itemsExpandedKeys: Set<K>;
        itemsMap: Map<K, VirtualItem<N>>;
        nodeChildren: Map<null | K, K[]>;
        nodeParents: Map<K, null | K>;
        nodesToDelete: Set<K>;
        nodesToDeleteCascade: Set<K>;
        scrollPosition: number;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    childrenLoadedKeys: Set<K>
    disabledCascadeNodes: Set<K>
    disabledNodes: Set<K>
    filteredExpandedKeys: Set<K>
    filterFn?: (item: VirtualItem<N>) => boolean
    firstRenderIndex: number
    itemKeys: K[]
    itemsExpandedKeys: Set<K>
    itemsMap: Map<K, VirtualItem<N>>
    nodeChildren: Map<null | K, K[]>
    nodeParents: Map<K, null | K>
    nodesToDelete: Set<K>
    nodesToDeleteCascade: Set<K>
    scrollPosition: number