UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

27 lines 711 B
import * as React from 'react'; import { ITermSetProps, ITermSetState } from './IPropertyFieldTermPickerHost'; /** * Term set component */ export default class TermSet extends React.Component<ITermSetProps, ITermSetState> { private _anchorName; constructor(props: ITermSetProps); /** * Autoload the terms of the term set */ private _autoLoadTerms; /** * Handle the click event: collapse or expand */ private _handleClick; /** * Load the terms for the current term set */ private _loadTerms; /** * The term set selection changed */ private termSetSelectionChange; render(): JSX.Element; } //# sourceMappingURL=TermSet.d.ts.map