@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
29 lines • 906 B
TypeScript
import { IPropertyPaneCustomFieldProps } from '@microsoft/sp-property-pane';
import { type MarkdownOptions } from 'markdown-to-jsx';
export interface IPropertyPaneMarkdownContentProps {
/**
* Property field label displayed on top
*/
label?: string;
/**
* Optional CSS style to apply to markdown
*/
className?: string;
/**
* An UNIQUE key indicates the identity of this control
*/
key: string;
/**
* The markdown text you wish to display
*/
markdown: string;
/**
* Allows you to override the markdown behavior,
* such as overriding CSS styles and elements for
* markdown elements.
*/
options?: MarkdownOptions;
}
export interface IPropertyPaneMarkdownContentPropsInternal extends IPropertyPaneMarkdownContentProps, IPropertyPaneCustomFieldProps {
}
//# sourceMappingURL=IPropertyPaneMarkdownContent.d.ts.map