InputToRange - a react component that generates range of numbers from an input.
## Properties and Events
### labels
>
`array of number or strings like discribed above`This is useful if you want to start with default values
### hideLabels
>
`boolean`Show/Hide the built in labels
### ignoreDefaultStyles
>
`boolean`If set on true no default styles will be applied
### onChange
>
`function`When you create a new label it will call this function with a property of this type:
{ labels: ['100', '101-103'], ranges: [[100], [101,102,103]] }
## @TODO -> props that need implementation
`allowIntersection` // don't allow duplicates
`onlyPossitiveNumbers` // allow only positive numbers
`onlyNegativeNumbers` // allow only positive numbers
`keys` // override the existing keys SPACE and ENTER