redux-form
Version:
A higher order component decorator for forms using Redux and React
72 lines (71 loc) • 4.12 kB
JavaScript
import actions from './actions';
import * as _actionTypes from './actionTypes';
export { ReduxFormContext } from './ReduxFormContext';
export { default as defaultShouldAsyncValidate } from './defaultShouldAsyncValidate';
export { default as defaultShouldValidate } from './defaultShouldValidate';
export { default as defaultShouldError } from './defaultShouldError';
export { default as defaultShouldWarn } from './defaultShouldWarn';
export { default as Form } from './Form';
export { default as FormName } from './FormName';
export { default as FormSection } from './FormSection';
export { SubmissionError } from './SubmissionError'; // alias for propTypes
export { default as propTypes, fieldInputPropTypes, fieldMetaPropTypes, fieldPropTypes, fieldArrayFieldsPropTypes, fieldArrayMetaPropTypes, fieldArrayPropTypes, formPropTypes } from './propTypes';
export { default as Field } from './immutable/Field';
export { default as Fields } from './immutable/Fields';
export { default as FieldArray } from './immutable/FieldArray';
export { default as formValueSelector } from './immutable/formValueSelector';
export { default as formValues } from './immutable/formValues';
export { default as getFormError } from './immutable/getFormError';
export { default as getFormNames } from './immutable/getFormNames';
export { default as getFormValues } from './immutable/getFormValues';
export { default as getFormInitialValues } from './immutable/getFormInitialValues';
export { default as getFormSyncErrors } from './immutable/getFormSyncErrors';
export { default as getFormMeta } from './immutable/getFormMeta';
export { default as getFormAsyncErrors } from './immutable/getFormAsyncErrors';
export { default as getFormSyncWarnings } from './immutable/getFormSyncWarnings';
export { default as getFormSubmitErrors } from './immutable/getFormSubmitErrors';
export { default as isAsyncValidating } from './immutable/isAsyncValidating';
export { default as isDirty } from './immutable/isDirty';
export { default as isInvalid } from './immutable/isInvalid';
export { default as isPristine } from './immutable/isPristine';
export { default as isValid } from './immutable/isValid';
export { default as isSubmitting } from './immutable/isSubmitting';
export { default as hasSubmitSucceeded } from './immutable/hasSubmitSucceeded';
export { default as hasSubmitFailed } from './immutable/hasSubmitFailed';
export { default as reduxForm } from './immutable/reduxForm';
export { default as reducer } from './immutable/reducer';
export { default as values } from './immutable/values';
export var actionTypes = _actionTypes;
export var arrayInsert = actions.arrayInsert;
export var arrayMove = actions.arrayMove;
export var arrayPop = actions.arrayPop;
export var arrayPush = actions.arrayPush;
export var arrayRemove = actions.arrayRemove;
export var arrayRemoveAll = actions.arrayRemoveAll;
export var arrayShift = actions.arrayShift;
export var arraySplice = actions.arraySplice;
export var arraySwap = actions.arraySwap;
export var arrayUnshift = actions.arrayUnshift;
export var autofill = actions.autofill;
export var blur = actions.blur;
export var change = actions.change;
export var clearSubmitErrors = actions.clearSubmitErrors;
export var clearFields = actions.clearFields;
export var destroy = actions.destroy;
export var focus = actions.focus;
export var initialize = actions.initialize;
export var registerField = actions.registerField;
export var reset = actions.reset;
export var resetSection = actions.resetSection;
export var setSubmitFailed = actions.setSubmitFailed;
export var setSubmitSucceeded = actions.setSubmitSucceeded;
export var startAsyncValidation = actions.startAsyncValidation;
export var startSubmit = actions.startSubmit;
export var stopAsyncValidation = actions.stopAsyncValidation;
export var stopSubmit = actions.stopSubmit;
export var submit = actions.submit;
export var touch = actions.touch;
export var unregisterField = actions.unregisterField;
export var untouch = actions.untouch;
export var updateSyncWarnings = actions.updateSyncWarnings;
export var updateSyncErrors = actions.updateSyncErrors;