Skip to content

Commit

Permalink
[typescript] Remove xxxClassName props (#10636) (#10644)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukePeavey authored and oliviertassinari committed Mar 14, 2018
1 parent e85b6c5 commit d1219fc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/ButtonBase/ButtonBase.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export interface ButtonBaseProps
component?: React.ReactType<ButtonBaseProps>;
disableRipple?: boolean;
focusRipple?: boolean;
keyboardFocusedClassName?: string;
onKeyboardFocus?: React.FocusEventHandler<any>;
TouchRippleProps?: Partial<TouchRippleProps>;
}
Expand Down
2 changes: 0 additions & 2 deletions src/Tabs/Tabs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ import { ButtonBaseProps, ButtonBaseClassKey } from '../ButtonBase/ButtonBase';

export interface TabsProps extends StandardProps<ButtonBaseProps, TabsClassKey, 'onChange'> {
action?: (actions: TabsActions) => void;
buttonClassName?: string;
centered?: boolean;
children?: React.ReactNode;
fullWidth?: boolean;
indicatorClassName?: string;
indicatorColor?: 'secondary' | 'primary' | string;
onChange?: (event: React.ChangeEvent<{}>, value: any) => void;
scrollable?: boolean;
Expand Down
2 changes: 0 additions & 2 deletions src/TextField/TextField.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@ export interface TextFieldProps
FormHelperTextProps?: Partial<FormHelperTextProps>;
fullWidth?: boolean;
helperText?: React.ReactNode;
helperTextClassName?: string;
id?: string;
InputLabelProps?: Partial<InputLabelProps>;
InputProps?: Partial<InputProps>;
inputProps?: InputProps['inputProps'];
inputRef?: React.Ref<any>;
label?: React.ReactNode;
labelClassName?: string;
margin?: PropTypes.Margin;
multiline?: boolean;
name?: string;
Expand Down
2 changes: 0 additions & 2 deletions src/internal/SwitchBase.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ import { IconButtonProps } from '../IconButton';
export interface SwitchBaseProps
extends StandardProps<IconButtonProps, SwitchBaseClassKey, 'onChange'> {
checked?: boolean | string;
checkedClassName?: string;
checkedIcon?: React.ReactNode;
defaultChecked?: boolean;
disabled?: boolean;
disabledClassName?: string;
disableRipple?: boolean;
icon?: React.ReactNode;
indeterminate?: boolean;
Expand Down

0 comments on commit d1219fc

Please sign in to comment.