feat(forms): add example selects with valid styling (#286)

Add another card to the form inputs view displaying selects (single and multiple). Fix options styling.

Related to issue #282
This commit is contained in:
Grzegorz Rozdzialik 2016-10-04 11:45:36 +02:00 committed by Dmitry Nehaychik
parent 40aa2ed0ae
commit fd09e652c8
6 changed files with 45 additions and 0 deletions

View file

@ -15,6 +15,7 @@ import { ValidationInputs } from './components/inputs/components/validationInput
import { GroupInputs } from './components/inputs/components/groupInputs';
import { CheckboxInputs } from './components/inputs/components/checkboxInputs';
import { Rating } from './components/inputs/components/ratinginputs';
import { SelectInputs } from './components/inputs/components/selectInputs';
import { InlineForm } from './components/layouts/components/inlineForm';
import { BlockForm } from './components/layouts/components/blockForm';
@ -39,6 +40,7 @@ import { WithoutLabelsForm } from './components/layouts/components/withoutLabels
GroupInputs,
CheckboxInputs,
Rating,
SelectInputs,
InlineForm,
BlockForm,
HorizontalForm,