id | title | sidebar_label | custom_edit_url | description |
---|---|---|---|---|
tree-view |
fast-tree-view |
tree-view |
fast-tree-view is a web component implementation of a tree-item. |
As defined by the W3C:
A tree view widget presents a hierarchical list. Any item in the hierarchy may have child items, and items that have children may be expanded or collapsed to show or hide the children. For example, in a file system navigator that uses a tree view to display folders and files, an item representing a folder can be expanded to reveal the contents of the folder, which may be files, folders, or both.
import {
provideFASTDesignSystem,
fastTreeItem,
fastTreeView
} from "@microsoft/fast-components";
provideFASTDesignSystem()
.register(
fastTreeItem(),
fastTreeView()
);
import {
provideFASTDesignSystem,
fastTreeItem,
fastTreeView
} from "@microsoft/fast-components";
provideFASTDesignSystem()
.register(
fastTreeItem({
expandCollapseGlyph: `...your expand/collapse glyph`
}),
fastTreeView()
);
<fast-tree-view>
Root
<fast-tree-item>
Item 1
<fast-tree-item>Sub-item 1</fast-tree-item>
<fast-tree-item>Sub-item 2</fast-tree-item>
</fast-tree-item>
<fast-tree-item>Item 2</fast-tree-item>
</fast-tree-view>
import {
treeItemTemplate as template,
TreeItem,
TreeItemOptions,
} from "@microsoft/fast-foundation";
import { treeItemStyles as styles } from "./my-tree-item.styles";
export const myTreeItem = TreeItem.compose<TreeItemOptions>({
baseName: "tree-item",
template,
styles,
expandCollapseGlyph: `...default expand/collapse glyph`,
});
import { treeViewTemplate as template, TreeView } from "@microsoft/fast-foundation";
import { treeViewStyles as styles } from "./tree-view.styles";
export const myTreeView = TreeView.compose({
baseName: "tree-view",
template,
styles,
});
Name | Module | Package |
---|---|---|
FASTElement |
@microsoft/fast-element |
Name | Privacy | Type | Default | Description | Inherited From |
---|---|---|---|---|---|
currentSelected |
public | HTMLElement or FASTTreeItem or null |
The currently selected tree item |
Name | Privacy | Description | Parameters | Return | Inherited From |
---|---|---|---|---|---|
slottedTreeItemsChanged |
protected | void |
Name | Description |
---|---|
The default slot for tree items |