Skip to content

Commit

Permalink
[TablePagination] Remove select icon override
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jan 27, 2020
1 parent 143e908 commit a477ec8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Chip/Chip.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const styles = theme => {
backgroundColor: fade(theme.palette.secondary.main, theme.palette.action.hoverOpacity),
},
},
// TODO remove in V5
// TODO v5: remove
/* Styles applied to the `avatar` element. */
avatar: {},
/* Styles applied to the `avatar` element if `size="small"`. */
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/MenuItem/MenuItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const styles = theme => ({
minHeight: 'auto',
},
},
// TODO To remove in v5?
// TODO v5: remove
/* Styles applied to the root element if `disableGutters={false}`. */
gutters: {},
/* Styles applied to the root element if `selected={true}`. */
Expand Down
4 changes: 2 additions & 2 deletions packages/material-ui/src/Slider/Slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export const styles = theme => ({
},
/* Styles applied to the root element if `color="primary"`. */
colorPrimary: {
// TODO v5, move the style here
// TODO v5: move the style here
},
/* Styles applied to the root element if `color="secondary"`. */
colorSecondary: {
Expand Down Expand Up @@ -277,7 +277,7 @@ export const styles = theme => ({
},
/* Styles applied to the thumb element if `color="primary"`. */
thumbColorPrimary: {
// TODO v5, move the style here
// TODO v5: move the style here
},
/* Styles applied to the thumb element if `color="secondary"`. */
thumbColorSecondary: {
Expand Down
5 changes: 2 additions & 3 deletions packages/material-ui/src/TablePagination/TablePagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,9 @@ export const styles = theme => ({
textAlign: 'right',
textAlignLast: 'right', // Align <select> on Chrome.
},
// TODO v5: remove
/* Styles applied to the Select component `icon` class. */
selectIcon: {
top: 1,
},
selectIcon: {},
/* Styles applied to the `InputBase` component. */
input: {
color: 'inherit',
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/styles/createTypography.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function createTypography(palette, typography) {
{
htmlFontSize,
pxToRem,
round, // TODO To remove in v5?
round, // TODO v5: remove
fontFamily,
fontSize,
fontWeightLight,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import useMediaQuery from './useMediaQuery';

// TODO to deprecate in v4.x and remove in v5
// TODO v5: to deprecate in v4.x and remove in v5
export default function useMediaQueryTheme(...args) {
return useMediaQuery(...args);
}
2 changes: 1 addition & 1 deletion packages/material-ui/src/utils/setRef.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// TODO: Make it private only in v5
// TODO v5: make it private
export default function setRef(ref, value) {
if (typeof ref === 'function') {
ref(value);
Expand Down

0 comments on commit a477ec8

Please sign in to comment.