sp-react-formfields
Version:
Collection of React controls used for rendering SharePoint fields in custom forms. Support new/edit/display rendering modes.
11 lines (10 loc) • 394 B
TypeScript
import * as React from 'react';
import { IListFormProps } from './interfaces';
export declare class ListForm extends React.Component<IListFormProps, IListFormProps> {
private localContext;
constructor(props: any);
render(): JSX.Element;
componentDidMount(): void;
private getButtonsByFormMode;
}
export declare const ListFormInternal: (props: any) => JSX.Element;