UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

17 lines 627 B
import { IPropertyFieldViewPickerPropsInternal } from './IPropertyFieldViewPicker'; import { IDropdownOption } from '@fluentui/react/lib/Dropdown'; /** * PropertyFieldViewPickerHost properties interface */ export interface IPropertyFieldViewPickerHostProps extends IPropertyFieldViewPickerPropsInternal { onChange: (targetProperty?: string, newValue?: any) => void; } /** * PropertyFieldViewPickerHost state interface */ export interface IPropertyFieldViewPickerHostState { results: IDropdownOption[]; selectedKey?: string; errorMessage?: string; } //# sourceMappingURL=IPropertyFieldViewPickerHost.d.ts.map