Skip to content

Commit 693b86e

Browse files
[core] Batch changes (#18629)
1 parent 0cdffb9 commit 693b86e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+155
-189
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ module.exports = {
124124
rules: {
125125
'material-ui/no-hardcoded-labels': [
126126
'error',
127-
{ allow: ['Material-UI', 'Twitter', 'GitHub', 'Spectrum', 'StackOverflow'] },
127+
{ allow: ['Material-UI', 'Twitter', 'GitHub', 'StackOverflow'] },
128128
],
129129
},
130130
},

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@ Here are some highlights ✨:
5959
- [core] Fix dependabot not ignoring babel-plugin-preval (#18553) @eps1lon
6060
- [core] Ignore url-loader >= 3 updates (#18639) @eps1lon
6161

62+
## 3.9.4
63+
###### *Nov 28, 2019*
64+
65+
### `@material-ui/[email protected]`
66+
67+
- [Portal] Fix circular PortalProps Types (#18602)
68+
69+
Fix TypeScript 3.7 support
70+
6271
## 4.7.0
6372
###### *Nov 22, 2019*
6473

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ via [OpenCollective](https://opencollective.com/material-ui)
6666

6767
<p style="display: flex; justify-content: center; flex-wrap: wrap;">
6868
<a data-ga-event-category="sponsors" data-ga-event-action="logo" data-ga-event-label="callemall" href="https://www.call-em-all.com" rel="noopener sponsored" target="_blank" style="margin-right: 16px;"><img src="https://images.opencollective.com/proxy/images?src=https%3A%2F%2Fopencollective-production.s3-us-west-1.amazonaws.com%2Ff4053300-e0ea-11e7-acf0-0fa7c0509f4e.png&height=100" alt="callemall" title="The easy way to message your group" width="100" loading="lazy"></a>
69-
<a data-ga-event-category="sponsors" data-ga-event-action="logo" data-ga-event-label="callemall" href="https://www.crosswordsolver.com" rel="noopener sponsored" target="_blank" style="margin-right: 16px;"><img src="https://images.opencollective.com/crosswordsolver/avatar.png" alt="crosswordsolver" title="Crossword Puzzle Solver" width="100" loading="lazy"></a>
7069
</p>
7170

7271
Gold Sponsors are those who have pledged $500/month and more to Material-UI.

docs/src/modules/components/HomeFooter.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,6 @@ function HomeFooter(props) {
9595
{t('pages./discover-more/team')}
9696
</Link>
9797
</li>
98-
<li>
99-
<Link color="inherit" variant="body2" href="https://spectrum.chat/material-ui">
100-
Spectrum
101-
</Link>
102-
</li>
10398
</ul>
10499
</Grid>
105100
<Grid item xs={6} md={3} className={classes.list}>

docs/src/modules/components/HomeQuickWord.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ const backers = [
2323
alt: 'callemall',
2424
title: 'Call-Em-All - The easy way to message your group',
2525
},
26-
{
27-
href: 'https://www.crosswordsolver.com',
28-
alt: 'crosswordsolver',
29-
title: 'Crossword Puzzle Solver',
30-
},
3126
];
3227

3328
const styles = theme => ({

docs/src/modules/components/backers.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ via [OpenCollective](https://opencollective.com/material-ui)
2222

2323
<p style="display: flex; justify-content: center; flex-wrap: wrap;">
2424
<a data-ga-event-category="sponsors" data-ga-event-action="logo" data-ga-event-label="callemall" href="https://www.call-em-all.com" rel="noopener sponsored" target="_blank" style="margin-right: 16px;"><img src="https://images.opencollective.com/proxy/images?src=https%3A%2F%2Fopencollective-production.s3-us-west-1.amazonaws.com%2Ff4053300-e0ea-11e7-acf0-0fa7c0509f4e.png&height=100" alt="callemall" title="The easy way to message your group" width="100" loading="lazy"></a>
25-
<a data-ga-event-category="sponsors" data-ga-event-action="logo" data-ga-event-label="callemall" href="https://www.crosswordsolver.com" rel="noopener sponsored" target="_blank" style="margin-right: 16px;"><img src="https://images.opencollective.com/crosswordsolver/avatar.png" alt="crosswordsolver" title="Crossword Puzzle Solver" width="100" loading="lazy"></a>
2625
</p>
2726

2827
Gold Sponsors are those who have pledged $500/month and more to Material-UI.

docs/src/pages.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ const pages = [
153153
children: [
154154
{
155155
pathname: '/customization',
156-
subheader: '/customization/theming',
156+
subheader: '/customization/theme',
157157
children: [
158-
{ pathname: '/customization/theming', title: 'Overview' },
158+
{ pathname: '/customization/theming' },
159159
{ pathname: '/customization/palette' },
160160
{ pathname: '/customization/typography' },
161161
{ pathname: '/customization/spacing' },

docs/src/pages/components/avatars/avatars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Avatar React component
33
components: Avatar
44
---
55

6-
# Avatars
6+
# Avatar
77

88
<p class="description">Avatars are found throughout material design with uses in everything from tables to dialog menus.</p>
99

docs/src/pages/components/badges/badges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Badge React component
33
components: Badge
44
---
55

6-
# Badges
6+
# Badge
77

88
<p class="description">Badge generates a small badge to the top-right of its child(ren).</p>
99

docs/src/pages/components/buttons/FloatingActionButtonZoom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function TabPanel(props) {
2727
aria-labelledby={`action-tab-${index}`}
2828
{...other}
2929
>
30-
<Box p={3}>{children}</Box>
30+
{value === index && <Box p={3}>{children}</Box>}
3131
</Typography>
3232
);
3333
}

0 commit comments

Comments
 (0)