diff --git a/package.json b/package.json
index acacedb..f27da74 100644
--- a/package.json
+++ b/package.json
@@ -19,6 +19,8 @@
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
+ "@material-ui/core": "^4.12.4",
+ "@material-ui/icons": "^4.11.3",
"@mui/material": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
diff --git a/pages/_app.tsx b/pages/_app.tsx
index 3e098e7..a675f3a 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -11,7 +11,6 @@ import '../styles/nprogress/nprogress.css'
import '../styles/globals.ts'
import Home from '.'
-
import Head from 'next/head'
function MyApp({ Component, pageProps }: AppProps) {
@@ -58,4 +57,4 @@ function MyApp({ Component, pageProps }: AppProps) {
)
}
-export default MyApp
+export default MyApp;
diff --git a/pages/_document.tsx b/pages/_document.tsx
index 6c85a23..5c0e6cb 100644
--- a/pages/_document.tsx
+++ b/pages/_document.tsx
@@ -41,11 +41,7 @@ export default class MyDocument extends Document {
-
-
-
-
-
+
diff --git a/pages/areaTest.tsx b/pages/areaTest.tsx
index 17c2cfa..9c62295 100644
--- a/pages/areaTest.tsx
+++ b/pages/areaTest.tsx
@@ -1,13 +1,81 @@
import React from 'react'
import BasicButton from '../src/components/buttons/basicButton/BasicButton'
+<<<<<<< HEAD
+import Image from 'next/image';
+=======
import GradientButton from '../src/components/buttons/gradientButton/GradientButton'
+>>>>>>> d76992f98de0130492c71a92530d12b04793ecac
import Graph from '../src/components/graph/Chart'
+import Box from '@mui/material/Box';
+import IconButton from '@mui/material/IconButton';
+import Input from '@mui/material/Input';
+import FilledInput from '@mui/material/FilledInput';
+import OutlinedInput from '@mui/material/OutlinedInput';
+import InputLabel from '@mui/material/InputLabel';
+import InputAdornment from '@mui/material/InputAdornment';
+import FormHelperText from '@mui/material/FormHelperText';
+import FormControl from '@mui/material/FormControl';
+import TextField from '@mui/material/TextField';
+
+
+
+
export default function areaTest() {
+
+ const [values, setValues] = React.useState({
+ amount: '',
+ password: '',
+ weight: '',
+ weightRange: '',
+ showPassword: false,
+ });
+ const handleChange =
+ (prop) => (event: React.ChangeEvent) => {
+ setValues({ ...values, [prop]: event.target.value });
+ };
+ const handleClickShowPassword = () => {
+ setValues({
+ ...values,
+ showPassword: !values.showPassword,
+ });
+ };
+ const handleMouseDownPassword = (event: React.MouseEvent) => {
+ event.preventDefault();
+ };
+
return (
+<<<<<<< HEAD
+ //
+
+ Password
+
+
+ {values.showPassword ? : }
+
+
+ }
+ label="Password"
+ />
+
+
+=======
<>
>
+>>>>>>> d76992f98de0130492c71a92530d12b04793ecac
)
}
diff --git a/pages/index.tsx b/pages/index.tsx
index 100e637..82342e5 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -1,42 +1,92 @@
-import React, { useState, useEffect } from 'react'
+import React, { useState } from 'react'
import Image from 'next/image';
import Link from 'next/link';
import { useRouter } from 'next/router'
+import OutlinedInput from '@mui/material/OutlinedInput';
+import InputLabel from '@mui/material/InputLabel';
+import InputAdornment from '@mui/material/InputAdornment';
+import LoginButton from '../src/components/buttons/loginButton/LoginButton';
+import FormControl from '@mui/material/FormControl';
+import IconButton from '@mui/material/IconButton';
+import TextField from '@mui/material/TextField';
-import { LoginView} from '../styles/layouts/login/LoginView';
-import { truncateSync } from 'fs';
+import {AiOutlineEyeInvisible, AiOutlineEye} from 'react-icons/ai';
-interface HomeInterface {
- auth: any
-}
+import { LoginView, LoginContainer } from '../styles/layouts/login/LoginView';
-export default function Home({ auth }: HomeInterface) {
+export default function Home() {
+ const [state, setstate]=useState(false);
+
+ const toggleBtn = ()=> {
+ setstate(prevState => !prevState);
+ }
+ const [values, setValues] = React.useState({
+ password: '',
+ showPassword: false,
+ });
const router = useRouter()
const rota = router.pathname
+ const handleChange = (prop) => (event) => {
+ setValues({ ...values, [prop]: event.target.value });
+ };
+
+ const handleClickShowPassword = () => {
+ setValues({
+ ...values,
+ showPassword: !values.showPassword,
+ });
+ };
+
+ const handleMouseDownPassword = (event) => {
+ event.preventDefault();
+ };
+
return (
-
-
+
)
}
+
+
diff --git a/pages/resumoOperacao.tsx b/pages/resumoOperacao.tsx
index 6f43c9b..68eed00 100644
--- a/pages/resumoOperacao.tsx
+++ b/pages/resumoOperacao.tsx
@@ -2,11 +2,9 @@ import React from 'react';
import Header from '../src/components/header/Header';
import PageTitle from '../src/components/pageTitle/PageTitle';
import BasicButton from '../src/components/buttons/basicButton/BasicButton';
-import Header from '../src/components/header/Header';
-import PageTitle from '../src/components/pageTitle/PageTitle';
import Sidebar from '../src/components/sidebar/Sidebar';
-import { TableView } from '../styles/layouts/ResumoOperacao/ResumoOperacaoView';
+import { Pagination, TableView } from '../styles/layouts/ResumoOperacao/ResumoOperacaoView';
export default function ResumoOperacao() {
return(
diff --git a/public/eye-svgrepo-com.svg b/public/eye-svgrepo-com.svg
new file mode 100644
index 0000000..045a9b3
--- /dev/null
+++ b/public/eye-svgrepo-com.svg
@@ -0,0 +1,57 @@
+
+
+
+
diff --git a/src/components/buttons/loginButton/LoginButton.tsx b/src/components/buttons/loginButton/LoginButton.tsx
index 37d374a..54214a8 100644
--- a/src/components/buttons/loginButton/LoginButton.tsx
+++ b/src/components/buttons/loginButton/LoginButton.tsx
@@ -1,3 +1,4 @@
+import Link from 'next/link'
import React from 'react'
import { LoginButtonView } from './LoginButtonView'
@@ -7,8 +8,10 @@ interface LoginButtonInterface {
export default function LoginButton({ title }: LoginButtonInterface) {
return (
-
- {title}
-
+
+
+ {title}
+
+
)
}
diff --git a/src/components/buttons/loginButton/LoginButtonView.ts b/src/components/buttons/loginButton/LoginButtonView.ts
index 337672b..35e9fb7 100644
--- a/src/components/buttons/loginButton/LoginButtonView.ts
+++ b/src/components/buttons/loginButton/LoginButtonView.ts
@@ -1,19 +1,24 @@
import styled from 'styled-components'
export const LoginButtonView = styled.button`
- width: 100%;
- height: 95px;
+ width: 90%;
+ height:100%;
+ min-height: 4rem;
+
+
border-radius: 8px;
- background: linear-gradient(88.75deg, #254F7F 0.18%, #888888 99.28);
+ background: rgb(2,0,36);
+ background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(37,79,127,1) 35%, rgba(136,136,136,1) 100%);
font-family: 'Nunito Sans';
- font-style: normal;
font-weight: 700;
- font-size: 32px;
+ font-size: calc(99.98% + 10px);
line-height: 44px;
text-align: center;
- letter-spacing: 0.03em;
+ border: none;
+ cursor: pointer;
color: #FFFFFF;
+
`
diff --git a/src/components/graph/Chart.tsx b/src/components/graph/Chart.tsx
index 9478286..0fbd3e4 100644
--- a/src/components/graph/Chart.tsx
+++ b/src/components/graph/Chart.tsx
@@ -54,12 +54,12 @@ export default function Chart({ title }: ChartInterface) {
{
label: '2020',
data: labels.map(() => faker.datatype.number({ min: 0, max: 1200 })),
- backgroundColor: 'rgba(53, 162, 235, 5)',
+ backgroundColor: '#C2D5FB',
},
{
label: '2021',
data: labels.map(() => faker.datatype.number({ min: 0, max: 1200 })),
- backgroundColor: 'rgba(0, 81, 255, 1)',
+ backgroundColor: '#255488',
},
],
})
diff --git a/src/components/sidebar/Sidebar.tsx b/src/components/sidebar/Sidebar.tsx
index 282ce6f..a867c68 100644
--- a/src/components/sidebar/Sidebar.tsx
+++ b/src/components/sidebar/Sidebar.tsx
@@ -35,7 +35,7 @@ export default function Sidebar() {
Custo Estimado
Custo R/MWh
- {'Notícias >'}
+ {'Notícias >'}
{'Info Setorial >'}
{'FAQ >'}
{'Sobre Nós >'}
diff --git a/styles/layouts/Login/LoginView.ts b/styles/layouts/Login/LoginView.ts
index 90c3819..edc63de 100644
--- a/styles/layouts/Login/LoginView.ts
+++ b/styles/layouts/Login/LoginView.ts
@@ -1,38 +1,47 @@
+
import styled from 'styled-components';
export const LoginView = styled.main<{auth: string}>`
display: flex;
- align-items: center;
+ display: ${props => props.auth == '/'? null : 'none'};
justify-content: flex-end;
- flex-wrap: wrap;
+ align-items: center;
+
width: 100%;
- min-height: fit-content;
height: 100vh;
+
background-color: #f9f9f9;
- display: ${props => props.auth == '/'? null : 'none'};
+ padding: 0;
- .container{
- display: flex;
- align-items: center;
+ @media (max-width: 1196px) {
flex-direction: column;
- background-color: #FFFFFF;
- height: 33rem;
- text-align: center;
- border-radius: 4px;
- width: 100%;
- max-width: 30rem;
- padding-left: 50px;
- padding-right: 50px;
- margin-left: 8rem;
- }
-
- @media screen and (max-width: 1008px) {
justify-content: center;
- .container {
- margin: 0;
- }
+ align-items: center;
+
+ height: 100%;
+
+ padding: 20px;
+
+
}
+`;
+
+export const LoginContainer = styled.section`
+ display: flex;
+ justify-content: center;
+ align-items: center;
+
+ flex-direction: column;
+
+ width: 40%;
+ margin-left: 60px;
+
+ /* padding: 0 0 px 0; */
+
+ border-radius: 10px;
+
+ background-color: #FFF;
h1{
margin-bottom:5px;
@@ -44,58 +53,45 @@ export const LoginView = styled.main<{auth: string}>`
font-size: 21px;
margin-bottom: 3rem;
color: #092C4C;
- }
- input{
-
- width: 100%;
- height: 15rem;
- border-radius: 5px;
- margin-bottom: 10px;
- border-style: none;
- border: solid #D0D0D0 1px;
+ font-weight: 300;
+ text-align: center;
}
-
- button{
- width: 100%;
- height: 18rem;
- background-image: linear-gradient(to right, #254F7F 10%, #888888 100%);
- color: white;
- font-size: 15px;
- border-radius: 5px;
- border: 0;
- margin-top: 2.5rem;
- }
-
- input::placeholder {
- color: #ABB3BB;
- font-size: 12px;
- }
-
- span {
- font-size: 12px;
- color: #254F7F;
- }
-
- p {
- color:#8B8B8B;
- font-size: 12px;
- margin-bottom: 22px;
- }
-
- fieldset {
+ .line {
border-top: 0.7px solid #E1E1E1;
border-bottom: none;
border-left: none;
border-right: none;
display: block;
text-align: center;
- width: 100%;
+ width: 90%;
}
- fieldset legend {
+ .line .text {
padding: 19px 56px;
color: #ABB3BB;
font-size: 14px;
}
+ span{
+ display: flex;
+ align-self: flex-end;
+ margin-right: 5%;
+ justify-content: flex-end;
+ cursor: pointer;
+ }
+ p{
+ color: #8B8B8B;
+ text-align: center;
+ margin-top: 1px;
+ }
+
+ @media (max-width: 1196px) {
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+
+ width: 100%;
+ margin: 0;
+ }
+
`;
diff --git a/styles/layouts/ResumoOperacao/ResumoOperacaoView.ts b/styles/layouts/ResumoOperacao/ResumoOperacaoView.ts
index 793bb56..f85beb0 100644
--- a/styles/layouts/ResumoOperacao/ResumoOperacaoView.ts
+++ b/styles/layouts/ResumoOperacao/ResumoOperacaoView.ts
@@ -156,7 +156,6 @@ export const Pagination = styled.div`
}
.numberColor{
color: #ABAFB3;
-;
}
`;
diff --git a/yarn.lock b/yarn.lock
index 0276d22..c5e83ec 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -163,7 +163,7 @@
core-js-pure "^3.20.2"
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.10.2", "@babel/runtime@^7.13.10", "@babel/runtime@^7.16.3", "@babel/runtime@^7.17.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7":
+"@babel/runtime@^7.10.2", "@babel/runtime@^7.13.10", "@babel/runtime@^7.16.3", "@babel/runtime@^7.17.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7":
version "7.17.9"
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz"
dependencies:
@@ -344,6 +344,77 @@
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
+"@material-ui/core@^4.12.4":
+ version "4.12.4"
+ resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.12.4.tgz#4ac17488e8fcaf55eb6a7f5efb2a131e10138a73"
+ integrity sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==
+ dependencies:
+ "@babel/runtime" "^7.4.4"
+ "@material-ui/styles" "^4.11.5"
+ "@material-ui/system" "^4.12.2"
+ "@material-ui/types" "5.1.0"
+ "@material-ui/utils" "^4.11.3"
+ "@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 || ^17.0.0"
+ react-transition-group "^4.4.0"
+
+"@material-ui/icons@^4.11.3":
+ version "4.11.3"
+ resolved "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.11.3.tgz#b0693709f9b161ce9ccde276a770d968484ecff1"
+ integrity sha512-IKHlyx6LDh8n19vzwH5RtHIOHl9Tu90aAAxcbWME6kp4dmvODM3UvOHJeMIDzUbd4muuJKHmlNoBN+mDY4XkBA==
+ dependencies:
+ "@babel/runtime" "^7.4.4"
+
+"@material-ui/styles@^4.11.5":
+ version "4.11.5"
+ resolved "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.11.5.tgz#19f84457df3aafd956ac863dbe156b1d88e2bbfb"
+ integrity sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==
+ dependencies:
+ "@babel/runtime" "^7.4.4"
+ "@emotion/hash" "^0.8.0"
+ "@material-ui/types" "5.1.0"
+ "@material-ui/utils" "^4.11.3"
+ clsx "^1.0.4"
+ csstype "^2.5.2"
+ hoist-non-react-statics "^3.3.2"
+ jss "^10.5.1"
+ jss-plugin-camel-case "^10.5.1"
+ jss-plugin-default-unit "^10.5.1"
+ jss-plugin-global "^10.5.1"
+ jss-plugin-nested "^10.5.1"
+ jss-plugin-props-sort "^10.5.1"
+ jss-plugin-rule-value-function "^10.5.1"
+ jss-plugin-vendor-prefixer "^10.5.1"
+ prop-types "^15.7.2"
+
+"@material-ui/system@^4.12.2":
+ version "4.12.2"
+ resolved "https://registry.yarnpkg.com/@material-ui/system/-/system-4.12.2.tgz#f5c389adf3fce4146edd489bf4082d461d86aa8b"
+ integrity sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==
+ dependencies:
+ "@babel/runtime" "^7.4.4"
+ "@material-ui/utils" "^4.11.3"
+ csstype "^2.5.2"
+ prop-types "^15.7.2"
+
+"@material-ui/types@5.1.0":
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/@material-ui/types/-/types-5.1.0.tgz#efa1c7a0b0eaa4c7c87ac0390445f0f88b0d88f2"
+ integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==
+
+"@material-ui/utils@^4.11.3":
+ version "4.11.3"
+ resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.11.3.tgz#232bd86c4ea81dab714f21edad70b7fdf0253942"
+ integrity sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg==
+ dependencies:
+ "@babel/runtime" "^7.4.4"
+ prop-types "^15.7.2"
+ react-is "^16.8.0 || ^17.0.0"
+
"@mui/base@5.0.0-alpha.79":
version "5.0.0-alpha.79"
resolved "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.79.tgz"
@@ -546,7 +617,7 @@
dependencies:
"@types/react" "*"
-"@types/react-transition-group@^4.4.4":
+"@types/react-transition-group@^4.2.0", "@types/react-transition-group@^4.4.4":
version "4.4.4"
resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.4.tgz"
dependencies:
@@ -868,7 +939,7 @@ cli-truncate@^3.1.0:
slice-ansi "^5.0.0"
string-width "^5.0.0"
-clsx@^1.1.1:
+clsx@^1.0.4, clsx@^1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz"
@@ -944,6 +1015,19 @@ css-to-react-native@^3.0.0:
css-color-keywords "^1.0.0"
postcss-value-parser "^4.0.2"
+css-vendor@^2.0.8:
+ 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"
+
+csstype@^2.5.2:
+ version "2.6.20"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.20.tgz#9229c65ea0b260cf4d3d997cb06288e36a8d6dda"
+ integrity sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==
+
csstype@^3.0.11, csstype@^3.0.2:
version "3.0.11"
resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.11.tgz"
@@ -1508,6 +1592,11 @@ husky@^7.0.4:
version "7.0.4"
resolved "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz"
+hyphenate-style-name@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d"
+ integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==
+
ignore@^5.1.8, ignore@^5.2.0:
version "5.2.0"
resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"
@@ -1597,6 +1686,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
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-negative-zero@^2.0.2:
version "2.0.2"
resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
@@ -1686,6 +1780,76 @@ json5@^2.2.1:
version "2.2.1"
resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"
+jss-plugin-camel-case@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.9.0.tgz#4921b568b38d893f39736ee8c4c5f1c64670aaf7"
+ integrity sha512-UH6uPpnDk413/r/2Olmw4+y54yEF2lRIV8XIZyuYpgPYTITLlPOsq6XB9qeqv+75SQSg3KLocq5jUBXW8qWWww==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ hyphenate-style-name "^1.0.3"
+ jss "10.9.0"
+
+jss-plugin-default-unit@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.9.0.tgz#bb23a48f075bc0ce852b4b4d3f7582bc002df991"
+ integrity sha512-7Ju4Q9wJ/MZPsxfu4T84mzdn7pLHWeqoGd/D8O3eDNNJ93Xc8PxnLmV8s8ZPNRYkLdxZqKtm1nPQ0BM4JRlq2w==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ jss "10.9.0"
+
+jss-plugin-global@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.9.0.tgz#fc07a0086ac97aca174e37edb480b69277f3931f"
+ integrity sha512-4G8PHNJ0x6nwAFsEzcuVDiBlyMsj2y3VjmFAx/uHk/R/gzJV+yRHICjT4MKGGu1cJq2hfowFWCyrr/Gg37FbgQ==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ jss "10.9.0"
+
+jss-plugin-nested@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.9.0.tgz#cc1c7d63ad542c3ccc6e2c66c8328c6b6b00f4b3"
+ integrity sha512-2UJnDrfCZpMYcpPYR16oZB7VAC6b/1QLsRiAutOt7wJaaqwCBvNsosLEu/fUyKNQNGdvg2PPJFDO5AX7dwxtoA==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ jss "10.9.0"
+ tiny-warning "^1.0.2"
+
+jss-plugin-props-sort@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.9.0.tgz#30e9567ef9479043feb6e5e59db09b4de687c47d"
+ integrity sha512-7A76HI8bzwqrsMOJTWKx/uD5v+U8piLnp5bvru7g/3ZEQOu1+PjHvv7bFdNO3DwNPC9oM0a//KwIJsIcDCjDzw==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ jss "10.9.0"
+
+jss-plugin-rule-value-function@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.9.0.tgz#379fd2732c0746fe45168011fe25544c1a295d67"
+ integrity sha512-IHJv6YrEf8pRzkY207cPmdbBstBaE+z8pazhPShfz0tZSDtRdQua5jjg6NMz3IbTasVx9FdnmptxPqSWL5tyJg==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ jss "10.9.0"
+ tiny-warning "^1.0.2"
+
+jss-plugin-vendor-prefixer@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.9.0.tgz#aa9df98abfb3f75f7ed59a3ec50a5452461a206a"
+ integrity sha512-MbvsaXP7iiVdYVSEoi+blrW+AYnTDvHTW6I6zqi7JcwXdc6I9Kbm234nEblayhF38EftoenbM+5218pidmC5gA==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ css-vendor "^2.0.8"
+ jss "10.9.0"
+
+jss@10.9.0, jss@^10.5.1:
+ version "10.9.0"
+ resolved "https://registry.yarnpkg.com/jss/-/jss-10.9.0.tgz#7583ee2cdc904a83c872ba695d1baab4b59c141b"
+ integrity sha512-YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ csstype "^3.0.2"
+ is-in-browser "^1.1.3"
+ tiny-warning "^1.0.2"
+
"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1:
version "3.3.0"
resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz"
@@ -2019,6 +2183,11 @@ pidtree@^0.5.0:
version "0.5.0"
resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.5.0.tgz"
+popper.js@1.16.1-lts:
+ version "1.16.1-lts"
+ resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1-lts.tgz#cf6847b807da3799d80ee3d6d2f90df8a3f50b05"
+ integrity sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==
+
postcss-value-parser@^4.0.2:
version "4.2.0"
resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
@@ -2074,11 +2243,11 @@ react-is@^16.13.1, react-is@^16.7.0:
version "16.13.1"
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
-react-is@^17.0.2:
+"react-is@^16.8.0 || ^17.0.0", react-is@^17.0.2:
version "17.0.2"
resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
-react-transition-group@^4.4.2:
+react-transition-group@^4.4.0, react-transition-group@^4.4.2:
version "4.4.2"
resolved "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz"
dependencies:
@@ -2366,6 +2535,11 @@ through@^2.3.8:
version "2.3.8"
resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
+tiny-warning@^1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
+ integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
+
to-fast-properties@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"