Skip to content

Commit a477ec8

Browse files
[TablePagination] Remove select icon override
1 parent 143e908 commit a477ec8

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

packages/material-ui/src/Chip/Chip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export const styles = theme => {
167167
backgroundColor: fade(theme.palette.secondary.main, theme.palette.action.hoverOpacity),
168168
},
169169
},
170-
// TODO remove in V5
170+
// TODO v5: remove
171171
/* Styles applied to the `avatar` element. */
172172
avatar: {},
173173
/* Styles applied to the `avatar` element if `size="small"`. */

packages/material-ui/src/MenuItem/MenuItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const styles = theme => ({
1919
minHeight: 'auto',
2020
},
2121
},
22-
// TODO To remove in v5?
22+
// TODO v5: remove
2323
/* Styles applied to the root element if `disableGutters={false}`. */
2424
gutters: {},
2525
/* Styles applied to the root element if `selected={true}`. */

packages/material-ui/src/Slider/Slider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export const styles = theme => ({
159159
},
160160
/* Styles applied to the root element if `color="primary"`. */
161161
colorPrimary: {
162-
// TODO v5, move the style here
162+
// TODO v5: move the style here
163163
},
164164
/* Styles applied to the root element if `color="secondary"`. */
165165
colorSecondary: {
@@ -277,7 +277,7 @@ export const styles = theme => ({
277277
},
278278
/* Styles applied to the thumb element if `color="primary"`. */
279279
thumbColorPrimary: {
280-
// TODO v5, move the style here
280+
// TODO v5: move the style here
281281
},
282282
/* Styles applied to the thumb element if `color="secondary"`. */
283283
thumbColorSecondary: {

packages/material-ui/src/TablePagination/TablePagination.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,9 @@ export const styles = theme => ({
4848
textAlign: 'right',
4949
textAlignLast: 'right', // Align <select> on Chrome.
5050
},
51+
// TODO v5: remove
5152
/* Styles applied to the Select component `icon` class. */
52-
selectIcon: {
53-
top: 1,
54-
},
53+
selectIcon: {},
5554
/* Styles applied to the `InputBase` component. */
5655
input: {
5756
color: 'inherit',

packages/material-ui/src/styles/createTypography.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default function createTypography(palette, typography) {
7878
{
7979
htmlFontSize,
8080
pxToRem,
81-
round, // TODO To remove in v5?
81+
round, // TODO v5: remove
8282
fontFamily,
8383
fontSize,
8484
fontWeightLight,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import useMediaQuery from './useMediaQuery';
22

3-
// TODO to deprecate in v4.x and remove in v5
3+
// TODO v5: to deprecate in v4.x and remove in v5
44
export default function useMediaQueryTheme(...args) {
55
return useMediaQuery(...args);
66
}

packages/material-ui/src/utils/setRef.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// TODO: Make it private only in v5
1+
// TODO v5: make it private
22
export default function setRef(ref, value) {
33
if (typeof ref === 'function') {
44
ref(value);

0 commit comments

Comments
 (0)