fus-marcom / franciscan-react

A new website for Franciscan University of Steubenville built with ReactJS.
https://gcp.franciscan.university
MIT License
171 stars 79 forks source link

Update material-ui to the latest version πŸš€ #175

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

There have been updates to the material-ui monorepo:

These versions are not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

This monorepo update includes releases of one or more dependencies which all belong to the material-ui group definition.


Find out more about this release.

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.1.2
Sep 30, 2018

Big thanks to the 16 contributors who made this release possible!
It contains many bug fixes πŸ› and documentation improvements πŸ“.

@material-ui/core@v3.1.2

@material-ui/lab@v3.0.0-alpha.18

Breaking change

  • [Slider] Replace reversed with rtl support on horizontal sliders (#12972)

@material-ui/docs@v3.0.0-alpha.6

Docs

Core

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.2.0
Oct 8, 2018

Big thanks to the 18 contributors who made this release possible!

Here are some highlights ✨:

  • πŸ’… Update the Typography implementation to better follow the specification (#12916) @eps1lon.
  • πŸ“ Start translating the documentation in Chinese @mbrookes.
  • πŸ“ Fix many SEO issues of the docs.
  • And many more bug fixes πŸ› and documentation improvements.

@material-ui/core@v3.2.0

Deprecations

This is a backward compatible change.
You can opt-in the usage of the new Material Design typography specification.
To learn more about the upgrade path, follow https://material-ui.com/style/typography/#migration-to-typography-v2.

This change updates the variant wording to match the one used in the Material Design specification.

-<Button variant="flat" />
+<Button variant="text" />
-<Button variant="raised" />
+<Button variant="contained" />

You can suppress the warnings with the environment variable MUI_SUPPRESS_DEPRECATION_WARNINGS set to a truthy value.

Changes

@material-ui/lab@v3.0.0-alpha.19

  • [SpeedDial] Improve hover intent between Dial and Actions (#13018) @eps1lon
  • [Slider] Fix thumb outline not matching spec (#12967) @eps1lon
  • [SpeedDial] Fix navigation between SpeedDialActions (#12725) @eps1lon
  • [Slider] Lowest value for vertical should be at the bottom (#13090) @eps1lon

Docs

Core

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.2.1
Oct 14, 2018

Big thanks to the 19 contributors who made this release possible!

Here are some highlights ✨:

  • πŸ› A simpler Typography upgrade story
  • πŸš€ Work on the performance server-side (x10) (#13233, #13236)
  • And many more bug fixes and πŸ“ documentation improvements.

@material-ui/core@v3.2.1

@material-ui/lab@v3.0.0-alpha.20

Docs

Core

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.2.2
Oct 16, 2018

Big thanks to the 3 contributors who made this release possible!
This is a quick patch after important regressions.

@material-ui/core@v3.2.2

Core

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.3.0
Oct 21, 2018

Big thanks to the 26 contributors who made this release possible!

Here are some highlights ✨:

  • πŸ› Fix some important issues with the Modal (#13082, #13310) @J-Kallunki.
  • πŸ“ First translations of the documentation in Chinese (#13094) @mbrookes.
  • πŸ“¦ Make the Drawer demos usable outside of the box (#13314).
  • And many more bug fixes and documentation improvements.

@material-ui/core@v3.3.0

@material-ui/lab@v3.0.0-alpha.21

@material-ui/docs@v3.0.0-alpha.7

Docs

Core

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.3.2
Oct 27, 2018

Big thanks to the 17 contributors who made this release possible!

Here are some highlights ✨:

@material-ui/core@v3.3.2

@material-ui/lab@v3.0.0-alpha.22

  • [Slider] Improve performance of slider (#13325) @Pajn

Docs

Core

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 6 years ago

Update to these versions instead πŸš€

Release Notes for v3.4.0
Nov 5, 2018

Big thanks to the 16 contributors who made this release possible!

Here are some highlights ✨:

  • βš›οΈ Fix some React 16.6.0 warnings in StrictMode (#13498, #13477) @eps1lon.
  • πŸ’… Improve the customization of the outlined input (#13428) @oliviertassinari.
  • And many more bug fixes and documentation improvements.

@material-ui/core@v3.4.0

@material-ui/lab@v3.0.0-alpha.23

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.5.0
Nov 12, 2018

Big thanks to the 13 contributors who made this release possible!

Here are some highlights ✨:

  • Introduce a new @material-ui/styles package πŸ’… (#13503).

The Material-UI's styling solution has pretty much stayed the same for the last 12 months.
Some interesting CSS-in-JS libraries like styled-components, emotion or linaria have emerged.
This new package is a significant step forward. Some of the key features:

  • Supports 4 different APIs: hooks, styled-components, higher-order components and render props.
  • Allow accessing the component's props from within the style object.
  • Replace the usage of the old React APIs with the new ones.
  • 15.0 KB gzipped.

Here is an example: https://codesandbox.io/s/vjzn5z4k77.

import Button from '@material-ui/core/Button';
import React from 'react';
import { makeStyles } from '@material-ui/styles';

// Like https://github.com/brunobertolini/styled-by
const styledBy = (property, mapping) => props => mapping[props[property]];

const useStyles = makeStyles({
  root: {
    background: styledBy('color', {
      red: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
      blue: 'linear-gradient(45deg, #2196F3 30%, #21CBF3 90%)',
    }),
    border: 0,
    borderRadius: 3,
    boxShadow: styledBy('color', {
      red: '0 3px 5px 2px rgba(255, 105, 135, .3)',
      blue: '0 3px 5px 2px rgba(33, 203, 243, .3)',
    }),
    color: 'white',
    height: 48,
    padding: '0 30px',
  },
});

function MyButton(props) {
  const { color, ...other } = props;
  const classes = useStyles(props);
  return <Button className={classes.root} {...other} />;
}

function AdaptingHook() {
  return (
    <div>
      <MyButton color="red">Red</MyButton>
      <br />
      <br />
      <MyButton color="blue">Blue</MyButton>
    </div>
  );
}

export default AdaptingHook;

Powered by JSS.

  • Remove some usages of the old React's APIs (#13487, #13529, #13503) @eps1lon.
  • Add a language menu in the documentation and persist states between repeated visits (#13544, #13567) @mbrookes
  • And many more πŸ› bug fixes and πŸ“ documentation improvements.

@material-ui/core@v3.5.0

@material-ui/styles@v3.0.0-alpha.0

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.5.1
Nov 13, 2018

Big thanks to the 13 contributors who made this release possible!

Here are some highlights ✨:

  • Introduce a new @material-ui/styles package πŸ’… (#13503).

The Material-UI's styling solution has pretty much stayed the same for the last 12 months.
Some interesting CSS-in-JS libraries like styled-components, emotion or linaria have emerged.
This new package is a significant step forward. Some of the key features:

  • Supports 4 different APIs: hooks, styled-components, higher-order components and render props.
  • Allow accessing the component's props from within the style object.
  • Replace the usage of the old React APIs with the new ones.
  • 15.0 KB gzipped.

Here is an example: https://codesandbox.io/s/vjzn5z4k77.

import Button from '@material-ui/core/Button';
import React from 'react';
import { makeStyles } from '@material-ui/styles';

// Like https://github.com/brunobertolini/styled-by
const styledBy = (property, mapping) => props => mapping[props[property]];

const useStyles = makeStyles({
  root: {
    background: styledBy('color', {
      red: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
      blue: 'linear-gradient(45deg, #2196F3 30%, #21CBF3 90%)',
    }),
    border: 0,
    borderRadius: 3,
    boxShadow: styledBy('color', {
      red: '0 3px 5px 2px rgba(255, 105, 135, .3)',
      blue: '0 3px 5px 2px rgba(33, 203, 243, .3)',
    }),
    color: 'white',
    height: 48,
    padding: '0 30px',
  },
});

function MyButton(props) {
  const { color, ...other } = props;
  const classes = useStyles(props);
  return <Button className={classes.root} {...other} />;
}

function AdaptingHook() {
  return (
    <div>
      <MyButton color="red">Red</MyButton>
      <br />
      <br />
      <MyButton color="blue">Blue</MyButton>
    </div>
  );
}

export default AdaptingHook;

Powered by JSS.

  • Remove some usages of the old React's APIs (#13487, #13529, #13503) @eps1lon.
  • Add a language menu in the documentation and persist states between repeated visits (#13544, #13567) @mbrookes
  • And many more πŸ› bug fixes and πŸ“ documentation improvements.

@material-ui/core@v3.5.1

@material-ui/styles@v3.0.0-alpha.0

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.6.0
Nov 26, 2018

Big thanks to the 28 contributors who made this release possible!

The last release was two weeks ago.
Last weekend, we have missed the release train πŸšƒ.
As a consequence, this is a dense release.

Here are some highlights ✨:

  • 🎨 Add a new Firebase theme demo (#13579) @siriwatknp.
    You can preview it following this link.
  • βš›οΈ Introduce a new Fab component (#13573) @mbrookes.
  • ⛏ Fix more StrictMode warnings (#13590) @eps1lon.
  • And many more πŸ› bug fixes and πŸ“ documentation improvements.

@material-ui/core@v3.6.0

Deprecations

The floating action button doesn't share many styles with the default button component.
We are extracting the variant into its own component.
This way, we better isolate the concerns.
We will remove the FAB styles from the button in v4, making the Button component more lightweight, a win for people overriding our styles.

-import Button from '@material-ui/core/Button';
+import Fab from '@material-ui/core/Fab';

-<Button variant="fab" color="primary">
+<Fab color="primary">
  <AddIcon />
-</Button>
+</Fab>

Changes

@material-ui/lab@v3.0.0-alpha.24

  • [Slider] Fix sticky slider when mousing off the window then back in (#13479) @gkjohnson
  • [Slider] Fix visual hover state on disabled slider (#13638) @eps1lon
  • [Slider] Add missing thumb TypeScript definition (#13650) @dhiroll

@material-ui/styles@v3.0.0-alpha.1

@material-ui/docs@v3.0.0-alpha.8

  • Fix the @material-ui/utils require error.

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.6.1
Dec 1, 2018

Big thanks to the 15 contributors who made this release possible!

There are no fundamental changes in this version.
It's a stability release after v3.6.0. It contains tons of bug fixes πŸ›.

@material-ui/core@v3.6.1

@material-ui/styles@v3.0.0-alpha.2

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.7.1
Dec 22, 2018

Big thanks to the 15 contributors who made this release possible!

Here are some highlights ✨:

@material-ui/core@v3.7.1

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.8.3

Big thanks to the 5 contributors who made this release possible!

We are making a quick release to fix an important TypeScript regression (#14117) @eps1lon.

@material-ui/core@v3.8.3

Docs

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.9.0
Jan 14, 2019

Big thanks to the 17 contributors who made this release possible!

Here are some highlights ✨:

  • πŸ’„ Add a new Link component (#14093) @joshwooding
  • πŸ’„ Important update of the Badge component (#14121) @joshwooding
  • And many more πŸ› bug fixes and πŸ“ documentation improvements.

@material-ui/core@v3.9.0

@material-ui/styles@v3.0.0-alpha.8

  • [styles] Add test case for class extension with classes prop (#14127) @eps1lon
  • [styles] Document the CSS prefixing strategy on the server (#14139) @eps1lon
  • [styles] Add missing dependency hoist-non-react-statics (#14164) @joglr

Docs

Core

greenkeeper[bot] commented 5 years ago

Update to these versions instead πŸš€

Release Notes for v3.9.3
Mar 28, 2019

Big thanks to the 11 contributors who made this release possible!

This release fixes an important regression with TypeScript: #15076.

@material-ui/core@v3.9.3

Docs

Core

N/A