Skip to content

Commit

Permalink
More tabIndex properties (#8936)
Browse files Browse the repository at this point in the history
* Update Checkbox.tsx

* Update Input.tsx

* Update index.tsx
  • Loading branch information
urakozz authored and afc163 committed Jan 11, 2018
1 parent 63c6202 commit 88e0c9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/checkbox/Checkbox.tsx
Expand Up @@ -16,6 +16,7 @@ export interface AbstractCheckboxProps {
onMouseEnter?: React.MouseEventHandler<any>;
onMouseLeave?: React.MouseEventHandler<any>;
value?: any;
tabIndex?: number;
name?: string;
children?: React.ReactNode;
}
Expand Down
1 change: 1 addition & 0 deletions components/input-number/index.tsx
Expand Up @@ -9,6 +9,7 @@ export interface InputNumberProps {
value?: number;
step?: number | string;
defaultValue?: number;
tabIndex?: number;
onKeyDown?: React.FormEventHandler<any>;
onChange?: (value: number | string | undefined) => void;
disabled?: boolean;
Expand Down
1 change: 1 addition & 0 deletions components/input/Input.tsx
Expand Up @@ -18,6 +18,7 @@ export interface AbstractInputProps {
className?: string;
defaultValue?: any;
value?: any;
tabIndex?: number;
style?: React.CSSProperties;
}

Expand Down

0 comments on commit 88e0c9b

Please sign in to comment.