@rjsf/core
Version:
A simple React component capable of building HTML forms out of a JSON schema.
21 lines (18 loc) • 731 B
text/typescript
import Form, { FormProps, FormState, IChangeEvent } from './components/Form';
import RichDescription, { RichDescriptionProps } from './components/RichDescription';
import RichHelp, { RichHelpProps } from './components/RichHelp';
import SchemaExamples, { SchemaExamplesProps } from './components/SchemaExamples';
import withTheme, { ThemeProps } from './withTheme';
import getDefaultRegistry from './getDefaultRegistry';
import getTestRegistry from './getTestRegistry';
export type {
FormProps,
FormState,
IChangeEvent,
ThemeProps,
RichDescriptionProps,
RichHelpProps,
SchemaExamplesProps,
};
export { withTheme, getDefaultRegistry, getTestRegistry, RichDescription, RichHelp, SchemaExamples };
export default Form;