All files index.tsx

100% Statements 43/43
100% Branches 0/0
7.69% Functions 3/39
100% Lines 13/13

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45          1x 1x 1x 1x 1x 1x                               1x 1x 1x 1x 1x                 4x     7x    
/* eslint-disable import/export */
 
// Everything related to form in react-icecream, while not changed by react-icecream-form
// Re-exporting them makes react-icecream-form looks the same as react-icecream
 
export {
  useFormFooterCtx, normalizeFormLayout, FormFooter, FormTip,
  InputGroup, InputGroupItem,
  getTextCount,
  SelectOption, SelectOptionGroup,
  CheckAll
} from 'react-icecream'
 
export {
  FormLabelAlign, FormLabelColor, FormLabelVerticalAlign, FormLabelOptions, FormLayout, FormLayoutType,
  FormValidateStatus, FormValidateMessage, FormFooterProps, FormTipProps,
  InputGroupProps, InputGroupItemProps,
  TextAreaAutoSizeType,
  SelectValue, SelectOptionGroupStyle, SelectFetchFn,
  SelectOptionInfo, SelectOptionGroupInfo, SelectOptionItem, SelectOptionItems,
  SelectOptionProps, SelectOptionGroupProps,
  CheckboxValue,
  RadioValue,
  DateType
} from 'react-icecream'
 
export {
  TextInput, PasswordInput, NumberInput, TextArea, DatePicker, RangeDatePicker,
  Select, MultiSelect, CheckboxGroup, Checkbox, RadioGroup, Radio, Switch,
  Cascader, MultiCascader, AutoComplete, TagsInput, Slider, Upload, DragUpload,
  bindInput, bindCheckedInput
} from './Input'
 
export type {
  TextInputProps, PasswordInputProps, NumberInputProps, TextAreaProps, DatePickerProps, RangeDatePickerProps,
  SelectProps, MultiSelectProps, CheckboxProps, CheckboxGroupProps, RadioProps, RadioGroupProps, SwitchProps,
  CascaderProps, MultiCascaderProps, AutoCompleteProps, TagsInputProps, SliderProps, UploadProps, DragUploadProps
} from './Input'
 
export { default as Form, ModalForm, DrawerForm, useFormstateX } from './Form'
export type { Props as FormProps, ModalFormProps, DrawerFormProps } from './Form'
 
export { default as FormItem, bindFormItem, InputWrapper } from './FormItem'
export type { Props as FormItemProps } from './FormItem'