Preparing search index...

    Interface IVirtualNodesState<NodeModel, T, K>

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

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

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