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][Perf] General performance optimizations needed #42

Closed
paulmillr opened this issue Nov 10, 2014 · 51 comments
Closed

[Core][Perf] General performance optimizations needed #42

paulmillr opened this issue Nov 10, 2014 · 51 comments
Assignees

Comments

@paulmillr
Copy link

Slow as hell on rMBP / Safari. It provides very bad user experience.

Anything we can do about it?

@jtollerene
Copy link
Contributor

Please be more specific. What exactly appears slow to you?

@twisterghost
Copy link

This is a pretty general thing for retina macbook pros. They aren't really beefy enough (at least, in my experience on a 2013 rMBP with maxed out spec options) to handle smooth CSS animations with the DPI they are pushing. @paulmillr, try opening the demo on an external 1080p screen and clicking around - you'll see its much smoother.

This is a MBP internal problem primarily.

@paulmillr
Copy link
Author

Everything is slow. Animations, transitions etc.

Same thing on iPhone 6+. Not MBP-only.

@rafayepes
Copy link

I think that promoting elements to their own layers could help in general. I'll try to check it.

@paulmillr
Copy link
Author

Thanks Rafa!

@Markus-ipse
Copy link

@rafayepes Keep in mind that promoting elements to their own layers is not a silver bullet, since too many layers incurs its own performance problems.

@jackielii
Copy link

It is quite slow on ipad as well. I tried material angular https://material.angularjs.org/ , seems very responsive.

@krik
Copy link

krik commented Nov 21, 2014

The performance (especially on mobile devices) is rather poor.

Compare for example the click effect for the buttons vs. Angular's Material component. I made a short recoding of me rapidly clicking the button component.

Material UI:
http://cl.ly/1b0B3L1y420c

Angular Material:
http://cl.ly/0k3i3a2t1d2P

The effect is slightly delayed (especially on mobile devices). Also the is UI not responsive during the animation.

@dmcclintock
Copy link

What is the possibility of adding fastclick.js as a dependency? The 300ms delay with the touch events is the only speed issue that I'm encountering on iOS Safari.

@krik
Copy link

krik commented Nov 23, 2014

I don't think it's so much about fastclick, I see the same problems on both mobile and desktop.

@hekar
Copy link

hekar commented Nov 24, 2014

Performance will be better in JavaScript + CSS, because most of these animations are stateful and require communication with the JS thread.

http://davidwalsh.name/css-js-animation

Edit: "Angular Material" does the animation using JS + CSS (rather than keyframes, material-ui)

Demo Source

@hai-cea
Copy link
Member

hai-cea commented Nov 28, 2014

The ripple animation is divided into 2 events on those projects (onMouseDown & onMouseUp). You can see this by clicking and holding down the buttons on polymer and angular material.

In contrast, Material-UI is executing the complete animation on a single click. We could look into separating the ripple animation into 2 events, but I'm not sure how that will play with onTouchTap. It requires more investigation for sure.

@jfbaro
Copy link

jfbaro commented Dec 9, 2014

Hi there. Firstly I would like to thank all contributors for the great work. Thanks for sharing this with the community.
I have tested the examples on Moto X, Moto G and Ipad 3 (iOS 8). The example seems OK (not super fast) on Android devices, but quite slow on Ipad 3 (I see a lag between the actual touch and the redrawing on the screen). By reading the comments I am not sure the way react works will allow it to have the same performance as seen on Angular Material, but I love React so much more than I love Angular! :)

The question is: Do you guys believe React may be able to deliver the kind of performance for this kind of components on either Android and iOS? Or is it impossible to achieve a much better performance (on this scenario) because the way React internals work?

If there is any test I can do to help investigate that, just let me know. I am still learning React, so I have limited knowledge, but I can help testing if you guys need.

Regards

@jfbaro
Copy link

jfbaro commented Dec 10, 2014

I know they are two different things, but this demo (based on an older version of React) feels much smoother.
http://petehunt.github.io/react-touch/

@glifchits
Copy link

I don't think this has anything to do with touch events being slow, does it? The problem seems to be that only one Ripple element is animated in a Ripple component at a time. If we could maintain an array of ripples, pushing one on click/tap and removing it on animation end, that would make the animation look responsive.

Disclaimer: I'm not an expert in this library (or React, for that matter) but I will look into implementing this in the upcoming weeks unless someone else who agrees does so first 😄

@hai-cea
Copy link
Member

hai-cea commented Dec 29, 2014

I've reworked ripples as @glifchits suggested. Ripples are now triggered onMouseDown & onTouchStart. The current version on master has this change in place, but it'll go up in the next release.

@luisrudge
Copy link
Contributor

@jfbaro @paulmillr can you guys test it again with this changes? I'd love your feedback.

@jjalonso
Copy link

jjalonso commented Mar 5, 2015

I was testing the demo website from my nexus 6 and is a bit lagged...

Specially the sliders, menus and tabs.

@quangv
Copy link

quangv commented Mar 31, 2015

@krik thanks for video, it Does seem whacky on Mobile. I opened demo page on iPhone, and it seems like the buttons are getting clicked twice...

@michelob
Copy link

Hi...maybe naive question here.

What is the purpose of recursive settimeout call to _pulsate in focus-ripple?

On an older android (Chrome on Samsung S3), I noticed that for any list (using ListItem) the scroll bar would flash over and over, as if the page was resizing a bit, again over and over.

On desktop, if you inspect a list you can see in Chrome all the ripple elements flashing in Dev Tools, one per ListItem. You can see this here inspecting a row: http://material-ui.com/#/components/lists

here is the call: https://github.com/callemall/material-ui/blob/b755b19a6652f9b484e0211f1c186b5acae6cfb5/src/ripples/focus-ripple.jsx#L107

If I disable this line locally (comment out), this scroll bar flashing effect goes and the list is a bit smoother.

But I don't see any noticeable UI change disabling this recursive pulsate.

Anyone understand the need for the recursive settimeout pulsate call?

@hai-cea
Copy link
Member

hai-cea commented Jul 31, 2015

@michelob This is to animate the keyboard focus ripple. I recently added a fix that would only render focus ripples if the component had keyboard focus - seen here: 0f61f9e. This fix will go up in the next release, and the problem you're describing will go away.

@michelob
Copy link

@hai-cea nice!

I also see 10.2 is up. I've taken that and see improvements especially with leftnav. Thank you!

@hijoncon
Copy link

hijoncon commented Sep 8, 2015

Most of demos are slow in Chrome

@hilkeheremans
Copy link

@hai-cea

  • In 0.11.1, the ripple animations fire twice on my mobile safari devices.
  • In 0.10.4, and as reported above at various moments, ripple animations are slow to fire.
  • Interestingly, in 0.10.1, they are silky smooth and work fine on my iDevices.

I am using the exact same code for my application, only switched out versions. For now, I'm reverting to 0.10.1 but wouldn't mind seeing a more permanent solution. ;-)

(edit: included 0.11.1 test)

@hilkeheremans
Copy link

@quangv Found the cause of this issue pretty quickly. TouchRipple listens to both onTouch and onMouse events. Problem is that Mobile Safari usually fires onMouseDown after onTouchEnd. This usually, but not always, generates two distinctly different ripples.

To prevent this, there is some logic in TouchRipple's start() function to prevent double firing of these CircleRipples, but it doesn't function well on Mobile Safari:

    if (!isRippleTouchGenerated) {
      for (var i = 0; i < ripples.length; i++) {
        if (ripples[i].props.touchGenerated) return;
      }
    }

A quick timeline of what happens (most of the time) on Mobile Safari:

  • touch event fires; start() is called on the TouchRipple. CircleRipples are added in an immutable array into the components' state. Each CircleRipple obj has a prop containing "isTouchGenerated" which is, I assume, supposed to prevent these "double" ripples.
  • the ripple effect finishes a bit later and TouchRipple's end() function is called. This removes the CircleRipple array from TouchRipple's state.
  • mobile safari fires onMouseDown. TouchRipple's start() function checks for existing ripples by checking the TouchRipple's state for an array of CircleRIpples, but since these have already finished, none are found. A new set of CircleRipples is then generated, causing the "double" ripple effect.

I worked around this for now by calling e.preventDefault() at the end of start() but this is of course just a stopgap solution. I can't commit the time for a proper fix right now so just wanted to share this.

Note that this is a little trickier to debug due to event propagation not working well while using breakpoints.

Edit: As I expected, e.preventDefault breaks some of the other components, most notably the Toggle component which relies on onChange being fired. Will provide a different workaround as time permits.

@arush
Copy link

arush commented Oct 14, 2015

is this still an issue? Seems ok on iphone 6. however, the ripples are firing twice, i assume because the second time is ontouchup

@c0b41
Copy link

c0b41 commented Oct 14, 2015

same problem still..

@hilkeheremans
Copy link

@arush You're right; firing twice is an issue on iOS, see my previous posts. I have another quick fix running but it is not applicable for general production purposes outside our use cases, so I won't run it through a PR at this time.

@mbrookes
Copy link
Member

@hilkeheremans did you manage to figure out why 0.10.1 is so much smoother?

@owencm
Copy link
Contributor

owencm commented Nov 19, 2015

@hilkeheremans FYI I have submitted a pull request to fix the issue of double ripple (due to compat mouse down firing, as you say).

@nathanmarks nathanmarks changed the title Slow as hell [Performance] General performance optimizations needed Apr 12, 2016
@nathanmarks nathanmarks changed the title [Performance] General performance optimizations needed [Core][Perf] General performance optimizations needed Apr 12, 2016
@JeroenNelen
Copy link

I'm also a bit baffled by the mixed signals I am getting about material-UI in a new project. It is by far the most popular material framework specifically for React (17k + stars) yet I keep running into people complaining about performance being sub-par. Is the performance only an issue in specific cases where for example more than x amounts of a specific component is used with animations, cases that might be avoided? In that case it might be handy to have some kind of 'use material-ui for these kind of applications but avoid it for that kind of applications because of the performance issues that will occur" ?
Because it would seem strange that a framework with performance issues would be so popular?
Anyone care to shed some light on this?
The framework looks great but I would like to prevent having to switch over to a different framework because of performance issues half-way in a project.

Kind regards,

@nathanmarks
Copy link
Member

@JeroenNelen wait for 0.16

@SpicyPete
Copy link

@nathanmarks do you happen to know what the timeline is looking like for 0.16?
I would love to use this library, but it's extremely slow on my phone

@deepfriedbrain
Copy link

I really loved Material-UI the moment I came across it and immediately decided to try it out for my first React-based app. Unfortunately, I went too far with it, before discovering the performance issues around the List component. When the page has more than 30 odd items in the List, the performance lag starts to become noticeable, particularly on the mobile (iP6+). Above 100 items, the list becomes almost unusable on the mobile.

The performance problem exists even if I'm using a simple grid of 50 Buttons (5 buttons x 10 rows). It's a bummer that such a stunning framework has huge performance issues.

@JeroenNelen if an application relies on lists or a grid of components with more than 50 items, stay away until the performance issues are fixed.

Moreover, the touch tap still fires 2 events (as discussed earlier on the thread). In my application, tapping on the first list item brings up another list. But due to double firing of events on the first tap, it records a click on the second list also and the entire flow messes up.

I'm really hoping that 0.16 would address some of these issues. Looking forward to it.

@liesislukas
Copy link
Contributor

now I use this lib to launch faster and then replacing elements with basic
versions that I write myself to have same look and a lot less event
handlers and dom elements. buttons, switch, table, input, icon, fab were
already redone. this is great framework, but please check performance of
all elements.. add some CSS file, it's OK to use CSS when it's performance
is so much better e.g. for such events as hover. you don't have to support
old crappy IEs anymore, you can do a lot with CSS faster then JS, leaving
JS busy with all react stuff

On Jul 30, 2016 08:08, "deepfriedbrain" notifications@github.com wrote:

I really loved Material-UI the moment I came across it and immediately
decided to try it out for my first React-based app. Unfortunately, I went
too far with it, before discovering the performance issues around the List
component. When the page has more than 30 odd items in the List, the
performance lag starts to become noticeable, particularly on the mobile
(iP6+). Above 100 items, the list becomes almost unusable on the mobile.

The performance problem exists even if I'm using a simple grid of 50
Buttons (5 buttons x 10 rows). It's a bummer that such a stunning framework
has huge performance issues.

@JeroenNelen https://github.com/JeroenNelen if an application relies on
lists or a grid of components with more than 50 items, stay away until the
performance issues are fixed.

Moreover, the touch tap still fires 2 events (as discussed earlier on the
thread). In my application, tapping on the first list item brings up
another list. But due to double firing of events on the first tap, it
records a click on the second list also and the entire flow messes up.

I'm really hoping that 0.16 would address some of these issues. Looking
forward to it.


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#42 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/ACm3Jsnpjuz0vWaKIOcCyvM8ogQoDaZVks5qatxAgaJpZM4C5Mwh
.

@dantman
Copy link
Contributor

dantman commented Aug 2, 2016

@deepfriedbrain I too wish I knew and considered that when I used this library.

I'm almost finished writing all the basic functionality. But I have two 409 row tables containing 1632 radio buttons each.

@nathanmarks
Copy link
Member

@dantman In the next version I'm looking into creating a material data grid with virtualized scrolling (in addition to a regular table, which will also be more performant than the current with checkboxes etc)

@ghost
Copy link

ghost commented Aug 13, 2016

I'm using react, redux and material-ui (v0.15.4) with Cordova. Grid and List performance on iOS is really a killer for the framework. Even scrolling seems to be a big issue, while quite acceptable on Android it is horrible on iOS.

Focusing on performance improvement should be really a high priority.

@nathanmarks
Copy link
Member

@bardu

This is in progress

@nathanmarks nathanmarks added this to the 0.16.0 Release milestone Aug 13, 2016
@nathanmarks nathanmarks self-assigned this Aug 13, 2016
@rstarkov
Copy link

Looking forward to any improvements in this area. We have a fairly simple form, but just tabbing through it entering values is very noticeably sluggish. Example: enter "200" in one textbox, press tab, enter "300" in the next one: tab takes half a second (!), so the first couple of digits of "300" are swallowed.

@JeroenNelen
Copy link

@nathanmarks is there any way to see an ETA or timeline for version 16? (would be nice to know if we're talking about weeks/months/years)

Kind regards and thanks for the hard work!

@nathanmarks
Copy link
Member

@jeroencoumans 0.16.0 is going to be a regular release for some other breaking changes very soon. next will come in a couple of months.

@davidrenne
Copy link

Simulator IOS animations look fine in my app. Very responsive on text box tabbing. Not sure if the simulator is throttling a slower CPU though to a true iphone 4s for the slowest experience. I sold my iphone 4s which is very slow on most web pages in safari.

Clicking buttons is also extremely fast with the highlight animation onclick of a raised button.

@kenjiru
Copy link

kenjiru commented Sep 30, 2016

Sorry to barge in like that, but do you plan to replace the inline styles with CSS in the next version? I could not find a road map for the version labeled next..

@slavab89
Copy link
Contributor

@kenjiru You can read about it here
Next version seems to be using JSS

@oliviertassinari
Copy link
Member

I'm closing. I think that the #5868 as well has the new styling approach of the next branch is addressing the overall issue.

brianfeister pushed a commit to brianfeister/material-ui that referenced this issue May 1, 2017
oliviertassinari added a commit to oliviertassinari/material-ui that referenced this issue Dec 3, 2017
eps1lon added a commit that referenced this issue Jul 24, 2019
* Bump enzyme from 3.9.0 to 3.10.0 (#15)

* Bump enzyme from 3.9.0 to 3.10.0

Bumps [enzyme](https://github.com/airbnb/enzyme/tree/HEAD/packages/enzyme) from 3.9.0 to 3.10.0.
- [Release notes](https://github.com/airbnb/enzyme/releases)
- [Changelog](https://github.com/airbnb/enzyme/blob/master/CHANGELOG.md)
- [Commits](https://github.com/airbnb/enzyme/commits/enzyme@3.10.0/packages/enzyme)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Add dependabot badge

* Fix failing test

* Bump webpack-cli from 3.3.2 to 3.3.6 (#14)

Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.2 to 3.3.6.
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/v3.3.6/CHANGELOG.md)
- [Commits](webpack/webpack-cli@v3.3.2...v3.3.6)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* [Security] Bump lodash.template from 4.4.0 to 4.5.0 (#21)

Bumps [lodash.template](https://github.com/lodash/lodash) from 4.4.0 to 4.5.0. **This update includes security fixes.**
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.4.0...4.5.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump lodash from 4.17.14 to 4.17.15 (#24)

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.14 to 4.17.15.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.14...4.17.15)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update react-docgen requirement in /docs (#30)

Updates the requirements on [react-docgen](https://github.com/reactjs/react-docgen) to permit the latest version.
- [Release notes](https://github.com/reactjs/react-docgen/releases)
- [Commits](reactjs/react-docgen@v5.0.0-beta.1...v5.0.0-beta.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update jss-rtl requirement from ^0.2.1 to ^0.2.3 in /docs (#33)

Updates the requirements on [jss-rtl](https://github.com/alitaheri/jss-rtl) to permit the latest version.
- [Release notes](https://github.com/alitaheri/jss-rtl/releases)
- [Commits](alitaheri/jss-rtl@v0.2.1...v0.2.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @material-ui/pickers from 3.1.1 to 3.2.0 (#32)

Updates the requirements on [@material-ui/pickers](https://github.com/mui-org/material-ui-pickers) to permit the latest version.
- [Release notes](https://github.com/mui-org/material-ui-pickers/releases)
- [Commits](mui/material-ui-pickers@v3.1.1...v3.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Bump @date-io/date-fns from 1.3.5 to 1.3.8 (#93)

Bumps [@date-io/date-fns](https://github.com/dmtrKovalenko/date-io) from 1.3.5 to 1.3.8.
- [Release notes](https://github.com/dmtrKovalenko/date-io/releases)
- [Commits](dmtrKovalenko/date-io@v1.3.5...v1.3.8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update react-autosuggest requirement from ^9.3.2 to ^9.4.3 in /docs (#31)

Updates the requirements on [react-autosuggest](https://github.com/moroshko/react-autosuggest) to permit the latest version.
- [Release notes](https://github.com/moroshko/react-autosuggest/releases)
- [Commits](moroshko/react-autosuggest@v9.3.2...v9.4.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update redux requirement from ^4.0.0 to ^4.0.4 in /docs (#34)

Updates the requirements on [redux](https://github.com/reduxjs/redux) to permit the latest version.
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.0.0...v4.0.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update jscodeshift requirement in /packages/material-ui-codemod (#35)

Updates the requirements on [jscodeshift](https://github.com/facebook/jscodeshift) to permit the latest version.
- [Release notes](https://github.com/facebook/jscodeshift/releases)
- [Changelog](https://github.com/facebook/jscodeshift/blob/master/CHANGELOG.md)
- [Commits](facebook/jscodeshift@v0.6.0...v0.6.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update warning requirement in /packages/material-ui-lab (#46)

Updates the requirements on [warning](https://github.com/BerkeleyTrue/warning) to permit the latest version.
- [Release notes](https://github.com/BerkeleyTrue/warning/releases)
- [Changelog](https://github.com/BerkeleyTrue/warning/blob/master/CHANGELOG.md)
- [Commits](BerkeleyTrue/warning@v4.0.1...v4.0.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update react-is requirement in /packages/material-ui-utils (#42)

Updates the requirements on [react-is](https://github.com/facebook/react/tree/HEAD/packages/react-is) to permit the latest version.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v16.8.6/packages/react-is)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update marked requirement in /packages/material-ui-docs (#49)

Updates the requirements on [marked](https://github.com/markedjs/marked) to permit the latest version.
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v0.6.0...v0.7.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update @material-ui/utils requirement in /packages/material-ui-docs (#50)

Updates the requirements on [@material-ui/utils](https://github.com/mui-org/material-ui/tree/HEAD/packages/material-ui-utils) to permit the latest version.
- [Release notes](https://github.com/mui-org/material-ui/releases)
- [Changelog](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui-org/material-ui/commits/v4.1.0/packages/material-ui-utils)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update prismjs requirement in /packages/material-ui-docs (#48)

Updates the requirements on [prismjs](https://github.com/LeaVerou/prism) to permit the latest version.
- [Release notes](https://github.com/LeaVerou/prism/releases)
- [Changelog](https://github.com/PrismJS/prism/blob/master/CHANGELOG.md)
- [Commits](PrismJS/prism@v1.8.4...v1.17.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update clsx requirement in /packages/material-ui-docs (#45)

Updates the requirements on [clsx](https://github.com/lukeed/clsx) to permit the latest version.
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v1.0.2...v1.0.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update clsx requirement in /packages/material-ui-lab (#44)

Updates the requirements on [clsx](https://github.com/lukeed/clsx) to permit the latest version.
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v1.0.2...v1.0.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump emotion from 10.0.9 to 10.0.14 (#28)

* Bump emotion from 10.0.9 to 10.0.14

Bumps [emotion](https://github.com/emotion-js/emotion) from 10.0.9 to 10.0.14.
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/emotion@10.0.9...emotion@10.0.14)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* deduplicate

* Bump @types/react-autosuggest from 9.3.7 to 9.3.9 (#17)

Bumps [@types/react-autosuggest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-autosuggest) from 9.3.7 to 9.3.9.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-autosuggest)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update yargs requirement from ^12.0.0 to ^13.3.0 in /packages/mat… (#37)

Updates the requirements on [yargs](https://github.com/yargs/yargs) to permit the latest version.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
- [Commits](yargs/yargs@v12.0.0...v13.3.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update fs-extra requirement from ^7.0.0 to ^8.1.0 in /packages/ma… (#40)

* Update fs-extra requirement in /packages/material-ui-icons

Updates the requirements on [fs-extra](https://github.com/jprichardson/node-fs-extra) to permit the latest version.
- [Release notes](https://github.com/jprichardson/node-fs-extra/releases)
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@7.0.0...8.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update lockfile

* yarn deduplicate

* Update mustache requirement from ^3.0.0 to ^3.0.1 in /packages/ma… (#38)

* Update mustache requirement in /packages/material-ui-icons

Updates the requirements on [mustache](https://github.com/janl/mustache.js) to permit the latest version.
- [Release notes](https://github.com/janl/mustache.js/releases)
- [Changelog](https://github.com/janl/mustache.js/blob/master/CHANGELOG.md)
- [Commits](janl/mustache.js@v3.0.0...v3.0.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update lockfile

Shouldn't dependabot do this?

* Bump babel-eslint from 10.0.1 to 10.0.2 (#53)

Bumps [babel-eslint](https://github.com/babel/babel-eslint) from 10.0.1 to 10.0.2.
- [Release notes](https://github.com/babel/babel-eslint/releases)
- [Commits](babel/babel-eslint@v10.0.1...v10.0.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump expect-puppeteer from 3.5.1 to 4.3.0 (#51)

Bumps [expect-puppeteer](https://github.com/smooth-code/jest-puppeteer) from 3.5.1 to 4.3.0.
- [Release notes](https://github.com/smooth-code/jest-puppeteer/releases)
- [Changelog](https://github.com/smooth-code/jest-puppeteer/blob/master/CHANGELOG.md)
- [Commits](argos-ci/jest-puppeteer@v3.5.1...v4.3.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update svgo requirement from ^1.0.5 to ^1.3.0 in /packages/materi… (#39)

* Update svgo requirement in /packages/material-ui-icons

Updates the requirements on [svgo](https://github.com/svg/svgo) to permit the latest version.
- [Release notes](https://github.com/svg/svgo/releases)
- [Changelog](https://github.com/svg/svgo/blob/master/CHANGELOG.md)
- [Commits](svg/svgo@v1.0.5...v1.3.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update lockfile

* Bump react-swipeable-views from 0.13.1 to 0.13.3 (#52)

Bumps [react-swipeable-views](https://github.com/oliviertassinari/react-swipeable-views) from 0.13.1 to 0.13.3.
- [Release notes](https://github.com/oliviertassinari/react-swipeable-views/releases)
- [Changelog](https://github.com/oliviertassinari/react-swipeable-views/blob/master/CHANGELOG.md)
- [Commits](oliviertassinari/react-swipeable-views@v0.13.1...v0.13.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump compression-webpack-plugin from 2.0.0 to 3.0.0 (#60)

Bumps [compression-webpack-plugin](https://github.com/webpack-contrib/compression-webpack-plugin) from 2.0.0 to 3.0.0.
- [Release notes](https://github.com/webpack-contrib/compression-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/compression-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/compression-webpack-plugin@v2.0.0...v3.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-plugin-react-hooks from 1.6.0 to 1.6.1 (#65)

Bumps [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-config-prettier from 4.2.0 to 6.0.0 (#64)

Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 4.2.0 to 6.0.0.
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v4.2.0...v6.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump rollup-plugin-commonjs from 10.0.0 to 10.0.1 (#69)

* Bump rollup-plugin-commonjs from 10.0.0 to 10.0.1

Bumps [rollup-plugin-commonjs](https://github.com/rollup/rollup-plugin-commonjs) from 10.0.0 to 10.0.1.
- [Release notes](https://github.com/rollup/rollup-plugin-commonjs/releases)
- [Changelog](https://github.com/rollup/rollup-plugin-commonjs/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup-plugin-commonjs@v10.0.0...v10.0.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-plugin-import from 2.17.2 to 2.18.2 (#61)

Bumps [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) from 2.17.2 to 2.18.2.
- [Release notes](https://github.com/benmosher/eslint-plugin-import/releases)
- [Changelog](https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.17.2...v2.18.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump material-table from 1.39.0 to 1.40.1 (#66)

Bumps [material-table](https://github.com/mbrn/material-table) from 1.39.0 to 1.40.1.
- [Release notes](https://github.com/mbrn/material-table/releases)
- [Commits](mbrn/material-table@v1.39.0...v1.40.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump recast from 0.17.6 to 0.18.1 (#70)

* Bump recast from 0.17.6 to 0.18.1

Bumps [recast](https://github.com/benjamn/recast) from 0.17.6 to 0.18.1.
- [Release notes](https://github.com/benjamn/recast/releases)
- [Commits](benjamn/recast@v0.17.6...v0.18.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fix esmodule interop

* Bump react-virtualized from 9.21.0 to 9.21.1 (#72)

Bumps [react-virtualized](https://github.com/bvaughn/react-virtualized) from 9.21.0 to 9.21.1.
- [Release notes](https://github.com/bvaughn/react-virtualized/releases)
- [Changelog](https://github.com/bvaughn/react-virtualized/blob/master/CHANGELOG.md)
- [Commits](bvaughn/react-virtualized@9.21.0...9.21.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump lerna from 3.15.0 to 3.16.1 (#71)

Bumps [lerna](https://github.com/lerna/lerna/tree/HEAD/core/lerna) from 3.15.0 to 3.16.1.
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/master/core/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v3.16.1/core/lerna)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @emotion/core from 10.0.10 to 10.0.14 (#76)

Bumps [@emotion/core](https://github.com/emotion-js/emotion) from 10.0.10 to 10.0.14.
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/core@10.0.10...@emotion/core@10.0.14)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump markdown-to-jsx from 6.9.4 to 6.10.2 (#80)

Bumps [markdown-to-jsx](https://github.com/probablyup/markdown-to-jsx) from 6.9.4 to 6.10.2.
- [Release notes](https://github.com/probablyup/markdown-to-jsx/releases)
- [Commits](quantizor/markdown-to-jsx@6.9.4...6.10.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump emotion-theming from 10.0.10 to 10.0.14 (#84)

Bumps [emotion-theming](https://github.com/emotion-js/emotion) from 10.0.10 to 10.0.14.
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/emotion-theming@10.0.10...emotion-theming@10.0.14)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-plugin-mocha from 5.3.0 to 6.0.0 (#83)

* Bump eslint-plugin-mocha from 5.3.0 to 6.0.0

Bumps [eslint-plugin-mocha](https://github.com/lo1tuma/eslint-plugin-mocha/tree/HEAD) from 5.3.0 to 6.0.0.
- [Release notes](https://github.com/lo1tuma/eslint-plugin-mocha/releases)
- [Changelog](https://github.com/lo1tuma/eslint-plugin-mocha/blob/master/CHANGELOG.md)
- [Commits](https://github.com/lo1tuma/eslint-plugin-mocha/commits/v6.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Add dependabot badge

* Fix failing test

* Bump @types/react-virtualized from 9.21.1 to 9.21.4 (#91)

* Bump enzyme from 3.9.0 to 3.10.0

Bumps [enzyme](https://github.com/airbnb/enzyme/tree/HEAD/packages/enzyme) from 3.9.0 to 3.10.0.
- [Release notes](https://github.com/airbnb/enzyme/releases)
- [Changelog](https://github.com/airbnb/enzyme/blob/master/CHANGELOG.md)
- [Commits](https://github.com/airbnb/enzyme/commits/enzyme@3.10.0/packages/enzyme)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Add dependabot badge

* Fix failing test

* Bump karma from 4.1.0 to 4.2.0 (#90)

* Bump karma from 4.1.0 to 4.2.0

Bumps [karma](https://github.com/karma-runner/karma/tree/HEAD/) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](https://github.com/karma-runner/karma/commits/v4.2.0/)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump karma-chrome-launcher from 2.2.0 to 3.0.0 (#96)

Bumps [karma-chrome-launcher](https://github.com/karma-runner/karma-chrome-launcher) from 2.2.0 to 3.0.0.
- [Release notes](https://github.com/karma-runner/karma-chrome-launcher/releases)
- [Changelog](https://github.com/karma-runner/karma-chrome-launcher/blob/master/CHANGELOG.md)
- [Commits](karma-runner/karma-chrome-launcher@v2.2.0...v3.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump recharts from 1.5.0 to 1.6.2 (#95)

Bumps [recharts](https://github.com/recharts/recharts) from 1.5.0 to 1.6.2.
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/master/CHANGELOG.md)
- [Commits](recharts/recharts@v1.5.0...v1.6.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @emotion/styled from 10.0.10 to 10.0.12 (#77)

* Bump @emotion/styled from 10.0.10 to 10.0.12

Bumps [@emotion/styled](https://github.com/emotion-js/emotion/tree/HEAD/) from 10.0.10 to 10.0.12.
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/styled@10.0.10...@emotion/styled@10.0.12)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Add dependabot badge

* Fix failing test

* Bump notistack from 0.8.6 to 0.8.9 (#97)

Bumps [notistack](https://github.com/iamhosseindhv/notistack) from 0.8.6 to 0.8.9.
- [Release notes](https://github.com/iamhosseindhv/notistack/releases)
- [Changelog](https://github.com/iamhosseindhv/notistack/blob/master/CHANGELOG.md)
- [Commits](https://github.com/iamhosseindhv/notistack/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/react from 16.8.16 to 16.8.23 (#99)

Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 16.8.16 to 16.8.23.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump styled-components from 4.2.0 to 4.3.2 (#92)

* Bump styled-components from 4.2.0 to 4.3.2

Bumps [styled-components](https://github.com/styled-components/styled-components/tree/HEAD) from 4.2.0 to 4.3.2.
- [Release notes](https://github.com/styled-components/styled-components/releases/)
- [Changelog](https://github.com/styled-components/styled-components/blob/master/CHANGELOG.md)
- [Commits](https://github.com/styled-components/styled-components/commits/v4.3.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump react-select from 2.4.3 to 3.0.4 (#100)

* Bump react-select from 2.4.3 to 3.0.4

Bumps [react-select](https://github.com/JedWatson/react-select) from 2.4.3 to 3.0.4.
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/.sweet-changelogs.js)
- [Commits](https://github.com/JedWatson/react-select/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/react-select from 2.0.17 to 3.0.0

* Bump rollup from 1.12.4 to 1.17.0 (#106)

Bumps [rollup](https://github.com/rollup/rollup) from 1.12.4 to 1.17.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v1.12.4...v1.17.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump autoprefixer from 9.5.1 to 9.6.1 (#107)

Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 9.5.1 to 9.6.1.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md)
- [Commits](postcss/autoprefixer@9.5.1...9.6.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump emotion-server from 10.0.9 to 10.0.14 (#104)

Bumps [emotion-server](https://github.com/emotion-js/emotion) from 10.0.9 to 10.0.14.
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/emotion-server@10.0.9...emotion-server@10.0.14)

* Bump react-inspector from 2.3.1 to 3.0.2 (#102)

* Bump react-inspector from 2.3.1 to 3.0.2

Bumps [react-inspector](https://github.com/storybookjs/react-inspector/tree/HEAD) from 2.3.1 to 3.0.2.
- [Changelog](https://github.com/storybookjs/react-inspector/blob/master/HISTORY.md)
- [Commits](https://github.com/storybookjs/react-inspector/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump enzyme-adapter-react-16 from 1.12.1 to 1.14.0 (#103)

* Bump enzyme-adapter-react-16 from 1.12.1 to 1.14.0

Bumps [enzyme](https://github.com/airbnb/enzyme/tree/HEAD/packages/enzyme-adapter-react-16) from 1.12.1 to 1.14.0.
- [Commits](https://github.com/airbnb/enzyme/commits/enzyme-adapter-react-16@1.14.0/packages/enzyme-adapter-react-16)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump lerna from 3.16.1 to 3.16.2 (#101)

* Bump lerna from 3.16.1 to 3.16.2

Bumps [lerna](https://github.com/lerna/lerna/tree/HEAD/core/lerna) from 3.16.1 to 3.16.2.
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/master/core/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v3.16.2/core/lerna)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump styled-system from 5.0.12 to 5.0.16 (#110)

Bumps [styled-system](https://github.com/jxnblk/styled-system) from 5.0.12 to 5.0.16.
- [Release notes](https://github.com/jxnblk/styled-system/releases)
- [Changelog](https://github.com/styled-system/styled-system/blob/master/CHANGELOG.md)
- [Commits](styled-system/styled-system@v5.0.12...v5.0.16)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump url-loader from 1.1.2 to 2.1.0 (#108)

Bumps [url-loader](https://github.com/webpack-contrib/url-loader) from 1.1.2 to 2.1.0.
- [Release notes](https://github.com/webpack-contrib/url-loader/releases)
- [Changelog](https://github.com/webpack-contrib/url-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/url-loader@v1.1.2...v2.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @babel/register from 7.4.4 to 7.5.5 (#111)

Bumps [@babel/register](https://github.com/babel/babel) from 7.4.4 to 7.5.5.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md)
- [Commits](babel/babel@v7.4.4...v7.5.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump react-number-format from 4.0.7 to 4.0.8 (#113)

Bumps [react-number-format](https://github.com/s-yadav/react-number-format) from 4.0.7 to 4.0.8.
- [Release notes](https://github.com/s-yadav/react-number-format/releases)
- [Commits](s-yadav/react-number-format@v4.0.7...v4.0.8)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-plugin-react from 7.13.0 to 7.14.3 (#114)

* Bump eslint-plugin-react from 7.13.0 to 7.14.3

Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.13.0 to 7.14.3.
- [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases)
- [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.13.0...v7.14.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fix lint errors

* Bump puppeteer from 1.15.0 to 1.19.0 (#116)

Bumps [puppeteer](https://github.com/GoogleChrome/puppeteer) from 1.15.0 to 1.19.0.
- [Release notes](https://github.com/GoogleChrome/puppeteer/releases)
- [Commits](puppeteer/puppeteer@v1.15.0...v1.19.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/jsdom from 12.2.3 to 12.2.4 (#117)

Bumps [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom) from 12.2.3 to 12.2.4.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @babel/cli from 7.4.4 to 7.5.5 (#115)

Bumps [@babel/cli](https://github.com/babel/babel) from 7.4.4 to 7.5.5.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md)
- [Commits](babel/babel@v7.4.4...v7.5.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump aws-sdk from 2.471.0 to 2.497.0 (#122)

Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.471.0 to 2.497.0.
- [Release notes](https://github.com/aws/aws-sdk-js/releases)
- [Changelog](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md)
- [Commits](aws/aws-sdk-js@v2.471.0...v2.497.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/react-transition-group from 2.9.1 to 2.9.2 (#120)

Bumps [@types/react-transition-group](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-transition-group) from 2.9.1 to 2.9.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-transition-group)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump react-router-dom from 5.0.0 to 5.0.1 (#124)

Bumps [react-router-dom](https://github.com/ReactTraining/react-router) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/ReactTraining/react-router/releases)
- [Changelog](https://github.com/ReactTraining/react-router/blob/master/CHANGELOG.md)
- [Commits](remix-run/react-router@v5.0.0...v5.0.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump dtslint from 0.8.0 to 0.9.0 (#123)

Bumps [dtslint](https://github.com/Microsoft/dtslint) from 0.8.0 to 0.9.0.
- [Release notes](https://github.com/Microsoft/dtslint/releases)
- [Commits](https://github.com/Microsoft/dtslint/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @babel/core from 7.5.4 to 7.5.5 (#118)

* Bump @babel/core from 7.5.4 to 7.5.5

Bumps [@babel/core](https://github.com/babel/babel) from 7.5.4 to 7.5.5.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md)
- [Commits](babel/babel@v7.5.4...v7.5.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump resolutions

* Bump @types/react-dom from 16.8.4 to 16.8.5 (#127)

Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 16.8.4 to 16.8.5.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump jsdom from 15.0.0 to 15.1.1 (#125)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 15.0.0 to 15.1.1.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@15.0.0...15.1.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @testing-library/react from 8.0.5 to 8.0.6 (#131)

Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 8.0.5 to 8.0.6.
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/master/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v8.0.5...v8.0.6)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump rollup-plugin-babel from 4.3.2 to 4.3.3 (#132)

Bumps [rollup-plugin-babel](https://github.com/rollup/rollup-plugin-babel) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/rollup/rollup-plugin-babel/releases)
- [Changelog](https://github.com/rollup/rollup-plugin-babel/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup-plugin-babel@v4.3.2...v4.3.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/react-text-mask from 5.4.4 to 5.4.6 (#129)

Bumps [@types/react-text-mask](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-text-mask) from 5.4.4 to 5.4.6.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-text-mask)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump fs-extra from 7.0.1 to 8.1.0 (#130)

Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra) from 7.0.1 to 8.1.0.
- [Release notes](https://github.com/jprichardson/node-fs-extra/releases)
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@7.0.1...8.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump typescript from 3.2.2 to 3.2.4 (#128)

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.2.2 to 3.2.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v3.2.2...v3.2.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump material-ui-popup-state from 1.3.2 to 1.4.0 (#135)

Bumps [material-ui-popup-state](https://github.com/jcoreio/material-ui-popup-state) from 1.3.2 to 1.4.0.
- [Release notes](https://github.com/jcoreio/material-ui-popup-state/releases)
- [Commits](jcoreio/material-ui-popup-state@v1.3.2...v1.4.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump danger from 7.1.4 to 9.1.3 (#133)

Bumps [danger](https://github.com/danger/danger-js) from 7.1.4 to 9.1.3.
- [Release notes](https://github.com/danger/danger-js/releases)
- [Changelog](https://github.com/danger/danger-js/blob/master/CHANGELOG.md)
- [Commits](danger/danger-js@7.1.4...9.1.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump react-window from 1.8.1 to 1.8.5 (#141)

Bumps [react-window](https://github.com/bvaughn/react-window) from 1.8.1 to 1.8.5.
- [Release notes](https://github.com/bvaughn/react-window/releases)
- [Changelog](https://github.com/bvaughn/react-window/blob/master/CHANGELOG.md)
- [Commits](bvaughn/react-window@1.8.1...1.8.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/enzyme from 3.9.1 to 3.10.3 (#142)

Bumps [@types/enzyme](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/enzyme) from 3.9.1 to 3.10.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/enzyme)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-plugin-jsx-a11y from 6.2.1 to 6.2.3 (#139)

Bumps [eslint-plugin-jsx-a11y](https://github.com/evcohen/eslint-plugin-jsx-a11y) from 6.2.1 to 6.2.3.
- [Release notes](https://github.com/evcohen/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/CHANGELOG.md)
- [Commits](bradbirdsallCHANGED/eslint-plugin-jsx-a11y@v6.2.1...v6.2.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump rollup-plugin-terser from 5.0.0 to 5.1.1 (#140)

* Bump rollup-plugin-terser from 5.0.0 to 5.1.1

Bumps [rollup-plugin-terser](https://github.com/TrySound/rollup-plugin-terser) from 5.0.0 to 5.1.1.
- [Release notes](https://github.com/TrySound/rollup-plugin-terser/releases)
- [Commits](TrySound/rollup-plugin-terser@v5.0.0...v5.1.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump terser related deps

* Bump lerna from 3.16.2 to 3.16.3 (#145)

Bumps [lerna](https://github.com/lerna/lerna/tree/HEAD/core/lerna) from 3.16.2 to 3.16.3.
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/master/core/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v3.16.3/core/lerna)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/react-router-dom from 4.3.2 to 4.3.4 (#143)

Bumps [@types/react-router-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-router-dom) from 4.3.2 to 4.3.4.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-router-dom)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @babel/node from 7.2.2 to 7.5.5 (#137)

Bumps [@babel/node](https://github.com/babel/babel) from 7.2.2 to 7.5.5.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md)
- [Commits](babel/babel@v7.2.2...v7.5.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump eslint-config-airbnb from 17.1.0 to 17.1.1 (#148)

Bumps [eslint-config-airbnb](https://github.com/airbnb/javascript) from 17.1.0 to 17.1.1.
- [Release notes](https://github.com/airbnb/javascript/releases)
- [Commits](airbnb/javascript@eslint-config-airbnb-v17.1.0...eslint-config-airbnb-v17.1.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump babel-plugin-istanbul from 5.1.4 to 5.2.0 (#147)

Bumps [babel-plugin-istanbul](https://github.com/istanbuljs/babel-plugin-istanbul) from 5.1.4 to 5.2.0.
- [Release notes](https://github.com/istanbuljs/babel-plugin-istanbul/releases)
- [Changelog](https://github.com/istanbuljs/babel-plugin-istanbul/blob/master/CHANGELOG.md)
- [Commits](istanbuljs/babel-plugin-istanbul@v5.1.4...v5.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump @types/react-transition-group from 2.9.2 to 4.2.0 (#149)

Bumps [@types/react-transition-group](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-transition-group) from 2.9.2 to 4.2.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-transition-group)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump final-form from 4.12.0 to 4.18.2 (#126)

Bumps [final-form](https://github.com/final-form/final-form) from 4.12.0 to 4.18.2.
- [Release notes](https://github.com/final-form/final-form/releases)
- [Commits](final-form/final-form@v4.12.0...v4.18.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump lerna from 3.16.3 to 3.16.4 (#150)

Bumps [lerna](https://github.com/lerna/lerna/tree/HEAD/core/lerna) from 3.16.3 to 3.16.4.
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/master/core/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v3.16.4/core/lerna)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* codecov doesnt care about merge commits
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests