semantic-ui-react-lineinput
Line input control with validation support for Semantic UI React.
Prerequisites
"react": "^16.0.0",
"react-dom": "^16.0.0",
"semantic-ui-react": "^0.87.0"
Installation
npm install --save semantic-ui-react-lineinput
Demo
LineInput demo
Example usage
LineInput with predefined validations
LineInput with regular expression validation
LineInput with validation function
LineInput with list of allowed values validation (case sensitive)
More examples can be found in demo/demo.tsx
file.
Mandatory properties
value: string,
onValueChange: (newValue: string) => void,
Optional properties
property | description |
---|---|
allowEmptyValue | Specifies if empty value for input is allowed |
className | class names for outer div |
countryCode | Default country code ISO 3166-1 Alpha-2 code for phone number validation, if not supplied, browser's country code is used |
creditCardNumber | Credit card number for CVC validation |
disabled | Specified if input is enabled or disabled |
errorText | Text shown if validation fails |
errorTextPosition | Position where error text is shown |
focus | Input has initial focus style |
icon | Name of Semantic UI icon to be shown in input, is overridden by validationErrorIcon or validationSuccessIcon, has no effect for validation type 'creditCardNumber |
iconColor | Color for icon (red, orange, yellow, olive, green, teal, blue, violet, purple, pink, brown, grey, black |
iconPosition | Position where the icon is shown |
maxLength | Maximum number of characters allowed for input control value |
maxValue | Maximum allowed value when validation is 'number' or 'integer' |
minLength | Minimum number of characters needed for input control value |
minValue | Minimum allowed value when validation is 'number' or 'interger' |
placeholder | Placeholder value for input control |
size | Size of control |
type | HTML input type, if undefined, sets type automatically according to validation or otherwise 'text' |
validation | Validation keyword, a regular expression or a validation function |
validationErrorIcon | Semantic UI icon name to be shown if validation fails, overrides icon set by icon prop, has no effect for validation type 'creditCardNumber' |
validationSuccessIcon | Semantic UI icon name to be shown if validation succeeds, overrides icon set by icon prop, has no effect for validation type 'creditCardNumber' |
Optional property types
Default values for optional properties
Styling example
styles.css
Applying CSS using className
Credit card validations
Supported cards
- American Express
- Dankort
- Diners Club
- Discover
- JCB
- Laser
- Maestro
- MasterCard
- UnionPay
- Visa
- Visa Electron
Credit card number must pass Luhn check
Credit card expiration is supported in format 'MM / YY'
Credit card verification code (CVC) can validated with two options
- Without credit card number: it must be 3-4 digits
- With credit card number: it must be 3-4 digits depending on the supplied credit card type
License
MIT License