diff --git a/package.json b/package.json
index 57c2440..d9b9d63 100644
--- a/package.json
+++ b/package.json
@@ -3,8 +3,6 @@
"version": "0.1.0",
"private": true,
"dependencies": {
- "@material-ui/core": "^4.9.10",
- "@material-ui/icons": "^4.9.1",
"firebase": "^7.14.0",
"fuse.js": "^5.2.3",
"normalize.css": "^8.0.1",
diff --git a/public/images/icons/add.png b/public/images/icons/add.png
new file mode 100644
index 0000000..832de93
Binary files /dev/null and b/public/images/icons/add.png differ
diff --git a/public/images/icons/chevron-right.png b/public/images/icons/chevron-right.png
new file mode 100644
index 0000000..619599a
Binary files /dev/null and b/public/images/icons/chevron-right.png differ
diff --git a/public/images/icons/close-slim.png b/public/images/icons/close-slim.png
new file mode 100644
index 0000000..63bffcf
Binary files /dev/null and b/public/images/icons/close-slim.png differ
diff --git a/public/images/icons/close.png b/public/images/icons/close.png
new file mode 100644
index 0000000..bd90fe8
Binary files /dev/null and b/public/images/icons/close.png differ
diff --git a/public/images/icons/search.png b/public/images/icons/search.png
new file mode 100644
index 0000000..f9b2253
Binary files /dev/null and b/public/images/icons/search.png differ
diff --git a/src/components/accordion/index.js b/src/components/accordion/index.js
index 5f1aeb1..d8c30bc 100644
--- a/src/components/accordion/index.js
+++ b/src/components/accordion/index.js
@@ -1,6 +1,4 @@
import React, { useState, useContext, createContext } from 'react';
-import AddIcon from '@material-ui/icons/Add';
-import CloseIcon from '@material-ui/icons/Close';
import { Container, Frame, Title, Item, Inner, Header, Body } from './styles/accordion';
const ToggleContext = createContext();
@@ -37,7 +35,11 @@ Accordion.Header = function AccordionHeader({ children, ...restProps }) {
return (
setToggleShow(!toggleShow)} {...restProps}>
{children}
- {toggleShow ? : }
+ {toggleShow ? (
+
+ ) : (
+
+ )}
);
};
diff --git a/src/components/accordion/styles/accordion.js b/src/components/accordion/styles/accordion.js
index 07a903f..a9d8f91 100644
--- a/src/components/accordion/styles/accordion.js
+++ b/src/components/accordion/styles/accordion.js
@@ -51,6 +51,11 @@ export const Header = styled.div`
user-select: none;
align-items: center;
+ img {
+ filter: brightness(0) invert(1);
+ width: 24px;
+ }
+
@media (max-width: 600px) {
font-size: 16px;
}
diff --git a/src/components/card/index.js b/src/components/card/index.js
index 9828bc8..cb9dc30 100644
--- a/src/components/card/index.js
+++ b/src/components/card/index.js
@@ -1,5 +1,4 @@
import React, { useState, useContext, createContext } from 'react';
-import CancelIcon from '@material-ui/icons/Cancel';
import {
Container,
@@ -10,6 +9,7 @@ import {
Feature,
FeatureTitle,
FeatureText,
+ FeatureClose,
Maturity,
Content,
Meta,
@@ -83,7 +83,9 @@ Card.Feature = function CardFeature({ children, category, ...restProps }) {
{itemFeature.title}
{itemFeature.description}
- setShowFeature(false)} />
+ setShowFeature(false)}>
+
+
{itemFeature.maturity < 12 ? 'PG' : itemFeature.maturity}
diff --git a/src/components/card/styles/card.js b/src/components/card/styles/card.js
index c1c83d3..03f8d85 100644
--- a/src/components/card/styles/card.js
+++ b/src/components/card/styles/card.js
@@ -156,19 +156,26 @@ export const FeatureTitle = styled(Title)`
margin-left: 0;
`;
+export const FeatureClose = styled.button`
+ color: white;
+ position: absolute;
+ right: 20px;
+ top: 20px;
+ cursor: pointer;
+ background-color: transparent;
+ border: 0;
+
+ img {
+ filter: brightness(0) invert(1);
+ width: 24px;
+ }
+`;
+
export const Content = styled.div`
margin: 56px;
max-width: 500px;
line-height: normal;
- svg.cancel {
- color: white;
- position: absolute;
- right: 20px;
- top: 20px;
- cursor: pointer;
- }
-
@media (max-width: 1000px) {
margin: 30px;
max-width: none;
diff --git a/src/components/header/index.js b/src/components/header/index.js
index 72b1cdd..430fe6e 100644
--- a/src/components/header/index.js
+++ b/src/components/header/index.js
@@ -1,6 +1,4 @@
import React, { useState } from 'react';
-import SearchIcon from '@material-ui/icons/Search';
-import ArrowDropDownIcon from '@material-ui/icons/ArrowDropDown';
import { Link as ReachRouterLink } from 'react-router-dom';
import {
Container,
@@ -12,6 +10,7 @@ import {
Search,
Profile,
FeatureCallOut,
+ SearchIcon,
SearchInput,
ButtonLink,
PlayButton,
@@ -45,7 +44,9 @@ Header.Search = function HeaderSearch({ searchTerm, setSearchTerm, ...restProps
return (
- setSearchActive(!searchActive)} />
+ setSearchActive(!searchActive)}>
+
+
setSearchTerm(target.value)}
@@ -57,12 +58,7 @@ Header.Search = function HeaderSearch({ searchTerm, setSearchTerm, ...restProps
};
Header.Profile = function HeaderProfile({ children, ...restProps }) {
- return (
-
- {children}
-
-
- );
+ return {children};
};
Header.Feature = function HeaderFeature({ children, ...restProps }) {
diff --git a/src/components/header/styles/header.js b/src/components/header/styles/header.js
index 8cd5cf3..9aa2607 100644
--- a/src/components/header/styles/header.js
+++ b/src/components/header/styles/header.js
@@ -77,6 +77,17 @@ export const Search = styled.div`
}
`;
+export const SearchIcon = styled.button`
+ cursor: pointer;
+ background-color: transparent;
+ border: 0;
+
+ img {
+ filter: brightness(0) invert(1);
+ width: 16px;
+ }
+`;
+
export const ButtonLink = styled(ReachRouterLink)`
display: block;
background-color: #e50914;
@@ -147,13 +158,7 @@ export const Profile = styled.div`
margin-left: 20px;
position: relative;
- svg {
- color: white;
- margin-left: 5px;
- }
-
- button,
- svg {
+ button {
cursor: pointer;
}
diff --git a/src/components/opt-form/index.js b/src/components/opt-form/index.js
index d6467f2..f53f4f3 100644
--- a/src/components/opt-form/index.js
+++ b/src/components/opt-form/index.js
@@ -1,5 +1,4 @@
import React from 'react';
-import ChevronRightIcon from '@material-ui/icons/ChevronRight';
import { Container, Input, Break, Button, Text } from './styles/opt-form';
export default function OptForm({ children, ...restProps }) {
@@ -13,7 +12,7 @@ OptForm.Input = function OptFormInput({ ...restProps }) {
OptForm.Button = function OptFormButton({ children, ...restProps }) {
return (
);
};
diff --git a/src/components/opt-form/styles/opt-form.js b/src/components/opt-form/styles/opt-form.js
index 534ef33..391b0c6 100644
--- a/src/components/opt-form/styles/opt-form.js
+++ b/src/components/opt-form/styles/opt-form.js
@@ -40,6 +40,12 @@ export const Button = styled.button`
border: 0;
cursor: pointer;
+ img {
+ margin-left: 10px;
+ filter: brightness(0) invert(1);
+ width: 24px;
+ }
+
&:hover {
background: #f40612;
}
diff --git a/src/components/player/index.js b/src/components/player/index.js
index 2581bab..5988a88 100644
--- a/src/components/player/index.js
+++ b/src/components/player/index.js
@@ -1,5 +1,4 @@
import React, { useState, useContext, createContext } from 'react';
-import PlayArrowIcon from '@material-ui/icons/PlayArrow';
import ReactDOM from 'react-dom';
import { Container, Button, Overlay, Inner } from './styles/player';
@@ -35,10 +34,5 @@ Player.Video = function PlayerVideo({ ...restProps }) {
Player.Button = function PlayerButton({ ...restProps }) {
const { showPlayer, setShowPlayer } = useContext(PlayerContext);
- return (
-
- );
+ return ;
};
diff --git a/src/components/player/styles/player.js b/src/components/player/styles/player.js
index 7f33fdd..3360dc7 100644
--- a/src/components/player/styles/player.js
+++ b/src/components/player/styles/player.js
@@ -81,8 +81,4 @@ export const Button = styled.button`
transform: scale(1.05);
background-color: #ff0a16;
}
-
- svg.play {
- margin-right: 5px;
- }
`;
diff --git a/yarn.lock b/yarn.lock
index da7c199..ab3d6b6 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -921,7 +921,7 @@
dependencies:
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.0", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3":
+"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.0":
version "7.9.2"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06"
integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==
@@ -1003,11 +1003,6 @@
resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18"
integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==
-"@emotion/hash@^0.8.0":
- version "0.8.0"
- resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
- integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
-
"@emotion/is-prop-valid@^0.8.8":
version "0.8.8"
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
@@ -1448,76 +1443,6 @@
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^13.0.0"
-"@material-ui/core@^4.9.10":
- version "4.9.10"
- resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.10.tgz#53f1d18bd274c258698b6cfdab3c4bee0edf7892"
- integrity sha512-CQuZU9Y10RkwSdxjn785kw2EPcXhv5GKauuVQufR9LlD37kjfn21Im1yvr6wsUzn81oLhEvVPz727UWC0gbqxg==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@material-ui/styles" "^4.9.10"
- "@material-ui/system" "^4.9.10"
- "@material-ui/types" "^5.0.1"
- "@material-ui/utils" "^4.9.6"
- "@types/react-transition-group" "^4.2.0"
- clsx "^1.0.4"
- hoist-non-react-statics "^3.3.2"
- popper.js "^1.16.1-lts"
- prop-types "^15.7.2"
- react-is "^16.8.0"
- react-transition-group "^4.3.0"
-
-"@material-ui/icons@^4.9.1":
- version "4.9.1"
- resolved "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.9.1.tgz#fdeadf8cb3d89208945b33dbc50c7c616d0bd665"
- integrity sha512-GBitL3oBWO0hzBhvA9KxqcowRUsA0qzwKkURyC8nppnC3fw54KPKZ+d4V1Eeg/UnDRSzDaI9nGCdel/eh9AQMg==
- dependencies:
- "@babel/runtime" "^7.4.4"
-
-"@material-ui/styles@^4.9.10":
- version "4.9.10"
- resolved "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.9.10.tgz#182ccdd0bc8525a459486499bbaebcd92b0db3ab"
- integrity sha512-EXIXlqVyFDnjXF6tj72y6ZxiSy+mHtrsCo3Srkm3XUeu3Z01aftDBy7ZSr3TQ02gXHTvDSBvegp3Le6p/tl7eA==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@emotion/hash" "^0.8.0"
- "@material-ui/types" "^5.0.1"
- "@material-ui/utils" "^4.9.6"
- clsx "^1.0.2"
- csstype "^2.5.2"
- hoist-non-react-statics "^3.3.2"
- jss "^10.0.3"
- jss-plugin-camel-case "^10.0.3"
- jss-plugin-default-unit "^10.0.3"
- jss-plugin-global "^10.0.3"
- jss-plugin-nested "^10.0.3"
- jss-plugin-props-sort "^10.0.3"
- jss-plugin-rule-value-function "^10.0.3"
- jss-plugin-vendor-prefixer "^10.0.3"
- prop-types "^15.7.2"
-
-"@material-ui/system@^4.9.10":
- version "4.9.10"
- resolved "https://registry.yarnpkg.com/@material-ui/system/-/system-4.9.10.tgz#5de6ec7bea0f222b10b45e5bd5bb8b9a7b938926"
- integrity sha512-E+t0baX2TBZk6ALm8twG6objpsxLdMM4MDm1++LMt2m7CetCAEc3aIAfDaprk4+tm5hFT1Cah5dRWk8EeIFQYw==
- dependencies:
- "@babel/runtime" "^7.4.4"
- "@material-ui/utils" "^4.9.6"
- prop-types "^15.7.2"
-
-"@material-ui/types@^5.0.1":
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/@material-ui/types/-/types-5.0.1.tgz#c4954063cdc196eb327ee62c041368b1aebb6d61"
- integrity sha512-wURPSY7/3+MAtng3i26g+WKwwNE3HEeqa/trDBR5+zWKmcjO+u9t7Npu/J1r+3dmIa/OeziN9D/18IrBKvKffw==
-
-"@material-ui/utils@^4.9.6":
- version "4.9.6"
- resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.9.6.tgz#5f1f9f6e4df9c8b6a263293b68c94834248ff157"
- integrity sha512-gqlBn0JPPTUZeAktn1rgMcy9Iczrr74ecx31tyZLVGdBGGzsxzM6PP6zeS7FuoLS6vG4hoZP7hWnOoHtkR0Kvw==
- dependencies:
- "@babel/runtime" "^7.4.4"
- prop-types "^15.7.2"
- react-is "^16.8.0"
-
"@mrmlnc/readdir-enhanced@^2.2.1":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
@@ -1794,31 +1719,11 @@
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
-"@types/prop-types@*":
- version "15.7.3"
- resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
- integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
-
"@types/q@^1.5.1":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
-"@types/react-transition-group@^4.2.0":
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.2.4.tgz#c7416225987ccdb719262766c1483da8f826838d"
- integrity sha512-8DMUaDqh0S70TjkqU0DxOu80tFUiiaS9rxkWip/nb7gtvAsbqOXm02UCmR8zdcjWujgeYPiPNTVpVpKzUDotwA==
- dependencies:
- "@types/react" "*"
-
-"@types/react@*":
- version "16.9.34"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.34.tgz#f7d5e331c468f53affed17a8a4d488cd44ea9349"
- integrity sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==
- dependencies:
- "@types/prop-types" "*"
- csstype "^2.2.0"
-
"@types/stack-utils@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
@@ -3149,11 +3054,6 @@ clone-deep@^4.0.1:
kind-of "^6.0.2"
shallow-clone "^3.0.0"
-clsx@^1.0.2, clsx@^1.0.4:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.0.tgz#62937c6adfea771247c34b54d320fb99624f5702"
- integrity sha512-3avwM37fSK5oP6M5rQ9CNe99lwxhXDOeSWVPAOYF6OazUTgZCMb0yWlJpmdD74REy1gkEaFiub2ULv4fq9GUhA==
-
co@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
@@ -3588,14 +3488,6 @@ css-tree@1.0.0-alpha.37:
mdn-data "2.0.4"
source-map "^0.6.1"
-css-vendor@^2.0.7:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz#e47f91d3bd3117d49180a3c935e62e3d9f7f449d"
- integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==
- dependencies:
- "@babel/runtime" "^7.8.3"
- is-in-browser "^1.0.2"
-
css-what@2.1:
version "2.1.3"
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
@@ -3718,11 +3610,6 @@ cssstyle@^1.0.0, cssstyle@^1.1.1:
dependencies:
cssom "0.3.x"
-csstype@^2.2.0, csstype@^2.5.2, csstype@^2.6.5, csstype@^2.6.7:
- version "2.6.10"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b"
- integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w==
-
cyclist@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
@@ -3967,14 +3854,6 @@ dom-converter@^0.2:
dependencies:
utila "~0.4"
-dom-helpers@^5.0.1:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.1.4.tgz#4609680ab5c79a45f2531441f1949b79d6587f4b"
- integrity sha512-TjMyeVUvNEnOnhzs6uAn9Ya47GmMo3qq7m+Lr/3ON0Rs5kHvb8I+SQYjLUSYn7qhEm0QjW0yrBkvz9yOrwwz1A==
- dependencies:
- "@babel/runtime" "^7.8.7"
- csstype "^2.6.7"
-
dom-serializer@0:
version "0.2.2"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
@@ -5344,7 +5223,7 @@ hmac-drbg@^1.0.0:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1"
-hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.2:
+hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0:
version "3.3.2"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
@@ -5510,11 +5389,6 @@ https-browserify@^1.0.0:
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
-hyphenate-style-name@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz#097bb7fa0b8f1a9cf0bd5c734cf95899981a9b48"
- integrity sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==
-
iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
@@ -5916,11 +5790,6 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
dependencies:
is-extglob "^2.1.1"
-is-in-browser@^1.0.2, is-in-browser@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835"
- integrity sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=
-
is-number@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
@@ -6687,75 +6556,6 @@ jsprim@^1.2.2:
json-schema "0.2.3"
verror "1.10.0"
-jss-plugin-camel-case@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.1.1.tgz#8e73ecc4f1d0f8dfe4dd31f6f9f2782588970e78"
- integrity sha512-MDIaw8FeD5uFz1seQBKz4pnvDLnj5vIKV5hXSVdMaAVq13xR6SVTVWkIV/keyTs5txxTvzGJ9hXoxgd1WTUlBw==
- dependencies:
- "@babel/runtime" "^7.3.1"
- hyphenate-style-name "^1.0.3"
- jss "10.1.1"
-
-jss-plugin-default-unit@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.1.1.tgz#2df86016dfe73085eead843f5794e3890e9c5c47"
- integrity sha512-UkeVCA/b3QEA4k0nIKS4uWXDCNmV73WLHdh2oDGZZc3GsQtlOCuiH3EkB/qI60v2MiCq356/SYWsDXt21yjwdg==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.1.1"
-
-jss-plugin-global@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.1.1.tgz#36b0d6d9facb74dfd99590643708a89260747d14"
- integrity sha512-VBG3wRyi3Z8S4kMhm8rZV6caYBegsk+QnQZSVmrWw6GVOT/Z4FA7eyMu5SdkorDlG/HVpHh91oFN56O4R9m2VA==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.1.1"
-
-jss-plugin-nested@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.1.1.tgz#5c3de2b8bda344de1ebcef3a4fd30870a29a8a8c"
- integrity sha512-ozEu7ZBSVrMYxSDplPX3H82XHNQk2DQEJ9TEyo7OVTPJ1hEieqjDFiOQOxXEj9z3PMqkylnUbvWIZRDKCFYw5Q==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.1.1"
- tiny-warning "^1.0.2"
-
-jss-plugin-props-sort@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.1.1.tgz#34bddcbfaf9430ec8ccdf92729f03bb10caf1785"
- integrity sha512-g/joK3eTDZB4pkqpZB38257yD4LXB0X15jxtZAGbUzcKAVUHPl9Jb47Y7lYmiGsShiV4YmQRqG1p2DHMYoK91g==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.1.1"
-
-jss-plugin-rule-value-function@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.1.1.tgz#be00dac6fc394aaddbcef5860b9eca6224d96382"
- integrity sha512-ClV1lvJ3laU9la1CUzaDugEcwnpjPTuJ0yGy2YtcU+gG/w9HMInD5vEv7xKAz53Bk4WiJm5uLOElSEshHyhKNw==
- dependencies:
- "@babel/runtime" "^7.3.1"
- jss "10.1.1"
-
-jss-plugin-vendor-prefixer@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.1.1.tgz#8348b20749f790beebab3b6a8f7075b07c2cfcfd"
- integrity sha512-09MZpQ6onQrhaVSF6GHC4iYifQ7+4YC/tAP6D4ZWeZotvCMq1mHLqNKRIaqQ2lkgANjlEot2JnVi1ktu4+L4pw==
- dependencies:
- "@babel/runtime" "^7.3.1"
- css-vendor "^2.0.7"
- jss "10.1.1"
-
-jss@10.1.1, jss@^10.0.3:
- version "10.1.1"
- resolved "https://registry.yarnpkg.com/jss/-/jss-10.1.1.tgz#450b27d53761af3e500b43130a54cdbe157ea332"
- integrity sha512-Xz3qgRUFlxbWk1czCZibUJqhVPObrZHxY3FPsjCXhDld4NOj1BgM14Ir5hVm+Qr6OLqVljjGvoMcCdXNOAbdkQ==
- dependencies:
- "@babel/runtime" "^7.3.1"
- csstype "^2.6.5"
- is-in-browser "^1.1.3"
- tiny-warning "^1.0.2"
-
jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f"
@@ -8122,11 +7922,6 @@ pnp-webpack-plugin@1.6.4:
dependencies:
ts-pnp "^1.1.6"
-popper.js@^1.16.1-lts:
- version "1.16.1"
- resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
- integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==
-
portfinder@^1.0.25:
version "1.0.25"
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca"
@@ -9122,7 +8917,7 @@ react-error-overlay@^6.0.7:
resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108"
integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==
-react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.0, react-is@^16.8.1, react-is@^16.8.4:
+react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
@@ -9216,16 +9011,6 @@ react-scripts@3.4.1:
optionalDependencies:
fsevents "2.1.2"
-react-transition-group@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.3.0.tgz#fea832e386cf8796c58b61874a3319704f5ce683"
- integrity sha512-1qRV1ZuVSdxPlPf4O8t7inxUGpdyO5zG9IoNfJxSO0ImU2A1YWkEQvFPuIPZmMLkg5hYs7vv5mMOyfgSkvAwvw==
- dependencies:
- "@babel/runtime" "^7.5.5"
- dom-helpers "^5.0.1"
- loose-envify "^1.4.0"
- prop-types "^15.6.2"
-
react@^16.13.1:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"