@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
13 lines • 735 B
TypeScript
import { IPropertyPaneCustomFieldProps, IPropertyPaneTextFieldProps } from '@microsoft/sp-property-pane';
import { IPropertyFieldHeaderCalloutProps } from '../../common/propertyFieldHeader/IPropertyFieldHeader';
export interface IPropertyFieldTextWithCalloutPropsInternal extends IPropertyPaneCustomFieldProps, IPropertyPaneTextFieldProps, IPropertyFieldHeaderCalloutProps {
onChanged?: (newValue: any) => void;
}
/**
* Public properties of PropertyFieldTextWithCallout custom field
*/
export interface IPropertyFieldTextWithCalloutProps extends IPropertyPaneTextFieldProps, IPropertyFieldHeaderCalloutProps {
key: string;
onChanged?: (newValue: any) => void;
}
//# sourceMappingURL=IPropertyFieldTextWithCallout.d.ts.map