Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Upgrade dev dependencies #12156

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,8 @@ module.exports = {
'flowtype/use-flow-type': 'error',

'prettier/prettier': 'error',

'jsx-a11y/label-has-for': 'off',
'jsx-a11y/label-has-associated-control': 'error',
},
};
2 changes: 1 addition & 1 deletion BACKERS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sponsors & Backers

<p class="description">Support Material-UI’s development.</p>
<p class="description">Support Material-UI’s development through donations.</p>

Material-UI is an MIT-licensed open source project. It's an independent project with ongoing development made possible thanks to the support of these awesome backers. If you'd like to join them, please consider:
- [Become a backer or sponsor on Patreon](https://www.patreon.com/oliviertassinari).
Expand Down
4 changes: 2 additions & 2 deletions docs/notifications.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"id": 14,
"text": "Material-UI v1 is out 🎉. <a style=\"color: white;\" target=\"_blank\" href=\"https://medium.com/material-ui/material-ui-v1-is-out-e73ce13463eb\">the blog post</a>."
"id": 15,
"text": "Material-UI v1.4.0 is out 🎉. <a style=\"color: white;\" target=\"_blank\" href=\"https://github.com/mui-org/material-ui/releases/tag/v1.4.0\">the release note</a>."
}
]
2 changes: 1 addition & 1 deletion docs/src/modules/components/AppFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class AppFrame extends React.Component {
<Tooltip title="Edit docs colors" enterDelay={300}>
<IconButton
color="inherit"
aria-labelledby="appbar-color"
aria-label="Edit docs colors"
component={Link}
href="/style/color#color-tool"
>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/customization/themes/themes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Themes

<p class="description">Customize Material-UI with our theme.</p>
<p class="description">Customize Material-UI with our theme. You can change the colors, the typography and much more.</p>

The theme specifies the color of the components, darkness of the surfaces, level of shadow, appropriate opacity of ink elements, etc.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/demos/buttons/FloatingActionButtonZoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class FloatingActionButtonZoom extends React.Component {
in={this.state.value === index}
timeout={transitionDuration}
style={{
transitionDelay: this.state.value === index ? transitionDuration.exit : 0,
transitionDelay: `${this.state.value === index ? transitionDuration.exit : 0}ms`,
}}
unmountOnExit
>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/demos/tables/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ components: Table, TableBody, TableCell, TableFooter, TableHead, TablePagination

# Tables

<p class="description">Data tables display sets of data.</p>
<p class="description">Data tables display sets of data. They can be fully customized.</p>

[Data tables](https://material.io/design/components/data-tables.html) display information in a way that’s easy to scan, so that users can look for patterns and insights. They can be embedded in primary content, such as cards.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/migration-v0x/migration-v0x.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Migration From v0.x

<p class="description">Yeah, v1 has been released!</p>
<p class="description">Yeah, v1 has been released! Take advantage of 2 years worth of effort.</p>

## FAQ

Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/testing/testing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Testing

<p class="description">Write tests to prevent regressions.</p>
<p class="description">Write tests to prevent regressions and write better code.</p>

## Internal

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-material-ui": "file:packages/eslint-plugin-material-ui",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.3.1",
Expand Down Expand Up @@ -148,7 +148,7 @@
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-size-snapshot": "^0.5.1",
"rollup-plugin-size-snapshot": "^0.6.0",
"rollup-plugin-uglify": "^4.0.0",
"sinon": "^6.0.0",
"size-limit": "^0.18.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/material-ui/.size-snapshot.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"build/umd/material-ui.production.min.js": {
"bundled": 806207,
"minified": 314300,
"gzipped": 85108
"bundled": 806478,
"minified": 314445,
"gzipped": 85106
}
}
2 changes: 1 addition & 1 deletion pages/_document.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class MyDocument extends Document {
is actually sent to the server.
This includes DNS lookups, TLS negotiations, TCP handshakes.
*/}
<link href="https://fonts.gstatic.com" rel="preconnect" crossOrigin="true" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossOrigin="anonymous" />
<style id="insertion-point-jss" />
</Head>
<body>
Expand Down
Loading