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

Refactor CSS into Javascript #30

Closed
aranw opened this issue Nov 10, 2014 · 95 comments
Closed

Refactor CSS into Javascript #30

aranw opened this issue Nov 10, 2014 · 95 comments
Labels
customization: css Design CSS customizability

Comments

@aranw
Copy link

aranw commented Nov 10, 2014

Move component CSS into Javascript to remove the need for adding CSS/Less files to projects.

Suggest comes from seeing this slideshow https://speakerdeck.com/vjeux/react-css-in-js from @vjeux

@aranw aranw changed the title Possible CSS Improvement Refactor CSS into Javascript Nov 10, 2014
@totty90
Copy link

totty90 commented Nov 10, 2014

I like that, but I don't know how it works in real world. Imagine having a lot of elements, every element will have a custom style. It will make the dom huge. Isn't this a performance problem? (I've made a similar UI entirely in react.js with style and everything worked ok, but was a small test project)

@aranw
Copy link
Author

aranw commented Nov 10, 2014

@totty90 yeah I did wonder this, but from the slides the issue at Facebook from sounds of it was that all the CSS files and CSS classes were a performance issue.

Maybe @vjeux could shed come light on this and its the suggested solution in that slideshow.

Maybe for some of the smaller components this might be a better solution?

Edit: Another thing I was unsure of was how to deal with media queries and responsiveness?

@totty90
Copy link

totty90 commented Nov 10, 2014

Already asked him to show me a real world app using this technique. This solves one of the best problems: a component came in a single file. I can share a file with you and you get my component rendered exactly as mine without any setup from your part. No css problems.

@robertknight
Copy link

There is another project which aims to provide a good way to integrate CSS-in-JS and React - https://github.com/js-next/react-style and also some initial work on Material UI components using them - https://github.com/SanderSpies/react-material

This project has more traction at the moment and a larger number of components implemented, but react-material does have the advantage that components work standalone without having to bundle CSS files. You also get all the benefits outlined in @vjeux's presentation from it.

It would be great if the two projects could be combined!

@totty90
Copy link

totty90 commented Nov 10, 2014

The other project is a lot worst. The only part interesting is the css in js.

@pspeter3
Copy link

I like the concept of having JS and CSS be coupled but inline styles are bad for browser performance and implementing CSP. Maybe use WebPack if you're concerned?

@jackcallister
Copy link

Webpack seems to be the only "reasonable" way to import styles. Have a require('component.css'); - but then you end up having a dependency for your component. They must use Webpack too! I don't like that solution. One should be able to share a component easily just install, use and profit.

The current approach here looks user friendly. It's not perfect, but copying a couple of import lines is quite simple. Although I would suggest that using Less once again locks users into that preprocessor...

It's tough making things simple! Anybody got any suggestions? This is much wider than just this project. The entire react/polymer/component community needs a solution.

P.S - coupling CSS inside your JS looks like a bad idea. For one you end up writing a pseudo CSS with camel cased properties and stringified values and you are cognitively mixing concerns making it harder to reason about your code. I've never had issues writing CSS. Yes, it can be hard and things can go wrong (global namespace, unintended consequences etc) - but shifting that to JS is NOT going to fix the issue. Writing better CSS is.

@vjeux
Copy link

vjeux commented Nov 10, 2014

@pspeter3 do you have any benchmarks? :)

@pspeter3
Copy link

Mainly these two JsPerfs, http://jsperf.com/class-vs-inline-styles/2 and http://jsperf.com/classes-vs-inline-styles. However http://jsperf.com/inline-style-vs-css-class/9 does seem to imply the opposite. Bad for performance was an overstatement. I'm sure you can also cause bad performance with stylesheets by using poor selectors. Do you have any advice on implementing Content Security Policy when using inline styles?

@totty90
Copy link

totty90 commented Nov 10, 2014

@jarsbe

P.S - coupling CSS inside your JS looks like a bad idea. For one you end up writing a pseudo CSS with camel cased properties and stringified values and you are cognitively mixing concerns making it harder to reason about your code. I've never had issues writing CSS. Yes, it can be hard and things can go wrong (global namespace, unintended consequences etc) - but shifting that to JS is NOT going to fix the issue. Writing better CSS is.

I've written a lot of CSS and CSS into JS. The first one is easier but in big projects get messy the other one I think (because I've only built a small app) would work better in a bigger app. Try to program a js app with everything global + merging stuff, that's hell!!! (Or I've always done it wrong...)

Here is a test I've done with react.js http://jsperf.com/react-class-name-vs-inline-css2

@hai-cea
Copy link
Member

hai-cea commented Nov 11, 2014

Yes, I wish there was an easy answer for this. :) In the end, I think there are merits to both approaches.

My biggest concern with including styles inside the JS components has to do with code maintenance. For example, what happens to the CSS that's needed for cross browser resets? Do those styles go into the components as well? Also, we get a lot conveniences from using LESS like mixins, variables, etc that we would have somehow replace and abstract inside JS.

With that said, we've namespaced all of the CSS classes that are used in this project with "mui" and we try to write object oriented CSS. In the future, there probably should be some process that will let users pick and choose which components to download into a custom build.

Thanks for the issue. Really good points brought up is discussion!

@mcwhittemore
Copy link

What really makes the style of a component less a part of that component than its structure (html) and functionality (js)? It seems to me that we've come to mistake a method to mitigate one problem (maintainability of code) as an inherently wise design pattern and have forgotten that it was really a patch. Arguably React is more elegant solution to the maintainability of code problem than dividing structure, functionality and style into their own languages. It has its own problems (speed in the css case), but if we come to agree that this reunited way of writing components is good we can start trying to solve the speed problem.

It should be noted that I personally think that this is one of the failures of the web components spec. Where it groups different languages into one module, React challenges the very idea of html and css.

@jackcallister
Copy link

@mcwhittemore Yes, the style is no less a part of the component than the HTML or JS. Together they combine to create one component. This does not necessitate that the component should be written as one 'unit', that's just how it should be distributed.

React tightly couples the structure and functionality. It forces you into this pattern and I've found this to be simple and logical. I can easily understand the code I'm looking at, my brain is not overloaded.

On the other hand CSS inside a JS file makes the code harder to understand for me. Descriptions of visual styling do not fit well next to functionality and structure. I'm not simply annoyed by it I am confused and slowed down since I have to process multiple concerns. It also tightly couples the styling with the component which makes it harder for other authors to write their own styles.

I want to distribute my component as a single bundle. Lego block development is the dream! It sounds like we are all on the same page with that end goal. Inline CSS sounds like a good fix but I do not believe it is the right fix.

@mcwhittemore
Copy link

@jarsbe 100% agree that reading style in the component is not clear enough. Simply finding where the style is created can be difficult at times. I've been using a style.json file where its defaults and permanents are merged with this.props.style does a bunch for clarity.

{
  "defaults": {
    "backgroundColor": "#efefef"
  },
 "permanents": {
    "width": "100%"
  }
}

Another argument against doing the styling in JS vs CSS is that the style attribute does not have the same powers as a CSS selector. For instance I don't think the *:after in the current less is possible to implement.

@jackcallister
Copy link

@mcwhittemore trying to get a psuedo element was exactly what made me go, "huh? oh yeah that doesn't exist in this context...". Yes, extraction into another file does help. I must take a look at the system on bespoke.js for styling new themes. I've heard that implements CSS in JS but am weary.

@totty90
Copy link

totty90 commented Nov 11, 2014

@mcwhittemore why do you need *:after?

@mcwhittemore
Copy link

@totty90 Its currently part of the CSS. There might be ways to solve this problem, but it is not a simple "convert your css to js" situation. Do you have a solution for the :after or :before selector that I'm just not thinking of?

@totty90
Copy link

totty90 commented Nov 11, 2014

IMO :after and :before are kind of hacks and I never needed them, I want to know what you need them for to give you a solution/opinion.

@mcwhittemore
Copy link

@totty90 I'll mention you in another issue on another project so not to clutter this one.

@WRidder
Copy link
Contributor

WRidder commented Nov 12, 2014

@hai-cea Keeping a SMACSS workflow in mind (https://smacss.com/book/categorizing) a good approach may be to keep the css for the Base, Layout and (maybe) Theme categories in the good ol' css files. Module and State css seems like a good candidate for me to do JS style.

@hai-cea
Copy link
Member

hai-cea commented Nov 14, 2014

@WRidder Thanks for the link - that makes a lot of sense.

@jackcallister
Copy link

A random thought that I didn't know where to put... How do native components implement styling? I envision that react components should be as similar in nature to native components. It might be a good place to look for ideas.

@nigelsmith
Copy link

I'm very sceptical of this approach of placing CSS within JS - the presentation itself talks about the issue of associating styles with components as if there hasn't been an entire, multi-year long, effort to do just that with the Shadow DOM standard. Now clearly React doesn't use that mechanism at present but I wouldn't be surprised if it did in time.

That standard works because it provides a way for a component creator to associate some minimal set of basic styles with their component that can then be overridden by a designer reaching down into the shadow DOM. It's far from clear how a designer would override styles set purely within Javascript if they weren't themselves using the components with react directly.

@hai-cea
Copy link
Member

hai-cea commented Jan 31, 2015

I just got back from the react conf and thank you so much to @vjeux for organizing it. I was skeptical with this approach as well, but I think it does have its advantages. This project has some challenges that I'd love some help solving if we went with this approach.

  1. We'd like these components to be themeable. They would have some default styles, but developers should be able to change the look to suit their needs. Currently, they can do this by overriding certain variables in LESS. How could we offer the same capabilities using js styles?
  2. A lot of times, components will generate nested children. How do we let developers customize styles on nested children. My instinct is that we should only expose style props on those children that would be customizable? But would this tightly couple our styles with a component's dom structure? What I mean is, if we end up changing a component's dom structure, would we end up changing it's style props as well?

Thanks for all of your help and feedback so far - I'm looking forward to what everyone has to say.

@pspeter3
Copy link

Was there a video about this idea at the React conference?

@pablofierro
Copy link

I was looking forward to using this library but seeing everything uses inline styles was a huge turn down, I do not understand why you would do this, I read the slides on why it was done but it makes no sense, why merge appearance, views and logic into one single thing, separation of concerns people, that's one of the most solid statements for software engineering.

@wmertens
Copy link

Pablo, these concerns are not separate. If you want things to look
differently you can use the theme manager, a true separation of concerns.
For the rest, what components should do and their html and css are closely
coupled, and separating that out just makes things more complex.

On Sun, Aug 23, 2015, 05:35 Pablo Fierro notifications@github.com wrote:

I was looking forward to using this library but seeing everything uses
inline styles was a huge turn down, I do not understand why you would do
this, I read the slides on why it was done but it makes no sense, why merge
appearance, views and logic into one single thing, separation of concerns
people, that's one of the most solid statements for software engineering.


Reply to this email directly or view it on GitHub
#30 (comment)
.

Wout.
(typed on mobile, excuse terseness)

@grrowl
Copy link

grrowl commented Aug 27, 2015

I agree with @pablofierro — inline styles can't be cached by the browser and we lose fairly basic CSS functionality like :hover, sibling selectors or any notion of cascading styles.

It's a compromise to go with inline styles to enable static client-side-only apps and avoid dependencies on pre-processing toolchains (webpack, etc), but it lets down larger projects with the extra capability (isomorphic apps most prominently). I'd love the option using external stylesheets or use of CSS Modules support but it'd screw over the simpler cases.

@Kagami
Copy link

Kagami commented Aug 27, 2015

@grrowl cascades are considered bad practice in large stylesheet codebases anyway. See e.g. BEM approach.

@pablofierro
Copy link

@Kagami considered bad practice by whom ? If you break your stylesheets into reusable modules(similar to the react philosophy) this becomes highly maintainable. Even React's webpage mentions it is the View for your components and not the appearance, this decision of forcing everything to be inline is just plain ridiculous.

@rozzzly
Copy link

rozzzly commented Aug 30, 2015

This needs to be changed. Inlining certainly has it's benefits in some use cases, but the resulting markup is:

  • bloated -- a ton of bandwidth is gonna be used up just to send down the style. In every request. For every element node... Just a quick estimate--I don't care to spend any time doing the metrics--here, but it would not be unreasonable to assert that the resulting markup could be 5x LARGER for some run of the mill app. And what if you have an app with many, many DOM nodes? And how does that affect memory overhead and performance? This brings in a whole host of implications that we shouldn't have to deal with.
  • ugly -- have fun reading what it generates, its about as enjoyable as reading raw/unformatted minified css.
  • and stupid -- all the way back to the CSS 1 spec, the WW3C included classes for a reason. This approach styling throws the flexibility/rapid prototyping/functionality the community has gained by creating LESS/SCSS/etc. etc. out of the window. You can already see the wheel being reinvented; scroll up though this thread and look at all the comments suggesting different libraries/whatever for extracting the css from javascript.

But wait! There's more:

  • No out of the box IDE support
  • No psuedoclass support

Guys: this is something jquery can do. Why do we have to dredge this up to the surface? moreover force it by default?

a fun case-in-point

Open Chrome Developer Tools
Try making some style edits--change the background color or something--to a page that has several mui components of the same type, e.g. the <MenuItem ...>'s in a navigation menu.

it only changes that component. What about React Devtools? nope same thing.

I don't mean to be a dick--although I most assuredly sound like one, but as @pablofierro said, this is ridiculous. This functionality may be cool, the lack of css dependencies is very appealing. But ripping out the .css doesn't make sense.

@rozzzly
Copy link

rozzzly commented Aug 30, 2015

I should add; I'd be more than happy to create a PR. I just want to hear what the community has to say about reimplementing this; hopefully come to some kind on consensus on how to go about this.

@oliviertassinari
Copy link
Member

What do you suggest to do instead? For my use case (Cordova app) the inlined approach is relay great.

@DylanPiercey
Copy link

@oliviertassinari it seems like the biggest benifit of inline styles is that the project does not need to have an external style sheet as a dependency.

If this is the case, I would recommend reverting back to classes (as it seems many want that and it seems to make things simpler) and instead exposing all of the CSS via a string.

/*styles.css for people who are fine with a separate file*/
.my-styles {...}
// styles.js (expose as "material-ui/theme" or something)

var css = { __html: "injected styles.css content" };

// alternatively we could expose a component.
module.exports = (
    <style dangerouslySetInnerHTMLIfYouAreSureItIsWhatYouWantToDo={ css }/>
);

This way people can use the theme directly with JavaScript by:

theme = require("material-ui/theme");

MyJSX = (
    <div>{ theme }</div>
);

Pros:

  • its just css
  • potentially multiple themes without it all being bundled
  • can be imported through js, css pre processor or manually in html.

Cons:

  • a bunch of time was spent making all styles inline.

@smontlouis
Copy link

@rozzzly +1111111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

With MUI -> http://recordit.co/9mBknPLZUb
Without MUI -> http://recordit.co/6MkzWhQiBt

@oliviertassinari
Copy link
Member

Well @rozzzly I disagree.

  • bloated. Sure, we use more bandwidth to send the style when the user arrives in the site.
    But latency and not bandwidth, is the performance bottleneck for most websites. for more detail.
    So, I think that sending the style inlined lower down the first render time. And this is what really matters for users. You don't have to wait the RTT (round-trip time) to have the style.
  • ugly. Yeap, it's not easy to read. Why do you need to read it?
  • and stupid. Facebook explained their motivations for using inlined style. It's pretty convincing. The link

@iclanzan
Copy link

iclanzan commented Sep 4, 2015

I’ve been using inline styles exclusively for more than 6 months and it has been a liberating experience. Styles have become more manageable, flexible and with far less surprises compared to CSS.

@adamscybot
Copy link

I personally agree with @rozzzly who details the issues well. This just isn't a good idea at scale. CSS works. We're reinventing the wheel just so its more "portable". This insane change boils down to fixing one problem -- including css. This would take 1 line of explanation in the readme. Not to mention, even rookie developers are well versed in including CSS in HTML or with their build tool. This isn't new people.

Instead we're rebuilding styling for web pages in JS. It just seems silly. Absolutely basic styling features like pseudo elements? Gone. SASS/LESS compilation? Gone.

@mpseidel
Copy link

Hey everyone. I started using material-ui in a side project and have been following the discussion here and here.

I wanted to add a few points to the mix:

Does this make sence for smaller applications?
I have written a lot of smaller internal web apps for businesses using bootstrap and the like. I have never felt much pain when having to include some more component-css alongside its markup and js. I'ts a one time effort. Conflicts were very seldom an issue and easy to resolve most of the time.

But I defenitely feel pain looking at the DOM in my devtools now. Even seeing the basic tree structure is much much harder with all the inline styles. And this pain is not a one time thing - its coming back everytime I open up devtools.

Are we alienating CSS-savvy designers here with this approach?
With all the styles embedded in JavaScript it seems hard for designers that are used to draft and edit working in CSS files. Aren't they now forced to learn JavaScript, ES6, transpilers, buildtools etc and are much more likely to break stuff?

Maybe thats not a bad thing - I am all for cross functional teams and I haven't worked with "component designers" yet, but I want to make sure designers get considered in this discussion as well.

Also:

+1 for separation of concerns - styling and ui logic have to be separated in my book
+1 for considering lack of IDE-Support

I absolutely agree that there are problems with CSS especially at scale. I hope this discussion leads to a better place for all of us in this regard.

@wmertens
Copy link

Well, I too found the talk convincing but in practice using mostly css with
module-based renaming and maybe some inline styling is what is easiest to
work with imho.

On Tue, Nov 24, 2015, 9:49 AM Owen Campbell-Moore notifications@github.com
wrote:

For what it's worth, use of inline styles was a large reason I became a
huge fan of MUI. I found the talk by Facebook extremely convincing and
personally feel that style and structure do not make sense to be separated
when building UIs.


Reply to this email directly or view it on GitHub
#30 (comment)
.

Wout.
(typed on mobile, excuse terseness)

@justjacksonn
Copy link

Interesting points @mpseidel. I however think as more and more frameworks move towards components, it seems to me keeping the JS and CSS together as part of the component makes more sense than having a more global css include that covers a range of components, pages, etc. However, the concept of theming components has me scratching my head.. I don't know CSS much, so maybe there is an easy way for components to pick up theming styles to overwrite their default styles so that component writers can have their components fit in with an overall theme style? If there is I'd like to understand that more.

@akaRem
Copy link

akaRem commented Dec 10, 2015

There is a big discussion here. And It's hard to guess overall direction.
Can anyone estimate the chances that styles will be returned to their place?

I don't use material-ui yet. And from my "fresh" point of view, I see these problems which beware me of using this project in future:

  • presentation and logic layers are messed
  • performance degradation due to inline styles
  • hard to add own styles
  • Ugly unreadable DOM

I don't see any benefits from inline styles.

It would be better to reorganize less/sass/css in more readable and maintainable way than try to reinvent styling from scratch.

@oliviertassinari
Copy link
Member

This discussion is pretty much finished.
Please follow #684.

@akaRem
Copy link

akaRem commented Dec 10, 2015

@oliviertassinari .. it means no way back to CSS?

@oliviertassinari
Copy link
Member

It means that we are exploring options to improve the current style approach (CSS Modules, Radium, Looks, react-themeable).

@mui mui locked and limited conversation to collaborators Dec 10, 2015
@mui mui unlocked this conversation Apr 22, 2018
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
@zannager zannager added the customization: css Design CSS customizability label Dec 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
customization: css Design CSS customizability
Projects
None yet
Development

No branches or pull requests