@talend/react-forms
Version:
React forms library based on json schema form.
31 lines (30 loc) • 932 B
TypeScript
import FormSkeleton from './FormSkeleton';
import FormSwitcher from './FormSwitcher';
import rhf from './rhf';
import UIForm, { Code } from './UIForm';
import validate from './validate';
declare const constants: {
I18N_DOMAIN_FORMS: string;
};
declare const utils: {
validate: typeof validate;
};
export { FormSwitcher, constants, utils, FormSkeleton, rhf, UIForm };
export type { DisplayMode, UiSchema, FormDefinition } from './types/index';
declare const _default: typeof FormSwitcher & {
constants: {
I18N_DOMAIN_FORMS: string;
};
utils: {
validate: typeof validate;
};
Skeleton: typeof FormSkeleton;
rhf: {
Input: typeof import("./rhf/fields/Input").default;
Select: typeof import("./rhf/fields/Select").default;
TextArea: typeof import("./rhf/fields/TextArea").default;
};
UIForm: typeof UIForm;
Code: typeof Code;
};
export default _default;