mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 20:53:24 +10:00
Use changed BirthdayInputField name instead of BirthdayInput
This commit is contained in:
parent
f8492c2f62
commit
b77d36ffb3
4 changed files with 5 additions and 6 deletions
|
|
@ -2,7 +2,7 @@
|
|||
import React from 'react';
|
||||
import { reduxForm } from 'redux-form';
|
||||
import * as validators from '../../util/validators';
|
||||
import { BirthdayInputField } from './BirthdayInput';
|
||||
import { BirthdayInputField } from './BirthdayInputField';
|
||||
|
||||
const formName = 'Styleguide.BirthdayInput.Form';
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import classNames from 'classnames';
|
|||
import { range } from 'lodash';
|
||||
import { Select, ValidationError } from '../../components';
|
||||
|
||||
import css from './BirthdayInput.css';
|
||||
import css from './BirthdayInputField.css';
|
||||
|
||||
// Since redux-form tracks the onBlur event for marking the field as
|
||||
// touched (which triggers possible error validation rendering), only
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import AddImages from './AddImages/AddImages';
|
||||
import AuthorInfo from './AuthorInfo/AuthorInfo';
|
||||
import Avatar from './Avatar/Avatar';
|
||||
import BirthdayInput, { BirthdayInputField } from './BirthdayInput/BirthdayInput';
|
||||
import { BirthdayInputField } from './BirthdayInputField/BirthdayInputField';
|
||||
import BookingInfo from './BookingInfo/BookingInfo';
|
||||
import Button, { InlineTextButton } from './Button/Button';
|
||||
import CloseIcon from './CloseIcon/CloseIcon';
|
||||
|
|
@ -51,7 +51,6 @@ export {
|
|||
AddImages,
|
||||
AuthorInfo,
|
||||
Avatar,
|
||||
BirthdayInput,
|
||||
BirthdayInputField,
|
||||
BookingInfo,
|
||||
Button,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// components
|
||||
import * as AddImages from './components/AddImages/AddImages.example';
|
||||
import * as BirthdayInput from './components/BirthdayInput/BirthdayInput.example';
|
||||
import * as BirthdayInputField from './components/BirthdayInputField/BirthdayInputField.example';
|
||||
import * as BookingInfo from './components/BookingInfo/BookingInfo.example';
|
||||
import * as Button from './components/Button/Button.example';
|
||||
import * as CurrencyInput from './components/CurrencyInput/CurrencyInput.example';
|
||||
|
|
@ -46,7 +46,7 @@ import * as Typography from './containers/StyleguidePage/Typography.example';
|
|||
|
||||
export {
|
||||
AddImages,
|
||||
BirthdayInput,
|
||||
BirthdayInputField,
|
||||
BookingDatesForm,
|
||||
BookingInfo,
|
||||
Button,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue