UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

16 lines • 821 B
import type { MinimalTreeViewState } from "../../MinimalTreeViewStore/index.mjs"; import type { TreeViewItemId } from "../../../models/index.mjs"; declare const treeIdSelector: (state: MinimalTreeViewState<any, any>) => string | undefined; export declare const idSelectors: { /** * Get the id attribute of the tree view. */ treeId: typeof treeIdSelector; /** * Generate the id attribute (i.e.: the `id` attribute passed to the DOM element) of a Tree Item. * If the user explicitly defined an id attribute, it will be returned. * Otherwise, the method creates a unique id for the item based on the Tree View id attribute and the item `itemId` */ treeItemIdAttribute: (state: MinimalTreeViewState<any, any>, itemId: TreeViewItemId, providedIdAttribute: string | undefined) => string; }; export {};