mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
47 lines
846 B
TypeScript
47 lines
846 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export type InputType =
|
|
| 'text'
|
|
| 'email'
|
|
| 'select'
|
|
| 'file'
|
|
| 'radio'
|
|
| 'checkbox'
|
|
| 'textarea'
|
|
| 'button'
|
|
| 'reset'
|
|
| 'submit'
|
|
| 'date'
|
|
| 'datetime-local'
|
|
| 'hidden'
|
|
| 'image'
|
|
| 'month'
|
|
| 'number'
|
|
| 'range'
|
|
| 'search'
|
|
| 'tel'
|
|
| 'url'
|
|
| 'week'
|
|
| 'password'
|
|
| 'datetime'
|
|
| 'time'
|
|
| 'color';
|
|
|
|
export interface InputProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
[key: string]: any;
|
|
type?: InputType;
|
|
bsSize?: 'lg' | 'sm';
|
|
valid?: boolean;
|
|
invalid?: boolean;
|
|
tag?: React.ElementType;
|
|
innerRef?: React.Ref<HTMLInputElement | HTMLTextAreaElement>;
|
|
plaintext?: boolean;
|
|
addon?: boolean;
|
|
cssModule?: CSSModule;
|
|
}
|
|
|
|
declare class Input extends React.Component<InputProps> {}
|
|
export default Input;
|