@raona/components
Version:
React components used at Raona to work with SPFx
19 lines (18 loc) • 662 B
TypeScript
import * as React from 'react';
import { WrapperComponentProps } from './WrapperComponent';
export interface SPTaxonomyPickerProps extends WrapperComponentProps {
requiredMessage?: string;
requiredClassName?: string;
containerClassName?: string;
titleLabel?: string;
labelClassName?: string;
context: any;
onChange(e: any): void;
defaultValues: any;
label: string;
panelTitle: string;
termsetNameOrID: string;
allowMultipleSelections: boolean;
isTermSetSelectable: boolean;
}
export declare const SPTaxonomyPicker: (props: SPTaxonomyPickerProps) => React.ReactElement<SPTaxonomyPickerProps>;