UNPKG

@nish1896/rhf-mui-components

Version:

A suite of 20+ reusable Material UI components for React Hook Form to minimize your time and effort in creating and styling forms

19 lines (18 loc) 1.88 kB
import RHFAutocomplete, { type RHFAutocompleteProps } from './autocomplete'; import RHFCheckbox, { type RHFCheckboxProps } from './checkbox'; import RHFCheckboxGroup, { type RHFCheckboxGroupProps } from './checkbox-group'; import RHFCountrySelect, { countryList, type RHFCountrySelectProps, type CountryISO, type CountryDetails } from './country-select'; import RHFFileUploader, { type RHFFileUploaderProps, type FileUploadError } from './file-uploader'; import RHFMultiAutocomplete, { type RHFMultiAutocompleteProps } from './multi-autocomplete'; import RHFNativeSelect, { type RHFNativeSelectProps } from './native-select'; import RHFNumberInput, { type RHFNumberInputProps } from './number-input'; import RHFPasswordInput, { type RHFPasswordInputProps } from './password-input'; import RHFRadioGroup, { type RHFRadioGroupProps } from './radio-group'; import RHFRating, { type RHFRatingProps } from './rating'; import RHFSelect, { type RHFSelectProps } from './select'; import RHFSlider, { type RHFSliderProps } from './slider'; import RHFSwitch, { type RHFSwitchProps } from './switch'; import RHFTagsInput, { type RHFTagsInputProps } from './tags-input'; import RHFTextField, { type RHFTextFieldProps } from './textfield'; export { RHFAutocomplete, RHFCheckbox, RHFCheckboxGroup, RHFCountrySelect, RHFFileUploader, RHFMultiAutocomplete, RHFNativeSelect, RHFNumberInput, RHFPasswordInput, RHFRadioGroup, RHFRating, RHFSelect, RHFSlider, RHFSwitch, RHFTextField, RHFTagsInput, countryList }; export type { RHFAutocompleteProps, RHFCheckboxProps, RHFCheckboxGroupProps, RHFCountrySelectProps, RHFFileUploaderProps, FileUploadError, RHFMultiAutocompleteProps, RHFNativeSelectProps, RHFNumberInputProps, RHFPasswordInputProps, RHFRadioGroupProps, RHFRatingProps, RHFSelectProps, RHFSliderProps, RHFSwitchProps, RHFTagsInputProps, RHFTextFieldProps, CountryISO, CountryDetails, };