diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..ad0bfb7 --- /dev/null +++ b/.babelrc @@ -0,0 +1,12 @@ +{ + "presets": ["es2015"], + "plugins": [ + "transform-class-properties", + "transform-react-jsx", + "transform-object-rest-spread", + ["module-resolver", { + "root": ["./src"] + }], + ["import-rename", {"^(.*)\\.jsx$": "$1"}] + ] + } diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..1970ec0 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +!.eslintrc.js +documentation/ +build/ diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..5e14833 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,6 @@ +module.exports = { + root: true, + rules: { + 'prettier/prettier': 0, + }, +}; \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..684ef6e --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules + +# testing +/coverage + +# production +/build + +# npmjs +/dist + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +package-lock.json + +commit.sh diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..2d7ddbc --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +documentation/ diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..275a361 --- /dev/null +++ b/ISSUE_TEMPLATE.md @@ -0,0 +1,13 @@ + + + diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..6b9a44e --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Creative Tim + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4ba03af --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# bb-react"# bbbox" diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..45376a7 --- /dev/null +++ b/bower.json @@ -0,0 +1,28 @@ +{ + "name": "material-dashboard-react", + "homepage": "https://github.com/creativetimofficial/material-dashboard-react", + "authors": [ + "creative-tim" + ], + "description": "A Badass Material-UI Kit based on Material Design", + "main": "public/index.html", + "keywords": [ + "material", + "design", + "material-ui", + "material", + "design", + "google", + "twitter" + ], + "license": "Creative TIM License", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests", + "build" + ], + "private": true +} diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..3e34fb9 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,74 @@ +const gulp = require("gulp"); +const gap = require("gulp-append-prepend"); + +gulp.task("licenses", async function () { + // this is to add Creative Tim licenses in the production mode for the minified js + gulp + .src("build/static/js/*chunk.js", { base: "./" }) + .pipe( + gap.prependText(`/*! + +========================================================= +* Material Dashboard React - v1.10.0 +========================================================= + +* Product Page: https://www.creative-tim.com/product/material-dashboard-react +* Copyright 2021 Creative Tim (http://www.creative-tim.com) + +* Coded by Creative Tim + +========================================================= + +* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +*/`) + ) + .pipe(gulp.dest("./", { overwrite: true })); + + // this is to add Creative Tim licenses in the production mode for the minified html + gulp + .src("build/index.html", { base: "./" }) + .pipe( + gap.prependText(``) + ) + .pipe(gulp.dest("./", { overwrite: true })); + + // this is to add Creative Tim licenses in the production mode for the minified css + gulp + .src("build/static/css/*chunk.css", { base: "./" }) + .pipe( + gap.prependText(`/*! + +========================================================= +* Material Dashboard React - v1.10.0 +========================================================= + +* Product Page: https://www.creative-tim.com/product/material-dashboard-react +* Copyright 2021 Creative Tim (http://www.creative-tim.com) + +* Coded by Creative Tim + +========================================================= + +* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +*/`) + ) + .pipe(gulp.dest("./", { overwrite: true })); + return; +}); diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..256380f --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": "src", + "paths": { + "*": ["src/*"] + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..5574ae7 --- /dev/null +++ b/package.json @@ -0,0 +1,80 @@ +{ + "name": "bluebox", + "version": "1.10.0", + "description": "Material Dashboard React. Coded by Creative Tim", + "private": false, + "main": "dist/index.js", + "dependencies": { + "@date-io/date-fns": "1.x", + "@material-ui/core": "4.11.4", + "@material-ui/icons": "4.11.2", + "@material-ui/pickers": "^3.3.10", + "axios": "^0.21.4", + "chartist": "0.10.1", + "classnames": "2.3.1", + "date-fns": "^2.24.0", + "history": "5.0.0", + "html-react-parser": "^1.4.8", + "materialui-grid": "^1.0.0", + "mui-datatables": "^3.7.8", + "perfect-scrollbar": "1.5.1", + "prop-types": "15.7.2", + "react": "17.0.2", + "react-chartist": "0.14.4", + "react-data-table-component": "^6.11.8", + "react-dom": "17.0.2", + "react-icons": "^4.3.1", + "react-loader-spinner": "^4.0.0", + "react-redux": "^7.2.5", + "react-router-dom": "5.2.0", + "react-scripts": "4.0.3", + "react-select": "^5.2.2", + "react-select-async-paginate": "^0.6.1", + "react-swipeable-views": "0.13.9", + "redux": "^4.1.1", + "redux-devtools-extension": "^2.13.9", + "redux-thunk": "^2.3.0", + "styled-components": "^5.3.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start", + "lint:check": "eslint . --ext=js,jsx; exit 0", + "lint:fix": "eslint . --ext=js,jsx --fix; exit 0", + "build-package-css": "cp src/assets/css/material-dashboard-react.css dist/material-dashboard-react.css", + "build-package": "npm run build-package-css && babel src --out-dir dist" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/creativetimofficial/material-dashboard-react.git" + }, + "keywords": [], + "author": "Creative Tim (https://www.creative-tim.com/)", + "license": "MIT", + "bugs": { + "url": "https://github.com/creativetimofficial/material-dashboard-react/issues" + }, + "homepage": "https://creativetimofficial.github.io/material-dashboard-react/#/dashboard", + "optionalDependencies": { + "@babel/core": "7.14.0", + "typescript": "4.2.4" + }, + "devDependencies": { + "eslint-config-prettier": "8.3.0", + "eslint-plugin-prettier": "3.4.0", + "gulp": "4.0.2", + "gulp-append-prepend": "1.0.9", + "prettier": "2.2.1" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [] + } +} diff --git a/public/apple-icon.png b/public/apple-icon.png new file mode 100644 index 0000000..a20470f Binary files /dev/null and b/public/apple-icon.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..7482a65 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..0111833 --- /dev/null +++ b/public/index.html @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + Blue Box + + + +
+ + + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..ef19ec2 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": "./index.html", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/src/actions/auth.js b/src/actions/auth.js new file mode 100644 index 0000000..8f2aa9f --- /dev/null +++ b/src/actions/auth.js @@ -0,0 +1,55 @@ +import { + REGISTER_SUCCESS, + REGISTER_FAIL, + LOGIN_SUCCESS, + LOGIN_FAIL, + LOGOUT, + SET_MESSAGE, +} from "./types"; + +import AuthService from "../services/auth.service"; + + +export const login = (loginName, password,companyId) => (dispatch) => { + return AuthService.login(loginName, password,companyId).then( + (data) => { + dispatch({ + type: LOGIN_SUCCESS, + payload: { user: data }, + }); + + return Promise.resolve(); + }, + (error) => { + const message = + (error.response && + error.response.data && + error.response.data.message) || + error.message || + error.toString(); + + dispatch({ + type: LOGIN_FAIL, + }); + + dispatch({ + type: SET_MESSAGE, + payload: message, + }); + + return Promise.reject(message); + } + ); +}; + +export const logout = () => (dispatch) => { + + AuthService.logout(); + window.location.assign("/login"); + setTimeout(()=>{ + dispatch({ + type: LOGOUT, + }); + },2000) + +}; diff --git a/src/actions/message.js b/src/actions/message.js new file mode 100644 index 0000000..c14afb2 --- /dev/null +++ b/src/actions/message.js @@ -0,0 +1,10 @@ +import { SET_MESSAGE, CLEAR_MESSAGE } from "./types"; + +export const setMessage = (message) => ({ + type: SET_MESSAGE, + payload: message, +}); + +export const clearMessage = () => ({ + type: CLEAR_MESSAGE, +}); diff --git a/src/actions/types.js b/src/actions/types.js new file mode 100644 index 0000000..f6d80b2 --- /dev/null +++ b/src/actions/types.js @@ -0,0 +1,9 @@ +export const REGISTER_SUCCESS = "REGISTER_SUCCESS"; +export const REGISTER_FAIL = "REGISTER_FAIL"; +export const LOGIN_SUCCESS = "LOGIN_SUCCESS"; +export const LOGIN_FAIL = "LOGIN_FAIL"; +export const LOGOUT = "LOGOUT"; + +export const SET_MESSAGE = "SET_MESSAGE"; +export const CLEAR_MESSAGE = "CLEAR_MESSAGE"; + diff --git a/src/assets/css/material-dashboard-react.css b/src/assets/css/material-dashboard-react.css new file mode 100644 index 0000000..ea0cf90 --- /dev/null +++ b/src/assets/css/material-dashboard-react.css @@ -0,0 +1,510 @@ +/*! + + ========================================================= + * Material Dashboard React - v1.10.0 based on Material Dashboard - v1.2.0 + ========================================================= + + * Product Page: http://www.creative-tim.com/product/material-dashboard-react + * Copyright 2021 Creative Tim (http://www.creative-tim.com) + * Licensed under MIT (https://github.com/creativetimofficial/material-dashboard-react/blob/master/LICENSE.md) + + ========================================================= + + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + */ +.ct-grid { + stroke: rgba(255, 255, 255, 0.2); + stroke-width: 1px; + stroke-dasharray: 2px; +} + +.ct-series-a .ct-point, +.ct-series-a .ct-line, +.ct-series-a .ct-bar, +.ct-series-a .ct-slice-donut { + stroke: rgba(255, 255, 255, 0.8); +} + +.ct-label.ct-horizontal.ct-end { + -webkit-box-align: flex-start; + -webkit-align-items: flex-start; + -ms-flex-align: flex-start; + align-items: flex-start; + -webkit-box-pack: flex-start; + -webkit-justify-content: flex-start; + -ms-flex-pack: flex-start; + justify-content: flex-start; + text-align: left; + text-anchor: start; +} + +.ct-label { + color: rgba(255, 255, 255, 0.7); +} + +.ct-chart-line .ct-label, +.ct-chart-bar .ct-label { + display: block; + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; +} + +.ct-label { + fill: rgba(0, 0, 0, 0.4); + line-height: 1; +} +html * { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +body { + background-color: #eeeeee; + color: #3c4858; + margin: 0; + font-family: Roboto, Helvetica, Arial, sans-serif; + font-weight: 300; + line-height: 1.5em; +} + +blockquote footer:before, +blockquote small:before { + content: "\2014 \00A0"; +} + +small { + font-size: 80%; +} + +h1 { + font-size: 3em; + line-height: 1.15em; +} + +h2 { + font-size: 2.4em; +} + +h3 { + font-size: 1.825em; + line-height: 1.4em; + margin: 20px 0 10px; +} + +h4 { + font-size: 1.3em; + line-height: 1.4em; +} + +h5 { + font-size: 1.25em; + line-height: 1.4em; + margin-bottom: 15px; +} + +h6 { + font-size: 1em; + text-transform: uppercase; + font-weight: 500; +} + +body { + background-color: #eeeeee; + color: #3c4858; +} + +blockquote p { + font-style: italic; +} + +body, +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; + line-height: 1.5em; +} + +a { + color: #9c27b0; + text-decoration: none; +} + +a:hover, +a:focus { + color: #89229b; + text-decoration: none; +} + +legend { + border-bottom: 0; +} + +* { + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); + -webkit-tap-highlight-color: transparent; +} + +*:focus { + outline: 0; +} + +a:focus, +a:active, +button:active, +button:focus, +button:hover, +button::-moz-focus-inner, +input[type="reset"]::-moz-focus-inner, +input[type="button"]::-moz-focus-inner, +input[type="submit"]::-moz-focus-inner, +select::-moz-focus-inner, +input[type="file"] > input[type="button"]::-moz-focus-inner { + outline: 0 !important; +} + +legend { + margin-bottom: 20px; + font-size: 21px; +} + +output { + padding-top: 8px; + font-size: 14px; + line-height: 1.42857; +} + +label { + font-size: 14px; + line-height: 1.42857; + color: #aaaaaa; + font-weight: 400; +} + +footer { + padding: 15px 0; +} + +footer ul { + margin-bottom: 0; + padding: 0; + list-style: none; +} + +footer ul li { + display: inline-block; +} + +footer ul li a { + color: inherit; + padding: 15px; + font-weight: 500; + font-size: 12px; + text-transform: uppercase; + border-radius: 3px; + text-decoration: none; + position: relative; + display: block; +} + +footer ul li a:hover { + text-decoration: none; +} + +@media (max-width: 991px) { + body, + html { + position: relative; + overflow-x: hidden; + } + + #bodyClick { + height: 100%; + width: 100%; + position: fixed; + opacity: 0; + top: 0; + left: auto; + right: 260px; + content: ""; + z-index: 9999; + overflow-x: hidden; + } +} +.fixed-plugin { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; + line-height: 1.5em; + position: fixed; + top: 180px; + right: 0; + width: 64px; + background-color: rgba(0, 0, 0, 0.3); + z-index: 1031; + border-radius: 8px 0 0 8px; + text-align: center; + top: 120px; +} + +.fixed-plugin .SocialMediaShareButton, +.fixed-plugin .github-btn { + display: inline-block; +} + +.fixed-plugin li > a, +.fixed-plugin .badge { + transition: all 0.34s; + -webkit-transition: all 0.34s; + -moz-transition: all 0.34s; + text-decoration: none; +} + +.fixed-plugin .fa-cog { + color: #ffffff; + padding: 10px; + border-radius: 0 0 6px 6px; + width: auto; +} + +.fixed-plugin .dropdown-menu { + right: 80px; + left: auto; + width: 290px; + border-radius: 0.1875rem; + padding: 0 10px; + position: absolute; + color: rgba(0, 0, 0, 0.87); + display: inline-block; + box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14); + background: #fff; + border-radius: 3px; +} + +.fixed-plugin .fa-circle-thin { + color: #ffffff; +} + +.fixed-plugin .active .fa-circle-thin { + color: #00bbff; +} + +.fixed-plugin .dropdown-menu > .active > a, +.fixed-plugin .dropdown-menu > .active > a:hover, +.fixed-plugin .dropdown-menu > .active > a:focus { + color: #777777; + text-align: center; +} + +.fixed-plugin img { + border-radius: 0; + width: 100%; + height: 100px; + margin: 0 auto; +} + +.fixed-plugin .dropdown-menu li > a:hover, +.fixed-plugin .dropdown-menu li > a:focus { + box-shadow: none; +} +.fixed-plugin .badge { + border: 3px solid #ffffff; + border-radius: 50%; + cursor: pointer; + display: inline-block; + height: 23px; + margin-right: 5px; + position: relative; + width: 23px; + background-color: rgba(30, 30, 30, 0.97); +} + +.fixed-plugin .badge.active, +.fixed-plugin .badge:hover { + border-color: #00bbff; +} + +.fixed-plugin .badge-purple { + background-color: #9c27b0; +} + +.fixed-plugin .badge-blue { + background-color: #00bcd4; +} + +.fixed-plugin .badge-green { + background-color: #4caf50; +} + +.fixed-plugin .badge-orange { + background-color: #ff9800; +} + +.fixed-plugin .badge-red { + background-color: #f44336; +} + +.fixed-plugin h5 { + font-size: 14px; + margin: 10px; +} +.fixed-plugin .dropdown-menu li { + display: block; + padding: 4px 0px; + width: 25%; + float: left; +} + +.fixed-plugin li.adjustments-line, +.fixed-plugin li.header-title, +.fixed-plugin li.button-container { + width: 100%; + height: 50px; + min-height: inherit; + padding: 0px; + text-align: center; +} + +.fixed-plugin li.adjustments-line p { + margin: 0; +} + +.fixed-plugin li.adjustments-line div, +.fixed-plugin li.header-title div, +.fixed-plugin li.button-container div { + margin-bottom: 5px; +} +.fixed-plugin li.header-title { + height: 30px; + line-height: 25px; + font-size: 12px; + font-weight: 600; + text-align: center; + text-transform: uppercase; +} + +.fixed-plugin .adjustments-line p { + float: left; + display: inline-block; + margin-bottom: 0; + font-size: 1em; + color: #3c4858; +} + +.fixed-plugin .adjustments-line a { + color: transparent; +} + +.fixed-plugin .adjustments-line a .badge-colors { + position: relative; + top: -2px; +} + +.fixed-plugin .adjustments-line a a:hover, +.fixed-plugin .adjustments-line a a:focus { + color: transparent; +} +.fixed-plugin .adjustments-line .dropdown-menu > li.adjustments-line > a { + padding-right: 0; + padding-left: 0; + border-bottom: 1px solid #ddd; + border-radius: 0; + margin: 0; +} + +.fixed-plugin .dropdown-menu > li > a.img-holder { + font-size: 16px; + text-align: center; + border-radius: 10px; + background-color: #fff; + border: 3px solid #fff; + padding-left: 0; + padding-right: 0; + opacity: 1; + cursor: pointer; + display: block; + max-height: 100px; + overflow: hidden; + padding: 0; +} + +.fixed-plugin .dropdown-menu > li > a.img-holder img { + margin-top: auto; +} +.fixed-plugin .dropdown-menu > li:hover > a.img-holder, +.fixed-plugin .dropdown-menu > li:focus > a.img-holder { + border-color: rgba(0, 187, 255, 0.53); +} + +.fixed-plugin .dropdown-menu > .active > a.img-holder, +.fixed-plugin .dropdown-menu > .active > a.img-holder { + border-color: #00bbff; + background-color: #ffffff; +} +.fixed-plugin .dropdown .dropdown-menu { + -webkit-transform: translateY(-15%); + -moz-transform: translateY(-15%); + -o-transform: translateY(-15%); + -ms-transform: translateY(-15%); + transform: translateY(-15%); + top: 27px; + opacity: 0; + transform-origin: 0 0; + display: none; +} + +.fixed-plugin .dropdown .dropdown-menu:before { + border-bottom: 0.4em solid transparent; + border-left: 0.4em solid rgba(0, 0, 0, 0.2); + border-top: 0.4em solid transparent; + right: -16px; + top: 46px; +} +.fixed-plugin .dropdown .dropdown-menu:after { + border-bottom: 0.4em solid transparent; + border-left: 0.4em solid #ffffff; + border-top: 0.4em solid transparent; + right: -16px; +} + +.fixed-plugin .dropdown .dropdown-menu:before, +.fixed-plugin .dropdown .dropdown-menu:after { + content: ""; + display: inline-block; + position: absolute; + top: 46px; + width: 16px; + transform: translateY(-50%); + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); +} + +.fixed-plugin .dropdown.show .dropdown-menu { + display: block; + visibility: visible; + opacity: 1; + -webkit-transform: translateY(-13%); + -moz-transform: translateY(-13%); + -o-transform: translateY(-13%); + -ms-transform: translateY(-13%); + transform: translateY(-13%); + transform-origin: 0 0; +} +.fixed-plugin.rtl-fixed-plugin { + right: auto; + left: 0px; + border-radius: 0 8px 8px 0; +} +.fixed-plugin.rtl-fixed-plugin .dropdown-menu { + right: auto; + left: 80px; +} +* { + letter-spacing: normal !important; +} diff --git a/src/assets/github/angular.png b/src/assets/github/angular.png new file mode 100644 index 0000000..71469a7 Binary files /dev/null and b/src/assets/github/angular.png differ diff --git a/src/assets/github/chrome.png b/src/assets/github/chrome.png new file mode 100644 index 0000000..6ba3616 Binary files /dev/null and b/src/assets/github/chrome.png differ diff --git a/src/assets/github/dashboard.jpg b/src/assets/github/dashboard.jpg new file mode 100644 index 0000000..bbd65dd Binary files /dev/null and b/src/assets/github/dashboard.jpg differ diff --git a/src/assets/github/edge.png b/src/assets/github/edge.png new file mode 100644 index 0000000..4a4eb90 Binary files /dev/null and b/src/assets/github/edge.png differ diff --git a/src/assets/github/firefox.png b/src/assets/github/firefox.png new file mode 100644 index 0000000..cad280e Binary files /dev/null and b/src/assets/github/firefox.png differ diff --git a/src/assets/github/html.png b/src/assets/github/html.png new file mode 100644 index 0000000..2b3d9d6 Binary files /dev/null and b/src/assets/github/html.png differ diff --git a/src/assets/github/map.jpg b/src/assets/github/map.jpg new file mode 100644 index 0000000..b5e471b Binary files /dev/null and b/src/assets/github/map.jpg differ diff --git a/src/assets/github/md-react.gif b/src/assets/github/md-react.gif new file mode 100644 index 0000000..fbf2d84 Binary files /dev/null and b/src/assets/github/md-react.gif differ diff --git a/src/assets/github/notifications.jpg b/src/assets/github/notifications.jpg new file mode 100644 index 0000000..44ed884 Binary files /dev/null and b/src/assets/github/notifications.jpg differ diff --git a/src/assets/github/opera.png b/src/assets/github/opera.png new file mode 100644 index 0000000..cdf3392 Binary files /dev/null and b/src/assets/github/opera.png differ diff --git a/src/assets/github/opt_md_angular_thumbnail.jpg b/src/assets/github/opt_md_angular_thumbnail.jpg new file mode 100644 index 0000000..30ade38 Binary files /dev/null and b/src/assets/github/opt_md_angular_thumbnail.jpg differ diff --git a/src/assets/github/opt_md_thumbnail.jpg b/src/assets/github/opt_md_thumbnail.jpg new file mode 100644 index 0000000..4b2c44a Binary files /dev/null and b/src/assets/github/opt_md_thumbnail.jpg differ diff --git a/src/assets/github/opt_md_vue_thumbnail.jpg b/src/assets/github/opt_md_vue_thumbnail.jpg new file mode 100644 index 0000000..88b9c8c Binary files /dev/null and b/src/assets/github/opt_md_vue_thumbnail.jpg differ diff --git a/src/assets/github/opt_mdr_thumbnail.jpg b/src/assets/github/opt_mdr_thumbnail.jpg new file mode 100644 index 0000000..f46730f Binary files /dev/null and b/src/assets/github/opt_mdr_thumbnail.jpg differ diff --git a/src/assets/github/react.svg b/src/assets/github/react.svg new file mode 100644 index 0000000..ea77a61 --- /dev/null +++ b/src/assets/github/react.svg @@ -0,0 +1,9 @@ + + React Logo + + + + + + + diff --git a/src/assets/github/safari.png b/src/assets/github/safari.png new file mode 100644 index 0000000..84dc844 Binary files /dev/null and b/src/assets/github/safari.png differ diff --git a/src/assets/github/tables.jpg b/src/assets/github/tables.jpg new file mode 100644 index 0000000..ceeb831 Binary files /dev/null and b/src/assets/github/tables.jpg differ diff --git a/src/assets/github/userprofile.jpg b/src/assets/github/userprofile.jpg new file mode 100644 index 0000000..7181b2f Binary files /dev/null and b/src/assets/github/userprofile.jpg differ diff --git a/src/assets/github/vuejs.png b/src/assets/github/vuejs.png new file mode 100644 index 0000000..60e1700 Binary files /dev/null and b/src/assets/github/vuejs.png differ diff --git a/src/assets/img/apple-icon.png b/src/assets/img/apple-icon.png new file mode 100644 index 0000000..d5c10d6 Binary files /dev/null and b/src/assets/img/apple-icon.png differ diff --git a/src/assets/img/bg7.jpg b/src/assets/img/bg7.jpg new file mode 100644 index 0000000..af23a89 Binary files /dev/null and b/src/assets/img/bg7.jpg differ diff --git a/src/assets/img/cover.jpeg b/src/assets/img/cover.jpeg new file mode 100644 index 0000000..c70fee7 Binary files /dev/null and b/src/assets/img/cover.jpeg differ diff --git a/src/assets/img/faces/marc.jpg b/src/assets/img/faces/marc.jpg new file mode 100644 index 0000000..b84f3f0 Binary files /dev/null and b/src/assets/img/faces/marc.jpg differ diff --git a/src/assets/img/favicon.png b/src/assets/img/favicon.png new file mode 100644 index 0000000..a95e8c3 Binary files /dev/null and b/src/assets/img/favicon.png differ diff --git a/src/assets/img/mask.png b/src/assets/img/mask.png new file mode 100644 index 0000000..dc69572 Binary files /dev/null and b/src/assets/img/mask.png differ diff --git a/src/assets/img/new_logo.png b/src/assets/img/new_logo.png new file mode 100644 index 0000000..4b248c1 Binary files /dev/null and b/src/assets/img/new_logo.png differ diff --git a/src/assets/img/reactlogo.png b/src/assets/img/reactlogo.png new file mode 100644 index 0000000..40672ae Binary files /dev/null and b/src/assets/img/reactlogo.png differ diff --git a/src/assets/img/sidebar-1.jpg b/src/assets/img/sidebar-1.jpg new file mode 100644 index 0000000..d60429b Binary files /dev/null and b/src/assets/img/sidebar-1.jpg differ diff --git a/src/assets/img/sidebar-2.jpg b/src/assets/img/sidebar-2.jpg new file mode 100644 index 0000000..14e29f3 Binary files /dev/null and b/src/assets/img/sidebar-2.jpg differ diff --git a/src/assets/img/sidebar-3.jpg b/src/assets/img/sidebar-3.jpg new file mode 100644 index 0000000..c9dfa63 Binary files /dev/null and b/src/assets/img/sidebar-3.jpg differ diff --git a/src/assets/img/sidebar-4.jpg b/src/assets/img/sidebar-4.jpg new file mode 100644 index 0000000..06c46ed Binary files /dev/null and b/src/assets/img/sidebar-4.jpg differ diff --git a/src/assets/img/tim_80x80.png b/src/assets/img/tim_80x80.png new file mode 100644 index 0000000..5f2bb54 Binary files /dev/null and b/src/assets/img/tim_80x80.png differ diff --git a/src/assets/jss/material-dashboard-react.js b/src/assets/jss/material-dashboard-react.js new file mode 100644 index 0000000..de235d6 --- /dev/null +++ b/src/assets/jss/material-dashboard-react.js @@ -0,0 +1,303 @@ +/*! + + ========================================================= + * Material Dashboard React - v1.10.0 based on Material Dashboard - v1.2.0 + ========================================================= + + * Product Page: http://www.creative-tim.com/product/material-dashboard-react + * Copyright 2021 Creative Tim (http://www.creative-tim.com) + * Licensed under MIT (https://github.com/creativetimofficial/material-dashboard-react/blob/master/LICENSE.md) + + ========================================================= + + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + */ + +// ############################## +// // // Function that converts from hex color to rgb color +// // // Example: input = #9c27b0 => output = 156, 39, 176 +// // // Example: input = 9c27b0 => output = 156, 39, 176 +// // // Example: input = #999 => output = 153, 153, 153 +// // // Example: input = 999 => output = 153, 153, 153 +// ############################# +const hexToRgb = (input) => { + input = input + ""; + input = input.replace("#", ""); + let hexRegex = /[0-9A-Fa-f]/g; + if (!hexRegex.test(input) || (input.length !== 3 && input.length !== 6)) { + throw new Error("input is not a valid hex color."); + } + if (input.length === 3) { + let first = input[0]; + let second = input[1]; + let last = input[2]; + input = first + first + second + second + last + last; + } + input = input.toUpperCase(); + let first = input[0] + input[1]; + let second = input[2] + input[3]; + let last = input[4] + input[5]; + return ( + parseInt(first, 16) + + ", " + + parseInt(second, 16) + + ", " + + parseInt(last, 16) + ); +}; + +// ############################## +// // // Variables - Styles that are used on more than one component +// ############################# + +const drawerWidth = 260; + +const transition = { + transition: "all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)", +}; + +const container = { + paddingRight: "15px", + paddingLeft: "15px", + marginRight: "auto", + marginLeft: "auto", +}; + +const defaultFont = { + fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', + fontWeight: "300", + lineHeight: "1.5em", +}; + +// const primaryColor = ["#9c27b0", "#ab47bc", "#8e24aa", "#af2cc5"]; +const primaryColor = ["#00acc1", "#26c6da", "#00acc1", "#00d3ee"]; +const warningColor = ["#ff9800", "#ffa726", "#fb8c00", "#ffa21a"]; +const dangerColor = ["#f44336", "#ef5350", "#e53935", "#f55a4e"]; +const successColor = ["#4caf50", "#66bb6a", "#43a047", "#5cb860"]; +const infoColor = ["#00acc1", "#26c6da", "#00acc1", "#00d3ee"]; +const roseColor = ["#e91e63", "#ec407a", "#d81b60", "#eb3573"]; +const grayColor = [ + "#999", + "#777", + "#3C4858", + "#AAAAAA", + "#D2D2D2", + "#DDD", + "#b4b4b4", + "#555555", + "#333", + "#a9afbb", + "#eee", + "#e7e7e7", +]; +const blackColor = "#000"; +const whiteColor = "#FFF"; + +const boxShadow = { + boxShadow: + "0 10px 30px -12px rgba(" + + hexToRgb(blackColor) + + ", 0.42), 0 4px 25px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(blackColor) + + ", 0.2)", +}; + +const primaryBoxShadow = { + boxShadow: + "0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.14), 0 7px 10px -5px rgba(" + + hexToRgb(primaryColor[0]) + + ",.4)", +}; +const infoBoxShadow = { + boxShadow: + "0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.14), 0 7px 10px -5px rgba(" + + hexToRgb(infoColor[0]) + + ",.4)", +}; +const successBoxShadow = { + boxShadow: + "0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.14), 0 7px 10px -5px rgba(" + + hexToRgb(successColor[0]) + + ",.4)", +}; +const warningBoxShadow = { + boxShadow: + "0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.14), 0 7px 10px -5px rgba(" + + hexToRgb(warningColor[0]) + + ",.4)", +}; +const dangerBoxShadow = { + boxShadow: + "0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.14), 0 7px 10px -5px rgba(" + + hexToRgb(dangerColor[0]) + + ",.4)", +}; +const roseBoxShadow = { + boxShadow: + "0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.14), 0 7px 10px -5px rgba(" + + hexToRgb(roseColor[0]) + + ",.4)", +}; + +const warningCardHeader = { + background: + "linear-gradient(60deg, " + warningColor[1] + ", " + warningColor[2] + ")", + ...warningBoxShadow, +}; +const successCardHeader = { + background: + "linear-gradient(60deg, " + successColor[1] + ", " + successColor[2] + ")", + ...successBoxShadow, +}; +const dangerCardHeader = { + background: + "linear-gradient(60deg, " + dangerColor[1] + ", " + dangerColor[2] + ")", + ...dangerBoxShadow, +}; +const infoCardHeader = { + background: + "linear-gradient(60deg, " + infoColor[1] + ", " + infoColor[2] + ")", + ...infoBoxShadow, +}; +const primaryCardHeader = { + background: + "linear-gradient(60deg, " + primaryColor[1] + ", " + primaryColor[2] + ")", + ...primaryBoxShadow, +}; +const roseCardHeader = { + background: + "linear-gradient(60deg, " + roseColor[1] + ", " + roseColor[2] + ")", + ...roseBoxShadow, +}; + +const cardActions = { + margin: "0 20px 10px", + paddingTop: "10px", + borderTop: "1px solid " + grayColor[10], + height: "auto", + ...defaultFont, +}; + +const cardHeader = { + margin: "-20px 15px 0", + borderRadius: "3px", + padding: "15px", +}; + +const card = { + display: "inline-block", + position: "relative", + width: "100%", + margin: "25px 0", + boxShadow: "0 1px 4px 0 rgba(" + hexToRgb(blackColor) + ", 0.14)", + borderRadius: "3px", + color: "rgba(" + hexToRgb(blackColor) + ", 0.87)", + background: whiteColor, +}; + +const defaultBoxShadow = { + border: "0", + borderRadius: "3px", + boxShadow: + "0 10px 20px -12px rgba(" + + hexToRgb(blackColor) + + ", 0.42), 0 3px 20px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(blackColor) + + ", 0.2)", + padding: "10px 0", + transition: "all 150ms ease 0s", +}; + +const title = { + color: grayColor[2], + textDecoration: "none", + fontWeight: "300", + marginTop: "30px", + marginBottom: "25px", + minHeight: "32px", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + "& small": { + color: grayColor[1], + fontWeight: "400", + lineHeight: "1", + }, +}; + +const cardTitle = { + ...title, + marginTop: "0", + marginBottom: "3px", + minHeight: "auto", + "& a": { + ...title, + marginTop: ".625rem", + marginBottom: "0.75rem", + minHeight: "auto", + }, +}; + +const cardSubtitle = { + marginTop: "-.375rem", +}; + +const cardLink = { + "& + $cardLink": { + marginLeft: "1.25rem", + }, +}; + +export { + hexToRgb, + //variables + drawerWidth, + transition, + container, + boxShadow, + card, + defaultFont, + primaryColor, + warningColor, + dangerColor, + successColor, + infoColor, + roseColor, + grayColor, + blackColor, + whiteColor, + primaryBoxShadow, + infoBoxShadow, + successBoxShadow, + warningBoxShadow, + dangerBoxShadow, + roseBoxShadow, + warningCardHeader, + successCardHeader, + dangerCardHeader, + infoCardHeader, + primaryCardHeader, + roseCardHeader, + cardActions, + cardHeader, + defaultBoxShadow, + title, + cardTitle, + cardSubtitle, + cardLink, +}; diff --git a/src/assets/jss/material-dashboard-react/cardImagesStyles.js b/src/assets/jss/material-dashboard-react/cardImagesStyles.js new file mode 100644 index 0000000..1461bd5 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/cardImagesStyles.js @@ -0,0 +1,26 @@ +const cardImagesStyles = { + cardImgTop: { + width: "100%", + borderTopLeftRadius: "calc(.25rem - 1px)", + borderTopRightRadius: "calc(.25rem - 1px)", + }, + cardImgBottom: { + width: "100%", + borderBottomRightRadius: "calc(.25rem - 1px)", + borderBottomLeftRadius: "calc(.25rem - 1px)", + }, + cardImgOverlay: { + position: "absolute", + top: "0", + right: "0", + bottom: "0", + left: "0", + padding: "1.25rem", + }, + cardImg: { + width: "100%", + borderRadius: "calc(.25rem - 1px)", + }, +}; + +export default cardImagesStyles; diff --git a/src/assets/jss/material-dashboard-react/checkboxAdnRadioStyle.js b/src/assets/jss/material-dashboard-react/checkboxAdnRadioStyle.js new file mode 100644 index 0000000..c78ec47 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/checkboxAdnRadioStyle.js @@ -0,0 +1,51 @@ +import { + primaryColor, + blackColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const checkboxAdnRadioStyle = { + root: { + padding: "13px", + "&:hover": { + backgroundColor: "unset", + }, + }, + labelRoot: { + marginLeft: "-14px", + }, + checked: { + color: primaryColor[0] + "!important", + }, + checkedIcon: { + width: "20px", + height: "20px", + border: "1px solid rgba(" + hexToRgb(blackColor) + ", .54)", + borderRadius: "3px", + }, + uncheckedIcon: { + width: "0px", + height: "0px", + padding: "10px", + border: "1px solid rgba(" + hexToRgb(blackColor) + ", .54)", + borderRadius: "3px", + }, + radio: { + color: primaryColor[0] + "!important", + }, + radioChecked: { + width: "20px", + height: "20px", + border: "1px solid " + primaryColor[0], + borderRadius: "50%", + }, + radioUnchecked: { + width: "0px", + height: "0px", + padding: "10px", + border: "1px solid rgba(" + hexToRgb(blackColor) + ", .54)", + borderRadius: "50%", + }, +}; + +export default checkboxAdnRadioStyle; diff --git a/src/assets/jss/material-dashboard-react/components/buttonStyle.js b/src/assets/jss/material-dashboard-react/components/buttonStyle.js new file mode 100644 index 0000000..04a201b --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/buttonStyle.js @@ -0,0 +1,342 @@ +import { + grayColor, + primaryColor, + infoColor, + successColor, + warningColor, + dangerColor, + roseColor, + whiteColor, + blackColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const buttonStyle = { + button: { + minHeight: "auto", + minWidth: "auto", + backgroundColor: grayColor[0], + color: whiteColor, + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(grayColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(grayColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(grayColor[0]) + + ", 0.12)", + border: "none", + borderRadius: "3px", + position: "relative", + padding: "12px 30px", + margin: ".3125rem 1px", + fontSize: "12px", + fontWeight: "400", + textTransform: "uppercase", + letterSpacing: "0", + willChange: "box-shadow, transform", + transition: + "box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1)", + lineHeight: "1.42857143", + textAlign: "center", + whiteSpace: "nowrap", + verticalAlign: "middle", + touchAction: "manipulation", + cursor: "pointer", + "&:hover,&:focus": { + color: whiteColor, + backgroundColor: grayColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(grayColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(grayColor[0]) + + ", 0.2)", + }, + "& .fab,& .fas,& .far,& .fal, &.material-icons": { + position: "relative", + display: "inline-block", + top: "0", + marginTop: "-1em", + marginBottom: "-1em", + fontSize: "1.1rem", + marginRight: "4px", + verticalAlign: "middle", + }, + "& svg": { + position: "relative", + display: "inline-block", + top: "0", + width: "18px", + height: "18px", + marginRight: "4px", + verticalAlign: "middle", + }, + "&$justIcon": { + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + marginTop: "0px", + position: "absolute", + width: "100%", + transform: "none", + left: "0px", + top: "0px", + height: "100%", + lineHeight: "41px", + fontSize: "20px", + }, + }, + }, + white: { + "&,&:focus,&:hover": { + backgroundColor: whiteColor, + color: grayColor[0], + }, + }, + rose: { + backgroundColor: roseColor[0], + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(roseColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(roseColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(roseColor[0]) + + ", 0.12)", + "&:hover,&:focus": { + backgroundColor: roseColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(roseColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(roseColor[0]) + + ", 0.2)", + }, + }, + primary: { + backgroundColor: primaryColor[0], + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(primaryColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(primaryColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(primaryColor[0]) + + ", 0.12)", + "&:hover,&:focus": { + backgroundColor: primaryColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(primaryColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(primaryColor[0]) + + ", 0.2)", + }, + }, + info: { + backgroundColor: infoColor[0], + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(infoColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(infoColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(infoColor[0]) + + ", 0.12)", + "&:hover,&:focus": { + backgroundColor: infoColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(infoColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(infoColor[0]) + + ", 0.2)", + }, + }, + success: { + backgroundColor: successColor[0], + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(successColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(successColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(successColor[0]) + + ", 0.12)", + "&:hover,&:focus": { + backgroundColor: successColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(successColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(successColor[0]) + + ", 0.2)", + }, + }, + warning: { + backgroundColor: warningColor[0], + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(warningColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(warningColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(warningColor[0]) + + ", 0.12)", + "&:hover,&:focus": { + backgroundColor: warningColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(warningColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(warningColor[0]) + + ", 0.2)", + }, + }, + danger: { + backgroundColor: dangerColor[0], + boxShadow: + "0 2px 2px 0 rgba(" + + hexToRgb(dangerColor[0]) + + ", 0.14), 0 3px 1px -2px rgba(" + + hexToRgb(dangerColor[0]) + + ", 0.2), 0 1px 5px 0 rgba(" + + hexToRgb(dangerColor[0]) + + ", 0.12)", + "&:hover,&:focus": { + backgroundColor: dangerColor[0], + boxShadow: + "0 14px 26px -12px rgba(" + + hexToRgb(dangerColor[0]) + + ", 0.42), 0 4px 23px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(dangerColor[0]) + + ", 0.2)", + }, + }, + simple: { + "&,&:focus,&:hover": { + color: whiteColor, + background: "transparent", + boxShadow: "none", + }, + "&$rose": { + "&,&:focus,&:hover,&:visited": { + color: roseColor[0], + }, + }, + "&$primary": { + "&,&:focus,&:hover,&:visited": { + color: primaryColor[0], + }, + }, + "&$info": { + "&,&:focus,&:hover,&:visited": { + color: infoColor[0], + }, + }, + "&$success": { + "&,&:focus,&:hover,&:visited": { + color: successColor[0], + }, + }, + "&$warning": { + "&,&:focus,&:hover,&:visited": { + color: warningColor[0], + }, + }, + "&$danger": { + "&,&:focus,&:hover,&:visited": { + color: dangerColor[0], + }, + }, + }, + transparent: { + "&,&:focus,&:hover": { + color: "inherit", + background: "transparent", + boxShadow: "none", + }, + }, + disabled: { + opacity: "0.65", + pointerEvents: "none", + }, + lg: { + padding: "1.125rem 2.25rem", + fontSize: "0.875rem", + lineHeight: "1.333333", + borderRadius: "0.2rem", + }, + sm: { + padding: "0.40625rem 1.25rem", + fontSize: "0.6875rem", + lineHeight: "1.5", + borderRadius: "0.2rem", + }, + round: { + borderRadius: "30px", + }, + block: { + width: "100% !important", + }, + link: { + "&,&:hover,&:focus": { + backgroundColor: "transparent", + color: grayColor[0], + boxShadow: "none", + }, + }, + justIcon: { + paddingLeft: "12px", + paddingRight: "12px", + fontSize: "20px", + height: "41px", + minWidth: "41px", + width: "41px", + "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": { + marginRight: "0px", + }, + "&$lg": { + height: "57px", + minWidth: "57px", + width: "57px", + lineHeight: "56px", + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + fontSize: "32px", + lineHeight: "56px", + }, + "& svg": { + width: "32px", + height: "32px", + }, + }, + "&$sm": { + height: "30px", + minWidth: "30px", + width: "30px", + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + fontSize: "17px", + lineHeight: "29px", + }, + "& svg": { + width: "17px", + height: "17px", + }, + }, + }, +}; + +export default buttonStyle; diff --git a/src/assets/jss/material-dashboard-react/components/cardAvatarStyle.js b/src/assets/jss/material-dashboard-react/components/cardAvatarStyle.js new file mode 100644 index 0000000..bcfa3b3 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/cardAvatarStyle.js @@ -0,0 +1,32 @@ +import { hexToRgb, blackColor } from "assets/jss/material-dashboard-react.js"; + +const cardAvatarStyle = { + cardAvatar: { + "&$cardAvatarProfile img": { + width: "100%", + height: "auto", + }, + }, + cardAvatarProfile: { + maxWidth: "130px", + maxHeight: "130px", + margin: "-50px auto 0", + borderRadius: "50%", + overflow: "hidden", + padding: "0", + boxShadow: + "0 16px 38px -12px rgba(" + + hexToRgb(blackColor) + + ", 0.56), 0 4px 25px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 8px 10px -5px rgba(" + + hexToRgb(blackColor) + + ", 0.2)", + "&$cardAvatarPlain": { + marginTop: "0", + }, + }, + cardAvatarPlain: {}, +}; + +export default cardAvatarStyle; diff --git a/src/assets/jss/material-dashboard-react/components/cardBodyStyle.js b/src/assets/jss/material-dashboard-react/components/cardBodyStyle.js new file mode 100644 index 0000000..38f4856 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/cardBodyStyle.js @@ -0,0 +1,17 @@ +const cardBodyStyle = { + cardBody: { + padding: "0.9375rem 20px", + flex: "1 1 auto", + WebkitBoxFlex: "1", + position: "relative", + }, + cardBodyPlain: { + paddingLeft: "5px", + paddingRight: "5px", + }, + cardBodyProfile: { + marginTop: "15px", + }, +}; + +export default cardBodyStyle; diff --git a/src/assets/jss/material-dashboard-react/components/cardFooterStyle.js b/src/assets/jss/material-dashboard-react/components/cardFooterStyle.js new file mode 100644 index 0000000..15d25c9 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/cardFooterStyle.js @@ -0,0 +1,47 @@ +import { grayColor } from "assets/jss/material-dashboard-react.js"; + +const cardFooterStyle = { + cardFooter: { + padding: "0", + paddingTop: "10px", + margin: "0 15px 10px", + borderRadius: "0", + justifyContent: "space-between", + alignItems: "center", + display: "flex", + backgroundColor: "transparent", + border: "0", + }, + cardFooterProfile: { + marginTop: "-15px", + }, + cardFooterPlain: { + paddingLeft: "5px", + paddingRight: "5px", + backgroundColor: "transparent", + }, + cardFooterStats: { + borderTop: "1px solid " + grayColor[10], + marginTop: "20px", + "& svg": { + position: "relative", + top: "4px", + marginRight: "3px", + marginLeft: "3px", + width: "16px", + height: "16px", + }, + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + fontSize: "16px", + position: "relative", + top: "4px", + marginRight: "3px", + marginLeft: "3px", + }, + }, + cardFooterChart: { + borderTop: "1px solid " + grayColor[10], + }, +}; + +export default cardFooterStyle; diff --git a/src/assets/jss/material-dashboard-react/components/cardHeaderStyle.js b/src/assets/jss/material-dashboard-react/components/cardHeaderStyle.js new file mode 100644 index 0000000..7cb8f45 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/cardHeaderStyle.js @@ -0,0 +1,124 @@ +import { + warningCardHeader, + successCardHeader, + dangerCardHeader, + infoCardHeader, + primaryCardHeader, + roseCardHeader, + whiteColor, +} from "assets/jss/material-dashboard-react.js"; + +const cardHeaderStyle = { + cardHeader: { + padding: "0.75rem 1.25rem", + marginBottom: "0", + borderBottom: "none", + background: "transparent", + zIndex: "3 !important", + "&$cardHeaderPlain,&$cardHeaderIcon,&$cardHeaderStats,&$warningCardHeader,&$successCardHeader,&$dangerCardHeader,&$infoCardHeader,&$primaryCardHeader,&$roseCardHeader": { + margin: "0 15px", + padding: "0", + position: "relative", + color: whiteColor, + }, + "&:first-child": { + borderRadius: "calc(.25rem - 1px) calc(.25rem - 1px) 0 0", + }, + "&$warningCardHeader,&$successCardHeader,&$dangerCardHeader,&$infoCardHeader,&$primaryCardHeader,&$roseCardHeader": { + "&:not($cardHeaderIcon)": { + borderRadius: "3px", + marginTop: "-20px", + padding: "15px", + }, + }, + "&$cardHeaderStats svg": { + fontSize: "36px", + lineHeight: "56px", + textAlign: "center", + width: "36px", + height: "36px", + margin: "10px 10px 4px", + }, + "&$cardHeaderStats i,&$cardHeaderStats .material-icons": { + fontSize: "36px", + lineHeight: "56px", + width: "56px", + height: "56px", + textAlign: "center", + overflow: "unset", + marginBottom: "1px", + }, + "&$cardHeaderStats$cardHeaderIcon": { + textAlign: "right", + }, + }, + cardHeaderPlain: { + marginLeft: "0px !important", + marginRight: "0px !important", + }, + cardHeaderStats: { + "& $cardHeaderIcon": { + textAlign: "right", + }, + "& h1,& h2,& h3,& h4,& h5,& h6": { + margin: "0 !important", + }, + }, + cardHeaderIcon: { + "&$warningCardHeader,&$successCardHeader,&$dangerCardHeader,&$infoCardHeader,&$primaryCardHeader,&$roseCardHeader": { + background: "transparent", + boxShadow: "none", + }, + "& i,& .material-icons": { + width: "33px", + height: "33px", + textAlign: "center", + lineHeight: "33px", + }, + "& svg": { + width: "24px", + height: "24px", + textAlign: "center", + lineHeight: "33px", + margin: "5px 4px 0px", + }, + }, + warningCardHeader: { + color: whiteColor, + "&:not($cardHeaderIcon)": { + ...warningCardHeader, + }, + }, + successCardHeader: { + color: whiteColor, + "&:not($cardHeaderIcon)": { + ...successCardHeader, + }, + }, + dangerCardHeader: { + color: whiteColor, + "&:not($cardHeaderIcon)": { + ...dangerCardHeader, + }, + }, + infoCardHeader: { + color: whiteColor, + "&:not($cardHeaderIcon)": { + ...infoCardHeader, + }, + }, + primaryCardHeader: { + color: whiteColor, + "&:not($cardHeaderIcon)": { + ...primaryCardHeader, + }, + }, + roseCardHeader: { + color: whiteColor, + "&:not($cardHeaderIcon)": { + ...roseCardHeader, + }, + }, +}; + +export default cardHeaderStyle; diff --git a/src/assets/jss/material-dashboard-react/components/cardIconStyle.js b/src/assets/jss/material-dashboard-react/components/cardIconStyle.js new file mode 100644 index 0000000..572ed2c --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/cardIconStyle.js @@ -0,0 +1,30 @@ +import { + warningCardHeader, + successCardHeader, + dangerCardHeader, + infoCardHeader, + primaryCardHeader, + roseCardHeader, + grayColor, +} from "assets/jss/material-dashboard-react.js"; + +const cardIconStyle = { + cardIcon: { + "&$warningCardHeader,&$successCardHeader,&$dangerCardHeader,&$infoCardHeader,&$primaryCardHeader,&$roseCardHeader": { + borderRadius: "3px", + backgroundColor: grayColor[0], + padding: "15px", + marginTop: "-20px", + marginRight: "15px", + float: "left", + }, + }, + warningCardHeader, + successCardHeader, + dangerCardHeader, + infoCardHeader, + primaryCardHeader, + roseCardHeader, +}; + +export default cardIconStyle; diff --git a/src/assets/jss/material-dashboard-react/components/cardStyle.js b/src/assets/jss/material-dashboard-react/components/cardStyle.js new file mode 100644 index 0000000..3f10401 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/cardStyle.js @@ -0,0 +1,40 @@ +import { + blackColor, + whiteColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const cardStyle = { + card: { + border: "0", + marginBottom: "30px", + marginTop: "30px", + borderRadius: "6px", + color: "rgba(" + hexToRgb(blackColor) + ", 0.87)", + background: whiteColor, + width: "100%", + boxShadow: "0 1px 4px 0 rgba(" + hexToRgb(blackColor) + ", 0.14)", + position: "relative", + display: "flex", + flexDirection: "column", + minWidth: "0", + wordWrap: "break-word", + fontSize: ".875rem", + }, + cardPlain: { + background: "transparent", + boxShadow: "none", + }, + cardProfile: { + marginTop: "30px", + textAlign: "center", + }, + cardChart: { + "& p": { + marginTop: "0px", + paddingTop: "0px", + }, + }, +}; + +export default cardStyle; diff --git a/src/assets/jss/material-dashboard-react/components/customInputStyle.js b/src/assets/jss/material-dashboard-react/components/customInputStyle.js new file mode 100644 index 0000000..5cdfba6 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/customInputStyle.js @@ -0,0 +1,77 @@ +import { + primaryColor, + dangerColor, + successColor, + grayColor, + defaultFont, +} from "assets/jss/material-dashboard-react.js"; + +const customInputStyle = { + disabled: { + "&:before": { + backgroundColor: "transparent !important", + }, + }, + underline: { + "&:hover:not($disabled):before,&:before": { + borderColor: grayColor[4] + " !important", + borderWidth: "1px !important", + }, + "&:after": { + borderColor: primaryColor[0], + }, + }, + underlineError: { + "&:after": { + borderColor: dangerColor[0], + }, + }, + underlineSuccess: { + "&:after": { + borderColor: successColor[0], + }, + }, + labelRoot: { + ...defaultFont, + color: grayColor[3] + " !important", + fontWeight: "400", + fontSize: "14px", + lineHeight: "1.42857", + letterSpacing: "unset", + }, + labelRootError: { + color: dangerColor[0], + }, + labelRootSuccess: { + color: successColor[0], + }, + feedback: { + position: "absolute", + top: "18px", + right: "0", + zIndex: "2", + display: "block", + width: "24px", + height: "24px", + textAlign: "center", + pointerEvents: "none", + }, + marginTop: { + marginTop: "16px", + }, + formControl: { + paddingBottom: "10px", + margin: "27px 0 0 0", + position: "relative", + verticalAlign: "unset", + }, + labelRTL: { + right: 0, + transition: "all 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms", + "&.MuiInputLabel-shrink": { + transform: "translate(0, 1.5px)", + }, + }, +}; + +export default customInputStyle; diff --git a/src/assets/jss/material-dashboard-react/components/customTabsStyle.js b/src/assets/jss/material-dashboard-react/components/customTabsStyle.js new file mode 100644 index 0000000..c436bf2 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/customTabsStyle.js @@ -0,0 +1,62 @@ +import { hexToRgb, whiteColor } from "assets/jss/material-dashboard-react.js"; + +const customTabsStyle = { + cardTitle: { + float: "left", + padding: "10px 10px 10px 0px", + lineHeight: "24px", + }, + cardTitleRTL: { + float: "right", + padding: "10px 0px 10px 10px !important", + }, + displayNone: { + display: "none !important", + }, + tabsRoot: { + minHeight: "unset !important", + overflowX: "visible", + "& $tabRootButton": { + fontSize: "0.875rem", + }, + }, + tabRootButton: { + minHeight: "unset !important", + minWidth: "unset !important", + width: "unset !important", + height: "unset !important", + maxWidth: "unset !important", + maxHeight: "unset !important", + padding: "10px 15px", + borderRadius: "3px", + lineHeight: "24px", + border: "0 !important", + color: whiteColor + " !important", + marginLeft: "4px", + "&:last-child": { + marginLeft: "0px", + }, + }, + tabSelected: { + backgroundColor: "rgba(" + hexToRgb(whiteColor) + ", 0.2)", + transition: "0.2s background-color 0.1s", + }, + tabWrapper: { + display: "inline-block", + minHeight: "unset !important", + minWidth: "unset !important", + width: "unset !important", + height: "unset !important", + maxWidth: "unset !important", + maxHeight: "unset !important", + fontWeight: "500", + fontSize: "12px", + marginTop: "1px", + "& > svg,& > .material-icons": { + verticalAlign: "middle", + margin: "-1px 5px 0 0 !important", + }, + }, +}; + +export default customTabsStyle; diff --git a/src/assets/jss/material-dashboard-react/components/footerStyle.js b/src/assets/jss/material-dashboard-react/components/footerStyle.js new file mode 100644 index 0000000..a0613e4 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/footerStyle.js @@ -0,0 +1,54 @@ +import { + defaultFont, + container, + primaryColor, + grayColor, +} from "assets/jss/material-dashboard-react.js"; + +const footerStyle = { + block: { + color: "inherit", + padding: "15px", + textTransform: "uppercase", + borderRadius: "3px", + textDecoration: "none", + position: "relative", + display: "block", + ...defaultFont, + fontWeight: "500", + fontSize: "12px", + }, + left: { + float: "left!important", + display: "block", + }, + right: { + padding: "15px 0", + margin: "0", + fontSize: "14px", + float: "right!important", + }, + footer: { + bottom: "0", + borderTop: "1px solid " + grayColor[11], + padding: "15px 0", + ...defaultFont, + }, + container, + a: { + color: primaryColor, + textDecoration: "none", + backgroundColor: "transparent", + }, + list: { + marginBottom: "0", + padding: "0", + marginTop: "0", + }, + inlineBlock: { + display: "inline-block", + padding: "0px", + width: "auto", + }, +}; +export default footerStyle; diff --git a/src/assets/jss/material-dashboard-react/components/headerLinksStyle.js b/src/assets/jss/material-dashboard-react/components/headerLinksStyle.js new file mode 100644 index 0000000..818cb00 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/headerLinksStyle.js @@ -0,0 +1,113 @@ +import { + defaultFont, + dangerColor, + whiteColor, +} from "assets/jss/material-dashboard-react.js"; + +import dropdownStyle from "assets/jss/material-dashboard-react/dropdownStyle.js"; + +const headerLinksStyle = (theme) => ({ + ...dropdownStyle(theme), + search: { + "& > div": { + marginTop: "0", + }, + [theme.breakpoints.down("sm")]: { + margin: "10px 15px !important", + float: "none !important", + paddingTop: "1px", + paddingBottom: "1px", + padding: "0!important", + width: "60%", + marginTop: "40px", + "& input": { + color: whiteColor, + }, + }, + }, + linkText: { + zIndex: "4", + ...defaultFont, + fontSize: "14px", + margin: "0px", + }, + buttonLink: { + [theme.breakpoints.down("sm")]: { + display: "flex", + margin: "10px 15px 0", + width: "-webkit-fill-available", + "& svg": { + width: "24px", + height: "30px", + marginRight: "15px", + marginLeft: "-15px", + }, + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + fontSize: "24px", + lineHeight: "30px", + width: "24px", + height: "30px", + marginRight: "15px", + marginLeft: "-15px", + }, + "& > span": { + justifyContent: "flex-start", + width: "100%", + }, + }, + }, + searchButton: { + [theme.breakpoints.down("sm")]: { + top: "-50px !important", + marginRight: "22px", + float: "right", + }, + }, + margin: { + zIndex: "4", + margin: "0", + }, + searchIcon: { + width: "17px", + zIndex: "4", + }, + notifications: { + zIndex: "4", + [theme.breakpoints.up("md")]: { + position: "absolute", + top: "2px", + border: "1px solid " + whiteColor, + right: "4px", + fontSize: "9px", + background: dangerColor[0], + color: whiteColor, + minWidth: "16px", + height: "16px", + borderRadius: "10px", + textAlign: "center", + lineHeight: "16px", + verticalAlign: "middle", + display: "block", + }, + [theme.breakpoints.down("sm")]: { + ...defaultFont, + fontSize: "14px", + marginRight: "8px", + }, + }, + manager: { + [theme.breakpoints.down("sm")]: { + width: "100%", + }, + display: "inline-block", + }, + searchWrapper: { + [theme.breakpoints.down("sm")]: { + width: "-webkit-fill-available", + margin: "10px 15px 0", + }, + display: "inline-block", + }, +}); + +export default headerLinksStyle; diff --git a/src/assets/jss/material-dashboard-react/components/headerStyle.js b/src/assets/jss/material-dashboard-react/components/headerStyle.js new file mode 100644 index 0000000..6d98c7e --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/headerStyle.js @@ -0,0 +1,82 @@ +import { + container, + defaultFont, + primaryColor, + defaultBoxShadow, + infoColor, + successColor, + warningColor, + dangerColor, + whiteColor, + grayColor, +} from "assets/jss/material-dashboard-react.js"; + +const headerStyle = () => ({ + appBar: { + backgroundColor: "transparent", + boxShadow: "none", + borderBottom: "0", + marginBottom: "0", + position: "absolute", + width: "100%", + paddingTop: "10px", + zIndex: "1029", + color: grayColor[7], + border: "0", + borderRadius: "3px", + padding: "10px 0", + transition: "all 150ms ease 0s", + minHeight: "50px", + display: "block", + }, + container: { + ...container, + minHeight: "50px", + }, + flex: { + flex: 1, + }, + title: { + ...defaultFont, + letterSpacing: "unset", + lineHeight: "30px", + fontSize: "18px", + borderRadius: "3px", + textTransform: "none", + color: "inherit", + margin: "0", + "&:hover,&:focus": { + background: "transparent", + }, + }, + appResponsive: { + top: "8px", + }, + primary: { + backgroundColor: primaryColor[0], + color: whiteColor, + ...defaultBoxShadow, + }, + info: { + backgroundColor: infoColor[0], + color: whiteColor, + ...defaultBoxShadow, + }, + success: { + backgroundColor: successColor[0], + color: whiteColor, + ...defaultBoxShadow, + }, + warning: { + backgroundColor: warningColor[0], + color: whiteColor, + ...defaultBoxShadow, + }, + danger: { + backgroundColor: dangerColor[0], + color: whiteColor, + ...defaultBoxShadow, + }, +}); + +export default headerStyle; diff --git a/src/assets/jss/material-dashboard-react/components/rtlHeaderLinksStyle.js b/src/assets/jss/material-dashboard-react/components/rtlHeaderLinksStyle.js new file mode 100644 index 0000000..818cb00 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/rtlHeaderLinksStyle.js @@ -0,0 +1,113 @@ +import { + defaultFont, + dangerColor, + whiteColor, +} from "assets/jss/material-dashboard-react.js"; + +import dropdownStyle from "assets/jss/material-dashboard-react/dropdownStyle.js"; + +const headerLinksStyle = (theme) => ({ + ...dropdownStyle(theme), + search: { + "& > div": { + marginTop: "0", + }, + [theme.breakpoints.down("sm")]: { + margin: "10px 15px !important", + float: "none !important", + paddingTop: "1px", + paddingBottom: "1px", + padding: "0!important", + width: "60%", + marginTop: "40px", + "& input": { + color: whiteColor, + }, + }, + }, + linkText: { + zIndex: "4", + ...defaultFont, + fontSize: "14px", + margin: "0px", + }, + buttonLink: { + [theme.breakpoints.down("sm")]: { + display: "flex", + margin: "10px 15px 0", + width: "-webkit-fill-available", + "& svg": { + width: "24px", + height: "30px", + marginRight: "15px", + marginLeft: "-15px", + }, + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + fontSize: "24px", + lineHeight: "30px", + width: "24px", + height: "30px", + marginRight: "15px", + marginLeft: "-15px", + }, + "& > span": { + justifyContent: "flex-start", + width: "100%", + }, + }, + }, + searchButton: { + [theme.breakpoints.down("sm")]: { + top: "-50px !important", + marginRight: "22px", + float: "right", + }, + }, + margin: { + zIndex: "4", + margin: "0", + }, + searchIcon: { + width: "17px", + zIndex: "4", + }, + notifications: { + zIndex: "4", + [theme.breakpoints.up("md")]: { + position: "absolute", + top: "2px", + border: "1px solid " + whiteColor, + right: "4px", + fontSize: "9px", + background: dangerColor[0], + color: whiteColor, + minWidth: "16px", + height: "16px", + borderRadius: "10px", + textAlign: "center", + lineHeight: "16px", + verticalAlign: "middle", + display: "block", + }, + [theme.breakpoints.down("sm")]: { + ...defaultFont, + fontSize: "14px", + marginRight: "8px", + }, + }, + manager: { + [theme.breakpoints.down("sm")]: { + width: "100%", + }, + display: "inline-block", + }, + searchWrapper: { + [theme.breakpoints.down("sm")]: { + width: "-webkit-fill-available", + margin: "10px 15px 0", + }, + display: "inline-block", + }, +}); + +export default headerLinksStyle; diff --git a/src/assets/jss/material-dashboard-react/components/sidebarStyle.js b/src/assets/jss/material-dashboard-react/components/sidebarStyle.js new file mode 100644 index 0000000..c64732a --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/sidebarStyle.js @@ -0,0 +1,301 @@ +import { + drawerWidth, + transition, + boxShadow, + defaultFont, + primaryColor, + primaryBoxShadow, + infoColor, + successColor, + warningColor, + dangerColor, + whiteColor, + grayColor, + blackColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const sidebarStyle = (theme) => ({ + drawerPaper: { + border: "none", + position: "fixed", + top: "0", + bottom: "0", + left: "0", + zIndex: "1", + ...boxShadow, + width: drawerWidth, + [theme.breakpoints.up("md")]: { + width: drawerWidth, + position: "fixed", + height: "100%", + }, + [theme.breakpoints.down("sm")]: { + width: drawerWidth, + ...boxShadow, + position: "fixed", + display: "block", + top: "0", + height: "100vh", + right: "0", + left: "auto", + zIndex: "1032", + visibility: "visible", + overflowY: "visible", + borderTop: "none", + textAlign: "left", + paddingRight: "0px", + paddingLeft: "0", + transform: `translate3d(${drawerWidth}px, 0, 0)`, + ...transition, + }, + }, + drawerPaperRTL: { + [theme.breakpoints.up("md")]: { + left: "auto !important", + right: "0 !important", + }, + [theme.breakpoints.down("sm")]: { + left: "0 !important", + right: "auto !important", + }, + }, + logo: { + position: "relative", + padding: "15px 15px", + zIndex: "4", + "&:after": { + content: '""', + position: "absolute", + bottom: "0", + + height: "1px", + right: "15px", + width: "calc(100% - 30px)", + backgroundColor: "rgba(" + hexToRgb(grayColor[6]) + ", 0.3)", + }, + }, + logoLink: { + ...defaultFont, + textTransform: "uppercase", + padding: "5px 0", + display: "block", + fontSize: "18px", + textAlign: "left", + fontWeight: "400", + lineHeight: "30px", + textDecoration: "none", + backgroundColor: "transparent", + "&,&:hover": { + color: whiteColor, + }, + }, + logoLinkRTL: { + textAlign: "right", + }, + logoImage: { + width: "30px", + display: "inline-block", + maxHeight: "30px", + marginLeft: "10px", + marginRight: "15px", + }, + img: { + width: "35px", + top: "22px", + position: "absolute", + verticalAlign: "middle", + border: "0", + }, + background: { + position: "absolute", + zIndex: "1", + height: "100%", + width: "100%", + display: "block", + top: "0", + left: "0", + backgroundSize: "cover", + backgroundPosition: "center center", + "&:after": { + position: "absolute", + zIndex: "3", + width: "100%", + height: "100%", + content: '""', + display: "block", + background: blackColor, + opacity: ".8", + }, + }, + list: { + marginTop: "20px", + paddingLeft: "0", + paddingTop: "0", + paddingBottom: "0", + marginBottom: "0", + listStyle: "none", + position: "unset", + }, + item: { + position: "relative", + display: "block", + textDecoration: "none", + "&:hover,&:focus,&:visited,&": { + color: whiteColor, + }, + }, + itemLink: { + width: "auto", + transition: "all 300ms linear", + margin: "10px 15px 0", + borderRadius: "3px", + position: "relative", + display: "block", + padding: "10px 15px", + backgroundColor: "transparent", + ...defaultFont, + }, + itemIcon: { + width: "24px", + height: "30px", + fontSize: "24px", + lineHeight: "30px", + float: "left", + marginRight: "15px", + textAlign: "center", + verticalAlign: "middle", + color: "rgba(" + hexToRgb(whiteColor) + ", 0.8)", + }, + itemIconRTL: { + marginRight: "3px", + marginLeft: "15px", + float: "right", + }, + itemText: { + ...defaultFont, + margin: "0", + lineHeight: "30px", + fontSize: "14px", + color: whiteColor, + }, + itemTextRTL: { + textAlign: "right", + }, + whiteFont: { + color: whiteColor, + }, + purple: { + backgroundColor: primaryColor[0], + ...primaryBoxShadow, + "&:hover,&:focus": { + backgroundColor: primaryColor[0], + ...primaryBoxShadow, + }, + }, + blue: { + backgroundColor: infoColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(infoColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(infoColor[0]) + + ",.2)", + "&:hover,&:focus": { + backgroundColor: infoColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(infoColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(infoColor[0]) + + ",.2)", + }, + }, + green: { + backgroundColor: successColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(successColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(successColor[0]) + + ",.2)", + "&:hover,&:focus": { + backgroundColor: successColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(successColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(successColor[0]) + + ",.2)", + }, + }, + orange: { + backgroundColor: warningColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(warningColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(warningColor[0]) + + ",.2)", + "&:hover,&:focus": { + backgroundColor: warningColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(warningColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(warningColor[0]) + + ",.2)", + }, + }, + red: { + backgroundColor: dangerColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(dangerColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(dangerColor[0]) + + ",.2)", + "&:hover,&:focus": { + backgroundColor: dangerColor[0], + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(dangerColor[0]) + + ",.28), 0 4px 20px 0 rgba(" + + hexToRgb(blackColor) + + ",.12), 0 7px 8px -5px rgba(" + + hexToRgb(dangerColor[0]) + + ",.2)", + }, + }, + sidebarWrapper: { + position: "relative", + height: "calc(100vh - 75px)", + overflow: "auto", + width: "260px", + zIndex: "4", + overflowScrolling: "touch", + }, + activePro: { + [theme.breakpoints.up("md")]: { + position: "absolute", + width: "100%", + bottom: "13px", + }, + }, +}); + +export default sidebarStyle; diff --git a/src/assets/jss/material-dashboard-react/components/snackbarContentStyle.js b/src/assets/jss/material-dashboard-react/components/snackbarContentStyle.js new file mode 100644 index 0000000..82b68b1 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/snackbarContentStyle.js @@ -0,0 +1,131 @@ +import { + defaultFont, + primaryBoxShadow, + infoBoxShadow, + successBoxShadow, + warningBoxShadow, + dangerBoxShadow, + roseBoxShadow, + whiteColor, + blackColor, + grayColor, + infoColor, + successColor, + dangerColor, + roseColor, + primaryColor, + warningColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const snackbarContentStyle = { + root: { + ...defaultFont, + flexWrap: "unset", + position: "relative", + padding: "20px 15px", + lineHeight: "20px", + marginBottom: "20px", + fontSize: "14px", + backgroundColor: whiteColor, + color: grayColor[7], + borderRadius: "3px", + minWidth: "unset", + maxWidth: "unset", + boxShadow: + "0 12px 20px -10px rgba(" + + hexToRgb(whiteColor) + + ", 0.28), 0 4px 20px 0px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 7px 8px -5px rgba(" + + hexToRgb(whiteColor) + + ", 0.2)", + }, + top20: { + top: "20px", + }, + top40: { + top: "40px", + }, + info: { + backgroundColor: infoColor[3], + color: whiteColor, + ...infoBoxShadow, + }, + success: { + backgroundColor: successColor[3], + color: whiteColor, + ...successBoxShadow, + }, + warning: { + backgroundColor: warningColor[3], + color: whiteColor, + ...warningBoxShadow, + }, + danger: { + backgroundColor: dangerColor[3], + color: whiteColor, + ...dangerBoxShadow, + }, + primary: { + backgroundColor: primaryColor[3], + color: whiteColor, + ...primaryBoxShadow, + }, + rose: { + backgroundColor: roseColor[3], + color: whiteColor, + ...roseBoxShadow, + }, + message: { + padding: "0", + display: "block", + maxWidth: "89%", + }, + close: { + width: "11px", + height: "11px", + }, + iconButton: { + width: "24px", + height: "24px", + padding: "0px", + }, + icon: { + display: "block", + left: "15px", + position: "absolute", + top: "50%", + marginTop: "-15px", + width: "30px", + height: "30px", + }, + infoIcon: { + color: infoColor[3], + }, + successIcon: { + color: successColor[3], + }, + warningIcon: { + color: warningColor[3], + }, + dangerIcon: { + color: dangerColor[3], + }, + primaryIcon: { + color: primaryColor[3], + }, + roseIcon: { + color: roseColor[3], + }, + iconMessage: { + paddingLeft: "50px", + display: "block", + }, + actionRTL: { + marginLeft: "-8px", + marginRight: "auto", + }, +}; + +export default snackbarContentStyle; diff --git a/src/assets/jss/material-dashboard-react/components/tableStyle.js b/src/assets/jss/material-dashboard-react/components/tableStyle.js new file mode 100644 index 0000000..d910870 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/tableStyle.js @@ -0,0 +1,77 @@ +import { + warningColor, + primaryColor, + dangerColor, + successColor, + infoColor, + roseColor, + grayColor, + defaultFont, +} from "assets/jss/material-dashboard-react.js"; + +const tableStyle = (theme) => ({ + warningTableHeader: { + color: warningColor[0], + }, + primaryTableHeader: { + color: primaryColor[0], + }, + dangerTableHeader: { + color: dangerColor[0], + }, + successTableHeader: { + color: successColor[0], + }, + infoTableHeader: { + color: infoColor[0], + }, + roseTableHeader: { + color: roseColor[0], + }, + grayTableHeader: { + color: grayColor[0], + }, + table: { + marginBottom: "0", + width: "100%", + maxWidth: "100%", + backgroundColor: "transparent", + borderSpacing: "0", + borderCollapse: "collapse", + }, + tableHeadCell: { + color: "inherit", + ...defaultFont, + "&, &$tableCell": { + fontSize: "1em", + }, + }, + tableCell: { + ...defaultFont, + lineHeight: "1.42857143", + padding: "12px 8px", + verticalAlign: "middle", + fontSize: "0.8125rem", + }, + tableResponsive: { + width: "100%", + marginTop: theme.spacing(3), + overflowX: "auto", + }, + tableHeadRow: { + height: "56px", + color: "inherit", + display: "table-row", + outline: "none", + verticalAlign: "middle", + }, + tableBodyRow: { + height: "48px", + color: "inherit", + display: "table-row", + outline: "none", + verticalAlign: "middle", + }, +}); + +export default tableStyle; diff --git a/src/assets/jss/material-dashboard-react/components/tasksStyle.js b/src/assets/jss/material-dashboard-react/components/tasksStyle.js new file mode 100644 index 0000000..886494d --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/tasksStyle.js @@ -0,0 +1,57 @@ +import { + defaultFont, + primaryColor, + dangerColor, + grayColor, +} from "assets/jss/material-dashboard-react.js"; +import tooltipStyle from "assets/jss/material-dashboard-react/tooltipStyle.js"; +import checkboxAdnRadioStyle from "assets/jss/material-dashboard-react/checkboxAdnRadioStyle.js"; +const tasksStyle = { + ...tooltipStyle, + ...checkboxAdnRadioStyle, + table: { + marginBottom: "0", + overflow: "visible", + }, + tableRow: { + position: "relative", + borderBottom: "1px solid " + grayColor[5], + }, + tableActions: { + display: "flex", + border: "none", + padding: "12px 8px !important", + verticalAlign: "middle", + }, + tableCell: { + ...defaultFont, + padding: "8px", + verticalAlign: "middle", + border: "none", + lineHeight: "1.42857143", + fontSize: "14px", + }, + tableCellRTL: { + textAlign: "right", + }, + tableActionButton: { + width: "27px", + height: "27px", + padding: "0", + }, + tableActionButtonIcon: { + width: "17px", + height: "17px", + }, + edit: { + backgroundColor: "transparent", + color: primaryColor[0], + boxShadow: "none", + }, + close: { + backgroundColor: "transparent", + color: dangerColor[0], + boxShadow: "none", + }, +}; +export default tasksStyle; diff --git a/src/assets/jss/material-dashboard-react/components/typographyStyle.js b/src/assets/jss/material-dashboard-react/components/typographyStyle.js new file mode 100644 index 0000000..8aff98a --- /dev/null +++ b/src/assets/jss/material-dashboard-react/components/typographyStyle.js @@ -0,0 +1,56 @@ +import { + defaultFont, + primaryColor, + infoColor, + successColor, + warningColor, + dangerColor, + grayColor, +} from "assets/jss/material-dashboard-react.js"; + +const typographyStyle = { + defaultFontStyle: { + ...defaultFont, + fontSize: "14px", + }, + defaultHeaderMargins: { + marginTop: "20px", + marginBottom: "10px", + }, + quote: { + padding: "10px 20px", + margin: "0 0 20px", + fontSize: "17.5px", + borderLeft: "5px solid " + grayColor[10], + }, + quoteText: { + margin: "0 0 10px", + fontStyle: "italic", + }, + quoteAuthor: { + display: "block", + fontSize: "80%", + lineHeight: "1.42857143", + color: grayColor[1], + }, + mutedText: { + color: grayColor[1], + }, + primaryText: { + color: primaryColor[0], + }, + infoText: { + color: infoColor[0], + }, + successText: { + color: successColor[0], + }, + warningText: { + color: warningColor[0], + }, + dangerText: { + color: dangerColor[0], + }, +}; + +export default typographyStyle; diff --git a/src/assets/jss/material-dashboard-react/dropdownStyle.js b/src/assets/jss/material-dashboard-react/dropdownStyle.js new file mode 100644 index 0000000..6e61466 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/dropdownStyle.js @@ -0,0 +1,124 @@ +import { + primaryColor, + whiteColor, + primaryBoxShadow, + defaultFont, + blackColor, + grayColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const dropdownStyle = (theme) => ({ + buttonLink: { + [theme.breakpoints.down("md")]: { + display: "flex", + marginLeft: "30px", + width: "auto", + }, + }, + links: { + width: "20px", + height: "20px", + zIndex: "4", + [theme.breakpoints.down("md")]: { + display: "block", + width: "30px", + height: "30px", + color: grayColor[9], + marginRight: "15px", + }, + }, + linkText: { + zIndex: "4", + ...defaultFont, + fontSize: "14px", + }, + popperClose: { + pointerEvents: "none", + }, + popperResponsive: { + [theme.breakpoints.down("md")]: { + zIndex: "1640", + position: "static", + float: "none", + width: "auto", + marginTop: "0", + backgroundColor: "transparent", + border: "0", + WebkitBoxShadow: "none", + boxShadow: "none", + color: "black", + }, + }, + popperNav: { + [theme.breakpoints.down("sm")]: { + position: "static !important", + left: "unset !important", + top: "unset !important", + transform: "none !important", + willChange: "unset !important", + "& > div": { + boxShadow: "none !important", + marginLeft: "0rem", + marginRight: "0rem", + transition: "none !important", + marginTop: "0px !important", + marginBottom: "0px !important", + padding: "0px !important", + backgroundColor: "transparent !important", + "& ul li": { + color: whiteColor + " !important", + margin: "10px 15px 0!important", + padding: "10px 15px !important", + "&:hover": { + backgroundColor: "hsla(0,0%,78%,.2)", + boxShadow: "none", + }, + }, + }, + }, + }, + dropdown: { + borderRadius: "3px", + border: "0", + boxShadow: "0 2px 5px 0 rgba(" + hexToRgb(blackColor) + ", 0.26)", + top: "100%", + zIndex: "1000", + minWidth: "160px", + padding: "5px 0", + margin: "2px 0 0", + fontSize: "14px", + textAlign: "left", + listStyle: "none", + backgroundColor: whiteColor, + WebkitBackgroundClip: "padding-box", + backgroundClip: "padding-box", + }, + dropdownItem: { + ...defaultFont, + fontSize: "13px", + padding: "10px 20px", + margin: "0 5px", + borderRadius: "2px", + WebkitTransition: "all 150ms linear", + MozTransition: "all 150ms linear", + OTransition: "all 150ms linear", + MsTransition: "all 150ms linear", + transition: "all 150ms linear", + display: "block", + clear: "both", + fontWeight: "400", + lineHeight: "1.42857143", + color: grayColor[8], + whiteSpace: "nowrap", + height: "unset", + minHeight: "unset", + "&:hover": { + backgroundColor: primaryColor[0], + color: whiteColor, + ...primaryBoxShadow, + }, + }, +}); + +export default dropdownStyle; diff --git a/src/assets/jss/material-dashboard-react/layouts/adminStyle.js b/src/assets/jss/material-dashboard-react/layouts/adminStyle.js new file mode 100644 index 0000000..2072d61 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/layouts/adminStyle.js @@ -0,0 +1,36 @@ +import { + drawerWidth, + transition, + container, +} from "assets/jss/material-dashboard-react.js"; + +const appStyle = (theme) => ({ + wrapper: { + position: "relative", + top: "0", + height: "100vh", + }, + mainPanel: { + [theme.breakpoints.up("md")]: { + width: `calc(100% - ${drawerWidth}px)`, + }, + overflow: "auto", + position: "relative", + float: "right", + ...transition, + maxHeight: "100%", + width: "100%", + overflowScrolling: "touch", + }, + content: { + marginTop: "70px", + padding: "30px 15px", + minHeight: "calc(100vh - 123px)", + }, + container, + map: { + marginTop: "70px", + }, +}); + +export default appStyle; diff --git a/src/assets/jss/material-dashboard-react/layouts/rtlStyle.js b/src/assets/jss/material-dashboard-react/layouts/rtlStyle.js new file mode 100644 index 0000000..faa9dcc --- /dev/null +++ b/src/assets/jss/material-dashboard-react/layouts/rtlStyle.js @@ -0,0 +1,37 @@ +import { + drawerWidth, + transition, + container, +} from "assets/jss/material-dashboard-react.js"; + +const appStyle = (theme) => ({ + wrapper: { + position: "relative", + top: "0", + height: "100vh", + direction: "rtl", + }, + mainPanel: { + [theme.breakpoints.up("md")]: { + width: `calc(100% - ${drawerWidth}px)`, + }, + overflow: "auto", + position: "relative", + float: "left", + ...transition, + maxHeight: "100%", + width: "100%", + overflowScrolling: "touch", + }, + content: { + marginTop: "70px", + padding: "30px 15px", + minHeight: "calc(100vh - 123px)", + }, + container, + map: { + marginTop: "70px", + }, +}); + +export default appStyle; diff --git a/src/assets/jss/material-dashboard-react/tooltipStyle.js b/src/assets/jss/material-dashboard-react/tooltipStyle.js new file mode 100644 index 0000000..9d83efb --- /dev/null +++ b/src/assets/jss/material-dashboard-react/tooltipStyle.js @@ -0,0 +1,34 @@ +import { blackColor, hexToRgb } from "assets/jss/material-dashboard-react.js"; + +const tooltipStyle = { + tooltip: { + padding: "10px 15px", + minWidth: "130px", + lineHeight: "1.7em", + border: "none", + borderRadius: "3px", + boxShadow: + "0 8px 10px 1px rgba(" + + hexToRgb(blackColor) + + ", 0.14), 0 3px 14px 2px rgba(" + + hexToRgb(blackColor) + + ", 0.12), 0 5px 5px -3px rgba(" + + hexToRgb(blackColor) + + ", 0.2)", + maxWidth: "200px", + textAlign: "center", + fontFamily: '"Helvetica Neue",Helvetica,Arial,sans-serif', + fontSize: "12px", + fontStyle: "normal", + fontWeight: "400", + textShadow: "none", + textTransform: "none", + letterSpacing: "normal", + wordBreak: "normal", + wordSpacing: "normal", + wordWrap: "normal", + whiteSpace: "normal", + lineBreak: "auto", + }, +}; +export default tooltipStyle; diff --git a/src/assets/jss/material-dashboard-react/views/dashboardStyle.js b/src/assets/jss/material-dashboard-react/views/dashboardStyle.js new file mode 100644 index 0000000..42eb7a0 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/views/dashboardStyle.js @@ -0,0 +1,82 @@ +import { + successColor, + whiteColor, + grayColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const dashboardStyle = { + successText: { + color: successColor[0], + }, + upArrowCardCategory: { + width: "16px", + height: "16px", + }, + stats: { + color: grayColor[0], + display: "inline-flex", + fontSize: "12px", + lineHeight: "22px", + "& svg": { + top: "4px", + width: "16px", + height: "16px", + position: "relative", + marginRight: "3px", + marginLeft: "3px", + }, + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + top: "4px", + fontSize: "16px", + position: "relative", + marginRight: "3px", + marginLeft: "3px", + }, + }, + cardCategory: { + color: grayColor[0], + margin: "0", + fontSize: "14px", + marginTop: "0", + paddingTop: "10px", + marginBottom: "0", + }, + cardCategoryWhite: { + color: "rgba(" + hexToRgb(whiteColor) + ",.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + cardTitle: { + color: grayColor[2], + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: grayColor[1], + fontWeight: "400", + lineHeight: "1", + }, + }, + cardTitleWhite: { + color: whiteColor, + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: grayColor[1], + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +export default dashboardStyle; diff --git a/src/assets/jss/material-dashboard-react/views/iconsStyle.js b/src/assets/jss/material-dashboard-react/views/iconsStyle.js new file mode 100644 index 0000000..51c80a3 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/views/iconsStyle.js @@ -0,0 +1,46 @@ +import { + boxShadow, + whiteColor, + grayColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const iconsStyle = { + iframe: { + width: "100%", + height: "500px", + border: "0", + ...boxShadow, + }, + iframeContainer: { + margin: "0 -20px 0", + }, + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(" + hexToRgb(whiteColor) + ",.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: whiteColor, + }, + }, + cardTitleWhite: { + color: whiteColor, + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: grayColor[1], + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +export default iconsStyle; diff --git a/src/assets/jss/material-dashboard-react/views/loginPage.js b/src/assets/jss/material-dashboard-react/views/loginPage.js new file mode 100644 index 0000000..42164f3 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/views/loginPage.js @@ -0,0 +1,91 @@ +import { container } from "assets/jss/material-dashboard-react.js"; + +const signupPageStyle = { + container: { + ...container, + zIndex: "2", + position: "relative", + paddingTop: "20vh", + color: "#FFFFFF", + paddingBottom: "200px", + }, + cardHidden: { + opacity: "0", + transform: "translate3d(0, -60px, 0)", + }, + pageHeader: { + minHeight: "100vh", + height: "auto", + display: "inherit", + position: "relative", + margin: "0", + padding: "0", + border: "0", + alignItems: "center", + "&:before": { + background: "rgba(0, 0, 0, 0.5)", + }, + "&:before,&:after": { + position: "absolute", + zIndex: "1", + width: "100%", + height: "100%", + display: "block", + left: "0", + top: "0", + content: '""', + }, + "& footer li a,& footer li a:hover,& footer li a:active": { + color: "#FFFFFF", + }, + "& footer": { + position: "absolute", + bottom: "0", + width: "100%", + }, + }, + form: { + margin: "0", + }, + cardHeader: { + width: "auto", + textAlign: "center", + marginLeft: "20px", + marginRight: "20px", + marginTop: "-40px", + padding: "20px 0", + marginBottom: "15px", + }, + socialIcons: { + maxWidth: "24px", + marginTop: "0", + width: "100%", + transform: "none", + left: "0", + top: "0", + height: "100%", + lineHeight: "41px", + fontSize: "20px", + }, + divider: { + marginTop: "30px", + marginBottom: "0px", + textAlign: "center", + }, + cardFooter: { + paddingTop: "0rem", + border: "0", + borderRadius: "6px", + justifyContent: "center !important", + }, + socialLine: { + marginTop: "1rem", + textAlign: "center", + padding: "0", + }, + inputIconsColor: { + color: "#495057", + }, +}; + +export default signupPageStyle; diff --git a/src/assets/jss/material-dashboard-react/views/rtlStyle.js b/src/assets/jss/material-dashboard-react/views/rtlStyle.js new file mode 100644 index 0000000..a0f2109 --- /dev/null +++ b/src/assets/jss/material-dashboard-react/views/rtlStyle.js @@ -0,0 +1,85 @@ +import { + successColor, + whiteColor, + grayColor, + hexToRgb, +} from "assets/jss/material-dashboard-react.js"; + +const rtlStyle = { + successText: { + color: successColor[0], + }, + upArrowCardCategory: { + width: "16px", + height: "16px", + }, + stats: { + color: grayColor[0], + display: "inline-flex", + fontSize: "12px", + lineHeight: "22px", + "& svg": { + top: "4px", + width: "16px", + height: "16px", + position: "relative", + marginRight: "3px", + marginLeft: "3px", + }, + "& .fab,& .fas,& .far,& .fal,& .material-icons": { + top: "4px", + fontSize: "16px", + position: "relative", + marginRight: "3px", + marginLeft: "3px", + }, + }, + cardCategory: { + color: grayColor[0], + margin: "0", + fontSize: "14px", + marginTop: "0", + paddingTop: "10px", + marginBottom: "0", + }, + cardCategoryWhite: { + color: "rgba(" + hexToRgb(whiteColor) + ",.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + "& a": { + color: whiteColor, + }, + }, + cardTitle: { + color: grayColor[2], + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: grayColor[1], + fontWeight: "400", + lineHeight: "1", + }, + }, + cardTitleWhite: { + color: whiteColor, + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: grayColor[1], + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +export default rtlStyle; diff --git a/src/components/Card/Card.js b/src/components/Card/Card.js new file mode 100644 index 0000000..567dd7b --- /dev/null +++ b/src/components/Card/Card.js @@ -0,0 +1,38 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons + +// core components +import styles from "assets/jss/material-dashboard-react/components/cardStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Card(props) { + const classes = useStyles(); + const { className, children, plain, profile, chart, ...rest } = props; + const cardClasses = classNames({ + [classes.card]: true, + [classes.cardPlain]: plain, + [classes.cardProfile]: profile, + [classes.cardChart]: chart, + [className]: className !== undefined, + }); + return ( +
+ {children} +
+ ); +} + +Card.propTypes = { + className: PropTypes.string, + plain: PropTypes.bool, + profile: PropTypes.bool, + chart: PropTypes.bool, + children: PropTypes.node, +}; diff --git a/src/components/Card/CardAvatar.js b/src/components/Card/CardAvatar.js new file mode 100644 index 0000000..58ad68c --- /dev/null +++ b/src/components/Card/CardAvatar.js @@ -0,0 +1,36 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons +// core components + +import styles from "assets/jss/material-dashboard-react/components/cardAvatarStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CardAvatar(props) { + const classes = useStyles(); + const { children, className, plain, profile, ...rest } = props; + const cardAvatarClasses = classNames({ + [classes.cardAvatar]: true, + [classes.cardAvatarProfile]: profile, + [classes.cardAvatarPlain]: plain, + [className]: className !== undefined, + }); + return ( +
+ {children} +
+ ); +} + +CardAvatar.propTypes = { + children: PropTypes.node.isRequired, + className: PropTypes.string, + profile: PropTypes.bool, + plain: PropTypes.bool, +}; diff --git a/src/components/Card/CardBody.js b/src/components/Card/CardBody.js new file mode 100644 index 0000000..4c65b90 --- /dev/null +++ b/src/components/Card/CardBody.js @@ -0,0 +1,36 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons + +// core components +import styles from "assets/jss/material-dashboard-react/components/cardBodyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CardBody(props) { + const classes = useStyles(); + const { className, children, plain, profile, ...rest } = props; + const cardBodyClasses = classNames({ + [classes.cardBody]: true, + [classes.cardBodyPlain]: plain, + [classes.cardBodyProfile]: profile, + [className]: className !== undefined, + }); + return ( +
+ {children} +
+ ); +} + +CardBody.propTypes = { + className: PropTypes.string, + plain: PropTypes.bool, + profile: PropTypes.bool, + children: PropTypes.node, +}; diff --git a/src/components/Card/CardFooter.js b/src/components/Card/CardFooter.js new file mode 100644 index 0000000..9559a38 --- /dev/null +++ b/src/components/Card/CardFooter.js @@ -0,0 +1,40 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons + +// core components +import styles from "assets/jss/material-dashboard-react/components/cardFooterStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CardFooter(props) { + const classes = useStyles(); + const { className, children, plain, profile, stats, chart, ...rest } = props; + const cardFooterClasses = classNames({ + [classes.cardFooter]: true, + [classes.cardFooterPlain]: plain, + [classes.cardFooterProfile]: profile, + [classes.cardFooterStats]: stats, + [classes.cardFooterChart]: chart, + [className]: className !== undefined, + }); + return ( +
+ {children} +
+ ); +} + +CardFooter.propTypes = { + className: PropTypes.string, + plain: PropTypes.bool, + profile: PropTypes.bool, + stats: PropTypes.bool, + chart: PropTypes.bool, + children: PropTypes.node, +}; diff --git a/src/components/Card/CardHeader.js b/src/components/Card/CardHeader.js new file mode 100644 index 0000000..6c15a0a --- /dev/null +++ b/src/components/Card/CardHeader.js @@ -0,0 +1,47 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons + +// core components +import styles from "assets/jss/material-dashboard-react/components/cardHeaderStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CardHeader(props) { + const classes = useStyles(); + const { className, children, color, plain, stats, icon, ...rest } = props; + const cardHeaderClasses = classNames({ + [classes.cardHeader]: true, + [classes[color + "CardHeader"]]: color, + [classes.cardHeaderPlain]: plain, + [classes.cardHeaderStats]: stats, + [classes.cardHeaderIcon]: icon, + [className]: className !== undefined, + }); + return ( +
+ {children} +
+ ); +} + +CardHeader.propTypes = { + className: PropTypes.string, + color: PropTypes.oneOf([ + "warning", + "success", + "danger", + "info", + "primary", + "rose", + ]), + plain: PropTypes.bool, + stats: PropTypes.bool, + icon: PropTypes.bool, + children: PropTypes.node, +}; diff --git a/src/components/Card/CardIcon.js b/src/components/Card/CardIcon.js new file mode 100644 index 0000000..ba72861 --- /dev/null +++ b/src/components/Card/CardIcon.js @@ -0,0 +1,41 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons + +// core components +import styles from "assets/jss/material-dashboard-react/components/cardIconStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CardIcon(props) { + const classes = useStyles(); + const { className, children, color, ...rest } = props; + const cardIconClasses = classNames({ + [classes.cardIcon]: true, + [classes[color + "CardHeader"]]: color, + [className]: className !== undefined, + }); + return ( +
+ {children} +
+ ); +} + +CardIcon.propTypes = { + className: PropTypes.string, + color: PropTypes.oneOf([ + "warning", + "success", + "danger", + "info", + "primary", + "rose", + ]), + children: PropTypes.node, +}; diff --git a/src/components/CustomButtons/Button.js b/src/components/CustomButtons/Button.js new file mode 100644 index 0000000..166cb8e --- /dev/null +++ b/src/components/CustomButtons/Button.js @@ -0,0 +1,72 @@ +import React from "react"; +// nodejs library that concatenates classes +import classNames from "classnames"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; + +// material-ui components +import { makeStyles } from "@material-ui/core/styles"; +import Button from "@material-ui/core/Button"; + +import styles from "assets/jss/material-dashboard-react/components/buttonStyle.js"; + +const useStyles = makeStyles(styles); + +export default function RegularButton(props) { + const classes = useStyles(); + const { + color, + round, + children, + disabled, + simple, + size, + block, + link, + justIcon, + className, + muiClasses, + ...rest + } = props; + const btnClasses = classNames({ + [classes.button]: true, + [classes[size]]: size, + [classes[color]]: color, + [classes.round]: round, + [classes.disabled]: disabled, + [classes.simple]: simple, + [classes.block]: block, + [classes.link]: link, + [classes.justIcon]: justIcon, + [className]: className, + }); + return ( + + ); +} + +RegularButton.propTypes = { + color: PropTypes.oneOf([ + "primary", + "info", + "success", + "warning", + "danger", + "rose", + "white", + "transparent", + ]), + size: PropTypes.oneOf(["sm", "lg"]), + simple: PropTypes.bool, + round: PropTypes.bool, + disabled: PropTypes.bool, + block: PropTypes.bool, + link: PropTypes.bool, + justIcon: PropTypes.bool, + className: PropTypes.string, + // use this to pass the classes props from Material-UI + muiClasses: PropTypes.object, + children: PropTypes.node, +}; diff --git a/src/components/CustomInput/CustomInput.js b/src/components/CustomInput/CustomInput.js new file mode 100644 index 0000000..aa5238e --- /dev/null +++ b/src/components/CustomInput/CustomInput.js @@ -0,0 +1,94 @@ +import React from "react"; +import classNames from "classnames"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import FormControl from "@material-ui/core/FormControl"; +import InputLabel from "@material-ui/core/InputLabel"; +import Input from "@material-ui/core/Input"; +// @material-ui/icons +import Clear from "@material-ui/icons/Clear"; +import Check from "@material-ui/icons/Check"; +// core components +import styles from "assets/jss/material-dashboard-react/components/customInputStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CustomInput(props) { + const classes = useStyles(); + const { + formControlProps, + labelText, + id, + labelProps, + inputProps, + error, + success, + rtlActive, + onChange, + } = props; + + const labelClasses = classNames({ + [" " + classes.labelRootError]: error, + [" " + classes.labelRootSuccess]: success && !error, + [" " + classes.labelRTL]: rtlActive, + }); + const underlineClasses = classNames({ + [classes.underlineError]: error, + [classes.underlineSuccess]: success && !error, + [classes.underline]: true, + }); + const marginTop = classNames({ + [classes.marginTop]: labelText === undefined, + }); + let newInputProps = { + maxLength: + inputProps && inputProps.maxLength ? inputProps.maxLength : undefined, + minLength: + inputProps && inputProps.minLength ? inputProps.minLength : undefined, + step: inputProps && inputProps.step ? inputProps.step : undefined, + }; + return ( + + {labelText !== undefined ? ( + + {labelText} + + ) : null} + + {error ? ( + + ) : success ? ( + + ) : null} + + ); +} + +CustomInput.propTypes = { + labelText: PropTypes.node, + labelProps: PropTypes.object, + id: PropTypes.string, + inputProps: PropTypes.object, + formControlProps: PropTypes.object, + error: PropTypes.bool, + success: PropTypes.bool, + rtlActive: PropTypes.bool, +}; diff --git a/src/components/CustomModal/CustomModal.js b/src/components/CustomModal/CustomModal.js new file mode 100644 index 0000000..f88ef20 --- /dev/null +++ b/src/components/CustomModal/CustomModal.js @@ -0,0 +1,50 @@ +import { Modal,Box,Typography,Fade,Backdrop } from "@material-ui/core"; +import React from "react"; +import CustomPicker from "../CustomPicker/CustomPicker"; +const style = { + position: 'absolute', + top: '50%', + left: '50%', + transform: 'translate(-50%, -50%)', + width: 400, + bgcolor: 'background.paper', + border: '2px solid #000', + boxShadow: 24, + p: 4, + }; + +export default function CustomModal() { + const [open, setOpen] = React.useState(false); + const handleOpen = (event) => { + event.preventDefault(); + setOpen(true) + }; + const handleClose = () => setOpen(false); + + return ( +
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ ) +} \ No newline at end of file diff --git a/src/components/CustomPicker/CustomPicker.js b/src/components/CustomPicker/CustomPicker.js new file mode 100644 index 0000000..2a08680 --- /dev/null +++ b/src/components/CustomPicker/CustomPicker.js @@ -0,0 +1,26 @@ +import React, { useState } from 'react'; +import DateFnsUtils from '@date-io/date-fns'; // choose your lib + +import { + KeyboardDatePicker, MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + + +export default function App() { + const [selectedDate, handleDateChange] = useState(new Date()); + + return ( + + handleDateChange(date)} + minDate={new Date()} + format="MM/dd/yyyy" + /> + + ); +} \ No newline at end of file diff --git a/src/components/CustomSelect/CustomSelect.js b/src/components/CustomSelect/CustomSelect.js new file mode 100644 index 0000000..21d79b4 --- /dev/null +++ b/src/components/CustomSelect/CustomSelect.js @@ -0,0 +1,103 @@ +import React from "react"; +import classNames from "classnames"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import FormControl from "@material-ui/core/FormControl"; +import InputLabel from "@material-ui/core/InputLabel"; +import Input from "@material-ui/core/Input"; +// @material-ui/icons +import Clear from "@material-ui/icons/Clear"; +import Check from "@material-ui/icons/Check"; +// core components +import styles from "assets/jss/material-dashboard-react/components/customInputStyle.js"; +import Select from 'react-select'; + +const useStyles = makeStyles(styles); + +export default function CustomInput(props) { + const classes = useStyles(); + const { + formControlProps, + labelText, + id, + labelProps, + inputProps, + error, + success, + rtlActive, + options, + // logChange, + value + } = props; + + const labelClasses = classNames({ + [" " + classes.labelRootError]: error, + [" " + classes.labelRootSuccess]: success && !error, + [" " + classes.labelRTL]: rtlActive, + }); + const underlineClasses = classNames({ + [classes.underlineError]: error, + [classes.underlineSuccess]: success && !error, + [classes.underline]: true, + }); + const marginTop = classNames({ + [classes.marginTop]: labelText === undefined, + }); + let newInputProps = { + maxLength: + inputProps && inputProps.maxLength ? inputProps.maxLength : undefined, + minLength: + inputProps && inputProps.minLength ? inputProps.minLength : undefined, + step: inputProps && inputProps.step ? inputProps.step : undefined, + }; + return ( + + {/* {labelText !== undefined ? ( + + {labelText} + + ) : null} */} + + + setResponsive(e.target.value)} + > + vertical + standard + simple + + scroll (deprecated) + + scrollMaxHeight (deprecated) + + stacked (deprecated) + + + + Table Body Height + + + */} + + {props.title === [] ? ( + + ) : ( + + )} + + ); +} diff --git a/src/components/FixedPlugin/FixedPlugin.js b/src/components/FixedPlugin/FixedPlugin.js new file mode 100644 index 0000000..dea5626 --- /dev/null +++ b/src/components/FixedPlugin/FixedPlugin.js @@ -0,0 +1,190 @@ +/*eslint-disable*/ +import React, { Component } from "react"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// nodejs library that concatenates classes +import classnames from "classnames"; + +import imagine1 from "assets/img/sidebar-1.jpg"; +import imagine2 from "assets/img/sidebar-2.jpg"; +import imagine3 from "assets/img/sidebar-3.jpg"; +import imagine4 from "assets/img/sidebar-4.jpg"; + +import Button from "components/CustomButtons/Button.js"; + +export default function FixedPlugin(props) { + const [classes, setClasses] = React.useState("dropdown show"); + const [bg_checked, setBg_checked] = React.useState(true); + const [bgImage, setBgImage] = React.useState(props.bgImage); + const handleClick = () => { + props.handleFixedClick(); + }; + return ( +
+ +
+ ); +} + +FixedPlugin.propTypes = { + bgImage: PropTypes.string, + handleFixedClick: PropTypes.func, + rtlActive: PropTypes.bool, + fixedClasses: PropTypes.string, + bgColor: PropTypes.oneOf(["purple", "blue", "green", "orange", "red"]), + handleColorClick: PropTypes.func, + handleImageClick: PropTypes.func, +}; diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js new file mode 100644 index 0000000..c5f8a1d --- /dev/null +++ b/src/components/Footer/Footer.js @@ -0,0 +1,58 @@ +/*eslint-disable*/ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import ListItem from "@material-ui/core/ListItem"; +import List from "@material-ui/core/List"; +// core components +import styles from "assets/jss/material-dashboard-react/components/footerStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Footer(props) { + const classes = useStyles(); + return ( + + ); +} diff --git a/src/components/Grid/GridContainer.js b/src/components/Grid/GridContainer.js new file mode 100644 index 0000000..b4db5a5 --- /dev/null +++ b/src/components/Grid/GridContainer.js @@ -0,0 +1,29 @@ +import React from "react"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Grid from "@material-ui/core/Grid"; + +const styles = { + grid: { + margin: "0 -15px !important", + width: "unset", + }, +}; + +const useStyles = makeStyles(styles); + +export default function GridContainer(props) { + const classes = useStyles(); + const { children, ...rest } = props; + return ( + + {children} + + ); +} + +GridContainer.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Grid/GridItem.js b/src/components/Grid/GridItem.js new file mode 100644 index 0000000..0f5e0cd --- /dev/null +++ b/src/components/Grid/GridItem.js @@ -0,0 +1,28 @@ +import React from "react"; +// nodejs library to set properties for components +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Grid from "@material-ui/core/Grid"; + +const styles = { + grid: { + padding: "0 15px !important", + }, +}; + +const useStyles = makeStyles(styles); + +export default function GridItem(props) { + const classes = useStyles(); + const { children, ...rest } = props; + return ( + + {children} + + ); +} + +GridItem.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Loader/Loader.js b/src/components/Loader/Loader.js new file mode 100644 index 0000000..f0db7b3 --- /dev/null +++ b/src/components/Loader/Loader.js @@ -0,0 +1,17 @@ +import React from "react"; +import Loader from "react-loader-spinner"; +import "react-loader-spinner/dist/loader/css/react-spinner-loader.css"; + +export default class App extends React.Component { + //other logic + render() { + return ( + + ); + } +} \ No newline at end of file diff --git a/src/components/Navbars/AdminNavbarLinks.js b/src/components/Navbars/AdminNavbarLinks.js new file mode 100644 index 0000000..2750c54 --- /dev/null +++ b/src/components/Navbars/AdminNavbarLinks.js @@ -0,0 +1,235 @@ +import React from "react"; +import classNames from "classnames"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import MenuItem from "@material-ui/core/MenuItem"; +import MenuList from "@material-ui/core/MenuList"; +import Grow from "@material-ui/core/Grow"; +import Paper from "@material-ui/core/Paper"; +import ClickAwayListener from "@material-ui/core/ClickAwayListener"; +import Hidden from "@material-ui/core/Hidden"; +import Poppers from "@material-ui/core/Popper"; +import Divider from "@material-ui/core/Divider"; +// @material-ui/icons +import Person from "@material-ui/icons/Person"; +import { useDispatch, useSelector } from "react-redux"; +import { logout } from "actions/auth"; +import Notifications from "@material-ui/icons/Notifications"; +import Dashboard from "@material-ui/icons/Dashboard"; +import Search from "@material-ui/icons/Search"; +// core components +import CustomInput from "components/CustomInput/CustomInput.js"; +import Button from "components/CustomButtons/Button.js"; + +import styles from "assets/jss/material-dashboard-react/components/headerLinksStyle.js"; + +const useStyles = makeStyles(styles); + +export default function AdminNavbarLinks() { + const classes = useStyles(); + + const dispatch = useDispatch(); + + + const [openNotification, setOpenNotification] = React.useState(null); + const [openProfile, setOpenProfile] = React.useState(null); + const handleClickNotification = (event) => { + if (openNotification && openNotification.contains(event.target)) { + setOpenNotification(null); + } else { + setOpenNotification(event.currentTarget); + } + }; + const handleCloseNotification = () => { + setOpenNotification(null); + }; + const handleClickProfile = (event) => { + if (openProfile && openProfile.contains(event.target)) { + setOpenProfile(null); + } else { + setOpenProfile(event.currentTarget); + } + }; + const handleCloseProfile = () => { + setOpenProfile(null); + }; + const handleLogout = () => { + dispatch(logout()); + }; + return ( +
+ {/*
+ + +
*/} + + + {/*
+ + + {({ TransitionProps, placement }) => ( + + + + + + Mike John responded to your email + + + You have 5 new tasks + + + You{"'"}re now friend with Andrew + + + Another Notification + + + Another One + + + + + + )} + +
+ */} +
+ + + {({ TransitionProps, placement }) => ( + + + + + + Profile + + + Settings + + + + Logout + + + + + + )} + +
+
+ ); +} diff --git a/src/components/Navbars/Navbar.js b/src/components/Navbars/Navbar.js new file mode 100644 index 0000000..29f2ee5 --- /dev/null +++ b/src/components/Navbars/Navbar.js @@ -0,0 +1,62 @@ +import React from "react"; +import classNames from "classnames"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import AppBar from "@material-ui/core/AppBar"; +import Toolbar from "@material-ui/core/Toolbar"; +import IconButton from "@material-ui/core/IconButton"; +import Hidden from "@material-ui/core/Hidden"; +// @material-ui/icons +import Menu from "@material-ui/icons/Menu"; +// core components +import AdminNavbarLinks from "./AdminNavbarLinks.js"; +import RTLNavbarLinks from "./RTLNavbarLinks.js"; +import Button from "components/CustomButtons/Button.js"; + +//hooks +import { useRouteName } from "hooks"; + +import styles from "assets/jss/material-dashboard-react/components/headerStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Header(props) { + const classes = useStyles(); + const routeName = useRouteName(); + const { color } = props; + const appBarClasses = classNames({ + [" " + classes[color]]: color, + }); + return ( + + +
+ {/* Here we create navbar brand, based on route name */} + +
+ + {props.rtlActive ? : } + + + + + + + + + ); +} + +Header.propTypes = { + color: PropTypes.oneOf(["primary", "info", "success", "warning", "danger"]), + rtlActive: PropTypes.bool, + handleDrawerToggle: PropTypes.func, + routes: PropTypes.arrayOf(PropTypes.object), +}; diff --git a/src/components/Navbars/NavbarAnalytics.js b/src/components/Navbars/NavbarAnalytics.js new file mode 100644 index 0000000..6026d57 --- /dev/null +++ b/src/components/Navbars/NavbarAnalytics.js @@ -0,0 +1,62 @@ +import React from "react"; +import classNames from "classnames"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import AppBar from "@material-ui/core/AppBar"; +import Toolbar from "@material-ui/core/Toolbar"; +import IconButton from "@material-ui/core/IconButton"; +import Hidden from "@material-ui/core/Hidden"; +// @material-ui/icons +import Menu from "@material-ui/icons/Menu"; +// core components +import AdminNavbarLinks from "./AdminNavbarLinks.js"; +import RTLNavbarLinks from "./RTLNavbarLinks.js"; +import Button from "components/CustomButtons/Button.js"; + +//hooks +import { useRouteAnalyticsName } from "hooks"; + +import styles from "assets/jss/material-dashboard-react/components/headerStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Header(props) { + const classes = useStyles(); + const routeName = useRouteAnalyticsName(); + const { color } = props; + const appBarClasses = classNames({ + [" " + classes[color]]: color, + }); + return ( + + +
+ {/* Here we create navbar brand, based on route name */} + +
+ + {props.rtlActive ? : } + + + + + + + + + ); +} + +Header.propTypes = { + color: PropTypes.oneOf(["primary", "info", "success", "warning", "danger"]), + rtlActive: PropTypes.bool, + handleDrawerToggle: PropTypes.func, + routes: PropTypes.arrayOf(PropTypes.object), +}; diff --git a/src/components/Navbars/RTLNavbarLinks.js b/src/components/Navbars/RTLNavbarLinks.js new file mode 100644 index 0000000..93b3f5e --- /dev/null +++ b/src/components/Navbars/RTLNavbarLinks.js @@ -0,0 +1,162 @@ +import React from "react"; +import classNames from "classnames"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import MenuItem from "@material-ui/core/MenuItem"; +import MenuList from "@material-ui/core/MenuList"; +import Grow from "@material-ui/core/Grow"; +import Paper from "@material-ui/core/Paper"; +import ClickAwayListener from "@material-ui/core/ClickAwayListener"; +import Hidden from "@material-ui/core/Hidden"; +import Poppers from "@material-ui/core/Popper"; +// @material-ui/icons +import Person from "@material-ui/icons/Person"; +import Notifications from "@material-ui/icons/Notifications"; +import Dashboard from "@material-ui/icons/Dashboard"; +import Search from "@material-ui/icons/Search"; +// core components +import CustomInput from "components/CustomInput/CustomInput.js"; +import Button from "components/CustomButtons/Button.js"; + +import styles from "assets/jss/material-dashboard-react/components/rtlHeaderLinksStyle.js"; + +const useStyles = makeStyles(styles); + +export default function RTLNavbarLinks() { + const classes = useStyles(); + const [open, setOpen] = React.useState(null); + const handleToggle = (event) => { + if (open && open.contains(event.target)) { + setOpen(null); + } else { + setOpen(event.currentTarget); + } + }; + + const handleClose = () => { + setOpen(null); + }; + + return ( +
+
+ + +
+ +
+ + + {({ TransitionProps, placement }) => ( + + + + + + محمدرضا به ایمیل شما پاسخ داد + + + شما ۵ وظیفه جدید دارید + + + از حالا شما با علیرضا دوست هستید + + + اعلان دیگر + + + اعلان دیگر + + + + + + )} + +
+ +
+ ); +} diff --git a/src/components/Sidebar/Sidebar.js b/src/components/Sidebar/Sidebar.js new file mode 100644 index 0000000..ccac764 --- /dev/null +++ b/src/components/Sidebar/Sidebar.js @@ -0,0 +1,10599 @@ +/*eslint-disable*/ +import React, { useEffect, useState } from "react"; +import classNames from "classnames"; +import PropTypes from "prop-types"; +import { NavLink, useLocation } from "react-router-dom"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Drawer from "@material-ui/core/Drawer"; +import Hidden from "@material-ui/core/Hidden"; +import List from "@material-ui/core/List"; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import CustomInput from "components/CustomInput/CustomInput.js"; +import ListItem from "@material-ui/core/ListItem"; +import ListItemText from "@material-ui/core/ListItemText"; +import { AsyncPaginate } from "react-select-async-paginate"; +import Radio from "@material-ui/core/Radio"; +import Checkbox from "@material-ui/core/Checkbox"; +import RadioGroup from "@material-ui/core/RadioGroup"; +import FormHelperText from "@material-ui/core/FormHelperText"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import FormControl from "@material-ui/core/FormControl"; +import FormLabel from "@material-ui/core/FormLabel"; +import { useHistory } from "react-router-dom"; +import styled from "styled-components"; + +// import Accordion from '@mui/material/Accordion'; +// import AccordionSummary from '@mui/material/AccordionSummary'; +// import AccordionDetails from '@mui/material/AccordionDetails'; +// import Typography from '@mui/material/Typography'; +// import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; + +import Icon from "@material-ui/core/Icon"; +import Button from "components/CustomButtons/Button.js"; +import Card from "components/Card/Card.js"; +import CardBody from "components/Card/CardBody.js"; +import CardHeader from "components/Card/CardHeader.js"; + +import OpeningStockService from "services/openingStock.service"; + +import LocationService from "services/location.service"; +import CommonService from "services/common.service"; +// import CustomModal from "components/CustomModal/CustomModal"; +// core components +import AdminNavbarLinks from "components/Navbars/AdminNavbarLinks.js"; +import RTLNavbarLinks from "components/Navbars/RTLNavbarLinks.js"; + +import Select from "react-select"; +import AsyncSelect from "react-select/async"; + +import styles from "assets/jss/material-dashboard-react/components/sidebarStyle.js"; +import { Modal, Box, Typography, Fade, Backdrop } from "@material-ui/core"; +import CustomPicker from "../CustomPicker/CustomPicker"; + +import DateFnsUtils from "@date-io/date-fns"; // choose your lib + +import { format } from "date-fns"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; +import commonService from "services/common.service"; +import Person from "@material-ui/icons/Person"; +import SubMenu from "./SubMenu"; +import * as FaIcons from "react-icons/fa"; +import * as AiIcons from "react-icons/ai"; +import * as IoIcons from "react-icons/io"; +import * as RiIcons from "react-icons/ri"; + +const style = { + position: "absolute", + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + width: 400, + bgcolor: "background.paper", + border: "2px solid #000", + boxShadow: 24, + p: 4, +}; +const styleLarge = { + position: "absolute", + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + width: 700, + bgcolor: "background.paper", + border: "2px solid #000", + boxShadow: 24, + p: 4, +}; + +const useStyles = makeStyles(styles); + +var options = []; +var TransferTooptions = []; +var TransferFromoptions = []; +var locOptions = []; +var parentCategoryOptions = []; +var subCategoryOptions = []; +var accountOptions = []; +var secondAccountOptions = []; +var BusinessTypesOptions = []; +var brandOptions = []; +var customerOptions = []; +var categoryOptions = []; +var supplierOptions = []; +var originOptions = []; +var productOptions = []; +var adjustmentTypeOptions = []; +var supplierCompanyOptions = [] + +const SidebarNav = styled.nav` + background: #15171c; + width: 260px; + height: 100vh; + display: flex; + justify-content: center; + position: fixed; + top: 0; + transition: 350ms; + z-index: 10; +`; + +const SidebarWrap = styled.div` + width: 100%; +`; + +var groupByOptions = [ + { + label: "Supplier", + value: "supplier", + }, + { + label: "Category", + value: "category", + }, + { + label: "Brand", + value: "brand", + }, +]; +var orderbyOptions = [ + { + label: "Product", + value: "product", + }, + { + label: "Quantity", + value: "quantity", + }, + { + label: "Expiry", + value: "expiry", + }, +]; +var directionOptions = [ + { + label: "ASC", + value: "asc", + }, + { + label: "DESC", + value: "desc", + }, +]; + +export default function Sidebar(props) { + const classes = useStyles(); + let location = useLocation(); + const history = useHistory(); + + const [selectedDate, handleDateChange] = useState(new Date()); + const [selectedFromDate, handleFromDateChange] = useState(new Date()); + const [selectedToDate, handleToDateChange] = useState(new Date()); + const [selectedSecondToDate, handleSecondToDateChange] = useState(new Date()); + const [selectedSecondFromDate, handleSecondFromDateChange] = useState( + new Date() + ); + + const [showModal, setShowModal] = useState(false); + + const [option, setOption] = useState(""); + const [secondAccountOption, setSecondAccountOption] = useState(""); + const [transferToOption, setTransferToOption] = useState(""); + const [transferFromOption, setTransferFromOption] = useState(""); + const [brandOption, setbrandOption] = useState(""); + const [supplierOption, setSupplierOption] = useState(""); + const [categoryOption, setcategoryOption] = useState(""); + const [originOption, setoriginOption] = useState(""); + const [groupByOption, setgroupByOption] = useState(""); + const [orderbyOption, setorderbyOption] = useState(""); + const [directionOption, setdirectionOption] = useState(""); + const [productOption, setproductOption] = useState(""); + const [adjustTypeOption, setadjustTypeOption] = useState(""); + const [radioGroup, setRadioGroupChange] = useState("0"); + const [checked, setChecked] = useState(false); + + const [open, setOpen] = React.useState(false); + const [testOpen, setTestOpen] = React.useState(false); + const [DFSopen, setDFSOpen] = React.useState(false); + const [swbeOpen, setSwbeOpen] = React.useState(false); + const [cSPOpen, setCSPOpen] = React.useState(false); + const [ABSOpen, setABSOpen] = React.useState(false); + const [ProdOpen, setProdOpen] = React.useState(false); + const [SIDOpen, setSIDOpen] = React.useState(false); + const [adjOpen, setAdjOpen] = React.useState(false); + const [stmOpen, setstmOpen] = React.useState(false); + const [stockTransferOpen, setstockTransferOpen] = React.useState(false); + const [invoiceSummaryOpen, setInvoiceSummaryOpen] = React.useState(false); + const [invoiceDetailOpen, setInvoiceDetailOpen] = React.useState(false); + const [byMonth, setByMonth] = React.useState(false); + const [byYear, setByYear] = React.useState(false); + const [byCustomer, setByCustomer] = React.useState(false); + const [partysummary, setPartySummary] = React.useState(false); + const [imsCust, setIMSCust] = React.useState(false); + const [imsCustSummary, setIMSCustSummary] = React.useState(false); + const [imsChannel, setIMSChannel] = React.useState(false); + const [SALES, setSALES] = React.useState(false); + const [AllStockSales, setAllStockSales] = React.useState(false); + const [SALESComparison, setSALESComparison] = React.useState(false); + const [SALESbyCustomer, setSALESbyCustomer] = React.useState(false); + const [StockDays, setStockDays] = React.useState(false); + const [BranchCategory, setBranchCategory] = React.useState(false); + const [BranchSummary, setBranchSummary] = React.useState(false); + const [KeySummary, setKeySummary] = React.useState(false); + const [KeyDetail, setKeyDetail] = React.useState(false); + const [BranchProduct, setBranchProduct] = React.useState(false); + const [ImsByCustomerAdmin, setImsByCustomerAdmin] = React.useState(false); + const [ImsByCustomerSumAdmin, setImsByCustomerSumAdmin] = React.useState( + false + ); + const [ImsByCustomerChanAdmin, setImsByCustomerChanAdmin] = React.useState( + false + ); + const [ImsByProductAdmin, setImsByProductAdmin] = React.useState(false); + const [ImsBySupplierAdmin, setImsBySupplierAdmin] = React.useState(false); + const [ImsByCustomerPnL, setImsByCustomerPnL] = React.useState(false); + const [ImsByProductPnL, setImsByProductPnL] = React.useState(false); + const [ImsByCustPnL, setImsByCustPnL] = React.useState(false); + const [KhyberByBranchPLS, setKhyberByBranchPLS] = React.useState(false); + const [StockValueByVendor, setStockValueByVendor] = React.useState(false); + const [StockValueByProduct, setStockValueByProduct] = React.useState(false); + const [CompaniesProfitWise, setCompaniesProfitWise] = React.useState(false); + const [Monthlydata, setMonthlyData] = React.useState(false); + + const [openDailyStatement, setOpenDailyStatement] = React.useState(false); + const [ + openDailyCombinedStatement, + setOpenDailyCombinedStatement, + ] = React.useState(false); + const [openCustomerStatement, setopenCustomerStatement] = React.useState( + false + ); + const [ + openCustomerCombinedStatement, + setopenCustomerCombinedStatement, + ] = React.useState(false); + const [openWholeSaleInvoice, setopenWholeSaleInvoice] = React.useState(false); + const [openWholeSaleLedger, setopenWholeSaleLedger] = React.useState(false); + const [openWholeSaleSummary, setopenWholeSaleSummary] = React.useState(false); + const [openGeneralLedger, setopenGeneralLedger] = React.useState(false); + const [openBankCashSummary, setopenBankCashSummary] = React.useState(false); + const [ + openBankLedgerSummaryDetails, + setopenBankLedgerSummaryDetails, + ] = React.useState(false); + + const [openCategoryList, setopenCategoryList] = React.useState(false); + const [openNewCategory, setopenNewCategory] = React.useState(false); + + const [openPricing, setopenPricing] = React.useState(false); + + const [openProductList, setopenProductList] = React.useState(false); + + const [openMasterProductList, setopenMasterProductList] = React.useState( + false + ); + + const [openOriginsList, setopenOriginsList] = React.useState(false); + + const [openUnitList, setopenUnitList] = React.useState(false); + + const [openBrandList, setopenBrandList] = React.useState(false); + + const [openNewProduct, setopenNewProduct] = React.useState(false); + + const [openNewBrand, setopenNewBrand] = React.useState(false); + + const [openNewUnit, setopenNewUnit] = React.useState(false); + + const [openNewOrigin, setopenNewOrigin] = React.useState(false); + + const [SRC, setSRC] = React.useState(false); + + const [adjDetailOpen, setAdjDetailOpen] = React.useState(false); + const [DelNotesOpen, setDelNotesOpen] = React.useState(false); + const [DelNotesDetailOpen, setDelNotesDetailOpen] = React.useState(false); + const [GRNListOpen, setGRNListOpen] = React.useState(false); + const [GRNDetailOpen, setGRNDetailOpen] = React.useState(false); + + const SidebarData = [ + { + title: "Dashboard", + path: "/admin/dashboard", + icon: , + iconClosed: , + iconOpened: , + }, + + { + title: "Analytics", + path: "/stock", + icon: , + iconClosed: , + iconOpened: , + + subNav: [ + { + title: "Stock", + path: "/stock", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Opening Stock", + // path: "stock/opening-stock", + icon: , + handleOpen: () => { + setOpen(true); + }, + }, + { + title: "Stock With Batch & Expiry", + // path: "/stock/swbe", + icon: , + handleOpen: () => { + setSwbeOpen(true); + }, + }, + { + title: "Cost & sales Prices", + // path: "/stock/csp", + icon: , + handleOpen: () => { + setCSPOpen(true); + }, + }, + { + title: "All Branches Stock", + // path: "/stock/abs", + icon: , + handleOpen: () => { + setABSOpen(true); + }, + }, + { + title: "Product Tank", + // path: "/stock/product-track", + icon: , + handleOpen: () => { + setProdOpen(true); + }, + }, + { + title: "Stock Transfer", + // path: "/stock/stock-transfer", + icon: , + handleOpen: () => { + setstockTransferOpen(true); + }, + }, + { + title: "Shifting Invoice Detail", + icon: , + handleOpen: () => { + setSIDOpen(true); + }, + }, + { + title: "Stock Transfer Mismatch", + icon: , + handleOpen: () => { + setstmOpen(true); + }, + }, + { + title: "Stock Adjustments", + // path: "/stock/stock-transfer-mismatch", + icon: , + handleOpen: () => { + setAdjOpen(true); + }, + }, + { + title: "Adjustment Detail", + // path: "/stock/stock-transfer-mismatch", + icon: , + handleOpen: () => { + setAdjDetailOpen(true); + }, + }, + { + title: "Delivery Notes", + // path: "/stock/transferdetail", + icon: , + handleOpen: () => { + setDelNotesOpen(true); + }, + }, + { + title: "Delivery Note Detail", + // path: "/stock/transferdetail", + icon: , + handleOpen: () => { + setDelNotesDetailOpen(true); + }, + }, + { + title: "Good Received Notes", + // path: "/stock/adjustments", + icon: , + handleOpen: () => { + setAdjOpen(true); + }, + }, + { + title: "Good Received Notes List", + // path: "/stock/adjustments", + icon: , + handleOpen: () => { + setGRNDetailOpen(true); + }, + }, + ], + }, + { + title: "Retail Sales", + // path: "/retail", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Invoice Summary", + // path: "/salesindex/invoice-summary", + icon: , + handleOpen: () => { + setInvoiceSummaryOpen(true); + }, + }, + { + title: "Invoice Detail", + // path: "/salesindex/nvoice-detail", + icon: , + handleOpen: () => { + setInvoiceDetailOpen(true); + }, + }, + { + title: "Sale Summary by Month", + // path: "/salessummary/ByMonthScreen", + icon: , + handleOpen: () => { + setByMonth(true); + }, + }, + { + title: "Sale Summary by year", + // path: "/salessummary/byyear", + icon: , + handleOpen: () => { + setByYear(true); + }, + }, + { + title: "Sale Summary by Customer", + // path: "/salessummary/ByCustomerScreen", + icon: , + handleOpen: () => { + setByCustomer(true); + }, + }, + { + title: "Sale Summary by Party Summary", + // path: "/salessummary/partysummary", + icon: , + handleOpen: () => { + setPartySummary(true); + }, + }, + { + title: "Sale Rate by Customer", + // path: "/general/salesratebycustomer", + icon: , + handleOpen: () => { + setSRC(true); + }, + }, + { + title: "IMS by Customer", + // path: "/ims/imsbycustomer", + icon: , + handleOpen: () => { + setIMSCust(true); + }, + }, + { + title: "IMS by Customer Summary", + // path: "/ims/imsbycustomersummary", + icon: , + handleOpen: () => { + setIMSCustSummary(true); + }, + }, + { + title: "IMS By Channel", + // path: "/ims/imsbychannel", + icon: , + handleOpen: () => { + setIMSChannel(true); + }, + }, + ], + }, + { + title: "Admin Sales", + // path: "/reports/reports3", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Sales", + path: "/adminsales/sales", + icon: , + }, + { + title: "Sales Comparison", + path: "/adminsales/salescomparison", + icon: , + }, + { + title: "Sales By Customer", + path: "/adminsales/salecustomer", + icon: , + }, + { + title: "All Stock & Sales", + path: "/adminsales/allstocksales", + icon: , + }, + { + title: "Stock Days", + path: "/adminsales/stockdays", + icon: , + }, + { + title: "Branch & Brand Category", + path: "/adminsales/branchandbrandcategory", + icon: , + }, + { + title: "Branch Summary", + path: "/adminsales/branchsummary", + icon: , + }, + { + title: "KeyAccounts Summary", + path: "/adminsales/keysummary", + icon: , + }, + { + title: "KeyAccounts Details", + path: "/adminsales/keydetail", + icon: , + }, + { + title: "Branch & Product", + path: "/adminsales/branchproduct", + icon: , + }, + { + title: "Stock Days", + path: "/adminsales/stockdays", + icon: , + }, + { + title: "IMS by Customer", + path: "/adminsales/imsbycustomer", + icon: , + }, + { + title: "IMS by Customer Summary", + path: "/adminsales/imsbycustomersummary", + icon: , + }, + { + title: "IMS By Channel", + path: "/adminsales/imsbycustomerbychannel", + icon: , + }, + { + title: "IMS by Product", + path: "/adminsales/imsbyproduct", + icon: , + }, + { + title: "IMS by Supplier", + path: "/adminsales/imsbysupplier", + icon: , + }, + ], + }, + { + title: "Productivity", + // path: "/reports/reports3", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "DSF wise Product wise", + // path: "/adminsales/sales", + icon: , + handleOpen: () => { + setGRNListOpen(true); + }, + }, + { + title: "DSF Execution", + // path: "/adminsales/salescomparison", + icon: , + handleOpen: () => { + setDFSOpen(true); + }, + }, + ], + }, + { + title: "Accounts", + path: "/reports/reports3", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Daily Statement", + path: "/accounts/dailystatement", + icon: , + }, + { + title: "PDaily Combined Statement", + path: "/accounts/dailycombinedstatement", + icon: , + }, + { + title: "Customer Statement Combined", + path: "/accounts/customerstatement", + icon: , + }, + { + title: "Customer Statement Combined", + path: "/accounts/customerstatementcombined", + icon: , + }, + { + title: "Wholesale Invoice", + path: "/accounts/wholesaleinvoice", + icon: , + }, + { + title: "Wholesale Ledger", + path: "/accounts/wholesaleledger", + icon: , + }, + { + title: "Wholesale Summary Ledger", + path: "/accounts/wholesalesummaryledger", + icon: , + }, + { + title: "General Ledger", + path: "/accounts/generalledger", + icon: , + }, + { + title: "Bank Cash/ Bank Summary", + path: "/accounts/BankCashBanksummary", + icon: , + }, + { + title: "Account Ledger Summary/Details", + path: "/accounts/bankledgersummarydetails", + icon: , + }, + ], + }, + { + title: "Profit & loss", + path: "/reports/reports3", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "IMS By Customer", + path: "/profitloss/imsbycustomer", + icon: , + }, + { + title: "IMS By Product", + path: "/profitloss/imsbyproduct", + icon: , + }, + { + title: "IMS By Customer Pnl", + path: "/profitloss/imsbycustpnl", + icon: , + }, + { + title: "Khyber by Branch PLS and total", + path: "/profitloss/kbplstotal", + icon: , + }, + { + title: "Stock Value by Vendor", + path: "/profitloss/svbyvendor", + icon: , + }, + { + title: "Stock Value by Product and Location", + path: "/profitloss/svbyproductlocation", + icon: , + }, + { + title: "Companies Profit Wise", + path: "/profitloss/companiesprofitwise", + icon: , + }, + { + title: "Monthly Data", + path: "/profitloss/monthlydata", + icon: , + }, + ], + }, + // { + // title: "Stock Counting", + // path: "/reports/reports3", + // icon: , + // iconClosed: , + // iconOpened: , + // subNav: [ + // { + // title: "Stock Counting report", + // path: "/profitloss/", + // icon: , + // }, + // ], + // }, + ], + }, + + // Inventory + { + title: "Inventory", + path: "/catalog", + icon: , + iconClosed: , + iconOpened: , + + subNav: [ + { + title: "Catalog", + path: "/catalog", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + id: 1, + title: "New Category", + path: "catalog/new-category", + icon: , + handleOpen: () => { + setOpen(true); + }, + }, + { + title: "Category List", + path: "/category-list", + icon: , + }, + { + title: "New Brand", + path: "/new-brand", + icon: , + }, + { + title: "Brand List", + path: "/brand-list", + icon: , + }, + { + title: "New Unit", + path: "/new-unit", + icon: , + }, + { + title: "Unit List", + path: "/unit-list", + icon: , + }, + { + title: "New Origin", + path: "/new-origin", + icon: , + }, + { + title: "Origin List", + path: "/origins-list", + icon: , + }, + { + title: "New Product", + path: "/new-product", + icon: , + }, + { + title: "Master Product List", + path: "/master-product-list", + icon: , + }, + { + title: "Product List", + path: "/product-list", + icon: , + }, + { + title: "Pricing", + path: "/pricing", + icon: , + }, + ], + }, + ], + }, + // Organization + // { + // title: "Organization", + // path: "/overview", + // icon: , + // iconClosed: , + // iconOpened: , + // }, + // Security + // { + // title: "Security", + // path: "/overview", + // icon: , + // iconClosed: , + // iconOpened: , + // } + ]; + + async function loadOptionsLoc() { + const response = await LocationService.Location(); + await response.data.Data.forEach((element) => { + locOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return locOptions; + } + async function loadOptionsAccount() { + const response = await commonService.Account(); + await response.data.Data.forEach((element) => { + accountOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return accountOptions; + } + async function loadOptionsParentCategory() { + const response = await commonService.ParentCategory(); + await response.data.Data.forEach((element) => { + parentCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBusinessType() { + const response = await commonService.BusinessType(); + await response.data.Data.forEach((element) => { + BusinessTypesOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return BusinessTypesOptions; + } + async function loadOptionsSecondAccount() { + const response = await commonService.SecondAccount(); + await response.data.Data.forEach((element) => { + secondAccountOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return secondAccountOptions; + } + async function loadOptionsTransferTo() { + const response = await CommonService.Transfer(); + await response.data.Data.forEach((element) => { + TransferTooptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return TransferTooptions; + } + async function loadOptionsTransferFrom() { + const response = await CommonService.Transfer(); + await response.data.Data.forEach((element) => { + TransferFromoptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return TransferFromoptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsCustomer() { + const response = await CommonService.Customer(); + await response.data.Data.forEach((element) => { + customerOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return customerOptions; + } + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsSupp() { + const response = await CommonService.Supplier(); + await response.data.Data.forEach((element) => { + supplierOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + async function loadOptionsProduct(search, loadedOptions, { page }) { + productOptions = []; + const response = await CommonService.Product(search, page); + await response.data.Data.forEach((element) => { + productOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + let hasMore = productOptions.length != 0; + return { + options: productOptions, + hasMore: hasMore, + additional: { + page: page + 1, + }, + }; + } + async function loadOptionsAdjustType() { + const response = await CommonService.AdjustmentType(); + await response.data.Data.forEach((element) => { + adjustmentTypeOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return adjustmentTypeOptions; + } + + const handleOpen = (event) => { + event.preventDefault(); + setOpen(true); + }; + const handleDFSOpen = (event) => { + event.preventDefault(); + setDFSOpen(true); + }; + const handleSwbeOpen = (event) => { + event.preventDefault(); + setSwbeOpen(true); + }; + const handleStmOpen = (event) => { + event.preventDefault(); + setstmOpen(true); + }; + const handleStockTransferOpen = (event) => { + event.preventDefault(); + setstockTransferOpen(true); + }; + const handleInvoiceSummary = (event) => { + event.preventDefault(); + setInvoiceSummaryOpen(true); + }; + const handleInvoiceDetail = (event) => { + event.preventDefault(); + setInvoiceDetailOpen(true); + }; + const handleByMonth = (event) => { + event.preventDefault(); + setByMonth(true); + }; + const handleByYear = (event) => { + event.preventDefault(); + setByYear(true); + }; + const handleByCustomer = (event) => { + event.preventDefault(); + setByCustomer(true); + }; + const handlePartySummary = (event) => { + event.preventDefault(); + setPartySummary(true); + }; + const handleIMSCust = (event) => { + event.preventDefault(); + setIMSCust(true); + }; + const handleIMSCustSummary = (event) => { + event.preventDefault(); + setIMSCustSummary(true); + }; + const handleIMSChannel = (event) => { + event.preventDefault(); + setIMSChannel(true); + }; + const handleSALES = (event) => { + event.preventDefault(); + setSALES(true); + }; + const handleAllStockSALES = (event) => { + event.preventDefault(); + setAllStockSales(true); + }; + const handleSALESComparison = (event) => { + event.preventDefault(); + setSALESComparison(true); + }; + const handleSALESbyCustomer = (event) => { + event.preventDefault(); + setSALESbyCustomer(true); + }; + const handleStockDays = (event) => { + event.preventDefault(); + setStockDays(true); + }; + const handleBranchCategory = (event) => { + event.preventDefault(); + setBranchCategory(true); + }; + const handleBranchSummary = (event) => { + event.preventDefault(); + setBranchSummary(true); + }; + const handleKeySummary = (event) => { + event.preventDefault(); + setKeySummary(true); + }; + const handleKeyDetail = (event) => { + event.preventDefault(); + setKeyDetail(true); + }; + const handleBranchProduct = (event) => { + event.preventDefault(); + setBranchProduct(true); + }; + const handleImsByCustomerAdmin = (event) => { + event.preventDefault(); + setImsByCustomerAdmin(true); + }; + const handleImsByCustomerSumAdmin = (event) => { + event.preventDefault(); + setImsByCustomerSumAdmin(true); + }; + const handleImsByCustomerChanAdmin = (event) => { + event.preventDefault(); + setImsByCustomerChanAdmin(true); + }; + const handleImsByProductAdmin = (event) => { + event.preventDefault(); + setImsByProductAdmin(true); + }; + const handleImsBySupplierAdmin = (event) => { + event.preventDefault(); + setImsBySupplierAdmin(true); + }; + + const handleImsByCustomerPnL = (event) => { + event.preventDefault(); + setImsByCustomerPnL(true); + }; + const handleImsByProductPnL = (event) => { + event.preventDefault(); + setImsByProductPnL(true); + }; + const handleImsByCustPnL = (event) => { + event.preventDefault(); + setImsByCustPnL(true); + }; + const handleKhyberByBranchPLS = (event) => { + event.preventDefault(); + setKhyberByBranchPLS(true); + }; + const handleStockValueByVendor = (event) => { + event.preventDefault(); + setStockValueByVendor(true); + }; + const handleStockValueByProduct = (event) => { + event.preventDefault(); + setStockValueByProduct(true); + }; + const handleCompaniesProfitWise = (event) => { + event.preventDefault(); + setCompaniesProfitWise(true); + }; + const handleMonthlyData = (event) => { + event.preventDefault(); + setMonthlyData(true); + }; + + const handleSRC = (event) => { + event.preventDefault(); + setSRC(true); + }; + + const handleCSPOpen = (event) => { + event.preventDefault(); + setCSPOpen(true); + }; + const handleABSOpen = (event) => { + event.preventDefault(); + setABSOpen(true); + }; + const handleProductTrackOpen = (event) => { + event.preventDefault(); + setProdOpen(true); + }; + const handleSIDOpen = (event) => { + event.preventDefault(); + setSIDOpen(true); + }; + const handleAdjustmentOpen = (event) => { + event.preventDefault(); + setAdjOpen(true); + }; + const handleAdjDetailOpen = (event) => { + event.preventDefault(); + setAdjDetailOpen(true); + }; + const handleDelNotesOpen = (event) => { + event.preventDefault(); + setDelNotesOpen(true); + }; + const handleDelNotesDetailOpen = (event) => { + event.preventDefault(); + setDelNotesDetailOpen(true); + }; + const handleGRNListOpen = (event) => { + event.preventDefault(); + setGRNListOpen(true); + }; + const handleGRNDetailOpen = (event) => { + event.preventDefault(); + setGRNDetailOpen(true); + }; + + function logChange(val) { + setOption(val); + } + function AccountChange(val) { + setOption(val); + } + function ParentCategory(val) { + setOption(val); + } + function SubCategory(val) { + setOption(val); + } + function businessTypeChange(val) { + setOption(val); + } + function SecondAccountChange(val) { + secondAccountOption(val); + } + function radioGroupChange(event) { + setRadioGroupChange(event.target.value); + } + function checkboxChange(event) { + setChecked(event.target.checked); + } + function originChange(val) { + setoriginOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function suppChange(val) { + setsuppOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function groupChange(val) { + setgroupByOption(val); + } + function directionChange(val) { + setdirectionOption(val); + } + function categoryChange(val) { + setcategoryOption(val); + } + function orderChange(val) { + setorderbyOption(val); + } + function productChange(val) { + setproductOption(val); + } + function adjTypeChange(val) { + setadjustTypeOption(val); + } + function transferToChange(val) { + setTransferToOption(val); + } + function transferFromChange(val) { + setTransferFromOption(val); + } + + // reports + const handleOpenDailyStatement = (event) => { + event.preventDefault(); + setOpenDailyStatement(true); + }; + + const handleOpenDailyCombinedStatement = (event) => { + event.preventDefault(); + setOpenDailyCombinedStatement(true); + }; + const handleOpenCustomerStatement = (event) => { + event.preventDefault(); + setopenCustomerStatement(true); + }; + + const handleOpenCustomerCombinedStatement = (event) => { + event.preventDefault(); + setopenCustomerCombinedStatement(true); + }; + const handleOpenWholeSaleInvoice = (event) => { + event.preventDefault(); + setopenWholeSaleInvoice(true); + }; + const handleOpenWholeSaleLedger = (event) => { + event.preventDefault(); + setopenWholeSaleLedger(true); + }; + const handleOpenWholeSaleSummary = (event) => { + event.preventDefault(); + setopenWholeSaleSummary(true); + }; + const handleOpenGeneralLedger = (event) => { + event.preventDefault(); + setopenGeneralLedger(true); + }; + const handleOpenBankCashSummary = (event) => { + event.preventDefault(); + setopenBankCashSummary(true); + }; + const handleOpenBankLedgerSummaryDetails = (event) => { + event.preventDefault(); + setopenBankLedgerSummaryDetails(true); + }; + const handleOpenCategoryList = (event) => { + event.preventDefault(); + setopenCategoryList(true); + }; + const handleOpenNewCategory = (event) => { + event.preventDefault(); + setopenNewCategory(true); + }; + const handleOpenPricing = (event) => { + event.preventDefault(); + setopenPricing(true); + }; + const handleOpenProductList = (event) => { + event.preventDefault(); + setopenProductList(true); + }; + const handleOpenMasterProductList = (event) => { + event.preventDefault(); + setopenMasterProductList(true); + }; + const handleOpenOriginsList = (event) => { + event.preventDefault(); + setopenOriginsList(true); + }; + const handleOpenUnitList = (event) => { + event.preventDefault(); + setopenUnitList(true); + }; + const handleOpenBrandList = (event) => { + event.preventDefault(); + setopenBrandList(true); + }; + const handleOpenNewProduct = (event) => { + event.preventDefault(); + setopenNewProduct(true); + }; + const handleOpenNewBrand = (event) => { + event.preventDefault(); + setopenNewBrand(true); + }; + const handleOpenNewUnit = (event) => { + event.preventDefault(); + setopenNewUnit(true); + }; + const handleOpenNewOrigin = (event) => { + event.preventDefault(); + setopenNewOrigin(true); + }; + + const handleClose = () => setOpen(false); + const handleDFSClose = () => setDFSOpen(false); + const handleSwbeClose = () => setSwbeOpen(false); + const handleCSPClose = () => setCSPOpen(false); + const handleABSClose = () => setABSOpen(false); + const handleProdClose = () => setProdOpen(false); + const handleStmClose = () => setstmOpen(false); + const handleStockTransferClose = () => setstockTransferOpen(false); + const handleInvoiceSummaryClose = () => setInvoiceSummaryOpen(false); + const handleInvoiceDetailClose = () => setInvoiceDetailOpen(false); + const handleByMonthClose = () => setByMonth(false); + const handleByYearClose = () => setByYear(false); + const handleByCustomerClose = () => setByCustomer(false); + const handlePartySummaryClose = () => setPartySummary(false); + const handleSRCClose = () => setSRC(false); + const handleIMSCustClose = () => setIMSCust(false); + const handleIMSCustSummaryClose = () => setIMSCustSummary(false); + const handleSALESClose = () => setSALES(false); + const handleAllStockSalesClose = () => setAllStockSales(false); + const handleSALESComparisonClose = () => setSALESComparison(false); + const handleSALESbyCustomerClose = () => setSALESbyCustomer(false); + const handleStockDaysClose = () => setStockDays(false); + const handleBranchCategoryClose = () => setBranchCategory(false); + const handleBranchSummaryClose = () => setBranchSummary(false); + const handleKeySummaryClose = () => setKeySummary(false); + const handleKeyDetailClose = () => setKeyDetail(false); + const handleBranchProductClose = () => setBranchProduct(false); + const handleImsByCustomerAdminClose = () => setImsByCustomerAdmin(false); + const handleImsByCustomerSumAdminClose = () => + setImsByCustomerSumAdmin(false); + const handleImsByCustomerChanAdminClose = () => + setImsByCustomerChanAdmin(false); + const handleImsByProductAdminClose = () => setImsByProductAdmin(false); + const handleImsBySupplierAdminClose = () => setImsBySupplierAdmin(false); + const handleImsByCustomerPnLClose = () => setImsByCustomerPnL(false); + const handleImsByProductPnLClose = () => setImsByProductPnL(false); + const handleImsByCustPnLClose = () => setImsByCustPnL(false); + const handleKhyberByBranchPLSClose = () => setKhyberByBranchPLS(false); + const handleStockValueByVendorClose = () => setStockValueByVendor(false); + const handleStockValueByProductClose = () => setStockValueByProduct(false); + const handleCompaniesProfitWiseClose = () => setCompaniesProfitWise(false); + const handleMonthlyDataClose = () => setMonthlyData(false); + + const handleDailyStatementClose = () => setOpenDailyStatement(false); + const handleDailyCombinedStatementClose = () => + setOpenDailyCombinedStatement(false); + const handleCustomerStatementClose = () => setopenCustomerStatement(false); + const handleCustomerCombinedStatementClose = () => + setopenCustomerCombinedStatement(false); + const handleWholeSaleInvoiceClose = () => setopenWholeSaleInvoice(false); + const handleWholeSaleLedgerClose = () => setopenWholeSaleLedger(false); + const handleWholeSaleSummaryClose = () => setopenWholeSaleSummary(false); + const handleGeneralLedgerClose = () => setopenGeneralLedger(false); + const handleBankCashSummaryClose = () => setopenBankCashSummary(false); + const handleBankLedgerSummaryDetailsClose = () => + setopenBankLedgerSummaryDetails(false); + + const handleCategoryListClose = () => setopenCategoryList(false); + + // new category + const handleNewCategoryClose = () => setopenNewCategory(false); + + //Pricing + const handlePricingClose = () => setopenPricing(false); + + //Product list + const handleProductListClose = () => setopenProductList(false); + + //Master Product List + const handleMasterProductListClose = () => setopenMasterProductList(false); + + //Origins list + const handleOriginsListClose = () => setopenOriginsList(false); + + // Unit List + const handleUnitListClose = () => setopenUnitList(false); + + //brand list + const handleBrandListClose = () => setopenBrandList(false); + + // new brand + + const handleNewBrandClose = () => setopenNewBrand(false); + + // New Unit + const handleNewUnitClose = () => setopenNewUnit(false); + + // New Origin + const handleNewOriginClose = () => setopenNewOrigin(false); + + //New Product + const handleNewProductClose = () => setopenNewProduct(false); + + const handleIMSChannelClose = () => setIMSChannel(false); + const handleSIDClose = () => setSIDOpen(false); + const handleAdjClose = () => setAdjOpen(false); + const handleAdjDetailClose = () => setAdjDetailOpen(false); + const handleDelNotesClose = () => setDelNotesOpen(false); + const handleDelNotesDetailClose = () => setDelNotesDetailOpen(false); + const handleGRNListClose = () => setGRNListOpen(false); + const handleGRNDetailClose = () => setGRNDetailOpen(false); + + const handleRedirect = () => { + // console.log(option.value, format(selectedDate, 'MM/dd/yyyy')) + history.push( + `/stock/opening-stock?label=${option.label}&value=${ + option.value + }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + setOpen(false); + }; + const handleRedirects = () => { + // console.log(option.value, format(selectedDate, 'MM/dd/yyyy')) + history.push( + `/accounts/dailystatement?label=${option.label}&value=${ + option.value + }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + setTestOpen(false); + }; + + const handleDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleSwbeRedirect = () => { + var minVal = document.getElementById("minval"); + var maxVal = document.getElementById("maxval"); + // console.log(option, brandOption, supplierOption, categoryOption, + // originOption, + // groupByOption, + // orderbyOption, + // directionOption, + // selectedDate, selectedFromDate, selectedToDate, minVal, maxVal); + history.push( + `/stock/swbe?loc=${option.value}&supp=${supplierOption.value}&brand=${ + brandOption.value + }&category=${categoryOption.value}&origin=${originOption.value}&group=${ + groupByOption.value + }&order=${orderbyOption.value}&dir=${ + directionOption.value + }&selectedDate=${format( + selectedDate, + "MM/dd/yyyy" + )}&selectedFrom=${format( + selectedFromDate, + "yyyy-MM-dd" + )}&selectedTo=${format(selectedToDate, "yyyy-MM-dd")}&min=${ + minVal.value + }&max=${maxVal.value}` + ); + setSwbeOpen(false); + }; + + const handleSwbeDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleCSPRedirect = () => { + var minVal = document.getElementById("minval"); + var maxVal = document.getElementById("maxval"); + // console.log(option, brandOption, supplierOption, categoryOption, + // originOption, + // groupByOption, + // orderbyOption, + // directionOption, + // selectedDate, selectedFromDate, selectedToDate, minVal, maxVal); + history.push( + `/stock/csp?loc=${option.value}&supp=${supplierOption.value}&brand=${brandOption.value}&category=${categoryOption.value}&origin=${originOption.value}&min=${minVal.value}&max=${maxVal.value}` + ); + setCSPOpen(false); + }; + + const handleCSPDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleABSRedirect = () => { + history.push( + `/stock/abs?supp=${supplierOption.value}&brand=${ + brandOption.value + }&category=${categoryOption.value}&origin=${originOption.value}&group=${ + groupByOption.value + }&selectedDate=${format(selectedDate, "MM/dd/yyyy")}` + ); + setABSOpen(false); + }; + + const handleABSDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleProdRedirect = () => { + history.push( + `/stock/product-track?loc=${option.value}&prod=${ + productOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + setProdOpen(false); + }; + const handleStmRedirect = () => { + history.push( + `/stock/stock-transfer-mismatch?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + setstmOpen(false); + }; + const handleStockTransferRedirect = () => { + history.push( + `/stock/stock-transfer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&fromBranchId=${ + transferFromOption.value + }&toBranchId=${transferToOption.value}` + ); + setstockTransferOpen(false); + }; + const handleInvoiceSummaryRedirect = () => { + history.push( + `/salesindex/invoice-summary?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setInvoiceSummaryOpen(false); + }; + const handleInvoiceDetailRedirect = () => { + history.push( + `/salesindex/invoice-detail?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setInvoiceDetailOpen(false); + }; + const handleByMonthRedirect = () => { + history.push( + `/salessummary/bymonth?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setByMonth(false); + }; + const handleByYearRedirect = () => { + history.push( + `/salessummary/byyear?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setByYear(false); + }; + const handleByCustomerRedirect = () => { + history.push( + `/salessummary/bycustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + handleByCustomerClose(); + }; + const handlePartySummaryRedirect = () => { + history.push( + `/salessummary/partysummary?date=${format(selectedDate, "MM/dd/yyyy")}` + ); + handlePartySummaryClose(); + }; + + const handleProdDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + + const handleSIDRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/transferdetail?ref=${ref.value}`); + handleSIDClose(); + }; + + const handleAdjRedirect = () => { + history.push( + `/stock/adjustments?loc=${option.value}&type=${ + adjustTypeOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleToDateChange(); + }; + const handleSRCRedirect = () => { + history.push( + `/general/salesratebycustomer?cust=${option.value}&supp=${ + supplierOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleSRCClose(); + }; + const handleIMSCustRedirect = () => { + history.push( + `/ims/imsbycustomer?cust=${option.value}&supp=${ + supplierOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleIMSCustClose(); + }; + const handleIMSCustSummaryRedirect = () => { + history.push( + `/ims/imsbycustomersummary?locationId=${ + option.value + }&monthseperated=${checked}&from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + handleIMSCustSummaryClose(); + }; + const handleIMSChannelRedirect = () => { + history.push( + `/ims/imsbychannel?locationId=4&supp=${ + supplierOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleIMSChannelClose(); + }; + const handleAdjDetailRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/adjustmentdetail?ref=${ref.value}`); + handleAdjDetailClose(); + }; + const handleDelNotesRedirect = () => { + history.push( + `/stock/deliverynotes?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + setDelNotesOpen(false); + }; + const handleDelNotesDetailRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/deliverynotedetail?ref=${ref.value}`); + setDelNotesDetailOpen(false); + }; + const handleGRNRedirect = () => { + history.push( + `/stock/goodsreceivednotes?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + handleGRNListClose(); + }; + const handleGRNDetailRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/goodsreceivednotedetail?ref=${ref.value}`); + handleGRNDetailClose(); + }; + + const handleImsBySupplierAdminRedirect = () => { + history.push( + `/adminsales/imsbysupplier?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}&radioGroup=${radioGroup}&supp=${supplierOption.value}` + ); + handleImsBySupplierAdminClose(); + }; + const handleImsByProductAdminRedirect = () => { + history.push( + `/adminsales/imsbyproduct?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleImsByProductAdminClose(); + }; + const handleImsByCustCHANAdminRedirect = () => { + history.push( + `/adminsales/imsbycustomerbychannel?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerChanAdminClose(); + }; + const handleImsByCustSUMAdminRedirect = () => { + history.push( + `/adminsales/imsbycustomersummary?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerSumAdminClose(); + }; + const handleImsByCustAdminRedirect = () => { + history.push( + `/adminsales/imsbycustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerAdminClose(); + }; + + const handleBranchCategoryRedirect = () => { + history.push( + `/adminsales/branchandbrandcategory?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleBranchCategoryClose(); + }; + const handleBranchSummaryRedirect = () => { + history.push( + `/adminsales/branchsummary?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleBranchSummaryClose(); + }; + const handleKeySummaryRedirect = () => { + history.push( + `/adminsales/keysummary?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleKeySummaryClose(); + }; + const handleKeyDetailRedirect = () => { + history.push( + `/adminsales/keydetail?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleKeyDetailClose(); + }; + const handleBranchProductRedirect = () => { + history.push( + `/adminsales/branchproduct?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleBranchProductClose(); + }; + + const handleSalesRedirect = () => { + history.push( + `/adminsales/sales?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + handleSALESClose(); + }; + const handleSalesComparisonRedirect = () => { + history.push( + `/adminsales/salescomparison?from=${format( + selectedFromDate, + "yyyy-MM" + )}&to=${format(selectedToDate, "yyyy-MM")}&secondfrom=${format( + selectedSecondFromDate, + "yyyy-MM" + )}&secondto=${format(selectedSecondToDate, "yyyy-MM")}` + ); + handleSALESComparisonClose(); + }; + const handleSalesByCustomersRedirect = () => { + history.push( + `/adminsales/salecustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }&radioGroup=${radioGroup}&customerId=${option.value}` + ); + handleSALESbyCustomerClose(); + }; + const handleAllStockSalesRedirect = () => { + history.push( + `/adminsales/allstocksales?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleAllStockSalesClose(); + }; + const handleStockDaysRedirect = () => { + history.push( + `/adminsales/stockdays?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleStockDaysClose(); + }; + + const handleImsByCustomerPnLRedirect = () => { + history.push( + `/profitloss/imsbycustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerPnLClose(); + }; + const handleImsByProductPnLRedirect = () => { + history.push( + `/profitloss/imsbyproduct?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleImsByProductPnLClose(); + }; + const handleImsByCustPnLRedirect = () => { + history.push( + `/profitloss/imsbycustpnl?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${option.value}` + ); + handleImsByCustPnLClose(); + }; + const handleKhyberByBranchPLSRedirect = () => { + history.push( + `/profitloss/kbplstotal?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&radioGroup=${radioGroup}` + ); + handleKhyberByBranchPLSClose(); + }; + const handleStockValueByVendorRedirect = () => { + history.push( + `/profitloss/svbyvendor?to=${format( + selectedToDate, + "MM/dd/yyyy" + )}&locationId=${option.value}` + ); + handleStockValueByVendorClose(); + }; + const handleStockValueByProductRedirect = () => { + history.push( + `/profitloss/svbyproductlocation?to=${format( + selectedToDate, + "MM/dd/yyyy" + )}&vendor=${supplierOption.value}` + ); + handleStockValueByProductClose(); + }; + const handleCompaniesProfitWiseRedirect = () => { + history.push( + `/profitloss/companiesprofitwise?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&vendor=${ + supplierOption.value + }` + ); + handleCompaniesProfitWiseClose(); + }; + + const handleMonthlyDataRedirect = () => { + history.push( + `/profitloss/monthlydata?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&vendor=${ + supplierOption.value + }` + ); + handleMonthlyDataClose(); + }; + + // reports + const handleDailyStatementRedirect = () => { + history.push( + `analysis/accounts/DailyCombinedStatement?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&vendor=${ + supplierOption.value + }` + ); + handleDailyStatementClose(); + }; + const handleDailyCombinedStatementRedirect = () => { + history.push( + `/accounts/dailycombinedstatement?selectedDate=${format( + selectedDate, + "MM/dd/yyyy" + )}` + // ?from=${ + // option.value + // }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + handleDailyCombinedStatementClose(); + }; + + const handleCustomerStatementRedirect = () => { + history.push( + `/accounts/customerstatement?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }` + ); + handleCustomerStatementClose(); + }; + + const handleCustomerCombinedStatementRedirect = () => { + history.push( + `/accounts/customerstatementcombined?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&businesstype=${ + BusinessTypesOptions.value + }` + ); + handleCustomerCombinedStatementClose(); + }; + const handleWholeSaleInvoiceRedirect = () => { + history.push( + `/accounts/wholesaleinvoice?label=${option.label}&value=${ + option.value + }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + handleWholeSaleInvoiceClose(); + }; + const handleWholeSaleLedgerRedirect = () => { + history.push( + `/accounts/wholesaleledger?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + + handleWholeSaleLedgerClose(); + }; + const handleWholeSaleSummaryRedirect = () => { + history.push( + `/accounts/wholesalesummaryledger?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${option.value}` + ); + + handleWholeSaleSummaryClose(); + }; + const handleGeneralLedgerRedirect = () => { + history.push( + `/accounts/generalledger?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleGeneralLedgerClose(); + }; + const handleBankCashSummaryRedirect = () => { + history.push( + `/accounts/BankCashBanksummary?selectedDate=${format( + selectedDate, + "MM/dd/yyyy" + )}` + ); + handleBankCashSummaryClose(); + }; + const handleBankLedgerSummaryDetailsCRedirect = () => { + history.push( + `/accounts/bankledgersummarydetails?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + + + handleBankLedgerSummaryDetailsClose(); + }; + const handleCategoryListRedirect = () => { + history.push(`/inventory/new-category`); + handleCategoryListClose(); + }; + + const handleNewCategoryRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleNewCategoryClose(); + }; + const handlePricingRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handlePricingClose(); + }; + + const handleProductListRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleProductListClose(); + }; + + const handleMasterProductListRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleMasterProductListClose(); + }; + + const handleOriginsListRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleOriginsListClose(); + }; + + const handleUnitListRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleUnitListClose(); + }; + + const handleBrandListRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleBrandListClose(); + }; + + const handleNewBrandRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleNewBrandClose(); + }; + const handleNewUnitRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleNewUnitClose(); + }; + + const handleNewOriginRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleNewOriginClose(); + }; + const handleNewProductRedirect = () => { + history.push( + `/inventory/new-category?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleNewProductClose(); + }; + + const handleDFSRedirect = () => { + history.push( + `/productivity/dfs?selectedFromData=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&selectedtoData=${format( + selectedToDate, + "MM/dd/yyyy" + )}&summary=${checked}` + ); + setDFSOpen(false); + }; + + // verifies if routeName is the one active (in browser input) + function activeRoute(routeName) { + return location.pathname === routeName; + } + const { color, logo, image, logoText, routes, companyLocation } = props; + var links = ( + + {routes.map((prop, key) => { + var activePro = " "; + var listItemClasses; + if (prop.path === "/upgrade-to-pro") { + activePro = classes.activePro + " "; + listItemClasses = classNames({ + [" " + classes[color]]: true, + }); + } else { + listItemClasses = classNames({ + [" " + classes[color]]: activeRoute(prop.layout + prop.path), + }); + } + const whiteFontClasses = classNames({ + [" " + classes.whiteFont]: activeRoute(prop.layout + prop.path), + }); + + return ( +
+ {prop.id === 1 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : // + prop.id === 2 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 3 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 4 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 5 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 6 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 7 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 8 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 9 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 10 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 11 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 12 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 13 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 14 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 15 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 16 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 17 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 18 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 19 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 20 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 21 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 22 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 23 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 24 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 25 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 26 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 27 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 28 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 29 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 30 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 31 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 32 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 33 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 34 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 35 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 36 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 37 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 38 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 39 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 40 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 41 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 42 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 43 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 44 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 45 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 46 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 47 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 48 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 49 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 51 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 52 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 53 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 54 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 55 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 56 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 57 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 58 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 59 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 60 ? ( +
+ {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 61 ? ( +
+ {/* new category */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 62 ? ( +
+ {/* Category List */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 63 ? ( +
+ {/* new brand */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 64 ? ( +
+ {/* Brand List */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 65 ? ( +
+ {/* new Unit */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 66 ? ( +
+ {/* Unit List */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 67 ? ( +
+ {/* new origin */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 68 ? ( +
+ {/* Origin list */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 69 ? ( +
+ {/* new product */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 70 ? ( +
+ {/* master product list */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 71 ? ( +
+ {/* product list */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : prop.id === 72 ? ( +
+ {/* pricing */} + {/* */} + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + +
+ ) : ( + + + {typeof prop.icon === "string" ? ( + + {prop.icon} + + ) : ( + + )} + + + + )} + ; +
+ ); + })} +
+ ); + { + /* + */ + } + + return ( +
+ {/* + + {SidebarData.map((item, index) => { + const depthlebel = 0; + return ; + })} + + + + ); + var brand = ( + + ); + return ( +
+ + */} + {/* + + {brand} +
+ {props.rtlActive ? : } + {links} +
+ {image !== undefined ? ( +
+ ) : null} + + + + + {brand} +
{links}
+ {image !== undefined ? ( +
+ ) : null} + + */} + + {/* + handleToDateChange(date)} + minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ + */} + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + + +
+ +
+
+ +
+ +
+
+
+ + + +
+ +
+
+
+ + + +
+ +
+
+ + + + + + +
+ + + + + + Expiry + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + + + + + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+ +
+ +
+
+
+ +
+ {/* */} + +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ + + +
+ {/* */} + +
+
+
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ +
+ +
+
+
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + +
+ +
+
+
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + +
+ +
+
+
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + +
+ + } + label="Month Separated" + /> +
+
+
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + {/* + +
+ +
+
+
*/} + + +
+ +
+
+
+
+ {/* */} + +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + {/* + +
+ + +
+
+
+ + + +
+ + +
+
+
*/} + + {/* Had to remove these afterwards */} + + + +
+ +
+
+
+ + + +
+ +
+
+
+ +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + + + + + handleSecondFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleSecondToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ + +
+ +
+
+
+ + +
+ + + + + + + + } + label="Detail" + /> + + + } + label="Summary" + /> + + + + +
+
+
+
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + + +
+ + + + + + + + } + label="IMS BY SUPPLIER PRICE" + /> + + + } + label="IMS BY MARKET SOLD PRICE" + /> + + + + +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ + + + + + + + } + label="Summary" + /> + + + } + label="Detail" + /> + + + } + label="Summary & Detail" + /> + + + + +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + {/* Monthly Data */} + + + + + handleDateChange(date)} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ +
+
+
+ + {/* Reports */} + {/* Daily Statements */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ +
+ +
+
+ +
+
+
+ + {/* Daily Combined Statement */} + + + + handleDateChange(date)} + format="MM/dd/yyyy" + /> + + +
+
+ + {/* */} + +
+
+ +
+
+
+ + {/* Customer Statement */} + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ +
+
+
+ + {/* Customer Combined Statement */} + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+
+ {/* */} + +
+
+
+ + {/* WholeSale Invoice */} + + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ +
+
+ +
+
+
+ + {/* WholeSale Ledger */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ +
+ +
+
+
+ + {/* WholeSale Summary */} + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ +
+
+
+ + {/* General Ledger */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ +
+ +
+
+ +
+
+
+ + {/* Bank Cash Summary */} + + + + handleDateChange(date)} + format="MM/dd/yyyy" + /> + + +
+
+ +
+
+
+ + {/* Bank Ledger Summary Details */} + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ +
+ + } + label="Summary" + /> + +
+
+ +
+
+
+ + {/* New Category */} + + + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* Category List */} + + +
+
+ +
+
+
+ + {/* New Brand */} + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* Brand List */} + + +
+
+ +
+
+
+ + {/* New Unit */} + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* Unit List */} + + +
+ +
+
+
+ + {/* New Origin */} + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* Origins List */} + + +
+ +
+
+
+ + {/* New Product */} + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + } + label="Active" + /> +
+
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* Master Product List */} + + +
+ +
+
+
+ + {/* Product List */} + + +
+ +
+
+
+ + {/* Pricing */} + + +
+ +
+
+
+
+ + //
+ ); +} + +// Sidebar.propTypes = { +// rtlActive: PropTypes.bool, +// handleDrawerToggle: PropTypes.func, +// bgColor: PropTypes.oneOf(["purple", "blue", "green", "orange", "red"]), +// logo: PropTypes.string, +// image: PropTypes.string, +// logoText: PropTypes.string, +// companyLocation: PropTypes.string, +// routes: PropTypes.arrayOf(PropTypes.object), +// open: PropTypes.bool, +// }; diff --git a/src/components/Sidebar/SubMenu.js b/src/components/Sidebar/SubMenu.js new file mode 100644 index 0000000..fde41bd --- /dev/null +++ b/src/components/Sidebar/SubMenu.js @@ -0,0 +1,118 @@ +import React, { useState } from "react"; +import { Link } from "react-router-dom"; +import styled from "styled-components"; +import * as AiIcons from "react-icons/ai"; +import * as IoIcons from "react-icons/io"; +import * as RiIcons from "react-icons/ri"; + +const SidebarLink = styled(Link)` + display: flex; + color: #e1e9fc; + justify-content: space-between; + align-items: center; + padding: 20px; + list-style: none; + height: 60px; + text-decoration: none; + font-size: 18px; + margin-left: ${(props) => (props.isSubNav ? "2em" : "")}; + + &:hover { + background: #252831; + border-left: 4px solid #632ce4; + cursor: pointer; + } +`; + +const SidebarLabel = styled.span` + margin-left: 16px; +`; + +const DropdownLink = styled(Link)` + height: 60px; + padding-left: 3rem; + display: flex; + align-items: center; + text-decoration: none; + color: #f5f5f5; + font-size: 15px; + margin-left: 2em; + + &:hover { + background: #632ce4; + cursor: pointer; + } +`; + +const renderData = (subMenuData) => { + const data = [subMenuData]; + return data.map((item, index) => { + const depthlebel = 0; + return ( + + ); + }); +}; + +const SubMenu = ({ + item, + depthlebel, + isSubNavData = false, + isSubNav = false, +}) => { + const [subnav, setSubnav] = useState(false); + + const showSubnav = () => { + setSubnav(!subnav); + }; + + return ( + <> +
+ +
+ {item.icon} + {item.title} +
+
+ {item.subNav && subnav + ? item.iconOpened + : item.subNav + ? item.iconClosed + : null} +
+
+
+ {subnav && + item.subNav && + item.subNav.map((item, index) => { + return ( + <> + {isSubNavData && ( + item && item.handleOpen && item.handleOpen()} + to={item.path} + > + {item.icon} + {item.title} + + )} + {item.subNav && renderData(item)} + + ); + })} + + ); +}; + +export default SubMenu; diff --git a/src/components/Sidebar/Trash.js b/src/components/Sidebar/Trash.js new file mode 100644 index 0000000..772148a --- /dev/null +++ b/src/components/Sidebar/Trash.js @@ -0,0 +1,8554 @@ +import { useHistory } from "react-router-dom"; +import { makeStyles } from "@material-ui/core/styles"; +import React, { useEffect, useState } from "react"; +import styles from "assets/jss/material-dashboard-react/components/sidebarStyle.js"; +import { Modal, Box, Typography, Fade, Backdrop } from "@material-ui/core"; +import Drawer from "@material-ui/core/Drawer"; +import Hidden from "@material-ui/core/Hidden"; +import List from "@material-ui/core/List"; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import CustomInput from "components/CustomInput/CustomInput.js"; +import ListItem from "@material-ui/core/ListItem"; +import ListItemText from "@material-ui/core/ListItemText"; + +import { AsyncPaginate } from "react-select-async-paginate"; +import Radio from "@material-ui/core/Radio"; +import Checkbox from "@material-ui/core/Checkbox"; +import RadioGroup from "@material-ui/core/RadioGroup"; +import FormHelperText from "@material-ui/core/FormHelperText"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import FormControl from "@material-ui/core/FormControl"; +import FormLabel from "@material-ui/core/FormLabel"; + +import Icon from "@material-ui/core/Icon"; +import Button from "components/CustomButtons/Button.js"; +import Card from "components/Card/Card.js"; +import CardBody from "components/Card/CardBody.js"; +import CardHeader from "components/Card/CardHeader.js"; + +import Select from "react-select"; +import AsyncSelect from "react-select/async"; + +import DateFnsUtils from "@date-io/date-fns"; // choose your lib + +import { format } from "date-fns"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; +import commonService from "services/common.service"; +import Person from "@material-ui/icons/Person"; + +import classNames from "classnames"; +import styled from "styled-components"; +import * as AiIcons from "react-icons/ai"; +import * as IoIcons from "react-icons/io"; +import * as RiIcons from "react-icons/ri"; +import SubMenu from "./SubMenu"; +import tableService from "services/tables.service"; + +var groupByOptions = [ + { + label: "Supplier", + value: "supplier", + }, + { + label: "Category", + value: "category", + }, + { + label: "Brand", + value: "brand", + }, +]; +var orderbyOptions = [ + { + label: "Product", + value: "product", + }, + { + label: "Quantity", + value: "quantity", + }, + { + label: "Expiry", + value: "expiry", + }, +]; +var directionOptions = [ + { + label: "ASC", + value: "asc", + }, + { + label: "DESC", + value: "desc", + }, +]; + +const style = { + position: "absolute", + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + width: 400, + bgcolor: "background.paper", + border: "2px solid #000", + boxShadow: 24, + p: 4, +}; +const styleLarge = { + position: "absolute", + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + width: 700, + bgcolor: "background.paper", + border: "2px solid #000", + boxShadow: 24, + p: 4, +}; + +const SidebarNav = styled.nav` + background: #15171c; + width: 260px; + height: 100vh; + display: flex; + justify-content: center; + position: fixed; + top: 0; + transition: 350ms; + z-index: 10; +`; + +const SidebarWrap = styled.div` + width: 100%; +`; + +var options = []; +var TransferTooptions = []; +var TransferFromoptions = []; +var locOptions = []; +var parentCategoryOptions = []; +var DeliverPersonCategoryOptions = []; +var subCategoryOptions = []; +var accountOptions = []; +var secondAccountOptions = []; +var BusinessTypesOptions = []; +var brandOptions = []; +var customerOptions = []; +var categoryOptions = []; +var supplierOptions = []; +var originOptions = []; +var productOptions = []; +var adjustmentTypeOptions = []; +const Trash = () => { + const useStyles = makeStyles(styles); + + const classes = useStyles(); + const history = useHistory(); + + const [selectedDate, handleDateChange] = useState(new Date()); + const [selectedFromDate, handleFromDateChange] = useState(new Date()); + const [selectedToDate, handleToDateChange] = useState(new Date()); + const [selectedSecondToDate, handleSecondToDateChange] = useState(new Date()); + const [selectedSecondFromDate, handleSecondFromDateChange] = useState( + new Date() + ); + + const [showModal, setShowModal] = useState(false); + + const [option, setOption] = useState(""); + const [secondAccountOption, setSecondAccountOption] = useState(""); + const [transferToOption, setTransferToOption] = useState(""); + const [transferFromOption, setTransferFromOption] = useState(""); + const [brandOption, setbrandOption] = useState(""); + const [supplierOption, setSupplierOption] = useState(""); + const [categoryOption, setcategoryOption] = useState(""); + const [originOption, setoriginOption] = useState(""); + const [groupByOption, setgroupByOption] = useState(""); + const [orderbyOption, setorderbyOption] = useState(""); + const [directionOption, setdirectionOption] = useState(""); + const [productOption, setproductOption] = useState(""); + const [adjustTypeOption, setadjustTypeOption] = useState(""); + const [companyOption, setCompanyOption] = useState(""); + const [periodOption, setPeriodOption] = useState(""); + const [orderTakerOption, setOrderTakerOption] = useState(""); + + const [radioGroup, setRadioGroupChange] = useState("0"); + const [checked, setChecked] = useState(false); + const [checkedShared, setCheckedShared] = useState(false); + + const [open, setOpen] = React.useState(false); + const [testOpen, setTestOpen] = React.useState(false); + const [DFSopen, setDFSOpen] = React.useState(false); + const [swbeOpen, setSwbeOpen] = React.useState(false); + const [cSPOpen, setCSPOpen] = React.useState(false); + const [ABSOpen, setABSOpen] = React.useState(false); + const [ProdOpen, setProdOpen] = React.useState(false); + const [SIDOpen, setSIDOpen] = React.useState(false); + const [adjOpen, setAdjOpen] = React.useState(false); + const [stmOpen, setstmOpen] = React.useState(false); + const [stockTransferOpen, setstockTransferOpen] = React.useState(false); + const [invoiceSummaryOpen, setInvoiceSummaryOpen] = React.useState(false); + const [invoiceDetailOpen, setInvoiceDetailOpen] = React.useState(false); + const [byMonth, setByMonth] = React.useState(false); + const [byYear, setByYear] = React.useState(false); + const [byCustomer, setByCustomer] = React.useState(false); + const [partysummary, setPartySummary] = React.useState(false); + const [imsCust, setIMSCust] = React.useState(false); + const [imsCustSummary, setIMSCustSummary] = React.useState(false); + const [imsChannel, setIMSChannel] = React.useState(false); + const [SALES, setSALES] = React.useState(false); + const [AllStockSales, setAllStockSales] = React.useState(false); + const [SALESComparison, setSALESComparison] = React.useState(false); + const [SALESbyCustomer, setSALESbyCustomer] = React.useState(false); + const [StockDays, setStockDays] = React.useState(false); + const [BranchCategory, setBranchCategory] = React.useState(false); + const [BranchSummary, setBranchSummary] = React.useState(false); + const [KeySummary, setKeySummary] = React.useState(false); + const [KeyDetail, setKeyDetail] = React.useState(false); + const [BranchProduct, setBranchProduct] = React.useState(false); + const [ImsByCustomerAdmin, setImsByCustomerAdmin] = React.useState(false); + const [ImsByCustomerSumAdmin, setImsByCustomerSumAdmin] = React.useState( + false + ); + const [ImsByCustomerChanAdmin, setImsByCustomerChanAdmin] = React.useState( + false + ); + const [ImsByProductAdmin, setImsByProductAdmin] = React.useState(false); + const [ImsBySupplierAdmin, setImsBySupplierAdmin] = React.useState(false); + const [ImsByCustomerPnL, setImsByCustomerPnL] = React.useState(false); + const [ImsByProductPnL, setImsByProductPnL] = React.useState(false); + const [ImsByCustPnL, setImsByCustPnL] = React.useState(false); + const [KhyberByBranchPLS, setKhyberByBranchPLS] = React.useState(false); + const [StockValueByVendor, setStockValueByVendor] = React.useState(false); + const [StockValueByProduct, setStockValueByProduct] = React.useState(false); + const [CompaniesProfitWise, setCompaniesProfitWise] = React.useState(false); + const [Monthlydata, setMonthlyData] = React.useState(false); + + const [openDailyStatement, setOpenDailyStatement] = React.useState(false); + const [ + openDailyCombinedStatement, + setOpenDailyCombinedStatement, + ] = React.useState(false); + const [openCustomerStatement, setopenCustomerStatement] = React.useState( + false + ); + const [ + openCustomerCombinedStatement, + setopenCustomerCombinedStatement, + ] = React.useState(false); + const [openWholeSaleInvoice, setopenWholeSaleInvoice] = React.useState(false); + const [openWholeSaleLedger, setopenWholeSaleLedger] = React.useState(false); + const [openWholeSaleSummary, setopenWholeSaleSummary] = React.useState(false); + const [openGeneralLedger, setopenGeneralLedger] = React.useState(false); + const [openBankCashSummary, setopenBankCashSummary] = React.useState(false); + const [ + openBankLedgerSummaryDetails, + setopenBankLedgerSummaryDetails, + ] = React.useState(false); + + const [openCategoryList, setopenCategoryList] = React.useState(false); + + const [openPricing, setopenPricing] = React.useState(false); + + const [openProductList, setopenProductList] = React.useState(false); + + const [openMasterProductList, setopenMasterProductList] = React.useState( + false + ); + + const [openOriginsList, setopenOriginsList] = React.useState(false); + + const [openUnitList, setopenUnitList] = React.useState(false); + + const [openBrandList, setopenBrandList] = React.useState(false); + + const [openNewProduct, setopenNewProduct] = React.useState(false); + + const [SRC, setSRC] = React.useState(false); + + const [adjDetailOpen, setAdjDetailOpen] = React.useState(false); + const [DelNotesOpen, setDelNotesOpen] = React.useState(false); + const [DelNotesDetailOpen, setDelNotesDetailOpen] = React.useState(false); + const [GRNListOpen, setGRNListOpen] = React.useState(false); + const [GRNDetailOpen, setGRNDetailOpen] = React.useState(false); + + //Inventory Catalog + const [openNewCategory, setNewCategoryOpen] = React.useState(false); + const [openNewBrand, setNewBrandOpen] = React.useState(false); + // const [openNewUnit, setNewUnitOpen] = React.useState(false); + const [openNewOrigin, setNewOriginOpen] = React.useState(false); + //Inventory purchses + const [openPurchases, setPurchasesOpen] = React.useState(false); + const [openGenerateInvoices, setGenerateInvoicesOpen] = React.useState(false); + const [openNewPurchaseGRN, setNewPurchsaeGRNOpen] = React.useState(false); + const [openNewStockTransferGRN, setNewStockTransferGRNOpen] = React.useState( + false + ); + const [openNewDeliveryNote, setNewDeliveryNoteOpen] = React.useState(false); + const [openCreateStockCounting, setCreateStockCountingOpen] = React.useState( + false + ); + const [openNewUnit, setopenNewUnit] = React.useState(false); + function ParentCategory(val) { + setOption(val); + } + function DeliverPersonCategory(val) { + setOption(val); + } + + async function loadOptionsParentCategory() { + const response = await commonService.ParentCategory(); + await response.data.Data.forEach((element) => { + parentCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsDeliveryPersonCategory() { + const response = await commonService.ParentCategory(); + await response.data.Data.forEach((element) => { + DeliverPersonCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return DeliverPersonCategoryOptions; + } + + const [title, setTitle] = useState(""); + const [description, setDescription] = useState(""); + + const SidebarData = [ + { + title: "Dashboard", + path: "/admin/dashboard", + icon: , + iconClosed: , + iconOpened: , + }, + + { + title: "Analytics", + // path: "/stock", + icon: , + iconClosed: , + iconOpened: , + + subNav: [ + { + title: "Stock", + // path: "/stock", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Opening Stock", + // path: "stock/opening-stock", + icon: , + handleOpen: () => { + setOpen(true); + }, + }, + { + title: "Stock With Batch & Expiry", + // path: "/stock/swbe", + icon: , + handleOpen: () => { + setSwbeOpen(true); + }, + }, + { + title: "Cost & sales Prices", + // path: "/stock/csp", + icon: , + handleOpen: () => { + setCSPOpen(true); + }, + }, + { + title: "All Branches Stock", + // path: "/stock/abs", + icon: , + handleOpen: () => { + setABSOpen(true); + }, + }, + { + title: "Product Tank", + // path: "/stock/product-track", + icon: , + handleOpen: () => { + setProdOpen(true); + }, + }, + { + title: "Stock Transfer", + // path: "/stock/stock-transfer", + icon: , + handleOpen: () => { + setstockTransferOpen(true); + }, + }, + { + title: "Shifting Invoice Detail", + icon: , + handleOpen: () => { + setSIDOpen(true); + }, + }, + { + title: "Stock Transfer Mismatch", + icon: , + handleOpen: () => { + setstmOpen(true); + }, + }, + { + title: "Stock Adjustments", + // path: "/stock/stock-transfer-mismatch", + icon: , + handleOpen: () => { + setAdjOpen(true); + }, + }, + { + title: "Adjustment Detail", + // path: "/stock/stock-transfer-mismatch", + icon: , + handleOpen: () => { + setAdjDetailOpen(true); + }, + }, + { + title: "Delivery Notes", + // path: "/stock/transferdetail", + icon: , + handleOpen: () => { + setDelNotesOpen(true); + }, + }, + { + title: "Delivery Note Detail", + // path: "/stock/transferdetail", + icon: , + handleOpen: () => { + setDelNotesDetailOpen(true); + }, + }, + { + title: "Good Received Notes", + // path: "/stock/adjustments", + icon: , + handleOpen: () => { + setAdjOpen(true); + }, + }, + { + title: "Good Received Notes List", + // path: "/stock/adjustments", + icon: , + handleOpen: () => { + setGRNDetailOpen(true); + }, + }, + ], + }, + { + title: "Retail Sales", + // path: "/retail", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Invoice Summary", + // path: "/salesindex/invoice-summary", + icon: , + handleOpen: () => { + setInvoiceSummaryOpen(true); + }, + }, + { + title: "Invoice Detail", + // path: "/salesindex/nvoice-detail", + icon: , + handleOpen: () => { + setInvoiceDetailOpen(true); + }, + }, + { + title: "Sale Summary by Month", + // path: "/salessummary/ByMonthScreen", + icon: , + handleOpen: () => { + setByMonth(true); + }, + }, + { + title: "Sale Summary by year", + // path: "/salessummary/byyear", + icon: , + handleOpen: () => { + setByYear(true); + }, + }, + { + title: "Sale Summary by Customer", + // path: "/salessummary/ByCustomerScreen", + icon: , + handleOpen: () => { + setByCustomer(true); + }, + }, + { + title: "Sale Summary by Party Summary", + // path: "/salessummary/partysummary", + icon: , + handleOpen: () => { + setPartySummary(true); + }, + }, + { + title: "Sale Rate by Customer", + // path: "/general/salesratebycustomer", + icon: , + handleOpen: () => { + setSRC(true); + }, + }, + { + title: "IMS by Customer", + // path: "/ims/imsbycustomer", + icon: , + handleOpen: () => { + setIMSCust(true); + }, + }, + { + title: "IMS by Customer Summary", + // path: "/ims/imsbycustomersummary", + icon: , + handleOpen: () => { + setIMSCustSummary(true); + }, + }, + { + title: "IMS By Channel", + // path: "/ims/imsbychannel", + icon: , + handleOpen: () => { + setIMSChannel(true); + }, + }, + ], + }, + { + title: "Admin Sales", + // path: "/reports/reports3", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Sales", + // path: "/adminsales/sales", + icon: , + handleOpen: () => { + setSALES(true); + }, + }, + { + title: "Sales Comparison", + // path: "/adminsales/salescomparison", + icon: , + handleOpen: () => { + setSALESComparison(true); + }, + }, + { + title: "Sales By Customer", + // path: "/adminsales/salecustomer", + icon: , + handleOpen: () => { + setSALESbyCustomer(true); + }, + }, + { + title: "All Stock & Sales", + // path: "/adminsales/allstocksales", + icon: , + handleOpen: () => { + setAllStockSales(true); + }, + }, + { + title: "Stock Days", + // path: "/adminsales/stockdays", + icon: , + handleOpen: () => { + setStockDays(true); + }, + }, + { + title: "Branch & Brand Category", + // path: "/adminsales/branchandbrandcategory", + icon: , + handleOpen: () => { + setBranchCategory(true); + }, + }, + { + title: "Branch Summary", + // path: "/adminsales/branchsummary", + icon: , + handleOpen: () => { + setBranchSummary(true); + }, + }, + { + title: "KeyAccounts Summary", + // path: "/adminsales/keysummary", + icon: , + handleOpen: () => { + setKeySummary(true); + }, + }, + { + title: "KeyAccounts Details", + // path: "/adminsales/keydetail", + icon: , + handleOpen: () => { + setKeyDetail(true); + }, + }, + { + title: "Branch & Product", + // path: "/adminsales/branchproduct", + icon: , + handleOpen: () => { + setBranchProduct(true); + }, + }, + { + title: "IMS by Customer", + // path: "/adminsales/imsbycustomer", + icon: , + handleOpen: () => { + setImsByCustomerAdmin(true); + }, + }, + { + title: "IMS by Customer Summary", + // path: "/adminsales/imsbycustomersummary", + icon: , + handleOpen: () => { + setImsByCustomerSumAdmin(true); + }, + }, + { + title: "IMS By Channel", + // path: "/adminsales/imsbycustomerbychannel", + icon: , + handleOpen: () => { + setImsByCustomerChanAdmin(true); + }, + }, + { + title: "IMS by Product", + // path: "/adminsales/imsbyproduct", + icon: , + handleOpen: () => { + setImsByProductAdmin(true); + }, + }, + { + title: "IMS by Supplier", + // path: "/adminsales/imsbysupplier", + icon: , + handleOpen: () => { + setImsBySupplierAdmin(true); + }, + }, + ], + }, + { + title: "Productivity", + // path: "/reports/reports3", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "DSF wise Product wise", + // path: "/adminsales/sales", + icon: , + handleOpen: () => { + setGRNListOpen(true); + }, + }, + { + title: "DSF Execution", + // path: "/adminsales/salescomparison", + icon: , + handleOpen: () => { + setDFSOpen(true); + }, + }, + ], + }, + { + title: "Accounts", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Daily Statement", + // path: "/accounts/dailystatement", + icon: , + handleOpen: () => { + setOpenDailyStatement(true); + }, + }, + { + title: "Daily Combined Statement", + // path: "/accounts/dailycombinedstatement", + icon: , + handleOpen: () => { + setOpenDailyCombinedStatement(true); + }, + }, + { + title: "Customer Statement", + // path: "/accounts/customerstatement", + icon: , + handleOpen: () => { + setopenCustomerStatement(true); + }, + }, + { + title: "Customer Statement Combined", + // path: "/accounts/customerstatementcombined", + icon: , + handleOpen: () => { + setopenCustomerCombinedStatement(true); + }, + }, + { + title: "Wholesale Invoice", + // path: "/accounts/wholesaleinvoice", + icon: , + handleOpen: () => { + setopenWholeSaleInvoice(true); + }, + }, + { + title: "Wholesale Ledger", + // path: "/accounts/wholesaleledger", + icon: , + handleOpen: () => { + setopenWholeSaleLedger(true); + }, + }, + { + title: "Wholesale Summary Ledger", + // path: "/accounts/wholesalesummaryledger", + icon: , + handleOpen: () => { + setopenWholeSaleSummary(true); + }, + }, + { + title: "General Ledger", + // path: "/accounts/generalledger", + icon: , + handleOpen: () => { + setopenGeneralLedger(true); + }, + }, + { + title: "Bank Cash/ Bank Summary", + // path: "/accounts/BankCashBanksummary", + icon: , + handleOpen: () => { + setopenBankCashSummary(true); + }, + }, + { + title: "Account Ledger Summary/Details", + // path: "/accounts/bankledgersummarydetails", + icon: , + handleOpen: () => { + setopenBankLedgerSummaryDetails(true); + }, + }, + ], + }, + { + title: "Profit & loss", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "IMS By Customer", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setImsByCustomerPnL(true); + }, + }, + { + title: "IMS By Product", + // path: "/profitloss/imsbyproduct", + icon: , + handleOpen: () => { + setImsByProductPnL(true); + }, + }, + { + title: "IMS By Customer Pnl", + // path: "/profitloss/imsbycustpnl", + icon: , + handleOpen: () => { + setImsByCustPnL(true); + }, + }, + { + title: "Khyber by Branch PLS and total", + // path: "/profitloss/kbplstotal", + icon: , + handleOpen: () => { + setKhyberByBranchPLS(true); + }, + }, + { + title: "Stock Value by Vendor", + // path: "/profitloss/svbyvendor", + icon: , + handleOpen: () => { + setStockValueByVendor(true); + }, + }, + { + title: "Stock Value by Product and Location", + // path: "/profitloss/svbyproductlocation", + icon: , + handleOpen: () => { + setStockValueByProduct(true); + }, + }, + { + title: "Companies Profit Wise", + // path: "/profitloss/companiesprofitwise", + icon: , + handleOpen: () => { + setCompaniesProfitWise(true); + }, + }, + { + title: "Monthly Data", + // path: "/profitloss/monthlydata", + icon: , + handleOpen: () => { + setMonthlyData(true); + }, + }, + ], + }, + ], + }, + { + title: "Inventory", + // path: "/stock", + icon: , + iconClosed: , + iconOpened: , + + subNav: [ + { + title: "Catalog", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "New Category", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setNewCategoryOpen(true); + }, + }, + { + title: "Category List", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setopenCategoryList(true); + // history.push("/catalog/category-list"); + }, + }, + { + title: "New Brand", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setNewBrandOpen(true); + }, + }, + { + title: "Brand List", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setopenBrandList(true); + }, + }, + { + title: "New Unit", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setopenNewUnit(true); + }, + }, + { + title: "Unit List", + // path: "/unit-list", + icon: , + handleOpen: () => { + setopenUnitList(true); + }, + }, + { + title: "New Origin", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setNewOriginOpen(true); + }, + }, + { + title: "Origin List", + // path: "/origins-list", + icon: , + handleOpen: () => { + setopenOriginsList(true); + }, + }, + { + title: "New Product", + icon: , + handleOpen: () => { + history.push("/catalog/new-product"); + }, + }, + { + title: "Master Product list", + icon: , + handleOpen: () => { + history.push("/catalog/master-product-list"); + }, + }, + { + title: "Product List", + icon: , + handleOpen: () => { + history.push("/catalog/product-list"); + }, + }, + { + title: "Pricing", + icon: , + handleOpen: () => { + history.push("/catalog/pricing"); + }, + }, + ], + }, + { + title: "Purchases", + // path: "/stock", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "New Demand Note", + icon: , + handleOpen: () => { + setPurchasesOpen(true); + }, + }, + { + title: "Demand Notes List", + icon: , + handleOpen: () => { + history.push("/catalog/demand-notes-list"); + }, + }, + { + title: "New Purchase Order", + icon: , + handleOpen: () => { + history.push("/catalog/new-purchase-order"); + }, + }, + { + title: "Purchase Orders List", + icon: , + handleOpen: () => { + history.push("/catalog/purchase-orders-list"); + }, + }, + { + title: "New Shipment", + icon: , + handleOpen: () => { + history.push("/catalog/new-shipment"); + }, + }, + { + title: "Shipment List", + icon: , + handleOpen: () => { + history.push("/catalog/shipment-list"); + }, + }, + { + title: "New Purchase Document", + icon: , + handleOpen: () => { + history.push("/catalog/new-purchase-document"); + }, + }, + { + title: "Purchase List", + icon: , + handleOpen: () => { + history.push("/catalog/purchases-list"); + }, + }, + ], + }, + { + title: "Sales", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "Create Quotation", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + history.push("/catalog/create-quotation"); + }, + }, + { + title: "Quotations List", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + history.push("/catalog/quotation-list"); + }, + }, + { + title: "Create Sale Order", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + history.push("/catalog/create-sale-order"); + }, + }, + { + title: "Sale Orders List", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + history.push("/catalog/sale-orders-list"); + }, + }, + { + title: "Generate Invoices", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setGenerateInvoicesOpen(true); + }, + }, + { + title: "Sale Invoices List", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + history.push("/catalog/sale-invoice-list"); + }, + }, + ], + }, + { + title: "Stock/Inventory Transactions", + icon: , + iconClosed: , + iconOpened: , + subNav: [ + { + title: "New Purchase GRN", + // path: "/profitloss/imsbycustomer", + icon: , + handleOpen: () => { + setNewPurchsaeGRNOpen(true); + }, + }, + { + title: "Purchase GRNs List", + icon: , + handleOpen: () => { + history.push("/catalog/purchase-grns-list"); + }, + }, + { + title: "New Sale Return", + icon: , + handleOpen: () => { + history.push("/catalog/new-sale-return"); + }, + }, + { + title: "Sale Return List", + icon: , + handleOpen: () => { + history.push("/catalog/sale-return-list"); + }, + }, + { + title: "New Stock Transfer GRN", + icon: , + handleOpen: () => { + setNewStockTransferGRNOpen(true); + }, + }, + { + title: "Stock Transfer GRN List", + icon: , + handleOpen: () => { + history.push("/catalog/stock-transfer-grn-list"); + }, + }, + { + title: "new Delivery Note", + icon: , + handleOpen: () => { + setNewDeliveryNoteOpen(true); + }, + }, + { + title: "Sale Delivery Note List", + icon: , + handleOpen: () => { + history.push("/catalog/sale-delivery-note-list"); + }, + }, + { + title: "Sale Delivery Note List", + icon: , + handleOpen: () => { + history.push("/catalog/create-new"); + }, + }, + { + title: "Stock Transfer List", + icon: , + handleOpen: () => { + history.push("/catalog/stock-transfer-list"); + }, + }, + { + title: "Create Stock Adjustment", + icon: , + handleOpen: () => { + history.push("/catalog/create-stock-adjustment"); + }, + }, + { + title: "Stock Adjustment List", + icon: , + handleOpen: () => { + history.push("/catalog/stock-Adjustment-List"); + }, + }, + { + title: "Stock Countings List", + icon: , + handleOpen: () => { + history.push("/catalog/stock-countings-List"); + }, + }, + { + title: "Create Stock Counting", + icon: , + handleOpen: () => { + setCreateStockCountingOpen(true); + }, + }, + ], + }, + ], + }, + ]; + + async function loadOptionsLoc() { + const response = await LocationService.Location(); + await response.data.Data.forEach((element) => { + locOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return locOptions; + } + async function loadOptionsAccount() { + const response = await commonService.Account(); + await response.data.Data.forEach((element) => { + accountOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return accountOptions; + } + async function loadOptionsBusinessType() { + const response = await commonService.BusinessType(); + await response.data.Data.forEach((element) => { + BusinessTypesOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return BusinessTypesOptions; + } + async function loadOptionsSecondAccount() { + const response = await commonService.SecondAccount(); + await response.data.Data.forEach((element) => { + secondAccountOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return secondAccountOptions; + } + async function loadOptionsTransferTo() { + const response = await CommonService.Transfer(); + await response.data.Data.forEach((element) => { + TransferTooptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return TransferTooptions; + } + async function loadOptionsTransferFrom() { + const response = await CommonService.Transfer(); + await response.data.Data.forEach((element) => { + TransferFromoptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return TransferFromoptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + function checkboxChangeShared(event) { + setCheckedShared(event.target.checked); + } + async function loadOptionsCustomer() { + const response = await CommonService.Customer(); + await response.data.Data.forEach((element) => { + customerOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return customerOptions; + } + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsSupp() { + const response = await CommonService.Supplier(); + await response.data.Data.forEach((element) => { + supplierOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + async function loadOptionsProduct(search, loadedOptions, { page }) { + productOptions = []; + const response = await CommonService.Product(search, page); + await response.data.Data.forEach((element) => { + productOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + let hasMore = productOptions.length != 0; + return { + options: productOptions, + hasMore: hasMore, + additional: { + page: page + 1, + }, + }; + } + async function loadOptionsAdjustType() { + const response = await CommonService.AdjustmentType(); + await response.data.Data.forEach((element) => { + adjustmentTypeOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return adjustmentTypeOptions; + } + async function loadOptionsCompany() { + // const response = await CommonService.AdjustmentType(); + await response.data.Data.forEach((element) => { + companyOption.push({ + value: element.Id, + label: element.Title, + }); + }); + return companyOption; + } + async function loadOptionsPeriod() { + // const response = await CommonService.AdjustmentType(); + await response.data.Data.forEach((element) => { + periodOption.push({ + value: element.Id, + label: element.Title, + }); + }); + return periodOption; + } + async function loadOptionsOrderTaker() { + // const response = await CommonService.AdjustmentType(); + await response.data.Data.forEach((element) => { + orderTakerOption.push({ + value: element.Id, + label: element.Title, + }); + }); + return orderTakerOption; + } + + const handleOpen = (event) => { + event.preventDefault(); + setOpen(true); + }; + const handleDFSOpen = (event) => { + event.preventDefault(); + setDFSOpen(true); + }; + const handleSwbeOpen = (event) => { + event.preventDefault(); + setSwbeOpen(true); + }; + const handleStmOpen = (event) => { + event.preventDefault(); + setstmOpen(true); + }; + const handleStockTransferOpen = (event) => { + event.preventDefault(); + setstockTransferOpen(true); + }; + const handleOpenNewBrand = (event) => { + event.preventDefault(); + // setopenNewBrand(true); + }; + const handleInvoiceSummary = (event) => { + event.preventDefault(); + setInvoiceSummaryOpen(true); + }; + const handleInvoiceDetail = (event) => { + event.preventDefault(); + setInvoiceDetailOpen(true); + }; + const handleOpenBrandList = (event) => { + event.preventDefault(); + setopenBrandList(true); + }; + const handleByMonth = (event) => { + event.preventDefault(); + setByMonth(true); + }; + const handleByYear = (event) => { + event.preventDefault(); + setByYear(true); + }; + const handleByCustomer = (event) => { + event.preventDefault(); + setByCustomer(true); + }; + const handlePartySummary = (event) => { + event.preventDefault(); + setPartySummary(true); + }; + const handleIMSCust = (event) => { + event.preventDefault(); + setIMSCust(true); + }; + const handleOpenCategoryList = (event) => { + event.preventDefault(); + setopenCategoryList(true); + }; + const handleIMSCustSummary = (event) => { + event.preventDefault(); + setIMSCustSummary(true); + }; + const handleIMSChannel = (event) => { + event.preventDefault(); + setIMSChannel(true); + }; + const handleSALES = (event) => { + event.preventDefault(); + setSALES(true); + }; + const handleAllStockSALES = (event) => { + event.preventDefault(); + setAllStockSales(true); + }; + const handleSALESComparison = (event) => { + event.preventDefault(); + setSALESComparison(true); + }; + const handleSALESbyCustomer = (event) => { + event.preventDefault(); + setSALESbyCustomer(true); + }; + const handleCategoryListClose = () => setopenCategoryList(false); + const handleStockDays = (event) => { + event.preventDefault(); + setStockDays(true); + }; + + //Pricing + const handlePricingClose = () => setopenPricing(false); + + //Product list + const handleProductListClose = () => setopenProductList(false); + + //Master Product List + const handleMasterProductListClose = () => setopenMasterProductList(false); + + //Origins list + const handleOriginsListClose = () => setopenOriginsList(false); + + // Unit List + const handleUnitListClose = () => setopenUnitList(false); + + //brand list + const handleBrandListClose = () => setopenBrandList(false); + + //New Product + const handleNewProductClose = () => setopenNewProduct(false); + const handleBranchCategory = (event) => { + event.preventDefault(); + setBranchCategory(true); + }; + const handleBranchSummary = (event) => { + event.preventDefault(); + setBranchSummary(true); + }; + const handleKeySummary = (event) => { + event.preventDefault(); + setKeySummary(true); + }; + const handleKeyDetail = (event) => { + event.preventDefault(); + setKeyDetail(true); + }; + const handleBranchProduct = (event) => { + event.preventDefault(); + setBranchProduct(true); + }; + const handleOpenUnitList = (event) => { + event.preventDefault(); + setopenUnitList(true); + }; + const handleImsByCustomerAdmin = (event) => { + event.preventDefault(); + setImsByCustomerAdmin(true); + }; + const handleImsByCustomerSumAdmin = (event) => { + event.preventDefault(); + setImsByCustomerSumAdmin(true); + }; + const handleImsByCustomerChanAdmin = (event) => { + event.preventDefault(); + setImsByCustomerChanAdmin(true); + }; + const handleImsByProductAdmin = (event) => { + event.preventDefault(); + setImsByProductAdmin(true); + }; + const handleImsBySupplierAdmin = (event) => { + event.preventDefault(); + setImsBySupplierAdmin(true); + }; + + const handleImsByCustomerPnL = (event) => { + event.preventDefault(); + setImsByCustomerPnL(true); + }; + const handleImsByProductPnL = (event) => { + event.preventDefault(); + setImsByProductPnL(true); + }; + const handleImsByCustPnL = (event) => { + event.preventDefault(); + setImsByCustPnL(true); + }; + const handleKhyberByBranchPLS = (event) => { + event.preventDefault(); + setKhyberByBranchPLS(true); + }; + const handleStockValueByVendor = (event) => { + event.preventDefault(); + setStockValueByVendor(true); + }; + const handleStockValueByProduct = (event) => { + event.preventDefault(); + setStockValueByProduct(true); + }; + const handleCompaniesProfitWise = (event) => { + event.preventDefault(); + setCompaniesProfitWise(true); + }; + const handleMonthlyData = (event) => { + event.preventDefault(); + setMonthlyData(true); + }; + + const handleSRC = (event) => { + event.preventDefault(); + setSRC(true); + }; + + const handleCSPOpen = (event) => { + event.preventDefault(); + setCSPOpen(true); + }; + const handleABSOpen = (event) => { + event.preventDefault(); + setABSOpen(true); + }; + const handleProductTrackOpen = (event) => { + event.preventDefault(); + setProdOpen(true); + }; + const handleSIDOpen = (event) => { + event.preventDefault(); + setSIDOpen(true); + }; + const handleAdjustmentOpen = (event) => { + event.preventDefault(); + setAdjOpen(true); + }; + const handleAdjDetailOpen = (event) => { + event.preventDefault(); + setAdjDetailOpen(true); + }; + const handleDelNotesOpen = (event) => { + event.preventDefault(); + setDelNotesOpen(true); + }; + const handleDelNotesDetailOpen = (event) => { + event.preventDefault(); + setDelNotesDetailOpen(true); + }; + const handleGRNListOpen = (event) => { + event.preventDefault(); + setGRNListOpen(true); + }; + const handleGRNDetailOpen = (event) => { + event.preventDefault(); + setGRNDetailOpen(true); + }; + + function logChange(val) { + setOption(val); + } + function companyChange(val) { + setCompanyOption(val); + } + function periodChange(val) { + setPeriodOption(val); + } + function orderTakerChange(val) { + setOrderTakerOption(val); + } + function AccountChange(val) { + setOption(val); + } + function businessTypeChange(val) { + setOption(val); + } + function SecondAccountChange(val) { + secondAccountOption(val); + } + function radioGroupChange(event) { + setRadioGroupChange(event.target.value); + } + function checkboxChange(event) { + setChecked(event.target.checked); + } + function suppChange(val) { + setSupplierOption(val); + } + function originChange(val) { + setoriginOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function groupChange(val) { + setgroupByOption(val); + } + function directionChange(val) { + setdirectionOption(val); + } + function categoryChange(val) { + setcategoryOption(val); + } + function orderChange(val) { + setorderbyOption(val); + } + function productChange(val) { + setproductOption(val); + } + function adjTypeChange(val) { + setadjustTypeOption(val); + } + function transferToChange(val) { + setTransferToOption(val); + } + function transferFromChange(val) { + setTransferFromOption(val); + } + + // reports + const handleOpenDailyStatement = (event) => { + event.preventDefault(); + setOpenDailyStatement(true); + }; + + const handleOpenDailyCombinedStatement = (event) => { + event.preventDefault(); + setOpenDailyCombinedStatement(true); + }; + const handleOpenCustomerStatement = (event) => { + event.preventDefault(); + setopenCustomerStatement(true); + }; + + const handleOpenCustomerCombinedStatement = (event) => { + event.preventDefault(); + setopenCustomerCombinedStatement(true); + }; + const handleOpenWholeSaleInvoice = (event) => { + event.preventDefault(); + setopenWholeSaleInvoice(true); + }; + const handleOpenWholeSaleLedger = (event) => { + event.preventDefault(); + setopenWholeSaleLedger(true); + }; + const handleOpenWholeSaleSummary = (event) => { + event.preventDefault(); + setopenWholeSaleSummary(true); + }; + const handleOpenGeneralLedger = (event) => { + event.preventDefault(); + setopenGeneralLedger(true); + }; + const handleOpenBankCashSummary = (event) => { + event.preventDefault(); + setopenBankCashSummary(true); + }; + const handleOpenBankLedgerSummaryDetails = (event) => { + event.preventDefault(); + setopenBankLedgerSummaryDetails(true); + }; + + // const handleOpenPurchases = (event) => { + // event.preventDefault(); + // setPurchasesOpen(true); + // }; + // const handleOpenNewCategory = (event) => { + // event.preventDefault(); + // setNewCategoryOpen(true); + // }; + // const handleOpenNewBrand = (event) => { + // event.preventDefault(); + // setNewBrandOpen(true); + // }; + // const handleOpenNewUnit = (event) => { + // event.preventDefault(); + // setNewUnitOpen(true); + // }; + // const handleOpenNewOrigin = (event) => { + // event.preventDefault(); + // setNewUnitOpen(true); + // }; + const handleOpenGenerateInvoices = (event) => { + event.preventDefault(); + setGenerateInvoicesOpen(true); + }; + const handleOpenNewPurchaseGRN = (event) => { + event.preventDefault(); + setNewPurchsaeGRNOpen(true); + }; + const handleOpenNewStockTransferGRN = (event) => { + event.preventDefault(); + setNewStockTransferGRNOpen(true); + }; + + const handleClose = () => setOpen(false); + const handleDFSClose = () => setDFSOpen(false); + const handleSwbeClose = () => setSwbeOpen(false); + const handleCSPClose = () => setCSPOpen(false); + const handleABSClose = () => setABSOpen(false); + const handleProdClose = () => setProdOpen(false); + const handleStmClose = () => setstmOpen(false); + const handleStockTransferClose = () => setstockTransferOpen(false); + const handleInvoiceSummaryClose = () => setInvoiceSummaryOpen(false); + const handleInvoiceDetailClose = () => setInvoiceDetailOpen(false); + const handleByMonthClose = () => setByMonth(false); + const handleByYearClose = () => setByYear(false); + const handleByCustomerClose = () => setByCustomer(false); + const handlePartySummaryClose = () => setPartySummary(false); + const handleSRCClose = () => setSRC(false); + const handleIMSCustClose = () => setIMSCust(false); + const handleIMSCustSummaryClose = () => setIMSCustSummary(false); + const handleSALESClose = () => setSALES(false); + const handleAllStockSalesClose = () => setAllStockSales(false); + const handleSALESComparisonClose = () => setSALESComparison(false); + const handleSALESbyCustomerClose = () => setSALESbyCustomer(false); + const handleStockDaysClose = () => setStockDays(false); + const handleBranchCategoryClose = () => setBranchCategory(false); + const handleBranchSummaryClose = () => setBranchSummary(false); + const handleKeySummaryClose = () => setKeySummary(false); + const handleKeyDetailClose = () => setKeyDetail(false); + const handleBranchProductClose = () => setBranchProduct(false); + const handleImsByCustomerAdminClose = () => setImsByCustomerAdmin(false); + const handleImsByCustomerSumAdminClose = () => + setImsByCustomerSumAdmin(false); + const handleImsByCustomerChanAdminClose = () => + setImsByCustomerChanAdmin(false); + const handleImsByProductAdminClose = () => setImsByProductAdmin(false); + const handleImsBySupplierAdminClose = () => setImsBySupplierAdmin(false); + const handleImsByCustomerPnLClose = () => setImsByCustomerPnL(false); + const handleImsByProductPnLClose = () => setImsByProductPnL(false); + const handleImsByCustPnLClose = () => setImsByCustPnL(false); + const handleKhyberByBranchPLSClose = () => setKhyberByBranchPLS(false); + const handleStockValueByVendorClose = () => setStockValueByVendor(false); + const handleStockValueByProductClose = () => setStockValueByProduct(false); + const handleCompaniesProfitWiseClose = () => setCompaniesProfitWise(false); + const handleMonthlyDataClose = () => setMonthlyData(false); + + const handleDailyStatementClose = () => setOpenDailyStatement(false); + const handleDailyCombinedStatementClose = () => + setOpenDailyCombinedStatement(false); + const handleCustomerStatementClose = () => setopenCustomerStatement(false); + const handleCustomerCombinedStatementClose = () => + setopenCustomerCombinedStatement(false); + const handleWholeSaleInvoiceClose = () => setopenWholeSaleInvoice(false); + const handleWholeSaleLedgerClose = () => setopenWholeSaleLedger(false); + const handleWholeSaleSummaryClose = () => setopenWholeSaleSummary(false); + const handleGeneralLedgerClose = () => setopenGeneralLedger(false); + const handleBankCashSummaryClose = () => setopenBankCashSummary(false); + const handleBankLedgerSummaryDetailsClose = () => + setopenBankLedgerSummaryDetails(false); + + const handleIMSChannelClose = () => setIMSChannel(false); + const handleSIDClose = () => setSIDOpen(false); + const handleAdjClose = () => setAdjOpen(false); + const handleAdjDetailClose = () => setAdjDetailOpen(false); + const handleDelNotesClose = () => setDelNotesOpen(false); + const handleDelNotesDetailClose = () => setDelNotesDetailOpen(false); + const handleGRNListClose = () => setGRNListOpen(false); + const handleGRNDetailClose = () => setGRNDetailOpen(false); + const handlePurchasesClose = () => setPurchasesOpen(false); + const handleNewCategoryClose = () => setNewCategoryOpen(false); + const handleNewBrandClose = () => setNewBrandOpen(false); + const handleNewUnitClose = () => setopenNewUnit(false); + const handleNewOriginClose = () => setNewOriginOpen(false); + const handleGenerateInvoicesClose = () => setGenerateInvoicesOpen(false); + const handleNewPurchaseGRNClose = () => setNewPurchsaeGRNOpen(false); + const handleNewStockTransferGRNClose = () => + setNewStockTransferGRNOpen(false); + const handleNewDeliveryNoteClose = () => setNewDeliveryNoteOpen(false); + const handleCreateStockCoutingClose = () => setCreateStockCountingOpen(false); + + const handleRedirect = () => { + // console.log(option.value, format(selectedDate, 'MM/dd/yyyy')) + history.push( + `/stock/opening-stock?label=${option.label}&value=${ + option.value + }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + setOpen(false); + }; + const handleRedirects = () => { + // console.log(option.value, format(selectedDate, 'MM/dd/yyyy')) + history.push( + `/accounts/dailystatement?label=${option.label}&value=${ + option.value + }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + setTestOpen(false); + }; + + const handleDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleSwbeRedirect = () => { + var minVal = document.getElementById("minval"); + var maxVal = document.getElementById("maxval"); + // console.log(option, brandOption, supplierOption, categoryOption, + // originOption, + // groupByOption, + // orderbyOption, + // directionOption, + // selectedDate, selectedFromDate, selectedToDate, minVal, maxVal); + history.push( + `/stock/swbe?loc=${option.value}&supp=${supplierOption.value}&brand=${ + brandOption.value + }&category=${categoryOption.value}&origin=${originOption.value}&group=${ + groupByOption.value + }&order=${orderbyOption.value}&dir=${ + directionOption.value + }&selectedDate=${format( + selectedDate, + "MM/dd/yyyy" + )}&selectedFrom=${format( + selectedFromDate, + "yyyy-MM-dd" + )}&selectedTo=${format(selectedToDate, "yyyy-MM-dd")}&min=${ + minVal.value + }&max=${maxVal.value}` + ); + setSwbeOpen(false); + }; + + const handleSwbeDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleCSPRedirect = () => { + var minVal = document.getElementById("minval"); + var maxVal = document.getElementById("maxval"); + // console.log(option, brandOption, supplierOption, categoryOption, + // originOption, + // groupByOption, + // orderbyOption, + // directionOption, + // selectedDate, selectedFromDate, selectedToDate, minVal, maxVal); + history.push( + `/stock/csp?loc=${option.value}&supp=${supplierOption.value}&brand=${brandOption.value}&category=${categoryOption.value}&origin=${originOption.value}&min=${minVal.value}&max=${maxVal.value}` + ); + setCSPOpen(false); + }; + + const handleCSPDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleABSRedirect = () => { + history.push( + `/stock/abs?supp=${supplierOption.value}&brand=${ + brandOption.value + }&category=${categoryOption.value}&origin=${originOption.value}&group=${ + groupByOption.value + }&selectedDate=${format(selectedDate, "MM/dd/yyyy")}` + ); + setABSOpen(false); + }; + + const handleABSDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + const handleProdRedirect = () => { + history.push( + `/stock/product-track?loc=${option.value}&prod=${ + productOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + setProdOpen(false); + }; + const handleStmRedirect = () => { + history.push( + `/stock/stock-transfer-mismatch?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + setstmOpen(false); + }; + const handleStockTransferRedirect = () => { + history.push( + `/stock/stock-transfer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&fromBranchId=${ + transferFromOption.value + }&toBranchId=${transferToOption.value}` + ); + setstockTransferOpen(false); + }; + const handleInvoiceSummaryRedirect = () => { + history.push( + `/salesindex/invoice-summary?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setInvoiceSummaryOpen(false); + }; + const handleInvoiceDetailRedirect = () => { + history.push( + `/salesindex/invoice-detail?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setInvoiceDetailOpen(false); + }; + const handleByMonthRedirect = () => { + history.push( + `/salessummary/bymonth?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setByMonth(false); + }; + const handleByYearRedirect = () => { + history.push( + `/salessummary/byyear?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + setByYear(false); + }; + const handleByCustomerRedirect = () => { + history.push( + `/salessummary/bycustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&customerId=${ + option.value + }&radioGroup=${radioGroup}` + ); + handleByCustomerClose(); + }; + const handlePartySummaryRedirect = () => { + history.push( + `/salessummary/partysummary?date=${format(selectedDate, "MM/dd/yyyy")}` + ); + handlePartySummaryClose(); + }; + + const handleProdDownload = () => { + const user = JSON.parse(localStorage.getItem("user")); + window.open( + `http://145.239.254.41:8090/analysis/stock/openingstockdownload?Auth-Token=${ + user.Token + }&criteria={"openingDate":"${format( + selectedDate, + "MM/dd/yyyy" + )}","locationId":${option.value}}` + ); + }; + + const handleSIDRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/transferdetail?ref=${ref.value}`); + handleSIDClose(); + }; + + const handleAdjRedirect = () => { + history.push( + `/stock/adjustments?loc=${option.value}&type=${ + adjustTypeOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleToDateChange(); + }; + const handleSRCRedirect = () => { + history.push( + `/general/salesratebycustomer?cust=${option.value}&supp=${ + supplierOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleSRCClose(); + }; + const handleIMSCustRedirect = () => { + history.push( + `/ims/imsbycustomer?cust=${option.value}&supp=${ + supplierOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleIMSCustClose(); + }; + const handleIMSCustSummaryRedirect = () => { + history.push( + `/ims/imsbycustomersummary?locationId=${ + option.value + }&monthseperated=${checked}&from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + handleIMSCustSummaryClose(); + }; + const handleIMSChannelRedirect = () => { + history.push( + `/ims/imsbychannel?locationId=4&supp=${ + supplierOption.value + }&from=${format(selectedFromDate, "MM/dd/yyyy")}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}` + ); + handleIMSChannelClose(); + }; + const handleAdjDetailRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/adjustmentdetail?ref=${ref.value}`); + handleAdjDetailClose(); + }; + const handleDelNotesRedirect = () => { + history.push( + `/stock/deliverynotes?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + setDelNotesOpen(false); + }; + const handleDelNotesDetailRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/deliverynotedetail?ref=${ref.value}`); + setDelNotesDetailOpen(false); + }; + const handleGRNRedirect = () => { + history.push( + `/stock/goodsreceivednotes?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + handleGRNListClose(); + }; + const handleGRNDetailRedirect = () => { + var ref = document.getElementById("ref"); + history.push(`/stock/goodsreceivednotedetail?ref=${ref.value}`); + handleGRNDetailClose(); + }; + const handleOpenNewUnit = (event) => { + event.preventDefault(); + setopenNewUnit(true); + }; + const handleImsBySupplierAdminRedirect = () => { + history.push( + `/adminsales/imsbysupplier?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format( + selectedToDate, + "MM/dd/yyyy" + )}&radioGroup=${radioGroup}&supp=${supplierOption.value}` + ); + handleImsBySupplierAdminClose(); + }; + const handleImsByProductAdminRedirect = () => { + history.push( + `/adminsales/imsbyproduct?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleImsByProductAdminClose(); + }; + const handleImsByCustCHANAdminRedirect = () => { + history.push( + `/adminsales/imsbycustomerbychannel?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerChanAdminClose(); + }; + const handleImsByCustSUMAdminRedirect = () => { + history.push( + `/adminsales/imsbycustomersummary?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerSumAdminClose(); + }; + const handleImsByCustAdminRedirect = () => { + history.push( + `/adminsales/imsbycustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerAdminClose(); + }; + + const handleBranchCategoryRedirect = () => { + history.push( + `/adminsales/branchandbrandcategory?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleBranchCategoryClose(); + }; + const handleBranchSummaryRedirect = () => { + history.push( + `/adminsales/branchsummary?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleBranchSummaryClose(); + }; + const handleKeySummaryRedirect = () => { + history.push( + `/adminsales/keysummary?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleKeySummaryClose(); + }; + const handleKeyDetailRedirect = () => { + history.push( + `/adminsales/keydetail?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleKeyDetailClose(); + }; + const handleBranchProductRedirect = () => { + history.push( + `/adminsales/branchproduct?locationId=${option.value}&supp=${supplierOption.value}` + ); + handleBranchProductClose(); + }; + + const handleSalesRedirect = () => { + history.push( + `/adminsales/sales?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + handleSALESClose(); + }; + const handleSalesComparisonRedirect = () => { + history.push( + `/adminsales/salescomparison?from=${format( + selectedFromDate, + "yyyy-MM" + )}&to=${format(selectedToDate, "yyyy-MM")}&secondfrom=${format( + selectedSecondFromDate, + "yyyy-MM" + )}&secondto=${format(selectedSecondToDate, "yyyy-MM")}` + ); + handleSALESComparisonClose(); + }; + const handleOpenOriginsList = (event) => { + event.preventDefault(); + setopenOriginsList(true); + }; + const handleOriginsListRedirect = () => { + history.push(`/inventory/origins-list`); + handleOriginsListClose(); + }; + const handleSalesByCustomersRedirect = () => { + history.push( + `/adminsales/salecustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }&radioGroup=${radioGroup}&customerId=${option.value}` + ); + handleSALESbyCustomerClose(); + }; + const handleAllStockSalesRedirect = () => { + history.push( + `/adminsales/allstocksales?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleAllStockSalesClose(); + }; + const handleStockDaysRedirect = () => { + history.push( + `/adminsales/stockdays?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleStockDaysClose(); + }; + + const handleImsByCustomerPnLRedirect = () => { + history.push( + `/profitloss/imsbycustomer?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${ + option.value + }&supp=${supplierOption.value}` + ); + handleImsByCustomerPnLClose(); + }; + const handleImsByProductPnLRedirect = () => { + history.push( + `/profitloss/imsbyproduct?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&supp=${ + supplierOption.value + }` + ); + handleImsByProductPnLClose(); + }; + const handleImsByCustPnLRedirect = () => { + history.push( + `/profitloss/imsbycustpnl?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${option.value}` + ); + handleImsByCustPnLClose(); + }; + const handleKhyberByBranchPLSRedirect = () => { + history.push( + `/profitloss/kbplstotal?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&radioGroup=${radioGroup}` + ); + handleKhyberByBranchPLSClose(); + }; + const handleStockValueByVendorRedirect = () => { + history.push( + `/profitloss/svbyvendor?to=${format( + selectedToDate, + "MM/dd/yyyy" + )}&locationId=${option.value}` + ); + handleStockValueByVendorClose(); + }; + const handleStockValueByProductRedirect = () => { + history.push( + `/profitloss/svbyproductlocation?to=${format( + selectedToDate, + "MM/dd/yyyy" + )}&vendor=${supplierOption.value}` + ); + handleStockValueByProductClose(); + }; + const handleUnitListRedirect = () => { + history.push(`/inventory/unit-list`); + handleUnitListClose(); + }; + const handleCompaniesProfitWiseRedirect = () => { + history.push( + `/profitloss/companiesprofitwise?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&vendor=${ + supplierOption.value + }` + ); + handleCompaniesProfitWiseClose(); + }; + + const handleMonthlyDataRedirect = () => { + history.push( + `/profitloss/monthlydata?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&vendor=${ + supplierOption.value + }` + ); + handleMonthlyDataClose(); + }; + const handleBrandListRedirect = () => { + history.push(`/inventory/brand-list?`); + handleBrandListClose(); + }; + // reports + const handleDailyStatementRedirect = () => { + history.push( + `analysis/accounts/DailyCombinedStatement?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&vendor=${ + supplierOption.value + }` + ); + handleDailyStatementClose(); + }; + const handleDailyCombinedStatementRedirect = () => { + history.push( + `/accounts/dailycombinedstatement?selectedDate=${format( + selectedDate, + "MM/dd/yyyy" + )}` + // ?from=${ + // option.value + // }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + handleDailyCombinedStatementClose(); + }; + + const handleCustomerStatementRedirect = () => { + history.push( + `/accounts/customerstatement?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }` + ); + handleCustomerStatementClose(); + }; + + const handleCustomerCombinedStatementRedirect = () => { + history.push( + `/accounts/customerstatementcombined?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&businesstype=${ + BusinessTypesOptions.value + }` + ); + handleCustomerCombinedStatementClose(); + }; + const handleWholeSaleInvoiceRedirect = () => { + history.push( + `/accounts/wholesaleinvoice?label=${option.label}&value=${ + option.value + }&selectedData=${format(selectedDate, "MM/dd/yyyy")}` + ); + handleWholeSaleInvoiceClose(); + }; + const handleWholeSaleLedgerRedirect = () => { + history.push( + `/accounts/wholesaleledger?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}` + ); + + handleWholeSaleLedgerClose(); + }; + const handleWholeSaleSummaryRedirect = () => { + history.push( + `/accounts/wholesalesummaryledger?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&locationId=${option.value}` + ); + + handleWholeSaleSummaryClose(); + }; + const handleGeneralLedgerRedirect = () => { + history.push( + `/accounts/generalledger?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleGeneralLedgerClose(); + }; + const handleBankCashSummaryRedirect = () => { + history.push( + `/accounts/BankCashBanksummary?selectedDate=${format( + selectedDate, + "MM/dd/yyyy" + )}` + ); + handleBankCashSummaryClose(); + }; + const handleBankLedgerSummaryDetailsCRedirect = () => { + history.push( + `/accounts/bankledgersummarydetails?from=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&to=${format(selectedToDate, "MM/dd/yyyy")}&account=${ + accountOptions.value + }&secondaccount=${secondAccountOption.value} + }` + ); + handleBankLedgerSummaryDetailsClose(); + }; + const handleCategoryListRedirect = () => { + history.push(`/inventory/category-list`); + handleCategoryListClose(); + }; + + const handleDFSRedirect = () => { + history.push( + `/productivity/dfs?selectedFromData=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&selectedtoData=${format( + selectedToDate, + "MM/dd/yyyy" + )}&summary=${checked}` + ); + setDFSOpen(false); + }; + + //purchases + const handlePurchasesRedirect = () => { + history.push( + `/productivity/dfs?selectedFromData=${format( + selectedFromDate, + "MM/dd/yyyy" + )}&selectedtoData=${format( + selectedToDate, + "MM/dd/yyyy" + )}&summary=${checked}` + ); + setPurchasesOpen(false); + }; + + return ( +
+ + + {SidebarData.map((item, index) => { + const depthlebel = 0; + return ; + })} + + + {/* new area */} + + + + + + + + + + + + + + + + + + {/* New Location */} + + + + + +
+ +
+
+
+ + + +
+ +
+
+
+ + + +
+ +
+ +
+ +
+
+
+ + + + + +
+ +
+
+
+ + {/* New Employee */} + + + + + + + + + + + + + + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ {/* */} + +
+
+
+ + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + + +
+ +
+
+ +
+ +
+
+
+ + + +
+ +
+
+
+ + + +
+ +
+
+ + + + + + +
+ + + + + + Expiry + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + + + + + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+ +
+ +
+
+
+ +
+ {/* */} + +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ + + +
+ {/* */} + +
+
+
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ +
+ +
+
+
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+
+ + + + + } + label="Date" + /> + + + } + label="Customer" + /> + + + + +
+ +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + +
+ +
+
+
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + +
+ +
+
+
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + +
+ + } + label="Month Separated" + /> +
+
+
+
+ {/* */} + +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + {/* + +
+ +
+
+
*/} + + +
+ +
+
+
+
+ {/* */} + +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + {/* + +
+ + +
+
+
+ + + +
+ + +
+
+
*/} + + {/* Had to remove these afterwards */} + + + +
+ +
+
+
+ + + +
+ +
+
+
+ +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + + + + + handleSecondFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleSecondToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + +
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ + +
+ +
+
+
+ + +
+ + + + + + + + } + label="Detail" + /> + + + } + label="Summary" + /> + + + + +
+
+
+
+ +
+
+
+ + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + +
+ +
+
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ + + +
+ + + + + + + + } + label="IMS BY SUPPLIER PRICE" + /> + + + } + label="IMS BY MARKET SOLD PRICE" + /> + + + + +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ + + + + + + + } + label="Summary" + /> + + + } + label="Detail" + /> + + + } + label="Summary & Detail" + /> + + + + +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + + + +
+ +
+
+
+ +
+ +
+
+
+ + {/* Monthly Data */} + + + + + handleDateChange(date)} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ +
+
+
+ + {/* Reports */} + {/* Daily Statements */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ +
+ +
+
+ +
+
+
+ + {/* Daily Combined Statement */} + + + + handleDateChange(date)} + format="MM/dd/yyyy" + /> + + +
+
+ + {/* */} + +
+
+ +
+
+
+ + {/* Customer Statement */} + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ +
+
+
+ + {/* Customer Combined Statement */} + + + {/* + Text in a modal + + + Duis mollis, est non commodo luctus, nisi erat porttitor ligula. + */} + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+
+ {/* */} + +
+
+
+ + {/* WholeSale Invoice */} + + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ +
+
+ +
+
+
+ + {/* WholeSale Ledger */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ +
+ +
+
+
+ + {/* WholeSale Summary */} + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + + +
+
+ +
+
+
+ + {/* General Ledger */} + + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ +
+ +
+
+ +
+
+
+ + {/* Bank Cash Summary */} + + + + handleDateChange(date)} + format="MM/dd/yyyy" + /> + + +
+
+ +
+
+
+ + {/* Bank Ledger Summary Details */} + + + + handleFromDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + +
+
+ + +
+ +
+ + } + label="Summary" + /> + +
+
+ +
+
+
+ + {/* New Category */} + + + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* New Brand */} + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* New Unit */} + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* New Origin */} + + + + + + + + + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ + {/* purchases */} + + +
+ + + + + + + + + +
+
+ + + + + + + + + +
+ +
+ +
+
+ + } + label="Sale Order" + /> + +
+ {/* */} + +
+ +
+
+ +
+ +
+
+ {/*
*/} +
+
+ + {/* Generate Invoices */} + + +
+ + + + + +
+
+ + + + + +
+ +
+ +
+
+ + } + label="Sale Order" + /> + +
+ {/* */} + +
+ +
+
+ +
+ +
+
+ {/*
*/} +
+
+ + {/* new purchase GRN */} + + +
+ + + + +
+ +
+
+
+
+
+ + +
+ + + + +
+ +
+
+
+
+
+ + {/* New Deliver Note */} + + + +
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + + +
+
+
+ + {/* Create Stock Counting */} + + + + +
+ +
+
+ +
+ +
+
+
+
+ + +
+ + handleToDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + +
+
+ + + +
+
+
+ + + + + +
+
+
+ {/* Category List */} + + +
+
+ +
+
+
+ {/* Unit List */} + + +
+ +
+
+
+ {/* Origins List */} + + +
+ +
+
+
+ {/* New Brand */} + + + + setTitle(e.target.value)} + labelText="Title" + id="ref" + formControlProps={{ + fullWidth: true, + }} + /> + + + + setDescription(e.target.value)} + labelText="Description" + id="ref" + formControlProps={{ + fullWidth: true, + }} + /> + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+ {/* Brand List */} + + +
+
+ +
+
+
+ {/* New Unit */} + + + + setTitle(e.target.value)} + labelText="Title" + id="ref" + formControlProps={{ + fullWidth: true, + }} + /> + + + + setDescription(e.target.value)} + labelText="Description" + id="ref" + formControlProps={{ + fullWidth: true, + }} + /> + +
+
+ + + } + label="Active" + /> + + } + label="Shared" + /> + +
+
+ +
+
+
+
+ ); +}; + +export default Trash; diff --git a/src/components/Snackbar/Snackbar.js b/src/components/Snackbar/Snackbar.js new file mode 100644 index 0000000..b0fe7ba --- /dev/null +++ b/src/components/Snackbar/Snackbar.js @@ -0,0 +1,74 @@ +import React from "react"; +import classNames from "classnames"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Snack from "@material-ui/core/Snackbar"; +import IconButton from "@material-ui/core/IconButton"; +// @material-ui/icons +import Close from "@material-ui/icons/Close"; +// core components +import styles from "assets/jss/material-dashboard-react/components/snackbarContentStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Snackbar(props) { + const classes = useStyles(); + const { message, color, close, icon, place, open, rtlActive } = props; + var action = []; + const messageClasses = classNames({ + [classes.iconMessage]: icon !== undefined, + }); + if (close !== undefined) { + action = [ + props.closeNotification()} + > + + , + ]; + } + return ( + + {icon !== undefined ? : null} + {message} +
+ } + action={action} + ContentProps={{ + classes: { + root: classes.root + " " + classes[color], + message: classes.message, + action: classNames({ [classes.actionRTL]: rtlActive }), + }, + }} + /> + ); +} + +Snackbar.propTypes = { + message: PropTypes.node.isRequired, + color: PropTypes.oneOf(["info", "success", "warning", "danger", "primary"]), + close: PropTypes.bool, + icon: PropTypes.object, + place: PropTypes.oneOf(["tl", "tr", "tc", "br", "bl", "bc"]), + open: PropTypes.bool, + rtlActive: PropTypes.bool, + closeNotification: PropTypes.func, +}; diff --git a/src/components/Snackbar/SnackbarContent.js b/src/components/Snackbar/SnackbarContent.js new file mode 100644 index 0000000..944884e --- /dev/null +++ b/src/components/Snackbar/SnackbarContent.js @@ -0,0 +1,58 @@ +import React from "react"; +import PropTypes from "prop-types"; +import classNames from "classnames"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Snack from "@material-ui/core/SnackbarContent"; +import IconButton from "@material-ui/core/IconButton"; +// @material-ui/icons +import Close from "@material-ui/icons/Close"; +// core components +import styles from "assets/jss/material-dashboard-react/components/snackbarContentStyle.js"; + +const useStyles = makeStyles(styles); + +export default function SnackbarContent(props) { + const classes = useStyles(); + const { message, color, close, icon, rtlActive } = props; + var action = []; + const messageClasses = classNames({ + [classes.iconMessage]: icon !== undefined, + }); + if (close !== undefined) { + action = [ + + + , + ]; + } + return ( + + {icon !== undefined ? : null} + {message} +
+ } + classes={{ + root: classes.root + " " + classes[color], + message: classes.message, + action: classNames({ [classes.actionRTL]: rtlActive }), + }} + action={action} + /> + ); +} + +SnackbarContent.propTypes = { + message: PropTypes.node.isRequired, + color: PropTypes.oneOf(["info", "success", "warning", "danger", "primary"]), + close: PropTypes.bool, + icon: PropTypes.object, + rtlActive: PropTypes.bool, +}; diff --git a/src/components/Table/Table.js b/src/components/Table/Table.js new file mode 100644 index 0000000..fa5f416 --- /dev/null +++ b/src/components/Table/Table.js @@ -0,0 +1,86 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Table from "@material-ui/core/Table"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +// core components +import styles from "assets/jss/material-dashboard-react/components/tableStyle.js"; + +const useStyles = makeStyles(styles); + +export default function CustomTable(props) { + const classes = useStyles(); + const { tableHead, tableData, tableHeaderColor } = props; + return ( +
+ + {tableHead !== undefined ? ( + + + {tableHead.map((prop, key) => { + return ( + + {prop} + + ); + })} + + + ) : null} + + {tableData.map((prop, key) => { + return ( + + {prop.map((prop, key) => { + return ( + + {prop} + + ); + })} + + ); + })} + + {(function (rows, i) { + for (i; i < tableHead.length; i++) { + + if (i == tableHead.length - 1) { + rows.push(Total) + } else { + rows.push() + } + } + return rows; + })([], 0)} + + +
+
+ ); +} + +CustomTable.defaultProps = { + tableHeaderColor: "gray", +}; + +CustomTable.propTypes = { + tableHeaderColor: PropTypes.oneOf([ + "warning", + "primary", + "danger", + "success", + "info", + "rose", + "gray", + ]), + tableHead: PropTypes.arrayOf(PropTypes.string), + tableData: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)), +}; diff --git a/src/components/Tasks/Tasks.js b/src/components/Tasks/Tasks.js new file mode 100644 index 0000000..af78901 --- /dev/null +++ b/src/components/Tasks/Tasks.js @@ -0,0 +1,106 @@ +import React from "react"; +import PropTypes from "prop-types"; +import classnames from "classnames"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Checkbox from "@material-ui/core/Checkbox"; +import Tooltip from "@material-ui/core/Tooltip"; +import IconButton from "@material-ui/core/IconButton"; +import Table from "@material-ui/core/Table"; +import TableRow from "@material-ui/core/TableRow"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +// @material-ui/icons +import Edit from "@material-ui/icons/Edit"; +import Close from "@material-ui/icons/Close"; +import Check from "@material-ui/icons/Check"; +// core components +import styles from "assets/jss/material-dashboard-react/components/tasksStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Tasks(props) { + const classes = useStyles(); + const [checked, setChecked] = React.useState([...props.checkedIndexes]); + const handleToggle = (value) => { + const currentIndex = checked.indexOf(value); + const newChecked = [...checked]; + if (currentIndex === -1) { + newChecked.push(value); + } else { + newChecked.splice(currentIndex, 1); + } + setChecked(newChecked); + }; + const { tasksIndexes, tasks, rtlActive } = props; + const tableCellClasses = classnames(classes.tableCell, { + [classes.tableCellRTL]: rtlActive, + }); + return ( + + + {tasksIndexes.map((value) => ( + + + handleToggle(value)} + checkedIcon={} + icon={} + classes={{ + checked: classes.checked, + root: classes.root, + }} + /> + + {tasks[value]} + + + + + + + + + + + + + + ))} + +
+ ); +} + +Tasks.propTypes = { + tasksIndexes: PropTypes.arrayOf(PropTypes.number), + tasks: PropTypes.arrayOf(PropTypes.node), + rtlActive: PropTypes.bool, + checkedIndexes: PropTypes.array, +}; diff --git a/src/components/Typography/Danger.js b/src/components/Typography/Danger.js new file mode 100644 index 0000000..61bb44a --- /dev/null +++ b/src/components/Typography/Danger.js @@ -0,0 +1,22 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Danger(props) { + const classes = useStyles(); + const { children } = props; + return ( +
+ {children} +
+ ); +} + +Danger.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Typography/Info.js b/src/components/Typography/Info.js new file mode 100644 index 0000000..633e3f5 --- /dev/null +++ b/src/components/Typography/Info.js @@ -0,0 +1,22 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Info(props) { + const classes = useStyles(); + const { children } = props; + return ( +
+ {children} +
+ ); +} + +Info.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Typography/Muted.js b/src/components/Typography/Muted.js new file mode 100644 index 0000000..e817c86 --- /dev/null +++ b/src/components/Typography/Muted.js @@ -0,0 +1,22 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Muted(props) { + const classes = useStyles(); + const { children } = props; + return ( +
+ {children} +
+ ); +} + +Muted.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Typography/Primary.js b/src/components/Typography/Primary.js new file mode 100644 index 0000000..cd73db4 --- /dev/null +++ b/src/components/Typography/Primary.js @@ -0,0 +1,22 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Primary(props) { + const classes = useStyles(); + const { children } = props; + return ( +
+ {children} +
+ ); +} + +Primary.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Typography/Quote.js b/src/components/Typography/Quote.js new file mode 100644 index 0000000..72acd8b --- /dev/null +++ b/src/components/Typography/Quote.js @@ -0,0 +1,24 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Quote(props) { + const classes = useStyles(); + const { text, author } = props; + return ( +
+

{text}

+ {author} +
+ ); +} + +Quote.propTypes = { + text: PropTypes.node, + author: PropTypes.node, +}; diff --git a/src/components/Typography/Success.js b/src/components/Typography/Success.js new file mode 100644 index 0000000..959a6b3 --- /dev/null +++ b/src/components/Typography/Success.js @@ -0,0 +1,22 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Success(props) { + const classes = useStyles(); + const { children } = props; + return ( +
+ {children} +
+ ); +} + +Success.propTypes = { + children: PropTypes.node, +}; diff --git a/src/components/Typography/Warning.js b/src/components/Typography/Warning.js new file mode 100644 index 0000000..28e8e1b --- /dev/null +++ b/src/components/Typography/Warning.js @@ -0,0 +1,22 @@ +import React from "react"; +import PropTypes from "prop-types"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import styles from "assets/jss/material-dashboard-react/components/typographyStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Warning(props) { + const classes = useStyles(); + const { children } = props; + return ( +
+ {children} +
+ ); +} + +Warning.propTypes = { + children: PropTypes.node, +}; diff --git a/src/helpers/history.js b/src/helpers/history.js new file mode 100644 index 0000000..7001cee --- /dev/null +++ b/src/helpers/history.js @@ -0,0 +1,3 @@ +import { createBrowserHistory } from "history"; + +export const history = createBrowserHistory(); diff --git a/src/hooks/index.js b/src/hooks/index.js new file mode 100644 index 0000000..5f1dc7b --- /dev/null +++ b/src/hooks/index.js @@ -0,0 +1 @@ +export * from "./useRouteName"; diff --git a/src/hooks/useRouteName.js b/src/hooks/useRouteName.js new file mode 100644 index 0000000..188cb16 --- /dev/null +++ b/src/hooks/useRouteName.js @@ -0,0 +1,21 @@ +import routesDash from "routesDash"; +import routesAnalytics from "routesAnalytics"; + +export const useRouteName = () => { + let name = ""; + routesDash.forEach((route) => { + if (window.location.href.indexOf(route.layout + route.path) !== -1) { + name = routesDash.rtlActive ? route.rtlName : route.name; + } + }); + return name; +}; +export const useRouteAnalyticsName = () => { + let name = ""; + routesAnalytics.forEach((route) => { + if (window.location.href.indexOf(route.layout + route.path) !== -1) { + name = routesAnalytics.rtlActive ? route.rtlName : route.name; + } + }); + return name; +}; diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..f31e921 --- /dev/null +++ b/src/index.js @@ -0,0 +1,76 @@ +/*! + +========================================================= +* Material Dashboard React - v1.10.0 +========================================================= + +* Product Page: https://www.creative-tim.com/product/material-dashboard-react +* Copyright 2021 Creative Tim (https://www.creative-tim.com) +* Licensed under MIT (https://github.com/creativetimofficial/material-dashboard-react/blob/master/LICENSE.md) + +* Coded by Creative Tim + +========================================================= + +* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +*/ +import React from "react"; +import ReactDOM from "react-dom"; +import { Provider } from "react-redux"; +import store from "./store"; +import { BrowserRouter, Route, Switch, Redirect } from "react-router-dom"; + +// core components +import Admin from "layouts/Admin.js"; +import Analytics from "layouts/Analytics.js"; +import Inventory from "layouts/Inventory.js"; +import Catalog from "layouts/Catalog.js"; +import RTL from "layouts/RTL.js"; +import Dashboard from "layouts/Dashboard.js"; +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; +import SalesIndex from "layouts/SalesIndex.js"; +import SalesSummary from "layouts/SalesSummary.js"; +import General from "layouts/General.js"; +import ImsByCustomer from "layouts/ImsByCustomer.js"; +import Productivity from "layouts/Productivity.js"; +import Purchases from "layouts/Purchases.js"; +import AdminSales from "layouts/adminSales.js"; +import ProfitLoss from "layouts/profitLoss.js"; +import Accounts from "layouts/Accounts.js"; +import LoginPage from "./views/Login/LoginPage.js"; +import "assets/css/material-dashboard-react.css?v=1.10.0"; +import Trash from "components/Sidebar/Trash"; + +ReactDOM.render( + + + {JSON.parse(localStorage.getItem("user")) && } + + + + + + + + + + + + + + + {/* Inventory */} + + + + {/* */} + + + + + + , + document.getElementById("root") +); diff --git a/src/layouts/Account.js b/src/layouts/Account.js new file mode 100644 index 0000000..20bfcc7 --- /dev/null +++ b/src/layouts/Account.js @@ -0,0 +1,134 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesAccount from "routesAccount"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesAccount.map((prop, key) => { + if (prop.layout === "/account") { + return ( + + ); + } + return null; + })} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + const classes = useStyles(); + const mainPanel = React.createRef(); + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} +
+
+ ); +} diff --git a/src/layouts/Accounts.js b/src/layouts/Accounts.js new file mode 100644 index 0000000..3e8145d --- /dev/null +++ b/src/layouts/Accounts.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesAccounts from "routesAccounts"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesAccounts.map((prop, key) => { + if (prop.layout === "/accounts") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Admin.js b/src/layouts/Admin.js new file mode 100644 index 0000000..4928e78 --- /dev/null +++ b/src/layouts/Admin.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/Navbar.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesDash from "routesDash.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesDash.map((prop, key) => { + if (prop.layout === "/admin") { + return ( + + ); + } + return null; + })} + + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Analytics.js b/src/layouts/Analytics.js new file mode 100644 index 0000000..d761455 --- /dev/null +++ b/src/layouts/Analytics.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesAnalytics from "routesAnalytics.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesAnalytics.map((prop, key) => { + if (prop.layout === "/analytics") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Catalog.js b/src/layouts/Catalog.js new file mode 100644 index 0000000..6f1bded --- /dev/null +++ b/src/layouts/Catalog.js @@ -0,0 +1,135 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesCatalog from "routesCatalog.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesCatalog.map((prop, key) => { + if (prop.layout === "/catalog") { + return ( + + ); + } + return null; + })} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + const classes = useStyles(); + const mainPanel = React.createRef(); + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + +
+
+ ); +} diff --git a/src/layouts/Dashboard.js b/src/layouts/Dashboard.js new file mode 100644 index 0000000..3a39ab2 --- /dev/null +++ b/src/layouts/Dashboard.js @@ -0,0 +1,136 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/Navbar.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + + +import routes from "routesDash"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function(matchProps) { + return + } +} + + +const switchRoutes = ( + + {routes.map((prop, key) => { + if (prop.layout === "/dashboard") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + + const { isLoggedIn } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + +
+
{switchRoutes}
+
+ +
+
+ ); +} diff --git a/src/layouts/General.js b/src/layouts/General.js new file mode 100644 index 0000000..1b5abc6 --- /dev/null +++ b/src/layouts/General.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import {general} from "routesRetail.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {general.map((prop, key) => { + if (prop.layout === "/general") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/ImsByCustomer.js b/src/layouts/ImsByCustomer.js new file mode 100644 index 0000000..330a80c --- /dev/null +++ b/src/layouts/ImsByCustomer.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import {imsbyCustomer} from "routesRetail.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {imsbyCustomer.map((prop, key) => { + if (prop.layout === "/ims") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Inventory.js b/src/layouts/Inventory.js new file mode 100644 index 0000000..36f550a --- /dev/null +++ b/src/layouts/Inventory.js @@ -0,0 +1,150 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesInventory from "routesInventory.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return ; + }; +} + +const switchRoutes = ( + + {routesInventory.map((prop, key) => { + if (prop.layout === "/inventory") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Productivity.js b/src/layouts/Productivity.js new file mode 100644 index 0000000..ed61e3b --- /dev/null +++ b/src/layouts/Productivity.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesProductivity from "routesProductivity.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesProductivity.map((prop, key) => { + if (prop.layout === "/productivity") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Purchases.js b/src/layouts/Purchases.js new file mode 100644 index 0000000..9489bda --- /dev/null +++ b/src/layouts/Purchases.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesPurchases from "routesPurchases.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesPurchases.map((prop, key) => { + if (prop.layout === "/productivity") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/RTL.js b/src/layouts/RTL.js new file mode 100644 index 0000000..ad64e25 --- /dev/null +++ b/src/layouts/RTL.js @@ -0,0 +1,136 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/Navbar.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import FixedPlugin from "components/FixedPlugin/FixedPlugin.js"; + +import routesDash from "routesDash"; + +import styles from "assets/jss/material-dashboard-react/layouts/rtlStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +const switchRoutes = ( + + {routesDash.map((prop, key) => { + if (prop.layout === "/rtl") { + return ( + + ); + } + return null; + })} + + +); + +const useStyles = makeStyles(styles); + +export default function RTL({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + +
+
+ ); +} diff --git a/src/layouts/RetailSales.js b/src/layouts/RetailSales.js new file mode 100644 index 0000000..a6866e5 --- /dev/null +++ b/src/layouts/RetailSales.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesRetail from "routesRetail.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesRetail.map((prop, key) => { + if (prop.layout === "/retail") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/SalesIndex.js b/src/layouts/SalesIndex.js new file mode 100644 index 0000000..724284b --- /dev/null +++ b/src/layouts/SalesIndex.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import {salesIndexRoutes} from "routesRetail.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {salesIndexRoutes.map((prop, key) => { + if (prop.layout === "/salesindex") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/SalesSummary.js b/src/layouts/SalesSummary.js new file mode 100644 index 0000000..bfc1581 --- /dev/null +++ b/src/layouts/SalesSummary.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import {salesSummary} from "routesRetail.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {salesSummary.map((prop, key) => { + if (prop.layout === "/salessummary") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Stock.js b/src/layouts/Stock.js new file mode 100644 index 0000000..866d08a --- /dev/null +++ b/src/layouts/Stock.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesStock from "routesStock.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesStock.map((prop, key) => { + if (prop.layout === "/stock") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/Voucher.js b/src/layouts/Voucher.js new file mode 100644 index 0000000..cb34629 --- /dev/null +++ b/src/layouts/Voucher.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import routesVouchers from "routesVouchers,js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {routesVouchers.map((prop, key) => { + if (prop.layout === "/voucher") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/adminSales.js b/src/layouts/adminSales.js new file mode 100644 index 0000000..7165a7a --- /dev/null +++ b/src/layouts/adminSales.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import general from "routesAdmin.js"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {general.map((prop, key) => { + if (prop.layout === "/adminsales") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/layouts/profitLoss.js b/src/layouts/profitLoss.js new file mode 100644 index 0000000..68f4c04 --- /dev/null +++ b/src/layouts/profitLoss.js @@ -0,0 +1,149 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +// creates a beautiful scrollbar +import PerfectScrollbar from "perfect-scrollbar"; +import "perfect-scrollbar/css/perfect-scrollbar.css"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Navbar from "components/Navbars/NavbarAnalytics.js"; +import Footer from "components/Footer/Footer.js"; +import Sidebar from "components/Sidebar/Sidebar.js"; +import { useSelector } from "react-redux"; + +import general from "routesProfitLoss"; + +import styles from "assets/jss/material-dashboard-react/layouts/adminStyle.js"; + +import bgImage from "assets/img/sidebar-2.jpg"; +import logo from "assets/img/reactlogo.png"; + +let ps; + +function withProps(Component, props) { + return function (matchProps) { + return + } +} + + +const switchRoutes = ( + + {general.map((prop, key) => { + if (prop.layout === "/profitloss") { + return ( + + ); + } + return null; + })} + {/* */} + +); + +const useStyles = makeStyles(styles); + +export default function Admin({ ...rest }) { + // styles + const classes = useStyles(); + // ref to help us initialize PerfectScrollbar on windows devices + const mainPanel = React.createRef(); + // states and functions + const [image, setImage] = React.useState(bgImage); + const [color, setColor] = React.useState("blue"); + const [fixedClasses, setFixedClasses] = React.useState("dropdown show"); + const [mobileOpen, setMobileOpen] = React.useState(false); + const { isLoggedIn } = useSelector((state) => state.auth); + const { user } = useSelector((state) => state.auth); + + if (!isLoggedIn) { + return ; + } + + const handleImageClick = (image) => { + setImage(image); + }; + const handleColorClick = (color) => { + setColor(color); + }; + const handleFixedClick = () => { + if (fixedClasses === "dropdown") { + setFixedClasses("dropdown show"); + } else { + setFixedClasses("dropdown"); + } + }; + const handleDrawerToggle = () => { + setMobileOpen(!mobileOpen); + }; + const getRoute = () => { + return window.location.pathname !== "/admin/maps"; + }; + const resizeFunction = () => { + if (window.innerWidth >= 960) { + setMobileOpen(false); + } + }; + // initialize and destroy the PerfectScrollbar plugin + React.useEffect(() => { + if (navigator.platform.indexOf("Win") > -1) { + ps = new PerfectScrollbar(mainPanel.current, { + suppressScrollX: true, + suppressScrollY: false, + }); + document.body.style.overflow = "hidden"; + } + window.addEventListener("resize", resizeFunction); + // Specify how to clean up after this effect: + return function cleanup() { + if (navigator.platform.indexOf("Win") > -1) { + ps.destroy(); + } + window.removeEventListener("resize", resizeFunction); + }; + }, [mainPanel]); + return ( +
+ +
+ + {/* On the /maps route we want the map to be on full screen - this is not possible if the content and conatiner classes are present because they have some paddings which would make the map smaller */} + {getRoute() ? ( +
+
{switchRoutes}
+
+ ) : ( +
{switchRoutes}
+ )} + {getRoute() ?
: null} + {/* */} +
+
+ ); +} diff --git a/src/logo.svg b/src/logo.svg new file mode 100644 index 0000000..6b60c10 --- /dev/null +++ b/src/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/reducers/auth.js b/src/reducers/auth.js new file mode 100644 index 0000000..fa63077 --- /dev/null +++ b/src/reducers/auth.js @@ -0,0 +1,37 @@ +import { + LOGIN_SUCCESS, + LOGIN_FAIL, + LOGOUT, +} from "../actions/types"; + +const user = JSON.parse(localStorage.getItem("user")); + +const initialState = user + ? { isLoggedIn: true, user } + : { isLoggedIn: false, user: null }; + +export default function (state = initialState, action) { + const { type, payload } = action; + switch (type) { + case LOGIN_SUCCESS: + return { + ...state, + isLoggedIn: true, + user: payload.user, + }; + case LOGIN_FAIL: + return { + ...state, + isLoggedIn: false, + user: null, + }; + case LOGOUT: + return { + ...state, + isLoggedIn: false, + user: null, + }; + default: + return state; + } +} diff --git a/src/reducers/index.js b/src/reducers/index.js new file mode 100644 index 0000000..3d698a8 --- /dev/null +++ b/src/reducers/index.js @@ -0,0 +1,9 @@ +import { combineReducers } from "redux"; +import auth from "./auth"; +import message from "./message"; + +export default combineReducers({ + auth, + message, + +}); diff --git a/src/reducers/message.js b/src/reducers/message.js new file mode 100644 index 0000000..ba4bcc0 --- /dev/null +++ b/src/reducers/message.js @@ -0,0 +1,18 @@ +import { SET_MESSAGE, CLEAR_MESSAGE } from "../actions/types"; + +const initialState = {}; + +export default function (state = initialState, action) { + const { type, payload } = action; + + switch (type) { + case SET_MESSAGE: + return { message: payload }; + + case CLEAR_MESSAGE: + return { message: "" }; + + default: + return state; + } +} diff --git a/src/routesAccount.js b/src/routesAccount.js new file mode 100644 index 0000000..501fa47 --- /dev/null +++ b/src/routesAccount.js @@ -0,0 +1,128 @@ +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; + +import Productivity from "layouts/Productivity.js"; +import AdminSales from "layouts/adminSales.js"; +import Accounts from "layouts/vouchers.js"; +import TableList from "views/TableList/TableList.js"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import CategoryList from "views/TableList/CategoryList"; +import BrandList from "views/TableList/BrandList"; +import UnitList from "views/TableList/UnitList"; +import OriginsList from "views/TableList/OriginsList"; +import MasterProductList from "views/TableList/MasterProductList"; +import Pricing from "views/TableList/Pricing"; +import CreateAccount from "views/TableList/CreateAccount"; + +const dashboardRoutes = [ + { + path: "/create-account", + name: "Create Account", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CreateAccount, + layout: "/voucher", + }, + { + path: "/category-list", + name: "Category List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CategoryList, + layout: "/voucher", + }, + { + path: "/new-brand", + name: "New Brand", + rtlName: "قائمة الجدول", + icon: "content_paste", + layout: "/voucher", + }, + { + path: "/brand-list", + name: "Brand ist", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BrandList, + layout: "/voucher", + }, + { + path: "/new-unit", + name: "New Unit", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductTrackScreen, + layout: "/voucher", + }, + { + path: "/unit-list", + name: "Unit List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: UnitList, + layout: "/voucher", + }, + { + path: "/new-origin", + name: "New Origin", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: StockTransferMismatchScreen, + layout: "/voucher", + }, + + { + path: "/origins-list", + name: "origins List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: OriginsList, + layout: "/voucher", + }, + { + path: "/new-product", + name: "New Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: StockAdjustmentScreen, + layout: "/voucher", + }, + { + path: "/master-product-list", + name: "Master Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: MasterProductList, + layout: "/voucher", + }, + { + path: "/product-list", + name: "Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: DeliveryNotesScreen, + layout: "/voucher", + }, + { + path: "/pricing", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Pricing, + layout: "/voucher", + }, +]; + +export default dashboardRoutes; diff --git a/src/routesAccounts.js b/src/routesAccounts.js new file mode 100644 index 0000000..a590b69 --- /dev/null +++ b/src/routesAccounts.js @@ -0,0 +1,173 @@ + +import TableList from "views/TableList/TableList.js"; +import DFSScreen from "views/TableList/DFSScreen"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import data from "services/dummy-data"; +import DailyStatement from "views/TableList/DailyStatement"; +import DailyCombinedStatement from "views/TableList/DailyCombinedStatement"; +import CustomerStatement from "views/TableList/CustomerStatement"; +import CustomerStatementCombined from "views/TableList/CustomerStatementCombined"; +import WholeSaleInvoice from "views/TableList/WholeSaleInvoice"; +import WholeSaleLedger from "views/TableList/WholeSaleLedger"; +import WholeSaleSummaryLedger from "views/TableList/WholeSaleSummaryLedger"; +import GeneralLedger from "views/TableList/GeneralLedger"; +import BankCashBankSummary from "views/TableList/BankCashBankSummary"; +import BankLedgerSummaryDetails from "views/TableList/BankLedgerSummaryDetails"; + + +const dashboardRoutes = [ + + { + id:51, + path: "/dailystatement", + name: "daily Statement", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DailyStatement, + layout: "/accounts", + }, + + { + id:52, + path: "/dailycombinedstatement", + name: "Daily Combined Statement", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DailyCombinedStatement, + layout: "/accounts", + }, + { + id:53, + path: "/customerstatement", + name: "Customer Statement", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CustomerStatement, + layout: "/accounts", + }, + { + id:54, + path: "/customerstatementcombined", + name: "Customer Statement Combined", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CustomerStatementCombined, + layout: "/accounts", + }, + { + id:55, + path: "/wholesaleinvoice", + name: "WholeSale Invoice", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: WholeSaleInvoice, + layout: "/accounts", + }, + { + id:56, + path: "/wholesaleledger", + name: "Whole Sale Ledger", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: WholeSaleLedger, + layout: "/accounts", + }, + { + id:57, + path: "/wholesalesummaryledger", + name: "Whole Sale Summary Ledger", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: WholeSaleSummaryLedger, + layout: "/accounts", + }, + + { + id:58, + path: "/generalledger", + name: "General Ledger", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: GeneralLedger, + layout: "/accounts", + }, + { + id:59, + path: "/BankCashBanksummary", + name: "Bank Cash Bank Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BankCashBankSummary, + layout: "/accounts", + }, + { + id:60, + path: "/bankledgersummarydetails", + name: "Account Ledger Summary Details", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BankLedgerSummaryDetails, + layout: "/accounts", + }, +// { +// id:62, +// path: "/deliverynotes", +// name: "Delivery Notes", +// rtlName: "قائمة الجدول", +// icon: "content_paste", +// component: DeliveryNotesScreen, +// layout: "/accounts", +// }, +// { +// id:63, +// path: "/deliverynotedetail", +// name: "Delivery Note Detail", +// rtlName: "قائمة الجدول", +// icon: "content_paste", +// component: DeliveryNoteDetailScreen, +// layout: "/accounts", +// }, +// { +// id:67, +// path: "/goodsreceivednotes", +// name: "GRN List", +// rtlName: "قائمة الجدول", +// icon: "content_paste", +// component: GRNlistScreen, +// layout: "/accounts", +// }, +// { +// id:68, +// path: "/goodsreceivednotedetail", +// name: "GRN Detail", +// rtlName: "قائمة الجدول", +// icon: "content_paste", +// component: GRNDetailScreen, +// layout: "/accounts", +// }, + + // { + // id:2, + // path: "/productivity/dfs", + // name: "DFS Exec", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: DFSScreen, + // layout: "/accounts", + // }, + +]; + +export default dashboardRoutes; diff --git a/src/routesAdmin.js b/src/routesAdmin.js new file mode 100644 index 0000000..21bd3d1 --- /dev/null +++ b/src/routesAdmin.js @@ -0,0 +1,160 @@ + +import Sales from "views/TableList/SalesScreen"; +import SalesComparison from "views/TableList/SalesComparisonScreen"; +import SalesByCustomer from "views/TableList/SalesByCustomer"; +import AllStockSales from "views/TableList/AllStockSales"; +import StockDays from "views/TableList/StockDays"; +import BranchandBrandCtegoryScreen from "views/TableList/BranchandBrandCtegoryScreen"; +import BranchSummary from "views/TableList/BranchSummary"; +import KeySummary from "views/TableList/KeySummary"; +import KeyDetail from "views/TableList/KeyDetail"; +import BranchProduct from "views/TableList/BranchProduct"; +import {imsByCustomer,imsByCustomerSummary,imsByCustomerChannel,imsByProduct,imsBySupplier} from "views/TableList/IMS"; + + + +const dashboardRoutes = [ + + { + id:27, + path: "/sales", + name: "Sales", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Sales, + layout: "/adminsales", + }, + + { + id:28, + path: "/salescomparison", + name: "Sales Comparison", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SalesComparison, + layout: "/adminsales", + }, + { + id:29, + path: "/salecustomer", + name: "Sales By Customer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SalesByCustomer, + layout: "/adminsales", + }, + { + id:30, + path: "/allstocksales", + name: "All Stock & Sales", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AllStockSales, + layout: "/adminsales", + }, + { + id:31, + path: "/stockdays", + name: "Stock Days", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockDays, + layout: "/adminsales", + }, + { + id:32, + path: "/branchandbrandcategory", + name: "Branch And Brand Category", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BranchandBrandCtegoryScreen, + layout: "/adminsales", + }, + + { + id:33, + path: "/branchsummary", + name: "Brand Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BranchSummary, + layout: "/adminsales", + }, + { + id:34, + path: "/keysummary", + name: "KeyAccounts Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: KeySummary, + layout: "/adminsales", + }, + { + id:35, + path: "/keydetail", + name: "KeyAccounts Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: KeyDetail, + layout: "/adminsales", + }, + { + id:36, + path: "/branchproduct", + name: "Branch & Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BranchProduct, + layout: "/adminsales", + }, + { + id:37, + path: "/imsbycustomer", + name: "IMS by Customer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByCustomer, + layout: "/adminsales", + }, + { + id:38, + path: "/imsbycustomersummary", + name: "IMS by Customer (Summary)", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByCustomerSummary, + layout: "/adminsales", + }, + + { + id:39, + path: "/imsbycustomerbychannel", + name: "IMS by Customer By Channel", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByCustomerChannel, + layout: "/adminsales", + }, + { + id:40, + path: "/imsbyproduct", + name: "IMS by Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByProduct, + layout: "/adminsales", + }, + { + id:41, + path: "/imsbysupplier", + name: "IMS by Supplier", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsBySupplier, + layout: "/adminsales", + }, + + +]; + +export default dashboardRoutes; diff --git a/src/routesAnalytics.js b/src/routesAnalytics.js new file mode 100644 index 0000000..8810e37 --- /dev/null +++ b/src/routesAnalytics.js @@ -0,0 +1,210 @@ + +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; + +import Productivity from "layouts/Productivity.js"; +import AdminSales from "layouts/adminSales.js"; +import Accounts from "layouts/Accounts.js"; +import TableList from "views/TableList/TableList.js"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; + + + +const dashboardRoutes = [ + + { + path: "/opening-stock", + name: "Opening Stock", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: TableList, + layout: "/stock", + }, + { + path: "/swbe", + name: "Stock With Batch And Expiry", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SwbeScreen, + layout: "/stock", + }, + { + id:4, + path: "/csp", + name: "Cost and Sales Prices", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CspScreen, + layout: "/stock", + }, + { + id:5, + path: "/abs", + name: "All Branches Stock", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AbsScreen, + layout: "/stock", + }, + { + id:6, + path: "/product-track", + name: "Product Track", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductTrackScreen, + layout: "/stock", + }, + { + id:16, + path: "/stock-transfer", + name: "Stock Transfer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferScreen, + layout: "/stock", + }, + { + id:15, + path: "/stock-transfer-mismatch", + name: "Stock Transfer Mismatch", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferMismatchScreen, + layout: "/stock", + }, + + { + id:7, + path: "/transferdetail", + name: "Shifting Invoice Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SIDScreen, + layout: "/stock", + }, + { + id:8, + path: "/adjustments", + name: "Stock Adjustments", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockAdjustmentScreen, + layout: "/stock", + }, + { + id:9, + path: "/adjustmentdetail", + name: "Adjustment Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AdjDetailScreen, + layout: "/stock", + }, + { + id:10, + path: "/deliverynotes", + name: "Delivery Notes", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DeliveryNotesScreen, + layout: "/stock", + }, + { + id:11, + path: "/deliverynotedetail", + name: "Delivery Note Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DeliveryNoteDetailScreen, + layout: "/stock", + }, + { + id:12, + path: "/goodsreceivednotes", + name: "GRN List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: GRNlistScreen, + layout: "/stock", + }, + { + id:13, + path: "/goodsreceivednotedetail", + name: "GRN Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: GRNDetailScreen, + layout: "/stock", + }, + { + path: "/", + name: "Retail Sales", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: RetailSales, + layout: "/retail", + }, + { + path: "/", + name: "Admin Sales", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AdminSales, + layout: "/adminsales", + }, + { + path: "/", + name: "Productivity", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Productivity, + layout: "/productivity", + }, + { + path: "/", + name: "Purchases", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: RetailSales, + layout: "/purchases", + }, + { + path: "/", + name: "Accounts", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Accounts, + layout: "/accounts", + }, + { + path: "/", + name: "Profit & Loss", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: RetailSales, + layout: "/profitloss", + }, + // { + // path: "/", + // name: "Stock Counting", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: RetailSales, + // layout: "/stockcounting", + // }, +]; + +export default dashboardRoutes; diff --git a/src/routesCatalog.js b/src/routesCatalog.js new file mode 100644 index 0000000..2d3dd6d --- /dev/null +++ b/src/routesCatalog.js @@ -0,0 +1,332 @@ +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; + +import Productivity from "layouts/Productivity.js"; +import AdminSales from "layouts/adminSales.js"; +import Accounts from "layouts/Accounts.js"; +import TableList from "views/TableList/TableList.js"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import BrandList from "views/TableList/BrandList"; +import NewProduct from "views/TableList/NewProduct"; +import MasterProductList from "views/TableList/MasterProductList"; +import ProductList from "views/TableList/ProductList"; +import Pricing from "views/TableList/Pricing"; +import NewPurchaseOrder from "views/TableList/NewPurchaseOrder"; +import DemandNotesList from "views/TableList/DemandNotesList"; +import PurchaseOrdersList from "views/TableList/PurchaseOrdersList"; +import NewShipment from "views/TableList/NewShipment"; +import PurchasesList from "views/TableList/PurchasesList"; +import ShipmentList from "views/TableList/ShipmentList"; +import NewPurchaseDocument from "views/TableList/NewPurchaseDocument"; +import CreateQuotation from "views/TableList/CreateQuotation"; +import QuotationList from "views/TableList/QuotationList"; +import CreateSaleOrder from "views/TableList/CreateSaleOrder"; +import SaleOrdersList from "views/TableList/SaleOrdersList"; +import SaleInvoiceList from "views/TableList/SaleInvoiceList"; +import PurchaseGRNsList from "views/TableList/PurchaseGRNsList"; +import NewSaleReturn from "views/TableList/NewSaleReturn"; +import SaleReturnList from "views/TableList/SaleReturnList"; +import StockTransferGrnList from "views/TableList/StockTransferGrnList"; +import SaleDeliveryNotesList from "views/TableList/SaleDeliveryNotesList"; +import CreateNew from "views/TableList/CreateNew"; +import StockTransferList from "views/TableList/StockTransferList"; +import CreateStockAdjustment from "views/TableList/CreateStockAdjustment"; +import StockAdjustmentList from "views/TableList/StockAdjustmentList"; +import StockCoutingList from "views/TableList/StockCoutingList"; + +const dashboardRoutes = [ + { + id: 61, + path: "/new-category", + name: "New Category", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: TableList, + layout: "/catalog", + }, + { + id: 62, + path: "/category-list", + name: "Category List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SwbeScreen, + layout: "/catalog", + }, + { + id: 63, + path: "/new-brand", + name: "Cost and Sales Prices", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CspScreen, + layout: "/catalog", + }, + { + id: 64, + path: "/brand-list", + name: "All Branches Stock", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BrandList, + layout: "/catalog", + }, + { + id: 65, + path: "/new-unit", + name: "New Unit", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductTrackScreen, + layout: "/catalog", + }, + { + id: 66, + path: "/unit-list", + name: "Unit List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferScreen, + layout: "/catalog", + }, + { + id: 67, + path: "/new-origin", + name: "New Origin", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferMismatchScreen, + layout: "/catalog", + }, + + { + id: 68, + path: "/origins-list", + name: "origins List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SIDScreen, + layout: "/catalog", + }, + { + id: 69, + path: "/new-product", + name: "New Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: NewProduct, + layout: "/catalog", + }, + { + id: 70, + path: "/master-product-list", + name: "Master Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: MasterProductList, + layout: "/catalog", + }, + { + id: 71, + path: "/product-list", + name: "Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductList, + layout: "/catalog", + }, + { + id: 72, + path: "/pricing", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Pricing, + layout: "/catalog", + }, + { + // id: 74, + path: "/new-purchase-order", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: NewPurchaseOrder, + layout: "/catalog", + }, + { + // id: 74, + path: "/demand-notes-list", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DemandNotesList, + layout: "/catalog", + }, + { + path: "/purchase-orders-list", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: PurchaseOrdersList, + layout: "/catalog", + }, + { + path: "/new-shipment", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: NewShipment, + layout: "/catalog", + }, + { + path: "/shipment-list", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ShipmentList, + layout: "/catalog", + }, + { + path: "/new-purchase-document", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: NewPurchaseDocument, + layout: "/catalog", + }, + { + path: "/purchases-list", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: PurchasesList, + layout: "/catalog", + }, + //Sales + { + path: "/create-quotation", + name: "create-quotation", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CreateQuotation, + layout: "/catalog", + }, + { + path: "/quotation-list", + name: "quotationlist", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: QuotationList, + layout: "/catalog", + }, + { + path: "/create-sale-order", + name: "quotationlist", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CreateSaleOrder, + layout: "/catalog", + }, + { + path: "/sale-orders-list", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SaleOrdersList, + layout: "/catalog", + }, + { + path: "/sale-invoice-list", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SaleInvoiceList, + layout: "/catalog", + }, + { + path: "/purchase-grns-list", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: PurchaseGRNsList, + layout: "/catalog", + }, + { + path: "/new-sale-return", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: NewSaleReturn, + layout: "/catalog", + }, + { + path: "/sale-return-list", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SaleReturnList, + layout: "/catalog", + }, + { + path: "/sale-delivery-note-list", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SaleDeliveryNotesList, + layout: "/catalog", + }, + { + path: "/create-new", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CreateNew, + layout: "/catalog", + }, + { + path: "/stock-transfer-list", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferList, + layout: "/catalog", + }, + { + path: "/create-stock-adjustment", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CreateStockAdjustment, + layout: "/catalog", + }, + { + path: "/stock-adjustment-list", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockAdjustmentList, + layout: "/catalog", + }, + { + path: "/stock-countings-List", + name: "PurchaseGRNsList", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockCoutingList, + layout: "/catalog", + }, +]; + +export default dashboardRoutes; diff --git a/src/routesDash.js b/src/routesDash.js new file mode 100644 index 0000000..cac4928 --- /dev/null +++ b/src/routesDash.js @@ -0,0 +1,199 @@ +/*! + +========================================================= +* Material Dashboard React - v1.10.0 +========================================================= + +* Product Page: https://www.creative-tim.com/product/material-dashboard-react +* Copyright 2021 Creative Tim (https://www.creative-tim.com) +* Licensed under MIT (https://github.com/creativetimofficial/material-dashboard-react/blob/master/LICENSE.md) + +* Coded by Creative Tim + +========================================================= + +* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +*/ +// @material-ui/icons +import Dashboard from "@material-ui/icons/Dashboard"; +import Person from "@material-ui/icons/Person"; +import LibraryBooks from "@material-ui/icons/LibraryBooks"; +import BubbleChart from "@material-ui/icons/BubbleChart"; +import LocationOn from "@material-ui/icons/LocationOn"; +import Notifications from "@material-ui/icons/Notifications"; +import Unarchive from "@material-ui/icons/Unarchive"; +import Language from "@material-ui/icons/Language"; +// core components/views for Admin layout +import DashboardPage from "views/Dashboard/Dashboard.js"; +import Analytics from "layouts/Analytics.js"; +import Inventory from "layouts/Inventory.js"; +import UserProfile from "views/UserProfile/UserProfile.js"; +import TableList from "views/TableList/TableList.js"; +import data from "services/dummy-data"; +import alldata from "services/dummy-data.js"; +import Typography from "views/Typography/Typography.js"; +import Icons from "views/Icons/Icons.js"; +import Maps from "views/Maps/Maps.js"; +import NotificationsPage from "views/Notifications/Notifications.js"; +import UpgradeToPro from "views/UpgradeToPro/UpgradeToPro.js"; +// core components/views for RTL layout +import RTLPage from "views/RTLPage/RTLPage.js"; + +const dashboardRoutes = [ + { + path: "/dashboard", + name: "Dashboard", + rtlName: "لوحة القيادة", + icon: Dashboard, + component: DashboardPage, + layout: "/admin", + }, + // { + // path: "/", + // name: "Inventory", + // rtlName: "ملف تعريفي للمستخدم", + // icon: Person, + // component: Analytics, + // layout: "/analytics", + // }, + // { + // path: "/", + // name: "Accounts", + // rtlName: "ملف تعريفي للمستخدم", + // icon: Person, + // component: Analytics, + // layout: "/analytics", + // }, + // { + // path: "/", + // name: "Organisation", + // rtlName: "ملف تعريفي للمستخدم", + // icon: Person, + // component: Analytics, + // layout: "/analytics", + // }, + { + path: "/", + name: "Inventory", + rtlName: "ملف تعريفي للمستخدم", + icon: Person, + component: Inventory, + layout: "/inventory", + }, + { + path: "/", + name: "Analytics", + rtlName: "ملف تعريفي للمستخدم", + icon: Person, + component: Analytics, + layout: "/analytics", + }, + // { + // path: "/", + // name: "Security", + // rtlName: "ملف تعريفي للمستخدم", + // icon: Person, + // component: Analytics, + // layout: "/analytics", + // }, + // { + // path: "/analytics/opening-stock", + // name: "Opening Stock", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: TableList, + // layout: "/admin", + // data:data.OpeningStock, + // }, + // { + // path: "/analytics/stock-with-batch-and-expiry", + // name: "Stock with batch", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: TableList, + // layout: "/admin", + // data:data.StockBatchExpiry + // }, + // { + // path: "/analytics/cost-and-sale-prices", + // name: "Cost and Sale prices", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: TableList, + // layout: "/admin", + // data:data.CostAndSalesPrice + + // }, + // { + // path: "/analytics/all-branch-stock", + // name: "All branch Stock", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: TableList, + // layout: "/admin", + // data:data.AllBranchStock + + // }, + // { + // path: "/analytics/product-track", + // name: "Product Track", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: TableList, + // layout: "/admin", + // data:data.ProductTrack + + // }, + + // { + // path: "/typography", + // name: "Typography", + // rtlName: "طباعة", + // icon: LibraryBooks, + // component: Typography, + // layout: "/admin", + // }, + // { + // path: "/icons", + // name: "Icons", + // rtlName: "الرموز", + // icon: BubbleChart, + // component: Icons, + // layout: "/admin", + // }, + // { + // path: "/maps", + // name: "Maps", + // rtlName: "خرائط", + // icon: LocationOn, + // component: Maps, + // layout: "/admin", + // }, + // { + // path: "/notifications", + // name: "Notifications", + // rtlName: "إخطارات", + // icon: Notifications, + // component: NotificationsPage, + // layout: "/admin", + // }, + // { + // path: "/rtl-page", + // name: "RTL Support", + // rtlName: "پشتیبانی از راست به چپ", + // icon: Language, + // component: RTLPage, + // layout: "/rtl", + // }, + // { + // path: "/upgrade-to-pro", + // name: "Upgrade To PRO", + // rtlName: "التطور للاحترافية", + // icon: Unarchive, + // component: UpgradeToPro, + // layout: "/admin", + // }, +]; + +export default dashboardRoutes; diff --git a/src/routesInventory.js b/src/routesInventory.js new file mode 100644 index 0000000..5f15349 --- /dev/null +++ b/src/routesInventory.js @@ -0,0 +1,170 @@ +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; + +import Productivity from "layouts/Productivity.js"; +import AdminSales from "layouts/adminSales.js"; +import Accounts from "layouts/Accounts.js"; +import TableList from "views/TableList/TableList.js"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import CategoryList from "views/TableList/CategoryList"; +import BrandList from "views/TableList/BrandList"; +import UnitList from "views/TableList/UnitList"; +import OriginsList from "views/TableList/OriginsList"; +import MasterProductList from "views/TableList/MasterProductList"; +import Pricing from "views/TableList/Pricing"; +import NewProduct from "views/TableList/NewProduct" +import NewPurchaseOrder from "views/TableList/NewPurchaseOrder" + +const dashboardRoutes = [ + { + id: 61, + path: "/new-category", + name: "New Category", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: TableList, + layout: "/inventory", + }, + { + id: 62, + path: "/category-list", + name: "Category List", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: NewPurchaseOrder, + component: CategoryList, + layout: "/inventory", + }, + { + id: 63, + path: "/new-brand", + name: "New Brand", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: CspScreen, + layout: "/inventory", + }, + { + id: 64, + path: "/brand-list", + name: "Brand ist", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: BrandList, + layout: "/inventory", + }, + { + id: 65, + path: "/new-unit", + name: "New Unit", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductTrackScreen, + layout: "/inventory", + }, + { + id: 66, + path: "/unit-list", + name: "Unit List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: UnitList, + layout: "/inventory", + }, + { + id: 67, + path: "/new-origin", + name: "New Origin", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: StockTransferMismatchScreen, + layout: "/inventory", + }, + + { + id: 68, + path: "/origins-list", + name: "origins List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: OriginsList, + layout: "/inventory", + }, + { + id: 69, + path: "/new-product", + name: "New Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: StockAdjustmentScreen, + layout: "/inventory", + }, + { + id: 70, + path: "/master-product-list", + name: "Master Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: MasterProductList, + layout: "/inventory", + }, + { + id: 71, + path: "/product-list", + name: "Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + // component: DeliveryNotesScreen, + layout: "/inventory", + }, + { + id: 72, + path: "/pricing", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Pricing, + layout: "/inventory", + }, + { + id: 73, + path: "/pricing", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: Pricing, + layout: "/catalog", + }, + // { + // id: 74, + // path: "/new-purchase-order", + // name: "Pricing", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: NewPurchaseOrder, + // layout: "/catalog", + // }, + // { + // id: 74, + // path: "/demand-notes-list", + // name: "Pricing", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: NewPurchaseOrder, + // layout: "/catalog", + // }, +]; + +export default dashboardRoutes; diff --git a/src/routesInventoryPurchases.js b/src/routesInventoryPurchases.js new file mode 100644 index 0000000..f03a12d --- /dev/null +++ b/src/routesInventoryPurchases.js @@ -0,0 +1,134 @@ +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; + +import Productivity from "layouts/Productivity.js"; +import AdminSales from "layouts/adminSales.js"; +import Accounts from "layouts/Accounts.js"; +import TableList from "views/TableList/TableList.js"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; + +const dashboardRoutes = [ + // { + // id: 73, + // path: "/new-category", + // name: "New Category", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: TableList, + // layout: "/catalog", + // }, + // { + // id: 74, + // path: "/category-list", + // name: "Category List", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: SwbeScreen, + // layout: "/catalog", + // }, + // { + // id: 75, + // path: "/new-brand", + // name: "Cost and Sales Prices", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: CspScreen, + // layout: "/catalog", + // }, + // { + // id: 76, + // path: "/brand-list", + // name: "All Branches Stock", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: AbsScreen, + // layout: "/catalog", + // }, + // { + // id: 77, + // path: "/new-unit", + // name: "New Unit", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: ProductTrackScreen, + // layout: "/catalog", + // }, + // { + // id: 78, + // path: "/unit-list", + // name: "Unit List", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: StockTransferScreen, + // layout: "/catalog", + // }, + // { + // id: 79, + // path: "/new-origin", + // name: "New Origin", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: StockTransferMismatchScreen, + // layout: "/catalog", + // }, + + // { + // id: 80, + // path: "/origins-list", + // name: "origins List", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: SIDScreen, + // layout: "/catalog", + // }, + // { + // id: 90, + // path: "/new-product", + // name: "New Product", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: StockAdjustmentScreen, + // layout: "/catalog", + // }, + // { + // id: 91, + // path: "/master-product-list", + // name: "Master Product List", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: AdjDetailScreen, + // layout: "/catalog", + // }, + // { + // id: 92, + // path: "/product-list", + // name: "Product List", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: DeliveryNotesScreen, + // layout: "/catalog", + // }, + // { + // id: 93, + // path: "/pricing", + // name: "Pricing", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: DeliveryNoteDetailScreen, + // layout: "/catalog", + // }, +]; + +export default dashboardRoutes; diff --git a/src/routesProductivity.js b/src/routesProductivity.js new file mode 100644 index 0000000..bc3411a --- /dev/null +++ b/src/routesProductivity.js @@ -0,0 +1,42 @@ + +import TableList from "views/TableList/TableList.js"; +import DFSScreen from "views/TableList/DFSScreen"; +import DFSPWScreen from "views/TableList/DFSPWScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import data from "services/dummy-data"; + + +const dashboardRoutes = [ + + { + id:12, + path: "/dfspw", + name: "DSF wise Product wise", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DFSPWScreen, + layout: "/productivity", + }, + + { + id:2, + path: "/dfs", + name: "DSF Exec", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DFSScreen, + layout: "/productivity", + }, + +]; + +export default dashboardRoutes; diff --git a/src/routesProfitLoss.js b/src/routesProfitLoss.js new file mode 100644 index 0000000..c4029a2 --- /dev/null +++ b/src/routesProfitLoss.js @@ -0,0 +1,95 @@ + +import {imsByCustomer, + imsByCustomerPnL, + stockValueVendor, + stockValueProductLocation, + companiesProfitWise, + monthlyData, + imsByProduct, + khyberByBranchPLS} from "views/TableList/ProfitLossScreens"; + + + + +const dashboardRoutes = [ + + { + id:42, + path: "/imsbycustomer", + name: "IMS BY CUSTOMER", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByCustomer, + layout: "/profitloss", + }, + + { + id:43, + path: "/imsbyproduct", + name: "IMS by Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByProduct, + layout: "/profitloss", + }, + { + id:44, + path: "/imsbycustpnl", + name: "IMS by Customer PnL", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: imsByCustomerPnL, + layout: "/profitloss", + }, + + { + id:45, + path: "/kbplstotal", + name: "Khyber by Branch PLS and total", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: khyberByBranchPLS, + layout: "/profitloss", + }, + { + id:46, + path: "/svbyvendor", + name: "Stock Value by Vendor", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: stockValueVendor, + layout: "/profitloss", + }, + + { + id:47, + path: "/svbyproductlocation", + name: "Stock Value by Product and Location", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: stockValueProductLocation, + layout: "/profitloss", + }, + { + id:48, + path: "/companiesprofitwise", + name: "Companies Profit Wise", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: companiesProfitWise, + layout: "/profitloss", + }, + + { + id:49, + path: "/monthlydata", + name: "Monthly Data", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: monthlyData, + layout: "/profitloss", + }, + +]; + +export default dashboardRoutes; diff --git a/src/routesPurchases.js b/src/routesPurchases.js new file mode 100644 index 0000000..0896138 --- /dev/null +++ b/src/routesPurchases.js @@ -0,0 +1,42 @@ + +import TableList from "views/TableList/TableList.js"; +import DFSScreen from "views/TableList/DFSScreen"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import data from "services/dummy-data"; + + +const dashboardRoutes = [ + + { + id:1, + path: "/opening-stock", + name: "Purchase Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: TableList, + layout: "/purchase", + }, + + { + id:2, + path: "/dfs", + name: "Purchase Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DFSScreen, + layout: "/productivity", + }, + +]; + +export default dashboardRoutes; diff --git a/src/routesRetail.js b/src/routesRetail.js new file mode 100644 index 0000000..c6520d7 --- /dev/null +++ b/src/routesRetail.js @@ -0,0 +1,183 @@ + +import TableList from "views/TableList/TableList.js"; +import DFSScreen from "views/TableList/DFSScreen"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import SRCScreen from "views/TableList/SRCScreen"; +import InvoiceSummaryScreen from "views/TableList/InvoiceSummaryScreen"; +import InvoiceDetailScreen from "views/TableList/InvoiceDetailScreen"; +import ByMonthScreen from "views/TableList/ByMonthScreen"; +import ByYearScreen from "views/TableList/ByYearScreen"; +import ByCustomerScreen from "views/TableList/ByCustomerScreen"; +import PartySummaryScreen from "views/TableList/PartySummaryScreen"; +import IMSCustScreen from "views/TableList/IMSCustScreen"; +import IMSCustSummaryScreen from "views/TableList/IMSCustSummaryScreen"; +import IMSChannelScreen from "views/TableList/IMSChannelScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import data from "services/dummy-data"; + + +const dashboardRoutes = [ + + { + path: "/", + name: "Sales Index", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: TableList, + layout: "/salesindex", + }, + + { + path: "/", + name: "Sales Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SwbeScreen, + layout: "/salessummary", + }, + { + path: "/", + name: "General", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CspScreen, + layout: "/general", + }, + { + path: "/", + name: "IMS by Customer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AbsScreen, + layout: "/ims", + }, + + +]; + +export default dashboardRoutes; + +export const salesIndexRoutes = [ + + { + id:17, + path: "/invoice-summary", + name: "Invoice Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: InvoiceSummaryScreen, + layout: "/salesindex", + }, + + { + id:18, + path: "/invoice-detail", + name: "Invoice Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: InvoiceDetailScreen, + layout: "/salesindex", + }, + + +]; +export const salesSummary = [ + + { + id:19, + path: "/bymonth", + name: "By Month", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ByMonthScreen, + layout: "/salessummary", + }, + + { + id:20, + path: "/byyear", + name: "By Year", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ByYearScreen, + layout: "/salessummary", + }, + { + id:21, + path: "/bycustomer", + name: "By Customer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ByCustomerScreen, + layout: "/salessummary", + }, + { + id:22, + path: "/partysummary", + name: "Party Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: PartySummaryScreen, + layout: "/salessummary", + }, + + +]; +export const general = [ + + { + id: 23, + path: "/salesratebycustomer", + name: "Sales Rates By Customer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SRCScreen, + layout: "/general", + }, + +]; +export const imsbyCustomer = [ + + { + id: 24, + path: "/imsbycustomer", + name: "IMS by Customer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: IMSCustScreen, + layout: "/ims", + }, + + { + id: 25, + path: "/imsbycustomersummary", + name: "IMS by Customer Summary", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: IMSCustSummaryScreen, + layout: "/ims", + }, + { + id: 26, + path: "/imsbychannel", + name: "IMS by Channel", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: IMSChannelScreen, + layout: "/ims", + }, + + +]; + + + diff --git a/src/routesSalesIndex.js b/src/routesSalesIndex.js new file mode 100644 index 0000000..e69de29 diff --git a/src/routesStock.js b/src/routesStock.js new file mode 100644 index 0000000..6239142 --- /dev/null +++ b/src/routesStock.js @@ -0,0 +1,163 @@ + +import TableList from "views/TableList/TableList.js"; +import DFSScreen from "views/TableList/DFSScreen"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; +import data from "services/dummy-data"; +import routesRetail from "routesRetail.js"; + +const dashboardRoutes = [ + + { + id:1, + path: "/opening-stock", + name: "Opening Stock", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: TableList, + layout: "/stock", + }, + + { + id:3, + path: "/swbe", + name: "Stock With Batch And Expiry", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SwbeScreen, + layout: "/stock", + }, + { + id:4, + path: "/csp", + name: "Cost and Sales Prices", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CspScreen, + layout: "/stock", + }, + { + id:5, + path: "/abs", + name: "All Branches Stock", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AbsScreen, + layout: "/stock", + }, + { + id:6, + path: "/product-track", + name: "Product Track", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductTrackScreen, + layout: "/stock", + }, + { + id:16, + path: "/stock-transfer", + name: "Stock Transfer", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferScreen, + layout: "/stock", + }, + { + id:15, + path: "/stock-transfer-mismatch", + name: "Stock Transfer Mismatch", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferMismatchScreen, + layout: "/stock", + }, + + { + id:7, + path: "/transferdetail", + name: "Shifting Invoice Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SIDScreen, + layout: "/stock", + }, + { + id:8, + path: "/adjustments", + name: "Stock Adjustments", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockAdjustmentScreen, + layout: "/stock", + }, + { + id:9, + path: "/adjustmentdetail", + name: "Adjustment Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AdjDetailScreen, + layout: "/stock", + }, + { + id:10, + path: "/deliverynotes", + name: "Delivery Notes", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DeliveryNotesScreen, + layout: "/stock", + }, + { + id:11, + path: "/deliverynotedetail", + name: "Delivery Note Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DeliveryNoteDetailScreen, + layout: "/stock", + }, + { + id:12, + path: "/goodsreceivednotes", + name: "GRN List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: GRNlistScreen, + layout: "/stock", + }, + { + id:13, + path: "/goodsreceivednotedetail", + name: "GRN Detail", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: GRNDetailScreen, + layout: "/stock", + }, + ...routesRetail + // { + // id:2, + // path: "/productivity/dfs", + // name: "DFS Exec", + // rtlName: "قائمة الجدول", + // icon: "content_paste", + // component: DFSScreen, + // layout: "/stock", + // }, + +]; + +export default dashboardRoutes; diff --git a/src/routesVouchers.js b/src/routesVouchers.js new file mode 100644 index 0000000..3383d08 --- /dev/null +++ b/src/routesVouchers.js @@ -0,0 +1,134 @@ +import Stock from "layouts/Stock.js"; +import RetailSales from "layouts/RetailSales.js"; + +import Productivity from "layouts/Productivity.js"; +import AdminSales from "layouts/adminSales.js"; +import Accounts from "layouts/Accounts.js"; +import TableList from "views/TableList/TableList.js"; +import SwbeScreen from "views/TableList/SwbeScreen"; +import CspScreen from "views/TableList/CspScreen"; +import AbsScreen from "views/TableList/AbsScreen"; +import ProductTrackScreen from "views/TableList/ProductTrackScreen"; +import SIDScreen from "views/TableList/SIDScreen"; +import StockAdjustmentScreen from "views/TableList/StockAdjustmentScreen"; +import StockTransferMismatchScreen from "views/TableList/StockTransferMismatchScreen"; +import StockTransferScreen from "views/TableList/StockTransferScreen"; +import AdjDetailScreen from "views/TableList/AdjDetailScreen"; +import DeliveryNotesScreen from "views/TableList/DeliveryNotesScreen"; +import DeliveryNoteDetailScreen from "views/TableList/DeliveryNoteDetailScreen"; +import GRNlistScreen from "views/TableList/GRNlistScreen"; +import GRNDetailScreen from "views/TableList/GRNDetailScreen"; + +const dashboardRoutes = [ + { + id: 61, + path: "/new-category", + name: "New Category", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: TableList, + layout: "/voucher", + }, + { + id: 62, + path: "/category-list", + name: "Category List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SwbeScreen, + layout: "/voucher", + }, + { + id: 63, + path: "/new-brand", + name: "Cost and Sales Prices", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: CspScreen, + layout: "/voucher", + }, + { + id: 64, + path: "/brand-list", + name: "All Branches Stock", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AbsScreen, + layout: "/voucher", + }, + { + id: 65, + path: "/new-unit", + name: "New Unit", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: ProductTrackScreen, + layout: "/voucher", + }, + { + id: 66, + path: "/unit-list", + name: "Unit List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferScreen, + layout: "/voucher", + }, + { + id: 67, + path: "/new-origin", + name: "New Origin", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockTransferMismatchScreen, + layout: "/voucher", + }, + + { + id: 68, + path: "/origins-list", + name: "origins List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: SIDScreen, + layout: "/voucher", + }, + { + id: 69, + path: "/new-product", + name: "New Product", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: StockAdjustmentScreen, + layout: "/voucher", + }, + { + id: 70, + path: "/master-product-list", + name: "Master Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: AdjDetailScreen, + layout: "/voucher", + }, + { + id: 71, + path: "/product-list", + name: "Product List", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DeliveryNotesScreen, + layout: "/voucher", + }, + { + id: 72, + path: "/pricing", + name: "Pricing", + rtlName: "قائمة الجدول", + icon: "content_paste", + component: DeliveryNoteDetailScreen, + layout: "/voucher", + }, +]; + +export default dashboardRoutes; diff --git a/src/services/auth-header.js b/src/services/auth-header.js new file mode 100644 index 0000000..e63153d --- /dev/null +++ b/src/services/auth-header.js @@ -0,0 +1,15 @@ +export default function authHeader() { + const user = JSON.parse(localStorage.getItem("user")); + + console.log(user.Token); + + if (user.Token) { + // For Spring Boot back-end + // return { Authorization: "Bearer " + user.accessToken }; + + // for Node.js Express back-end + return { "Auth-Token": user.Token }; + } else { + return {}; + } +} diff --git a/src/services/auth.service.js b/src/services/auth.service.js new file mode 100644 index 0000000..751fb92 --- /dev/null +++ b/src/services/auth.service.js @@ -0,0 +1,97 @@ +import axios from "axios"; + // import authHeader from "./auth-header"; + + +// const { REACT_APP_BACKEND_API } = process.env; +const API_URL = "http://145.239.254.41:8095/api/loginsessions"; + + +const login = (loginName, password,companyId) => { + return axios + .post(API_URL , { + loginName, + password, + companyId + }) + .then((response) => { + console.log(response.data.Data); + if (response.data.Data.Token) { + localStorage.setItem( + "user", + JSON.stringify(response.data.Data) + ); + } + // localStorage.setItem( + // "UserId", + // JSON.stringify(response.data.result.userid), + // ); + // localStorage.setItem( + // "Email", + // JSON.stringify(response.data.result.email), + // ); + // } + + return response.data; + }); +}; + +// const verificationResend = () => { +// return axios.get(API_URL + "resendverificationcode", { headers: authHeader() }); +// } + + +// const resetPassword = (OldPassword, NewPassword) => { +// return axios.post(API_URL + "resetpassword", { +// OldPassword, NewPassword +// }, { headers: authHeader() }); + +// } +// const verifyEmailCode = (code) => { +// return axios.post(API_URL + "verifyemailcode", { +// code +// }, +// { headers: authHeader() } +// ).then((response) => { +// if (response.data.result.token) { +// localStorage.setItem( +// "user", +// JSON.stringify(response.data.result.token) +// ); +// } +// return response.data; +// }); +// } +// const validateForogtPasswordLink = (userid,code) => { +// return axios.post(API_URL + "validateforogtpasswordlink", { +// userid, +// code +// }); +// } +// const updateNewPassword = (UserId,NewPassword) => { +// return axios.post(API_URL + "updatenewpassword", { +// UserId, +// NewPassword +// }); +// } +// const sendForgetPasswordEmail = (email) => { +// return axios.get(API_URL + `sendforgetpasswordemail?email=${email}` +// ) +// }; + +const logout = () => { + localStorage.removeItem("user"); + // localStorage.removeItem("profileImage"); + // localStorage.removeItem("UserId"); + // localStorage.removeItem("Email"); +}; + +export default { + login, + logout, + // verificationResend, + // verifyEmailCode, + // resetPassword, + // sendForgetPasswordEmail, + // validateForogtPasswordLink, + // updateNewPassword +}; diff --git a/src/services/common.service.js b/src/services/common.service.js new file mode 100644 index 0000000..d1df100 --- /dev/null +++ b/src/services/common.service.js @@ -0,0 +1,58 @@ +import axios from "axios"; +import authHeader from "./auth-header.js" + + +const REACT_APP_BACKEND_API = "http://145.239.254.41:8095/"; +const API_URL = REACT_APP_BACKEND_API + "api/"; + +const Brands = () => { + return axios.get(API_URL+ `brands?query=&page=1&start=0&limit=100000&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const Supplier = () => { + return axios.get(API_URL+ `suppliers?query=&page=1&start=0&limit=10000&sort=[{"property":"title","direction":"ASC"}]`, { headers: authHeader() }); +} +const Origin = () => { + return axios.get(API_URL+ `productorigins?query=&page=1&start=0&limit=100000&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const Categories = () => { + return axios.get(API_URL+ `categories?query=&page=1&start=0&limit=10000&group=[{"property":"parentCategoryTitle","direction":"ASC"}]&sort=[{"property":"parentCategoryTitle","direction":"ASC"},{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const Product = (search,page) => { + return axios.get(API_URL+ `products?query=&page=${page}&start=0&limit=10&group=[{"property":"categoryTitle","direction":"ASC"},{"property":"subCategoryTitle","direction":"ASC"}]&sort=[{"property":"categoryTitle","direction":"ASC"},{"property":"subCategoryTitle","direction":"ASC"},{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const AdjustmentType = () => { + return axios.get(API_URL+ `stock/adjustments/types?query=&page=1&start=0&limit=1000&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const Customer = () => { + return axios.get(API_URL+ `customers?query=&page=1&start=0&limit=5000&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const Transfer = () => { + return axios.get(API_URL+ `branches?query=&page=1&start=0&limit=10&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const Account = () => { + // return axios.get(API_URL+ `branches?query=&page=1&start=0&limit=10&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const SecondAccount = () => { + // return axios.get(API_URL+ `branches?query=&page=1&start=0&limit=10&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const BusinessType = () => { + // return axios.get(API_URL+ `branches?query=&page=1&start=0&limit=10&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} +const ParentCategory = () => { + // return axios.get(API_URL+ `branches?query=&page=1&start=0&limit=10&sort=[{"property":"title","direction":"ASC"}]&filter=[{"property":"active","value":true}]`, { headers: authHeader() }); +} + +export default { + Transfer, + Brands, + Supplier, + Origin, + Categories, + Product, + AdjustmentType, + Customer, + Account, + SecondAccount, + BusinessType, + ParentCategory +}; diff --git a/src/services/company.service.js b/src/services/company.service.js new file mode 100644 index 0000000..823757d --- /dev/null +++ b/src/services/company.service.js @@ -0,0 +1,13 @@ +import axios from "axios"; + + +const REACT_APP_BACKEND_API = "http://145.239.254.41:8095"; +const API_URL = REACT_APP_BACKEND_API + "/api/companies?page=1&start=0&limit=10"; + +const companyName = () => { + return axios.get(API_URL); +} + +export default { + companyName +}; diff --git a/src/services/dashboard.service.js b/src/services/dashboard.service.js new file mode 100644 index 0000000..6bc44de --- /dev/null +++ b/src/services/dashboard.service.js @@ -0,0 +1,15 @@ +import axios from "axios"; +import authHeader from "./auth-header.js" + + +const REACT_APP_BACKEND_API = "http://145.239.254.41:8095/"; +const API_URL = REACT_APP_BACKEND_API + "api/"; + +const Dashboard = (id) => { + return axios.get(API_URL+ `locations/${id}/ActivityStats`, { headers: authHeader() }); +} + + +export default { + Dashboard, +}; diff --git a/src/services/dfsExecution.service.js b/src/services/dfsExecution.service.js new file mode 100644 index 0000000..930b375 --- /dev/null +++ b/src/services/dfsExecution.service.js @@ -0,0 +1,20 @@ +import axios from "axios"; +// import authHeader from "./auth-header.js" + + +const REACT_APP_BACKEND_API = "http://localhost:4419/"; +const API_URL = REACT_APP_BACKEND_API + "/analysis/productivity/"; + +const DfsExecution = (from, to) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get(API_URL + `dsfexecution?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}"}`); +} +// const OpeningStockDownload = (date, locationId) => { +// // const user = JSON.parse(localStorage.getItem("user")); +// // return axios.get(API_URL + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}`); +// } + +export default { + DfsExecution, + // OpeningStockDownload +}; diff --git a/src/services/dummy-data.js b/src/services/dummy-data.js new file mode 100644 index 0000000..54353c6 --- /dev/null +++ b/src/services/dummy-data.js @@ -0,0 +1,101 @@ + +const OpeningStock = { + "tableHead": [ + "Sr#", "Date", "Order#", "Product", "Quantity","Price" + ], + "tableData": [] +} +const StockBatchExpiry = { + "tableHead": [ + "Name" ,"Tot Orders ", "Tot Exec ", "Inv PCT ", "Tot Cust ", "Exe Cust ", "Load Value ", "Supply Value" + ], + "tableData": [[ + "ABID ULLAH", + "1", 0, 0, 1, 0, 3700.00, 0 + ],[ + "Afzal Khan", +6, 0, 0, 6 ,0, 140794.80, 0 + ],[ + "Anwar", +21 ,21 ,100 ,2 ,2 ,3564700.64 ,0 + ],[ + "Fahad Shah" + ,7 ,0 ,0 ,5 ,0 ,575744.25 ,0 + ],[ + "Momin Khan" + ,1 ,0 ,0 ,1 ,0 ,143575.00 ,0 + ],[ + "MUDASSAR IJAZ", +2 ,0 ,0 ,2 ,0 ,262455.00 ,0 + ],[ + "PESHAWAR RETAIL USER", +1 ,0 ,0 ,1 ,0 ,785809.98 ,0 + + ],[ + "SAJJAD ANWER", + 2, 0, 0, 2, 0, 102726.00, 0 + ]] +} +const CostAndSalesPrice = { + "tableHead": [ + "Sr#", "Product Code", "Product Name", "Barcode", "Cost Price (Calculated)", "Khyber Price (Assigned)", "Sale Price (Assigned)" ,"Sale Price (Calculated)" + ], + "tableData": [[ + "1","WAL01004", "ADIDAS BODY SPRAY 150ML ( POWER )", "BATCH_23", "0", "0", "0", "0" + ],[ + "2","WAL01004", "ADIDAS BODY SPRAY 150ML ( POWER )", "BATCH_23", "0", "0", "0", "0" + ],[ + "3","WAL01004", "ADIDAS BODY SPRAY 150ML ( POWER )", "BATCH_23", "0", "0", "0", "0" + ],[ + "4","WAL01004", "ADIDAS BODY SPRAY 150ML ( POWER )", "BATCH_23", "0", "0", "0", "0" + ],[ + "5","WAL01004", "ADIDAS BODY SPRAY 150ML ( POWER )", "BATCH_23", "0", "0", "0", "0" + ],[ + "6","WAL01004", "ADIDAS BODY SPRAY 150ML ( POWER )", "BATCH_23", "0", "0", "0", "0" + ],] +} +const AllBranchStock = { + "tableHead": [ + "Sr#", "Product Code", "Product Name", "Category", "Karachi W/H", "LHR Shahalam W/H" + , "LHR KT MARKETING W/H" ,"LHR SAGYAN W/H","Khyber House W/H", "LHR CORPORATION W/H", "Islamabad W/H", "Peshawar W/H", "Total (pcs)", "Total (dzn)" + ], + "tableData": [[ + "1", "ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" + ],[ + "2","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" + ],[ + "3","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" + ],[ + "4","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" + ],[ + "5","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" + ],[ + "6","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" + ],] +} +const ProductTrack = { + "tableHead": [ + "Sr#", "Date", "Reference", "Code", "Nature", "In", "Out", "Balance" ], + "tableData": [[ + "1", "ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", + ],[ + "2","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", + ],[ + "3","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", + ],[ + "4","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", + ],[ + "5","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", + ],[ + "6","ARN01001", "AFTON AIR FRESHENER 240ML ( CITRUS CHOICE )", "AIR CARE / AIR FRESHNER", "0", "0", "0", "0", + ],] +} + + +export default { + OpeningStock, + StockBatchExpiry, + CostAndSalesPrice, + AllBranchStock, + ProductTrack +} \ No newline at end of file diff --git a/src/services/location.service.js b/src/services/location.service.js new file mode 100644 index 0000000..6c704b6 --- /dev/null +++ b/src/services/location.service.js @@ -0,0 +1,14 @@ +import axios from "axios"; +import authHeader from "./auth-header.js" + + +const REACT_APP_BACKEND_API = "http://145.239.254.41:8095/"; +const API_URL = REACT_APP_BACKEND_API + "/api/locations?page=1&start=0&limit=1000"; + +const Location = () => { + return axios.get(API_URL, { headers: authHeader() }); +} + +export default { + Location +}; diff --git a/src/services/openingStock.service.js b/src/services/openingStock.service.js new file mode 100644 index 0000000..72a3cbf --- /dev/null +++ b/src/services/openingStock.service.js @@ -0,0 +1,20 @@ +import axios from "axios"; +// import authHeader from "./auth-header.js" + + +const REACT_APP_BACKEND_API = "http://145.239.254.41:8095/"; +const API_URL = REACT_APP_BACKEND_API + "/analysis/stock/"; + +const OpeningStock = (date, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get(API_URL + `openingstock?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}`); +} +const OpeningStockDownload = (date, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get(API_URL + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}`); +} + +export default { + OpeningStock, + OpeningStockDownload +}; diff --git a/src/services/tables.service.js b/src/services/tables.service.js new file mode 100644 index 0000000..a477100 --- /dev/null +++ b/src/services/tables.service.js @@ -0,0 +1,757 @@ +import axios from "axios"; +// import authHeader from "./auth-header.js" + +const REACT_APP_BACKEND_API = "http://145.239.254.41:8095/analysis/"; +const BASE_API_URL = REACT_APP_BACKEND_API; +const API_URL = REACT_APP_BACKEND_API + "stock/"; +const API_URL_SALES = REACT_APP_BACKEND_API + "sales/"; +const API_URL_ACCOUNTS = REACT_APP_BACKEND_API + "accounts/"; +const BASE_URL = "http://145.239.254.41:8095/"; + +const SWBE = ( + date = "12/17/2021", + locationId = 3, + categoryId = 6, + brandId = 68, + supplierId = 3432, + originId = 1, + minval = "1", + maxval = "4", + expfrom = "2021-02-17", + expto = "2018-12-17", + groupBy = "category", + direction = "asc", + orderby = "product" +) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `currentstock?Auth-Token=${user.Token}&criteria={"locationId":${locationId},"categoryId":${categoryId},"brandId":${brandId},"supplierId":${supplierId},"originId":${originId},"minQuantity":"${minval}","maxQuantity":"${maxval}","exprFrom":"${expfrom}","exprTo":"${expto}","tillDate":"${date}","orderBy":"${orderby}","sortDir":"${direction}","groupBy":"${groupBy}"}`; + + return axios.get(API); +}; +const SWBEDownload = (date, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get( + API_URL + + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}` + ); +}; +const CSP = ( + locationId, + categoryId, + brandId, + supplierId, + originId, + minval, + maxval +) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `iopricing?Auth-Token=${user.Token}&criteria={"locationId":${locationId},"categoryId":${categoryId},"brandId":${brandId},"supplierId":${supplierId},"originId":${originId},"minQuantity":"${minval}","maxQuantity":"${maxval}"}`; + return axios.get(API); +}; +const CSPDownload = (date, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get( + API_URL + + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}` + ); +}; +const ABS = (categoryId, brandId, supplierId, originId, date, groupBy) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `stockcomparison?Auth-Token=${user.Token}&criteria={"categoryId":${categoryId},"brandId":${brandId},"supplierId":${supplierId},"originId":${originId},"tillDate":"${date}","groupBy":"${groupBy}"}`; + return axios.get(API); +}; +const DCS = (Date) => { + const API = + BASE_API_URL + + `accounts/DailyCombinedStatement?criteria={"Date":"${Date}"}`; + const user = JSON.parse(localStorage.getItem("user")); + var config = { + method: "get", + url: API, + headers: { + "Auth-Token": user.Token, + }, + }; + + return axios(config); +}; + +const WSL = (fromDate, toDate) => { + const API = + BASE_API_URL + + `sales/WholesaleLedger?criteria={"fromDate":"${fromDate}", "toDate":"${toDate}"}`; + const user = JSON.parse(localStorage.getItem("user")); + var config = { + method: "get", + url: API, + headers: { + "Auth-Token": user.Token, + }, + }; + + return axios(config); +}; + +const BCBS = (date) => { + const API = + BASE_API_URL + + `/accounts/DailyCombinedSummaryStatement?criteria={"Date":"${date}"}`; + const user = JSON.parse(localStorage.getItem("user")); + var config = { + method: "get", + url: API, + headers: { + "Auth-Token": user.Token, + }, + }; + + return axios(config); +}; + +const ABSDownload = (date, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get( + API_URL + + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}` + ); +}; +const ProductTrack = (from, to, locationId, productId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `producttrack?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","locationId":${locationId},"productId":${productId}}`; + return axios.get(API); +}; +const StockTransferMismatch = (from, to) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `transfermismatches?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}"}`; + return axios.get(API); +}; +const StockTransfer = (from, to, fromBranchId, toBranchId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `transfers?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","fromBranchId":${fromBranchId},"toBranchId":${toBranchId}}`; + return axios.get(API); +}; +const ProductTrackDownload = (date, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + return axios.get( + API_URL + + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}` + ); +}; +const SID = (ref) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `transferdetail?Auth-Token=${user.Token}&criteria={"referenceCode":"${ref}"}`; + + return axios.get(API); +}; +const StockAdjustment = (from, to, locationId, adjustmentId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `adjustments?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","locationId":${locationId},"typeId":${adjustmentId}}`; + + return axios.get(API); +}; +const AdjustmentDetails = (ref) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `adjustmentdetail?Auth-Token=${user.Token}&criteria={"referenceCode":"${ref}"}`; + + return axios.get(API); +}; +const DeliveryNotes = (from, to) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `deliverynotes?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}"}`; + + return axios.get(API); +}; +const DeliveryNotesDetails = (ref) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `deliverynotedetail?Auth-Token=${user.Token}&criteria={"referenceCode":"${ref}"}`; + + return axios.get(API); +}; +const GRDList = (from, to) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `goodsreceivednotes?Auth-Token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}"}`; + + return axios.get(API); +}; +const GRNDetail = (ref) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `goodsreceivednotedetail?Auth-Token=${user.Token}&criteria={"referenceCode":"${ref}"}`; + + return axios.get(API); +}; +const InvoiceSummary = (from, to, customerID, group) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `salesIndex?Auth-token=${ + user.Token + }&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"GroupingType":${parseInt( + group + )},"reportType":"1"}`; + + return axios.get(API); +}; +const InvoiceDetail = (from, to, customerID, group) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `salesIndex?Auth-token=${ + user.Token + }&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"GroupingType":${parseInt( + group + )},"reportType":"2"}`; + + return axios.get(API); +}; +const ByMonth = (from, to, customerID, group) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `salessummary?Auth-token=${ + user.Token + }&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"GroupingType":${parseInt( + group + )},"saleGroupOptions":"1"}`; + + return axios.get(API); +}; +const ByYear = (from, to, customerID, group) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `salessummary?Auth-token=${ + user.Token + }&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"GroupingType":${parseInt( + group + )},"saleGroupOptions":"2"}`; + + return axios.get(API); +}; +const ByCustomer = (from, to, customerID, group) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `salessummary?Auth-token=${ + user.Token + }&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"GroupingType":${parseInt( + group + )},"saleGroupOptions":"3"}`; + + return axios.get(API); +}; +const PartySummary = (date) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `partysummary?Auth-token=${user.Token}&criteria={"date":"${date}"}`; + + return axios.get(API); +}; +const SRC = (from, to, customerID, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `SaleRatesByCustomer?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"supplierId":${supplierID}}`; + + return axios.get(API); +}; +const IMSCUST = (from, to, customerID, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomer?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","customerId":${customerID},"supplierId":${supplierID}}`; + + return axios.get(API); +}; +const IMSCUSTSUM = (from, to, locationId, monthseperated) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomerRetailSummary?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","locationId":${locationId},"monthseperated":"${monthseperated}"}`; + + return axios.get(API); +}; +const IMSCHANNEL = (from, to, locationId, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomerType?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","locationId":${locationId},"supplierId":${supplierID}}`; + + return axios.get(API); +}; +const IMSSupplier = (from, to, suppPrice, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `imssupplier?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","bySupplierPrice":${suppPrice},"supplierId":${supplierID}}`; + + return axios.get(API); +}; +const IMSProduct = (from, to, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsProduct?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID}}`; + + return axios.get(API); +}; +const IMSBYCUSTCHANNELADMIN = (from, to, supplierID, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomerType?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID},"locationId":${locationId}}`; + + return axios.get(API); +}; +const IMSBYCUSTSUMADMIN = (from, to, supplierID, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomerSummary?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID},"locationId":${locationId}}`; + + return axios.get(API); +}; +const IMSBYCUSTADMIN = (from, to, supplierID, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomer?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID},"locationId":${locationId}}`; + + return axios.get(API); +}; +const BranchCategory = (locationId, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `LastYearSalesComparison?Auth-token=${user.Token}&criteria={"supplierId":${supplierID},"branchId":${locationId},"comparisonType":"1"}`; + + return axios.get(API); +}; +const BranchSummary = (locationId, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `LastYearSalesComparison?Auth-token=${user.Token}&criteria={"supplierId":${supplierID},"branchId":${locationId},"comparisonType":"2"}`; + + return axios.get(API); +}; +const keysummary = (locationId, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `LastYearSalesComparison?Auth-token=${user.Token}&criteria={"supplierId":${supplierID},"branchId":${locationId},"comparisonType":"3"}`; + + return axios.get(API); +}; +const keydetail = (locationId, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `LastYearSalesComparison?Auth-token=${user.Token}&criteria={"supplierId":${supplierID},"branchId":${locationId},"comparisonType":"4"}`; + + return axios.get(API); +}; +const BranchProduct = (locationId, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `LastYearSalesComparison?Auth-token=${user.Token}&criteria={"supplierId":${supplierID},"branchId":${locationId},"comparisonType":"5"}`; + + return axios.get(API); +}; +const StockDays = (from, to, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `StockDays?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID}}`; + + return axios.get(API); +}; +const AllStockSales = (from, to, supplierID) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `StockAndSales?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID}}`; + + return axios.get(API); +}; +const SalesByCustomer = (from, to, supplierID, customerID, type) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `SalesByCutomer?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supplierID},"customerId":${customerID},"reportType":${type}}`; + + return axios.get(API); +}; +const SalesComparison = (from, to, secondfrom, secondto) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `periodiccomparison?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","SecondFromDate":"${secondfrom}","SecondToData":"${secondto}"}`; + + return axios.get(API); +}; +const Sales = (from, to) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `salescomparison?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}"}`; + + return axios.get(API); +}; + +const ImsCustomerRetailPNLSummary = (from, to, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `ImsCustomerRetailPNLSummary?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","locationId":${locationId}}`; + + return axios.get(API); +}; +const khyberByBranchPLS = (from, to, reportType) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_SALES + + `bybranchpls?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","reportType":${reportType}}`; + + return axios.get(API); +}; +const stockValueVendor = (to, locationId) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `valuebyvendor?Auth-token=${user.Token}&criteria={"ClosingDate":"${to}","locationId":${locationId}}`; + + return axios.get(API); +}; +const stockValueProductLocation = (to, supp) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL + + `ValueByProductAndLocation?Auth-token=${user.Token}&criteria={"ClosingDate":"${to}","supplierId":${supp}}`; + + return axios.get(API); +}; +const companiesProfitWise = (from, to, supp) => { + const user = JSON.parse(localStorage.getItem("user")); + const API = + API_URL_ACCOUNTS + + `pnlbyvendors?Auth-token=${user.Token}&criteria={"fromDate":"${from}","toDate":"${to}","supplierId":${supp}}`; + + return axios.get(API); +}; + +const categoryList = async () => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var requestOptions = { + method: "GET", + headers: myHeaders, + redirect: "follow", + }; + + return fetch( + "http://145.239.254.41:8095/api/categories?start=0&page=1&limit=25&parentsOnly=null&parentId=null", + requestOptions + ) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); + // + // const API = + // BASE_URL + + // `api/categories?Auth-Token=${user.Token}&start=0&page=1&limit=25`; + // var config = { + // method: "get", + // url: API, + // headers: { + // "Auth-Token": user.Token, + // }, + // }; + // const data = await axios(config); + // console.log("DSadhnskjad", data); +}; + +const newBrand = async ({ title, date, description, shared, active }) => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var formdata = new FormData(); + formdata.append("title", title); + formdata.append("date", date); + formdata.append("description", description); + formdata.append("shared", shared); + formdata.append("active", active); + + var requestOptions = { + method: "POST", + headers: myHeaders, + body: formdata, + redirect: "follow", + }; + + return fetch("http://145.239.254.41:8095/api/brands", requestOptions) + .then((response) => response.text()) + .then((result) => console.log("Dsadsa", result)) + .catch((error) => console.log("error", error)); + // const brandData = { title, date, description, shared, active }; + // const API = BASE_URL + `/api/brands`; + // const user = JSON.parse(localStorage.getItem("user")); + // var config = { + // method: "post", + // url: API, + // headers: { + // "Auth-Token": user.Token, + // }, + // data: brandData, + // }; + // const data = axios(config); + // console.log("Dshdikwujew", data); + // return data; +}; + +const brandList = async () => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var requestOptions = { + method: "GET", + headers: myHeaders, + redirect: "follow", + }; + + return fetch( + "http://145.239.254.41:8095/api/brands?start=0&page=1&limit=25", + requestOptions + ) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); + // const API = BASE_URL + `api/brands?start=0&page=1&limit=25`; + // const user = JSON.parse(localStorage.getItem("user")); + // var config = { + // method: "get", + // url: API, + // headers: { + // "Auth-Token": user.Token, + // }, + // }; + // return axios(config); +}; + +const newUnit = async ({ title, description, date, shared, active }) => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var formdata = new FormData(); + formdata.append("title", title); + formdata.append("date", date); + formdata.append("description", description); + formdata.append("shared", shared); + formdata.append("active", active); + + var requestOptions = { + method: "POST", + headers: myHeaders, + body: formdata, + redirect: "follow", + }; + + return fetch("http://145.239.254.41:8095/api/units", requestOptions) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); +}; + +const unitList = async () => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var requestOptions = { + method: "GET", + headers: myHeaders, + redirect: "follow", + }; + + return fetch( + "http://145.239.254.41:8095/api/units?start=0&page=1&limit=25", + requestOptions + ) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); +}; + +const newOrigin = async ({ title, description, date, shared, active }) => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var formdata = new FormData(); + formdata.append("title", title); + formdata.append("date", date); + formdata.append("description", description); + formdata.append("shared", shared); + formdata.append("active", active); + + var requestOptions = { + method: "POST", + headers: myHeaders, + body: formdata, + redirect: "follow", + }; + + return fetch("http://145.239.254.41:8095/api/productorigins", requestOptions) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); +}; + +const originList = async () => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var requestOptions = { + method: "GET", + headers: myHeaders, + redirect: "follow", + }; + + return fetch( + "http://145.239.254.41:8095/api/productorigins?start=0&page=1&limit=25", + requestOptions + ) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); + // const API = BASE_URL + `api/brands?start=0&page=1&limit=25`; + // const user = JSON.parse(localStorage.getItem("user")); + // var config = { + // method: "get", + // url: API, + // headers: { + // "Auth-Token": user.Token, + // }, + // }; + // return axios(config); +}; + +const masterProductList = async () => { + const user = JSON.parse(localStorage.getItem("user")); + var myHeaders = new Headers(); + myHeaders.append("Auth-Token", user.Token); + + var requestOptions = { + method: "GET", + headers: myHeaders, + redirect: "follow", + }; + + return fetch( + "http://145.239.254.41:8095/api/products?masterList=true&page=1&start=0&limit=25", + requestOptions + ) + .then((response) => response.text()) + .then((result) => result) + .catch((error) => console.log("error", error)); +}; + +// const SIDDownload = (date, locationId) => { +// const user = JSON.parse(localStorage.getItem("user")); +// return axios.get(API_URL + `openingstockdownload?Auth-Token=${user.Token}&criteria={"openingDate":"${date}","locationId":${locationId}}`); +// } + +export default { + masterProductList, + newUnit, + unitList, + categoryList, + newOrigin, + originList, + newBrand, + brandList, + SWBE, + SWBEDownload, + CSP, + CSPDownload, + ABS, + DCS, + WSL, + BCBS, + ABSDownload, + ProductTrack, + ProductTrackDownload, + SID, + StockAdjustment, + AdjustmentDetails, + DeliveryNotes, + DeliveryNotesDetails, + DeliveryNotesDetails, + GRDList, + GRNDetail, + StockTransferMismatch, + StockTransfer, + InvoiceSummary, + InvoiceDetail, + ByMonth, + ByYear, + ByCustomer, + PartySummary, + SRC, + IMSCUST, + IMSCUSTSUM, + IMSCHANNEL, + IMSSupplier, + IMSProduct, + IMSBYCUSTCHANNELADMIN, + IMSBYCUSTSUMADMIN, + IMSBYCUSTADMIN, + BranchCategory, + BranchProduct, + BranchSummary, + keydetail, + keysummary, + StockDays, + AllStockSales, + SalesByCustomer, + SalesComparison, + Sales, + ImsCustomerRetailPNLSummary, + khyberByBranchPLS, + stockValueVendor, + stockValueProductLocation, + companiesProfitWise, +}; diff --git a/src/store.js b/src/store.js new file mode 100644 index 0000000..9532906 --- /dev/null +++ b/src/store.js @@ -0,0 +1,13 @@ +import { createStore, applyMiddleware } from "redux"; +import { composeWithDevTools } from "redux-devtools-extension"; +import thunk from "redux-thunk"; +import rootReducer from "reducers"; + +const middleware = [thunk]; + +const store = createStore( + rootReducer, + composeWithDevTools(applyMiddleware(...middleware)) +); + +export default store; diff --git a/src/variables/charts.js b/src/variables/charts.js new file mode 100644 index 0000000..f8ee9b5 --- /dev/null +++ b/src/variables/charts.js @@ -0,0 +1,190 @@ +// ############################## +// // // javascript library for creating charts +// ############################# +var Chartist = require("chartist"); + +// ############################## +// // // variables used to create animation on charts +// ############################# +var delays = 80, + durations = 500; +var delays2 = 80, + durations2 = 500; + +// ############################## +// // // Daily Sales +// ############################# + +const dailySalesChart = { + data: { + labels: ["M", "T", "W", "T", "F", "S", "S"], + series: [[12, 17, 7, 17, 23, 18, 38]], + }, + options: { + lineSmooth: Chartist.Interpolation.cardinal({ + tension: 0, + }), + low: 0, + high: 50, // creative tim: we recommend you to set the high sa the biggest value + something for a better look + chartPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0, + }, + }, + // for animation + animation: { + draw: function (data) { + if (data.type === "line" || data.type === "area") { + data.element.animate({ + d: { + begin: 600, + dur: 700, + from: data.path + .clone() + .scale(1, 0) + .translate(0, data.chartRect.height()) + .stringify(), + to: data.path.clone().stringify(), + easing: Chartist.Svg.Easing.easeOutQuint, + }, + }); + } else if (data.type === "point") { + data.element.animate({ + opacity: { + begin: (data.index + 1) * delays, + dur: durations, + from: 0, + to: 1, + easing: "ease", + }, + }); + } + }, + }, +}; + +// ############################## +// // // Email Subscriptions +// ############################# + +const emailsSubscriptionChart = { + data: { + labels: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec", + ], + series: [[542, 443, 320, 780, 553, 453, 326, 434, 568, 610, 756, 895]], + }, + options: { + axisX: { + showGrid: false, + }, + low: 0, + high: 1000, + chartPadding: { + top: 0, + right: 5, + bottom: 0, + left: 0, + }, + }, + responsiveOptions: [ + [ + "screen and (max-width: 640px)", + { + seriesBarDistance: 5, + axisX: { + labelInterpolationFnc: function (value) { + return value[0]; + }, + }, + }, + ], + ], + animation: { + draw: function (data) { + if (data.type === "bar") { + data.element.animate({ + opacity: { + begin: (data.index + 1) * delays2, + dur: durations2, + from: 0, + to: 1, + easing: "ease", + }, + }); + } + }, + }, +}; + +// ############################## +// // // Completed Tasks +// ############################# + +const completedTasksChart = { + data: { + labels: ["12am", "3pm", "6pm", "9pm", "12pm", "3am", "6am", "9am"], + series: [[230, 750, 450, 300, 280, 240, 200, 190]], + }, + options: { + lineSmooth: Chartist.Interpolation.cardinal({ + tension: 0, + }), + low: 0, + high: 1000, // creative tim: we recommend you to set the high sa the biggest value + something for a better look + chartPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0, + }, + }, + animation: { + draw: function (data) { + if (data.type === "line" || data.type === "area") { + data.element.animate({ + d: { + begin: 600, + dur: 700, + from: data.path + .clone() + .scale(1, 0) + .translate(0, data.chartRect.height()) + .stringify(), + to: data.path.clone().stringify(), + easing: Chartist.Svg.Easing.easeOutQuint, + }, + }); + } else if (data.type === "point") { + data.element.animate({ + opacity: { + begin: (data.index + 1) * delays, + dur: durations, + from: 0, + to: 1, + easing: "ease", + }, + }); + } + }, + }, +}; + +module.exports = { + dailySalesChart, + emailsSubscriptionChart, + completedTasksChart, +}; diff --git a/src/variables/general.js b/src/variables/general.js new file mode 100644 index 0000000..f8e665d --- /dev/null +++ b/src/variables/general.js @@ -0,0 +1,26 @@ +// ############################## +// // // Tasks for TasksCard - see Dashboard view +// ############################# + +var bugs = [ + 'Sign contract for "What are conference organizers afraid of?"', + "Lines From Great Russian Literature? Or E-mails From My Boss?", + "Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit", + "Create 4 Invisible User Experiences you Never Knew About", +]; +var website = [ + "Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit", + 'Sign contract for "What are conference organizers afraid of?"', +]; +var server = [ + "Lines From Great Russian Literature? Or E-mails From My Boss?", + "Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit", + 'Sign contract for "What are conference organizers afraid of?"', +]; + +module.exports = { + // these 3 are used to create the tasks lists in TasksCard - Dashboard view + bugs, + website, + server, +}; diff --git a/src/views/Dashboard/Dashboard.js b/src/views/Dashboard/Dashboard.js new file mode 100644 index 0000000..5d3f81f --- /dev/null +++ b/src/views/Dashboard/Dashboard.js @@ -0,0 +1,464 @@ +import React, { useEffect, useState } from "react"; +// react plugin for creating charts +import ChartistGraph from "react-chartist"; +// @material-ui/core +import { makeStyles } from "@material-ui/core/styles"; +import Icon from "@material-ui/core/Icon"; +// @material-ui/icons +import Store from "@material-ui/icons/Store"; +import Warning from "@material-ui/icons/Warning"; +import { useSelector } from "react-redux"; + +import DateRange from "@material-ui/icons/DateRange"; +import LocalOffer from "@material-ui/icons/LocalOffer"; +import Update from "@material-ui/icons/Update"; +import ArrowUpward from "@material-ui/icons/ArrowUpward"; +import AccessTime from "@material-ui/icons/AccessTime"; +import Accessibility from "@material-ui/icons/Accessibility"; +import BugReport from "@material-ui/icons/BugReport"; +import Code from "@material-ui/icons/Code"; +import Cloud from "@material-ui/icons/Cloud"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Tasks from "components/Tasks/Tasks.js"; +import CustomTabs from "components/CustomTabs/CustomTabs.js"; +import Danger from "components/Typography/Danger.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardIcon from "components/Card/CardIcon.js"; +import CardBody from "components/Card/CardBody.js"; +import CardFooter from "components/Card/CardFooter.js"; +import Loader from "components/Loader/Loader.js"; + +import { bugs, website, server } from "variables/general.js"; + +import { + dailySalesChart, + emailsSubscriptionChart, + completedTasksChart, +} from "variables/charts.js"; +import DashboardService from "services/dashboard.service"; + +import styles from "assets/jss/material-dashboard-react/views/dashboardStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Dashboard() { + const classes = useStyles(); + const { user } = useSelector((state) => state.auth); + + const [stats, setStats] = useState(); + + useEffect(() => { + DashboardService.Dashboard(user.CompanyInfo.Id).then(res => { + setStats(res.data.data); + }) + }, []) + + return ( +
+ + + + + + content_copy + + {/*

Used Space

+

+ 49/50 GB +

*/} +
+ + Display Name: {user.DisplayName}
+ Company Name: {user.CompanyInfo.Title}
+ Location: {user.DefualtLocation.Title} + +
+ + + +
+
+ + {/* + + + + + +

Revenue

+

$34,245

+
+ +
+ + Last 24 Hours +
+
+
+
+ + + + + info_outline + +

Fixed Issues

+

75

+
+ +
+ + Tracked from Github +
+
+
+
+ + + + + + +

Followers

+

+245

+
+ +
+ + Just Updated +
+
+
+
+ */} +
+ + { stats ? +
+ + + + + + content_copy + +

+ Last Sale Stock Dispatch +

+
+ + Date: {stats ? stats.lastSaleStockDispatch.date : ""}
+ Reference Code: {stats ? stats.lastSaleStockDispatch.referenceCode : ""} + +
+ + + +
+
+ + + + + content_copy + + +

+ Last Sale Order +

+
+ + + Date: {stats ? stats.lastSaleOrder.date : ""}
+ Reference Code: {stats ? stats.lastSaleOrder.referenceCode : " "} + +
+ + + +
+
+
+ + + + + + content_copy + +

+ Last Stock Received +

+
+ + Date: {stats ? stats.lastStockReceived.date : ""}
+ Received From: {stats ? stats.lastStockReceived.receivedFrom : ""}
+ Reference Code: {stats ? stats.lastStockReceived.referenceCode : ""} + +
+ + + +
+
+ + + + + content_copy + +

+ Last Stock Transfer +

+
+ + Date: {stats ? stats.lastStockTransfer.date : ""}
+ Received From: {stats ? stats.lastStockTransfer.loctionToReceive : ""}
+ Reference Code: {stats ? stats.lastStockTransfer.referenceCode : ""} + +
+ + + +
+
+
+
+ :
} + {/* + + + + + +

Revenue

+

$34,245

+
+ +
+ + Last 24 Hours +
+
+
+
+ + + + + info_outline + +

Fixed Issues

+

75

+
+ +
+ + Tracked from Github +
+
+
+
+ + + + + + +

Followers

+

+245

+
+ +
+ + Just Updated +
+
+
+
+ */} + + {/* + + + + + + +

Daily Sales

+

+ + 55% + {" "} + increase in today sales. +

+
+ +
+ updated 4 minutes ago +
+
+
+
+ + + + + + +

Email Subscriptions

+

Last Campaign Performance

+
+ +
+ campaign sent 2 days ago +
+
+
+
+ + + + + + +

Completed Tasks

+

Last Campaign Performance

+
+ +
+ campaign sent 2 days ago +
+
+
+
+
+ */} + + {/* + + + ), + }, + { + tabName: "Website", + tabIcon: Code, + tabContent: ( + + ), + }, + { + tabName: "Server", + tabIcon: Cloud, + tabContent: ( + + ), + }, + ]} + /> + + + + +

Employees Stats

+

+ New employees on 15th September, 2016 +

+
+ + + + + + + */} + + ); +} diff --git a/src/views/Icons/Icons.js b/src/views/Icons/Icons.js new file mode 100644 index 0000000..438c0e9 --- /dev/null +++ b/src/views/Icons/Icons.js @@ -0,0 +1,65 @@ +/*eslint-disable*/ +import React from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import Hidden from "@material-ui/core/Hidden"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; + +import styles from "assets/jss/material-dashboard-react/views/iconsStyle.js"; + +const useStyles = makeStyles(styles); + +export default function Icons() { + const classes = useStyles(); + return ( + + + + +

Material Design Icons

+

+ Handcrafted by our friends from{" "} + + Google + +

+
+ + + + + + +
+ The icons are visible on Desktop mode inside an iframe. Since + the iframe is not working on Mobile and Tablets please visit + the icons on their original page on Google. Check the + + Material Icons + +
+
+
+
+
+
+
+ ); +} diff --git a/src/views/Login/LoginPage.js b/src/views/Login/LoginPage.js new file mode 100644 index 0000000..931418c --- /dev/null +++ b/src/views/Login/LoginPage.js @@ -0,0 +1,213 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import InputAdornment from "@material-ui/core/InputAdornment"; +import Icon from "@material-ui/core/Icon"; +// @material-ui/icons +import Email from "@material-ui/icons/Email"; +import { useDispatch } from "react-redux"; +import { useSelector } from "react-redux"; + +// import People from "@material-ui/icons/People"; +// core components +// import Header from "components/Header/Header.js"; +// import HeaderLinks from "components/Header/HeaderLinks.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Select from "react-select"; + +import Danger from "components/Typography/Danger.js"; +import Warning from "@material-ui/icons/Warning"; + +import GridItem from "components/Grid/GridItem.js"; +import Button from "components/CustomButtons/Button.js"; +import Card from "components/Card/Card.js"; +import CardBody from "components/Card/CardBody.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardFooter from "components/Card/CardFooter.js"; +import CustomInput from "components/CustomInput/CustomInput.js"; +import CustomSelect from "components/CustomSelect/CustomSelect.js"; +import { login } from "actions/auth"; + +import styles from "assets/jss/material-dashboard-react/views/loginPage.js"; +import image from "assets/img/bg7.jpg"; +import companyService from "services/company.service"; +// import CustomModal from "components/CustomModal/CustomModal"; + +const useStyles = makeStyles(styles); + +var options = []; + +export default function LoginPage() { + const [cardAnimaton, setCardAnimation] = React.useState("cardHidden"); + const [error, setError] = React.useState(""); + const dispatch = useDispatch(); + + setTimeout(function () { + setCardAnimation(""); + }, 700); + const classes = useStyles(); + const [option, setOption] = useState(""); + function logChange(val) { + console.log("Dasda"); + setOption(val); + } + + const handleLogin = () => { + setError(""); + var userName = document.getElementById("email"); + var password = document.getElementById("pass"); + + if (userName.value === "") { + setError("UserName must not be empty"); + } else if (password.value === "") { + setError("Password must not be empty"); + } else if (option === "") { + setError("Select company"); + } else { + dispatch(login(userName.value, password.value, option.value)) + .then(() => { + window.location.replace("/admin"); + }) + .catch((err) => { + setError("Invalid Email or Password"); + }); + } + }; + + useEffect(() => { + companyService.companyName().then((res) => { + // console.log("----------", JSON.parse(res.data.Data)); + const data = JSON.parse(res.data.Data); + data.forEach((element) => { + options.push({ + value: element.id, + label: element.title, + }); + }); + }); + }, []); + + // const { ...rest } = props; + return ( +
+ {/*
} + {...rest} + /> */} +
+
+ + + +
+ +

Login

+
+ {/*

Or Be Classical

*/} + + + + + ), + }} + /> + + + lock_outline + + + ), + autoComplete: "off", + }} + /> +
+
+
+
+ + + + + + + + +

اعلان ها

+

+ يدويا من قبل أصدقائنا من{" "} + + واجهة المستخدم المادية + {" "} + ونصب من قبل{" "} + + الإبداعية تيم + + . يرجى التحقق من{" "} + + وثائق كاملة + + . +

+
+ + + + + +
+
+ + + + e.preventDefault()}> + ... + + + +
مدیرعامل / مدیرفنی
+

خداداد عزیزی

+

+ طراح گرافیک از این متن به عنوان عنصری از ترکیب بندی برای پر کردن + صفحه و ارایه اولیه شکل ظاهری و کلی طرح سفارش گرفته شده استفاده + می نماید، تا از نظر گرافیکی نشانگر چگونگی نوع و اندازه فونت و + ظاهر متن باشد. معمولا طراحان گرافیک برای صفحه‌آرایی، نخست از + متن‌های آزمایشی و بی‌معنی استفاده می‌کنند ... +

+ +
+
+
+
+ + ); +} diff --git a/src/views/TableList/AbsScreen.js b/src/views/TableList/AbsScreen.js new file mode 100644 index 0000000..d02d293 --- /dev/null +++ b/src/views/TableList/AbsScreen.js @@ -0,0 +1,121 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get("selectedDate"); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService.ABS(category, brand, supplier, origin,selectedDate,group).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/AdjDetailScreen.js b/src/views/TableList/AdjDetailScreen.js new file mode 100644 index 0000000..1f1821b --- /dev/null +++ b/src/views/TableList/AdjDetailScreen.js @@ -0,0 +1,116 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + const [allData,setAllData] = useState(""); + + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let reference = new URLSearchParams(props.location.search).get("ref"); + tableService.AdjustmentDetails(reference).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/AllStockSales.js b/src/views/TableList/AllStockSales.js new file mode 100644 index 0000000..70679b6 --- /dev/null +++ b/src/views/TableList/AllStockSales.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + tableService.AllStockSales(from, to,supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/BankCashBankSummary.js b/src/views/TableList/BankCashBankSummary.js new file mode 100644 index 0000000..dd03f81 --- /dev/null +++ b/src/views/TableList/BankCashBankSummary.js @@ -0,0 +1,127 @@ +import React, { useEffect, useState, Fragment } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +// import DataTable from "components/data-table/index.js"; +import DataTable from "components/DataTable/DataTable"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState([]); + + const classes = useStyles(); + var dataArray = []; + var products = [ + { + id: 1, + name: "Product1", + price: 120, + }, + { + id: 2, + name: "Product2", + price: 80, + }, + ]; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + const columns = [ + "Banks", + "Peshawar Retail", + "Islamabad Retail", + "Karachi Wholesale", + "LHR SHahalam Wholesale", + "LHR KT MARKETING", + ]; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + + tableService + .BCBS(selectedDate) + .then((res) => { + console.log("res", res.data); + if (res.data.length != 0) { + let cashData = ["Cash"]; + res.data.cashData.map((item) => { + cashData.push(item.Amount); + }); + let banksData = []; + res.data.allBanks.map((item) => { + const data = item.BankTitle; + banksData.push([data]); + }); + setAllData([cashData, ...banksData]); + console.log("[...cashData, ...banksData]", [ + ...cashData, + ...banksData, + ]); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + + + + ); +} diff --git a/src/views/TableList/BankLedgerSummaryDetails.js b/src/views/TableList/BankLedgerSummaryDetails.js new file mode 100644 index 0000000..a450498 --- /dev/null +++ b/src/views/TableList/BankLedgerSummaryDetails.js @@ -0,0 +1,132 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/*
+ + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + +
sr#DateVoucher#MemoDebitCreditBalance
+ + + //
+ ); +} diff --git a/src/views/TableList/BranchProduct.js b/src/views/TableList/BranchProduct.js new file mode 100644 index 0000000..5094ce2 --- /dev/null +++ b/src/views/TableList/BranchProduct.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let branchId = new URLSearchParams(props.location.search).get("locationId"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + + tableService.BranchProduct(branchId, supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/* */} + + + + + + + ); +} diff --git a/src/views/TableList/BranchSummary.js b/src/views/TableList/BranchSummary.js new file mode 100644 index 0000000..3453b77 --- /dev/null +++ b/src/views/TableList/BranchSummary.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let branchId = new URLSearchParams(props.location.search).get("locationId"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + + tableService.BranchSummary(branchId, supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/BranchandBrandCtegoryScreen.js b/src/views/TableList/BranchandBrandCtegoryScreen.js new file mode 100644 index 0000000..f5c8ba2 --- /dev/null +++ b/src/views/TableList/BranchandBrandCtegoryScreen.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let branchId = new URLSearchParams(props.location.search).get("locationId"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + + tableService.BranchCategory(branchId, supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/BrandList.js b/src/views/TableList/BrandList.js new file mode 100644 index 0000000..a795eba --- /dev/null +++ b/src/views/TableList/BrandList.js @@ -0,0 +1,102 @@ +import React, { Fragment, useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function BrandList(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + const columns = [ + "Title", + { + name: "Status", + options: { + customBodyRender: (value, tableMeta, updateValue) => ( +
{value ? "Active" : "Inactive"}
+ ), + }, + }, + ]; + + useEffect(() => { + tableService + .brandList() + .then((res) => { + const data = JSON.parse(res); + const idk = JSON.parse(data.Data); + if (idk.length != 0) { + let categories = []; + idk.map((item) => { + let avvv = []; + avvv.push(item.title); + avvv.push(item.active); + categories.push(avvv); + }); + // console.log("dehwnfgwegewg", categories); + setAllData(categories); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + isData && ( + + + + ) + ); +} diff --git a/src/views/TableList/ByCustomerScreen.js b/src/views/TableList/ByCustomerScreen.js new file mode 100644 index 0000000..cc946f3 --- /dev/null +++ b/src/views/TableList/ByCustomerScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("customerId"); + let radioGroup = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.ByCustomer(from, to,customerId,radioGroup).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/ByMonthScreen.js b/src/views/TableList/ByMonthScreen.js new file mode 100644 index 0000000..1522693 --- /dev/null +++ b/src/views/TableList/ByMonthScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("customerId"); + let radioGroup = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.ByMonth(from, to,customerId,radioGroup).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/ByYearScreen.js b/src/views/TableList/ByYearScreen.js new file mode 100644 index 0000000..33b5f70 --- /dev/null +++ b/src/views/TableList/ByYearScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("customerId"); + let radioGroup = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.ByYear(from, to,customerId,radioGroup).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/CategoryList.js b/src/views/TableList/CategoryList.js new file mode 100644 index 0000000..942e057 --- /dev/null +++ b/src/views/TableList/CategoryList.js @@ -0,0 +1,106 @@ +import React, { Fragment, useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +// const columns = ["Title", "Acitve"]; + +const useStyles = makeStyles(styles); + +export default function CategoryList(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + const columns = [ + "Title", + { + name: "Status", + options: { + customBodyRender: (value, tableMeta, updateValue) => ( +
{value ? "Active" : "Inactive"}
+ ), + }, + }, + ]; + + useEffect(() => { + console.log("gl;krwenwglkwe"); + tableService + .categoryList() + .then((res) => { + const data = JSON.parse(res); + console.log("res"); + const idk = JSON.parse(data.Data); + if (idk.length != 0) { + let categories = []; + idk.map((item) => { + let avvv = []; + avvv.push(item.title); + avvv.push(item.active); + categories.push(avvv); + }); + // console.log("dehwnfgwegewg", categories); + setAllData(categories); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + isData && ( + + + + ) + ); +} diff --git a/src/views/TableList/CreateAccount.js b/src/views/TableList/CreateAccount.js new file mode 100644 index 0000000..6045534 --- /dev/null +++ b/src/views/TableList/CreateAccount.js @@ -0,0 +1,85 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + const [isData, setIsData] = useState(false); + const classes = useStyles(); + const [allData,setAllData] = useState(""); + + useEffect(() => { + let location = new URLSearchParams(props.location.search).get("loc"); + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let min = new URLSearchParams(props.location.search).get("min"); + let max = new URLSearchParams(props.location.search).get("max"); + tableService.CSP( location, category, brand, supplier, origin, min, max).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + + setAllData(res.data); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + + + + ); +} diff --git a/src/views/TableList/CreateNew.js b/src/views/TableList/CreateNew.js new file mode 100644 index 0000000..a2b2c8f --- /dev/null +++ b/src/views/TableList/CreateNew.js @@ -0,0 +1,270 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + const [selectedDate, handleDateChange] = useState(new Date()); + const [option, setOption] = useState(""); + + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + var locOptions = []; + + function logChange(val) { + setOption(val); + } + function categoryChange(val) { + setcategoryOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function SubCategory(val) { + setOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function originChange(val) { + setoriginOption(val); + } + async function loadOptionsLoc() { + const response = await LocationService.Location(); + await response.data.Data.forEach((element) => { + locOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return locOptions; + } + + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + return ( + <> + {/* new product */} + + + + + + +
+ + + + handleDateChange(date)} + // minDate={new Date()} + format="MM/dd/yyyy" + /> + + + +
+ +
+
+
+
+
+ + +
+ +
+
+ +
+ +
+
+ + + +
+ +

Add table here

+
+
+ + + + + + +
+ + + + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/CreateQuotation.js b/src/views/TableList/CreateQuotation.js new file mode 100644 index 0000000..73f0687 --- /dev/null +++ b/src/views/TableList/CreateQuotation.js @@ -0,0 +1,84 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Sale Invoice list */} + +

Cretae Quotation

+
+ + ); +} diff --git a/src/views/TableList/CreateSaleOrder.js b/src/views/TableList/CreateSaleOrder.js new file mode 100644 index 0000000..aaa3bb6 --- /dev/null +++ b/src/views/TableList/CreateSaleOrder.js @@ -0,0 +1,215 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Create sale order */} + + + + + + +
+ + + +
+
+ + + + +
+ +
+
+ +
+ +
+
+
+ + + + + +

Add Table here

+
+ + + + + + +
+ + {/* */} + + {/* */} + {/* */} + + {/* */} + {/* */} + + {/* */} + {/* */} + + {/* */} + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/CreateStockAdjustment.js b/src/views/TableList/CreateStockAdjustment.js new file mode 100644 index 0000000..91037ab --- /dev/null +++ b/src/views/TableList/CreateStockAdjustment.js @@ -0,0 +1,268 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + const [selectedDate, handleDateChange] = useState(new Date()); + const [option, setOption] = useState(""); + + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + var locOptions = []; + + function logChange(val) { + setOption(val); + } + function categoryChange(val) { + setcategoryOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function SubCategory(val) { + setOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function originChange(val) { + setoriginOption(val); + } + async function loadOptionsLoc() { + const response = await LocationService.Location(); + await response.data.Data.forEach((element) => { + locOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return locOptions; + } + + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + return ( + <> + {/* new product */} + + + + + + +
+ + + + + +
+ +
+
+
+
+
+ + +
+ +
+
+ +
+ +
+
+ + + +
+ +

Add table here

+
+
+ + + + + + +
+ + + + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/CspScreen.js b/src/views/TableList/CspScreen.js new file mode 100644 index 0000000..684f2ac --- /dev/null +++ b/src/views/TableList/CspScreen.js @@ -0,0 +1,122 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + var dataArray = []; + const [allData,setAllData] = useState(""); + + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let location = new URLSearchParams(props.location.search).get("loc"); + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let min = new URLSearchParams(props.location.search).get("min"); + let max = new URLSearchParams(props.location.search).get("max"); + tableService.CSP( location, category, brand, supplier, origin, min, max).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + + setAllData(res.data); + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/CustomerStatement.js b/src/views/TableList/CustomerStatement.js new file mode 100644 index 0000000..7e8ac1e --- /dev/null +++ b/src/views/TableList/CustomerStatement.js @@ -0,0 +1,176 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/*
+ + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* + + */} + + + + + + + + + +
sr#Voucher#DateDetailsAmountBalance
Khyber Traders Cash

Amount In

Total Sale0.0

Amount Out

Net Sale0.0
Khyber Traders Cash

Amount In

Amount Out

sr#Voucher#DateDetailsAmountBalance
+ + + //
+ ); +} diff --git a/src/views/TableList/CustomerStatementCombined.js b/src/views/TableList/CustomerStatementCombined.js new file mode 100644 index 0000000..b0905f1 --- /dev/null +++ b/src/views/TableList/CustomerStatementCombined.js @@ -0,0 +1,131 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/* + + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + +
sr#PartyOpening BalanceDebitCreditClosing Balance
+
+ + //
+ ); +} diff --git a/src/views/TableList/DFSPWScreen.js b/src/views/TableList/DFSPWScreen.js new file mode 100644 index 0000000..67182da --- /dev/null +++ b/src/views/TableList/DFSPWScreen.js @@ -0,0 +1,208 @@ +// import React, { useEffect, useState } from "react"; +// // @material-ui/core components +// import { makeStyles } from "@material-ui/core/styles"; +// // core components +// import GridItem from "components/Grid/GridItem.js"; +// import GridContainer from "components/Grid/GridContainer.js"; +// import Table from "components/Table/Table.js"; +// import Card from "components/Card/Card.js"; +// import CardHeader from "components/Card/CardHeader.js"; +// import CardBody from "components/Card/CardBody.js"; +// import DataTable from "components/DataTable/DataTable.js"; +// import DfsExecutionService from "services/dfsExecution.service"; +// import Loader from "components/Loader/Loader.js"; + + + +// const styles = { +// cardCategoryWhite: { +// "&,& a,& a:hover,& a:focus": { +// color: "rgba(255,255,255,.62)", +// margin: "0", +// fontSize: "14px", +// marginTop: "0", +// marginBottom: "0", +// }, +// "& a,& a:hover,& a:focus": { +// color: "#FFFFFF", +// }, +// }, +// cardTitleWhite: { +// color: "#FFFFFF", +// marginTop: "0px", +// minHeight: "auto", +// fontWeight: "300", +// fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", +// marginBottom: "3px", +// textDecoration: "none", +// "& small": { +// color: "#777", +// fontSize: "65%", +// fontWeight: "400", +// lineHeight: "1", +// }, +// }, +// }; + +// const useStyles = makeStyles(styles); + +// export default function TableList(props) { + +// const [dataArrayMain, setDataArrayMain] = useState([]); +// const [keys, setKeys] = useState([]); +// const [isData, setIsData] = useState(false); +// const classes = useStyles(); +// var dataArray = []; +// // let label = new URLSearchParams(props.location.search).get("label"); + +// // var keys = []; + +// useEffect(() => { +// let selectedfromData = new URLSearchParams(props.location.search).get("selectedFromData"); +// let selectedtoData = new URLSearchParams(props.location.search).get("selectedtoData"); +// DfsExecutionService.DfsExecution(selectedfromData, selectedtoData).then((res) => { +// console.log(res.data); +// if (res.data.length != 0) { +// res.data.forEach(element => { +// dataArray.push( +// Object.keys(element).map(val => element[val]) +// ) +// }); +// setDataArrayMain(dataArray) +// setKeys(Object.keys(res.data[0])); +// console.log(keys); +// console.log(dataArray); +// } +// setIsData(true) + +// }).catch((err) => { +// console.log(err); +// }) +// }, []) +// return ( +// +// +// +// +//

{props.name}

+//

+// {/* Islamabad W/H(1) */} +//

+//
+// +// {!isData ?
+//
: + +// +// } +// {/* */} +// +// +// + + +// +// ); +// } +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; +import Danger from "components/Typography/Danger"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(()=>{ + setTimeout(() => { + setIsData(true) + }, 3000); + },[]) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: +
+ Server Error: 500 (Internal Server Error) + +
+ + + /*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/DFSScreen.js b/src/views/TableList/DFSScreen.js new file mode 100644 index 0000000..6c82b46 --- /dev/null +++ b/src/views/TableList/DFSScreen.js @@ -0,0 +1,205 @@ +// import React, { useEffect, useState } from "react"; +// // @material-ui/core components +// import { makeStyles } from "@material-ui/core/styles"; +// // core components +// import GridItem from "components/Grid/GridItem.js"; +// import GridContainer from "components/Grid/GridContainer.js"; +// import Table from "components/Table/Table.js"; +// import Card from "components/Card/Card.js"; +// import CardHeader from "components/Card/CardHeader.js"; +// import CardBody from "components/Card/CardBody.js"; +// import DataTable from "components/DataTable/DataTable.js"; +// import DfsExecutionService from "services/dfsExecution.service"; +// import Loader from "components/Loader/Loader.js"; + + + +// const styles = { +// cardCategoryWhite: { +// "&,& a,& a:hover,& a:focus": { +// color: "rgba(255,255,255,.62)", +// margin: "0", +// fontSize: "14px", +// marginTop: "0", +// marginBottom: "0", +// }, +// "& a,& a:hover,& a:focus": { +// color: "#FFFFFF", +// }, +// }, +// cardTitleWhite: { +// color: "#FFFFFF", +// marginTop: "0px", +// minHeight: "auto", +// fontWeight: "300", +// fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", +// marginBottom: "3px", +// textDecoration: "none", +// "& small": { +// color: "#777", +// fontSize: "65%", +// fontWeight: "400", +// lineHeight: "1", +// }, +// }, +// }; + +// const useStyles = makeStyles(styles); + +// export default function TableList(props) { + +// const [dataArrayMain, setDataArrayMain] = useState([]); +// const [keys, setKeys] = useState([]); +// const [isData, setIsData] = useState(false); +// const classes = useStyles(); +// var dataArray = []; +// // let label = new URLSearchParams(props.location.search).get("label"); + +// // var keys = []; + +// useEffect(() => { +// let selectedfromData = new URLSearchParams(props.location.search).get("selectedFromData"); +// let selectedtoData = new URLSearchParams(props.location.search).get("selectedtoData"); +// DfsExecutionService.DfsExecution(selectedfromData, selectedtoData).then((res) => { +// console.log(res.data); +// if (res.data.length != 0) { +// res.data.forEach(element => { +// dataArray.push( +// Object.keys(element).map(val => element[val]) +// ) +// }); +// setDataArrayMain(dataArray) +// setKeys(Object.keys(res.data[0])); +// console.log(keys); +// console.log(dataArray); +// } +// setIsData(true) + +// }).catch((err) => { +// console.log(err); +// }) +// }, []) +// return ( +// +// +// +// +//

{props.name}

+//

+// {/* Islamabad W/H(1) */} +//

+//
+// +// {!isData ?
+//
: + +// +// } +// {/*
*/} +// +// +// + + +// +// ); +// } +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(()=>{ + setTimeout(() => { + setIsData(true) + }, 1000); + },[]) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + + + /*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/DailyCombinedStatement.js b/src/views/TableList/DailyCombinedStatement.js new file mode 100644 index 0000000..ea837eb --- /dev/null +++ b/src/views/TableList/DailyCombinedStatement.js @@ -0,0 +1,202 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + + tableService + .DCS(selectedDate) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/*
+ + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* + + */} + + + + + + + + + +
sr#Voucher#DateDetailsAmountBalance
+
+ Khyber Traders Cash +
+
+

Amount In

+
+ Total Sale + 0.0
+

Amount Out

+
+ Net Sale + 0.0
+
+ Khyber Traders Cash +
+
+

Amount In

+
+

Amount Out

+
sr#Voucher#DateDetailsAmountBalance
+ + + //
+ ); +} diff --git a/src/views/TableList/DailyStatement.js b/src/views/TableList/DailyStatement.js new file mode 100644 index 0000000..7e8ac1e --- /dev/null +++ b/src/views/TableList/DailyStatement.js @@ -0,0 +1,176 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/* + + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* + + */} + + + + + + + + + +
sr#Voucher#DateDetailsAmountBalance
Khyber Traders Cash

Amount In

Total Sale0.0

Amount Out

Net Sale0.0
Khyber Traders Cash

Amount In

Amount Out

sr#Voucher#DateDetailsAmountBalance
+
+ + //
+ ); +} diff --git a/src/views/TableList/DeliveryNoteDetailScreen.js b/src/views/TableList/DeliveryNoteDetailScreen.js new file mode 100644 index 0000000..5a219ea --- /dev/null +++ b/src/views/TableList/DeliveryNoteDetailScreen.js @@ -0,0 +1,116 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + const [allData,setAllData] = useState(""); + + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let reference = new URLSearchParams(props.location.search).get("ref"); + tableService.DeliveryNotesDetails(reference).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/* */} + + + + + + + ); +} diff --git a/src/views/TableList/DeliveryNotesScreen.js b/src/views/TableList/DeliveryNotesScreen.js new file mode 100644 index 0000000..7bbfd2e --- /dev/null +++ b/src/views/TableList/DeliveryNotesScreen.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + const [allData,setAllData] = useState(""); + + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + + tableService.DeliveryNotes(from, to).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/DemandNotesList.js b/src/views/TableList/DemandNotesList.js new file mode 100644 index 0000000..65e05af --- /dev/null +++ b/src/views/TableList/DemandNotesList.js @@ -0,0 +1,99 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function CategoryList(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // Demand Notes List + +

Demand Notes List

+

Add Table here

+
+ ); +} diff --git a/src/views/TableList/GRNDetailScreen.js b/src/views/TableList/GRNDetailScreen.js new file mode 100644 index 0000000..7a44756 --- /dev/null +++ b/src/views/TableList/GRNDetailScreen.js @@ -0,0 +1,116 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + const [allData,setAllData] = useState(""); + + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let reference = new URLSearchParams(props.location.search).get("ref"); + tableService.GRNDetail(reference).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/GRNlistScreen.js b/src/views/TableList/GRNlistScreen.js new file mode 100644 index 0000000..251bfb6 --- /dev/null +++ b/src/views/TableList/GRNlistScreen.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + + tableService.GRDList(from, to).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/GeneralLedger.js b/src/views/TableList/GeneralLedger.js new file mode 100644 index 0000000..7e8ac1e --- /dev/null +++ b/src/views/TableList/GeneralLedger.js @@ -0,0 +1,176 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/*
+ + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* + + */} + + + + + + + + + +
sr#Voucher#DateDetailsAmountBalance
Khyber Traders Cash

Amount In

Total Sale0.0

Amount Out

Net Sale0.0
Khyber Traders Cash

Amount In

Amount Out

sr#Voucher#DateDetailsAmountBalance
+ + + //
+ ); +} diff --git a/src/views/TableList/IMS.js b/src/views/TableList/IMS.js new file mode 100644 index 0000000..e611097 --- /dev/null +++ b/src/views/TableList/IMS.js @@ -0,0 +1,407 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export const imsByCustomer = (props) => { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + + tableService.IMSBYCUSTADMIN(from, to,supplierId,locationId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/* */} + + + + + + + ); + + +} +export const imsByCustomerSummary = (props) => { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + + tableService.IMSBYCUSTSUMADMIN(from, to,supplierId,locationId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const imsByCustomerChannel = (props) => { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + + tableService.IMSBYCUSTCHANNELADMIN(from, to,supplierId,locationId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const imsByProduct = (props) => { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierID = new URLSearchParams(props.location.search).get("supp"); + + tableService.IMSProduct(from, to,supplierID).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const imsBySupplier = (props) => { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let bySupplierPrice = new URLSearchParams(props.location.search).get("radioGroup"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + tableService.IMSSupplier(from, to,bySupplierPrice,supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} diff --git a/src/views/TableList/IMSChannelScreen.js b/src/views/TableList/IMSChannelScreen.js new file mode 100644 index 0000000..ef0a731 --- /dev/null +++ b/src/views/TableList/IMSChannelScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + let supplierID = new URLSearchParams(props.location.search).get("supp"); + + tableService.IMSCHANNEL(from, to,locationId,supplierID).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/IMSCustScreen.js b/src/views/TableList/IMSCustScreen.js new file mode 100644 index 0000000..78f624b --- /dev/null +++ b/src/views/TableList/IMSCustScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("cust"); + let supplierID = new URLSearchParams(props.location.search).get("supp"); + + tableService.SRC(from, to,customerId,supplierID).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/IMSCustSummaryScreen.js b/src/views/TableList/IMSCustSummaryScreen.js new file mode 100644 index 0000000..ba574fc --- /dev/null +++ b/src/views/TableList/IMSCustSummaryScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + let monthseperated = new URLSearchParams(props.location.search).get("monthseperated"); + + tableService.IMSCUSTSUM(from, to,locationId,monthseperated).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/InvoiceDetailScreen.js b/src/views/TableList/InvoiceDetailScreen.js new file mode 100644 index 0000000..a308369 --- /dev/null +++ b/src/views/TableList/InvoiceDetailScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("customerId"); + let radioGroup = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.InvoiceDetail(from, to,customerId,radioGroup).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/InvoiceSummaryScreen.js b/src/views/TableList/InvoiceSummaryScreen.js new file mode 100644 index 0000000..8e96487 --- /dev/null +++ b/src/views/TableList/InvoiceSummaryScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("customerId"); + let radioGroup = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.InvoiceSummary(from, to,customerId,radioGroup).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/KeyDetail.js b/src/views/TableList/KeyDetail.js new file mode 100644 index 0000000..63ed579 --- /dev/null +++ b/src/views/TableList/KeyDetail.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let branchId = new URLSearchParams(props.location.search).get("locationId"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + + tableService.keydetail(branchId, supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/KeySummary.js b/src/views/TableList/KeySummary.js new file mode 100644 index 0000000..00b0e11 --- /dev/null +++ b/src/views/TableList/KeySummary.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let branchId = new URLSearchParams(props.location.search).get("locationId"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + + tableService.keysummary(branchId, supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/MasterProductList.js b/src/views/TableList/MasterProductList.js new file mode 100644 index 0000000..d928f94 --- /dev/null +++ b/src/views/TableList/MasterProductList.js @@ -0,0 +1,135 @@ +import React, { Fragment, useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function MasterProductList(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + const columns = [ + "Code", + "Product", + "Barcode", + "Category", + "Sub Category", + "Brand", + "Origin", + "Stock", + "Stock Summary", + "Status", + // { + // name: "Status", + // options: { + // customBodyRender: (value, tableMeta, updateValue) => ( + //
{value ? "Active" : "Inactive"}
+ // ), + // }, + // }, + ]; + + useEffect(() => { + tableService + .masterProductList() + .then((res) => { + const data = JSON.parse(res); + const idk = JSON.parse(data.Data); + if (idk.length != 0) { + let dataaa = []; + idk.map((item) => { + console.log("item", item); + let avvv = []; + avvv.push(item.title); + avvv.push(item.active); + avvv.push(item.barcode); + dataaa.push(avvv); + }); + // console.log("dehwnfgwegewg", categories); + setAllData(dataaa); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ? ( +
+ +
+ ) : ( + + + + )} +
+
+
+
+ ); +} diff --git a/src/views/TableList/MonthlyData.js b/src/views/TableList/MonthlyData.js new file mode 100644 index 0000000..7e8ac1e --- /dev/null +++ b/src/views/TableList/MonthlyData.js @@ -0,0 +1,176 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/*
+ + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* + + */} + + + + + + + + + +
sr#Voucher#DateDetailsAmountBalance
Khyber Traders Cash

Amount In

Total Sale0.0

Amount Out

Net Sale0.0
Khyber Traders Cash

Amount In

Amount Out

sr#Voucher#DateDetailsAmountBalance
+ + + //
+ ); +} diff --git a/src/views/TableList/NewDemandNote.js b/src/views/TableList/NewDemandNote.js new file mode 100644 index 0000000..e69de29 diff --git a/src/views/TableList/NewProduct.js b/src/views/TableList/NewProduct.js new file mode 100644 index 0000000..037f42f --- /dev/null +++ b/src/views/TableList/NewProduct.js @@ -0,0 +1,279 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + function categoryChange(val) { + setcategoryOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function SubCategory(val) { + setOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function originChange(val) { + setoriginOption(val); + } + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + return ( + <> + {/* new product */} + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+ +
+ +
+
+ +
+ +
+
+
+
+
+ + + + + + + + +
+ + ); +} diff --git a/src/views/TableList/NewPurchaseDocument.js b/src/views/TableList/NewPurchaseDocument.js new file mode 100644 index 0000000..c75f6b2 --- /dev/null +++ b/src/views/TableList/NewPurchaseDocument.js @@ -0,0 +1,326 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // {/* New Purchase Document */} + <> + + +
+ + + +
+
+ + + + +
+ +
+
+ +
+ +
+
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +
+
+ + {/*
*/} + + {/*
*/} +
+
+ +

Add table here

+
+ {/* + + + + + + + + */} + {/* + + + + + + + + + + + + + + + + */} + + + + + + +
+ + {/* */} + + {/* */} + {/* */} + + {/* */} + {/* */} + + {/* */} + {/* */} + + {/* */} + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/NewPurchaseGRN.js b/src/views/TableList/NewPurchaseGRN.js new file mode 100644 index 0000000..b755b86 --- /dev/null +++ b/src/views/TableList/NewPurchaseGRN.js @@ -0,0 +1,185 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + function categoryChange(val) { + setcategoryOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function SubCategory(val) { + setOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function originChange(val) { + setoriginOption(val); + } + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + return ( + // {/* new purchase GRN */} + <> + + ); +} diff --git a/src/views/TableList/NewPurchaseOrder.js b/src/views/TableList/NewPurchaseOrder.js new file mode 100644 index 0000000..8026ae4 --- /dev/null +++ b/src/views/TableList/NewPurchaseOrder.js @@ -0,0 +1,223 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* // New Purchase Order */} + + + + + + + +
+ + + +
+
+ + + + +
+ +
+
+ +
+ +
+
+ +
+ + } + label="Active" + /> +
+
+
+ {/* */} + + + + + + + +

Add Table here

+
+
+ +
+ {/*
*/} + {/* + + + + + + + + + */} + + + + + + + +
+ +
+
+ {/* */} +
+
+
+ + ); +} diff --git a/src/views/TableList/NewSaleReturn.js b/src/views/TableList/NewSaleReturn.js new file mode 100644 index 0000000..48f2671 --- /dev/null +++ b/src/views/TableList/NewSaleReturn.js @@ -0,0 +1,292 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function NewSaleReturn(props) { + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + var parentCategoryOptions = []; + var subCategoryOptions = []; + var brandOptions = []; + var customerOptions = []; + var categoryOptions = []; + var originOptions = []; + var supplierCompanyOptions = []; + var orderTakerOptions = []; + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + const [customerOption, setCustomerOption] = useState(""); + const [orderTakerOption, setOrderTakerOption] = useState(""); + const [SalesPersonOption, setSalesPersonOption] = useState(""); + + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + + function customerChange(val) { + setCustomerOption(val); + } + function orderTakerChange(val) { + setOrderTakerOption(val); + } + function SalesPersonChange(val) { + setSalesPersonOption(val); + } + async function loadOptionsOrderTaker() { + const response = await CommonService.Customer(); + await response.data.Data.forEach((element) => { + orderTakerOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return orderTakerOptions; + } + + async function loadOptionsCustomer() { + const response = await CommonService.Customer(); + await response.data.Data.forEach((element) => { + customerOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return customerOptions; + } + + + async function loadOptionsSalesPerson() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + SalesPersonOption.push({ + value: element.Id, + label: element.Title, + }); + }); + return SalesPersonOption; + } + return ( + // {/* new sale return*/} + <> + + + + + + +
+ + + +
+
+ +
+ +
+
+
+ + +
+ +
+
+ +
+ +
+
+
+ + +
+ +
+
+ +
+ +
+
+ + + +
+ + + + + + +
+ + + + + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/NewShipment.js b/src/views/TableList/NewShipment.js new file mode 100644 index 0000000..fa1f4cf --- /dev/null +++ b/src/views/TableList/NewShipment.js @@ -0,0 +1,327 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* New Shipment */} + + + + + + + +
+ + + +
+
+ + + + +
+ + + +
+
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Add Table here

+
+
+ {/* + + + + + + + + + + */} + + + + + + +
+ + + + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/OpeningStock.js b/src/views/TableList/OpeningStock.js new file mode 100644 index 0000000..cffd43b --- /dev/null +++ b/src/views/TableList/OpeningStock.js @@ -0,0 +1,257 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + function categoryChange(val) { + setcategoryOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function SubCategory(val) { + setOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function originChange(val) { + setoriginOption(val); + } + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + return ( + // {/* opening stock */} + <> + + + + + + + + + +
+ +
+
+ +
+ +
+
+ + + +
+ +

Add table here

+
+ + + + + + + +
+ + {/* */} + + + {/* */} + +
+
+
+
+ + ); +} diff --git a/src/views/TableList/OriginsList.js b/src/views/TableList/OriginsList.js new file mode 100644 index 0000000..7961f33 --- /dev/null +++ b/src/views/TableList/OriginsList.js @@ -0,0 +1,124 @@ +import React, { Fragment, useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function OriginsList(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + const columns = [ + "Title", + { + name: "Status", + options: { + customBodyRender: (value, tableMeta, updateValue) => ( +
{value ? "Active" : "Inactive"}
+ ), + }, + }, + ]; + + useEffect(() => { + tableService + .originList() + .then((res) => { + const data = JSON.parse(res); + const idk = JSON.parse(data.Data); + if (idk.length != 0) { + let categories = []; + idk.map((item) => { + let avvv = []; + avvv.push(item.title); + avvv.push(item.active); + categories.push(avvv); + }); + // console.log("dehwnfgwegewg", categories); + setAllData(categories); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ? ( +
+ +
+ ) : ( + + + + )} +
+
+
+
+ ); +} diff --git a/src/views/TableList/PartySummaryScreen.js b/src/views/TableList/PartySummaryScreen.js new file mode 100644 index 0000000..02b4f24 --- /dev/null +++ b/src/views/TableList/PartySummaryScreen.js @@ -0,0 +1,116 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let date = new URLSearchParams(props.location.search).get("date"); + + tableService.PartySummary(date).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/* */} + + + + + + + ); +} diff --git a/src/views/TableList/Pricing.js b/src/views/TableList/Pricing.js new file mode 100644 index 0000000..db1d6a9 --- /dev/null +++ b/src/views/TableList/Pricing.js @@ -0,0 +1,95 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function Pricing(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get("selectedDate"); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService.ABS(category, brand, supplier, origin,selectedDate,group).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + +

Pricing

+
+ ); +} diff --git a/src/views/TableList/ProductList.js b/src/views/TableList/ProductList.js new file mode 100644 index 0000000..d2c9d0d --- /dev/null +++ b/src/views/TableList/ProductList.js @@ -0,0 +1,95 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function ProductList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get("selectedDate"); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService.ABS(category, brand, supplier, origin,selectedDate,group).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + +

Product List

+
+ ); +} diff --git a/src/views/TableList/ProductTrackScreen.js b/src/views/TableList/ProductTrackScreen.js new file mode 100644 index 0000000..049b233 --- /dev/null +++ b/src/views/TableList/ProductTrackScreen.js @@ -0,0 +1,121 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let location = new URLSearchParams(props.location.search).get("loc"); + let product = new URLSearchParams(props.location.search).get("prod"); + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + + tableService.ProductTrack(from, to, location, product).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + +setAllData(res.data); + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/ProfitLossScreens.js b/src/views/TableList/ProfitLossScreens.js new file mode 100644 index 0000000..72462ba --- /dev/null +++ b/src/views/TableList/ProfitLossScreens.js @@ -0,0 +1,597 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export const imsByCustomer = (props) => { + + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + + tableService.IMSBYCUSTADMIN(from, to,supplierId,locationId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + + +} +export const imsByCustomerPnL = (props) => { + + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + + tableService.ImsCustomerRetailPNLSummary(from, to,locationId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const stockValueVendor = (props) => { + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let to = new URLSearchParams(props.location.search).get("to"); + let locationId = new URLSearchParams(props.location.search).get("locationId"); + + tableService.stockValueVendor( to,locationId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} + +export const stockValueProductLocation = (props) => { + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let to = new URLSearchParams(props.location.search).get("to"); + let vendor = new URLSearchParams(props.location.search).get("vendor"); + + tableService.stockValueProductLocation( to,vendor).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const companiesProfitWise = (props) => { + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let vendor = new URLSearchParams(props.location.search).get("vendor"); + + tableService.companiesProfitWise( from,to,vendor).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const monthlyData = (props) => { + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let vendor = new URLSearchParams(props.location.search).get("vendor"); + + tableService.IMSBYCUSTCHANNELADMIN( from,to,vendor).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} + + +export const imsByProduct = (props) => { + + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierID = new URLSearchParams(props.location.search).get("supp"); + + tableService.IMSProduct(from, to,supplierID).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} +export const khyberByBranchPLS = (props) => { + + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let bySupplierPrice = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.khyberByBranchPLS(from, to,bySupplierPrice).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); + +} diff --git a/src/views/TableList/PurchaseGRNsList.js b/src/views/TableList/PurchaseGRNsList.js new file mode 100644 index 0000000..8566bc3 --- /dev/null +++ b/src/views/TableList/PurchaseGRNsList.js @@ -0,0 +1,92 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* PurchaseGRNsList */} + +

PurchaseGRNsList

+
+ + ); +} diff --git a/src/views/TableList/PurchaseOrdersList.js b/src/views/TableList/PurchaseOrdersList.js new file mode 100644 index 0000000..4cee8a2 --- /dev/null +++ b/src/views/TableList/PurchaseOrdersList.js @@ -0,0 +1,190 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + function categoryChange(val) { + setcategoryOption(val); + } + function brandChange(val) { + setbrandOption(val); + } + function SubCategory(val) { + setOption(val); + } + function supplierCompanyChange(val) { + setOption(val); + } + function originChange(val) { + setoriginOption(val); + } + async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; + } + async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; + } + async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; + } + async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; + } + return ( + + <> + + {/* Purchase Orders List */} + +

Purchase Orders List

+
+ + ); +} diff --git a/src/views/TableList/PurchasesList.js b/src/views/TableList/PurchasesList.js new file mode 100644 index 0000000..5947131 --- /dev/null +++ b/src/views/TableList/PurchasesList.js @@ -0,0 +1,101 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Purchases list */} + +

Purchases list

+
+ + ); +} diff --git a/src/views/TableList/QuotationList.js b/src/views/TableList/QuotationList.js new file mode 100644 index 0000000..20d13be --- /dev/null +++ b/src/views/TableList/QuotationList.js @@ -0,0 +1,84 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Quotation list */} + +

Quotation list

+
+ + ); +} diff --git a/src/views/TableList/SIDScreen.js b/src/views/TableList/SIDScreen.js new file mode 100644 index 0000000..9066a01 --- /dev/null +++ b/src/views/TableList/SIDScreen.js @@ -0,0 +1,117 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const classes = useStyles(); + const [allData,setAllData] = useState(""); + + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let reference = new URLSearchParams(props.location.search).get("ref"); + tableService.SID(reference).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/SRCScreen.js b/src/views/TableList/SRCScreen.js new file mode 100644 index 0000000..78f624b --- /dev/null +++ b/src/views/TableList/SRCScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import dummyData from "services/dummy-data"; + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("cust"); + let supplierID = new URLSearchParams(props.location.search).get("supp"); + + tableService.SRC(from, to,customerId,supplierID).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/SaleDeliveryNotesList.js b/src/views/TableList/SaleDeliveryNotesList.js new file mode 100644 index 0000000..1a0fe55 --- /dev/null +++ b/src/views/TableList/SaleDeliveryNotesList.js @@ -0,0 +1,92 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* sale delivery notes list */} + +

sale delivery notes list

+
+ + ); +} diff --git a/src/views/TableList/SaleInvoiceList.js b/src/views/TableList/SaleInvoiceList.js new file mode 100644 index 0000000..691069e --- /dev/null +++ b/src/views/TableList/SaleInvoiceList.js @@ -0,0 +1,84 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Sale Invoice list */} + +

Sale Invoice list

+
+ + ); +} diff --git a/src/views/TableList/SaleOrdersList.js b/src/views/TableList/SaleOrdersList.js new file mode 100644 index 0000000..9463fd8 --- /dev/null +++ b/src/views/TableList/SaleOrdersList.js @@ -0,0 +1,84 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Sale Orders list */} + +

Sale Orders list

+
+ + ); +} diff --git a/src/views/TableList/SaleReturnList.js b/src/views/TableList/SaleReturnList.js new file mode 100644 index 0000000..ce6ceab --- /dev/null +++ b/src/views/TableList/SaleReturnList.js @@ -0,0 +1,92 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* sale return list */} + +

Sale return list

+
+ + ); +} diff --git a/src/views/TableList/SalesByCustomer.js b/src/views/TableList/SalesByCustomer.js new file mode 100644 index 0000000..46b4dbc --- /dev/null +++ b/src/views/TableList/SalesByCustomer.js @@ -0,0 +1,120 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let customerId = new URLSearchParams(props.location.search).get("customerId"); + let supplierID = new URLSearchParams(props.location.search).get("supp"); + let radioGroup = new URLSearchParams(props.location.search).get("radioGroup"); + + tableService.SalesByCustomer(from, to,supplierID,customerId,radioGroup).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/SalesComparisonScreen.js b/src/views/TableList/SalesComparisonScreen.js new file mode 100644 index 0000000..05d7d7c --- /dev/null +++ b/src/views/TableList/SalesComparisonScreen.js @@ -0,0 +1,120 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let secondfrom = new URLSearchParams(props.location.search).get("secondfrom"); + let secondto = new URLSearchParams(props.location.search).get("secondto"); + + + tableService.SalesComparison(from, to,secondfrom,secondto).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/SalesScreen.js b/src/views/TableList/SalesScreen.js new file mode 100644 index 0000000..822bd78 --- /dev/null +++ b/src/views/TableList/SalesScreen.js @@ -0,0 +1,116 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + tableService.Sales(from, to).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/ShipmentList.js b/src/views/TableList/ShipmentList.js new file mode 100644 index 0000000..0148716 --- /dev/null +++ b/src/views/TableList/ShipmentList.js @@ -0,0 +1,101 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import OpeningStockService from "services/openingStock.service"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* shipment list */} + +

shipment list

+
+ + ); +} diff --git a/src/views/TableList/StockAdjustmentList.js b/src/views/TableList/StockAdjustmentList.js new file mode 100644 index 0000000..3ea1dd2 --- /dev/null +++ b/src/views/TableList/StockAdjustmentList.js @@ -0,0 +1,91 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Stock Adjustment List */} + +

Stock Adjustment List

+
+ + ); +} diff --git a/src/views/TableList/StockAdjustmentScreen.js b/src/views/TableList/StockAdjustmentScreen.js new file mode 100644 index 0000000..eefa754 --- /dev/null +++ b/src/views/TableList/StockAdjustmentScreen.js @@ -0,0 +1,120 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let location = new URLSearchParams(props.location.search).get("loc"); + let adjustId = new URLSearchParams(props.location.search).get("type"); + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + + tableService.StockAdjustment(from, to, location, adjustId).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/StockCoutingList.js b/src/views/TableList/StockCoutingList.js new file mode 100644 index 0000000..a50003e --- /dev/null +++ b/src/views/TableList/StockCoutingList.js @@ -0,0 +1,91 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Stock Couting List */} + +

Stock Couting List

+
+ + ); +} diff --git a/src/views/TableList/StockDays.js b/src/views/TableList/StockDays.js new file mode 100644 index 0000000..1058d4c --- /dev/null +++ b/src/views/TableList/StockDays.js @@ -0,0 +1,118 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let supplierId = new URLSearchParams(props.location.search).get("supp"); + + tableService.StockDays(from, to,supplierId).then((res) => { + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/StockTransferGrnList.js b/src/views/TableList/StockTransferGrnList.js new file mode 100644 index 0000000..ac869e3 --- /dev/null +++ b/src/views/TableList/StockTransferGrnList.js @@ -0,0 +1,91 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* StockTransferGrnList */} + +

Stock Transfer Grn List

+
+ + ); +} diff --git a/src/views/TableList/StockTransferList.js b/src/views/TableList/StockTransferList.js new file mode 100644 index 0000000..94f4067 --- /dev/null +++ b/src/views/TableList/StockTransferList.js @@ -0,0 +1,91 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Grid from '@material-ui/core/Grid'; +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + <> + {/* Stock Transfer List */} + +

Stock Transfer List

+
+ + ); +} diff --git a/src/views/TableList/StockTransferMismatchScreen.js b/src/views/TableList/StockTransferMismatchScreen.js new file mode 100644 index 0000000..fd004f9 --- /dev/null +++ b/src/views/TableList/StockTransferMismatchScreen.js @@ -0,0 +1,119 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service.js"; +import Loader from "components/Loader/Loader.js"; +import parse from 'html-react-parser' + + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + tableService.StockTransferMismatch(from, to).then((res) => { + + + if (res.data.length != 0) { + + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/StockTransferScreen.js b/src/views/TableList/StockTransferScreen.js new file mode 100644 index 0000000..a93a86d --- /dev/null +++ b/src/views/TableList/StockTransferScreen.js @@ -0,0 +1,121 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service.js"; +import Loader from "components/Loader/Loader.js"; +import parse from 'html-react-parser' + + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let from = new URLSearchParams(props.location.search).get("from"); + let to = new URLSearchParams(props.location.search).get("to"); + let fromBranchId = new URLSearchParams(props.location.search).get("fromBranchId"); + let toBranchId = new URLSearchParams(props.location.search).get("toBranchId"); + tableService.StockTransfer(from, to,fromBranchId,toBranchId).then((res) => { + + + if (res.data.length != 0) { + + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/SwbeScreen.js b/src/views/TableList/SwbeScreen.js new file mode 100644 index 0000000..2442842 --- /dev/null +++ b/src/views/TableList/SwbeScreen.js @@ -0,0 +1,129 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from 'html-react-parser' + + + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function TableList(props) { + + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData,setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let location = new URLSearchParams(props.location.search).get("loc"); + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let group = new URLSearchParams(props.location.search).get("group"); + let order = new URLSearchParams(props.location.search).get("order"); + let dir = new URLSearchParams(props.location.search).get("dir"); + let selectedFrom = new URLSearchParams(props.location.search).get("selectedFrom"); + let selectedTo = new URLSearchParams(props.location.search).get("selectedTo"); + let selectedDate = new URLSearchParams(props.location.search).get("selectedDate"); + let min = new URLSearchParams(props.location.search).get("min"); + let max = new URLSearchParams(props.location.search).get("max"); + tableService.SWBE(selectedDate, location, category, brand, supplier, origin, min, max, selectedFrom, selectedTo, group, dir, order).then((res) => { + console.log(res.data); + if (res.data.length != 0) { + + setAllData(res.data); + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true) + + }).catch((err) => { + console.log(err); + }) + }, []) + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ?
+
: + + // + + + } + {/*
*/} + + + + + + + ); +} diff --git a/src/views/TableList/TableList.js b/src/views/TableList/TableList.js new file mode 100644 index 0000000..1dcbe84 --- /dev/null +++ b/src/views/TableList/TableList.js @@ -0,0 +1,375 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import OpeningStockService from "services/openingStock.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Button from "components/CustomButtons/Button.js"; +import DateFnsUtils from "@date-io/date-fns"; // choose your lib +import CustomInput from "components/CustomInput/CustomInput.js"; +import AsyncSelect from "react-select/async"; +import FormControlLabel from "@material-ui/core/FormControlLabel"; +import Checkbox from "@material-ui/core/Checkbox"; +import { Grid, OutlinedInput, TextField } from "@material-ui/core"; + +import { + KeyboardDatePicker, + MuiPickersUtilsProvider, +} from "@material-ui/pickers"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +var TransferTooptions = []; +var TransferFromoptions = []; +var locOptions = []; +var parentCategoryOptions = []; +var subCategoryOptions = []; +var accountOptions = []; +var secondAccountOptions = []; +var BusinessTypesOptions = []; +var brandOptions = []; +var customerOptions = []; +var categoryOptions = []; +var supplierOptions = []; +var originOptions = []; +var productOptions = []; +var adjustmentTypeOptions = []; +var supplierCompanyOptions = []; +var orderTakerOptions = []; + +function logChange(val) { + setOption(val); +} +function orderTakerChange(val) { + setOption(val); +} +function categoryChange(val) { + setcategoryOption(val); +} +function brandChange(val) { + setbrandOption(val); +} +function SubCategory(val) { + setOption(val); +} +function supplierCompanyChange(val) { + setOption(val); +} +function originChange(val) { + setoriginOption(val); +} +async function loadOptionsOrderTaker() { + const response = await CommonService.Customer(); + await response.data.Data.forEach((element) => { + orderTakerOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return orderTakerOptions; +} +async function loadOptionsCat() { + const response = await CommonService.Categories(); + await response.data.Data.forEach((element) => { + categoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return categoryOptions; +} + +async function loadOptionsSubCategory() { + const response = await commonService.SubCategory(); + await response.data.Data.forEach((element) => { + subCategoryOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return parentCategoryOptions; +} +async function loadOptionsBrand() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + brandOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return brandOptions; +} +async function loadOptionsSupplierCompany() { + const response = await CommonService.Brands(); + await response.data.Data.forEach((element) => { + supplierCompanyOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return supplierCompanyOptions; +} +async function loadOptionsOrigin() { + const response = await CommonService.Origin(); + await response.data.Data.forEach((element) => { + originOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return originOptions; +} + +async function loadOptionsCustomer() { + const response = await CommonService.Customer(); + await response.data.Data.forEach((element) => { + customerOptions.push({ + value: element.Id, + label: element.Title, + }); + }); + return customerOptions; +} +export default function TableList(props) { + var categoryOptions = []; + var brandOptions = []; + var subCategoryOptions = []; + var supplierCompanyOptions = []; + var originOptions = []; + + // const [dataArrayMain, setDataArrayMain] = useState([]); + // const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + const classes = useStyles(); + var dataArray = []; + let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedData" + ); + let locationId = new URLSearchParams(props.location.search).get("value"); + OpeningStockService.OpeningStock(selectedDate, locationId) + .then((res) => { + console.log(res.data); + + if (res.data.length != 0) { + setAllData(res.data); + + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + + return ( + // + // + // + // + //

{props.name}

+ //

+ // comment this islamabad + // Islamabad W/H(1) + //

+ //
+ // + // {!isData ?
+ //
: + // comment this datatable + // + // + + // } + // comment this table + //
+ // + // + // + + // + + <> + {/* Create sale order */} + + + + + + +
+ + + +
+
+ + + + +
+ +
+
+ +
+ +
+
+
+ + + + + +

Add Table here

+
+ + + + + + +
+ + {/* */} + + {/* */} + {/* */} + + {/* */} + {/* */} + + {/* */} + {/* */} + + {/* */} + +
+
+
+
+ + + + ); +} diff --git a/src/views/TableList/UnitList.js b/src/views/TableList/UnitList.js new file mode 100644 index 0000000..b962c3f --- /dev/null +++ b/src/views/TableList/UnitList.js @@ -0,0 +1,124 @@ +import React, { Fragment, useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Table from "components/Table/Table.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function UnitList(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + const columns = [ + "Title", + { + name: "Status", + options: { + customBodyRender: (value, tableMeta, updateValue) => ( +
{value ? "Active" : "Inactive"}
+ ), + }, + }, + ]; + + useEffect(() => { + tableService + .unitList() + .then((res) => { + const data = JSON.parse(res); + const idk = JSON.parse(data.Data); + if (idk.length != 0) { + let categories = []; + idk.map((item) => { + let avvv = []; + avvv.push(item.title); + avvv.push(item.active); + categories.push(avvv); + }); + // console.log("dehwnfgwegewg", categories); + setAllData(categories); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + + + + +

{props.name}

+

+ {/* Islamabad W/H(1) */} +

+
+ + {!isData ? ( +
+ +
+ ) : ( + + + + )} +
+
+
+
+ ); +} diff --git a/src/views/TableList/WholeSaleInvoice.js b/src/views/TableList/WholeSaleInvoice.js new file mode 100644 index 0000000..4f400d8 --- /dev/null +++ b/src/views/TableList/WholeSaleInvoice.js @@ -0,0 +1,150 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/*
+ + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductQtySale RateSale inv totalKhyber RateKhyber inv Total
Total Sale00
+Cust NameInv No.Inv AmountTatara
Total Sale00
+ + + //
+ ); +} diff --git a/src/views/TableList/WholeSaleLedger.js b/src/views/TableList/WholeSaleLedger.js new file mode 100644 index 0000000..848a45d --- /dev/null +++ b/src/views/TableList/WholeSaleLedger.js @@ -0,0 +1,170 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let dateFrom = new URLSearchParams(props.location.search).get("from"); + let dateTo = new URLSearchParams(props.location.search).get("to"); + + tableService + .WSL(dateFrom, dateTo) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/* + + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* + + */} + + + + + + + + + +
sr#Voucher#DateDetailsAmountBalance
Khyber Traders Cash

Amount In

Total Sale0.0

Amount Out

Net Sale0.0
Khyber Traders Cash

Amount In

Amount Out

sr#Voucher#DateDetailsAmountBalance
+
+ + //
+ ); +} diff --git a/src/views/TableList/WholeSaleSummaryLedger.js b/src/views/TableList/WholeSaleSummaryLedger.js new file mode 100644 index 0000000..a2f432a --- /dev/null +++ b/src/views/TableList/WholeSaleSummaryLedger.js @@ -0,0 +1,138 @@ +import React, { useEffect, useState } from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; +import DataTable from "components/DataTable/DataTable.js"; +import tableService from "services/tables.service"; +import Loader from "components/Loader/Loader.js"; +import parse from "html-react-parser"; +import Table from "@material-ui/core/Table"; +import TableBody from "@material-ui/core/TableBody"; +import TableCell from "@material-ui/core/TableCell"; +import TableHead from "@material-ui/core/TableHead"; +import TableRow from "@material-ui/core/TableRow"; +import Paper from "@material-ui/core/Paper"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, +}; + +const useStyles = makeStyles(styles); + +export default function DailyStatement(props) { + const [dataArrayMain, setDataArrayMain] = useState([]); + const [keys, setKeys] = useState([]); + const [isData, setIsData] = useState(false); + const [allData, setAllData] = useState(""); + + const classes = useStyles(); + var dataArray = []; + // let label = new URLSearchParams(props.location.search).get("label"); + + // var keys = []; + + useEffect(() => { + let supplier = new URLSearchParams(props.location.search).get("supp"); + let brand = new URLSearchParams(props.location.search).get("brand"); + let category = new URLSearchParams(props.location.search).get("category"); + let origin = new URLSearchParams(props.location.search).get("origin"); + let selectedDate = new URLSearchParams(props.location.search).get( + "selectedDate" + ); + let group = new URLSearchParams(props.location.search).get("group"); + + tableService + .ABS(category, brand, supplier, origin, selectedDate, group) + .then((res) => { + console.log(res.data); + if (res.data.length != 0) { + // res.data.forEach(element => { + // dataArray.push( + // Object.keys(element).map(val => element[val]) + // ) + // }); + // setDataArrayMain(dataArray) + // setKeys(Object.keys(res.data[0])); + // console.log(keys); + // console.log(dataArray); + setAllData(res.data); + } + setIsData(true); + }) + .catch((err) => { + console.log(err); + }); + }, []); + return ( + // + + {/* + + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + + +
*/} + + + + + + + + + + + + + + + + + + + +
sr#DateDescriptionDrCrBalance
Total Sale0.00.0-32276785.91
+
+ + //
+ ); +} diff --git a/src/views/Typography/Typography.js b/src/views/Typography/Typography.js new file mode 100644 index 0000000..98b595b --- /dev/null +++ b/src/views/Typography/Typography.js @@ -0,0 +1,162 @@ +import React from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// core components +import Quote from "components/Typography/Quote.js"; +import Muted from "components/Typography/Muted.js"; +import Primary from "components/Typography/Primary.js"; +import Info from "components/Typography/Info.js"; +import Success from "components/Typography/Success.js"; +import Warning from "components/Typography/Warning.js"; +import Danger from "components/Typography/Danger.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; + +const styles = { + typo: { + paddingLeft: "25%", + marginBottom: "40px", + position: "relative", + }, + note: { + fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', + bottom: "10px", + color: "#c0c1c2", + display: "block", + fontWeight: "400", + fontSize: "13px", + lineHeight: "13px", + left: "0", + marginLeft: "20px", + position: "absolute", + width: "260px", + }, + cardCategoryWhite: { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + }, +}; + +const useStyles = makeStyles(styles); + +export default function TypographyPage() { + const classes = useStyles(); + return ( + + +

Material Dashboard Heading

+

+ Created using Roboto Font Family +

+
+ +
+
Header 1
+

The Life of Material Dashboard

+
+
+
Header 2
+

The Life of Material Dashboard

+
+
+
Header 3
+

The Life of Material Dashboard

+
+
+
Header 4
+

The Life of Material Dashboard

+
+
+
Header 5
+
The Life of Material Dashboard
+
+
+
Header 6
+
The Life of Material Dashboard
+
+
+
Paragraph
+

+ I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers. I understand culture. I am + the nucleus. I think that’s a responsibility that I have, to push + possibilities, to show people, this is the level that things could + be at. +

+
+
+
Quote
+ +
+
+
Muted Text
+ + I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers... + +
+
+
Primary Text
+ + I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers... + +
+
+
Info Text
+ + I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers... + +
+
+
Success Text
+ + I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers... + +
+
+
Warning Text
+ + I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers... + +
+
+
Danger Text
+ + I will be the leader of a company that ends up being worth billions + of dollars, because I got the answers... + +
+
+
Small Tag
+

+ Header with small subtitle +
+ + Use {'"'}Small{'"'} tag for the headers + +

+
+
+
+ ); +} diff --git a/src/views/UpgradeToPro/UpgradeToPro.js b/src/views/UpgradeToPro/UpgradeToPro.js new file mode 100644 index 0000000..dec4716 --- /dev/null +++ b/src/views/UpgradeToPro/UpgradeToPro.js @@ -0,0 +1,212 @@ +import React from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +// @material-ui/icons +import Close from "@material-ui/icons/Close"; +import Check from "@material-ui/icons/Check"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import Danger from "components/Typography/Danger.js"; +import Success from "components/Typography/Success.js"; +import Button from "components/CustomButtons/Button.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardBody from "components/Card/CardBody.js"; + +const styles = { + cardCategoryWhite: { + "&,& a,& a:hover,& a:focus": { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + "& a,& a:hover,& a:focus": { + color: "#FFFFFF", + }, + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + "& small": { + color: "#777", + fontSize: "65%", + fontWeight: "400", + lineHeight: "1", + }, + }, + tableUpgradeWrapper: { + display: "block", + width: "100%", + overflowX: "auto", + WebkitOverflowScrolling: "touch", + MsOverflowStyle: "-ms-autohiding-scrollbar", + }, + table: { + width: "100%", + maxWidth: "100%", + marginBottom: "1rem", + backgroundColor: "transparent", + borderCollapse: "collapse", + display: "table", + borderSpacing: "2px", + borderColor: "grey", + "& thdead tr th": { + fontSize: "1.063rem", + padding: "12px 8px", + verticalAlign: "middle", + fontWeight: "300", + borderTopWidth: "0", + borderBottom: "1px solid rgba(0, 0, 0, 0.06)", + textAlign: "inherit", + }, + "& tbody tr td": { + padding: "12px 8px", + verticalAlign: "middle", + borderTop: "1px solid rgba(0, 0, 0, 0.06)", + }, + "& td, & th": { + display: "table-cell", + }, + }, + center: { + textAlign: "center", + }, +}; + +const useStyles = makeStyles(styles); + +export default function UpgradeToPro() { + const classes = useStyles(); + return ( + + + + +

+ Material Dashboard PRO React +

+

+ Are you looking for more components? Please check our Premium + Version of Material Dashboard Angular. +

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ FreePRO
Components30200
Plugins210
Example Pages728
Login, Register, Pricing, Lock Pages + + + + + + + +
+ ReactTables, ReactVectorMap, ReactSweetAlert, Wizard, + Validation, ReactBigCalendar etc... + + + + + + + + +
Mini Sidebar + + + + + + + +
Premium Support + + + + + + + +
+ FreeJust $59
+ + + + +
+
+
+
+
+
+ ); +} diff --git a/src/views/UserProfile/UserProfile.js b/src/views/UserProfile/UserProfile.js new file mode 100644 index 0000000..377fc84 --- /dev/null +++ b/src/views/UserProfile/UserProfile.js @@ -0,0 +1,179 @@ +import React from "react"; +// @material-ui/core components +import { makeStyles } from "@material-ui/core/styles"; +import InputLabel from "@material-ui/core/InputLabel"; +// core components +import GridItem from "components/Grid/GridItem.js"; +import GridContainer from "components/Grid/GridContainer.js"; +import CustomInput from "components/CustomInput/CustomInput.js"; +import Button from "components/CustomButtons/Button.js"; +import Card from "components/Card/Card.js"; +import CardHeader from "components/Card/CardHeader.js"; +import CardAvatar from "components/Card/CardAvatar.js"; +import CardBody from "components/Card/CardBody.js"; +import CardFooter from "components/Card/CardFooter.js"; + +import avatar from "assets/img/faces/marc.jpg"; + +const styles = { + cardCategoryWhite: { + color: "rgba(255,255,255,.62)", + margin: "0", + fontSize: "14px", + marginTop: "0", + marginBottom: "0", + }, + cardTitleWhite: { + color: "#FFFFFF", + marginTop: "0px", + minHeight: "auto", + fontWeight: "300", + fontFamily: "'Roboto', 'Helvetica', 'Arial', sans-serif", + marginBottom: "3px", + textDecoration: "none", + }, +}; + +const useStyles = makeStyles(styles); + +export default function UserProfile() { + const classes = useStyles(); + return ( +
+ + + + +

Edit Profile

+

Complete your profile

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + About me + + + + + + + +
+
+ + + + e.preventDefault()}> + ... + + + +
CEO / CO-FOUNDER
+

Alec Thompson

+

+ Don{"'"}t be scared of the truth because we need to restart the + human foundation in truth And I love you like Kanye loves Kanye + I love Rick Owens’ bed design but the back is... +

+ + +
+
+
+
+
+ ); +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..929c152 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,14257 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.5.5": + "integrity" "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/highlight" "^7.14.5" + +"@babel/code-frame@7.10.4": + "integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@7.12.11": + "integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz" + "version" "7.12.11" + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.7", "@babel/compat-data@^7.15.0": + "integrity" "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==" + "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz" + "version" "7.15.0" + +"@babel/core@^7.0.0-0", "@babel/core@^7.12.0", "@babel/core@^7.12.3", "@babel/core@^7.13.0", "@babel/core@^7.4.0-0": + "integrity" "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.15.0" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.2" + "json5" "^2.1.2" + "semver" "^6.3.0" + "source-map" "^0.5.0" + +"@babel/core@^7.0.0", "@babel/core@7.14.0": + "integrity" "sha512-8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.14.0.tgz" + "version" "7.14.0" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.14.0" + "@babel/helper-compilation-targets" "^7.13.16" + "@babel/helper-module-transforms" "^7.14.0" + "@babel/helpers" "^7.14.0" + "@babel/parser" "^7.14.0" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.14.0" + "@babel/types" "^7.14.0" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.2" + "json5" "^2.1.2" + "semver" "^6.3.0" + "source-map" "^0.5.0" + +"@babel/core@^7.1.0": + "integrity" "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.15.0" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.2" + "json5" "^2.1.2" + "semver" "^6.3.0" + "source-map" "^0.5.0" + +"@babel/core@^7.7.5": + "integrity" "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.15.0" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.2" + "json5" "^2.1.2" + "semver" "^6.3.0" + "source-map" "^0.5.0" + +"@babel/core@^7.8.4", "@babel/core@7 || ^7.0.0-rc.2": + "integrity" "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.15.0" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.2" + "json5" "^2.1.2" + "semver" "^6.3.0" + "source-map" "^0.5.0" + +"@babel/core@7.12.3": + "integrity" "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz" + "version" "7.12.3" + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/generator" "^7.12.1" + "@babel/helper-module-transforms" "^7.12.1" + "@babel/helpers" "^7.12.1" + "@babel/parser" "^7.12.3" + "@babel/template" "^7.10.4" + "@babel/traverse" "^7.12.1" + "@babel/types" "^7.12.1" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.1" + "json5" "^2.1.2" + "lodash" "^4.17.19" + "resolve" "^1.3.2" + "semver" "^5.4.1" + "source-map" "^0.5.0" + +"@babel/generator@^7.12.1", "@babel/generator@^7.14.0", "@babel/generator@^7.15.0": + "integrity" "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==" + "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/types" "^7.15.0" + "jsesc" "^2.5.1" + "source-map" "^0.5.0" + +"@babel/generator@^7.15.4": + "integrity" "sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==" + "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/types" "^7.15.4" + "jsesc" "^2.5.1" + "source-map" "^0.5.0" + +"@babel/helper-annotate-as-pure@^7.0.0": + "integrity" "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==" + "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-annotate-as-pure@^7.14.5": + "integrity" "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==" + "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": + "integrity" "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==" + "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-explode-assignable-expression" "^7.14.5" + "@babel/types" "^7.14.5" + +"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.15.0": + "integrity" "sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==" + "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/compat-data" "^7.15.0" + "@babel/helper-validator-option" "^7.14.5" + "browserslist" "^4.16.6" + "semver" "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.0": + "integrity" "sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-member-expression-to-functions" "^7.15.0" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/helper-replace-supers" "^7.15.0" + "@babel/helper-split-export-declaration" "^7.14.5" + +"@babel/helper-create-regexp-features-plugin@^7.14.5": + "integrity" "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "regexpu-core" "^4.7.1" + +"@babel/helper-define-polyfill-provider@^0.2.2": + "integrity" "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==" + "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz" + "version" "0.2.3" + dependencies: + "@babel/helper-compilation-targets" "^7.13.0" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" + "@babel/traverse" "^7.13.0" + "debug" "^4.1.1" + "lodash.debounce" "^4.0.8" + "resolve" "^1.14.2" + "semver" "^6.1.2" + +"@babel/helper-explode-assignable-expression@^7.14.5": + "integrity" "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-function-name@^7.14.5": + "integrity" "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-get-function-arity" "^7.14.5" + "@babel/template" "^7.14.5" + "@babel/types" "^7.14.5" + +"@babel/helper-function-name@^7.15.4": + "integrity" "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==" + "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/helper-get-function-arity" "^7.15.4" + "@babel/template" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/helper-get-function-arity@^7.14.5": + "integrity" "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==" + "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-get-function-arity@^7.15.4": + "integrity" "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==" + "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-hoist-variables@^7.14.5": + "integrity" "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-hoist-variables@^7.15.4": + "integrity" "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==" + "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-member-expression-to-functions@^7.15.0": + "integrity" "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==" + "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/types" "^7.15.0" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": + "integrity" "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.0", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.0": + "integrity" "sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-replace-supers" "^7.15.0" + "@babel/helper-simple-access" "^7.14.8" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.9" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + +"@babel/helper-optimise-call-expression@^7.14.5": + "integrity" "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==" + "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + "integrity" "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz" + "version" "7.14.5" + +"@babel/helper-remap-async-to-generator@^7.14.5": + "integrity" "sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==" + "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-wrap-function" "^7.14.5" + "@babel/types" "^7.14.5" + +"@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.0": + "integrity" "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==" + "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-member-expression-to-functions" "^7.15.0" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + +"@babel/helper-simple-access@^7.14.8": + "integrity" "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==" + "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz" + "version" "7.14.8" + dependencies: + "@babel/types" "^7.14.8" + +"@babel/helper-skip-transparent-expression-wrappers@^7.12.1", "@babel/helper-skip-transparent-expression-wrappers@^7.14.5": + "integrity" "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-split-export-declaration@^7.14.5": + "integrity" "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==" + "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/types" "^7.14.5" + +"@babel/helper-split-export-declaration@^7.15.4": + "integrity" "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==" + "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/types" "^7.15.4" + +"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9": + "integrity" "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz" + "version" "7.14.9" + +"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.14.5": + "integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz" + "version" "7.14.5" + +"@babel/helper-wrap-function@^7.14.5": + "integrity" "sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-function-name" "^7.14.5" + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.14.5" + "@babel/types" "^7.14.5" + +"@babel/helpers@^7.12.1", "@babel/helpers@^7.14.0", "@babel/helpers@^7.14.8": + "integrity" "sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==" + "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.3.tgz" + "version" "7.15.3" + dependencies: + "@babel/template" "^7.14.5" + "@babel/traverse" "^7.15.0" + "@babel/types" "^7.15.0" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": + "integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==" + "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-validator-identifier" "^7.14.5" + "chalk" "^2.0.0" + "js-tokens" "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.12.3", "@babel/parser@^7.14.0", "@babel/parser@^7.14.5", "@babel/parser@^7.15.0", "@babel/parser@^7.7.0": + "integrity" "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==" + "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz" + "version" "7.15.3" + +"@babel/parser@^7.15.4": + "integrity" "sha512-xmzz+7fRpjrvDUj+GV7zfz/R3gSK2cOxGlazaXooxspCr539cbTXJKvBJzSVI2pPhcRGquoOtaIkKCsHQUiO3w==" + "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.15.4.tgz" + "version" "7.15.4" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": + "integrity" "sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + "@babel/plugin-proposal-optional-chaining" "^7.14.5" + +"@babel/plugin-proposal-async-generator-functions@^7.12.1": + "integrity" "sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-remap-async-to-generator" "^7.14.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-async-generator-functions@^7.14.9": + "integrity" "sha512-d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-remap-async-to-generator" "^7.14.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.12.1": + "integrity" "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-class-properties@^7.14.5": + "integrity" "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-class-properties@7.12.1": + "integrity" "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-proposal-class-static-block@^7.14.5": + "integrity" "sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-decorators@7.12.1": + "integrity" "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-decorators" "^7.12.1" + +"@babel/plugin-proposal-dynamic-import@^7.12.1": + "integrity" "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-dynamic-import@^7.14.5": + "integrity" "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.12.1": + "integrity" "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.14.5": + "integrity" "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.12.1": + "integrity" "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.14.5": + "integrity" "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.12.1": + "integrity" "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-logical-assignment-operators@^7.14.5": + "integrity" "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": + "integrity" "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": + "integrity" "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-nullish-coalescing-operator@7.12.1": + "integrity" "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/plugin-proposal-numeric-separator@^7.12.1": + "integrity" "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-numeric-separator@^7.14.5": + "integrity" "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-numeric-separator@7.12.1": + "integrity" "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.12.1": + "integrity" "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz" + "version" "7.14.7" + dependencies: + "@babel/compat-data" "^7.14.7" + "@babel/helper-compilation-targets" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.14.5" + +"@babel/plugin-proposal-object-rest-spread@^7.14.7": + "integrity" "sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz" + "version" "7.14.7" + dependencies: + "@babel/compat-data" "^7.14.7" + "@babel/helper-compilation-targets" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.14.5" + +"@babel/plugin-proposal-optional-catch-binding@^7.12.1": + "integrity" "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-catch-binding@^7.14.5": + "integrity" "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.12.1": + "integrity" "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.14.5": + "integrity" "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@7.12.1": + "integrity" "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-private-methods@^7.12.1": + "integrity" "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-private-methods@^7.14.5": + "integrity" "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-proposal-private-property-in-object@^7.14.5": + "integrity" "sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-create-class-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + "integrity" "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": + "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" + "version" "7.8.4" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + "integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.1": + "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-properties@^7.12.13": + "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-properties@^7.8.3": + "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-decorators@^7.12.1": + "integrity" "sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": + "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-flow@^7.12.1": + "integrity" "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-import-meta@^7.8.3": + "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": + "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.14.5": + "integrity" "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-numeric-separator@^7.8.3": + "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": + "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": + "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.12.1": + "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.8.3": + "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.14.5": + "integrity" "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-arrow-functions@^7.12.1": + "integrity" "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-arrow-functions@^7.14.5": + "integrity" "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-async-to-generator@^7.12.1": + "integrity" "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-remap-async-to-generator" "^7.14.5" + +"@babel/plugin-transform-async-to-generator@^7.14.5": + "integrity" "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-remap-async-to-generator" "^7.14.5" + +"@babel/plugin-transform-block-scoped-functions@^7.12.1": + "integrity" "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-block-scoped-functions@^7.14.5": + "integrity" "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-block-scoping@^7.12.1": + "integrity" "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz" + "version" "7.15.3" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-block-scoping@^7.14.5": + "integrity" "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz" + "version" "7.15.3" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-classes@^7.12.1": + "integrity" "sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "globals" "^11.1.0" + +"@babel/plugin-transform-classes@^7.14.9": + "integrity" "sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-optimise-call-expression" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "globals" "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.12.1": + "integrity" "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-computed-properties@^7.14.5": + "integrity" "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-destructuring@^7.12.1": + "integrity" "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz" + "version" "7.14.7" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-destructuring@^7.14.7": + "integrity" "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz" + "version" "7.14.7" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": + "integrity" "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-duplicate-keys@^7.12.1": + "integrity" "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-duplicate-keys@^7.14.5": + "integrity" "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-exponentiation-operator@^7.12.1": + "integrity" "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-exponentiation-operator@^7.14.5": + "integrity" "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-flow-strip-types@7.12.1": + "integrity" "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-flow" "^7.12.1" + +"@babel/plugin-transform-for-of@^7.12.1": + "integrity" "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-for-of@^7.14.5": + "integrity" "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-function-name@^7.12.1": + "integrity" "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-function-name@^7.14.5": + "integrity" "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-literals@^7.12.1": + "integrity" "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-literals@^7.14.5": + "integrity" "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-member-expression-literals@^7.12.1": + "integrity" "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-member-expression-literals@^7.14.5": + "integrity" "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-modules-amd@^7.12.1": + "integrity" "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-amd@^7.14.5": + "integrity" "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-commonjs@^7.12.1": + "integrity" "sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-simple-access" "^7.14.8" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-commonjs@^7.15.0": + "integrity" "sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-module-transforms" "^7.15.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-simple-access" "^7.14.8" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-systemjs@^7.12.1": + "integrity" "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-hoist-variables" "^7.14.5" + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.5" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-systemjs@^7.14.5": + "integrity" "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-hoist-variables" "^7.14.5" + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.5" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-umd@^7.12.1": + "integrity" "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-modules-umd@^7.14.5": + "integrity" "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-module-transforms" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1": + "integrity" "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.14.9": + "integrity" "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + +"@babel/plugin-transform-new-target@^7.12.1": + "integrity" "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-new-target@^7.14.5": + "integrity" "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-object-super@^7.12.1": + "integrity" "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + +"@babel/plugin-transform-object-super@^7.14.5": + "integrity" "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-replace-supers" "^7.14.5" + +"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.14.5": + "integrity" "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.12.1": + "integrity" "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.14.5": + "integrity" "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-constant-elements@^7.12.1": + "integrity" "sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-display-name@^7.12.1": + "integrity" "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz" + "version" "7.15.1" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-display-name@^7.14.5": + "integrity" "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz" + "version" "7.15.1" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-display-name@7.12.1": + "integrity" "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-transform-react-jsx-development@^7.12.1": + "integrity" "sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/plugin-transform-react-jsx" "^7.14.5" + +"@babel/plugin-transform-react-jsx-development@^7.14.5": + "integrity" "sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/plugin-transform-react-jsx" "^7.14.5" + +"@babel/plugin-transform-react-jsx-self@^7.12.1": + "integrity" "sha512-Fqqu0f8zv9W+RyOnx29BX/RlEsBRANbOf5xs5oxb2aHP4FKbLXxIaVPUiCti56LAR1IixMH4EyaixhUsKqoBHw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-jsx-source@^7.12.1": + "integrity" "sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.14.5": + "integrity" "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz" + "version" "7.14.9" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-jsx" "^7.14.5" + "@babel/types" "^7.14.9" + +"@babel/plugin-transform-react-pure-annotations@^7.12.1": + "integrity" "sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-react-pure-annotations@^7.14.5": + "integrity" "sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-regenerator@^7.12.1": + "integrity" "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "regenerator-transform" "^0.14.2" + +"@babel/plugin-transform-regenerator@^7.14.5": + "integrity" "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "regenerator-transform" "^0.14.2" + +"@babel/plugin-transform-reserved-words@^7.12.1": + "integrity" "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-reserved-words@^7.14.5": + "integrity" "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-runtime@7.12.1": + "integrity" "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-module-imports" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + "resolve" "^1.8.1" + "semver" "^5.5.1" + +"@babel/plugin-transform-shorthand-properties@^7.12.1": + "integrity" "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-shorthand-properties@^7.14.5": + "integrity" "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-spread@^7.12.1": + "integrity" "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz" + "version" "7.14.6" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + +"@babel/plugin-transform-spread@^7.14.6": + "integrity" "sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz" + "version" "7.14.6" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" + +"@babel/plugin-transform-sticky-regex@^7.12.1": + "integrity" "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-sticky-regex@^7.14.5": + "integrity" "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-template-literals@^7.12.1": + "integrity" "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-template-literals@^7.14.5": + "integrity" "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-typeof-symbol@^7.12.1": + "integrity" "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-typeof-symbol@^7.14.5": + "integrity" "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-typescript@^7.12.1": + "integrity" "sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.15.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-typescript" "^7.14.5" + +"@babel/plugin-transform-unicode-escapes@^7.12.1": + "integrity" "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-unicode-escapes@^7.14.5": + "integrity" "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-unicode-regex@^7.12.1": + "integrity" "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-unicode-regex@^7.14.5": + "integrity" "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.8.4": + "integrity" "sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==" + "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/compat-data" "^7.15.0" + "@babel/helper-compilation-targets" "^7.15.0" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-validator-option" "^7.14.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.14.5" + "@babel/plugin-proposal-async-generator-functions" "^7.14.9" + "@babel/plugin-proposal-class-properties" "^7.14.5" + "@babel/plugin-proposal-class-static-block" "^7.14.5" + "@babel/plugin-proposal-dynamic-import" "^7.14.5" + "@babel/plugin-proposal-export-namespace-from" "^7.14.5" + "@babel/plugin-proposal-json-strings" "^7.14.5" + "@babel/plugin-proposal-logical-assignment-operators" "^7.14.5" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5" + "@babel/plugin-proposal-numeric-separator" "^7.14.5" + "@babel/plugin-proposal-object-rest-spread" "^7.14.7" + "@babel/plugin-proposal-optional-catch-binding" "^7.14.5" + "@babel/plugin-proposal-optional-chaining" "^7.14.5" + "@babel/plugin-proposal-private-methods" "^7.14.5" + "@babel/plugin-proposal-private-property-in-object" "^7.14.5" + "@babel/plugin-proposal-unicode-property-regex" "^7.14.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-transform-arrow-functions" "^7.14.5" + "@babel/plugin-transform-async-to-generator" "^7.14.5" + "@babel/plugin-transform-block-scoped-functions" "^7.14.5" + "@babel/plugin-transform-block-scoping" "^7.14.5" + "@babel/plugin-transform-classes" "^7.14.9" + "@babel/plugin-transform-computed-properties" "^7.14.5" + "@babel/plugin-transform-destructuring" "^7.14.7" + "@babel/plugin-transform-dotall-regex" "^7.14.5" + "@babel/plugin-transform-duplicate-keys" "^7.14.5" + "@babel/plugin-transform-exponentiation-operator" "^7.14.5" + "@babel/plugin-transform-for-of" "^7.14.5" + "@babel/plugin-transform-function-name" "^7.14.5" + "@babel/plugin-transform-literals" "^7.14.5" + "@babel/plugin-transform-member-expression-literals" "^7.14.5" + "@babel/plugin-transform-modules-amd" "^7.14.5" + "@babel/plugin-transform-modules-commonjs" "^7.15.0" + "@babel/plugin-transform-modules-systemjs" "^7.14.5" + "@babel/plugin-transform-modules-umd" "^7.14.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.14.9" + "@babel/plugin-transform-new-target" "^7.14.5" + "@babel/plugin-transform-object-super" "^7.14.5" + "@babel/plugin-transform-parameters" "^7.14.5" + "@babel/plugin-transform-property-literals" "^7.14.5" + "@babel/plugin-transform-regenerator" "^7.14.5" + "@babel/plugin-transform-reserved-words" "^7.14.5" + "@babel/plugin-transform-shorthand-properties" "^7.14.5" + "@babel/plugin-transform-spread" "^7.14.6" + "@babel/plugin-transform-sticky-regex" "^7.14.5" + "@babel/plugin-transform-template-literals" "^7.14.5" + "@babel/plugin-transform-typeof-symbol" "^7.14.5" + "@babel/plugin-transform-unicode-escapes" "^7.14.5" + "@babel/plugin-transform-unicode-regex" "^7.14.5" + "@babel/preset-modules" "^0.1.4" + "@babel/types" "^7.15.0" + "babel-plugin-polyfill-corejs2" "^0.2.2" + "babel-plugin-polyfill-corejs3" "^0.2.2" + "babel-plugin-polyfill-regenerator" "^0.2.2" + "core-js-compat" "^3.16.0" + "semver" "^6.3.0" + +"@babel/preset-env@7.12.1": + "integrity" "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==" + "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/compat-data" "^7.12.1" + "@babel/helper-compilation-targets" "^7.12.1" + "@babel/helper-module-imports" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-validator-option" "^7.12.1" + "@babel/plugin-proposal-async-generator-functions" "^7.12.1" + "@babel/plugin-proposal-class-properties" "^7.12.1" + "@babel/plugin-proposal-dynamic-import" "^7.12.1" + "@babel/plugin-proposal-export-namespace-from" "^7.12.1" + "@babel/plugin-proposal-json-strings" "^7.12.1" + "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" + "@babel/plugin-proposal-numeric-separator" "^7.12.1" + "@babel/plugin-proposal-object-rest-spread" "^7.12.1" + "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.12.1" + "@babel/plugin-proposal-private-methods" "^7.12.1" + "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-class-properties" "^7.12.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.12.1" + "@babel/plugin-transform-arrow-functions" "^7.12.1" + "@babel/plugin-transform-async-to-generator" "^7.12.1" + "@babel/plugin-transform-block-scoped-functions" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.1" + "@babel/plugin-transform-classes" "^7.12.1" + "@babel/plugin-transform-computed-properties" "^7.12.1" + "@babel/plugin-transform-destructuring" "^7.12.1" + "@babel/plugin-transform-dotall-regex" "^7.12.1" + "@babel/plugin-transform-duplicate-keys" "^7.12.1" + "@babel/plugin-transform-exponentiation-operator" "^7.12.1" + "@babel/plugin-transform-for-of" "^7.12.1" + "@babel/plugin-transform-function-name" "^7.12.1" + "@babel/plugin-transform-literals" "^7.12.1" + "@babel/plugin-transform-member-expression-literals" "^7.12.1" + "@babel/plugin-transform-modules-amd" "^7.12.1" + "@babel/plugin-transform-modules-commonjs" "^7.12.1" + "@babel/plugin-transform-modules-systemjs" "^7.12.1" + "@babel/plugin-transform-modules-umd" "^7.12.1" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" + "@babel/plugin-transform-new-target" "^7.12.1" + "@babel/plugin-transform-object-super" "^7.12.1" + "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/plugin-transform-property-literals" "^7.12.1" + "@babel/plugin-transform-regenerator" "^7.12.1" + "@babel/plugin-transform-reserved-words" "^7.12.1" + "@babel/plugin-transform-shorthand-properties" "^7.12.1" + "@babel/plugin-transform-spread" "^7.12.1" + "@babel/plugin-transform-sticky-regex" "^7.12.1" + "@babel/plugin-transform-template-literals" "^7.12.1" + "@babel/plugin-transform-typeof-symbol" "^7.12.1" + "@babel/plugin-transform-unicode-escapes" "^7.12.1" + "@babel/plugin-transform-unicode-regex" "^7.12.1" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.12.1" + "core-js-compat" "^3.6.2" + "semver" "^5.5.0" + +"@babel/preset-modules@^0.1.3": + "integrity" "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==" + "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + "esutils" "^2.0.2" + +"@babel/preset-modules@^0.1.4": + "integrity" "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==" + "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + "esutils" "^2.0.2" + +"@babel/preset-react@^7.12.5": + "integrity" "sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==" + "resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/helper-validator-option" "^7.14.5" + "@babel/plugin-transform-react-display-name" "^7.14.5" + "@babel/plugin-transform-react-jsx" "^7.14.5" + "@babel/plugin-transform-react-jsx-development" "^7.14.5" + "@babel/plugin-transform-react-pure-annotations" "^7.14.5" + +"@babel/preset-react@7.12.1": + "integrity" "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==" + "resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-react-display-name" "^7.12.1" + "@babel/plugin-transform-react-jsx" "^7.12.1" + "@babel/plugin-transform-react-jsx-development" "^7.12.1" + "@babel/plugin-transform-react-jsx-self" "^7.12.1" + "@babel/plugin-transform-react-jsx-source" "^7.12.1" + "@babel/plugin-transform-react-pure-annotations" "^7.12.1" + +"@babel/preset-typescript@7.12.1": + "integrity" "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==" + "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-typescript" "^7.12.1" + +"@babel/runtime-corejs3@^7.10.2": + "integrity" "sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==" + "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz" + "version" "7.15.3" + dependencies: + "core-js-pure" "^3.16.0" + "regenerator-runtime" "^0.13.4" + +"@babel/runtime-corejs3@^7.12.1": + "integrity" "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==" + "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "core-js-pure" "^3.16.0" + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": + "integrity" "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz" + "version" "7.15.3" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.12.0": + "integrity" "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.13.10": + "integrity" "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.16.5": + "integrity" "sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz" + "version" "7.17.9" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.6.0": + "integrity" "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.9.2": + "integrity" "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@7.0.0": + "integrity" "sha512-7hGhzlcmg01CvH1EHdSPVXYX1aJ8KCEyz6I9xYIi/asDtzBPMyMhVibhM/K6g/5qnKBwjZtp10bNZIEFTRW1MA==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0.tgz" + "version" "7.0.0" + dependencies: + "regenerator-runtime" "^0.12.0" + +"@babel/runtime@7.12.1": + "integrity" "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/template@^7.10.4", "@babel/template@^7.12.13", "@babel/template@^7.14.5", "@babel/template@^7.3.3": + "integrity" "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==" + "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz" + "version" "7.14.5" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/parser" "^7.14.5" + "@babel/types" "^7.14.5" + +"@babel/template@^7.15.4": + "integrity" "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==" + "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/parser" "^7.15.4" + "@babel/types" "^7.15.4" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.15.0", "@babel/traverse@^7.7.0": + "integrity" "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==" + "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.0" + "@babel/helper-function-name" "^7.14.5" + "@babel/helper-hoist-variables" "^7.14.5" + "@babel/helper-split-export-declaration" "^7.14.5" + "@babel/parser" "^7.15.0" + "@babel/types" "^7.15.0" + "debug" "^4.1.0" + "globals" "^11.1.0" + +"@babel/traverse@^7.4.5": + "integrity" "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==" + "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/code-frame" "^7.14.5" + "@babel/generator" "^7.15.4" + "@babel/helper-function-name" "^7.15.4" + "@babel/helper-hoist-variables" "^7.15.4" + "@babel/helper-split-export-declaration" "^7.15.4" + "@babel/parser" "^7.15.4" + "@babel/types" "^7.15.4" + "debug" "^4.1.0" + "globals" "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.6", "@babel/types@^7.14.0", "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.14.9", "@babel/types@^7.15.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + "integrity" "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==" + "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz" + "version" "7.15.0" + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + "to-fast-properties" "^2.0.0" + +"@babel/types@^7.15.4": + "integrity" "sha512-0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw==" + "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz" + "version" "7.15.4" + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + "to-fast-properties" "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + "integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + "resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" + "version" "0.2.3" + +"@cnakazawa/watch@^1.0.3": + "integrity" "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==" + "resolved" "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "exec-sh" "^0.3.2" + "minimist" "^1.2.0" + +"@csstools/convert-colors@^1.4.0": + "integrity" "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + "resolved" "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz" + "version" "1.4.0" + +"@csstools/normalize.css@^10.1.0": + "integrity" "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + "resolved" "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz" + "version" "10.1.0" + +"@date-io/core@^1.3.13", "@date-io/core@1.x": + "integrity" "sha512-AlEKV7TxjeK+jxWVKcCFrfYAk8spX9aCyiToFIiLPtfQbsjmRGLIhb5VZgptQcJdHtLXo7+m0DuurwFgUToQuA==" + "resolved" "https://registry.npmjs.org/@date-io/core/-/core-1.3.13.tgz" + "version" "1.3.13" + +"@date-io/date-fns@1.x": + "integrity" "sha512-yXxGzcRUPcogiMj58wVgFjc9qUYrCnnU9eLcyNbsQCmae4jPuZCDoIBR21j8ZURsM7GRtU62VOw5yNd4dDHunA==" + "resolved" "https://registry.npmjs.org/@date-io/date-fns/-/date-fns-1.3.13.tgz" + "version" "1.3.13" + dependencies: + "@date-io/core" "^1.3.13" + +"@emotion/cache@^11.4.0": + "integrity" "sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g==" + "resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.4.0.tgz" + "version" "11.4.0" + dependencies: + "@emotion/memoize" "^0.7.4" + "@emotion/sheet" "^1.0.0" + "@emotion/utils" "^1.0.0" + "@emotion/weak-memoize" "^0.2.5" + "stylis" "^4.0.3" + +"@emotion/hash@^0.8.0": + "integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + "resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz" + "version" "0.8.0" + +"@emotion/is-prop-valid@^0.8.8": + "integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" + "resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz" + "version" "0.8.8" + dependencies: + "@emotion/memoize" "0.7.4" + +"@emotion/memoize@^0.7.4": + "integrity" "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==" + "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz" + "version" "0.7.5" + +"@emotion/memoize@0.7.4": + "integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" + "version" "0.7.4" + +"@emotion/react@^11.1.1": + "integrity" "sha512-pRegcsuGYj4FCdZN6j5vqCALkNytdrKw3TZMekTzNXixRg4wkLsU5QEaBG5LC6l01Vppxlp7FE3aTHpIG5phLg==" + "resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.4.1.tgz" + "version" "11.4.1" + dependencies: + "@babel/runtime" "^7.13.10" + "@emotion/cache" "^11.4.0" + "@emotion/serialize" "^1.0.2" + "@emotion/sheet" "^1.0.2" + "@emotion/utils" "^1.0.0" + "@emotion/weak-memoize" "^0.2.5" + "hoist-non-react-statics" "^3.3.1" + +"@emotion/serialize@^1.0.2": + "integrity" "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==" + "resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "@emotion/hash" "^0.8.0" + "@emotion/memoize" "^0.7.4" + "@emotion/unitless" "^0.7.5" + "@emotion/utils" "^1.0.0" + "csstype" "^3.0.2" + +"@emotion/sheet@^1.0.0", "@emotion/sheet@^1.0.2": + "integrity" "sha512-QQPB1B70JEVUHuNtzjHftMGv6eC3Y9wqavyarj4x4lg47RACkeSfNo5pxIOKizwS9AEFLohsqoaxGQj4p0vSIw==" + "resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.0.2.tgz" + "version" "1.0.2" + +"@emotion/stylis@^0.8.4": + "integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + "resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz" + "version" "0.8.5" + +"@emotion/unitless@^0.7.4", "@emotion/unitless@^0.7.5": + "integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + "resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz" + "version" "0.7.5" + +"@emotion/utils@^1.0.0": + "integrity" "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==" + "resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-1.0.0.tgz" + "version" "1.0.0" + +"@emotion/weak-memoize@^0.2.5": + "integrity" "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + "resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz" + "version" "0.2.5" + +"@eslint/eslintrc@^0.4.3": + "integrity" "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==" + "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz" + "version" "0.4.3" + dependencies: + "ajv" "^6.12.4" + "debug" "^4.1.1" + "espree" "^7.3.0" + "globals" "^13.9.0" + "ignore" "^4.0.6" + "import-fresh" "^3.2.1" + "js-yaml" "^3.13.1" + "minimatch" "^3.0.4" + "strip-json-comments" "^3.1.1" + +"@gar/promisify@^1.0.1": + "integrity" "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==" + "resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz" + "version" "1.1.2" + +"@hapi/address@2.x.x": + "integrity" "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" + "resolved" "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz" + "version" "2.1.4" + +"@hapi/bourne@1.x.x": + "integrity" "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" + "resolved" "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz" + "version" "1.3.2" + +"@hapi/hoek@^8.3.0", "@hapi/hoek@8.x.x": + "integrity" "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" + "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz" + "version" "8.5.1" + +"@hapi/joi@^15.1.0": + "integrity" "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==" + "resolved" "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz" + "version" "15.1.1" + dependencies: + "@hapi/address" "2.x.x" + "@hapi/bourne" "1.x.x" + "@hapi/hoek" "8.x.x" + "@hapi/topo" "3.x.x" + +"@hapi/topo@3.x.x": + "integrity" "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==" + "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz" + "version" "3.1.6" + dependencies: + "@hapi/hoek" "^8.3.0" + +"@humanwhocodes/config-array@^0.5.0": + "integrity" "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==" + "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz" + "version" "0.5.0" + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + "debug" "^4.1.1" + "minimatch" "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + "integrity" "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==" + "resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz" + "version" "1.2.0" + +"@istanbuljs/load-nyc-config@^1.0.0": + "integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + "resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "camelcase" "^5.3.1" + "find-up" "^4.1.0" + "get-package-type" "^0.1.0" + "js-yaml" "^3.13.1" + "resolve-from" "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + "integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + "resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" + "version" "0.1.3" + +"@jest/console@^26.6.2": + "integrity" "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==" + "resolved" "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "jest-message-util" "^26.6.2" + "jest-util" "^26.6.2" + "slash" "^3.0.0" + +"@jest/core@^26.6.0", "@jest/core@^26.6.3": + "integrity" "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==" + "resolved" "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/console" "^26.6.2" + "@jest/reporters" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "ansi-escapes" "^4.2.1" + "chalk" "^4.0.0" + "exit" "^0.1.2" + "graceful-fs" "^4.2.4" + "jest-changed-files" "^26.6.2" + "jest-config" "^26.6.3" + "jest-haste-map" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-resolve" "^26.6.2" + "jest-resolve-dependencies" "^26.6.3" + "jest-runner" "^26.6.3" + "jest-runtime" "^26.6.3" + "jest-snapshot" "^26.6.2" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "jest-watcher" "^26.6.2" + "micromatch" "^4.0.2" + "p-each-series" "^2.1.0" + "rimraf" "^3.0.0" + "slash" "^3.0.0" + "strip-ansi" "^6.0.0" + +"@jest/environment@^26.6.0", "@jest/environment@^26.6.2": + "integrity" "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==" + "resolved" "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "jest-mock" "^26.6.2" + +"@jest/fake-timers@^26.6.2": + "integrity" "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==" + "resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@sinonjs/fake-timers" "^6.0.1" + "@types/node" "*" + "jest-message-util" "^26.6.2" + "jest-mock" "^26.6.2" + "jest-util" "^26.6.2" + +"@jest/globals@^26.6.2": + "integrity" "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==" + "resolved" "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/environment" "^26.6.2" + "@jest/types" "^26.6.2" + "expect" "^26.6.2" + +"@jest/reporters@^26.6.2": + "integrity" "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==" + "resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "collect-v8-coverage" "^1.0.0" + "exit" "^0.1.2" + "glob" "^7.1.2" + "graceful-fs" "^4.2.4" + "istanbul-lib-coverage" "^3.0.0" + "istanbul-lib-instrument" "^4.0.3" + "istanbul-lib-report" "^3.0.0" + "istanbul-lib-source-maps" "^4.0.0" + "istanbul-reports" "^3.0.2" + "jest-haste-map" "^26.6.2" + "jest-resolve" "^26.6.2" + "jest-util" "^26.6.2" + "jest-worker" "^26.6.2" + "slash" "^3.0.0" + "source-map" "^0.6.0" + "string-length" "^4.0.1" + "terminal-link" "^2.0.0" + "v8-to-istanbul" "^7.0.0" + optionalDependencies: + "node-notifier" "^8.0.0" + +"@jest/source-map@^26.6.2": + "integrity" "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==" + "resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "callsites" "^3.0.0" + "graceful-fs" "^4.2.4" + "source-map" "^0.6.0" + +"@jest/test-result@^26.6.0", "@jest/test-result@^26.6.2": + "integrity" "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==" + "resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/console" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/istanbul-lib-coverage" "^2.0.0" + "collect-v8-coverage" "^1.0.0" + +"@jest/test-sequencer@^26.6.3": + "integrity" "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==" + "resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/test-result" "^26.6.2" + "graceful-fs" "^4.2.4" + "jest-haste-map" "^26.6.2" + "jest-runner" "^26.6.3" + "jest-runtime" "^26.6.3" + +"@jest/transform@^26.6.2": + "integrity" "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==" + "resolved" "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^26.6.2" + "babel-plugin-istanbul" "^6.0.0" + "chalk" "^4.0.0" + "convert-source-map" "^1.4.0" + "fast-json-stable-stringify" "^2.0.0" + "graceful-fs" "^4.2.4" + "jest-haste-map" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-util" "^26.6.2" + "micromatch" "^4.0.2" + "pirates" "^4.0.1" + "slash" "^3.0.0" + "source-map" "^0.6.1" + "write-file-atomic" "^3.0.0" + +"@jest/types@^26.6.0", "@jest/types@^26.6.2": + "integrity" "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" + "resolved" "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + "chalk" "^4.0.0" + +"@material-ui/core@^4.0.0", "@material-ui/core@4.11.4": + "integrity" "sha512-oqb+lJ2Dl9HXI9orc6/aN8ZIAMkeThufA5iZELf2LQeBn2NtjVilF5D2w7e9RpntAzDb4jK5DsVhkfOvFY/8fg==" + "resolved" "https://registry.npmjs.org/@material-ui/core/-/core-4.11.4.tgz" + "version" "4.11.4" + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/styles" "^4.11.4" + "@material-ui/system" "^4.11.3" + "@material-ui/types" "5.1.0" + "@material-ui/utils" "^4.11.2" + "@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.0.0", "@material-ui/icons@4.11.2": + "integrity" "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==" + "resolved" "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz" + "version" "4.11.2" + dependencies: + "@babel/runtime" "^7.4.4" + +"@material-ui/pickers@^3.3.10": + "integrity" "sha512-hS4pxwn1ZGXVkmgD4tpFpaumUaAg2ZzbTrxltfC5yPw4BJV+mGkfnQOB4VpWEYZw2jv65Z0wLwDE/piQiPPZ3w==" + "resolved" "https://registry.npmjs.org/@material-ui/pickers/-/pickers-3.3.10.tgz" + "version" "3.3.10" + dependencies: + "@babel/runtime" "^7.6.0" + "@date-io/core" "1.x" + "@types/styled-jsx" "^2.2.8" + "clsx" "^1.0.2" + "react-transition-group" "^4.0.0" + "rifm" "^0.7.0" + +"@material-ui/styles@^4.11.4": + "integrity" "sha512-KNTIZcnj/zprG5LW0Sao7zw+yG3O35pviHzejMdcSGCdWbiO8qzRgOYL8JAxAsWBKOKYwVZxXtHWaB5T2Kvxew==" + "resolved" "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.4.tgz" + "version" "4.11.4" + dependencies: + "@babel/runtime" "^7.4.4" + "@emotion/hash" "^0.8.0" + "@material-ui/types" "5.1.0" + "@material-ui/utils" "^4.11.2" + "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.11.3": + "integrity" "sha512-lUdzs4q9kEXZGhbN7BptyiS1rLNHe6kG9o8Y307HCvF4sQxbCgpL2qi+gUk+yI8a2DNk48gISEQxoxpgph0xIw==" + "resolved" "https://registry.npmjs.org/@material-ui/system/-/system-4.12.1.tgz" + "version" "4.12.1" + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + "csstype" "^2.5.2" + "prop-types" "^15.7.2" + +"@material-ui/types@5.1.0": + "integrity" "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==" + "resolved" "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz" + "version" "5.1.0" + +"@material-ui/utils@^4.11.2": + "integrity" "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==" + "resolved" "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz" + "version" "4.11.2" + dependencies: + "@babel/runtime" "^7.4.4" + "prop-types" "^15.7.2" + "react-is" "^16.8.0 || ^17.0.0" + +"@nodelib/fs.scandir@2.1.5": + "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + "version" "2.1.5" + dependencies: + "@nodelib/fs.stat" "2.0.5" + "run-parallel" "^1.1.9" + +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": + "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + "version" "2.0.5" + +"@nodelib/fs.walk@^1.2.3": + "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + "version" "1.2.8" + dependencies: + "@nodelib/fs.scandir" "2.1.5" + "fastq" "^1.6.0" + +"@npmcli/fs@^1.0.0": + "integrity" "sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==" + "resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "@gar/promisify" "^1.0.1" + "semver" "^7.3.5" + +"@npmcli/move-file@^1.0.1": + "integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" + "resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "mkdirp" "^1.0.4" + "rimraf" "^3.0.2" + +"@pmmmwh/react-refresh-webpack-plugin@0.4.3": + "integrity" "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==" + "resolved" "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz" + "version" "0.4.3" + dependencies: + "ansi-html" "^0.0.7" + "error-stack-parser" "^2.0.6" + "html-entities" "^1.2.1" + "native-url" "^0.2.6" + "schema-utils" "^2.6.5" + "source-map" "^0.7.3" + +"@react-dnd/asap@^4.0.0": + "integrity" "sha512-0XhqJSc6pPoNnf8DhdsPHtUhRzZALVzYMTzRwV4VI6DJNJ/5xxfL9OQUwb8IH5/2x7lSf7nAZrnzUD+16VyOVQ==" + "resolved" "https://registry.npmjs.org/@react-dnd/asap/-/asap-4.0.0.tgz" + "version" "4.0.0" + +"@react-dnd/invariant@^2.0.0": + "integrity" "sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw==" + "resolved" "https://registry.npmjs.org/@react-dnd/invariant/-/invariant-2.0.0.tgz" + "version" "2.0.0" + +"@react-dnd/shallowequal@^2.0.0": + "integrity" "sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg==" + "resolved" "https://registry.npmjs.org/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz" + "version" "2.0.0" + +"@rollup/plugin-node-resolve@^7.1.1": + "integrity" "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==" + "resolved" "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz" + "version" "7.1.3" + dependencies: + "@rollup/pluginutils" "^3.0.8" + "@types/resolve" "0.0.8" + "builtin-modules" "^3.1.0" + "is-module" "^1.0.0" + "resolve" "^1.14.2" + +"@rollup/plugin-replace@^2.3.1": + "integrity" "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==" + "resolved" "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "@rollup/pluginutils" "^3.1.0" + "magic-string" "^0.25.7" + +"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": + "integrity" "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" + "resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "@types/estree" "0.0.39" + "estree-walker" "^1.0.1" + "picomatch" "^2.2.2" + +"@seznam/compose-react-refs@^1.0.6": + "integrity" "sha512-izzOXQfeQLonzrIQb8u6LQ8dk+ymz3WXTIXjvOlTXHq6sbzROg3NWU+9TTAOpEoK9Bth24/6F/XrfHJ5yR5n6Q==" + "resolved" "https://registry.npmjs.org/@seznam/compose-react-refs/-/compose-react-refs-1.0.6.tgz" + "version" "1.0.6" + +"@sinonjs/commons@^1.7.0": + "integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==" + "resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz" + "version" "1.8.3" + dependencies: + "type-detect" "4.0.8" + +"@sinonjs/fake-timers@^6.0.1": + "integrity" "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==" + "resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz" + "version" "6.0.1" + dependencies: + "@sinonjs/commons" "^1.7.0" + +"@surma/rollup-plugin-off-main-thread@^1.1.1": + "integrity" "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==" + "resolved" "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz" + "version" "1.4.2" + dependencies: + "ejs" "^2.6.1" + "magic-string" "^0.25.0" + +"@svgr/babel-plugin-add-jsx-attribute@^5.4.0": + "integrity" "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": + "integrity" "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": + "integrity" "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz" + "version" "5.0.1" + +"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": + "integrity" "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz" + "version" "5.0.1" + +"@svgr/babel-plugin-svg-dynamic-title@^5.4.0": + "integrity" "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-svg-em-dimensions@^5.4.0": + "integrity" "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-transform-react-native-svg@^5.4.0": + "integrity" "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-transform-svg-component@^5.5.0": + "integrity" "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz" + "version" "5.5.0" + +"@svgr/babel-preset@^5.5.0": + "integrity" "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==" + "resolved" "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" + "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" + "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" + "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" + "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" + "@svgr/babel-plugin-transform-svg-component" "^5.5.0" + +"@svgr/core@^5.5.0": + "integrity" "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==" + "resolved" "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@svgr/plugin-jsx" "^5.5.0" + "camelcase" "^6.2.0" + "cosmiconfig" "^7.0.0" + +"@svgr/hast-util-to-babel-ast@^5.5.0": + "integrity" "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==" + "resolved" "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@babel/types" "^7.12.6" + +"@svgr/plugin-jsx@^5.5.0": + "integrity" "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==" + "resolved" "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@babel/core" "^7.12.3" + "@svgr/babel-preset" "^5.5.0" + "@svgr/hast-util-to-babel-ast" "^5.5.0" + "svg-parser" "^2.0.2" + +"@svgr/plugin-svgo@^5.5.0": + "integrity" "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==" + "resolved" "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "cosmiconfig" "^7.0.0" + "deepmerge" "^4.2.2" + "svgo" "^1.2.2" + +"@svgr/webpack@5.5.0": + "integrity" "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==" + "resolved" "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@babel/core" "^7.12.3" + "@babel/plugin-transform-react-constant-elements" "^7.12.1" + "@babel/preset-env" "^7.12.1" + "@babel/preset-react" "^7.12.5" + "@svgr/core" "^5.5.0" + "@svgr/plugin-jsx" "^5.5.0" + "@svgr/plugin-svgo" "^5.5.0" + "loader-utils" "^2.0.0" + +"@tootallnate/once@1": + "integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + "resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz" + "version" "1.1.2" + +"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": + "integrity" "sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==" + "resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.15.tgz" + "version" "7.1.15" + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + "integrity" "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==" + "resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz" + "version" "7.6.3" + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + "integrity" "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==" + "resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz" + "version" "7.4.1" + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": + "integrity" "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==" + "resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz" + "version" "7.14.2" + dependencies: + "@babel/types" "^7.3.0" + +"@types/eslint@^7.2.6": + "integrity" "sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A==" + "resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.0.tgz" + "version" "7.28.0" + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*": + "integrity" "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==" + "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz" + "version" "0.0.50" + +"@types/estree@0.0.39": + "integrity" "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz" + "version" "0.0.39" + +"@types/glob@^7.1.1": + "integrity" "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==" + "resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz" + "version" "7.1.4" + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/graceful-fs@^4.1.2": + "integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==" + "resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz" + "version" "4.1.5" + dependencies: + "@types/node" "*" + +"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1": + "integrity" "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==" + "resolved" "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz" + "version" "3.3.1" + dependencies: + "@types/react" "*" + "hoist-non-react-statics" "^3.3.0" + +"@types/html-minifier-terser@^5.0.0": + "integrity" "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" + "resolved" "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz" + "version" "5.1.2" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + "integrity" "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + "resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz" + "version" "2.0.3" + +"@types/istanbul-lib-report@*": + "integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==" + "resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + "integrity" "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==" + "resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8": + "integrity" "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" + "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz" + "version" "7.0.9" + +"@types/json5@^0.0.29": + "integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + "resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" + "version" "0.0.29" + +"@types/minimatch@*": + "integrity" "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + "resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz" + "version" "3.0.5" + +"@types/node@*": + "integrity" "sha512-S63Dlv4zIPb8x6MMTgDq5WWRJQe56iBEY0O3SOFA9JrRienkOVDXSXBjjJw6HTNQYSE2JI6GMCR6LVbIMHJVvA==" + "resolved" "https://registry.npmjs.org/@types/node/-/node-16.7.10.tgz" + "version" "16.7.10" + +"@types/normalize-package-data@^2.4.0": + "integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + "resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz" + "version" "2.4.1" + +"@types/parse-json@^4.0.0": + "integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" + "version" "4.0.0" + +"@types/prettier@^2.0.0": + "integrity" "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==" + "resolved" "https://registry.npmjs.org/@types/prettier/-/prettier-2.3.2.tgz" + "version" "2.3.2" + +"@types/prop-types@*": + "integrity" "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz" + "version" "15.7.4" + +"@types/q@^1.5.1": + "integrity" "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + "resolved" "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz" + "version" "1.5.5" + +"@types/react-redux@^7.1.16": + "integrity" "sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ==" + "resolved" "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.18.tgz" + "version" "7.1.18" + dependencies: + "@types/hoist-non-react-statics" "^3.3.0" + "@types/react" "*" + "hoist-non-react-statics" "^3.3.0" + "redux" "^4.0.0" + +"@types/react-transition-group@^4.2.0": + "integrity" "sha512-KibDWL6nshuOJ0fu8ll7QnV/LVTo3PzQ9aCPnRUYPfX7eZohHwLIdNHj7pftanREzHNP4/nJa8oeM73uSiavMQ==" + "resolved" "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.2.tgz" + "version" "4.4.2" + dependencies: + "@types/react" "*" + +"@types/react-transition-group@^4.4.0": + "integrity" "sha512-fUx5muOWSYP8Bw2BUQ9M9RK9+W1XBK/7FLJ8PTQpnpTEkn0ccyMffyEQvan4C3h53gHdx7KE5Qrxi/LnUGQtdg==" + "resolved" "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.3.tgz" + "version" "4.4.3" + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@^16.8.6 || ^17.0.0": + "integrity" "sha512-sX1HisdB1/ZESixMTGnMxH9TDe8Sk709734fEQZzCV/4lSu9kJCPbo2PbTRoZM+53Pp0P10hYVyReUueGwUi4A==" + "resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.19.tgz" + "version" "17.0.19" + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + "csstype" "^3.0.2" + +"@types/resolve@0.0.8": + "integrity" "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==" + "resolved" "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz" + "version" "0.0.8" + dependencies: + "@types/node" "*" + +"@types/scheduler@*": + "integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" + "version" "0.16.2" + +"@types/source-list-map@*": + "integrity" "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + "resolved" "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz" + "version" "0.1.2" + +"@types/stack-utils@^2.0.0": + "integrity" "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + "resolved" "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz" + "version" "2.0.1" + +"@types/styled-jsx@^2.2.8": + "integrity" "sha512-W/iTlIkGEyTBGTEvZCey8EgQlQ5l0DwMqi3iOXlLs2kyBwYTXHKEiU6IZ5EwoRwngL8/dGYuzezSup89ttVHLw==" + "resolved" "https://registry.npmjs.org/@types/styled-jsx/-/styled-jsx-2.2.9.tgz" + "version" "2.2.9" + dependencies: + "@types/react" "*" + +"@types/tapable@^1", "@types/tapable@^1.0.5": + "integrity" "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==" + "resolved" "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz" + "version" "1.0.8" + +"@types/uglify-js@*": + "integrity" "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==" + "resolved" "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz" + "version" "3.13.1" + dependencies: + "source-map" "^0.6.1" + +"@types/webpack-sources@*": + "integrity" "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==" + "resolved" "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz" + "version" "3.2.0" + dependencies: + "@types/node" "*" + "@types/source-list-map" "*" + "source-map" "^0.7.3" + +"@types/webpack@^4.41.8", "@types/webpack@4.x": + "integrity" "sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==" + "resolved" "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.30.tgz" + "version" "4.41.30" + dependencies: + "@types/node" "*" + "@types/tapable" "^1" + "@types/uglify-js" "*" + "@types/webpack-sources" "*" + "anymatch" "^3.0.0" + "source-map" "^0.6.0" + +"@types/yargs-parser@*": + "integrity" "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==" + "resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz" + "version" "20.2.1" + +"@types/yargs@^15.0.0": + "integrity" "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==" + "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz" + "version" "15.0.14" + dependencies: + "@types/yargs-parser" "*" + +"@typescript-eslint/eslint-plugin@^4.0.0", "@typescript-eslint/eslint-plugin@^4.5.0", "@typescript-eslint/eslint-plugin@>= 4": + "integrity" "sha512-NgAnqk55RQ/SD+tZFD9aPwNSeHmDHHe5rtUyhIq0ZeCWZEvo4DK9rYz7v9HDuQZFvn320Ot+AikaCKMFKLlD0g==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.30.0.tgz" + "version" "4.30.0" + dependencies: + "@typescript-eslint/experimental-utils" "4.30.0" + "@typescript-eslint/scope-manager" "4.30.0" + "debug" "^4.3.1" + "functional-red-black-tree" "^1.0.1" + "regexpp" "^3.1.0" + "semver" "^7.3.5" + "tsutils" "^3.21.0" + +"@typescript-eslint/experimental-utils@^3.10.1": + "integrity" "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/types" "3.10.1" + "@typescript-eslint/typescript-estree" "3.10.1" + "eslint-scope" "^5.0.0" + "eslint-utils" "^2.0.0" + +"@typescript-eslint/experimental-utils@^4.0.1", "@typescript-eslint/experimental-utils@4.30.0": + "integrity" "sha512-K8RNIX9GnBsv5v4TjtwkKtqMSzYpjqAQg/oSphtxf3xxdt6T0owqnpojztjjTcatSteH3hLj3t/kklKx87NPqw==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.30.0.tgz" + "version" "4.30.0" + dependencies: + "@types/json-schema" "^7.0.7" + "@typescript-eslint/scope-manager" "4.30.0" + "@typescript-eslint/types" "4.30.0" + "@typescript-eslint/typescript-estree" "4.30.0" + "eslint-scope" "^5.1.1" + "eslint-utils" "^3.0.0" + +"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/parser@^4.5.0": + "integrity" "sha512-HJ0XuluSZSxeboLU7Q2VQ6eLlCwXPBOGnA7CqgBnz2Db3JRQYyBDJgQnop6TZ+rsbSx5gEdWhw4rE4mDa1FnZg==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.30.0.tgz" + "version" "4.30.0" + dependencies: + "@typescript-eslint/scope-manager" "4.30.0" + "@typescript-eslint/types" "4.30.0" + "@typescript-eslint/typescript-estree" "4.30.0" + "debug" "^4.3.1" + +"@typescript-eslint/scope-manager@4.30.0": + "integrity" "sha512-VJ/jAXovxNh7rIXCQbYhkyV2Y3Ac/0cVHP/FruTJSAUUm4Oacmn/nkN5zfWmWFEanN4ggP0vJSHOeajtHq3f8A==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.30.0.tgz" + "version" "4.30.0" + dependencies: + "@typescript-eslint/types" "4.30.0" + "@typescript-eslint/visitor-keys" "4.30.0" + +"@typescript-eslint/types@3.10.1": + "integrity" "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz" + "version" "3.10.1" + +"@typescript-eslint/types@4.30.0": + "integrity" "sha512-YKldqbNU9K4WpTNwBqtAerQKLLW/X2A/j4yw92e3ZJYLx+BpKLeheyzoPfzIXHfM8BXfoleTdiYwpsvVPvHrDw==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.30.0.tgz" + "version" "4.30.0" + +"@typescript-eslint/typescript-estree@3.10.1": + "integrity" "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "@typescript-eslint/types" "3.10.1" + "@typescript-eslint/visitor-keys" "3.10.1" + "debug" "^4.1.1" + "glob" "^7.1.6" + "is-glob" "^4.0.1" + "lodash" "^4.17.15" + "semver" "^7.3.2" + "tsutils" "^3.17.1" + +"@typescript-eslint/typescript-estree@4.30.0": + "integrity" "sha512-6WN7UFYvykr/U0Qgy4kz48iGPWILvYL34xXJxvDQeiRE018B7POspNRVtAZscWntEPZpFCx4hcz/XBT+erenfg==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.30.0.tgz" + "version" "4.30.0" + dependencies: + "@typescript-eslint/types" "4.30.0" + "@typescript-eslint/visitor-keys" "4.30.0" + "debug" "^4.3.1" + "globby" "^11.0.3" + "is-glob" "^4.0.1" + "semver" "^7.3.5" + "tsutils" "^3.21.0" + +"@typescript-eslint/visitor-keys@3.10.1": + "integrity" "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "eslint-visitor-keys" "^1.1.0" + +"@typescript-eslint/visitor-keys@4.30.0": + "integrity" "sha512-pNaaxDt/Ol/+JZwzP7MqWc8PJQTUhZwoee/PVlQ+iYoYhagccvoHnC9e4l+C/krQYYkENxznhVSDwClIbZVxRw==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.30.0.tgz" + "version" "4.30.0" + dependencies: + "@typescript-eslint/types" "4.30.0" + "eslint-visitor-keys" "^2.0.0" + +"@webassemblyjs/ast@1.9.0": + "integrity" "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + +"@webassemblyjs/floating-point-hex-parser@1.9.0": + "integrity" "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-api-error@1.9.0": + "integrity" "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-buffer@1.9.0": + "integrity" "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-code-frame@1.9.0": + "integrity" "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/helper-fsm@1.9.0": + "integrity" "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-module-context@1.9.0": + "integrity" "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + +"@webassemblyjs/helper-wasm-bytecode@1.9.0": + "integrity" "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-wasm-section@1.9.0": + "integrity" "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + +"@webassemblyjs/ieee754@1.9.0": + "integrity" "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.9.0": + "integrity" "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.9.0": + "integrity" "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/wasm-edit@1.9.0": + "integrity" "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/helper-wasm-section" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-opt" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/wasm-gen@1.9.0": + "integrity" "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wasm-opt@1.9.0": + "integrity" "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + +"@webassemblyjs/wasm-parser@1.9.0": + "integrity" "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wast-parser@1.9.0": + "integrity" "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/floating-point-hex-parser" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-code-frame" "1.9.0" + "@webassemblyjs/helper-fsm" "1.9.0" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.9.0": + "integrity" "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + "integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "resolved" "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" + "version" "1.2.0" + +"@xtuc/long@4.2.2": + "integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "resolved" "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" + "version" "4.2.2" + +"abab@^2.0.3", "abab@^2.0.5": + "integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + "resolved" "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" + "version" "2.0.5" + +"accepts@~1.3.4", "accepts@~1.3.5", "accepts@~1.3.7": + "integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==" + "resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz" + "version" "1.3.7" + dependencies: + "mime-types" "~2.1.24" + "negotiator" "0.6.2" + +"acorn-globals@^6.0.0": + "integrity" "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==" + "resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "acorn" "^7.1.1" + "acorn-walk" "^7.1.1" + +"acorn-jsx@^5.3.1": + "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" + "version" "5.3.2" + +"acorn-walk@^7.1.1": + "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" + "version" "7.2.0" + +"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.1.0", "acorn@^7.1.1", "acorn@^7.4.0": + "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" + "version" "7.4.1" + +"acorn@^6.4.1": + "integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz" + "version" "6.4.2" + +"acorn@^8.2.4": + "integrity" "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz" + "version" "8.4.1" + +"address@^1.0.1", "address@1.1.2": + "integrity" "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + "resolved" "https://registry.npmjs.org/address/-/address-1.1.2.tgz" + "version" "1.1.2" + +"adjust-sourcemap-loader@3.0.0": + "integrity" "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==" + "resolved" "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "loader-utils" "^2.0.0" + "regex-parser" "^2.2.11" + +"agent-base@6": + "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + "resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" + "version" "6.0.2" + dependencies: + "debug" "4" + +"aggregate-error@^3.0.0": + "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "clean-stack" "^2.0.0" + "indent-string" "^4.0.0" + +"ajv-errors@^1.0.0": + "integrity" "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + "resolved" "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz" + "version" "1.0.1" + +"ajv-keywords@^3.1.0", "ajv-keywords@^3.4.1", "ajv-keywords@^3.5.2": + "integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + "resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" + "version" "3.5.2" + +"ajv@^6.1.0", "ajv@^6.10.0", "ajv@^6.10.2", "ajv@^6.12.4", "ajv@^6.12.5", "ajv@^6.9.1", "ajv@>=5.0.0": + "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + "version" "6.12.6" + dependencies: + "fast-deep-equal" "^3.1.1" + "fast-json-stable-stringify" "^2.0.0" + "json-schema-traverse" "^0.4.1" + "uri-js" "^4.2.2" + +"ajv@^8.0.1": + "integrity" "sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz" + "version" "8.6.2" + dependencies: + "fast-deep-equal" "^3.1.1" + "json-schema-traverse" "^1.0.0" + "require-from-string" "^2.0.2" + "uri-js" "^4.2.2" + +"alphanum-sort@^1.0.0": + "integrity" "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + "resolved" "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz" + "version" "1.0.2" + +"ansi-colors@^1.0.1": + "integrity" "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==" + "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "ansi-wrap" "^0.1.0" + +"ansi-colors@^3.0.0": + "integrity" "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz" + "version" "3.2.4" + +"ansi-colors@^4.1.1": + "integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" + "version" "4.1.1" + +"ansi-escapes@^4.2.1", "ansi-escapes@^4.3.1": + "integrity" "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" + "version" "4.3.2" + dependencies: + "type-fest" "^0.21.3" + +"ansi-gray@^0.1.1": + "integrity" "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=" + "resolved" "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz" + "version" "0.1.1" + dependencies: + "ansi-wrap" "0.1.0" + +"ansi-html@^0.0.7", "ansi-html@0.0.7": + "integrity" "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + "resolved" "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz" + "version" "0.0.7" + +"ansi-regex@^2.0.0": + "integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" + "version" "2.1.1" + +"ansi-regex@^4.1.0": + "integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz" + "version" "4.1.0" + +"ansi-regex@^5.0.0": + "integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" + "version" "5.0.0" + +"ansi-styles@^3.2.0": + "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + "version" "3.2.1" + dependencies: + "color-convert" "^1.9.0" + +"ansi-styles@^3.2.1": + "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + "version" "3.2.1" + dependencies: + "color-convert" "^1.9.0" + +"ansi-styles@^4.0.0", "ansi-styles@^4.1.0": + "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "color-convert" "^2.0.1" + +"ansi-wrap@^0.1.0", "ansi-wrap@0.1.0": + "integrity" "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" + "resolved" "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" + "version" "0.1.0" + +"anymatch@^2.0.0": + "integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "micromatch" "^3.1.4" + "normalize-path" "^2.1.1" + +"anymatch@^3.0.0": + "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" + +"anymatch@^3.0.3": + "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" + +"anymatch@~3.1.2": + "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" + +"append-buffer@^1.0.2": + "integrity" "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=" + "resolved" "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "buffer-equal" "^1.0.0" + +"aproba@^1.1.1": + "integrity" "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "resolved" "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz" + "version" "1.2.0" + +"archy@^1.0.0": + "integrity" "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" + "resolved" "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz" + "version" "1.0.0" + +"argparse@^1.0.7": + "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" + "version" "1.0.10" + dependencies: + "sprintf-js" "~1.0.2" + +"aria-query@^4.2.2": + "integrity" "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" + "resolved" "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz" + "version" "4.2.2" + dependencies: + "@babel/runtime" "^7.10.2" + "@babel/runtime-corejs3" "^7.10.2" + +"arity-n@^1.0.4": + "integrity" "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" + "resolved" "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz" + "version" "1.0.4" + +"arr-diff@^4.0.0": + "integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz" + "version" "4.0.0" + +"arr-filter@^1.1.1": + "integrity" "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=" + "resolved" "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "make-iterator" "^1.0.0" + +"arr-flatten@^1.0.1", "arr-flatten@^1.1.0": + "integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + "resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz" + "version" "1.1.0" + +"arr-map@^2.0.0", "arr-map@^2.0.2": + "integrity" "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=" + "resolved" "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "make-iterator" "^1.0.0" + +"arr-union@^3.1.0": + "integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + "resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz" + "version" "3.1.0" + +"array-each@^1.0.0", "array-each@^1.0.1": + "integrity" "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" + "resolved" "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz" + "version" "1.0.1" + +"array-flatten@^2.1.0": + "integrity" "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" + "version" "2.1.2" + +"array-flatten@1.1.1": + "integrity" "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" + "version" "1.1.1" + +"array-includes@^3.1.1", "array-includes@^3.1.2", "array-includes@^3.1.3": + "integrity" "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==" + "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + "get-intrinsic" "^1.1.1" + "is-string" "^1.0.5" + +"array-initial@^1.0.0": + "integrity" "sha1-L6dLJnOTccOUe9enrcc74zSz15U=" + "resolved" "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "array-slice" "^1.0.0" + "is-number" "^4.0.0" + +"array-last@^1.1.1": + "integrity" "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==" + "resolved" "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "is-number" "^4.0.0" + +"array-slice@^1.0.0": + "integrity" "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" + "resolved" "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz" + "version" "1.1.0" + +"array-sort@^1.0.0": + "integrity" "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==" + "resolved" "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "default-compare" "^1.0.0" + "get-value" "^2.0.6" + "kind-of" "^5.0.2" + +"array-union@^1.0.1": + "integrity" "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=" + "resolved" "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "array-uniq" "^1.0.1" + +"array-union@^2.1.0": + "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + "version" "2.1.0" + +"array-uniq@^1.0.1": + "integrity" "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "resolved" "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" + "version" "1.0.3" + +"array-unique@^0.3.2": + "integrity" "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz" + "version" "0.3.2" + +"array.prototype.flat@^1.2.4": + "integrity" "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==" + "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz" + "version" "1.2.4" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.1" + +"array.prototype.flatmap@^1.2.4": + "integrity" "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==" + "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz" + "version" "1.2.4" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.1" + "function-bind" "^1.1.1" + +"arrify@^2.0.1": + "integrity" "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + "resolved" "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" + "version" "2.0.1" + +"asap@~2.0.6": + "integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" + "version" "2.0.6" + +"asn1.js@^5.2.0": + "integrity" "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==" + "resolved" "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz" + "version" "5.4.1" + dependencies: + "bn.js" "^4.0.0" + "inherits" "^2.0.1" + "minimalistic-assert" "^1.0.0" + "safer-buffer" "^2.1.0" + +"assert@^1.1.1": + "integrity" "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==" + "resolved" "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "object-assign" "^4.1.1" + "util" "0.10.3" + +"assign-symbols@^1.0.0": + "integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + "resolved" "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz" + "version" "1.0.0" + +"ast-types-flow@^0.0.7": + "integrity" "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + "resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" + "version" "0.0.7" + +"astral-regex@^2.0.0": + "integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + "resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" + "version" "2.0.0" + +"async-done@^1.2.0", "async-done@^1.2.2": + "integrity" "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==" + "resolved" "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "end-of-stream" "^1.1.0" + "once" "^1.3.2" + "process-nextick-args" "^2.0.0" + "stream-exhaust" "^1.0.1" + +"async-each@^1.0.1": + "integrity" "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + "resolved" "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz" + "version" "1.0.3" + +"async-limiter@~1.0.0": + "integrity" "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + "resolved" "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" + "version" "1.0.1" + +"async-settle@^1.0.0": + "integrity" "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=" + "resolved" "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "async-done" "^1.2.2" + +"async@^2.6.2": + "integrity" "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==" + "resolved" "https://registry.npmjs.org/async/-/async-2.6.3.tgz" + "version" "2.6.3" + dependencies: + "lodash" "^4.17.14" + +"asynckit@^0.4.0": + "integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + "version" "0.4.0" + +"at-least-node@^1.0.0": + "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" + "version" "1.0.0" + +"atob@^2.1.2": + "integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + "resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz" + "version" "2.1.2" + +"autoprefixer@^9.6.1": + "integrity" "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==" + "resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz" + "version" "9.8.6" + dependencies: + "browserslist" "^4.12.0" + "caniuse-lite" "^1.0.30001109" + "colorette" "^1.2.1" + "normalize-range" "^0.1.2" + "num2fraction" "^1.2.2" + "postcss" "^7.0.32" + "postcss-value-parser" "^4.1.0" + +"axe-core@^4.0.2": + "integrity" "sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA==" + "resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.3.3.tgz" + "version" "4.3.3" + +"axios@^0.21.4": + "integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" + "resolved" "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz" + "version" "0.21.4" + dependencies: + "follow-redirects" "^1.14.0" + +"axobject-query@^2.2.0": + "integrity" "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + "resolved" "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz" + "version" "2.2.0" + +"babel-eslint@^10.0.0", "babel-eslint@^10.1.0": + "integrity" "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==" + "resolved" "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz" + "version" "10.1.0" + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.7.0" + "@babel/traverse" "^7.7.0" + "@babel/types" "^7.7.0" + "eslint-visitor-keys" "^1.0.0" + "resolve" "^1.12.0" + +"babel-extract-comments@^1.0.0": + "integrity" "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==" + "resolved" "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "babylon" "^6.18.0" + +"babel-jest@^26.6.0": + "integrity" "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==" + "resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/babel__core" "^7.1.7" + "babel-plugin-istanbul" "^6.0.0" + "babel-preset-jest" "^26.6.2" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "slash" "^3.0.0" + +"babel-jest@^26.6.3": + "integrity" "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==" + "resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/babel__core" "^7.1.7" + "babel-plugin-istanbul" "^6.0.0" + "babel-preset-jest" "^26.6.2" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "slash" "^3.0.0" + +"babel-loader@8.1.0": + "integrity" "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==" + "resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz" + "version" "8.1.0" + dependencies: + "find-cache-dir" "^2.1.0" + "loader-utils" "^1.4.0" + "mkdirp" "^0.5.3" + "pify" "^4.0.1" + "schema-utils" "^2.6.5" + +"babel-plugin-dynamic-import-node@^2.3.3": + "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" + "version" "2.3.3" + dependencies: + "object.assign" "^4.1.0" + +"babel-plugin-istanbul@^6.0.0": + "integrity" "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + "istanbul-lib-instrument" "^4.0.0" + "test-exclude" "^6.0.0" + +"babel-plugin-jest-hoist@^26.6.2": + "integrity" "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==" + "resolved" "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.0.0" + "@types/babel__traverse" "^7.0.6" + +"babel-plugin-macros@2.8.0": + "integrity" "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + "resolved" "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz" + "version" "2.8.0" + dependencies: + "@babel/runtime" "^7.7.2" + "cosmiconfig" "^6.0.0" + "resolve" "^1.12.0" + +"babel-plugin-named-asset-import@^0.3.7": + "integrity" "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==" + "resolved" "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz" + "version" "0.3.7" + +"babel-plugin-polyfill-corejs2@^0.2.2": + "integrity" "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "@babel/compat-data" "^7.13.11" + "@babel/helper-define-polyfill-provider" "^0.2.2" + "semver" "^6.1.1" + +"babel-plugin-polyfill-corejs3@^0.2.2": + "integrity" "sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz" + "version" "0.2.4" + dependencies: + "@babel/helper-define-polyfill-provider" "^0.2.2" + "core-js-compat" "^3.14.0" + +"babel-plugin-polyfill-regenerator@^0.2.2": + "integrity" "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "@babel/helper-define-polyfill-provider" "^0.2.2" + +"babel-plugin-styled-components@>= 1.12.0": + "integrity" "sha512-Vb1R3d4g+MUfPQPVDMCGjm3cDocJEUTR7Xq7QS95JWWeksN1wdFRYpD2kulDgI3Huuaf1CZd+NK4KQmqUFh5dA==" + "resolved" "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.2.tgz" + "version" "1.13.2" + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-module-imports" "^7.0.0" + "babel-plugin-syntax-jsx" "^6.18.0" + "lodash" "^4.17.11" + +"babel-plugin-syntax-jsx@^6.18.0": + "integrity" "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + "resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz" + "version" "6.18.0" + +"babel-plugin-syntax-object-rest-spread@^6.8.0": + "integrity" "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + "resolved" "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + "version" "6.13.0" + +"babel-plugin-transform-object-rest-spread@^6.26.0": + "integrity" "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=" + "resolved" "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz" + "version" "6.26.0" + dependencies: + "babel-plugin-syntax-object-rest-spread" "^6.8.0" + "babel-runtime" "^6.26.0" + +"babel-plugin-transform-react-remove-prop-types@0.4.24": + "integrity" "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + "resolved" "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz" + "version" "0.4.24" + +"babel-preset-current-node-syntax@^1.0.0": + "integrity" "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + "resolved" "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +"babel-preset-jest@^26.6.2": + "integrity" "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==" + "resolved" "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "babel-plugin-jest-hoist" "^26.6.2" + "babel-preset-current-node-syntax" "^1.0.0" + +"babel-preset-react-app@^10.0.0": + "integrity" "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==" + "resolved" "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz" + "version" "10.0.0" + dependencies: + "@babel/core" "7.12.3" + "@babel/plugin-proposal-class-properties" "7.12.1" + "@babel/plugin-proposal-decorators" "7.12.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "7.12.1" + "@babel/plugin-proposal-numeric-separator" "7.12.1" + "@babel/plugin-proposal-optional-chaining" "7.12.1" + "@babel/plugin-transform-flow-strip-types" "7.12.1" + "@babel/plugin-transform-react-display-name" "7.12.1" + "@babel/plugin-transform-runtime" "7.12.1" + "@babel/preset-env" "7.12.1" + "@babel/preset-react" "7.12.1" + "@babel/preset-typescript" "7.12.1" + "@babel/runtime" "7.12.1" + "babel-plugin-macros" "2.8.0" + "babel-plugin-transform-react-remove-prop-types" "0.4.24" + +"babel-runtime@^6.26.0": + "integrity" "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" + "resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz" + "version" "6.26.0" + dependencies: + "core-js" "^2.4.0" + "regenerator-runtime" "^0.11.0" + +"babylon@^6.18.0": + "integrity" "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + "resolved" "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz" + "version" "6.18.0" + +"bach@^1.0.0": + "integrity" "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=" + "resolved" "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "arr-filter" "^1.1.1" + "arr-flatten" "^1.0.1" + "arr-map" "^2.0.0" + "array-each" "^1.0.0" + "array-initial" "^1.0.0" + "array-last" "^1.1.1" + "async-done" "^1.2.2" + "async-settle" "^1.0.0" + "now-and-later" "^2.0.0" + +"balanced-match@^1.0.0": + "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + "version" "1.0.2" + +"base@^0.11.1": + "integrity" "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" + "resolved" "https://registry.npmjs.org/base/-/base-0.11.2.tgz" + "version" "0.11.2" + dependencies: + "cache-base" "^1.0.1" + "class-utils" "^0.3.5" + "component-emitter" "^1.2.1" + "define-property" "^1.0.0" + "isobject" "^3.0.1" + "mixin-deep" "^1.2.0" + "pascalcase" "^0.1.1" + +"base64-js@^1.0.2": + "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + "version" "1.5.1" + +"batch@0.6.1": + "integrity" "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + "resolved" "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" + "version" "0.6.1" + +"bfj@^7.0.2": + "integrity" "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==" + "resolved" "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz" + "version" "7.0.2" + dependencies: + "bluebird" "^3.5.5" + "check-types" "^11.1.1" + "hoopy" "^0.1.4" + "tryer" "^1.0.1" + +"big.js@^5.2.2": + "integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + "resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" + "version" "5.2.2" + +"binary-extensions@^1.0.0": + "integrity" "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz" + "version" "1.13.1" + +"binary-extensions@^2.0.0": + "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" + "version" "2.2.0" + +"bindings@^1.5.0": + "integrity" "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" + "resolved" "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "file-uri-to-path" "1.0.0" + +"bluebird@^3.5.5": + "integrity" "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz" + "version" "3.7.2" + +"bn.js@^4.0.0", "bn.js@^4.1.0", "bn.js@^4.11.9": + "integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" + "version" "4.12.0" + +"bn.js@^5.0.0": + "integrity" "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz" + "version" "5.2.0" + +"bn.js@^5.1.1": + "integrity" "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz" + "version" "5.2.0" + +"body-parser@1.19.0": + "integrity" "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==" + "resolved" "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz" + "version" "1.19.0" + dependencies: + "bytes" "3.1.0" + "content-type" "~1.0.4" + "debug" "2.6.9" + "depd" "~1.1.2" + "http-errors" "1.7.2" + "iconv-lite" "0.4.24" + "on-finished" "~2.3.0" + "qs" "6.7.0" + "raw-body" "2.4.0" + "type-is" "~1.6.17" + +"bonjour@^3.5.0": + "integrity" "sha1-jokKGD2O6aI5OzhExpGkK897yfU=" + "resolved" "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz" + "version" "3.5.0" + dependencies: + "array-flatten" "^2.1.0" + "deep-equal" "^1.0.1" + "dns-equal" "^1.0.0" + "dns-txt" "^2.0.2" + "multicast-dns" "^6.0.1" + "multicast-dns-service-types" "^1.1.0" + +"boolbase@^1.0.0", "boolbase@~1.0.0": + "integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + "version" "1.0.0" + +"brace-expansion@^1.1.7": + "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + "version" "1.1.11" + dependencies: + "balanced-match" "^1.0.0" + "concat-map" "0.0.1" + +"braces@^2.3.1", "braces@^2.3.2": + "integrity" "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==" + "resolved" "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" + "version" "2.3.2" + dependencies: + "arr-flatten" "^1.1.0" + "array-unique" "^0.3.2" + "extend-shallow" "^2.0.1" + "fill-range" "^4.0.0" + "isobject" "^3.0.1" + "repeat-element" "^1.1.2" + "snapdragon" "^0.8.1" + "snapdragon-node" "^2.0.1" + "split-string" "^3.0.2" + "to-regex" "^3.0.1" + +"braces@^3.0.1": + "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "fill-range" "^7.0.1" + +"braces@~3.0.2": + "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "fill-range" "^7.0.1" + +"brorand@^1.0.1", "brorand@^1.1.0": + "integrity" "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + "resolved" "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" + "version" "1.1.0" + +"browser-process-hrtime@^1.0.0": + "integrity" "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + "resolved" "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" + "version" "1.0.0" + +"browserify-aes@^1.0.0", "browserify-aes@^1.0.4": + "integrity" "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" + "resolved" "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "buffer-xor" "^1.0.3" + "cipher-base" "^1.0.0" + "create-hash" "^1.1.0" + "evp_bytestokey" "^1.0.3" + "inherits" "^2.0.1" + "safe-buffer" "^5.0.1" + +"browserify-cipher@^1.0.0": + "integrity" "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" + "resolved" "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "browserify-aes" "^1.0.4" + "browserify-des" "^1.0.0" + "evp_bytestokey" "^1.0.0" + +"browserify-des@^1.0.0": + "integrity" "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" + "resolved" "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "cipher-base" "^1.0.1" + "des.js" "^1.0.0" + "inherits" "^2.0.1" + "safe-buffer" "^5.1.2" + +"browserify-rsa@^4.0.0", "browserify-rsa@^4.0.1": + "integrity" "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==" + "resolved" "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "bn.js" "^5.0.0" + "randombytes" "^2.0.1" + +"browserify-sign@^4.0.0": + "integrity" "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==" + "resolved" "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz" + "version" "4.2.1" + dependencies: + "bn.js" "^5.1.1" + "browserify-rsa" "^4.0.1" + "create-hash" "^1.2.0" + "create-hmac" "^1.1.7" + "elliptic" "^6.5.3" + "inherits" "^2.0.4" + "parse-asn1" "^5.1.5" + "readable-stream" "^3.6.0" + "safe-buffer" "^5.2.0" + +"browserify-zlib@^0.2.0": + "integrity" "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" + "resolved" "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz" + "version" "0.2.0" + dependencies: + "pako" "~1.0.5" + +"browserslist@^4", "browserslist@^4.0.0", "browserslist@^4.12.0", "browserslist@^4.16.6", "browserslist@^4.16.8", "browserslist@^4.6.2", "browserslist@^4.6.4": + "integrity" "sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==" + "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz" + "version" "4.16.8" + dependencies: + "caniuse-lite" "^1.0.30001251" + "colorette" "^1.3.0" + "electron-to-chromium" "^1.3.811" + "escalade" "^3.1.1" + "node-releases" "^1.1.75" + +"browserslist@4.14.2": + "integrity" "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==" + "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz" + "version" "4.14.2" + dependencies: + "caniuse-lite" "^1.0.30001125" + "electron-to-chromium" "^1.3.564" + "escalade" "^3.0.2" + "node-releases" "^1.1.61" + +"bser@2.1.1": + "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + "resolved" "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "node-int64" "^0.4.0" + +"buffer-equal@^1.0.0": + "integrity" "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" + "resolved" "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz" + "version" "1.0.0" + +"buffer-from@^1.0.0": + "integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" + "version" "1.1.2" + +"buffer-indexof@^1.0.0": + "integrity" "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + "resolved" "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz" + "version" "1.1.1" + +"buffer-xor@^1.0.3": + "integrity" "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + "resolved" "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz" + "version" "1.0.3" + +"buffer@^4.3.0": + "integrity" "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==" + "resolved" "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz" + "version" "4.9.2" + dependencies: + "base64-js" "^1.0.2" + "ieee754" "^1.1.4" + "isarray" "^1.0.0" + +"builtin-modules@^3.1.0": + "integrity" "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==" + "resolved" "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz" + "version" "3.2.0" + +"builtin-status-codes@^3.0.0": + "integrity" "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + "resolved" "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz" + "version" "3.0.0" + +"bytes@3.0.0": + "integrity" "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" + "version" "3.0.0" + +"bytes@3.1.0": + "integrity" "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz" + "version" "3.1.0" + +"cacache@^12.0.2": + "integrity" "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==" + "resolved" "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz" + "version" "12.0.4" + dependencies: + "bluebird" "^3.5.5" + "chownr" "^1.1.1" + "figgy-pudding" "^3.5.1" + "glob" "^7.1.4" + "graceful-fs" "^4.1.15" + "infer-owner" "^1.0.3" + "lru-cache" "^5.1.1" + "mississippi" "^3.0.0" + "mkdirp" "^0.5.1" + "move-concurrently" "^1.0.1" + "promise-inflight" "^1.0.1" + "rimraf" "^2.6.3" + "ssri" "^6.0.1" + "unique-filename" "^1.1.1" + "y18n" "^4.0.0" + +"cacache@^15.0.5": + "integrity" "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==" + "resolved" "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz" + "version" "15.3.0" + dependencies: + "@npmcli/fs" "^1.0.0" + "@npmcli/move-file" "^1.0.1" + "chownr" "^2.0.0" + "fs-minipass" "^2.0.0" + "glob" "^7.1.4" + "infer-owner" "^1.0.4" + "lru-cache" "^6.0.0" + "minipass" "^3.1.1" + "minipass-collect" "^1.0.2" + "minipass-flush" "^1.0.5" + "minipass-pipeline" "^1.2.2" + "mkdirp" "^1.0.3" + "p-map" "^4.0.0" + "promise-inflight" "^1.0.1" + "rimraf" "^3.0.2" + "ssri" "^8.0.1" + "tar" "^6.0.2" + "unique-filename" "^1.1.1" + +"cache-base@^1.0.1": + "integrity" "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" + "resolved" "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "collection-visit" "^1.0.0" + "component-emitter" "^1.2.1" + "get-value" "^2.0.6" + "has-value" "^1.0.0" + "isobject" "^3.0.1" + "set-value" "^2.0.0" + "to-object-path" "^0.3.0" + "union-value" "^1.0.0" + "unset-value" "^1.0.0" + +"call-bind@^1.0.0", "call-bind@^1.0.2": + "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "function-bind" "^1.1.1" + "get-intrinsic" "^1.0.2" + +"caller-callsite@^2.0.0": + "integrity" "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" + "resolved" "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "callsites" "^2.0.0" + +"caller-path@^2.0.0": + "integrity" "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=" + "resolved" "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "caller-callsite" "^2.0.0" + +"callsites@^2.0.0": + "integrity" "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + "resolved" "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz" + "version" "2.0.0" + +"callsites@^3.0.0": + "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + "version" "3.1.0" + +"camel-case@^4.1.1": + "integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + "resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "pascal-case" "^3.1.2" + "tslib" "^2.0.3" + +"camelcase@^3.0.0": + "integrity" "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz" + "version" "3.0.0" + +"camelcase@^5.0.0", "camelcase@^5.3.1", "camelcase@5.3.1": + "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" + "version" "5.3.1" + +"camelcase@^6.0.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" + +"camelcase@^6.1.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" + +"camelcase@^6.2.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" + +"camelize@^1.0.0": + "integrity" "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + "resolved" "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz" + "version" "1.0.0" + +"caniuse-api@^3.0.0": + "integrity" "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + "resolved" "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "browserslist" "^4.0.0" + "caniuse-lite" "^1.0.0" + "lodash.memoize" "^4.1.2" + "lodash.uniq" "^4.5.0" + +"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30000981", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001125", "caniuse-lite@^1.0.30001251": + "integrity" "sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw==" + "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz" + "version" "1.0.30001252" + +"capture-exit@^2.0.0": + "integrity" "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" + "resolved" "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "rsvp" "^4.8.4" + +"case-sensitive-paths-webpack-plugin@2.3.0": + "integrity" "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" + "resolved" "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz" + "version" "2.3.0" + +"chalk@^2.0.0": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"chalk@^2.4.1": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"chalk@^2.4.2": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"chalk@^4.0.0": + "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "ansi-styles" "^4.1.0" + "supports-color" "^7.1.0" + +"chalk@2.4.2": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"char-regex@^1.0.2": + "integrity" "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + "resolved" "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" + "version" "1.0.2" + +"chartist@^0.10.1", "chartist@0.10.1": + "integrity" "sha1-PdUT1THfymt453f+BQDZx+ZAaTE=" + "resolved" "https://registry.npmjs.org/chartist/-/chartist-0.10.1.tgz" + "version" "0.10.1" + +"check-types@^11.1.1": + "integrity" "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + "resolved" "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz" + "version" "11.1.2" + +"chokidar@^2.0.0", "chokidar@^2.1.8": + "integrity" "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==" + "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz" + "version" "2.1.8" + dependencies: + "anymatch" "^2.0.0" + "async-each" "^1.0.1" + "braces" "^2.3.2" + "glob-parent" "^3.1.0" + "inherits" "^2.0.3" + "is-binary-path" "^1.0.0" + "is-glob" "^4.0.0" + "normalize-path" "^3.0.0" + "path-is-absolute" "^1.0.0" + "readdirp" "^2.2.1" + "upath" "^1.1.1" + optionalDependencies: + "fsevents" "^1.2.7" + +"chokidar@^3.4.1": + "integrity" "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==" + "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz" + "version" "3.5.2" + dependencies: + "anymatch" "~3.1.2" + "braces" "~3.0.2" + "glob-parent" "~5.1.2" + "is-binary-path" "~2.1.0" + "is-glob" "~4.0.1" + "normalize-path" "~3.0.0" + "readdirp" "~3.6.0" + optionalDependencies: + "fsevents" "~2.3.2" + +"chownr@^1.1.1": + "integrity" "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + "resolved" "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz" + "version" "1.1.4" + +"chownr@^2.0.0": + "integrity" "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + "resolved" "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" + "version" "2.0.0" + +"chrome-trace-event@^1.0.2": + "integrity" "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + "resolved" "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" + "version" "1.0.3" + +"ci-info@^2.0.0": + "integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" + "version" "2.0.0" + +"cipher-base@^1.0.0", "cipher-base@^1.0.1", "cipher-base@^1.0.3": + "integrity" "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" + "resolved" "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "inherits" "^2.0.1" + "safe-buffer" "^5.0.1" + +"cjs-module-lexer@^0.6.0": + "integrity" "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + "resolved" "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz" + "version" "0.6.0" + +"class-utils@^0.3.5": + "integrity" "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==" + "resolved" "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz" + "version" "0.3.6" + dependencies: + "arr-union" "^3.1.0" + "define-property" "^0.2.5" + "isobject" "^3.0.0" + "static-extend" "^0.1.1" + +"classnames@2.3.1": + "integrity" "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + "resolved" "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz" + "version" "2.3.1" + +"clean-css@^4.2.3": + "integrity" "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==" + "resolved" "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz" + "version" "4.2.3" + dependencies: + "source-map" "~0.6.0" + +"clean-stack@^2.0.0": + "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" + "version" "2.2.0" + +"cliui@^3.2.0": + "integrity" "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=" + "resolved" "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz" + "version" "3.2.0" + dependencies: + "string-width" "^1.0.1" + "strip-ansi" "^3.0.1" + "wrap-ansi" "^2.0.0" + +"cliui@^5.0.0": + "integrity" "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==" + "resolved" "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "string-width" "^3.1.0" + "strip-ansi" "^5.2.0" + "wrap-ansi" "^5.1.0" + +"cliui@^6.0.0": + "integrity" "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + "resolved" "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "string-width" "^4.2.0" + "strip-ansi" "^6.0.0" + "wrap-ansi" "^6.2.0" + +"clone-buffer@^1.0.0": + "integrity" "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" + "resolved" "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz" + "version" "1.0.0" + +"clone-stats@^1.0.0": + "integrity" "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + "resolved" "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz" + "version" "1.0.0" + +"clone@^2.1.1": + "integrity" "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + "resolved" "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" + "version" "2.1.2" + +"cloneable-readable@^1.0.0": + "integrity" "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" + "resolved" "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz" + "version" "1.1.3" + dependencies: + "inherits" "^2.0.1" + "process-nextick-args" "^2.0.0" + "readable-stream" "^2.3.5" + +"clsx@^1.0.2", "clsx@^1.0.4", "clsx@^1.1.1": + "integrity" "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" + "resolved" "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz" + "version" "1.1.1" + +"co@^4.6.0": + "integrity" "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + "resolved" "https://registry.npmjs.org/co/-/co-4.6.0.tgz" + "version" "4.6.0" + +"coa@^2.0.2": + "integrity" "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==" + "resolved" "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "@types/q" "^1.5.1" + "chalk" "^2.4.1" + "q" "^1.1.2" + +"code-point-at@^1.0.0": + "integrity" "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "resolved" "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz" + "version" "1.1.0" + +"collect-v8-coverage@^1.0.0": + "integrity" "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + "resolved" "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" + "version" "1.0.1" + +"collection-map@^1.0.0": + "integrity" "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=" + "resolved" "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "arr-map" "^2.0.2" + "for-own" "^1.0.0" + "make-iterator" "^1.0.0" + +"collection-visit@^1.0.0": + "integrity" "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" + "resolved" "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "map-visit" "^1.0.0" + "object-visit" "^1.0.0" + +"color-convert@^1.9.0", "color-convert@^1.9.3": + "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + "version" "1.9.3" + dependencies: + "color-name" "1.1.3" + +"color-convert@^2.0.1": + "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "color-name" "~1.1.4" + +"color-name@^1.0.0", "color-name@~1.1.4": + "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + "version" "1.1.4" + +"color-name@1.1.3": + "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + "version" "1.1.3" + +"color-string@^1.6.0": + "integrity" "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==" + "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz" + "version" "1.6.0" + dependencies: + "color-name" "^1.0.0" + "simple-swizzle" "^0.2.2" + +"color-support@^1.1.3": + "integrity" "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + "resolved" "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz" + "version" "1.1.3" + +"color@^3.0.0": + "integrity" "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==" + "resolved" "https://registry.npmjs.org/color/-/color-3.2.1.tgz" + "version" "3.2.1" + dependencies: + "color-convert" "^1.9.3" + "color-string" "^1.6.0" + +"colorette@^1.2.1", "colorette@^1.2.2", "colorette@^1.3.0": + "integrity" "sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==" + "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz" + "version" "1.3.0" + +"combined-stream@^1.0.8": + "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + "resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + "version" "1.0.8" + dependencies: + "delayed-stream" "~1.0.0" + +"commander@^2.20.0": + "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + "resolved" "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" + "version" "2.20.3" + +"commander@^4.1.1": + "integrity" "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + "resolved" "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" + "version" "4.1.1" + +"common-tags@^1.8.0": + "integrity" "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + "resolved" "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz" + "version" "1.8.0" + +"commondir@^1.0.1": + "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" + "version" "1.0.1" + +"component-emitter@^1.2.1": + "integrity" "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + "resolved" "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" + "version" "1.3.0" + +"compose-function@3.0.3": + "integrity" "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=" + "resolved" "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "arity-n" "^1.0.4" + +"compressible@~2.0.16": + "integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + "resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" + "version" "2.0.18" + dependencies: + "mime-db" ">= 1.43.0 < 2" + +"compression@^1.7.4": + "integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + "resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" + "version" "1.7.4" + dependencies: + "accepts" "~1.3.5" + "bytes" "3.0.0" + "compressible" "~2.0.16" + "debug" "2.6.9" + "on-headers" "~1.0.2" + "safe-buffer" "5.1.2" + "vary" "~1.1.2" + +"concat-map@0.0.1": + "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "version" "0.0.1" + +"concat-stream@^1.5.0", "concat-stream@^1.6.0": + "integrity" "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + "resolved" "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" + "version" "1.6.2" + dependencies: + "buffer-from" "^1.0.0" + "inherits" "^2.0.3" + "readable-stream" "^2.2.2" + "typedarray" "^0.0.6" + +"confusing-browser-globals@^1.0.10": + "integrity" "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + "resolved" "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz" + "version" "1.0.10" + +"connect-history-api-fallback@^1.6.0": + "integrity" "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + "resolved" "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz" + "version" "1.6.0" + +"console-browserify@^1.1.0": + "integrity" "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + "resolved" "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz" + "version" "1.2.0" + +"constants-browserify@^1.0.0": + "integrity" "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + "resolved" "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz" + "version" "1.0.0" + +"content-disposition@0.5.3": + "integrity" "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==" + "resolved" "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz" + "version" "0.5.3" + dependencies: + "safe-buffer" "5.1.2" + +"content-type@~1.0.4": + "integrity" "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + "resolved" "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" + "version" "1.0.4" + +"convert-source-map@^0.3.3": + "integrity" "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz" + "version" "0.3.5" + +"convert-source-map@^1.4.0", "convert-source-map@^1.5.0", "convert-source-map@^1.6.0", "convert-source-map@^1.7.0": + "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz" + "version" "1.8.0" + dependencies: + "safe-buffer" "~5.1.1" + +"convert-source-map@1.7.0": + "integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" + "version" "1.7.0" + dependencies: + "safe-buffer" "~5.1.1" + +"cookie-signature@1.0.6": + "integrity" "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "resolved" "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" + "version" "1.0.6" + +"cookie@0.4.0": + "integrity" "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + "resolved" "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz" + "version" "0.4.0" + +"copy-concurrently@^1.0.0": + "integrity" "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==" + "resolved" "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "aproba" "^1.1.1" + "fs-write-stream-atomic" "^1.0.8" + "iferr" "^0.1.5" + "mkdirp" "^0.5.1" + "rimraf" "^2.5.4" + "run-queue" "^1.0.0" + +"copy-descriptor@^0.1.0": + "integrity" "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + "resolved" "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" + "version" "0.1.1" + +"copy-props@^2.0.1": + "integrity" "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==" + "resolved" "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz" + "version" "2.0.5" + dependencies: + "each-props" "^1.3.2" + "is-plain-object" "^5.0.0" + +"core-js-compat@^3.14.0", "core-js-compat@^3.16.0", "core-js-compat@^3.6.2": + "integrity" "sha512-lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg==" + "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.2.tgz" + "version" "3.17.2" + dependencies: + "browserslist" "^4.16.8" + "semver" "7.0.0" + +"core-js-pure@^3.16.0": + "integrity" "sha512-2VV7DlIbooyTI7Bh+yzOOWL9tGwLnQKHno7qATE+fqZzDKYr6llVjVQOzpD/QLZFgXDPb8T71pJokHEZHEYJhQ==" + "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.17.2.tgz" + "version" "3.17.2" + +"core-js@^2.4.0": + "integrity" "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + "resolved" "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz" + "version" "2.6.12" + +"core-js@^3.6.5": + "integrity" "sha512-XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==" + "resolved" "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz" + "version" "3.17.2" + +"core-util-is@~1.0.0": + "integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" + "version" "1.0.3" + +"cosmiconfig@^5.0.0": + "integrity" "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz" + "version" "5.2.1" + dependencies: + "import-fresh" "^2.0.0" + "is-directory" "^0.3.1" + "js-yaml" "^3.13.1" + "parse-json" "^4.0.0" + +"cosmiconfig@^6.0.0": + "integrity" "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "@types/parse-json" "^4.0.0" + "import-fresh" "^3.1.0" + "parse-json" "^5.0.0" + "path-type" "^4.0.0" + "yaml" "^1.7.2" + +"cosmiconfig@^7.0.0": + "integrity" "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "@types/parse-json" "^4.0.0" + "import-fresh" "^3.2.1" + "parse-json" "^5.0.0" + "path-type" "^4.0.0" + "yaml" "^1.10.0" + +"create-ecdh@^4.0.0": + "integrity" "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==" + "resolved" "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz" + "version" "4.0.4" + dependencies: + "bn.js" "^4.1.0" + "elliptic" "^6.5.3" + +"create-hash@^1.1.0", "create-hash@^1.1.2", "create-hash@^1.2.0": + "integrity" "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" + "resolved" "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "cipher-base" "^1.0.1" + "inherits" "^2.0.1" + "md5.js" "^1.3.4" + "ripemd160" "^2.0.1" + "sha.js" "^2.4.0" + +"create-hmac@^1.1.0", "create-hmac@^1.1.4", "create-hmac@^1.1.7": + "integrity" "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" + "resolved" "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz" + "version" "1.1.7" + dependencies: + "cipher-base" "^1.0.3" + "create-hash" "^1.1.0" + "inherits" "^2.0.1" + "ripemd160" "^2.0.0" + "safe-buffer" "^5.0.1" + "sha.js" "^2.4.8" + +"cross-spawn@^6.0.0": + "integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" + "version" "6.0.5" + dependencies: + "nice-try" "^1.0.4" + "path-key" "^2.0.1" + "semver" "^5.5.0" + "shebang-command" "^1.2.0" + "which" "^1.2.9" + +"cross-spawn@^7.0.0", "cross-spawn@^7.0.2", "cross-spawn@7.0.3": + "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" + "version" "7.0.3" + dependencies: + "path-key" "^3.1.0" + "shebang-command" "^2.0.0" + "which" "^2.0.1" + +"crypto-browserify@^3.11.0": + "integrity" "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" + "resolved" "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz" + "version" "3.12.0" + dependencies: + "browserify-cipher" "^1.0.0" + "browserify-sign" "^4.0.0" + "create-ecdh" "^4.0.0" + "create-hash" "^1.1.0" + "create-hmac" "^1.1.0" + "diffie-hellman" "^5.0.0" + "inherits" "^2.0.1" + "pbkdf2" "^3.0.3" + "public-encrypt" "^4.0.0" + "randombytes" "^2.0.0" + "randomfill" "^1.0.3" + +"crypto-random-string@^1.0.0": + "integrity" "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz" + "version" "1.0.0" + +"css-blank-pseudo@^0.1.4": + "integrity" "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==" + "resolved" "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "postcss" "^7.0.5" + +"css-color-keywords@^1.0.0": + "integrity" "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" + "resolved" "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz" + "version" "1.0.0" + +"css-color-names@^0.0.4", "css-color-names@0.0.4": + "integrity" "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + "resolved" "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz" + "version" "0.0.4" + +"css-declaration-sorter@^4.0.1": + "integrity" "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==" + "resolved" "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.1" + "timsort" "^0.3.0" + +"css-has-pseudo@^0.10.0": + "integrity" "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==" + "resolved" "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz" + "version" "0.10.0" + dependencies: + "postcss" "^7.0.6" + "postcss-selector-parser" "^5.0.0-rc.4" + +"css-loader@4.3.0": + "integrity" "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==" + "resolved" "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "camelcase" "^6.0.0" + "cssesc" "^3.0.0" + "icss-utils" "^4.1.1" + "loader-utils" "^2.0.0" + "postcss" "^7.0.32" + "postcss-modules-extract-imports" "^2.0.0" + "postcss-modules-local-by-default" "^3.0.3" + "postcss-modules-scope" "^2.2.0" + "postcss-modules-values" "^3.0.0" + "postcss-value-parser" "^4.1.0" + "schema-utils" "^2.7.1" + "semver" "^7.3.2" + +"css-prefers-color-scheme@^3.1.1": + "integrity" "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==" + "resolved" "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "postcss" "^7.0.5" + +"css-select-base-adapter@^0.1.1": + "integrity" "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + "resolved" "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz" + "version" "0.1.1" + +"css-select@^2.0.0": + "integrity" "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==" + "resolved" "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "boolbase" "^1.0.0" + "css-what" "^3.2.1" + "domutils" "^1.7.0" + "nth-check" "^1.0.2" + +"css-select@^4.1.3": + "integrity" "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" + "resolved" "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz" + "version" "4.1.3" + dependencies: + "boolbase" "^1.0.0" + "css-what" "^5.0.0" + "domhandler" "^4.2.0" + "domutils" "^2.6.0" + "nth-check" "^2.0.0" + +"css-to-react-native@^3.0.0": + "integrity" "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==" + "resolved" "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "camelize" "^1.0.0" + "css-color-keywords" "^1.0.0" + "postcss-value-parser" "^4.0.2" + +"css-tree@^1.1.2": + "integrity" "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + "resolved" "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" + "version" "1.1.3" + dependencies: + "mdn-data" "2.0.14" + "source-map" "^0.6.1" + +"css-tree@1.0.0-alpha.37": + "integrity" "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==" + "resolved" "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz" + "version" "1.0.0-alpha.37" + dependencies: + "mdn-data" "2.0.4" + "source-map" "^0.6.1" + +"css-vendor@^2.0.8": + "integrity" "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==" + "resolved" "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz" + "version" "2.0.8" + dependencies: + "@babel/runtime" "^7.8.3" + "is-in-browser" "^1.0.2" + +"css-what@^3.2.1": + "integrity" "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + "resolved" "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz" + "version" "3.4.2" + +"css-what@^5.0.0": + "integrity" "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==" + "resolved" "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz" + "version" "5.0.1" + +"css@^2.0.0": + "integrity" "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==" + "resolved" "https://registry.npmjs.org/css/-/css-2.2.4.tgz" + "version" "2.2.4" + dependencies: + "inherits" "^2.0.3" + "source-map" "^0.6.1" + "source-map-resolve" "^0.5.2" + "urix" "^0.1.0" + +"cssdb@^4.4.0": + "integrity" "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + "resolved" "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz" + "version" "4.4.0" + +"cssesc@^2.0.0": + "integrity" "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz" + "version" "2.0.0" + +"cssesc@^3.0.0": + "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + "version" "3.0.0" + +"cssnano-preset-default@^4.0.8": + "integrity" "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==" + "resolved" "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz" + "version" "4.0.8" + dependencies: + "css-declaration-sorter" "^4.0.1" + "cssnano-util-raw-cache" "^4.0.1" + "postcss" "^7.0.0" + "postcss-calc" "^7.0.1" + "postcss-colormin" "^4.0.3" + "postcss-convert-values" "^4.0.1" + "postcss-discard-comments" "^4.0.2" + "postcss-discard-duplicates" "^4.0.2" + "postcss-discard-empty" "^4.0.1" + "postcss-discard-overridden" "^4.0.1" + "postcss-merge-longhand" "^4.0.11" + "postcss-merge-rules" "^4.0.3" + "postcss-minify-font-values" "^4.0.2" + "postcss-minify-gradients" "^4.0.2" + "postcss-minify-params" "^4.0.2" + "postcss-minify-selectors" "^4.0.2" + "postcss-normalize-charset" "^4.0.1" + "postcss-normalize-display-values" "^4.0.2" + "postcss-normalize-positions" "^4.0.2" + "postcss-normalize-repeat-style" "^4.0.2" + "postcss-normalize-string" "^4.0.2" + "postcss-normalize-timing-functions" "^4.0.2" + "postcss-normalize-unicode" "^4.0.1" + "postcss-normalize-url" "^4.0.1" + "postcss-normalize-whitespace" "^4.0.2" + "postcss-ordered-values" "^4.1.2" + "postcss-reduce-initial" "^4.0.3" + "postcss-reduce-transforms" "^4.0.2" + "postcss-svgo" "^4.0.3" + "postcss-unique-selectors" "^4.0.1" + +"cssnano-util-get-arguments@^4.0.0": + "integrity" "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + "resolved" "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz" + "version" "4.0.0" + +"cssnano-util-get-match@^4.0.0": + "integrity" "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + "resolved" "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz" + "version" "4.0.0" + +"cssnano-util-raw-cache@^4.0.1": + "integrity" "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==" + "resolved" "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"cssnano-util-same-parent@^4.0.0": + "integrity" "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + "resolved" "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz" + "version" "4.0.1" + +"cssnano@^4.1.10": + "integrity" "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==" + "resolved" "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz" + "version" "4.1.11" + dependencies: + "cosmiconfig" "^5.0.0" + "cssnano-preset-default" "^4.0.8" + "is-resolvable" "^1.0.0" + "postcss" "^7.0.0" + +"csso@^4.0.2": + "integrity" "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + "resolved" "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "css-tree" "^1.1.2" + +"cssom@^0.4.4": + "integrity" "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + "resolved" "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz" + "version" "0.4.4" + +"cssom@~0.3.6": + "integrity" "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + "resolved" "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" + "version" "0.3.8" + +"cssstyle@^2.3.0": + "integrity" "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + "resolved" "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "cssom" "~0.3.6" + +"csstype@^2.5.2": + "integrity" "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.17.tgz" + "version" "2.6.17" + +"csstype@^3.0.2": + "integrity" "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz" + "version" "3.0.8" + +"cyclist@^1.0.1": + "integrity" "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + "resolved" "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz" + "version" "1.0.1" + +"d@^1.0.1", "d@1": + "integrity" "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" + "resolved" "https://registry.npmjs.org/d/-/d-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "es5-ext" "^0.10.50" + "type" "^1.0.1" + +"damerau-levenshtein@^1.0.6": + "integrity" "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" + "resolved" "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz" + "version" "1.0.7" + +"data-urls@^2.0.0": + "integrity" "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==" + "resolved" "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "abab" "^2.0.3" + "whatwg-mimetype" "^2.3.0" + "whatwg-url" "^8.0.0" + +"date-fns@^2.0.0", "date-fns@^2.24.0": + "integrity" "sha512-6ujwvwgPID6zbI0o7UbURi2vlLDR9uP26+tW6Lg+Ji3w7dd0i3DOcjcClLjLPranT60SSEFBwdSyYwn/ZkPIuw==" + "resolved" "https://registry.npmjs.org/date-fns/-/date-fns-2.24.0.tgz" + "version" "2.24.0" + +"debug@^2.2.0": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^2.3.3": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^2.6.0": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^2.6.9": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^3.1.1": + "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + "version" "3.2.7" + dependencies: + "ms" "^2.1.1" + +"debug@^3.2.6": + "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + "version" "3.2.7" + dependencies: + "ms" "^2.1.1" + +"debug@^3.2.7": + "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + "version" "3.2.7" + dependencies: + "ms" "^2.1.1" + +"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.1", "debug@4": + "integrity" "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==" + "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz" + "version" "4.3.2" + dependencies: + "ms" "2.1.2" + +"debug@2.6.9": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"decamelize@^1.1.1", "decamelize@^1.2.0": + "integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + "resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" + "version" "1.2.0" + +"decimal.js@^10.2.1": + "integrity" "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" + "resolved" "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz" + "version" "10.3.1" + +"decode-uri-component@^0.2.0": + "integrity" "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + "resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz" + "version" "0.2.0" + +"dedent@^0.7.0": + "integrity" "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + "resolved" "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz" + "version" "0.7.0" + +"deep-equal@^1.0.1": + "integrity" "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==" + "resolved" "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "is-arguments" "^1.0.4" + "is-date-object" "^1.0.1" + "is-regex" "^1.0.4" + "object-is" "^1.0.1" + "object-keys" "^1.1.1" + "regexp.prototype.flags" "^1.2.0" + +"deep-is@^0.1.3", "deep-is@~0.1.3": + "integrity" "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" + "version" "0.1.3" + +"deepmerge@^4.2.2": + "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" + "version" "4.2.2" + +"default-compare@^1.0.0": + "integrity" "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==" + "resolved" "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "kind-of" "^5.0.2" + +"default-gateway@^4.2.0": + "integrity" "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==" + "resolved" "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "execa" "^1.0.0" + "ip-regex" "^2.1.0" + +"default-resolution@^2.0.0": + "integrity" "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" + "resolved" "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz" + "version" "2.0.0" + +"define-properties@^1.1.2", "define-properties@^1.1.3": + "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" + "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" + "version" "1.1.3" + dependencies: + "object-keys" "^1.0.12" + +"define-property@^0.2.5": + "integrity" "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" + "resolved" "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz" + "version" "0.2.5" + dependencies: + "is-descriptor" "^0.1.0" + +"define-property@^1.0.0": + "integrity" "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" + "resolved" "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "is-descriptor" "^1.0.0" + +"define-property@^2.0.2": + "integrity" "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==" + "resolved" "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "is-descriptor" "^1.0.2" + "isobject" "^3.0.1" + +"del@^4.1.1": + "integrity" "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" + "resolved" "https://registry.npmjs.org/del/-/del-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "@types/glob" "^7.1.1" + "globby" "^6.1.0" + "is-path-cwd" "^2.0.0" + "is-path-in-cwd" "^2.0.0" + "p-map" "^2.0.0" + "pify" "^4.0.1" + "rimraf" "^2.6.3" + +"delayed-stream@~1.0.0": + "integrity" "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + "resolved" "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + "version" "1.0.0" + +"depd@~1.1.2": + "integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" + "version" "1.1.2" + +"des.js@^1.0.0": + "integrity" "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==" + "resolved" "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "inherits" "^2.0.1" + "minimalistic-assert" "^1.0.0" + +"destroy@~1.0.4": + "integrity" "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + "resolved" "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz" + "version" "1.0.4" + +"detect-file@^1.0.0": + "integrity" "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" + "resolved" "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz" + "version" "1.0.0" + +"detect-newline@^3.0.0": + "integrity" "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + "resolved" "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" + "version" "3.1.0" + +"detect-node@^2.0.4": + "integrity" "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + "resolved" "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" + "version" "2.1.0" + +"detect-port-alt@1.1.6": + "integrity" "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==" + "resolved" "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz" + "version" "1.1.6" + dependencies: + "address" "^1.0.1" + "debug" "^2.6.0" + +"diff-sequences@^26.6.2": + "integrity" "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" + "resolved" "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz" + "version" "26.6.2" + +"diffie-hellman@^5.0.0": + "integrity" "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" + "resolved" "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz" + "version" "5.0.3" + dependencies: + "bn.js" "^4.1.0" + "miller-rabin" "^4.0.0" + "randombytes" "^2.0.0" + +"dir-glob@^3.0.1": + "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "path-type" "^4.0.0" + +"dnd-core@^11.1.3": + "integrity" "sha512-QugF55dNW+h+vzxVJ/LSJeTeUw9MCJ2cllhmVThVPEtF16ooBkxj0WBE5RB+AceFxMFo1rO6bJKXtqKl+JNnyA==" + "resolved" "https://registry.npmjs.org/dnd-core/-/dnd-core-11.1.3.tgz" + "version" "11.1.3" + dependencies: + "@react-dnd/asap" "^4.0.0" + "@react-dnd/invariant" "^2.0.0" + "redux" "^4.0.4" + +"dns-equal@^1.0.0": + "integrity" "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + "resolved" "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" + "version" "1.0.0" + +"dns-packet@^1.3.1": + "integrity" "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==" + "resolved" "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz" + "version" "1.3.4" + dependencies: + "ip" "^1.1.0" + "safe-buffer" "^5.0.1" + +"dns-txt@^2.0.2": + "integrity" "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=" + "resolved" "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "buffer-indexof" "^1.0.0" + +"doctrine@^2.1.0": + "integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "esutils" "^2.0.2" + +"doctrine@^3.0.0": + "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "esutils" "^2.0.2" + +"dom-converter@^0.2.0": + "integrity" "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + "resolved" "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" + "version" "0.2.0" + dependencies: + "utila" "~0.4" + +"dom-helpers@^5.0.1", "dom-helpers@^5.1.3": + "integrity" "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==" + "resolved" "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz" + "version" "5.2.1" + dependencies: + "@babel/runtime" "^7.8.7" + "csstype" "^3.0.2" + +"dom-serializer@^1.0.1": + "integrity" "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" + "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "domelementtype" "^2.0.1" + "domhandler" "^4.2.0" + "entities" "^2.0.0" + +"dom-serializer@0": + "integrity" "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==" + "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "domelementtype" "^2.0.1" + "entities" "^2.0.0" + +"domain-browser@^1.1.1": + "integrity" "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + "resolved" "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz" + "version" "1.2.0" + +"domelementtype@^2.0.1", "domelementtype@^2.2.0": + "integrity" "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz" + "version" "2.2.0" + +"domelementtype@1": + "integrity" "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz" + "version" "1.3.1" + +"domexception@^2.0.1": + "integrity" "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==" + "resolved" "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "webidl-conversions" "^5.0.0" + +"domhandler@^4.0.0", "domhandler@^4.2.0": + "integrity" "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==" + "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz" + "version" "4.2.2" + dependencies: + "domelementtype" "^2.2.0" + +"domhandler@^4.2.2": + "integrity" "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" + "version" "4.3.1" + dependencies: + "domelementtype" "^2.2.0" + +"domhandler@4.3.1": + "integrity" "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz" + "version" "4.3.1" + dependencies: + "domelementtype" "^2.2.0" + +"domutils@^1.7.0": + "integrity" "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==" + "resolved" "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz" + "version" "1.7.0" + dependencies: + "dom-serializer" "0" + "domelementtype" "1" + +"domutils@^2.5.2", "domutils@^2.6.0", "domutils@^2.8.0": + "integrity" "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + "resolved" "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" + "version" "2.8.0" + dependencies: + "dom-serializer" "^1.0.1" + "domelementtype" "^2.2.0" + "domhandler" "^4.2.0" + +"dot-case@^3.0.4": + "integrity" "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + "resolved" "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "no-case" "^3.0.4" + "tslib" "^2.0.3" + +"dot-prop@^5.2.0": + "integrity" "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + "resolved" "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" + "version" "5.3.0" + dependencies: + "is-obj" "^2.0.0" + +"dotenv-expand@5.1.0": + "integrity" "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + "resolved" "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz" + "version" "5.1.0" + +"dotenv@8.2.0": + "integrity" "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + "resolved" "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz" + "version" "8.2.0" + +"duplexer@^0.1.1": + "integrity" "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "resolved" "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" + "version" "0.1.2" + +"duplexify@^3.4.2", "duplexify@^3.6.0": + "integrity" "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==" + "resolved" "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz" + "version" "3.7.1" + dependencies: + "end-of-stream" "^1.0.0" + "inherits" "^2.0.1" + "readable-stream" "^2.0.0" + "stream-shift" "^1.0.0" + +"each-props@^1.3.2": + "integrity" "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==" + "resolved" "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "is-plain-object" "^2.0.1" + "object.defaults" "^1.1.0" + +"ee-first@1.1.1": + "integrity" "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + "version" "1.1.1" + +"ejs@^2.6.1": + "integrity" "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + "resolved" "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz" + "version" "2.7.4" + +"electron-to-chromium@^1.3.564", "electron-to-chromium@^1.3.811": + "integrity" "sha512-ye+4uQOY/jbjRutMcE/EmOcNwUeo1qo9aKL2tPyb09cU3lmxNeyDF4RWiemmkknW+p29h7dyDqy02higTxc9/A==" + "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.827.tgz" + "version" "1.3.827" + +"elliptic@^6.5.3": + "integrity" "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==" + "resolved" "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" + "version" "6.5.4" + dependencies: + "bn.js" "^4.11.9" + "brorand" "^1.1.0" + "hash.js" "^1.0.0" + "hmac-drbg" "^1.0.1" + "inherits" "^2.0.4" + "minimalistic-assert" "^1.0.1" + "minimalistic-crypto-utils" "^1.0.1" + +"emittery@^0.7.1": + "integrity" "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==" + "resolved" "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz" + "version" "0.7.2" + +"emoji-regex@^7.0.1": + "integrity" "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" + "version" "7.0.3" + +"emoji-regex@^8.0.0": + "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + "version" "8.0.0" + +"emoji-regex@^9.0.0": + "integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" + "version" "9.2.2" + +"emojis-list@^2.0.0": + "integrity" "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz" + "version" "2.1.0" + +"emojis-list@^3.0.0": + "integrity" "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" + "version" "3.0.0" + +"encodeurl@~1.0.2": + "integrity" "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + "resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" + "version" "1.0.2" + +"end-of-stream@^1.0.0", "end-of-stream@^1.1.0": + "integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + "resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" + "version" "1.4.4" + dependencies: + "once" "^1.4.0" + +"enhanced-resolve@^4.3.0": + "integrity" "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==" + "resolved" "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "graceful-fs" "^4.1.2" + "memory-fs" "^0.5.0" + "tapable" "^1.0.0" + +"enquirer@^2.3.5": + "integrity" "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + "resolved" "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" + "version" "2.3.6" + dependencies: + "ansi-colors" "^4.1.1" + +"entities@^2.0.0": + "integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + "version" "2.2.0" + +"entities@^3.0.1": + "integrity" "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + "resolved" "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz" + "version" "3.0.1" + +"errno@^0.1.3", "errno@~0.1.7": + "integrity" "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + "resolved" "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz" + "version" "0.1.8" + dependencies: + "prr" "~1.0.1" + +"error-ex@^1.2.0", "error-ex@^1.3.1": + "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "is-arrayish" "^0.2.1" + +"error-stack-parser@^2.0.6": + "integrity" "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" + "resolved" "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz" + "version" "2.0.6" + dependencies: + "stackframe" "^1.1.1" + +"es-abstract@^1.17.2", "es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2": + "integrity" "sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==" + "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz" + "version" "1.18.5" + dependencies: + "call-bind" "^1.0.2" + "es-to-primitive" "^1.2.1" + "function-bind" "^1.1.1" + "get-intrinsic" "^1.1.1" + "has" "^1.0.3" + "has-symbols" "^1.0.2" + "internal-slot" "^1.0.3" + "is-callable" "^1.2.3" + "is-negative-zero" "^2.0.1" + "is-regex" "^1.1.3" + "is-string" "^1.0.6" + "object-inspect" "^1.11.0" + "object-keys" "^1.1.1" + "object.assign" "^4.1.2" + "string.prototype.trimend" "^1.0.4" + "string.prototype.trimstart" "^1.0.4" + "unbox-primitive" "^1.0.1" + +"es-to-primitive@^1.2.1": + "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" + "version" "1.2.1" + dependencies: + "is-callable" "^1.1.4" + "is-date-object" "^1.0.1" + "is-symbol" "^1.0.2" + +"es5-ext@^0.10.35", "es5-ext@^0.10.46", "es5-ext@^0.10.50": + "integrity" "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" + "resolved" "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz" + "version" "0.10.53" + dependencies: + "es6-iterator" "~2.0.3" + "es6-symbol" "~3.1.3" + "next-tick" "~1.0.0" + +"es6-iterator@^2.0.1", "es6-iterator@^2.0.3", "es6-iterator@~2.0.3", "es6-iterator@2.0.3": + "integrity" "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" + "resolved" "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz" + "version" "2.0.3" + dependencies: + "d" "1" + "es5-ext" "^0.10.35" + "es6-symbol" "^3.1.1" + +"es6-symbol@^3.1.1", "es6-symbol@~3.1.3": + "integrity" "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" + "resolved" "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "d" "^1.0.1" + "ext" "^1.1.2" + +"es6-weak-map@^2.0.1": + "integrity" "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" + "resolved" "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz" + "version" "2.0.3" + dependencies: + "d" "1" + "es5-ext" "^0.10.46" + "es6-iterator" "^2.0.3" + "es6-symbol" "^3.1.1" + +"escalade@^3.0.2", "escalade@^3.1.1": + "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" + "version" "3.1.1" + +"escape-html@~1.0.3": + "integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + "version" "1.0.3" + +"escape-string-regexp@^1.0.5": + "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + "version" "1.0.5" + +"escape-string-regexp@^2.0.0", "escape-string-regexp@2.0.0": + "integrity" "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" + "version" "2.0.0" + +"escape-string-regexp@^4.0.0": + "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" + "version" "4.0.0" + +"escodegen@^2.0.0": + "integrity" "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==" + "resolved" "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "esprima" "^4.0.1" + "estraverse" "^5.2.0" + "esutils" "^2.0.2" + "optionator" "^0.8.1" + optionalDependencies: + "source-map" "~0.6.1" + +"eslint-config-prettier@8.3.0": + "integrity" "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==" + "resolved" "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz" + "version" "8.3.0" + +"eslint-config-react-app@^6.0.0": + "integrity" "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==" + "resolved" "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "confusing-browser-globals" "^1.0.10" + +"eslint-import-resolver-node@^0.3.6": + "integrity" "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" + "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz" + "version" "0.3.6" + dependencies: + "debug" "^3.2.7" + "resolve" "^1.20.0" + +"eslint-module-utils@^2.6.2": + "integrity" "sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==" + "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz" + "version" "2.6.2" + dependencies: + "debug" "^3.2.7" + "pkg-dir" "^2.0.0" + +"eslint-plugin-flowtype@^5.2.0": + "integrity" "sha512-qxE/eo9DCN7800MIB/O1ToOiFuOPOlaMJWQY2BEm69oY7RCm3s2X1z4CdgtFvDDWf9RSSugZm1KRhdBMBueKbg==" + "resolved" "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.2.tgz" + "version" "5.9.2" + dependencies: + "lodash" "^4.17.15" + "string-natural-compare" "^3.0.1" + +"eslint-plugin-import@^2.22.0", "eslint-plugin-import@^2.22.1": + "integrity" "sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q==" + "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz" + "version" "2.24.2" + dependencies: + "array-includes" "^3.1.3" + "array.prototype.flat" "^1.2.4" + "debug" "^2.6.9" + "doctrine" "^2.1.0" + "eslint-import-resolver-node" "^0.3.6" + "eslint-module-utils" "^2.6.2" + "find-up" "^2.0.0" + "has" "^1.0.3" + "is-core-module" "^2.6.0" + "minimatch" "^3.0.4" + "object.values" "^1.1.4" + "pkg-up" "^2.0.0" + "read-pkg-up" "^3.0.0" + "resolve" "^1.20.0" + "tsconfig-paths" "^3.11.0" + +"eslint-plugin-jest@^24.0.0", "eslint-plugin-jest@^24.1.0": + "integrity" "sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==" + "resolved" "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz" + "version" "24.4.0" + dependencies: + "@typescript-eslint/experimental-utils" "^4.0.1" + +"eslint-plugin-jsx-a11y@^6.3.1": + "integrity" "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==" + "resolved" "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz" + "version" "6.4.1" + dependencies: + "@babel/runtime" "^7.11.2" + "aria-query" "^4.2.2" + "array-includes" "^3.1.1" + "ast-types-flow" "^0.0.7" + "axe-core" "^4.0.2" + "axobject-query" "^2.2.0" + "damerau-levenshtein" "^1.0.6" + "emoji-regex" "^9.0.0" + "has" "^1.0.3" + "jsx-ast-utils" "^3.1.0" + "language-tags" "^1.0.5" + +"eslint-plugin-prettier@3.4.0": + "integrity" "sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw==" + "resolved" "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz" + "version" "3.4.0" + dependencies: + "prettier-linter-helpers" "^1.0.0" + +"eslint-plugin-react-hooks@^4.0.8", "eslint-plugin-react-hooks@^4.2.0": + "integrity" "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" + "resolved" "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz" + "version" "4.2.0" + +"eslint-plugin-react@^7.20.3", "eslint-plugin-react@^7.21.5": + "integrity" "sha512-P4j9K1dHoFXxDNP05AtixcJEvIT6ht8FhYKsrkY0MPCPaUMYijhpWwNiRDZVtA8KFuZOkGSeft6QwH8KuVpJug==" + "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.25.1.tgz" + "version" "7.25.1" + dependencies: + "array-includes" "^3.1.3" + "array.prototype.flatmap" "^1.2.4" + "doctrine" "^2.1.0" + "estraverse" "^5.2.0" + "has" "^1.0.3" + "jsx-ast-utils" "^2.4.1 || ^3.0.0" + "minimatch" "^3.0.4" + "object.entries" "^1.1.4" + "object.fromentries" "^2.0.4" + "object.values" "^1.1.4" + "prop-types" "^15.7.2" + "resolve" "^2.0.0-next.3" + "string.prototype.matchall" "^4.0.5" + +"eslint-plugin-testing-library@^3.9.0", "eslint-plugin-testing-library@^3.9.2": + "integrity" "sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==" + "resolved" "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.2.tgz" + "version" "3.10.2" + dependencies: + "@typescript-eslint/experimental-utils" "^3.10.1" + +"eslint-scope@^4.0.3": + "integrity" "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==" + "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "esrecurse" "^4.1.0" + "estraverse" "^4.1.1" + +"eslint-scope@^5.0.0", "eslint-scope@^5.1.1": + "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "esrecurse" "^4.3.0" + "estraverse" "^4.1.1" + +"eslint-utils@^2.0.0", "eslint-utils@^2.1.0": + "integrity" "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "eslint-visitor-keys" "^1.1.0" + +"eslint-utils@^3.0.0": + "integrity" "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==" + "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "eslint-visitor-keys" "^2.0.0" + +"eslint-visitor-keys@^1.0.0", "eslint-visitor-keys@^1.1.0", "eslint-visitor-keys@^1.3.0": + "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" + "version" "1.3.0" + +"eslint-visitor-keys@^2.0.0": + "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" + "version" "2.1.0" + +"eslint-webpack-plugin@^2.5.2": + "integrity" "sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==" + "resolved" "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz" + "version" "2.5.4" + dependencies: + "@types/eslint" "^7.2.6" + "arrify" "^2.0.1" + "jest-worker" "^26.6.2" + "micromatch" "^4.0.2" + "normalize-path" "^3.0.0" + "schema-utils" "^3.0.0" + +"eslint@*", "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0", "eslint@^3 || ^4 || ^5 || ^6 || ^7", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^5 || ^6 || ^7", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^7.0.0", "eslint@^7.1.0", "eslint@^7.11.0", "eslint@^7.5.0", "eslint@>= 4.12.1", "eslint@>=5", "eslint@>=5.0.0", "eslint@>=7.0.0": + "integrity" "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==" + "resolved" "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz" + "version" "7.32.0" + dependencies: + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" + "ajv" "^6.10.0" + "chalk" "^4.0.0" + "cross-spawn" "^7.0.2" + "debug" "^4.0.1" + "doctrine" "^3.0.0" + "enquirer" "^2.3.5" + "escape-string-regexp" "^4.0.0" + "eslint-scope" "^5.1.1" + "eslint-utils" "^2.1.0" + "eslint-visitor-keys" "^2.0.0" + "espree" "^7.3.1" + "esquery" "^1.4.0" + "esutils" "^2.0.2" + "fast-deep-equal" "^3.1.3" + "file-entry-cache" "^6.0.1" + "functional-red-black-tree" "^1.0.1" + "glob-parent" "^5.1.2" + "globals" "^13.6.0" + "ignore" "^4.0.6" + "import-fresh" "^3.0.0" + "imurmurhash" "^0.1.4" + "is-glob" "^4.0.0" + "js-yaml" "^3.13.1" + "json-stable-stringify-without-jsonify" "^1.0.1" + "levn" "^0.4.1" + "lodash.merge" "^4.6.2" + "minimatch" "^3.0.4" + "natural-compare" "^1.4.0" + "optionator" "^0.9.1" + "progress" "^2.0.0" + "regexpp" "^3.1.0" + "semver" "^7.2.1" + "strip-ansi" "^6.0.0" + "strip-json-comments" "^3.1.0" + "table" "^6.0.9" + "text-table" "^0.2.0" + "v8-compile-cache" "^2.0.3" + +"espree@^7.3.0", "espree@^7.3.1": + "integrity" "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" + "resolved" "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz" + "version" "7.3.1" + dependencies: + "acorn" "^7.4.0" + "acorn-jsx" "^5.3.1" + "eslint-visitor-keys" "^1.3.0" + +"esprima@^4.0.0", "esprima@^4.0.1": + "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" + "version" "4.0.1" + +"esquery@^1.4.0": + "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==" + "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "estraverse" "^5.1.0" + +"esrecurse@^4.1.0", "esrecurse@^4.3.0": + "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "estraverse" "^5.2.0" + +"estraverse@^4.1.1": + "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" + "version" "4.3.0" + +"estraverse@^5.1.0", "estraverse@^5.2.0": + "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" + "version" "5.2.0" + +"estree-walker@^0.6.1": + "integrity" "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz" + "version" "0.6.1" + +"estree-walker@^1.0.1": + "integrity" "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz" + "version" "1.0.1" + +"esutils@^2.0.2": + "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + "version" "2.0.3" + +"etag@~1.8.1": + "integrity" "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" + "version" "1.8.1" + +"eventemitter3@^4.0.0": + "integrity" "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "resolved" "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" + "version" "4.0.7" + +"events@^3.0.0": + "integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + "resolved" "https://registry.npmjs.org/events/-/events-3.3.0.tgz" + "version" "3.3.0" + +"eventsource@^1.0.7": + "integrity" "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==" + "resolved" "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "original" "^1.0.0" + +"evp_bytestokey@^1.0.0", "evp_bytestokey@^1.0.3": + "integrity" "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" + "resolved" "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "md5.js" "^1.3.4" + "safe-buffer" "^5.1.1" + +"exec-sh@^0.3.2": + "integrity" "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" + "resolved" "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz" + "version" "0.3.6" + +"execa@^1.0.0": + "integrity" "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" + "resolved" "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "cross-spawn" "^6.0.0" + "get-stream" "^4.0.0" + "is-stream" "^1.1.0" + "npm-run-path" "^2.0.0" + "p-finally" "^1.0.0" + "signal-exit" "^3.0.0" + "strip-eof" "^1.0.0" + +"execa@^4.0.0": + "integrity" "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + "resolved" "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "cross-spawn" "^7.0.0" + "get-stream" "^5.0.0" + "human-signals" "^1.1.1" + "is-stream" "^2.0.0" + "merge-stream" "^2.0.0" + "npm-run-path" "^4.0.0" + "onetime" "^5.1.0" + "signal-exit" "^3.0.2" + "strip-final-newline" "^2.0.0" + +"exit@^0.1.2": + "integrity" "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + "resolved" "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" + "version" "0.1.2" + +"expand-brackets@^2.1.4": + "integrity" "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=" + "resolved" "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" + "version" "2.1.4" + dependencies: + "debug" "^2.3.3" + "define-property" "^0.2.5" + "extend-shallow" "^2.0.1" + "posix-character-classes" "^0.1.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.1" + +"expand-tilde@^2.0.0", "expand-tilde@^2.0.2": + "integrity" "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=" + "resolved" "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "homedir-polyfill" "^1.0.1" + +"expect@^26.6.0", "expect@^26.6.2": + "integrity" "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==" + "resolved" "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "ansi-styles" "^4.0.0" + "jest-get-type" "^26.3.0" + "jest-matcher-utils" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-regex-util" "^26.0.0" + +"express@^4.17.1": + "integrity" "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==" + "resolved" "https://registry.npmjs.org/express/-/express-4.17.1.tgz" + "version" "4.17.1" + dependencies: + "accepts" "~1.3.7" + "array-flatten" "1.1.1" + "body-parser" "1.19.0" + "content-disposition" "0.5.3" + "content-type" "~1.0.4" + "cookie" "0.4.0" + "cookie-signature" "1.0.6" + "debug" "2.6.9" + "depd" "~1.1.2" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "etag" "~1.8.1" + "finalhandler" "~1.1.2" + "fresh" "0.5.2" + "merge-descriptors" "1.0.1" + "methods" "~1.1.2" + "on-finished" "~2.3.0" + "parseurl" "~1.3.3" + "path-to-regexp" "0.1.7" + "proxy-addr" "~2.0.5" + "qs" "6.7.0" + "range-parser" "~1.2.1" + "safe-buffer" "5.1.2" + "send" "0.17.1" + "serve-static" "1.14.1" + "setprototypeof" "1.1.1" + "statuses" "~1.5.0" + "type-is" "~1.6.18" + "utils-merge" "1.0.1" + "vary" "~1.1.2" + +"ext@^1.1.2": + "integrity" "sha512-+ONcYoWj/SoQwUofMr94aGu05Ou4FepKi7N7b+O8T4jVfyIsZQV1/xeS8jpaBzF0csAk0KLXoHCxU7cKYZjo1Q==" + "resolved" "https://registry.npmjs.org/ext/-/ext-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "type" "^2.5.0" + +"extend-shallow@^2.0.1": + "integrity" "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "is-extendable" "^0.1.0" + +"extend-shallow@^3.0.0": + "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "assign-symbols" "^1.0.0" + "is-extendable" "^1.0.1" + +"extend-shallow@^3.0.2": + "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "assign-symbols" "^1.0.0" + "is-extendable" "^1.0.1" + +"extend@^3.0.0": + "integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + "version" "3.0.2" + +"extglob@^2.0.4": + "integrity" "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==" + "resolved" "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" + "version" "2.0.4" + dependencies: + "array-unique" "^0.3.2" + "define-property" "^1.0.0" + "expand-brackets" "^2.1.4" + "extend-shallow" "^2.0.1" + "fragment-cache" "^0.2.1" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.1" + +"fancy-log@^1.3.2": + "integrity" "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==" + "resolved" "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz" + "version" "1.3.3" + dependencies: + "ansi-gray" "^0.1.1" + "color-support" "^1.1.3" + "parse-node-version" "^1.0.0" + "time-stamp" "^1.0.0" + +"fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3": + "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + "version" "3.1.3" + +"fast-diff@^1.1.2": + "integrity" "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==" + "resolved" "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz" + "version" "1.2.0" + +"fast-glob@^3.1.1": + "integrity" "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz" + "version" "3.2.7" + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + "glob-parent" "^5.1.2" + "merge2" "^1.3.0" + "micromatch" "^4.0.4" + +"fast-json-stable-stringify@^2.0.0", "fast-json-stable-stringify@^2.1.0": + "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + "version" "2.1.0" + +"fast-levenshtein@^1.0.0": + "integrity" "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" + "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz" + "version" "1.1.4" + +"fast-levenshtein@^2.0.6", "fast-levenshtein@~2.0.6": + "integrity" "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" + "version" "2.0.6" + +"fastq@^1.6.0": + "integrity" "sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg==" + "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz" + "version" "1.12.0" + dependencies: + "reusify" "^1.0.4" + +"faye-websocket@^0.11.3": + "integrity" "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + "resolved" "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" + "version" "0.11.4" + dependencies: + "websocket-driver" ">=0.5.1" + +"fb-watchman@^2.0.0": + "integrity" "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==" + "resolved" "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "bser" "2.1.1" + +"figgy-pudding@^3.5.1": + "integrity" "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + "resolved" "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz" + "version" "3.5.2" + +"file-entry-cache@^6.0.1": + "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" + "version" "6.0.1" + dependencies: + "flat-cache" "^3.0.4" + +"file-loader@*", "file-loader@6.1.1": + "integrity" "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==" + "resolved" "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz" + "version" "6.1.1" + dependencies: + "loader-utils" "^2.0.0" + "schema-utils" "^3.0.0" + +"file-uri-to-path@1.0.0": + "integrity" "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + "resolved" "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz" + "version" "1.0.0" + +"filesize@6.1.0": + "integrity" "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + "resolved" "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz" + "version" "6.1.0" + +"fill-range@^4.0.0": + "integrity" "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=" + "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "extend-shallow" "^2.0.1" + "is-number" "^3.0.0" + "repeat-string" "^1.6.1" + "to-regex-range" "^2.1.0" + +"fill-range@^7.0.1": + "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "to-regex-range" "^5.0.1" + +"finalhandler@~1.1.2": + "integrity" "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" + "resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "debug" "2.6.9" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "on-finished" "~2.3.0" + "parseurl" "~1.3.3" + "statuses" "~1.5.0" + "unpipe" "~1.0.0" + +"find-cache-dir@^2.1.0": + "integrity" "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" + "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "commondir" "^1.0.1" + "make-dir" "^2.0.0" + "pkg-dir" "^3.0.0" + +"find-cache-dir@^3.3.1": + "integrity" "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz" + "version" "3.3.2" + dependencies: + "commondir" "^1.0.1" + "make-dir" "^3.0.2" + "pkg-dir" "^4.1.0" + +"find-up@^1.0.0": + "integrity" "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "path-exists" "^2.0.0" + "pinkie-promise" "^2.0.0" + +"find-up@^2.0.0", "find-up@^2.1.0": + "integrity" "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "locate-path" "^2.0.0" + +"find-up@^3.0.0": + "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "locate-path" "^3.0.0" + +"find-up@^4.0.0", "find-up@^4.1.0", "find-up@4.1.0": + "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "locate-path" "^5.0.0" + "path-exists" "^4.0.0" + +"findup-sync@^2.0.0": + "integrity" "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=" + "resolved" "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "detect-file" "^1.0.0" + "is-glob" "^3.1.0" + "micromatch" "^3.0.4" + "resolve-dir" "^1.0.1" + +"findup-sync@^3.0.0": + "integrity" "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==" + "resolved" "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "detect-file" "^1.0.0" + "is-glob" "^4.0.0" + "micromatch" "^3.0.4" + "resolve-dir" "^1.0.1" + +"fined@^1.0.1": + "integrity" "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==" + "resolved" "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "expand-tilde" "^2.0.2" + "is-plain-object" "^2.0.3" + "object.defaults" "^1.1.0" + "object.pick" "^1.2.0" + "parse-filepath" "^1.0.1" + +"flagged-respawn@^1.0.0": + "integrity" "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" + "resolved" "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz" + "version" "1.0.1" + +"flat-cache@^3.0.4": + "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "flatted" "^3.1.0" + "rimraf" "^3.0.2" + +"flatted@^3.1.0": + "integrity" "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==" + "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz" + "version" "3.2.2" + +"flatten@^1.0.2": + "integrity" "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + "resolved" "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz" + "version" "1.0.3" + +"flush-write-stream@^1.0.0", "flush-write-stream@^1.0.2": + "integrity" "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==" + "resolved" "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "inherits" "^2.0.3" + "readable-stream" "^2.3.6" + +"follow-redirects@^1.0.0": + "integrity" "sha512-3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw==" + "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz" + "version" "1.14.3" + +"follow-redirects@^1.14.0": + "integrity" "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==" + "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz" + "version" "1.14.4" + +"for-in@^1.0.1", "for-in@^1.0.2": + "integrity" "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + "resolved" "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" + "version" "1.0.2" + +"for-own@^1.0.0": + "integrity" "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=" + "resolved" "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "for-in" "^1.0.1" + +"fork-ts-checker-webpack-plugin@4.1.6": + "integrity" "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==" + "resolved" "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz" + "version" "4.1.6" + dependencies: + "@babel/code-frame" "^7.5.5" + "chalk" "^2.4.1" + "micromatch" "^3.1.10" + "minimatch" "^3.0.4" + "semver" "^5.6.0" + "tapable" "^1.0.0" + "worker-rpc" "^0.1.0" + +"form-data@^3.0.0": + "integrity" "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" + "resolved" "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "asynckit" "^0.4.0" + "combined-stream" "^1.0.8" + "mime-types" "^2.1.12" + +"forwarded@0.2.0": + "integrity" "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + "resolved" "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" + "version" "0.2.0" + +"fragment-cache@^0.2.1": + "integrity" "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" + "resolved" "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz" + "version" "0.2.1" + dependencies: + "map-cache" "^0.2.2" + +"fresh@0.5.2": + "integrity" "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + "resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" + "version" "0.5.2" + +"from2@^2.1.0": + "integrity" "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" + "resolved" "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "inherits" "^2.0.1" + "readable-stream" "^2.0.0" + +"frontend-collective-react-dnd-scrollzone@^1.0.2": + "integrity" "sha512-me/D9PZJq9j/sjEjs/OPmm6V6nbaHbhgeQiwrWu0t35lhwAOKWc+QBzzKKcZQeboYTkgE8UvCD9el+5ANp+g5Q==" + "resolved" "https://registry.npmjs.org/frontend-collective-react-dnd-scrollzone/-/frontend-collective-react-dnd-scrollzone-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "hoist-non-react-statics" "^3.1.0" + "lodash.throttle" "^4.0.1" + "prop-types" "^15.5.9" + "raf" "^3.2.0" + "react" "^16.3.0" + "react-display-name" "^0.2.0" + "react-dom" "^16.3.0" + +"fs-extra@^7.0.0": + "integrity" "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "graceful-fs" "^4.1.2" + "jsonfile" "^4.0.0" + "universalify" "^0.1.0" + +"fs-extra@^8.1.0": + "integrity" "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" + "version" "8.1.0" + dependencies: + "graceful-fs" "^4.2.0" + "jsonfile" "^4.0.0" + "universalify" "^0.1.0" + +"fs-extra@^9.0.1": + "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" + "version" "9.1.0" + dependencies: + "at-least-node" "^1.0.0" + "graceful-fs" "^4.2.0" + "jsonfile" "^6.0.1" + "universalify" "^2.0.0" + +"fs-minipass@^2.0.0": + "integrity" "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + "resolved" "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "minipass" "^3.0.0" + +"fs-mkdirp-stream@^1.0.0": + "integrity" "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=" + "resolved" "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "graceful-fs" "^4.1.11" + "through2" "^2.0.3" + +"fs-write-stream-atomic@^1.0.8": + "integrity" "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=" + "resolved" "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz" + "version" "1.0.10" + dependencies: + "graceful-fs" "^4.1.2" + "iferr" "^0.1.5" + "imurmurhash" "^0.1.4" + "readable-stream" "1 || 2" + +"fs.realpath@^1.0.0": + "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + "version" "1.0.0" + +"fsevents@^1.2.7": + "integrity" "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==" + "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz" + "version" "1.2.13" + dependencies: + "bindings" "^1.5.0" + "nan" "^2.12.1" + +"fsevents@^2.1.2", "fsevents@^2.1.3", "fsevents@~2.3.2": + "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" + "version" "2.3.2" + +"function-bind@^1.1.1": + "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" + "version" "1.1.1" + +"functional-red-black-tree@^1.0.1": + "integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" + "version" "1.0.1" + +"gensync@^1.0.0-beta.1", "gensync@^1.0.0-beta.2": + "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + "version" "1.0.0-beta.2" + +"get-caller-file@^1.0.1": + "integrity" "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz" + "version" "1.0.3" + +"get-caller-file@^2.0.1": + "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" + "version" "2.0.5" + +"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1": + "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" + "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "function-bind" "^1.1.1" + "has" "^1.0.3" + "has-symbols" "^1.0.1" + +"get-own-enumerable-property-symbols@^3.0.0": + "integrity" "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + "resolved" "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz" + "version" "3.0.2" + +"get-package-type@^0.1.0": + "integrity" "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + "resolved" "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" + "version" "0.1.0" + +"get-stream@^4.0.0": + "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "pump" "^3.0.0" + +"get-stream@^5.0.0": + "integrity" "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "pump" "^3.0.0" + +"get-value@^2.0.3", "get-value@^2.0.6": + "integrity" "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + "resolved" "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" + "version" "2.0.6" + +"glob-parent@^3.1.0": + "integrity" "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "is-glob" "^3.1.0" + "path-dirname" "^1.0.0" + +"glob-parent@^5.1.2", "glob-parent@~5.1.2": + "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + "version" "5.1.2" + dependencies: + "is-glob" "^4.0.1" + +"glob-stream@^6.1.0": + "integrity" "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=" + "resolved" "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "extend" "^3.0.0" + "glob" "^7.1.1" + "glob-parent" "^3.1.0" + "is-negated-glob" "^1.0.0" + "ordered-read-streams" "^1.0.0" + "pumpify" "^1.3.5" + "readable-stream" "^2.1.5" + "remove-trailing-separator" "^1.0.1" + "to-absolute-glob" "^2.0.0" + "unique-stream" "^2.0.2" + +"glob-watcher@^5.0.3": + "integrity" "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==" + "resolved" "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz" + "version" "5.0.5" + dependencies: + "anymatch" "^2.0.0" + "async-done" "^1.2.0" + "chokidar" "^2.0.0" + "is-negated-glob" "^1.0.0" + "just-debounce" "^1.0.0" + "normalize-path" "^3.0.0" + "object.defaults" "^1.1.0" + +"glob@^7.0.3", "glob@^7.1.1", "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6": + "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==" + "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" + "version" "7.1.7" + dependencies: + "fs.realpath" "^1.0.0" + "inflight" "^1.0.4" + "inherits" "2" + "minimatch" "^3.0.4" + "once" "^1.3.0" + "path-is-absolute" "^1.0.0" + +"global-modules@^1.0.0": + "integrity" "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" + "resolved" "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "global-prefix" "^1.0.1" + "is-windows" "^1.0.1" + "resolve-dir" "^1.0.0" + +"global-modules@2.0.0": + "integrity" "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==" + "resolved" "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "global-prefix" "^3.0.0" + +"global-prefix@^1.0.1": + "integrity" "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=" + "resolved" "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "expand-tilde" "^2.0.2" + "homedir-polyfill" "^1.0.1" + "ini" "^1.3.4" + "is-windows" "^1.0.1" + "which" "^1.2.14" + +"global-prefix@^3.0.0": + "integrity" "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==" + "resolved" "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "ini" "^1.3.5" + "kind-of" "^6.0.2" + "which" "^1.3.1" + +"globals@^11.1.0": + "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" + "version" "11.12.0" + +"globals@^13.6.0": + "integrity" "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==" + "resolved" "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz" + "version" "13.11.0" + dependencies: + "type-fest" "^0.20.2" + +"globals@^13.9.0": + "integrity" "sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==" + "resolved" "https://registry.npmjs.org/globals/-/globals-13.11.0.tgz" + "version" "13.11.0" + dependencies: + "type-fest" "^0.20.2" + +"globby@^11.0.3": + "integrity" "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==" + "resolved" "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz" + "version" "11.0.4" + dependencies: + "array-union" "^2.1.0" + "dir-glob" "^3.0.1" + "fast-glob" "^3.1.1" + "ignore" "^5.1.4" + "merge2" "^1.3.0" + "slash" "^3.0.0" + +"globby@^6.1.0": + "integrity" "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=" + "resolved" "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "array-union" "^1.0.1" + "glob" "^7.0.3" + "object-assign" "^4.0.1" + "pify" "^2.0.0" + "pinkie-promise" "^2.0.0" + +"globby@11.0.1": + "integrity" "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==" + "resolved" "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz" + "version" "11.0.1" + dependencies: + "array-union" "^2.1.0" + "dir-glob" "^3.0.1" + "fast-glob" "^3.1.1" + "ignore" "^5.1.4" + "merge2" "^1.3.0" + "slash" "^3.0.0" + +"glogg@^1.0.0": + "integrity" "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==" + "resolved" "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "sparkles" "^1.0.0" + +"graceful-fs@^4.0.0", "graceful-fs@^4.1.11", "graceful-fs@^4.1.15", "graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4": + "integrity" "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz" + "version" "4.2.8" + +"growly@^1.3.0": + "integrity" "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" + "resolved" "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz" + "version" "1.3.0" + +"gulp-append-prepend@1.0.9": + "integrity" "sha512-IUHAd9NHNpQWj0dA8GTEkgUlrgEhTZVe5T6AuEAAMlMSIMdxDZlCQj7zSKDL69nMJpsvgtgosAG4+n6zlhv27Q==" + "resolved" "https://registry.npmjs.org/gulp-append-prepend/-/gulp-append-prepend-1.0.9.tgz" + "version" "1.0.9" + dependencies: + "plugin-error" "^1.0.1" + "read-file" "^0.2.0" + "through2" "^2.0.1" + +"gulp-cli@^2.2.0": + "integrity" "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==" + "resolved" "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "ansi-colors" "^1.0.1" + "archy" "^1.0.0" + "array-sort" "^1.0.0" + "color-support" "^1.1.3" + "concat-stream" "^1.6.0" + "copy-props" "^2.0.1" + "fancy-log" "^1.3.2" + "gulplog" "^1.0.0" + "interpret" "^1.4.0" + "isobject" "^3.0.1" + "liftoff" "^3.1.0" + "matchdep" "^2.0.0" + "mute-stdout" "^1.0.0" + "pretty-hrtime" "^1.0.0" + "replace-homedir" "^1.0.0" + "semver-greatest-satisfied-range" "^1.1.0" + "v8flags" "^3.2.0" + "yargs" "^7.1.0" + +"gulp@4.0.2": + "integrity" "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==" + "resolved" "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "glob-watcher" "^5.0.3" + "gulp-cli" "^2.2.0" + "undertaker" "^1.2.1" + "vinyl-fs" "^3.0.0" + +"gulplog@^1.0.0": + "integrity" "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=" + "resolved" "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "glogg" "^1.0.0" + +"gzip-size@5.1.1": + "integrity" "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==" + "resolved" "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "duplexer" "^0.1.1" + "pify" "^4.0.1" + +"handle-thing@^2.0.0": + "integrity" "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + "resolved" "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" + "version" "2.0.1" + +"harmony-reflect@^1.4.6": + "integrity" "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + "resolved" "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz" + "version" "1.6.2" + +"has-bigints@^1.0.1": + "integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" + "version" "1.0.1" + +"has-flag@^3.0.0": + "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + "version" "3.0.0" + +"has-flag@^4.0.0": + "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + "version" "4.0.0" + +"has-symbols@^1.0.1", "has-symbols@^1.0.2": + "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" + "version" "1.0.2" + +"has-tostringtag@^1.0.0": + "integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + "resolved" "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "has-symbols" "^1.0.2" + +"has-value@^0.3.1": + "integrity" "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" + "resolved" "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" + "version" "0.3.1" + dependencies: + "get-value" "^2.0.3" + "has-values" "^0.1.4" + "isobject" "^2.0.0" + +"has-value@^1.0.0": + "integrity" "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" + "resolved" "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "get-value" "^2.0.6" + "has-values" "^1.0.0" + "isobject" "^3.0.0" + +"has-values@^0.1.4": + "integrity" "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + "resolved" "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz" + "version" "0.1.4" + +"has-values@^1.0.0": + "integrity" "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=" + "resolved" "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "is-number" "^3.0.0" + "kind-of" "^4.0.0" + +"has@^1.0.0", "has@^1.0.3": + "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "function-bind" "^1.1.1" + +"hash-base@^3.0.0": + "integrity" "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==" + "resolved" "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "inherits" "^2.0.4" + "readable-stream" "^3.6.0" + "safe-buffer" "^5.2.0" + +"hash.js@^1.0.0", "hash.js@^1.0.3": + "integrity" "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==" + "resolved" "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz" + "version" "1.1.7" + dependencies: + "inherits" "^2.0.3" + "minimalistic-assert" "^1.0.1" + +"he@^1.2.0": + "integrity" "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + "resolved" "https://registry.npmjs.org/he/-/he-1.2.0.tgz" + "version" "1.2.0" + +"hex-color-regex@^1.1.0": + "integrity" "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + "resolved" "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz" + "version" "1.1.0" + +"history@^4.9.0": + "integrity" "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + "resolved" "https://registry.npmjs.org/history/-/history-4.10.1.tgz" + "version" "4.10.1" + dependencies: + "@babel/runtime" "^7.1.2" + "loose-envify" "^1.2.0" + "resolve-pathname" "^3.0.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + "value-equal" "^1.0.1" + +"history@5.0.0": + "integrity" "sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==" + "resolved" "https://registry.npmjs.org/history/-/history-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "@babel/runtime" "^7.7.6" + +"hmac-drbg@^1.0.1": + "integrity" "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" + "resolved" "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "hash.js" "^1.0.3" + "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.0", "hoist-non-react-statics@^3.3.1", "hoist-non-react-statics@^3.3.2": + "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + "version" "3.3.2" + dependencies: + "react-is" "^16.7.0" + +"homedir-polyfill@^1.0.1": + "integrity" "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" + "resolved" "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "parse-passwd" "^1.0.0" + +"hoopy@^0.1.4": + "integrity" "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + "resolved" "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz" + "version" "0.1.4" + +"hosted-git-info@^2.1.4": + "integrity" "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" + "version" "2.8.9" + +"hpack.js@^2.1.6": + "integrity" "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" + "resolved" "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" + "version" "2.1.6" + dependencies: + "inherits" "^2.0.1" + "obuf" "^1.0.0" + "readable-stream" "^2.0.1" + "wbuf" "^1.1.0" + +"hsl-regex@^1.0.0": + "integrity" "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + "resolved" "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz" + "version" "1.0.0" + +"hsla-regex@^1.0.0": + "integrity" "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + "resolved" "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz" + "version" "1.0.0" + +"html-dom-parser@1.2.0": + "integrity" "sha512-2HIpFMvvffsXHFUFjso0M9LqM+1Lm22BF+Df2ba+7QHJXjk63pWChEnI6YG27eaWqUdfnh5/Vy+OXrNTtepRsg==" + "resolved" "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "domhandler" "4.3.1" + "htmlparser2" "7.2.0" + +"html-encoding-sniffer@^2.0.1": + "integrity" "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==" + "resolved" "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "whatwg-encoding" "^1.0.5" + +"html-entities@^1.2.1", "html-entities@^1.3.1": + "integrity" "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + "resolved" "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz" + "version" "1.4.0" + +"html-escaper@^2.0.0": + "integrity" "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + "resolved" "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" + "version" "2.0.2" + +"html-minifier-terser@^5.0.1": + "integrity" "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==" + "resolved" "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "camel-case" "^4.1.1" + "clean-css" "^4.2.3" + "commander" "^4.1.1" + "he" "^1.2.0" + "param-case" "^3.0.3" + "relateurl" "^0.2.7" + "terser" "^4.6.3" + +"html-react-parser@^1.4.8": + "integrity" "sha512-NDSz8MS89I286N7FzNScBtCRBs6MU7w72k+jWk4dBqcTgTrCQHHrIUlryJB9U5MJuKhq5/CFGz0JPPYS6OnjZw==" + "resolved" "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.11.tgz" + "version" "1.4.11" + dependencies: + "domhandler" "4.3.1" + "html-dom-parser" "1.2.0" + "react-property" "2.0.0" + "style-to-js" "1.1.0" + +"html-webpack-plugin@4.5.0": + "integrity" "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==" + "resolved" "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "@types/html-minifier-terser" "^5.0.0" + "@types/tapable" "^1.0.5" + "@types/webpack" "^4.41.8" + "html-minifier-terser" "^5.0.1" + "loader-utils" "^1.2.3" + "lodash" "^4.17.15" + "pretty-error" "^2.1.1" + "tapable" "^1.1.3" + "util.promisify" "1.0.0" + +"htmlparser2@^6.1.0": + "integrity" "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "domelementtype" "^2.0.1" + "domhandler" "^4.0.0" + "domutils" "^2.5.2" + "entities" "^2.0.0" + +"htmlparser2@7.2.0": + "integrity" "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==" + "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz" + "version" "7.2.0" + dependencies: + "domelementtype" "^2.0.1" + "domhandler" "^4.2.2" + "domutils" "^2.8.0" + "entities" "^3.0.1" + +"http-deceiver@^1.2.7": + "integrity" "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + "resolved" "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" + "version" "1.2.7" + +"http-errors@~1.6.2": + "integrity" "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" + "version" "1.6.3" + dependencies: + "depd" "~1.1.2" + "inherits" "2.0.3" + "setprototypeof" "1.1.0" + "statuses" ">= 1.4.0 < 2" + +"http-errors@~1.7.2": + "integrity" "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz" + "version" "1.7.3" + dependencies: + "depd" "~1.1.2" + "inherits" "2.0.4" + "setprototypeof" "1.1.1" + "statuses" ">= 1.5.0 < 2" + "toidentifier" "1.0.0" + +"http-errors@1.7.2": + "integrity" "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz" + "version" "1.7.2" + dependencies: + "depd" "~1.1.2" + "inherits" "2.0.3" + "setprototypeof" "1.1.1" + "statuses" ">= 1.5.0 < 2" + "toidentifier" "1.0.0" + +"http-parser-js@>=0.5.1": + "integrity" "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + "resolved" "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz" + "version" "0.5.3" + +"http-proxy-agent@^4.0.1": + "integrity" "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" + "resolved" "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "@tootallnate/once" "1" + "agent-base" "6" + "debug" "4" + +"http-proxy-middleware@0.19.1": + "integrity" "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==" + "resolved" "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz" + "version" "0.19.1" + dependencies: + "http-proxy" "^1.17.0" + "is-glob" "^4.0.0" + "lodash" "^4.17.11" + "micromatch" "^3.1.10" + +"http-proxy@^1.17.0": + "integrity" "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + "resolved" "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" + "version" "1.18.1" + dependencies: + "eventemitter3" "^4.0.0" + "follow-redirects" "^1.0.0" + "requires-port" "^1.0.0" + +"https-browserify@^1.0.0": + "integrity" "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + "resolved" "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz" + "version" "1.0.0" + +"https-proxy-agent@^5.0.0": + "integrity" "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" + "resolved" "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "agent-base" "6" + "debug" "4" + +"human-signals@^1.1.1": + "integrity" "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" + "version" "1.1.1" + +"hyphenate-style-name@^1.0.3": + "integrity" "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + "resolved" "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz" + "version" "1.0.4" + +"iconv-lite@0.4.24": + "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" + "version" "0.4.24" + dependencies: + "safer-buffer" ">= 2.1.2 < 3" + +"icss-utils@^4.0.0", "icss-utils@^4.1.1": + "integrity" "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==" + "resolved" "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "postcss" "^7.0.14" + +"identity-obj-proxy@3.0.0": + "integrity" "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" + "resolved" "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "harmony-reflect" "^1.4.6" + +"ieee754@^1.1.4": + "integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + "resolved" "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" + "version" "1.2.1" + +"iferr@^0.1.5": + "integrity" "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + "resolved" "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz" + "version" "0.1.5" + +"ignore@^4.0.6": + "integrity" "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + "resolved" "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz" + "version" "4.0.6" + +"ignore@^5.1.4": + "integrity" "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz" + "version" "5.1.8" + +"immer@8.0.1": + "integrity" "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" + "resolved" "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz" + "version" "8.0.1" + +"import-cwd@^2.0.0": + "integrity" "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=" + "resolved" "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "import-from" "^2.1.0" + +"import-fresh@^2.0.0": + "integrity" "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=" + "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "caller-path" "^2.0.0" + "resolve-from" "^3.0.0" + +"import-fresh@^3.0.0", "import-fresh@^3.1.0", "import-fresh@^3.2.1": + "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" + "version" "3.3.0" + dependencies: + "parent-module" "^1.0.0" + "resolve-from" "^4.0.0" + +"import-from@^2.1.0": + "integrity" "sha1-M1238qev/VOqpHHUuAId7ja387E=" + "resolved" "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "resolve-from" "^3.0.0" + +"import-local@^2.0.0": + "integrity" "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==" + "resolved" "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "pkg-dir" "^3.0.0" + "resolve-cwd" "^2.0.0" + +"import-local@^3.0.2": + "integrity" "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==" + "resolved" "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "pkg-dir" "^4.2.0" + "resolve-cwd" "^3.0.0" + +"imurmurhash@^0.1.4": + "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + "version" "0.1.4" + +"indent-string@^4.0.0": + "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + "version" "4.0.0" + +"indexes-of@^1.0.1": + "integrity" "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + "resolved" "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz" + "version" "1.0.1" + +"infer-owner@^1.0.3", "infer-owner@^1.0.4": + "integrity" "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "resolved" "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz" + "version" "1.0.4" + +"inflight@^1.0.4": + "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" + "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + "version" "1.0.6" + dependencies: + "once" "^1.3.0" + "wrappy" "1" + +"inherits@^2.0.1", "inherits@^2.0.3", "inherits@^2.0.4", "inherits@~2.0.1", "inherits@~2.0.3", "inherits@2", "inherits@2.0.4": + "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + "version" "2.0.4" + +"inherits@2.0.1": + "integrity" "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + "version" "2.0.1" + +"inherits@2.0.3": + "integrity" "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "version" "2.0.3" + +"ini@^1.3.4", "ini@^1.3.5": + "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + "version" "1.3.8" + +"inline-style-parser@0.1.1": + "integrity" "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + "resolved" "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" + "version" "0.1.1" + +"internal-ip@^4.3.0": + "integrity" "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==" + "resolved" "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "default-gateway" "^4.2.0" + "ipaddr.js" "^1.9.0" + +"internal-slot@^1.0.3": + "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" + "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "get-intrinsic" "^1.1.0" + "has" "^1.0.3" + "side-channel" "^1.0.4" + +"interpret@^1.4.0": + "integrity" "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + "resolved" "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz" + "version" "1.4.0" + +"invert-kv@^1.0.0": + "integrity" "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + "resolved" "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" + "version" "1.0.0" + +"ip-regex@^2.1.0": + "integrity" "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + "resolved" "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" + "version" "2.1.0" + +"ip@^1.1.0", "ip@^1.1.5": + "integrity" "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "resolved" "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz" + "version" "1.1.5" + +"ipaddr.js@^1.9.0", "ipaddr.js@1.9.1": + "integrity" "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" + "version" "1.9.1" + +"is-absolute-url@^2.0.0": + "integrity" "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + "resolved" "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz" + "version" "2.1.0" + +"is-absolute-url@^3.0.3": + "integrity" "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + "resolved" "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz" + "version" "3.0.3" + +"is-absolute@^1.0.0": + "integrity" "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==" + "resolved" "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "is-relative" "^1.0.0" + "is-windows" "^1.0.1" + +"is-accessor-descriptor@^0.1.6": + "integrity" "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" + "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz" + "version" "0.1.6" + dependencies: + "kind-of" "^3.0.2" + +"is-accessor-descriptor@^1.0.0": + "integrity" "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" + "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "kind-of" "^6.0.0" + +"is-arguments@^1.0.4": + "integrity" "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" + "resolved" "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "call-bind" "^1.0.2" + "has-tostringtag" "^1.0.0" + +"is-arrayish@^0.2.1": + "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + "version" "0.2.1" + +"is-arrayish@^0.3.1": + "integrity" "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" + "version" "0.3.2" + +"is-bigint@^1.0.1": + "integrity" "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "has-bigints" "^1.0.1" + +"is-binary-path@^1.0.0": + "integrity" "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" + "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "binary-extensions" "^1.0.0" + +"is-binary-path@~2.1.0": + "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "binary-extensions" "^2.0.0" + +"is-boolean-object@^1.1.0": + "integrity" "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "call-bind" "^1.0.2" + "has-tostringtag" "^1.0.0" + +"is-buffer@^1.1.5": + "integrity" "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" + "version" "1.1.6" + +"is-callable@^1.1.4", "is-callable@^1.2.3": + "integrity" "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz" + "version" "1.2.4" + +"is-ci@^2.0.0": + "integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + "resolved" "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "ci-info" "^2.0.0" + +"is-color-stop@^1.0.0": + "integrity" "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=" + "resolved" "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "css-color-names" "^0.0.4" + "hex-color-regex" "^1.1.0" + "hsl-regex" "^1.0.0" + "hsla-regex" "^1.0.0" + "rgb-regex" "^1.0.1" + "rgba-regex" "^1.0.0" + +"is-core-module@^2.0.0", "is-core-module@^2.2.0", "is-core-module@^2.6.0": + "integrity" "sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==" + "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz" + "version" "2.6.0" + dependencies: + "has" "^1.0.3" + +"is-data-descriptor@^0.1.4": + "integrity" "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" + "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "kind-of" "^3.0.2" + +"is-data-descriptor@^1.0.0": + "integrity" "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" + "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "kind-of" "^6.0.0" + +"is-date-object@^1.0.1": + "integrity" "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "has-tostringtag" "^1.0.0" + +"is-descriptor@^0.1.0": + "integrity" "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" + "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz" + "version" "0.1.6" + dependencies: + "is-accessor-descriptor" "^0.1.6" + "is-data-descriptor" "^0.1.4" + "kind-of" "^5.0.0" + +"is-descriptor@^1.0.0", "is-descriptor@^1.0.2": + "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" + "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "is-accessor-descriptor" "^1.0.0" + "is-data-descriptor" "^1.0.0" + "kind-of" "^6.0.2" + +"is-directory@^0.3.1": + "integrity" "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + "resolved" "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz" + "version" "0.3.1" + +"is-docker@^2.0.0": + "integrity" "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" + "version" "2.2.1" + +"is-extendable@^0.1.0", "is-extendable@^0.1.1": + "integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + "version" "0.1.1" + +"is-extendable@^1.0.1": + "integrity" "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "is-plain-object" "^2.0.4" + +"is-extglob@^2.1.0", "is-extglob@^2.1.1": + "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + "version" "2.1.1" + +"is-fullwidth-code-point@^1.0.0": + "integrity" "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=" + "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "number-is-nan" "^1.0.0" + +"is-fullwidth-code-point@^2.0.0": + "integrity" "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" + "version" "2.0.0" + +"is-fullwidth-code-point@^3.0.0": + "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + "version" "3.0.0" + +"is-generator-fn@^2.0.0": + "integrity" "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + "resolved" "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" + "version" "2.1.0" + +"is-glob@^3.1.0": + "integrity" "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" + "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "is-extglob" "^2.1.0" + +"is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@~4.0.1": + "integrity" "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==" + "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "is-extglob" "^2.1.1" + +"is-in-browser@^1.0.2", "is-in-browser@^1.1.3": + "integrity" "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + "resolved" "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz" + "version" "1.1.3" + +"is-module@^1.0.0": + "integrity" "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + "resolved" "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz" + "version" "1.0.0" + +"is-negated-glob@^1.0.0": + "integrity" "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" + "resolved" "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz" + "version" "1.0.0" + +"is-negative-zero@^2.0.1": + "integrity" "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz" + "version" "2.0.1" + +"is-number-object@^1.0.4": + "integrity" "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==" + "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz" + "version" "1.0.6" + dependencies: + "has-tostringtag" "^1.0.0" + +"is-number@^3.0.0": + "integrity" "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "kind-of" "^3.0.2" + +"is-number@^4.0.0": + "integrity" "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz" + "version" "4.0.0" + +"is-number@^7.0.0": + "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + "version" "7.0.0" + +"is-obj@^1.0.1": + "integrity" "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" + "version" "1.0.1" + +"is-obj@^2.0.0": + "integrity" "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" + "version" "2.0.0" + +"is-path-cwd@^2.0.0": + "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" + "version" "2.2.0" + +"is-path-in-cwd@^2.0.0": + "integrity" "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" + "resolved" "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "is-path-inside" "^2.1.0" + +"is-path-inside@^2.1.0": + "integrity" "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" + "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "path-is-inside" "^1.0.2" + +"is-plain-obj@^1.0.0": + "integrity" "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" + "version" "1.1.0" + +"is-plain-object@^2.0.1", "is-plain-object@^2.0.3", "is-plain-object@^2.0.4": + "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" + "version" "2.0.4" + dependencies: + "isobject" "^3.0.1" + +"is-plain-object@^5.0.0": + "integrity" "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" + "version" "5.0.0" + +"is-potential-custom-element-name@^1.0.1": + "integrity" "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + "resolved" "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" + "version" "1.0.1" + +"is-regex@^1.0.4", "is-regex@^1.1.3": + "integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" + "version" "1.1.4" + dependencies: + "call-bind" "^1.0.2" + "has-tostringtag" "^1.0.0" + +"is-regexp@^1.0.0": + "integrity" "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + "resolved" "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz" + "version" "1.0.0" + +"is-relative@^1.0.0": + "integrity" "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==" + "resolved" "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "is-unc-path" "^1.0.0" + +"is-resolvable@^1.0.0": + "integrity" "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + "resolved" "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz" + "version" "1.1.0" + +"is-root@2.1.0": + "integrity" "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + "resolved" "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" + "version" "2.1.0" + +"is-stream@^1.1.0": + "integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + "version" "1.1.0" + +"is-stream@^2.0.0": + "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" + "version" "2.0.1" + +"is-string@^1.0.5", "is-string@^1.0.6": + "integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" + "version" "1.0.7" + dependencies: + "has-tostringtag" "^1.0.0" + +"is-symbol@^1.0.2", "is-symbol@^1.0.3": + "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "has-symbols" "^1.0.2" + +"is-typedarray@^1.0.0": + "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" + "version" "1.0.0" + +"is-unc-path@^1.0.0": + "integrity" "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==" + "resolved" "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "unc-path-regex" "^0.1.2" + +"is-utf8@^0.2.0", "is-utf8@^0.2.1": + "integrity" "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + "resolved" "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz" + "version" "0.2.1" + +"is-valid-glob@^1.0.0": + "integrity" "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" + "resolved" "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz" + "version" "1.0.0" + +"is-windows@^1.0.1", "is-windows@^1.0.2": + "integrity" "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + "resolved" "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" + "version" "1.0.2" + +"is-wsl@^1.1.0": + "integrity" "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz" + "version" "1.1.0" + +"is-wsl@^2.1.1": + "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "is-docker" "^2.0.0" + +"is-wsl@^2.2.0": + "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "is-docker" "^2.0.0" + +"isarray@^1.0.0", "isarray@~1.0.0", "isarray@1.0.0": + "integrity" "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + "version" "1.0.0" + +"isarray@0.0.1": + "integrity" "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + "version" "0.0.1" + +"isexe@^2.0.0": + "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + "version" "2.0.0" + +"isobject@^2.0.0": + "integrity" "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" + "resolved" "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "isarray" "1.0.0" + +"isobject@^3.0.0", "isobject@^3.0.1": + "integrity" "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" + "version" "3.0.1" + +"istanbul-lib-coverage@^3.0.0": + "integrity" "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" + "resolved" "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz" + "version" "3.0.0" + +"istanbul-lib-instrument@^4.0.0", "istanbul-lib-instrument@^4.0.3": + "integrity" "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==" + "resolved" "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "@babel/core" "^7.7.5" + "@istanbuljs/schema" "^0.1.2" + "istanbul-lib-coverage" "^3.0.0" + "semver" "^6.3.0" + +"istanbul-lib-report@^3.0.0": + "integrity" "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" + "resolved" "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "istanbul-lib-coverage" "^3.0.0" + "make-dir" "^3.0.0" + "supports-color" "^7.1.0" + +"istanbul-lib-source-maps@^4.0.0": + "integrity" "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==" + "resolved" "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "debug" "^4.1.1" + "istanbul-lib-coverage" "^3.0.0" + "source-map" "^0.6.1" + +"istanbul-reports@^3.0.2": + "integrity" "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==" + "resolved" "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "html-escaper" "^2.0.0" + "istanbul-lib-report" "^3.0.0" + +"jest-changed-files@^26.6.2": + "integrity" "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==" + "resolved" "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "execa" "^4.0.0" + "throat" "^5.0.0" + +"jest-circus@26.6.0": + "integrity" "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==" + "resolved" "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz" + "version" "26.6.0" + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^26.6.0" + "@jest/test-result" "^26.6.0" + "@jest/types" "^26.6.0" + "@types/babel__traverse" "^7.0.4" + "@types/node" "*" + "chalk" "^4.0.0" + "co" "^4.6.0" + "dedent" "^0.7.0" + "expect" "^26.6.0" + "is-generator-fn" "^2.0.0" + "jest-each" "^26.6.0" + "jest-matcher-utils" "^26.6.0" + "jest-message-util" "^26.6.0" + "jest-runner" "^26.6.0" + "jest-runtime" "^26.6.0" + "jest-snapshot" "^26.6.0" + "jest-util" "^26.6.0" + "pretty-format" "^26.6.0" + "stack-utils" "^2.0.2" + "throat" "^5.0.0" + +"jest-cli@^26.6.0": + "integrity" "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==" + "resolved" "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/core" "^26.6.3" + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "exit" "^0.1.2" + "graceful-fs" "^4.2.4" + "import-local" "^3.0.2" + "is-ci" "^2.0.0" + "jest-config" "^26.6.3" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "prompts" "^2.0.1" + "yargs" "^15.4.1" + +"jest-config@^26.6.3": + "integrity" "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==" + "resolved" "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^26.6.3" + "@jest/types" "^26.6.2" + "babel-jest" "^26.6.3" + "chalk" "^4.0.0" + "deepmerge" "^4.2.2" + "glob" "^7.1.1" + "graceful-fs" "^4.2.4" + "jest-environment-jsdom" "^26.6.2" + "jest-environment-node" "^26.6.2" + "jest-get-type" "^26.3.0" + "jest-jasmine2" "^26.6.3" + "jest-regex-util" "^26.0.0" + "jest-resolve" "^26.6.2" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "micromatch" "^4.0.2" + "pretty-format" "^26.6.2" + +"jest-diff@^26.6.2": + "integrity" "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==" + "resolved" "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "chalk" "^4.0.0" + "diff-sequences" "^26.6.2" + "jest-get-type" "^26.3.0" + "pretty-format" "^26.6.2" + +"jest-docblock@^26.0.0": + "integrity" "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==" + "resolved" "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz" + "version" "26.0.0" + dependencies: + "detect-newline" "^3.0.0" + +"jest-each@^26.6.0", "jest-each@^26.6.2": + "integrity" "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==" + "resolved" "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "jest-get-type" "^26.3.0" + "jest-util" "^26.6.2" + "pretty-format" "^26.6.2" + +"jest-environment-jsdom@^26.6.2": + "integrity" "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==" + "resolved" "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "jest-mock" "^26.6.2" + "jest-util" "^26.6.2" + "jsdom" "^16.4.0" + +"jest-environment-node@^26.6.2": + "integrity" "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==" + "resolved" "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "jest-mock" "^26.6.2" + "jest-util" "^26.6.2" + +"jest-get-type@^26.3.0": + "integrity" "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" + "resolved" "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz" + "version" "26.3.0" + +"jest-haste-map@^26.6.2": + "integrity" "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==" + "resolved" "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/graceful-fs" "^4.1.2" + "@types/node" "*" + "anymatch" "^3.0.3" + "fb-watchman" "^2.0.0" + "graceful-fs" "^4.2.4" + "jest-regex-util" "^26.0.0" + "jest-serializer" "^26.6.2" + "jest-util" "^26.6.2" + "jest-worker" "^26.6.2" + "micromatch" "^4.0.2" + "sane" "^4.0.3" + "walker" "^1.0.7" + optionalDependencies: + "fsevents" "^2.1.2" + +"jest-jasmine2@^26.6.3": + "integrity" "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==" + "resolved" "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^26.6.2" + "@jest/source-map" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "co" "^4.6.0" + "expect" "^26.6.2" + "is-generator-fn" "^2.0.0" + "jest-each" "^26.6.2" + "jest-matcher-utils" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-runtime" "^26.6.3" + "jest-snapshot" "^26.6.2" + "jest-util" "^26.6.2" + "pretty-format" "^26.6.2" + "throat" "^5.0.0" + +"jest-leak-detector@^26.6.2": + "integrity" "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==" + "resolved" "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "jest-get-type" "^26.3.0" + "pretty-format" "^26.6.2" + +"jest-matcher-utils@^26.6.0", "jest-matcher-utils@^26.6.2": + "integrity" "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==" + "resolved" "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "chalk" "^4.0.0" + "jest-diff" "^26.6.2" + "jest-get-type" "^26.3.0" + "pretty-format" "^26.6.2" + +"jest-message-util@^26.6.0", "jest-message-util@^26.6.2": + "integrity" "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==" + "resolved" "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/types" "^26.6.2" + "@types/stack-utils" "^2.0.0" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "micromatch" "^4.0.2" + "pretty-format" "^26.6.2" + "slash" "^3.0.0" + "stack-utils" "^2.0.2" + +"jest-mock@^26.6.2": + "integrity" "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==" + "resolved" "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + +"jest-pnp-resolver@^1.2.2": + "integrity" "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" + "resolved" "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" + "version" "1.2.2" + +"jest-regex-util@^26.0.0": + "integrity" "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + "resolved" "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz" + "version" "26.0.0" + +"jest-resolve-dependencies@^26.6.3": + "integrity" "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==" + "resolved" "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/types" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-snapshot" "^26.6.2" + +"jest-resolve@*": + "integrity" "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==" + "version" "26.6.0" + dependencies: + "@jest/types" "^26.6.0" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "jest-pnp-resolver" "^1.2.2" + "jest-util" "^26.6.0" + "read-pkg-up" "^7.0.1" + "resolve" "^1.17.0" + "slash" "^3.0.0" + +"jest-resolve@^26.6.2": + "integrity" "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==" + "resolved" "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "jest-pnp-resolver" "^1.2.2" + "jest-util" "^26.6.2" + "read-pkg-up" "^7.0.1" + "resolve" "^1.18.1" + "slash" "^3.0.0" + +"jest-resolve@26.6.0": + "integrity" "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==" + "resolved" "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz" + "version" "26.6.0" + dependencies: + "@jest/types" "^26.6.0" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "jest-pnp-resolver" "^1.2.2" + "jest-util" "^26.6.0" + "read-pkg-up" "^7.0.1" + "resolve" "^1.17.0" + "slash" "^3.0.0" + +"jest-runner@^26.6.0", "jest-runner@^26.6.3": + "integrity" "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==" + "resolved" "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/console" "^26.6.2" + "@jest/environment" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "emittery" "^0.7.1" + "exit" "^0.1.2" + "graceful-fs" "^4.2.4" + "jest-config" "^26.6.3" + "jest-docblock" "^26.0.0" + "jest-haste-map" "^26.6.2" + "jest-leak-detector" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-resolve" "^26.6.2" + "jest-runtime" "^26.6.3" + "jest-util" "^26.6.2" + "jest-worker" "^26.6.2" + "source-map-support" "^0.5.6" + "throat" "^5.0.0" + +"jest-runtime@^26.6.0", "jest-runtime@^26.6.3": + "integrity" "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==" + "resolved" "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/console" "^26.6.2" + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/globals" "^26.6.2" + "@jest/source-map" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/yargs" "^15.0.0" + "chalk" "^4.0.0" + "cjs-module-lexer" "^0.6.0" + "collect-v8-coverage" "^1.0.0" + "exit" "^0.1.2" + "glob" "^7.1.3" + "graceful-fs" "^4.2.4" + "jest-config" "^26.6.3" + "jest-haste-map" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-mock" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-resolve" "^26.6.2" + "jest-snapshot" "^26.6.2" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "slash" "^3.0.0" + "strip-bom" "^4.0.0" + "yargs" "^15.4.1" + +"jest-serializer@^26.6.2": + "integrity" "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==" + "resolved" "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@types/node" "*" + "graceful-fs" "^4.2.4" + +"jest-snapshot@^26.6.0", "jest-snapshot@^26.6.2": + "integrity" "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==" + "resolved" "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^26.6.2" + "@types/babel__traverse" "^7.0.4" + "@types/prettier" "^2.0.0" + "chalk" "^4.0.0" + "expect" "^26.6.2" + "graceful-fs" "^4.2.4" + "jest-diff" "^26.6.2" + "jest-get-type" "^26.3.0" + "jest-haste-map" "^26.6.2" + "jest-matcher-utils" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-resolve" "^26.6.2" + "natural-compare" "^1.4.0" + "pretty-format" "^26.6.2" + "semver" "^7.3.2" + +"jest-util@^26.6.0", "jest-util@^26.6.2": + "integrity" "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==" + "resolved" "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "is-ci" "^2.0.0" + "micromatch" "^4.0.2" + +"jest-validate@^26.6.2": + "integrity" "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==" + "resolved" "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "camelcase" "^6.0.0" + "chalk" "^4.0.0" + "jest-get-type" "^26.3.0" + "leven" "^3.1.0" + "pretty-format" "^26.6.2" + +"jest-watch-typeahead@0.6.1": + "integrity" "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==" + "resolved" "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz" + "version" "0.6.1" + dependencies: + "ansi-escapes" "^4.3.1" + "chalk" "^4.0.0" + "jest-regex-util" "^26.0.0" + "jest-watcher" "^26.3.0" + "slash" "^3.0.0" + "string-length" "^4.0.1" + "strip-ansi" "^6.0.0" + +"jest-watcher@^26.3.0", "jest-watcher@^26.6.2": + "integrity" "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==" + "resolved" "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "ansi-escapes" "^4.2.1" + "chalk" "^4.0.0" + "jest-util" "^26.6.2" + "string-length" "^4.0.1" + +"jest-worker@^24.9.0": + "integrity" "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" + "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz" + "version" "24.9.0" + dependencies: + "merge-stream" "^2.0.0" + "supports-color" "^6.1.0" + +"jest-worker@^26.5.0", "jest-worker@^26.6.2": + "integrity" "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" + "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@types/node" "*" + "merge-stream" "^2.0.0" + "supports-color" "^7.0.0" + +"jest@^26.0.0", "jest@26.6.0": + "integrity" "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==" + "resolved" "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz" + "version" "26.6.0" + dependencies: + "@jest/core" "^26.6.0" + "import-local" "^3.0.2" + "jest-cli" "^26.6.0" + +"js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0": + "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + "version" "4.0.0" + +"js-yaml@^3.13.1": + "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" + "version" "3.14.1" + dependencies: + "argparse" "^1.0.7" + "esprima" "^4.0.0" + +"jsdom@^16.4.0": + "integrity" "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==" + "resolved" "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz" + "version" "16.7.0" + dependencies: + "abab" "^2.0.5" + "acorn" "^8.2.4" + "acorn-globals" "^6.0.0" + "cssom" "^0.4.4" + "cssstyle" "^2.3.0" + "data-urls" "^2.0.0" + "decimal.js" "^10.2.1" + "domexception" "^2.0.1" + "escodegen" "^2.0.0" + "form-data" "^3.0.0" + "html-encoding-sniffer" "^2.0.1" + "http-proxy-agent" "^4.0.1" + "https-proxy-agent" "^5.0.0" + "is-potential-custom-element-name" "^1.0.1" + "nwsapi" "^2.2.0" + "parse5" "6.0.1" + "saxes" "^5.0.1" + "symbol-tree" "^3.2.4" + "tough-cookie" "^4.0.0" + "w3c-hr-time" "^1.0.2" + "w3c-xmlserializer" "^2.0.0" + "webidl-conversions" "^6.1.0" + "whatwg-encoding" "^1.0.5" + "whatwg-mimetype" "^2.3.0" + "whatwg-url" "^8.5.0" + "ws" "^7.4.6" + "xml-name-validator" "^3.0.0" + +"jsesc@^2.5.1": + "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" + "version" "2.5.2" + +"jsesc@~0.5.0": + "integrity" "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" + "version" "0.5.0" + +"json-parse-better-errors@^1.0.1", "json-parse-better-errors@^1.0.2": + "integrity" "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + "resolved" "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" + "version" "1.0.2" + +"json-parse-even-better-errors@^2.3.0": + "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + "version" "2.3.1" + +"json-schema-traverse@^0.4.1": + "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" + "version" "0.4.1" + +"json-schema-traverse@^1.0.0": + "integrity" "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + "version" "1.0.0" + +"json-stable-stringify-without-jsonify@^1.0.1": + "integrity" "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" + "version" "1.0.1" + +"json3@^3.3.3": + "integrity" "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + "resolved" "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz" + "version" "3.3.3" + +"json5@^1.0.1": + "integrity" "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==" + "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "minimist" "^1.2.0" + +"json5@^2.1.2": + "integrity" "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==" + "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "minimist" "^1.2.5" + +"jsonfile@^4.0.0": + "integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" + "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" + "version" "4.0.0" + optionalDependencies: + "graceful-fs" "^4.1.6" + +"jsonfile@^6.0.1": + "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "universalify" "^2.0.0" + optionalDependencies: + "graceful-fs" "^4.1.6" + +"jss-plugin-camel-case@^10.5.1": + "integrity" "sha512-+ioIyWvmAfgDCWXsQcW1NMnLBvRinOVFkSYJUgewQ6TynOcSj5F1bSU23B7z0p1iqK0PPHIU62xY1iNJD33WGA==" + "resolved" "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "hyphenate-style-name" "^1.0.3" + "jss" "10.7.1" + +"jss-plugin-default-unit@^10.5.1": + "integrity" "sha512-tW+dfYVNARBQb/ONzBwd8uyImigyzMiAEDai+AbH5rcHg5h3TtqhAkxx06iuZiT/dZUiFdSKlbe3q9jZGAPIwA==" + "resolved" "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.7.1" + +"jss-plugin-global@^10.5.1": + "integrity" "sha512-FbxCnu44IkK/bw8X3CwZKmcAnJqjAb9LujlAc/aP0bMSdVa3/MugKQRyeQSu00uGL44feJJDoeXXiHOakBr/Zw==" + "resolved" "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.7.1" + +"jss-plugin-nested@^10.5.1": + "integrity" "sha512-RNbICk7FlYKaJyv9tkMl7s6FFfeLA3ubNIFKvPqaWtADK0KUaPsPXVYBkAu4x1ItgsWx67xvReMrkcKA0jSXfA==" + "resolved" "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.7.1" + "tiny-warning" "^1.0.2" + +"jss-plugin-props-sort@^10.5.1": + "integrity" "sha512-eyd5FhA+J0QrpqXxO7YNF/HMSXXl4pB0EmUdY4vSJI4QG22F59vQ6AHtP6fSwhmBdQ98Qd9gjfO+RMxcE39P1A==" + "resolved" "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.7.1" + +"jss-plugin-rule-value-function@^10.5.1": + "integrity" "sha512-fGAAImlbaHD3fXAHI3ooX6aRESOl5iBt3LjpVjxs9II5u9tzam7pqFUmgTcrip9VpRqYHn8J3gA7kCtm8xKwHg==" + "resolved" "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.7.1" + "tiny-warning" "^1.0.2" + +"jss-plugin-vendor-prefixer@^10.5.1": + "integrity" "sha512-1UHFmBn7hZNsHXTkLLOL8abRl8vi+D1EVzWD4WmLFj55vawHZfnH1oEz6TUf5Y61XHv0smdHabdXds6BgOXe3A==" + "resolved" "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.7.1.tgz" + "version" "10.7.1" + dependencies: + "@babel/runtime" "^7.3.1" + "css-vendor" "^2.0.8" + "jss" "10.7.1" + +"jss@^10.5.1", "jss@10.7.1": + "integrity" "sha512-5QN8JSVZR6cxpZNeGfzIjqPEP+ZJwJJfZbXmeABNdxiExyO+eJJDy6WDtqTf8SDKnbL5kZllEpAP71E/Lt7PXg==" + "resolved" "https://registry.npmjs.org/jss/-/jss-10.7.1.tgz" + "version" "10.7.1" + 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.1.0": + "integrity" "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==" + "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz" + "version" "3.2.0" + dependencies: + "array-includes" "^3.1.2" + "object.assign" "^4.1.2" + +"just-debounce@^1.0.0": + "integrity" "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==" + "resolved" "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz" + "version" "1.1.0" + +"keycode@^2.1.7": + "integrity" "sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=" + "resolved" "https://registry.npmjs.org/keycode/-/keycode-2.2.0.tgz" + "version" "2.2.0" + +"killable@^1.0.1": + "integrity" "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + "resolved" "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz" + "version" "1.0.1" + +"kind-of@^3.0.2": + "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + "version" "3.2.2" + dependencies: + "is-buffer" "^1.1.5" + +"kind-of@^3.0.3": + "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + "version" "3.2.2" + dependencies: + "is-buffer" "^1.1.5" + +"kind-of@^3.2.0": + "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + "version" "3.2.2" + dependencies: + "is-buffer" "^1.1.5" + +"kind-of@^4.0.0": + "integrity" "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "is-buffer" "^1.1.5" + +"kind-of@^5.0.0": + "integrity" "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" + "version" "5.1.0" + +"kind-of@^5.0.2": + "integrity" "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" + "version" "5.1.0" + +"kind-of@^6.0.0", "kind-of@^6.0.2": + "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + "version" "6.0.3" + +"kleur@^3.0.3": + "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + "resolved" "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + "version" "3.0.3" + +"klona@^2.0.4": + "integrity" "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==" + "resolved" "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz" + "version" "2.0.4" + +"language-subtag-registry@~0.3.2": + "integrity" "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "resolved" "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz" + "version" "0.3.21" + +"language-tags@^1.0.5": + "integrity" "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=" + "resolved" "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "language-subtag-registry" "~0.3.2" + +"last-call-webpack-plugin@^3.0.0": + "integrity" "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==" + "resolved" "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "lodash" "^4.17.5" + "webpack-sources" "^1.1.0" + +"last-run@^1.1.0": + "integrity" "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=" + "resolved" "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "default-resolution" "^2.0.0" + "es6-weak-map" "^2.0.1" + +"lazystream@^1.0.0": + "integrity" "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=" + "resolved" "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "readable-stream" "^2.0.5" + +"lcid@^1.0.0": + "integrity" "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=" + "resolved" "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "invert-kv" "^1.0.0" + +"lead@^1.0.0": + "integrity" "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=" + "resolved" "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "flush-write-stream" "^1.0.2" + +"leven@^3.1.0": + "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + "resolved" "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" + "version" "3.1.0" + +"levn@^0.4.1": + "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" + "version" "0.4.1" + dependencies: + "prelude-ls" "^1.2.1" + "type-check" "~0.4.0" + +"levn@~0.3.0": + "integrity" "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" + "resolved" "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "prelude-ls" "~1.1.2" + "type-check" "~0.3.2" + +"liftoff@^3.1.0": + "integrity" "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==" + "resolved" "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "extend" "^3.0.0" + "findup-sync" "^3.0.0" + "fined" "^1.0.1" + "flagged-respawn" "^1.0.0" + "is-plain-object" "^2.0.4" + "object.map" "^1.0.0" + "rechoir" "^0.6.2" + "resolve" "^1.1.7" + +"lines-and-columns@^1.1.6": + "integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" + "version" "1.1.6" + +"load-json-file@^1.0.0": + "integrity" "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=" + "resolved" "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "graceful-fs" "^4.1.2" + "parse-json" "^2.2.0" + "pify" "^2.0.0" + "pinkie-promise" "^2.0.0" + "strip-bom" "^2.0.0" + +"load-json-file@^4.0.0": + "integrity" "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" + "resolved" "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "graceful-fs" "^4.1.2" + "parse-json" "^4.0.0" + "pify" "^3.0.0" + "strip-bom" "^3.0.0" + +"loader-runner@^2.4.0": + "integrity" "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + "resolved" "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz" + "version" "2.4.0" + +"loader-utils@^1.1.0": + "integrity" "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^1.0.1" + +"loader-utils@^1.2.3": + "integrity" "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^1.0.1" + +"loader-utils@^1.4.0": + "integrity" "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^1.0.1" + +"loader-utils@^2.0.0", "loader-utils@2.0.0": + "integrity" "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^2.1.2" + +"loader-utils@1.2.3": + "integrity" "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz" + "version" "1.2.3" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^2.0.0" + "json5" "^1.0.1" + +"locate-path@^2.0.0": + "integrity" "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "p-locate" "^2.0.0" + "path-exists" "^3.0.0" + +"locate-path@^3.0.0": + "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "p-locate" "^3.0.0" + "path-exists" "^3.0.0" + +"locate-path@^5.0.0": + "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "p-locate" "^4.1.0" + +"lodash._reinterpolate@^3.0.0": + "integrity" "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + "resolved" "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" + "version" "3.0.0" + +"lodash.assignwith@^4.2.0": + "integrity" "sha1-EnqX8CrcQXUalU0ksN4X4QDgOOs=" + "resolved" "https://registry.npmjs.org/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz" + "version" "4.2.0" + +"lodash.clonedeep@^4.5.0": + "integrity" "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" + "resolved" "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz" + "version" "4.5.0" + +"lodash.debounce@^4.0.8": + "integrity" "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" + "version" "4.0.8" + +"lodash.find@^4.6.0": + "integrity" "sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=" + "resolved" "https://registry.npmjs.org/lodash.find/-/lodash.find-4.6.0.tgz" + "version" "4.6.0" + +"lodash.get@^4.4.2": + "integrity" "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + "resolved" "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz" + "version" "4.4.2" + +"lodash.isequal@^4.5.0": + "integrity" "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + "resolved" "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz" + "version" "4.5.0" + +"lodash.isundefined@^3.0.1": + "integrity" "sha1-I+89lTVWUgOmbO/VuDD4SJEa+0g=" + "resolved" "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz" + "version" "3.0.1" + +"lodash.memoize@^4.1.2": + "integrity" "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + "resolved" "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" + "version" "4.1.2" + +"lodash.merge@^4.6.2": + "integrity" "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + "resolved" "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" + "version" "4.6.2" + +"lodash.orderby@^4.6.0": + "integrity" "sha1-5pfwTOXXhSL1TZM4syuBozk+TrM=" + "resolved" "https://registry.npmjs.org/lodash.orderby/-/lodash.orderby-4.6.0.tgz" + "version" "4.6.0" + +"lodash.template@^4.5.0": + "integrity" "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" + "resolved" "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "lodash._reinterpolate" "^3.0.0" + "lodash.templatesettings" "^4.0.0" + +"lodash.templatesettings@^4.0.0": + "integrity" "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" + "resolved" "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "lodash._reinterpolate" "^3.0.0" + +"lodash.throttle@^4.0.1": + "integrity" "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + "resolved" "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz" + "version" "4.1.1" + +"lodash.truncate@^4.4.2": + "integrity" "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" + "resolved" "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz" + "version" "4.4.2" + +"lodash.uniq@^4.5.0": + "integrity" "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" + "version" "4.5.0" + +"lodash@^4.17.11", "lodash@^4.17.14", "lodash@^4.17.15", "lodash@^4.17.19", "lodash@^4.17.20", "lodash@^4.17.21", "lodash@^4.17.5", "lodash@^4.7.0", "lodash@>=3.5 <5": + "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + "version" "4.17.21" + +"loglevel@^1.6.8": + "integrity" "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + "resolved" "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz" + "version" "1.7.1" + +"loose-envify@^1.0.0", "loose-envify@^1.1.0", "loose-envify@^1.2.0", "loose-envify@^1.3.1", "loose-envify@^1.4.0": + "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "js-tokens" "^3.0.0 || ^4.0.0" + +"lower-case@^2.0.2": + "integrity" "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + "resolved" "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "tslib" "^2.0.3" + +"lru-cache@^5.1.1": + "integrity" "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "yallist" "^3.0.2" + +"lru-cache@^6.0.0": + "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "yallist" "^4.0.0" + +"magic-string@^0.25.0", "magic-string@^0.25.7": + "integrity" "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==" + "resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz" + "version" "0.25.7" + dependencies: + "sourcemap-codec" "^1.4.4" + +"make-dir@^2.0.0": + "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "pify" "^4.0.1" + "semver" "^5.6.0" + +"make-dir@^3.0.0", "make-dir@^3.0.2": + "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "semver" "^6.0.0" + +"make-iterator@^1.0.0": + "integrity" "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==" + "resolved" "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "kind-of" "^6.0.2" + +"makeerror@1.0.x": + "integrity" "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=" + "resolved" "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz" + "version" "1.0.11" + dependencies: + "tmpl" "1.0.x" + +"map-cache@^0.2.0", "map-cache@^0.2.2": + "integrity" "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + "resolved" "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" + "version" "0.2.2" + +"map-visit@^1.0.0": + "integrity" "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" + "resolved" "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "object-visit" "^1.0.0" + +"matchdep@^2.0.0": + "integrity" "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=" + "resolved" "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "findup-sync" "^2.0.0" + "micromatch" "^3.0.4" + "resolve" "^1.4.0" + "stack-trace" "0.0.10" + +"materialui-grid@^1.0.0": + "integrity" "sha1-YKrOupB3/jBdc65ReKrhO9Hnjtg=" + "resolved" "https://registry.npmjs.org/materialui-grid/-/materialui-grid-1.0.0.tgz" + "version" "1.0.0" + +"md5.js@^1.3.4": + "integrity" "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==" + "resolved" "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz" + "version" "1.3.5" + dependencies: + "hash-base" "^3.0.0" + "inherits" "^2.0.1" + "safe-buffer" "^5.1.2" + +"mdn-data@2.0.14": + "integrity" "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" + "version" "2.0.14" + +"mdn-data@2.0.4": + "integrity" "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz" + "version" "2.0.4" + +"media-typer@0.3.0": + "integrity" "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + "resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" + "version" "0.3.0" + +"memoize-one@^5.0.0": + "integrity" "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + "resolved" "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz" + "version" "5.2.1" + +"memory-fs@^0.4.1": + "integrity" "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=" + "resolved" "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz" + "version" "0.4.1" + dependencies: + "errno" "^0.1.3" + "readable-stream" "^2.0.1" + +"memory-fs@^0.5.0": + "integrity" "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==" + "resolved" "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz" + "version" "0.5.0" + dependencies: + "errno" "^0.1.3" + "readable-stream" "^2.0.1" + +"merge-descriptors@1.0.1": + "integrity" "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + "resolved" "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" + "version" "1.0.1" + +"merge-stream@^2.0.0": + "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" + "version" "2.0.0" + +"merge2@^1.3.0": + "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + "version" "1.4.1" + +"methods@~1.1.2": + "integrity" "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + "resolved" "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" + "version" "1.1.2" + +"microevent.ts@~0.1.1": + "integrity" "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + "resolved" "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz" + "version" "0.1.1" + +"micromatch@^3.0.4", "micromatch@^3.1.10", "micromatch@^3.1.4": + "integrity" "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + "version" "3.1.10" + dependencies: + "arr-diff" "^4.0.0" + "array-unique" "^0.3.2" + "braces" "^2.3.1" + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "extglob" "^2.0.4" + "fragment-cache" "^0.2.1" + "kind-of" "^6.0.2" + "nanomatch" "^1.2.9" + "object.pick" "^1.3.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.2" + +"micromatch@^4.0.2": + "integrity" "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" + "version" "4.0.4" + dependencies: + "braces" "^3.0.1" + "picomatch" "^2.2.3" + +"micromatch@^4.0.4": + "integrity" "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" + "version" "4.0.4" + dependencies: + "braces" "^3.0.1" + "picomatch" "^2.2.3" + +"miller-rabin@^4.0.0": + "integrity" "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" + "resolved" "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "bn.js" "^4.0.0" + "brorand" "^1.0.1" + +"mime-db@>= 1.43.0 < 2", "mime-db@1.49.0": + "integrity" "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==" + "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz" + "version" "1.49.0" + +"mime-types@^2.1.12", "mime-types@^2.1.27", "mime-types@~2.1.17", "mime-types@~2.1.24": + "integrity" "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==" + "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz" + "version" "2.1.32" + dependencies: + "mime-db" "1.49.0" + +"mime@^2.4.4": + "integrity" "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" + "version" "2.5.2" + +"mime@1.6.0": + "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + "version" "1.6.0" + +"mimic-fn@^2.1.0": + "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + "version" "2.1.0" + +"mini-create-react-context@^0.4.0": + "integrity" "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==" + "resolved" "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz" + "version" "0.4.1" + dependencies: + "@babel/runtime" "^7.12.1" + "tiny-warning" "^1.0.3" + +"mini-css-extract-plugin@0.11.3": + "integrity" "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==" + "resolved" "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz" + "version" "0.11.3" + dependencies: + "loader-utils" "^1.1.0" + "normalize-url" "1.9.1" + "schema-utils" "^1.0.0" + "webpack-sources" "^1.1.0" + +"minimalistic-assert@^1.0.0", "minimalistic-assert@^1.0.1": + "integrity" "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + "resolved" "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" + "version" "1.0.1" + +"minimalistic-crypto-utils@^1.0.1": + "integrity" "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + "resolved" "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" + "version" "1.0.1" + +"minimatch@^3.0.4", "minimatch@3.0.4": + "integrity" "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "brace-expansion" "^1.1.7" + +"minimist@^1.1.1", "minimist@^1.2.0", "minimist@^1.2.5": + "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" + "version" "1.2.5" + +"minipass-collect@^1.0.2": + "integrity" "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + "resolved" "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "minipass" "^3.0.0" + +"minipass-flush@^1.0.5": + "integrity" "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + "resolved" "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "minipass" "^3.0.0" + +"minipass-pipeline@^1.2.2": + "integrity" "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + "resolved" "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" + "version" "1.2.4" + dependencies: + "minipass" "^3.0.0" + +"minipass@^3.0.0", "minipass@^3.1.1": + "integrity" "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==" + "resolved" "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "yallist" "^4.0.0" + +"minizlib@^2.1.1": + "integrity" "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + "resolved" "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "minipass" "^3.0.0" + "yallist" "^4.0.0" + +"mississippi@^3.0.0": + "integrity" "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==" + "resolved" "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "concat-stream" "^1.5.0" + "duplexify" "^3.4.2" + "end-of-stream" "^1.1.0" + "flush-write-stream" "^1.0.0" + "from2" "^2.1.0" + "parallel-transform" "^1.1.0" + "pump" "^3.0.0" + "pumpify" "^1.3.3" + "stream-each" "^1.1.0" + "through2" "^2.0.0" + +"mixin-deep@^1.2.0": + "integrity" "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + "resolved" "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "for-in" "^1.0.2" + "is-extendable" "^1.0.1" + +"mkdirp@^0.5.1", "mkdirp@^0.5.3", "mkdirp@^0.5.5", "mkdirp@~0.5.1": + "integrity" "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" + "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz" + "version" "0.5.5" + dependencies: + "minimist" "^1.2.5" + +"mkdirp@^1.0.3": + "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + "version" "1.0.4" + +"mkdirp@^1.0.4": + "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + "version" "1.0.4" + +"move-concurrently@^1.0.1": + "integrity" "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=" + "resolved" "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "aproba" "^1.1.1" + "copy-concurrently" "^1.0.0" + "fs-write-stream-atomic" "^1.0.8" + "mkdirp" "^0.5.1" + "rimraf" "^2.5.4" + "run-queue" "^1.0.3" + +"ms@^2.1.1": + "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + "version" "2.1.3" + +"ms@2.0.0": + "integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + "version" "2.0.0" + +"ms@2.1.1": + "integrity" "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" + "version" "2.1.1" + +"ms@2.1.2": + "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" + "version" "2.1.2" + +"mui-datatables@^3.7.8": + "integrity" "sha512-kk09SI5fvb95jjSqpDJbR9/C2cZSFGX1MeFT4IC2TVNpYwBFHhXzlcDaHGkkGlMCnMimPsHU+eWL7OPPCxfrRQ==" + "resolved" "https://registry.npmjs.org/mui-datatables/-/mui-datatables-3.7.8.tgz" + "version" "3.7.8" + dependencies: + "@babel/runtime-corejs3" "^7.12.1" + "clsx" "^1.1.1" + "lodash.assignwith" "^4.2.0" + "lodash.clonedeep" "^4.5.0" + "lodash.debounce" "^4.0.8" + "lodash.find" "^4.6.0" + "lodash.get" "^4.4.2" + "lodash.isequal" "^4.5.0" + "lodash.isundefined" "^3.0.1" + "lodash.memoize" "^4.1.2" + "lodash.merge" "^4.6.2" + "prop-types" "^15.7.2" + "react-dnd" "^11.1.3" + "react-dnd-html5-backend" "^11.1.3" + "react-sortable-tree" "^2.7.1" + "react-to-print" "^2.8.0" + +"multicast-dns-service-types@^1.1.0": + "integrity" "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + "resolved" "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz" + "version" "1.1.0" + +"multicast-dns@^6.0.1": + "integrity" "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==" + "resolved" "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz" + "version" "6.2.3" + dependencies: + "dns-packet" "^1.3.1" + "thunky" "^1.0.2" + +"mute-stdout@^1.0.0": + "integrity" "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==" + "resolved" "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz" + "version" "1.0.1" + +"nan@^2.12.1": + "integrity" "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" + "resolved" "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz" + "version" "2.15.0" + +"nanoid@^2.1.0": + "integrity" "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz" + "version" "2.1.11" + +"nanoid@^3.1.23": + "integrity" "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==" + "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz" + "version" "3.1.25" + +"nanomatch@^1.2.9": + "integrity" "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==" + "resolved" "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" + "version" "1.2.13" + dependencies: + "arr-diff" "^4.0.0" + "array-unique" "^0.3.2" + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "fragment-cache" "^0.2.1" + "is-windows" "^1.0.2" + "kind-of" "^6.0.2" + "object.pick" "^1.3.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.1" + +"native-url@^0.2.6": + "integrity" "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==" + "resolved" "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz" + "version" "0.2.6" + dependencies: + "querystring" "^0.2.0" + +"natural-compare@^1.4.0": + "integrity" "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" + "version" "1.4.0" + +"negotiator@0.6.2": + "integrity" "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz" + "version" "0.6.2" + +"neo-async@^2.5.0", "neo-async@^2.6.1", "neo-async@^2.6.2": + "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" + "version" "2.6.2" + +"next-tick@~1.0.0": + "integrity" "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "resolved" "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz" + "version" "1.0.0" + +"nice-try@^1.0.4": + "integrity" "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "resolved" "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" + "version" "1.0.5" + +"no-case@^3.0.4": + "integrity" "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + "resolved" "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "lower-case" "^2.0.2" + "tslib" "^2.0.3" + +"node-forge@^0.10.0": + "integrity" "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + "resolved" "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz" + "version" "0.10.0" + +"node-int64@^0.4.0": + "integrity" "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + "resolved" "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" + "version" "0.4.0" + +"node-libs-browser@^2.2.1": + "integrity" "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==" + "resolved" "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz" + "version" "2.2.1" + dependencies: + "assert" "^1.1.1" + "browserify-zlib" "^0.2.0" + "buffer" "^4.3.0" + "console-browserify" "^1.1.0" + "constants-browserify" "^1.0.0" + "crypto-browserify" "^3.11.0" + "domain-browser" "^1.1.1" + "events" "^3.0.0" + "https-browserify" "^1.0.0" + "os-browserify" "^0.3.0" + "path-browserify" "0.0.1" + "process" "^0.11.10" + "punycode" "^1.2.4" + "querystring-es3" "^0.2.0" + "readable-stream" "^2.3.3" + "stream-browserify" "^2.0.1" + "stream-http" "^2.7.2" + "string_decoder" "^1.0.0" + "timers-browserify" "^2.0.4" + "tty-browserify" "0.0.0" + "url" "^0.11.0" + "util" "^0.11.0" + "vm-browserify" "^1.0.1" + +"node-modules-regexp@^1.0.0": + "integrity" "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" + "resolved" "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz" + "version" "1.0.0" + +"node-notifier@^8.0.0": + "integrity" "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==" + "resolved" "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz" + "version" "8.0.2" + dependencies: + "growly" "^1.3.0" + "is-wsl" "^2.2.0" + "semver" "^7.3.2" + "shellwords" "^0.1.1" + "uuid" "^8.3.0" + "which" "^2.0.2" + +"node-releases@^1.1.61", "node-releases@^1.1.75": + "integrity" "sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==" + "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz" + "version" "1.1.75" + +"normalize-package-data@^2.3.2", "normalize-package-data@^2.5.0": + "integrity" "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + "resolved" "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" + "version" "2.5.0" + dependencies: + "hosted-git-info" "^2.1.4" + "resolve" "^1.10.0" + "semver" "2 || 3 || 4 || 5" + "validate-npm-package-license" "^3.0.1" + +"normalize-path@^2.1.1": + "integrity" "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" + "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "remove-trailing-separator" "^1.0.1" + +"normalize-path@^3.0.0", "normalize-path@~3.0.0": + "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + "version" "3.0.0" + +"normalize-range@^0.1.2": + "integrity" "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + "resolved" "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" + "version" "0.1.2" + +"normalize-url@^3.0.0": + "integrity" "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz" + "version" "3.3.0" + +"normalize-url@1.9.1": + "integrity" "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz" + "version" "1.9.1" + dependencies: + "object-assign" "^4.0.1" + "prepend-http" "^1.0.0" + "query-string" "^4.1.0" + "sort-keys" "^1.0.0" + +"now-and-later@^2.0.0": + "integrity" "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==" + "resolved" "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "once" "^1.3.2" + +"npm-run-path@^2.0.0": + "integrity" "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" + "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "path-key" "^2.0.0" + +"npm-run-path@^4.0.0": + "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "path-key" "^3.0.0" + +"nth-check@^1.0.2": + "integrity" "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==" + "resolved" "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "boolbase" "~1.0.0" + +"nth-check@^2.0.0": + "integrity" "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==" + "resolved" "https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "boolbase" "^1.0.0" + +"num2fraction@^1.2.2": + "integrity" "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + "resolved" "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" + "version" "1.2.2" + +"number-is-nan@^1.0.0": + "integrity" "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "resolved" "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz" + "version" "1.0.1" + +"nwsapi@^2.2.0": + "integrity" "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + "resolved" "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" + "version" "2.2.0" + +"object-assign@^4.0.1", "object-assign@^4.1.0", "object-assign@^4.1.1": + "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + "version" "4.1.1" + +"object-copy@^0.1.0": + "integrity" "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=" + "resolved" "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" + "version" "0.1.0" + dependencies: + "copy-descriptor" "^0.1.0" + "define-property" "^0.2.5" + "kind-of" "^3.0.3" + +"object-inspect@^1.11.0", "object-inspect@^1.9.0": + "integrity" "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz" + "version" "1.11.0" + +"object-is@^1.0.1": + "integrity" "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + "resolved" "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" + "version" "1.1.5" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + +"object-keys@^1.0.12", "object-keys@^1.1.1": + "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + "version" "1.1.1" + +"object-visit@^1.0.0": + "integrity" "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" + "resolved" "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "isobject" "^3.0.0" + +"object.assign@^4.0.4", "object.assign@^4.1.0", "object.assign@^4.1.2": + "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" + "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "has-symbols" "^1.0.1" + "object-keys" "^1.1.1" + +"object.defaults@^1.0.0", "object.defaults@^1.1.0": + "integrity" "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=" + "resolved" "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "array-each" "^1.0.1" + "array-slice" "^1.0.0" + "for-own" "^1.0.0" + "isobject" "^3.0.0" + +"object.entries@^1.1.0", "object.entries@^1.1.4": + "integrity" "sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==" + "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.4.tgz" + "version" "1.1.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.2" + +"object.fromentries@^2.0.4": + "integrity" "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==" + "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz" + "version" "2.0.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + "has" "^1.0.3" + +"object.getownpropertydescriptors@^2.0.3", "object.getownpropertydescriptors@^2.1.0": + "integrity" "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==" + "resolved" "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + +"object.map@^1.0.0": + "integrity" "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=" + "resolved" "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "for-own" "^1.0.0" + "make-iterator" "^1.0.0" + +"object.pick@^1.2.0", "object.pick@^1.3.0": + "integrity" "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" + "resolved" "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "isobject" "^3.0.1" + +"object.reduce@^1.0.0": + "integrity" "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=" + "resolved" "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "for-own" "^1.0.0" + "make-iterator" "^1.0.0" + +"object.values@^1.1.0", "object.values@^1.1.4": + "integrity" "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==" + "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz" + "version" "1.1.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.2" + +"obuf@^1.0.0", "obuf@^1.1.2": + "integrity" "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + "resolved" "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" + "version" "1.1.2" + +"on-finished@~2.3.0": + "integrity" "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" + "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "ee-first" "1.1.1" + +"on-headers@~1.0.2": + "integrity" "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "resolved" "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" + "version" "1.0.2" + +"once@^1.3.0", "once@^1.3.1", "once@^1.3.2", "once@^1.4.0": + "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" + "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "wrappy" "1" + +"onetime@^5.1.0": + "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + "version" "5.1.2" + dependencies: + "mimic-fn" "^2.1.0" + +"open@^7.0.2": + "integrity" "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + "resolved" "https://registry.npmjs.org/open/-/open-7.4.2.tgz" + "version" "7.4.2" + dependencies: + "is-docker" "^2.0.0" + "is-wsl" "^2.1.1" + +"opn@^5.5.0": + "integrity" "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==" + "resolved" "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "is-wsl" "^1.1.0" + +"optimize-css-assets-webpack-plugin@5.0.4": + "integrity" "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==" + "resolved" "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz" + "version" "5.0.4" + dependencies: + "cssnano" "^4.1.10" + "last-call-webpack-plugin" "^3.0.0" + +"optionator@^0.8.1": + "integrity" "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==" + "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" + "version" "0.8.3" + dependencies: + "deep-is" "~0.1.3" + "fast-levenshtein" "~2.0.6" + "levn" "~0.3.0" + "prelude-ls" "~1.1.2" + "type-check" "~0.3.2" + "word-wrap" "~1.2.3" + +"optionator@^0.9.1": + "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" + "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" + "version" "0.9.1" + dependencies: + "deep-is" "^0.1.3" + "fast-levenshtein" "^2.0.6" + "levn" "^0.4.1" + "prelude-ls" "^1.2.1" + "type-check" "^0.4.0" + "word-wrap" "^1.2.3" + +"ordered-read-streams@^1.0.0": + "integrity" "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=" + "resolved" "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "readable-stream" "^2.0.1" + +"original@^1.0.0": + "integrity" "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==" + "resolved" "https://registry.npmjs.org/original/-/original-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "url-parse" "^1.4.3" + +"os-browserify@^0.3.0": + "integrity" "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + "resolved" "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz" + "version" "0.3.0" + +"os-locale@^1.4.0": + "integrity" "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=" + "resolved" "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "lcid" "^1.0.0" + +"p-each-series@^2.1.0": + "integrity" "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" + "resolved" "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz" + "version" "2.2.0" + +"p-finally@^1.0.0": + "integrity" "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + "resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" + "version" "1.0.0" + +"p-limit@^1.1.0": + "integrity" "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "p-try" "^1.0.0" + +"p-limit@^2.0.0", "p-limit@^2.2.0": + "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "p-try" "^2.0.0" + +"p-limit@^3.0.2": + "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "yocto-queue" "^0.1.0" + +"p-locate@^2.0.0": + "integrity" "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "p-limit" "^1.1.0" + +"p-locate@^3.0.0": + "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "p-limit" "^2.0.0" + +"p-locate@^4.1.0": + "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "p-limit" "^2.2.0" + +"p-map@^2.0.0": + "integrity" "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + "resolved" "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz" + "version" "2.1.0" + +"p-map@^4.0.0": + "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "aggregate-error" "^3.0.0" + +"p-retry@^3.0.1": + "integrity" "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==" + "resolved" "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "retry" "^0.12.0" + +"p-try@^1.0.0": + "integrity" "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + "resolved" "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" + "version" "1.0.0" + +"p-try@^2.0.0": + "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" + "version" "2.2.0" + +"pako@~1.0.5": + "integrity" "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "resolved" "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" + "version" "1.0.11" + +"parallel-transform@^1.1.0": + "integrity" "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==" + "resolved" "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "cyclist" "^1.0.1" + "inherits" "^2.0.3" + "readable-stream" "^2.1.5" + +"param-case@^3.0.3": + "integrity" "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + "resolved" "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "dot-case" "^3.0.4" + "tslib" "^2.0.3" + +"parent-module@^1.0.0": + "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "callsites" "^3.0.0" + +"parse-asn1@^5.0.0", "parse-asn1@^5.1.5": + "integrity" "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==" + "resolved" "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz" + "version" "5.1.6" + dependencies: + "asn1.js" "^5.2.0" + "browserify-aes" "^1.0.0" + "evp_bytestokey" "^1.0.0" + "pbkdf2" "^3.0.3" + "safe-buffer" "^5.1.1" + +"parse-filepath@^1.0.1": + "integrity" "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=" + "resolved" "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "is-absolute" "^1.0.0" + "map-cache" "^0.2.0" + "path-root" "^0.1.1" + +"parse-json@^2.2.0": + "integrity" "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "error-ex" "^1.2.0" + +"parse-json@^4.0.0": + "integrity" "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "error-ex" "^1.3.1" + "json-parse-better-errors" "^1.0.1" + +"parse-json@^5.0.0": + "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/code-frame" "^7.0.0" + "error-ex" "^1.3.1" + "json-parse-even-better-errors" "^2.3.0" + "lines-and-columns" "^1.1.6" + +"parse-node-version@^1.0.0": + "integrity" "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + "resolved" "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz" + "version" "1.0.1" + +"parse-passwd@^1.0.0": + "integrity" "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" + "resolved" "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz" + "version" "1.0.0" + +"parse5@6.0.1": + "integrity" "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "resolved" "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" + "version" "6.0.1" + +"parseurl@~1.3.2", "parseurl@~1.3.3": + "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "resolved" "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" + "version" "1.3.3" + +"pascal-case@^3.1.2": + "integrity" "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + "resolved" "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "no-case" "^3.0.4" + "tslib" "^2.0.3" + +"pascalcase@^0.1.1": + "integrity" "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + "resolved" "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz" + "version" "0.1.1" + +"path-browserify@0.0.1": + "integrity" "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + "resolved" "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz" + "version" "0.0.1" + +"path-dirname@^1.0.0": + "integrity" "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + "resolved" "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz" + "version" "1.0.2" + +"path-exists@^2.0.0": + "integrity" "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "pinkie-promise" "^2.0.0" + +"path-exists@^3.0.0": + "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" + "version" "3.0.0" + +"path-exists@^4.0.0": + "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + "version" "4.0.0" + +"path-is-absolute@^1.0.0": + "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + "version" "1.0.1" + +"path-is-inside@^1.0.2": + "integrity" "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "resolved" "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" + "version" "1.0.2" + +"path-key@^2.0.0", "path-key@^2.0.1": + "integrity" "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" + "version" "2.0.1" + +"path-key@^3.0.0": + "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + "version" "3.1.1" + +"path-key@^3.1.0": + "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + "version" "3.1.1" + +"path-parse@^1.0.6": + "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + "version" "1.0.7" + +"path-root-regex@^0.1.0": + "integrity" "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" + "resolved" "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz" + "version" "0.1.2" + +"path-root@^0.1.1": + "integrity" "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=" + "resolved" "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz" + "version" "0.1.1" + dependencies: + "path-root-regex" "^0.1.0" + +"path-to-regexp@^1.7.0": + "integrity" "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz" + "version" "1.8.0" + dependencies: + "isarray" "0.0.1" + +"path-to-regexp@0.1.7": + "integrity" "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" + "version" "0.1.7" + +"path-type@^1.0.0": + "integrity" "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=" + "resolved" "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "graceful-fs" "^4.1.2" + "pify" "^2.0.0" + "pinkie-promise" "^2.0.0" + +"path-type@^3.0.0": + "integrity" "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + "resolved" "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "pify" "^3.0.0" + +"path-type@^4.0.0": + "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + "version" "4.0.0" + +"pbkdf2@^3.0.3": + "integrity" "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==" + "resolved" "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "create-hash" "^1.1.2" + "create-hmac" "^1.1.4" + "ripemd160" "^2.0.1" + "safe-buffer" "^5.0.1" + "sha.js" "^2.4.8" + +"perfect-scrollbar@1.5.1": + "integrity" "sha512-MrSImINnIh3Tm1hdPT6bji6fmIeRorVEegQvyUnhqko2hDGTHhmjPefHXfxG/Jb8xVbfCwgmUIlIajERGXjVXQ==" + "resolved" "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.1.tgz" + "version" "1.5.1" + +"performance-now@^2.1.0": + "integrity" "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "resolved" "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" + "version" "2.1.0" + +"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.2.2", "picomatch@^2.2.3": + "integrity" "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" + "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz" + "version" "2.3.0" + +"pify@^2.0.0": + "integrity" "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "resolved" "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + "version" "2.3.0" + +"pify@^3.0.0": + "integrity" "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "resolved" "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz" + "version" "3.0.0" + +"pify@^4.0.1": + "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" + "version" "4.0.1" + +"pinkie-promise@^2.0.0": + "integrity" "sha1-ITXW36ejWMBprJsXh3YogihFD/o=" + "resolved" "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "pinkie" "^2.0.0" + +"pinkie@^2.0.0": + "integrity" "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "resolved" "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" + "version" "2.0.4" + +"pirates@^4.0.1": + "integrity" "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==" + "resolved" "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "node-modules-regexp" "^1.0.0" + +"pkg-dir@^2.0.0": + "integrity" "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "find-up" "^2.1.0" + +"pkg-dir@^3.0.0": + "integrity" "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "find-up" "^3.0.0" + +"pkg-dir@^4.1.0": + "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "find-up" "^4.0.0" + +"pkg-dir@^4.2.0": + "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "find-up" "^4.0.0" + +"pkg-up@^2.0.0": + "integrity" "sha1-yBmscoBZpGHKscOImivjxJoATX8=" + "resolved" "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "find-up" "^2.1.0" + +"pkg-up@3.1.0": + "integrity" "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + "resolved" "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "find-up" "^3.0.0" + +"plugin-error@^1.0.1": + "integrity" "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==" + "resolved" "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "ansi-colors" "^1.0.1" + "arr-diff" "^4.0.0" + "arr-union" "^3.1.0" + "extend-shallow" "^3.0.2" + +"pnp-webpack-plugin@1.6.4": + "integrity" "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==" + "resolved" "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz" + "version" "1.6.4" + dependencies: + "ts-pnp" "^1.1.6" + +"popper.js@1.16.1-lts": + "integrity" "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" + "resolved" "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz" + "version" "1.16.1-lts" + +"portfinder@^1.0.26": + "integrity" "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==" + "resolved" "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz" + "version" "1.0.28" + dependencies: + "async" "^2.6.2" + "debug" "^3.1.1" + "mkdirp" "^0.5.5" + +"posix-character-classes@^0.1.0": + "integrity" "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + "resolved" "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz" + "version" "0.1.1" + +"postcss-attribute-case-insensitive@^4.0.1": + "integrity" "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==" + "resolved" "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^6.0.2" + +"postcss-browser-comments@^3.0.0": + "integrity" "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==" + "resolved" "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7" + +"postcss-calc@^7.0.1": + "integrity" "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==" + "resolved" "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz" + "version" "7.0.5" + dependencies: + "postcss" "^7.0.27" + "postcss-selector-parser" "^6.0.2" + "postcss-value-parser" "^4.0.2" + +"postcss-color-functional-notation@^2.0.1": + "integrity" "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==" + "resolved" "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-color-gray@^5.0.0": + "integrity" "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==" + "resolved" "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "@csstools/convert-colors" "^1.4.0" + "postcss" "^7.0.5" + "postcss-values-parser" "^2.0.0" + +"postcss-color-hex-alpha@^5.0.3": + "integrity" "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==" + "resolved" "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz" + "version" "5.0.3" + dependencies: + "postcss" "^7.0.14" + "postcss-values-parser" "^2.0.1" + +"postcss-color-mod-function@^3.0.3": + "integrity" "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==" + "resolved" "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "@csstools/convert-colors" "^1.4.0" + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-color-rebeccapurple@^4.0.1": + "integrity" "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==" + "resolved" "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-colormin@^4.0.3": + "integrity" "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==" + "resolved" "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "color" "^3.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-convert-values@^4.0.1": + "integrity" "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==" + "resolved" "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-custom-media@^7.0.8": + "integrity" "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==" + "resolved" "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz" + "version" "7.0.8" + dependencies: + "postcss" "^7.0.14" + +"postcss-custom-properties@^8.0.11": + "integrity" "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==" + "resolved" "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz" + "version" "8.0.11" + dependencies: + "postcss" "^7.0.17" + "postcss-values-parser" "^2.0.1" + +"postcss-custom-selectors@^5.1.2": + "integrity" "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==" + "resolved" "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz" + "version" "5.1.2" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^5.0.0-rc.3" + +"postcss-dir-pseudo-class@^5.0.0": + "integrity" "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==" + "resolved" "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^5.0.0-rc.3" + +"postcss-discard-comments@^4.0.2": + "integrity" "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==" + "resolved" "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + +"postcss-discard-duplicates@^4.0.2": + "integrity" "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==" + "resolved" "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + +"postcss-discard-empty@^4.0.1": + "integrity" "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==" + "resolved" "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"postcss-discard-overridden@^4.0.1": + "integrity" "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==" + "resolved" "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"postcss-double-position-gradients@^1.0.0": + "integrity" "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==" + "resolved" "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "postcss" "^7.0.5" + "postcss-values-parser" "^2.0.0" + +"postcss-env-function@^2.0.2": + "integrity" "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==" + "resolved" "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-flexbugs-fixes@4.2.1": + "integrity" "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==" + "resolved" "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz" + "version" "4.2.1" + dependencies: + "postcss" "^7.0.26" + +"postcss-focus-visible@^4.0.0": + "integrity" "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==" + "resolved" "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-focus-within@^3.0.0": + "integrity" "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==" + "resolved" "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-font-variant@^4.0.0": + "integrity" "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==" + "resolved" "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.2" + +"postcss-gap-properties@^2.0.0": + "integrity" "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==" + "resolved" "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-image-set-function@^3.0.1": + "integrity" "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==" + "resolved" "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-initial@^3.0.0": + "integrity" "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==" + "resolved" "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "postcss" "^7.0.2" + +"postcss-lab-function@^2.0.1": + "integrity" "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==" + "resolved" "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "@csstools/convert-colors" "^1.4.0" + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-load-config@^2.0.0": + "integrity" "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==" + "resolved" "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "cosmiconfig" "^5.0.0" + "import-cwd" "^2.0.0" + +"postcss-loader@3.0.0": + "integrity" "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==" + "resolved" "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "loader-utils" "^1.1.0" + "postcss" "^7.0.0" + "postcss-load-config" "^2.0.0" + "schema-utils" "^1.0.0" + +"postcss-logical@^3.0.0": + "integrity" "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==" + "resolved" "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-media-minmax@^4.0.0": + "integrity" "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==" + "resolved" "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-merge-longhand@^4.0.11": + "integrity" "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==" + "resolved" "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz" + "version" "4.0.11" + dependencies: + "css-color-names" "0.0.4" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + "stylehacks" "^4.0.0" + +"postcss-merge-rules@^4.0.3": + "integrity" "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==" + "resolved" "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "caniuse-api" "^3.0.0" + "cssnano-util-same-parent" "^4.0.0" + "postcss" "^7.0.0" + "postcss-selector-parser" "^3.0.0" + "vendors" "^1.0.0" + +"postcss-minify-font-values@^4.0.2": + "integrity" "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==" + "resolved" "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-minify-gradients@^4.0.2": + "integrity" "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==" + "resolved" "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "is-color-stop" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-minify-params@^4.0.2": + "integrity" "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==" + "resolved" "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "alphanum-sort" "^1.0.0" + "browserslist" "^4.0.0" + "cssnano-util-get-arguments" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + "uniqs" "^2.0.0" + +"postcss-minify-selectors@^4.0.2": + "integrity" "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==" + "resolved" "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "alphanum-sort" "^1.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-selector-parser" "^3.0.0" + +"postcss-modules-extract-imports@^2.0.0": + "integrity" "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==" + "resolved" "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.5" + +"postcss-modules-local-by-default@^3.0.3": + "integrity" "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==" + "resolved" "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "icss-utils" "^4.1.1" + "postcss" "^7.0.32" + "postcss-selector-parser" "^6.0.2" + "postcss-value-parser" "^4.1.0" + +"postcss-modules-scope@^2.2.0": + "integrity" "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==" + "resolved" "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "postcss" "^7.0.6" + "postcss-selector-parser" "^6.0.0" + +"postcss-modules-values@^3.0.0": + "integrity" "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==" + "resolved" "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "icss-utils" "^4.0.0" + "postcss" "^7.0.6" + +"postcss-nesting@^7.0.0": + "integrity" "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==" + "resolved" "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "postcss" "^7.0.2" + +"postcss-normalize-charset@^4.0.1": + "integrity" "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==" + "resolved" "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"postcss-normalize-display-values@^4.0.2": + "integrity" "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==" + "resolved" "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-match" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-positions@^4.0.2": + "integrity" "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-repeat-style@^4.0.2": + "integrity" "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==" + "resolved" "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "cssnano-util-get-match" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-string@^4.0.2": + "integrity" "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-timing-functions@^4.0.2": + "integrity" "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==" + "resolved" "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-match" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-unicode@^4.0.1": + "integrity" "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==" + "resolved" "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "browserslist" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-url@^4.0.1": + "integrity" "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "is-absolute-url" "^2.0.0" + "normalize-url" "^3.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-whitespace@^4.0.2": + "integrity" "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize@8.0.1": + "integrity" "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==" + "resolved" "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz" + "version" "8.0.1" + dependencies: + "@csstools/normalize.css" "^10.1.0" + "browserslist" "^4.6.2" + "postcss" "^7.0.17" + "postcss-browser-comments" "^3.0.0" + "sanitize.css" "^10.0.0" + +"postcss-ordered-values@^4.1.2": + "integrity" "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==" + "resolved" "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-overflow-shorthand@^2.0.0": + "integrity" "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==" + "resolved" "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-page-break@^2.0.0": + "integrity" "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==" + "resolved" "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-place@^4.0.1": + "integrity" "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==" + "resolved" "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-preset-env@6.7.0": + "integrity" "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==" + "resolved" "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz" + "version" "6.7.0" + dependencies: + "autoprefixer" "^9.6.1" + "browserslist" "^4.6.4" + "caniuse-lite" "^1.0.30000981" + "css-blank-pseudo" "^0.1.4" + "css-has-pseudo" "^0.10.0" + "css-prefers-color-scheme" "^3.1.1" + "cssdb" "^4.4.0" + "postcss" "^7.0.17" + "postcss-attribute-case-insensitive" "^4.0.1" + "postcss-color-functional-notation" "^2.0.1" + "postcss-color-gray" "^5.0.0" + "postcss-color-hex-alpha" "^5.0.3" + "postcss-color-mod-function" "^3.0.3" + "postcss-color-rebeccapurple" "^4.0.1" + "postcss-custom-media" "^7.0.8" + "postcss-custom-properties" "^8.0.11" + "postcss-custom-selectors" "^5.1.2" + "postcss-dir-pseudo-class" "^5.0.0" + "postcss-double-position-gradients" "^1.0.0" + "postcss-env-function" "^2.0.2" + "postcss-focus-visible" "^4.0.0" + "postcss-focus-within" "^3.0.0" + "postcss-font-variant" "^4.0.0" + "postcss-gap-properties" "^2.0.0" + "postcss-image-set-function" "^3.0.1" + "postcss-initial" "^3.0.0" + "postcss-lab-function" "^2.0.1" + "postcss-logical" "^3.0.0" + "postcss-media-minmax" "^4.0.0" + "postcss-nesting" "^7.0.0" + "postcss-overflow-shorthand" "^2.0.0" + "postcss-page-break" "^2.0.0" + "postcss-place" "^4.0.1" + "postcss-pseudo-class-any-link" "^6.0.0" + "postcss-replace-overflow-wrap" "^3.0.0" + "postcss-selector-matches" "^4.0.0" + "postcss-selector-not" "^4.0.0" + +"postcss-pseudo-class-any-link@^6.0.0": + "integrity" "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==" + "resolved" "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^5.0.0-rc.3" + +"postcss-reduce-initial@^4.0.3": + "integrity" "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==" + "resolved" "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "caniuse-api" "^3.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + +"postcss-reduce-transforms@^4.0.2": + "integrity" "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==" + "resolved" "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-match" "^4.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-replace-overflow-wrap@^3.0.0": + "integrity" "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==" + "resolved" "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-safe-parser@5.0.2": + "integrity" "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==" + "resolved" "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz" + "version" "5.0.2" + dependencies: + "postcss" "^8.1.0" + +"postcss-selector-matches@^4.0.0": + "integrity" "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==" + "resolved" "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "balanced-match" "^1.0.0" + "postcss" "^7.0.2" + +"postcss-selector-not@^4.0.0": + "integrity" "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==" + "resolved" "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "balanced-match" "^1.0.0" + "postcss" "^7.0.2" + +"postcss-selector-parser@^3.0.0": + "integrity" "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "dot-prop" "^5.2.0" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + +"postcss-selector-parser@^5.0.0-rc.3", "postcss-selector-parser@^5.0.0-rc.4": + "integrity" "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "cssesc" "^2.0.0" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + +"postcss-selector-parser@^6.0.0": + "integrity" "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz" + "version" "6.0.6" + dependencies: + "cssesc" "^3.0.0" + "util-deprecate" "^1.0.2" + +"postcss-selector-parser@^6.0.2": + "integrity" "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz" + "version" "6.0.6" + dependencies: + "cssesc" "^3.0.0" + "util-deprecate" "^1.0.2" + +"postcss-svgo@^4.0.3": + "integrity" "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==" + "resolved" "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + "svgo" "^1.0.0" + +"postcss-unique-selectors@^4.0.1": + "integrity" "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==" + "resolved" "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "alphanum-sort" "^1.0.0" + "postcss" "^7.0.0" + "uniqs" "^2.0.0" + +"postcss-value-parser@^3.0.0": + "integrity" "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz" + "version" "3.3.1" + +"postcss-value-parser@^4.0.2": + "integrity" "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz" + "version" "4.1.0" + +"postcss-value-parser@^4.1.0": + "integrity" "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz" + "version" "4.1.0" + +"postcss-values-parser@^2.0.0", "postcss-values-parser@^2.0.1": + "integrity" "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==" + "resolved" "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "flatten" "^1.0.2" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + +"postcss@^7", "postcss@^7.0.0", "postcss@^7.0.1", "postcss@^7.0.14", "postcss@^7.0.17", "postcss@^7.0.2", "postcss@^7.0.26", "postcss@^7.0.27", "postcss@^7.0.32", "postcss@^7.0.5", "postcss@^7.0.6", "postcss@7.0.36": + "integrity" "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz" + "version" "7.0.36" + dependencies: + "chalk" "^2.4.2" + "source-map" "^0.6.1" + "supports-color" "^6.1.0" + +"postcss@^8.1.0": + "integrity" "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz" + "version" "8.3.6" + dependencies: + "colorette" "^1.2.2" + "nanoid" "^3.1.23" + "source-map-js" "^0.6.2" + +"prelude-ls@^1.2.1": + "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" + "version" "1.2.1" + +"prelude-ls@~1.1.2": + "integrity" "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" + "version" "1.1.2" + +"prepend-http@^1.0.0": + "integrity" "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + "resolved" "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz" + "version" "1.0.4" + +"prettier-linter-helpers@^1.0.0": + "integrity" "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==" + "resolved" "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "fast-diff" "^1.1.2" + +"prettier@>=1.13.0", "prettier@2.2.1": + "integrity" "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==" + "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz" + "version" "2.2.1" + +"pretty-bytes@^5.3.0": + "integrity" "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + "resolved" "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" + "version" "5.6.0" + +"pretty-error@^2.1.1": + "integrity" "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==" + "resolved" "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "lodash" "^4.17.20" + "renderkid" "^2.0.4" + +"pretty-format@^26.6.0", "pretty-format@^26.6.2": + "integrity" "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==" + "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "ansi-regex" "^5.0.0" + "ansi-styles" "^4.0.0" + "react-is" "^17.0.1" + +"pretty-hrtime@^1.0.0": + "integrity" "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" + "resolved" "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz" + "version" "1.0.3" + +"process-nextick-args@^2.0.0", "process-nextick-args@~2.0.0": + "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + "version" "2.0.1" + +"process@^0.11.10": + "integrity" "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + "resolved" "https://registry.npmjs.org/process/-/process-0.11.10.tgz" + "version" "0.11.10" + +"progress@^2.0.0": + "integrity" "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + "resolved" "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" + "version" "2.0.3" + +"promise-inflight@^1.0.1": + "integrity" "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + "resolved" "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" + "version" "1.0.1" + +"promise@^8.1.0": + "integrity" "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==" + "resolved" "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz" + "version" "8.1.0" + dependencies: + "asap" "~2.0.6" + +"prompts@^2.0.1": + "integrity" "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==" + "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz" + "version" "2.4.1" + dependencies: + "kleur" "^3.0.3" + "sisteransi" "^1.0.5" + +"prompts@2.4.0": + "integrity" "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==" + "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz" + "version" "2.4.0" + dependencies: + "kleur" "^3.0.3" + "sisteransi" "^1.0.5" + +"prop-types@^15.0.0", "prop-types@^15.5.4", "prop-types@^15.5.8", "prop-types@^15.5.9", "prop-types@^15.6.0", "prop-types@^15.6.1", "prop-types@^15.6.2", "prop-types@^15.7.2", "prop-types@15.7.2": + "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==" + "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" + "version" "15.7.2" + dependencies: + "loose-envify" "^1.4.0" + "object-assign" "^4.1.1" + "react-is" "^16.8.1" + +"proxy-addr@~2.0.5": + "integrity" "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + "resolved" "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" + "version" "2.0.7" + dependencies: + "forwarded" "0.2.0" + "ipaddr.js" "1.9.1" + +"prr@~1.0.1": + "integrity" "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + "resolved" "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" + "version" "1.0.1" + +"psl@^1.1.33": + "integrity" "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "resolved" "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" + "version" "1.8.0" + +"public-encrypt@^4.0.0": + "integrity" "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==" + "resolved" "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "bn.js" "^4.1.0" + "browserify-rsa" "^4.0.0" + "create-hash" "^1.1.0" + "parse-asn1" "^5.0.0" + "randombytes" "^2.0.1" + "safe-buffer" "^5.1.2" + +"pump@^2.0.0": + "integrity" "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==" + "resolved" "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "end-of-stream" "^1.1.0" + "once" "^1.3.1" + +"pump@^3.0.0": + "integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + "resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "end-of-stream" "^1.1.0" + "once" "^1.3.1" + +"pumpify@^1.3.3", "pumpify@^1.3.5": + "integrity" "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==" + "resolved" "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz" + "version" "1.5.1" + dependencies: + "duplexify" "^3.6.0" + "inherits" "^2.0.3" + "pump" "^2.0.0" + +"punycode@^1.2.4": + "integrity" "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" + "version" "1.4.1" + +"punycode@^2.1.0", "punycode@^2.1.1": + "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" + "version" "2.1.1" + +"punycode@1.3.2": + "integrity" "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" + "version" "1.3.2" + +"q@^1.1.2": + "integrity" "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + "resolved" "https://registry.npmjs.org/q/-/q-1.5.1.tgz" + "version" "1.5.1" + +"qs@6.7.0": + "integrity" "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + "resolved" "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz" + "version" "6.7.0" + +"query-string@^4.1.0": + "integrity" "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=" + "resolved" "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz" + "version" "4.3.4" + dependencies: + "object-assign" "^4.1.0" + "strict-uri-encode" "^1.0.0" + +"querystring-es3@^0.2.0": + "integrity" "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + "resolved" "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz" + "version" "0.2.1" + +"querystring@^0.2.0": + "integrity" "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" + "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz" + "version" "0.2.1" + +"querystring@0.2.0": + "integrity" "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" + "version" "0.2.0" + +"querystringify@^2.1.1": + "integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + "resolved" "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" + "version" "2.2.0" + +"queue-microtask@^1.2.2": + "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + "version" "1.2.3" + +"raf@^3.2.0", "raf@^3.4.1": + "integrity" "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==" + "resolved" "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz" + "version" "3.4.1" + dependencies: + "performance-now" "^2.1.0" + +"randombytes@^2.0.0", "randombytes@^2.0.1", "randombytes@^2.0.5", "randombytes@^2.1.0": + "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + "resolved" "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "safe-buffer" "^5.1.0" + +"randomfill@^1.0.3": + "integrity" "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" + "resolved" "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "randombytes" "^2.0.5" + "safe-buffer" "^5.1.0" + +"range-parser@^1.2.1", "range-parser@~1.2.1": + "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" + "version" "1.2.1" + +"raw-body@2.4.0": + "integrity" "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==" + "resolved" "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz" + "version" "2.4.0" + dependencies: + "bytes" "3.1.0" + "http-errors" "1.7.2" + "iconv-lite" "0.4.24" + "unpipe" "1.0.0" + +"react-app-polyfill@^2.0.0": + "integrity" "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==" + "resolved" "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "core-js" "^3.6.5" + "object-assign" "^4.1.1" + "promise" "^8.1.0" + "raf" "^3.4.1" + "regenerator-runtime" "^0.13.7" + "whatwg-fetch" "^3.4.1" + +"react-chartist@0.14.4": + "integrity" "sha512-1riwO5CjT5IdrilCM788waUYpIdl8Y4vsIc6Y5bbR3PIX46NYYtcq5bcaBEkIZfKEThuoJDEV6FU1rDmfbogsg==" + "resolved" "https://registry.npmjs.org/react-chartist/-/react-chartist-0.14.4.tgz" + "version" "0.14.4" + dependencies: + "prop-types" "^15.5.8" + +"react-data-table-component@^6.11.8": + "integrity" "sha512-ukKJKaKNDU5+jEEZFo16+4zwQPRvw1Z13S7FOj4dr73JWRf/lKkE108jciK2tj1JPMub3qXG2h0zXDn5y2WUfQ==" + "resolved" "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-6.11.8.tgz" + "version" "6.11.8" + dependencies: + "deepmerge" "^4.2.2" + "lodash.orderby" "^4.6.0" + "shortid" "^2.2.16" + +"react-dev-utils@^11.0.3": + "integrity" "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==" + "resolved" "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz" + "version" "11.0.4" + dependencies: + "@babel/code-frame" "7.10.4" + "address" "1.1.2" + "browserslist" "4.14.2" + "chalk" "2.4.2" + "cross-spawn" "7.0.3" + "detect-port-alt" "1.1.6" + "escape-string-regexp" "2.0.0" + "filesize" "6.1.0" + "find-up" "4.1.0" + "fork-ts-checker-webpack-plugin" "4.1.6" + "global-modules" "2.0.0" + "globby" "11.0.1" + "gzip-size" "5.1.1" + "immer" "8.0.1" + "is-root" "2.1.0" + "loader-utils" "2.0.0" + "open" "^7.0.2" + "pkg-up" "3.1.0" + "prompts" "2.4.0" + "react-error-overlay" "^6.0.9" + "recursive-readdir" "2.2.2" + "shell-quote" "1.7.2" + "strip-ansi" "6.0.0" + "text-table" "0.2.0" + +"react-display-name@^0.2.0": + "integrity" "sha512-I+vcaK9t4+kypiSgaiVWAipqHRXYmZIuAiS8vzFvXHHXVigg/sMKwlRgLy6LH2i3rmP+0Vzfl5lFsFRwF1r3pg==" + "resolved" "https://registry.npmjs.org/react-display-name/-/react-display-name-0.2.5.tgz" + "version" "0.2.5" + +"react-dnd-html5-backend@^11.1.3": + "integrity" "sha512-/1FjNlJbW/ivkUxlxQd7o3trA5DE33QiRZgxent3zKme8DwF4Nbw3OFVhTRFGaYhHFNL1rZt6Rdj1D78BjnNLw==" + "resolved" "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-11.1.3.tgz" + "version" "11.1.3" + dependencies: + "dnd-core" "^11.1.3" + +"react-dnd@^11.1.3", "react-dnd@^7.3.0": + "integrity" "sha512-8rtzzT8iwHgdSC89VktwhqdKKtfXaAyC4wiqp0SywpHG12TTLvfOoL6xNEIUWXwIEWu+CFfDn4GZJyynCEuHIQ==" + "resolved" "https://registry.npmjs.org/react-dnd/-/react-dnd-11.1.3.tgz" + "version" "11.1.3" + dependencies: + "@react-dnd/shallowequal" "^2.0.0" + "@types/hoist-non-react-statics" "^3.3.1" + "dnd-core" "^11.1.3" + "hoist-non-react-statics" "^3.3.0" + +"react-dom@*", "react-dom@^15.0.0 || ^16.0.0 || ^17.0.0", "react-dom@^15.3.0 || ^16.0.0-alpha", "react-dom@^16.3.0", "react-dom@^16.8.0 || ^17.0.0", "react-dom@^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.6 || ^17", "react-dom@>= 16.8.0", "react-dom@>= 16.9.0", "react-dom@>=16.6.0", "react-dom@17.0.2": + "integrity" "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" + "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz" + "version" "17.0.2" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + "scheduler" "^0.20.2" + +"react-error-overlay@^6.0.9": + "integrity" "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + "resolved" "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz" + "version" "6.0.9" + +"react-event-listener@^0.6.0": + "integrity" "sha512-+hCNqfy7o9wvO6UgjqFmBzARJS7qrNoda0VqzvOuioEpoEXKutiKuv92dSz6kP7rYLmyHPyYNLesi5t/aH1gfw==" + "resolved" "https://registry.npmjs.org/react-event-listener/-/react-event-listener-0.6.6.tgz" + "version" "0.6.6" + dependencies: + "@babel/runtime" "^7.2.0" + "prop-types" "^15.6.0" + "warning" "^4.0.1" + +"react-icons@^4.3.1": + "integrity" "sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ==" + "resolved" "https://registry.npmjs.org/react-icons/-/react-icons-4.3.1.tgz" + "version" "4.3.1" + +"react-is-mounted-hook@^1.1.2": + "integrity" "sha512-yjq3Tj34CiFcdVOS/h6JerWLOLdJqEGKMNpTHc4kWebzz2YtIpgqMRrqxdmQhewM1KJREojdAV2tsNvBsUWyhA==" + "resolved" "https://registry.npmjs.org/react-is-mounted-hook/-/react-is-mounted-hook-1.1.2.tgz" + "version" "1.1.2" + +"react-is@^16.13.1", "react-is@^16.6.0", "react-is@^16.7.0", "react-is@^16.8.1", "react-is@>= 16.8.0": + "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + "version" "16.13.1" + +"react-is@^16.8.0 || ^17.0.0": + "integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" + "version" "17.0.2" + +"react-is@^17.0.1": + "integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" + "version" "17.0.2" + +"react-lifecycles-compat@^3.0.4": + "integrity" "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + "resolved" "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" + "version" "3.0.4" + +"react-loader-spinner@^4.0.0": + "integrity" "sha512-RU2vpEej6G4ECei0h3q6bgLU10of9Lw5O+4AwF/mtkrX5oY20Sh/AxoPJ7etbrs/7Q3u4jN5qwCwGLRKCHpk6g==" + "resolved" "https://registry.npmjs.org/react-loader-spinner/-/react-loader-spinner-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "prop-types" "^15.7.2" + +"react-property@2.0.0": + "integrity" "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==" + "resolved" "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz" + "version" "2.0.0" + +"react-redux@^7.2.5": + "integrity" "sha512-Dt29bNyBsbQaysp6s/dN0gUodcq+dVKKER8Qv82UrpeygwYeX1raTtil7O/fftw/rFqzaf6gJhDZRkkZnn6bjg==" + "resolved" "https://registry.npmjs.org/react-redux/-/react-redux-7.2.5.tgz" + "version" "7.2.5" + dependencies: + "@babel/runtime" "^7.12.1" + "@types/react-redux" "^7.1.16" + "hoist-non-react-statics" "^3.3.2" + "loose-envify" "^1.4.0" + "prop-types" "^15.7.2" + "react-is" "^16.13.1" + +"react-refresh@^0.8.3", "react-refresh@>=0.8.3 <0.10.0": + "integrity" "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + "resolved" "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz" + "version" "0.8.3" + +"react-router-dom@5.2.0": + "integrity" "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==" + "resolved" "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/runtime" "^7.1.2" + "history" "^4.9.0" + "loose-envify" "^1.3.1" + "prop-types" "^15.6.2" + "react-router" "5.2.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + +"react-router@5.2.0": + "integrity" "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==" + "resolved" "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/runtime" "^7.1.2" + "history" "^4.9.0" + "hoist-non-react-statics" "^3.1.0" + "loose-envify" "^1.3.1" + "mini-create-react-context" "^0.4.0" + "path-to-regexp" "^1.7.0" + "prop-types" "^15.6.2" + "react-is" "^16.6.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + +"react-scripts@4.0.3": + "integrity" "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==" + "resolved" "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "@babel/core" "7.12.3" + "@pmmmwh/react-refresh-webpack-plugin" "0.4.3" + "@svgr/webpack" "5.5.0" + "@typescript-eslint/eslint-plugin" "^4.5.0" + "@typescript-eslint/parser" "^4.5.0" + "babel-eslint" "^10.1.0" + "babel-jest" "^26.6.0" + "babel-loader" "8.1.0" + "babel-plugin-named-asset-import" "^0.3.7" + "babel-preset-react-app" "^10.0.0" + "bfj" "^7.0.2" + "camelcase" "^6.1.0" + "case-sensitive-paths-webpack-plugin" "2.3.0" + "css-loader" "4.3.0" + "dotenv" "8.2.0" + "dotenv-expand" "5.1.0" + "eslint" "^7.11.0" + "eslint-config-react-app" "^6.0.0" + "eslint-plugin-flowtype" "^5.2.0" + "eslint-plugin-import" "^2.22.1" + "eslint-plugin-jest" "^24.1.0" + "eslint-plugin-jsx-a11y" "^6.3.1" + "eslint-plugin-react" "^7.21.5" + "eslint-plugin-react-hooks" "^4.2.0" + "eslint-plugin-testing-library" "^3.9.2" + "eslint-webpack-plugin" "^2.5.2" + "file-loader" "6.1.1" + "fs-extra" "^9.0.1" + "html-webpack-plugin" "4.5.0" + "identity-obj-proxy" "3.0.0" + "jest" "26.6.0" + "jest-circus" "26.6.0" + "jest-resolve" "26.6.0" + "jest-watch-typeahead" "0.6.1" + "mini-css-extract-plugin" "0.11.3" + "optimize-css-assets-webpack-plugin" "5.0.4" + "pnp-webpack-plugin" "1.6.4" + "postcss-flexbugs-fixes" "4.2.1" + "postcss-loader" "3.0.0" + "postcss-normalize" "8.0.1" + "postcss-preset-env" "6.7.0" + "postcss-safe-parser" "5.0.2" + "prompts" "2.4.0" + "react-app-polyfill" "^2.0.0" + "react-dev-utils" "^11.0.3" + "react-refresh" "^0.8.3" + "resolve" "1.18.1" + "resolve-url-loader" "^3.1.2" + "sass-loader" "^10.0.5" + "semver" "7.3.2" + "style-loader" "1.3.0" + "terser-webpack-plugin" "4.2.3" + "ts-pnp" "1.2.0" + "url-loader" "4.1.1" + "webpack" "4.44.2" + "webpack-dev-server" "3.11.1" + "webpack-manifest-plugin" "2.2.0" + "workbox-webpack-plugin" "5.1.4" + optionalDependencies: + "fsevents" "^2.1.3" + +"react-select-async-paginate@^0.6.1": + "integrity" "sha512-oFdX8aciCoBEXuP0ouSSan4H/6lYw9w5eCiA3vw9eNSWdFmIU1HzyYrEQbVJDz027kp643e8pKKmO6pWbr21yA==" + "resolved" "https://registry.npmjs.org/react-select-async-paginate/-/react-select-async-paginate-0.6.1.tgz" + "version" "0.6.1" + dependencies: + "@babel/runtime" "^7.16.5" + "@seznam/compose-react-refs" "^1.0.6" + "react-is-mounted-hook" "^1.1.2" + "sleep-promise" "^9.1.0" + +"react-select@^5.0.0", "react-select@^5.2.2": + "integrity" "sha512-GM6Fbv1+X+kb3e5Fc4oNeyOJkCIesY/D4NBiReKlGY4RxoeztFYm3J0KREgwMaIKQqwTiuLqTlpUBY3SYw5goQ==" + "resolved" "https://registry.npmjs.org/react-select/-/react-select-5.3.0.tgz" + "version" "5.3.0" + dependencies: + "@babel/runtime" "^7.12.0" + "@emotion/cache" "^11.4.0" + "@emotion/react" "^11.1.1" + "@types/react-transition-group" "^4.4.0" + "memoize-one" "^5.0.0" + "prop-types" "^15.6.0" + "react-transition-group" "^4.3.0" + +"react-sortable-tree@^2.7.1": + "integrity" "sha512-gTjwxRNt7z0FC76KeNTnGqx1qUSlV3N78mMPRushBpSUXzZYhiFNsWHUIruyPnaAbw4SA7LgpItV7VieAuwDpw==" + "resolved" "https://registry.npmjs.org/react-sortable-tree/-/react-sortable-tree-2.8.0.tgz" + "version" "2.8.0" + dependencies: + "frontend-collective-react-dnd-scrollzone" "^1.0.2" + "lodash.isequal" "^4.5.0" + "prop-types" "^15.6.1" + "react-dnd" "^11.1.3" + "react-dnd-html5-backend" "^11.1.3" + "react-lifecycles-compat" "^3.0.4" + "react-virtualized" "^9.21.2" + +"react-swipeable-views-core@^0.13.7": + "integrity" "sha512-ekn9oDYfBt0oqJSGGwLEhKvn+QaqMGTy//9dURTLf+vp7W5j6GvmKryYdnwJCDITaPFI2hujXV4CH9krhvaE5w==" + "resolved" "https://registry.npmjs.org/react-swipeable-views-core/-/react-swipeable-views-core-0.13.7.tgz" + "version" "0.13.7" + dependencies: + "@babel/runtime" "7.0.0" + "warning" "^4.0.1" + +"react-swipeable-views-utils@^0.13.9": + "integrity" "sha512-QLGxRKrbJCbWz94vkWLzb1Daaa2Y/TZKmsNKQ6WSNrS+chrlfZ3z9tqZ7YUJlW6pRWp3QZdLSY3UE3cN0TXXmw==" + "resolved" "https://registry.npmjs.org/react-swipeable-views-utils/-/react-swipeable-views-utils-0.13.9.tgz" + "version" "0.13.9" + dependencies: + "@babel/runtime" "7.0.0" + "keycode" "^2.1.7" + "prop-types" "^15.6.0" + "react-event-listener" "^0.6.0" + "react-swipeable-views-core" "^0.13.7" + "shallow-equal" "^1.2.1" + +"react-swipeable-views@0.13.9": + "integrity" "sha512-WXC2FKYvZ9QdJ31v9LjEJEl1bA7E4AcaloTkbW0uU0dYf5uvv4aOpiyxubvOkVl1a5L2UAHmKSif4TmJ9usrSg==" + "resolved" "https://registry.npmjs.org/react-swipeable-views/-/react-swipeable-views-0.13.9.tgz" + "version" "0.13.9" + dependencies: + "@babel/runtime" "7.0.0" + "prop-types" "^15.5.4" + "react-swipeable-views-core" "^0.13.7" + "react-swipeable-views-utils" "^0.13.9" + "warning" "^4.0.1" + +"react-to-print@^2.8.0": + "integrity" "sha512-JMX+HrMtBXWDh2ohPT2IeBkaGY4QpFeloXTXBA7hBK7dXJQei/UXMvQqbZHb0rqJwzAHltZ2zXevuSK/ReKI5w==" + "resolved" "https://registry.npmjs.org/react-to-print/-/react-to-print-2.13.0.tgz" + "version" "2.13.0" + dependencies: + "prop-types" "^15.7.2" + +"react-transition-group@^4.0.0", "react-transition-group@^4.3.0", "react-transition-group@^4.4.0": + "integrity" "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==" + "resolved" "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz" + "version" "4.4.2" + dependencies: + "@babel/runtime" "^7.5.5" + "dom-helpers" "^5.0.1" + "loose-envify" "^1.4.0" + "prop-types" "^15.6.2" + +"react-virtualized@^9.21.2": + "integrity" "sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==" + "resolved" "https://registry.npmjs.org/react-virtualized/-/react-virtualized-9.22.3.tgz" + "version" "9.22.3" + dependencies: + "@babel/runtime" "^7.7.2" + "clsx" "^1.0.4" + "dom-helpers" "^5.1.3" + "loose-envify" "^1.4.0" + "prop-types" "^15.7.2" + "react-lifecycles-compat" "^3.0.4" + +"react@*", "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^0.14.9 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^15.0.0 || ^16.0.0 || ^17.0.0", "react@^15.3.0 || ^16.0.0", "react@^15.3.0 || ^16.0.0-alpha", "react@^16.14.0 || ^17.0.0", "react@^16.3.0", "react@^16.8.0 || ^17.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.3 || ^17", "react@^16.8.6 || ^17", "react@>= 16", "react@>= 16.8.0", "react@>= 16.9.0", "react@>=15", "react@>=16.6.0", "react@>=16.8", "react@>=16.8.0", "react@0.14 || 15 || 16 || 17 || 18", "react@17.0.2": + "integrity" "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" + "resolved" "https://registry.npmjs.org/react/-/react-17.0.2.tgz" + "version" "17.0.2" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + +"react@^16.14.0": + "integrity" "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==" + "resolved" "https://registry.npmjs.org/react/-/react-16.14.0.tgz" + "version" "16.14.0" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + "prop-types" "^15.6.2" + +"read-file@^0.2.0": + "integrity" "sha1-cMa6+IQux9FUD5gf0Oau1Mgb1UU=" + "resolved" "https://registry.npmjs.org/read-file/-/read-file-0.2.0.tgz" + "version" "0.2.0" + +"read-pkg-up@^1.0.1": + "integrity" "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=" + "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "find-up" "^1.0.0" + "read-pkg" "^1.0.0" + +"read-pkg-up@^3.0.0": + "integrity" "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" + "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "find-up" "^2.0.0" + "read-pkg" "^3.0.0" + +"read-pkg-up@^7.0.1": + "integrity" "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "find-up" "^4.1.0" + "read-pkg" "^5.2.0" + "type-fest" "^0.8.1" + +"read-pkg@^1.0.0": + "integrity" "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=" + "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "load-json-file" "^1.0.0" + "normalize-package-data" "^2.3.2" + "path-type" "^1.0.0" + +"read-pkg@^3.0.0": + "integrity" "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" + "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "load-json-file" "^4.0.0" + "normalize-package-data" "^2.3.2" + "path-type" "^3.0.0" + +"read-pkg@^5.2.0": + "integrity" "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@types/normalize-package-data" "^2.4.0" + "normalize-package-data" "^2.5.0" + "parse-json" "^5.0.0" + "type-fest" "^0.6.0" + +"readable-stream@^2.0.0", "readable-stream@^2.0.1", "readable-stream@^2.0.2", "readable-stream@^2.0.5", "readable-stream@^2.1.5", "readable-stream@^2.2.2", "readable-stream@^2.3.3", "readable-stream@^2.3.5", "readable-stream@^2.3.6", "readable-stream@~2.3.6", "readable-stream@1 || 2": + "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" + "version" "2.3.7" + dependencies: + "core-util-is" "~1.0.0" + "inherits" "~2.0.3" + "isarray" "~1.0.0" + "process-nextick-args" "~2.0.0" + "safe-buffer" "~5.1.1" + "string_decoder" "~1.1.1" + "util-deprecate" "~1.0.1" + +"readable-stream@^3.0.6": + "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + "version" "3.6.0" + dependencies: + "inherits" "^2.0.3" + "string_decoder" "^1.1.1" + "util-deprecate" "^1.0.1" + +"readable-stream@^3.6.0": + "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + "version" "3.6.0" + dependencies: + "inherits" "^2.0.3" + "string_decoder" "^1.1.1" + "util-deprecate" "^1.0.1" + +"readdirp@^2.2.1": + "integrity" "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==" + "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz" + "version" "2.2.1" + dependencies: + "graceful-fs" "^4.1.11" + "micromatch" "^3.1.10" + "readable-stream" "^2.0.2" + +"readdirp@~3.6.0": + "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + "version" "3.6.0" + dependencies: + "picomatch" "^2.2.1" + +"rechoir@^0.6.2": + "integrity" "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" + "resolved" "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" + "version" "0.6.2" + dependencies: + "resolve" "^1.1.6" + +"recursive-readdir@2.2.2": + "integrity" "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==" + "resolved" "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz" + "version" "2.2.2" + dependencies: + "minimatch" "3.0.4" + +"redux-devtools-extension@^2.13.9": + "integrity" "sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==" + "resolved" "https://registry.npmjs.org/redux-devtools-extension/-/redux-devtools-extension-2.13.9.tgz" + "version" "2.13.9" + +"redux-thunk@^2.3.0": + "integrity" "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==" + "resolved" "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz" + "version" "2.3.0" + +"redux@^3.1.0 || ^4.0.0", "redux@^4.0.0", "redux@^4.0.4", "redux@^4.1.1": + "integrity" "sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==" + "resolved" "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "@babel/runtime" "^7.9.2" + +"regenerate-unicode-properties@^8.2.0": + "integrity" "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==" + "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz" + "version" "8.2.0" + dependencies: + "regenerate" "^1.4.0" + +"regenerate@^1.4.0": + "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + "version" "1.4.2" + +"regenerator-runtime@^0.11.0": + "integrity" "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz" + "version" "0.11.1" + +"regenerator-runtime@^0.12.0": + "integrity" "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz" + "version" "0.12.1" + +"regenerator-runtime@^0.13.4", "regenerator-runtime@^0.13.7": + "integrity" "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz" + "version" "0.13.9" + +"regenerator-transform@^0.14.2": + "integrity" "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==" + "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" + "version" "0.14.5" + dependencies: + "@babel/runtime" "^7.8.4" + +"regex-not@^1.0.0", "regex-not@^1.0.2": + "integrity" "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" + "resolved" "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "extend-shallow" "^3.0.2" + "safe-regex" "^1.1.0" + +"regex-parser@^2.2.11": + "integrity" "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + "resolved" "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz" + "version" "2.2.11" + +"regexp.prototype.flags@^1.2.0", "regexp.prototype.flags@^1.3.1": + "integrity" "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" + "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz" + "version" "1.3.1" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + +"regexpp@^3.1.0": + "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" + "version" "3.2.0" + +"regexpu-core@^4.7.1": + "integrity" "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==" + "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz" + "version" "4.7.1" + dependencies: + "regenerate" "^1.4.0" + "regenerate-unicode-properties" "^8.2.0" + "regjsgen" "^0.5.1" + "regjsparser" "^0.6.4" + "unicode-match-property-ecmascript" "^1.0.4" + "unicode-match-property-value-ecmascript" "^1.2.0" + +"regjsgen@^0.5.1": + "integrity" "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz" + "version" "0.5.2" + +"regjsparser@^0.6.4": + "integrity" "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==" + "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz" + "version" "0.6.9" + dependencies: + "jsesc" "~0.5.0" + +"relateurl@^0.2.7": + "integrity" "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + "resolved" "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" + "version" "0.2.7" + +"remove-bom-buffer@^3.0.0": + "integrity" "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==" + "resolved" "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "is-buffer" "^1.1.5" + "is-utf8" "^0.2.1" + +"remove-bom-stream@^1.2.0": + "integrity" "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=" + "resolved" "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "remove-bom-buffer" "^3.0.0" + "safe-buffer" "^5.1.0" + "through2" "^2.0.3" + +"remove-trailing-separator@^1.0.1", "remove-trailing-separator@^1.1.0": + "integrity" "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + "resolved" "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz" + "version" "1.1.0" + +"renderkid@^2.0.4": + "integrity" "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==" + "resolved" "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz" + "version" "2.0.7" + dependencies: + "css-select" "^4.1.3" + "dom-converter" "^0.2.0" + "htmlparser2" "^6.1.0" + "lodash" "^4.17.21" + "strip-ansi" "^3.0.1" + +"repeat-element@^1.1.2": + "integrity" "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + "resolved" "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz" + "version" "1.1.4" + +"repeat-string@^1.6.1": + "integrity" "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + "resolved" "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" + "version" "1.6.1" + +"replace-ext@^1.0.0": + "integrity" "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" + "resolved" "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz" + "version" "1.0.1" + +"replace-homedir@^1.0.0": + "integrity" "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=" + "resolved" "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "homedir-polyfill" "^1.0.1" + "is-absolute" "^1.0.0" + "remove-trailing-separator" "^1.1.0" + +"require-directory@^2.1.1": + "integrity" "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "resolved" "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" + "version" "2.1.1" + +"require-from-string@^2.0.2": + "integrity" "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" + "version" "2.0.2" + +"require-main-filename@^1.0.1": + "integrity" "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + "resolved" "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz" + "version" "1.0.1" + +"require-main-filename@^2.0.0": + "integrity" "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "resolved" "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" + "version" "2.0.0" + +"requires-port@^1.0.0": + "integrity" "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + "version" "1.0.0" + +"resolve-cwd@^2.0.0": + "integrity" "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=" + "resolved" "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "resolve-from" "^3.0.0" + +"resolve-cwd@^3.0.0": + "integrity" "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + "resolved" "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "resolve-from" "^5.0.0" + +"resolve-dir@^1.0.0", "resolve-dir@^1.0.1": + "integrity" "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=" + "resolved" "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "expand-tilde" "^2.0.0" + "global-modules" "^1.0.0" + +"resolve-from@^3.0.0": + "integrity" "sha1-six699nWiBvItuZTM17rywoYh0g=" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" + "version" "3.0.0" + +"resolve-from@^4.0.0": + "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + "version" "4.0.0" + +"resolve-from@^5.0.0": + "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" + "version" "5.0.0" + +"resolve-options@^1.1.0": + "integrity" "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=" + "resolved" "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "value-or-function" "^3.0.0" + +"resolve-pathname@^3.0.0": + "integrity" "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + "resolved" "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" + "version" "3.0.0" + +"resolve-url-loader@^3.1.2": + "integrity" "sha512-D3sQ04o0eeQEySLrcz4DsX3saHfsr8/N6tfhblxgZKXxMT2Louargg12oGNfoTRLV09GXhVUe5/qgA5vdgNigg==" + "resolved" "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.4.tgz" + "version" "3.1.4" + dependencies: + "adjust-sourcemap-loader" "3.0.0" + "camelcase" "5.3.1" + "compose-function" "3.0.3" + "convert-source-map" "1.7.0" + "es6-iterator" "2.0.3" + "loader-utils" "1.2.3" + "postcss" "7.0.36" + "rework" "1.0.1" + "rework-visit" "1.0.0" + "source-map" "0.6.1" + +"resolve-url@^0.2.1": + "integrity" "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + "resolved" "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" + "version" "0.2.1" + +"resolve@^1.1.6", "resolve@^1.1.7", "resolve@^1.10.0", "resolve@^1.12.0", "resolve@^1.14.2", "resolve@^1.17.0", "resolve@^1.18.1", "resolve@^1.20.0", "resolve@^1.3.2", "resolve@^1.4.0", "resolve@^1.8.1": + "integrity" "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" + "version" "1.20.0" + dependencies: + "is-core-module" "^2.2.0" + "path-parse" "^1.0.6" + +"resolve@^2.0.0-next.3": + "integrity" "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz" + "version" "2.0.0-next.3" + dependencies: + "is-core-module" "^2.2.0" + "path-parse" "^1.0.6" + +"resolve@1.18.1": + "integrity" "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz" + "version" "1.18.1" + dependencies: + "is-core-module" "^2.0.0" + "path-parse" "^1.0.6" + +"ret@~0.1.10": + "integrity" "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + "resolved" "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" + "version" "0.1.15" + +"retry@^0.12.0": + "integrity" "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + "resolved" "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz" + "version" "0.12.0" + +"reusify@^1.0.4": + "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + "version" "1.0.4" + +"rework-visit@1.0.0": + "integrity" "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + "resolved" "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz" + "version" "1.0.0" + +"rework@1.0.1": + "integrity" "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=" + "resolved" "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "convert-source-map" "^0.3.3" + "css" "^2.0.0" + +"rgb-regex@^1.0.1": + "integrity" "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + "resolved" "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz" + "version" "1.0.1" + +"rgba-regex@^1.0.0": + "integrity" "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + "resolved" "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz" + "version" "1.0.0" + +"rifm@^0.7.0": + "integrity" "sha512-DSOJTWHD67860I5ojetXdEQRIBvF6YcpNe53j0vn1vp9EUb9N80EiZTxgP+FkDKorWC8PZw052kTF4C1GOivCQ==" + "resolved" "https://registry.npmjs.org/rifm/-/rifm-0.7.0.tgz" + "version" "0.7.0" + dependencies: + "@babel/runtime" "^7.3.1" + +"rimraf@^2.5.4", "rimraf@^2.6.3": + "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "glob" "^7.1.3" + +"rimraf@^3.0.0": + "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "glob" "^7.1.3" + +"rimraf@^3.0.2": + "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "glob" "^7.1.3" + +"ripemd160@^2.0.0", "ripemd160@^2.0.1": + "integrity" "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" + "resolved" "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "hash-base" "^3.0.0" + "inherits" "^2.0.1" + +"rollup-plugin-babel@^4.3.3": + "integrity" "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==" + "resolved" "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz" + "version" "4.4.0" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "rollup-pluginutils" "^2.8.1" + +"rollup-plugin-terser@^5.3.1": + "integrity" "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==" + "resolved" "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz" + "version" "5.3.1" + dependencies: + "@babel/code-frame" "^7.5.5" + "jest-worker" "^24.9.0" + "rollup-pluginutils" "^2.8.2" + "serialize-javascript" "^4.0.0" + "terser" "^4.6.2" + +"rollup-pluginutils@^2.8.1", "rollup-pluginutils@^2.8.2": + "integrity" "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==" + "resolved" "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz" + "version" "2.8.2" + dependencies: + "estree-walker" "^0.6.1" + +"rollup@^1.20.0 || ^2.0.0", "rollup@^1.20.0||^2.0.0", "rollup@^1.31.1", "rollup@>=0.60.0 <3", "rollup@>=0.66.0 <3": + "integrity" "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==" + "resolved" "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz" + "version" "1.32.1" + dependencies: + "@types/estree" "*" + "@types/node" "*" + "acorn" "^7.1.0" + +"rsvp@^4.8.4": + "integrity" "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + "resolved" "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz" + "version" "4.8.5" + +"run-parallel@^1.1.9": + "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "queue-microtask" "^1.2.2" + +"run-queue@^1.0.0", "run-queue@^1.0.3": + "integrity" "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=" + "resolved" "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "aproba" "^1.1.1" + +"safe-buffer@^5.0.1", "safe-buffer@^5.1.0", "safe-buffer@^5.1.1", "safe-buffer@^5.1.2", "safe-buffer@^5.2.0", "safe-buffer@>=5.1.0", "safe-buffer@~5.2.0": + "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + "version" "5.2.1" + +"safe-buffer@~5.1.0", "safe-buffer@~5.1.1": + "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + "version" "5.1.2" + +"safe-buffer@5.1.2": + "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + "version" "5.1.2" + +"safe-regex@^1.1.0": + "integrity" "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" + "resolved" "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "ret" "~0.1.10" + +"safer-buffer@^2.1.0", "safer-buffer@>= 2.1.2 < 3": + "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + "version" "2.1.2" + +"sane@^4.0.3": + "integrity" "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==" + "resolved" "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "@cnakazawa/watch" "^1.0.3" + "anymatch" "^2.0.0" + "capture-exit" "^2.0.0" + "exec-sh" "^0.3.2" + "execa" "^1.0.0" + "fb-watchman" "^2.0.0" + "micromatch" "^3.1.4" + "minimist" "^1.1.1" + "walker" "~1.0.5" + +"sanitize.css@^10.0.0": + "integrity" "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + "resolved" "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz" + "version" "10.0.0" + +"sass-loader@^10.0.5": + "integrity" "sha512-kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw==" + "resolved" "https://registry.npmjs.org/sass-loader/-/sass-loader-10.2.0.tgz" + "version" "10.2.0" + dependencies: + "klona" "^2.0.4" + "loader-utils" "^2.0.0" + "neo-async" "^2.6.2" + "schema-utils" "^3.0.0" + "semver" "^7.3.2" + +"sax@~1.2.4": + "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" + "version" "1.2.4" + +"saxes@^5.0.1": + "integrity" "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==" + "resolved" "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "xmlchars" "^2.2.0" + +"scheduler@^0.19.1": + "integrity" "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==" + "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz" + "version" "0.19.1" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + +"scheduler@^0.20.2": + "integrity" "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" + "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz" + "version" "0.20.2" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + +"schema-utils@^1.0.0": + "integrity" "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "ajv" "^6.1.0" + "ajv-errors" "^1.0.0" + "ajv-keywords" "^3.1.0" + +"schema-utils@^2.6.5": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "@types/json-schema" "^7.0.5" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" + +"schema-utils@^2.7.0": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "@types/json-schema" "^7.0.5" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" + +"schema-utils@^2.7.1": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "@types/json-schema" "^7.0.5" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" + +"schema-utils@^3.0.0": + "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "@types/json-schema" "^7.0.8" + "ajv" "^6.12.5" + "ajv-keywords" "^3.5.2" + +"select-hose@^2.0.0": + "integrity" "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + "resolved" "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" + "version" "2.0.0" + +"selfsigned@^1.10.8": + "integrity" "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==" + "resolved" "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz" + "version" "1.10.11" + dependencies: + "node-forge" "^0.10.0" + +"semver-greatest-satisfied-range@^1.1.0": + "integrity" "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=" + "resolved" "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "sver-compat" "^1.5.0" + +"semver@^5.4.1", "semver@^5.5.0", "semver@^5.5.1": + "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + "version" "5.7.1" + +"semver@^5.6.0": + "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + "version" "5.7.1" + +"semver@^6.0.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.3.0": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" + +"semver@^7.2.1": + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" + dependencies: + "lru-cache" "^6.0.0" + +"semver@^7.3.2": + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" + dependencies: + "lru-cache" "^6.0.0" + +"semver@^7.3.5": + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" + dependencies: + "lru-cache" "^6.0.0" + +"semver@2 || 3 || 4 || 5": + "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + "version" "5.7.1" + +"semver@7.0.0": + "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" + "version" "7.0.0" + +"semver@7.3.2": + "integrity" "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz" + "version" "7.3.2" + +"send@0.17.1": + "integrity" "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==" + "resolved" "https://registry.npmjs.org/send/-/send-0.17.1.tgz" + "version" "0.17.1" + dependencies: + "debug" "2.6.9" + "depd" "~1.1.2" + "destroy" "~1.0.4" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "etag" "~1.8.1" + "fresh" "0.5.2" + "http-errors" "~1.7.2" + "mime" "1.6.0" + "ms" "2.1.1" + "on-finished" "~2.3.0" + "range-parser" "~1.2.1" + "statuses" "~1.5.0" + +"serialize-javascript@^4.0.0": + "integrity" "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" + "resolved" "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "randombytes" "^2.1.0" + +"serialize-javascript@^5.0.1": + "integrity" "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" + "resolved" "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "randombytes" "^2.1.0" + +"serve-index@^1.9.1": + "integrity" "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" + "resolved" "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" + "version" "1.9.1" + dependencies: + "accepts" "~1.3.4" + "batch" "0.6.1" + "debug" "2.6.9" + "escape-html" "~1.0.3" + "http-errors" "~1.6.2" + "mime-types" "~2.1.17" + "parseurl" "~1.3.2" + +"serve-static@1.14.1": + "integrity" "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==" + "resolved" "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz" + "version" "1.14.1" + dependencies: + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "parseurl" "~1.3.3" + "send" "0.17.1" + +"set-blocking@^2.0.0": + "integrity" "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "resolved" "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" + "version" "2.0.0" + +"set-value@^2.0.0", "set-value@^2.0.1": + "integrity" "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==" + "resolved" "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "extend-shallow" "^2.0.1" + "is-extendable" "^0.1.1" + "is-plain-object" "^2.0.3" + "split-string" "^3.0.1" + +"setimmediate@^1.0.4": + "integrity" "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + "version" "1.0.5" + +"setprototypeof@1.1.0": + "integrity" "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" + "version" "1.1.0" + +"setprototypeof@1.1.1": + "integrity" "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz" + "version" "1.1.1" + +"sha.js@^2.4.0", "sha.js@^2.4.8": + "integrity" "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" + "resolved" "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz" + "version" "2.4.11" + dependencies: + "inherits" "^2.0.1" + "safe-buffer" "^5.0.1" + +"shallow-equal@^1.2.1": + "integrity" "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + "resolved" "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz" + "version" "1.2.1" + +"shallowequal@^1.1.0": + "integrity" "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + "resolved" "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" + "version" "1.1.0" + +"shebang-command@^1.2.0": + "integrity" "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" + "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "shebang-regex" "^1.0.0" + +"shebang-command@^2.0.0": + "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "shebang-regex" "^3.0.0" + +"shebang-regex@^1.0.0": + "integrity" "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + "version" "1.0.0" + +"shebang-regex@^3.0.0": + "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + "version" "3.0.0" + +"shell-quote@1.7.2": + "integrity" "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz" + "version" "1.7.2" + +"shellwords@^0.1.1": + "integrity" "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==" + "resolved" "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz" + "version" "0.1.1" + +"shortid@^2.2.16": + "integrity" "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==" + "resolved" "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz" + "version" "2.2.16" + dependencies: + "nanoid" "^2.1.0" + +"side-channel@^1.0.4": + "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "call-bind" "^1.0.0" + "get-intrinsic" "^1.0.2" + "object-inspect" "^1.9.0" + +"signal-exit@^3.0.0", "signal-exit@^3.0.2": + "integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" + "version" "3.0.3" + +"simple-swizzle@^0.2.2": + "integrity" "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=" + "resolved" "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "is-arrayish" "^0.3.1" + +"sisteransi@^1.0.5": + "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + "version" "1.0.5" + +"slash@^3.0.0": + "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + "version" "3.0.0" + +"sleep-promise@^9.1.0": + "integrity" "sha512-UHYzVpz9Xn8b+jikYSD6bqvf754xL2uBUzDFwiU6NcdZeifPr6UfgU43xpkPu67VMS88+TI2PSI7Eohgqf2fKA==" + "resolved" "https://registry.npmjs.org/sleep-promise/-/sleep-promise-9.1.0.tgz" + "version" "9.1.0" + +"slice-ansi@^4.0.0": + "integrity" "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "ansi-styles" "^4.0.0" + "astral-regex" "^2.0.0" + "is-fullwidth-code-point" "^3.0.0" + +"snapdragon-node@^2.0.1": + "integrity" "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" + "resolved" "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "define-property" "^1.0.0" + "isobject" "^3.0.0" + "snapdragon-util" "^3.0.1" + +"snapdragon-util@^3.0.1": + "integrity" "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" + "resolved" "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "kind-of" "^3.2.0" + +"snapdragon@^0.8.1": + "integrity" "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==" + "resolved" "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" + "version" "0.8.2" + dependencies: + "base" "^0.11.1" + "debug" "^2.2.0" + "define-property" "^0.2.5" + "extend-shallow" "^2.0.1" + "map-cache" "^0.2.2" + "source-map" "^0.5.6" + "source-map-resolve" "^0.5.0" + "use" "^3.1.0" + +"sockjs-client@^1.4.0", "sockjs-client@^1.5.0": + "integrity" "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==" + "resolved" "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz" + "version" "1.5.2" + dependencies: + "debug" "^3.2.6" + "eventsource" "^1.0.7" + "faye-websocket" "^0.11.3" + "inherits" "^2.0.4" + "json3" "^3.3.3" + "url-parse" "^1.5.3" + +"sockjs@^0.3.21": + "integrity" "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==" + "resolved" "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz" + "version" "0.3.21" + dependencies: + "faye-websocket" "^0.11.3" + "uuid" "^3.4.0" + "websocket-driver" "^0.7.4" + +"sort-keys@^1.0.0": + "integrity" "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=" + "resolved" "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "is-plain-obj" "^1.0.0" + +"source-list-map@^2.0.0": + "integrity" "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + "resolved" "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz" + "version" "2.0.1" + +"source-map-js@^0.6.2": + "integrity" "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" + "resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz" + "version" "0.6.2" + +"source-map-resolve@^0.5.0", "source-map-resolve@^0.5.2": + "integrity" "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==" + "resolved" "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz" + "version" "0.5.3" + dependencies: + "atob" "^2.1.2" + "decode-uri-component" "^0.2.0" + "resolve-url" "^0.2.1" + "source-map-url" "^0.4.0" + "urix" "^0.1.0" + +"source-map-support@^0.5.6", "source-map-support@~0.5.12", "source-map-support@~0.5.19": + "integrity" "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" + "version" "0.5.19" + dependencies: + "buffer-from" "^1.0.0" + "source-map" "^0.6.0" + +"source-map-url@^0.4.0": + "integrity" "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + "resolved" "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz" + "version" "0.4.1" + +"source-map@^0.5.0": + "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + "version" "0.5.7" + +"source-map@^0.5.6": + "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + "version" "0.5.7" + +"source-map@^0.6.0", "source-map@^0.6.1", "source-map@~0.6.0", "source-map@~0.6.1", "source-map@0.6.1": + "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + "version" "0.6.1" + +"source-map@^0.7.3": + "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" + "version" "0.7.3" + +"source-map@~0.7.2": + "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" + "version" "0.7.3" + +"sourcemap-codec@^1.4.4": + "integrity" "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "resolved" "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" + "version" "1.4.8" + +"sparkles@^1.0.0": + "integrity" "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" + "resolved" "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz" + "version" "1.0.1" + +"spdx-correct@^3.0.0": + "integrity" "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==" + "resolved" "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "spdx-expression-parse" "^3.0.0" + "spdx-license-ids" "^3.0.0" + +"spdx-exceptions@^2.1.0": + "integrity" "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "resolved" "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" + "version" "2.3.0" + +"spdx-expression-parse@^3.0.0": + "integrity" "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + "resolved" "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "spdx-exceptions" "^2.1.0" + "spdx-license-ids" "^3.0.0" + +"spdx-license-ids@^3.0.0": + "integrity" "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==" + "resolved" "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz" + "version" "3.0.10" + +"spdy-transport@^3.0.0": + "integrity" "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + "resolved" "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "debug" "^4.1.0" + "detect-node" "^2.0.4" + "hpack.js" "^2.1.6" + "obuf" "^1.1.2" + "readable-stream" "^3.0.6" + "wbuf" "^1.7.3" + +"spdy@^4.0.2": + "integrity" "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + "resolved" "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "debug" "^4.1.0" + "handle-thing" "^2.0.0" + "http-deceiver" "^1.2.7" + "select-hose" "^2.0.0" + "spdy-transport" "^3.0.0" + +"split-string@^3.0.1", "split-string@^3.0.2": + "integrity" "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" + "resolved" "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "extend-shallow" "^3.0.0" + +"sprintf-js@~1.0.2": + "integrity" "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + "version" "1.0.3" + +"ssri@^6.0.1": + "integrity" "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==" + "resolved" "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz" + "version" "6.0.2" + dependencies: + "figgy-pudding" "^3.5.1" + +"ssri@^8.0.1": + "integrity" "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" + "resolved" "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz" + "version" "8.0.1" + dependencies: + "minipass" "^3.1.1" + +"stable@^0.1.8": + "integrity" "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "resolved" "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" + "version" "0.1.8" + +"stack-trace@0.0.10": + "integrity" "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + "resolved" "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz" + "version" "0.0.10" + +"stack-utils@^2.0.2": + "integrity" "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==" + "resolved" "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz" + "version" "2.0.3" + dependencies: + "escape-string-regexp" "^2.0.0" + +"stackframe@^1.1.1": + "integrity" "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + "resolved" "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz" + "version" "1.2.0" + +"static-extend@^0.1.1": + "integrity" "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=" + "resolved" "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" + "version" "0.1.2" + dependencies: + "define-property" "^0.2.5" + "object-copy" "^0.1.0" + +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", "statuses@~1.5.0": + "integrity" "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + "version" "1.5.0" + +"stream-browserify@^2.0.1": + "integrity" "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==" + "resolved" "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "inherits" "~2.0.1" + "readable-stream" "^2.0.2" + +"stream-each@^1.1.0": + "integrity" "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==" + "resolved" "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz" + "version" "1.2.3" + dependencies: + "end-of-stream" "^1.1.0" + "stream-shift" "^1.0.0" + +"stream-exhaust@^1.0.1": + "integrity" "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" + "resolved" "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz" + "version" "1.0.2" + +"stream-http@^2.7.2": + "integrity" "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==" + "resolved" "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz" + "version" "2.8.3" + dependencies: + "builtin-status-codes" "^3.0.0" + "inherits" "^2.0.1" + "readable-stream" "^2.3.6" + "to-arraybuffer" "^1.0.0" + "xtend" "^4.0.0" + +"stream-shift@^1.0.0": + "integrity" "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + "resolved" "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz" + "version" "1.0.1" + +"strict-uri-encode@^1.0.0": + "integrity" "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "resolved" "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz" + "version" "1.1.0" + +"string_decoder@^1.0.0", "string_decoder@^1.1.1": + "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "safe-buffer" "~5.2.0" + +"string_decoder@~1.1.1": + "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "safe-buffer" "~5.1.0" + +"string-length@^4.0.1": + "integrity" "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + "resolved" "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "char-regex" "^1.0.2" + "strip-ansi" "^6.0.0" + +"string-natural-compare@^3.0.1": + "integrity" "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + "resolved" "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz" + "version" "3.0.1" + +"string-width@^1.0.1", "string-width@^1.0.2": + "integrity" "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "code-point-at" "^1.0.0" + "is-fullwidth-code-point" "^1.0.0" + "strip-ansi" "^3.0.0" + +"string-width@^3.0.0", "string-width@^3.1.0": + "integrity" "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "emoji-regex" "^7.0.1" + "is-fullwidth-code-point" "^2.0.0" + "strip-ansi" "^5.1.0" + +"string-width@^4.1.0", "string-width@^4.2.0": + "integrity" "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz" + "version" "4.2.2" + dependencies: + "emoji-regex" "^8.0.0" + "is-fullwidth-code-point" "^3.0.0" + "strip-ansi" "^6.0.0" + +"string.prototype.matchall@^4.0.5": + "integrity" "sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q==" + "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz" + "version" "4.0.5" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.2" + "get-intrinsic" "^1.1.1" + "has-symbols" "^1.0.2" + "internal-slot" "^1.0.3" + "regexp.prototype.flags" "^1.3.1" + "side-channel" "^1.0.4" + +"string.prototype.trimend@^1.0.4": + "integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" + "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + +"string.prototype.trimstart@^1.0.4": + "integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" + "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + +"stringify-object@^3.3.0": + "integrity" "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + "resolved" "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz" + "version" "3.3.0" + dependencies: + "get-own-enumerable-property-symbols" "^3.0.0" + "is-obj" "^1.0.1" + "is-regexp" "^1.0.0" + +"strip-ansi@^3.0.0", "strip-ansi@^3.0.1": + "integrity" "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "ansi-regex" "^2.0.0" + +"strip-ansi@^5.0.0": + "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "ansi-regex" "^4.1.0" + +"strip-ansi@^5.1.0": + "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "ansi-regex" "^4.1.0" + +"strip-ansi@^5.2.0": + "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "ansi-regex" "^4.1.0" + +"strip-ansi@^6.0.0", "strip-ansi@6.0.0": + "integrity" "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "ansi-regex" "^5.0.0" + +"strip-bom@^2.0.0": + "integrity" "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=" + "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "is-utf8" "^0.2.0" + +"strip-bom@^3.0.0": + "integrity" "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" + "version" "3.0.0" + +"strip-bom@^4.0.0": + "integrity" "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" + "version" "4.0.0" + +"strip-comments@^1.0.2": + "integrity" "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==" + "resolved" "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "babel-extract-comments" "^1.0.0" + "babel-plugin-transform-object-rest-spread" "^6.26.0" + +"strip-eof@^1.0.0": + "integrity" "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + "resolved" "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" + "version" "1.0.0" + +"strip-final-newline@^2.0.0": + "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" + "version" "2.0.0" + +"strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1": + "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + "version" "3.1.1" + +"style-loader@1.3.0": + "integrity" "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==" + "resolved" "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "loader-utils" "^2.0.0" + "schema-utils" "^2.7.0" + +"style-to-js@1.1.0": + "integrity" "sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA==" + "resolved" "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "style-to-object" "0.3.0" + +"style-to-object@0.3.0": + "integrity" "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" + "resolved" "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "inline-style-parser" "0.1.1" + +"styled-components@^4.0.0 || ^5.0.0", "styled-components@^5.3.1", "styled-components@>= 2": + "integrity" "sha512-JThv2JRzyH0NOIURrk9iskdxMSAAtCfj/b2Sf1WJaCUsloQkblepy1jaCLX/bYE+mhYo3unmwVSI9I5d9ncSiQ==" + "resolved" "https://registry.npmjs.org/styled-components/-/styled-components-5.3.1.tgz" + "version" "5.3.1" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/traverse" "^7.4.5" + "@emotion/is-prop-valid" "^0.8.8" + "@emotion/stylis" "^0.8.4" + "@emotion/unitless" "^0.7.4" + "babel-plugin-styled-components" ">= 1.12.0" + "css-to-react-native" "^3.0.0" + "hoist-non-react-statics" "^3.0.0" + "shallowequal" "^1.1.0" + "supports-color" "^5.5.0" + +"stylehacks@^4.0.0": + "integrity" "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==" + "resolved" "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "postcss" "^7.0.0" + "postcss-selector-parser" "^3.0.0" + +"stylis@^4.0.3": + "integrity" "sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg==" + "resolved" "https://registry.npmjs.org/stylis/-/stylis-4.0.10.tgz" + "version" "4.0.10" + +"supports-color@^5.3.0": + "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "has-flag" "^3.0.0" + +"supports-color@^5.5.0": + "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "has-flag" "^3.0.0" + +"supports-color@^6.1.0": + "integrity" "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "has-flag" "^3.0.0" + +"supports-color@^7.0.0", "supports-color@^7.1.0": + "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + "version" "7.2.0" + dependencies: + "has-flag" "^4.0.0" + +"supports-hyperlinks@^2.0.0": + "integrity" "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" + "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "has-flag" "^4.0.0" + "supports-color" "^7.0.0" + +"sver-compat@^1.5.0": + "integrity" "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=" + "resolved" "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "es6-iterator" "^2.0.1" + "es6-symbol" "^3.1.1" + +"svg-parser@^2.0.2": + "integrity" "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + "resolved" "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz" + "version" "2.0.4" + +"svgo@^1.0.0", "svgo@^1.2.2": + "integrity" "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==" + "resolved" "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "chalk" "^2.4.1" + "coa" "^2.0.2" + "css-select" "^2.0.0" + "css-select-base-adapter" "^0.1.1" + "css-tree" "1.0.0-alpha.37" + "csso" "^4.0.2" + "js-yaml" "^3.13.1" + "mkdirp" "~0.5.1" + "object.values" "^1.1.0" + "sax" "~1.2.4" + "stable" "^0.1.8" + "unquote" "~1.1.1" + "util.promisify" "~1.0.0" + +"symbol-tree@^3.2.4": + "integrity" "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + "resolved" "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" + "version" "3.2.4" + +"table@^6.0.9": + "integrity" "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==" + "resolved" "https://registry.npmjs.org/table/-/table-6.7.1.tgz" + "version" "6.7.1" + dependencies: + "ajv" "^8.0.1" + "lodash.clonedeep" "^4.5.0" + "lodash.truncate" "^4.4.2" + "slice-ansi" "^4.0.0" + "string-width" "^4.2.0" + "strip-ansi" "^6.0.0" + +"tapable@^1.0.0", "tapable@^1.1.3": + "integrity" "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + "resolved" "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" + "version" "1.1.3" + +"tar@^6.0.2": + "integrity" "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + "resolved" "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz" + "version" "6.1.11" + dependencies: + "chownr" "^2.0.0" + "fs-minipass" "^2.0.0" + "minipass" "^3.0.0" + "minizlib" "^2.1.1" + "mkdirp" "^1.0.3" + "yallist" "^4.0.0" + +"temp-dir@^1.0.0": + "integrity" "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=" + "resolved" "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz" + "version" "1.0.0" + +"tempy@^0.3.0": + "integrity" "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==" + "resolved" "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "temp-dir" "^1.0.0" + "type-fest" "^0.3.1" + "unique-string" "^1.0.0" + +"terminal-link@^2.0.0": + "integrity" "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" + "resolved" "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "ansi-escapes" "^4.2.1" + "supports-hyperlinks" "^2.0.0" + +"terser-webpack-plugin@^1.4.3": + "integrity" "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==" + "resolved" "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz" + "version" "1.4.5" + dependencies: + "cacache" "^12.0.2" + "find-cache-dir" "^2.1.0" + "is-wsl" "^1.1.0" + "schema-utils" "^1.0.0" + "serialize-javascript" "^4.0.0" + "source-map" "^0.6.1" + "terser" "^4.1.2" + "webpack-sources" "^1.4.0" + "worker-farm" "^1.7.0" + +"terser-webpack-plugin@4.2.3": + "integrity" "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==" + "resolved" "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz" + "version" "4.2.3" + dependencies: + "cacache" "^15.0.5" + "find-cache-dir" "^3.3.1" + "jest-worker" "^26.5.0" + "p-limit" "^3.0.2" + "schema-utils" "^3.0.0" + "serialize-javascript" "^5.0.1" + "source-map" "^0.6.1" + "terser" "^5.3.4" + "webpack-sources" "^1.4.3" + +"terser@^4.1.2", "terser@^4.6.2", "terser@^4.6.3": + "integrity" "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==" + "resolved" "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz" + "version" "4.8.0" + dependencies: + "commander" "^2.20.0" + "source-map" "~0.6.1" + "source-map-support" "~0.5.12" + +"terser@^5.3.4": + "integrity" "sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw==" + "resolved" "https://registry.npmjs.org/terser/-/terser-5.7.2.tgz" + "version" "5.7.2" + dependencies: + "commander" "^2.20.0" + "source-map" "~0.7.2" + "source-map-support" "~0.5.19" + +"test-exclude@^6.0.0": + "integrity" "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + "resolved" "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "@istanbuljs/schema" "^0.1.2" + "glob" "^7.1.4" + "minimatch" "^3.0.4" + +"text-table@^0.2.0", "text-table@0.2.0": + "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + "version" "0.2.0" + +"throat@^5.0.0": + "integrity" "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + "resolved" "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz" + "version" "5.0.0" + +"through2-filter@^3.0.0": + "integrity" "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==" + "resolved" "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "through2" "~2.0.0" + "xtend" "~4.0.0" + +"through2@^2.0.0", "through2@^2.0.1", "through2@^2.0.3", "through2@~2.0.0": + "integrity" "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + "resolved" "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" + "version" "2.0.5" + dependencies: + "readable-stream" "~2.3.6" + "xtend" "~4.0.1" + +"thunky@^1.0.2": + "integrity" "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + "resolved" "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" + "version" "1.1.0" + +"time-stamp@^1.0.0": + "integrity" "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" + "resolved" "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz" + "version" "1.1.0" + +"timers-browserify@^2.0.4": + "integrity" "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==" + "resolved" "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz" + "version" "2.0.12" + dependencies: + "setimmediate" "^1.0.4" + +"timsort@^0.3.0": + "integrity" "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + "resolved" "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz" + "version" "0.3.0" + +"tiny-invariant@^1.0.2": + "integrity" "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz" + "version" "1.1.0" + +"tiny-warning@^1.0.0", "tiny-warning@^1.0.2", "tiny-warning@^1.0.3": + "integrity" "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "resolved" "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" + "version" "1.0.3" + +"tmpl@1.0.x": + "integrity" "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" + "resolved" "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz" + "version" "1.0.4" + +"to-absolute-glob@^2.0.0": + "integrity" "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=" + "resolved" "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "is-absolute" "^1.0.0" + "is-negated-glob" "^1.0.0" + +"to-arraybuffer@^1.0.0": + "integrity" "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + "resolved" "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz" + "version" "1.0.1" + +"to-fast-properties@^2.0.0": + "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" + "version" "2.0.0" + +"to-object-path@^0.3.0": + "integrity" "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" + "resolved" "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "kind-of" "^3.0.2" + +"to-regex-range@^2.1.0": + "integrity" "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" + "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "is-number" "^3.0.0" + "repeat-string" "^1.6.1" + +"to-regex-range@^5.0.1": + "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "is-number" "^7.0.0" + +"to-regex@^3.0.1", "to-regex@^3.0.2": + "integrity" "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" + "resolved" "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "regex-not" "^1.0.2" + "safe-regex" "^1.1.0" + +"to-through@^2.0.0": + "integrity" "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=" + "resolved" "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "through2" "^2.0.3" + +"toidentifier@1.0.0": + "integrity" "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz" + "version" "1.0.0" + +"tough-cookie@^4.0.0": + "integrity" "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==" + "resolved" "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "psl" "^1.1.33" + "punycode" "^2.1.1" + "universalify" "^0.1.2" + +"tr46@^2.1.0": + "integrity" "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==" + "resolved" "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "punycode" "^2.1.1" + +"tryer@^1.0.1": + "integrity" "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + "resolved" "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz" + "version" "1.0.1" + +"ts-pnp@^1.1.6", "ts-pnp@1.2.0": + "integrity" "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + "resolved" "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz" + "version" "1.2.0" + +"tsconfig-paths@^3.11.0": + "integrity" "sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==" + "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz" + "version" "3.11.0" + dependencies: + "@types/json5" "^0.0.29" + "json5" "^1.0.1" + "minimist" "^1.2.0" + "strip-bom" "^3.0.0" + +"tslib@^1.8.1": + "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + "version" "1.14.1" + +"tslib@^2.0.3": + "integrity" "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz" + "version" "2.3.1" + +"tsutils@^3.17.1", "tsutils@^3.21.0": + "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" + "version" "3.21.0" + dependencies: + "tslib" "^1.8.1" + +"tty-browserify@0.0.0": + "integrity" "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + "resolved" "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz" + "version" "0.0.0" + +"type-check@^0.4.0": + "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" + "version" "0.4.0" + dependencies: + "prelude-ls" "^1.2.1" + +"type-check@~0.3.2": + "integrity" "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" + "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" + "version" "0.3.2" + dependencies: + "prelude-ls" "~1.1.2" + +"type-check@~0.4.0": + "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" + "version" "0.4.0" + dependencies: + "prelude-ls" "^1.2.1" + +"type-detect@4.0.8": + "integrity" "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + "resolved" "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" + "version" "4.0.8" + +"type-fest@^0.13.1", "type-fest@^0.8.1": + "integrity" "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" + "version" "0.8.1" + +"type-fest@^0.20.2": + "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" + "version" "0.20.2" + +"type-fest@^0.21.3": + "integrity" "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" + "version" "0.21.3" + +"type-fest@^0.3.1": + "integrity" "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz" + "version" "0.3.1" + +"type-fest@^0.6.0": + "integrity" "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" + "version" "0.6.0" + +"type-is@~1.6.17", "type-is@~1.6.18": + "integrity" "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + "resolved" "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" + "version" "1.6.18" + dependencies: + "media-typer" "0.3.0" + "mime-types" "~2.1.24" + +"type@^1.0.1": + "integrity" "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "resolved" "https://registry.npmjs.org/type/-/type-1.2.0.tgz" + "version" "1.2.0" + +"type@^2.5.0": + "integrity" "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" + "resolved" "https://registry.npmjs.org/type/-/type-2.5.0.tgz" + "version" "2.5.0" + +"typedarray-to-buffer@^3.1.5": + "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + "resolved" "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" + "version" "3.1.5" + dependencies: + "is-typedarray" "^1.0.0" + +"typedarray@^0.0.6": + "integrity" "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + "resolved" "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" + "version" "0.0.6" + +"typescript@^3.2.1 || ^4", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", "typescript@4.2.4": + "integrity" "sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==" + "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz" + "version" "4.2.4" + +"unbox-primitive@^1.0.1": + "integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" + "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "function-bind" "^1.1.1" + "has-bigints" "^1.0.1" + "has-symbols" "^1.0.2" + "which-boxed-primitive" "^1.0.2" + +"unc-path-regex@^0.1.2": + "integrity" "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" + "resolved" "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz" + "version" "0.1.2" + +"undertaker-registry@^1.0.0": + "integrity" "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" + "resolved" "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz" + "version" "1.0.1" + +"undertaker@^1.2.1": + "integrity" "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==" + "resolved" "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "arr-flatten" "^1.0.1" + "arr-map" "^2.0.0" + "bach" "^1.0.0" + "collection-map" "^1.0.0" + "es6-weak-map" "^2.0.1" + "fast-levenshtein" "^1.0.0" + "last-run" "^1.1.0" + "object.defaults" "^1.0.0" + "object.reduce" "^1.0.0" + "undertaker-registry" "^1.0.0" + +"unicode-canonical-property-names-ecmascript@^1.0.4": + "integrity" "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + "version" "1.0.4" + +"unicode-match-property-ecmascript@^1.0.4": + "integrity" "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==" + "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "unicode-canonical-property-names-ecmascript" "^1.0.4" + "unicode-property-aliases-ecmascript" "^1.0.4" + +"unicode-match-property-value-ecmascript@^1.2.0": + "integrity" "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz" + "version" "1.2.0" + +"unicode-property-aliases-ecmascript@^1.0.4": + "integrity" "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" + "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz" + "version" "1.1.0" + +"union-value@^1.0.0": + "integrity" "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==" + "resolved" "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "arr-union" "^3.1.0" + "get-value" "^2.0.6" + "is-extendable" "^0.1.1" + "set-value" "^2.0.1" + +"uniq@^1.0.1": + "integrity" "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + "resolved" "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz" + "version" "1.0.1" + +"uniqs@^2.0.0": + "integrity" "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + "resolved" "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz" + "version" "2.0.0" + +"unique-filename@^1.1.1": + "integrity" "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + "resolved" "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "unique-slug" "^2.0.0" + +"unique-slug@^2.0.0": + "integrity" "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + "resolved" "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "imurmurhash" "^0.1.4" + +"unique-stream@^2.0.2": + "integrity" "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==" + "resolved" "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz" + "version" "2.3.1" + dependencies: + "json-stable-stringify-without-jsonify" "^1.0.1" + "through2-filter" "^3.0.0" + +"unique-string@^1.0.0": + "integrity" "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=" + "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "crypto-random-string" "^1.0.0" + +"universalify@^0.1.0", "universalify@^0.1.2": + "integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" + "version" "0.1.2" + +"universalify@^2.0.0": + "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" + "version" "2.0.0" + +"unpipe@~1.0.0", "unpipe@1.0.0": + "integrity" "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + "version" "1.0.0" + +"unquote@~1.1.1": + "integrity" "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + "resolved" "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz" + "version" "1.1.1" + +"unset-value@^1.0.0": + "integrity" "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=" + "resolved" "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "has-value" "^0.3.1" + "isobject" "^3.0.0" + +"upath@^1.1.1", "upath@^1.1.2", "upath@^1.2.0": + "integrity" "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + "resolved" "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz" + "version" "1.2.0" + +"uri-js@^4.2.2": + "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + "version" "4.4.1" + dependencies: + "punycode" "^2.1.0" + +"urix@^0.1.0": + "integrity" "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + "resolved" "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz" + "version" "0.1.0" + +"url-loader@4.1.1": + "integrity" "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + "resolved" "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "loader-utils" "^2.0.0" + "mime-types" "^2.1.27" + "schema-utils" "^3.0.0" + +"url-parse@^1.4.3", "url-parse@^1.5.3": + "integrity" "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==" + "resolved" "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz" + "version" "1.5.3" + dependencies: + "querystringify" "^2.1.1" + "requires-port" "^1.0.0" + +"url@^0.11.0": + "integrity" "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=" + "resolved" "https://registry.npmjs.org/url/-/url-0.11.0.tgz" + "version" "0.11.0" + dependencies: + "punycode" "1.3.2" + "querystring" "0.2.0" + +"use@^3.1.0": + "integrity" "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + "resolved" "https://registry.npmjs.org/use/-/use-3.1.1.tgz" + "version" "3.1.1" + +"util-deprecate@^1.0.1", "util-deprecate@^1.0.2", "util-deprecate@~1.0.1": + "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "version" "1.0.2" + +"util.promisify@~1.0.0": + "integrity" "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==" + "resolved" "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "define-properties" "^1.1.3" + "es-abstract" "^1.17.2" + "has-symbols" "^1.0.1" + "object.getownpropertydescriptors" "^2.1.0" + +"util.promisify@1.0.0": + "integrity" "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==" + "resolved" "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "define-properties" "^1.1.2" + "object.getownpropertydescriptors" "^2.0.3" + +"util@^0.11.0": + "integrity" "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==" + "resolved" "https://registry.npmjs.org/util/-/util-0.11.1.tgz" + "version" "0.11.1" + dependencies: + "inherits" "2.0.3" + +"util@0.10.3": + "integrity" "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" + "resolved" "https://registry.npmjs.org/util/-/util-0.10.3.tgz" + "version" "0.10.3" + dependencies: + "inherits" "2.0.1" + +"utila@~0.4": + "integrity" "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "resolved" "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" + "version" "0.4.0" + +"utils-merge@1.0.1": + "integrity" "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + "resolved" "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" + "version" "1.0.1" + +"uuid@^3.3.2", "uuid@^3.4.0": + "integrity" "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + "resolved" "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" + "version" "3.4.0" + +"uuid@^8.3.0": + "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + "version" "8.3.2" + +"v8-compile-cache@^2.0.3": + "integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz" + "version" "2.3.0" + +"v8-to-istanbul@^7.0.0": + "integrity" "sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==" + "resolved" "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz" + "version" "7.1.2" + dependencies: + "@types/istanbul-lib-coverage" "^2.0.1" + "convert-source-map" "^1.6.0" + "source-map" "^0.7.3" + +"v8flags@^3.2.0": + "integrity" "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==" + "resolved" "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz" + "version" "3.2.0" + dependencies: + "homedir-polyfill" "^1.0.1" + +"validate-npm-package-license@^3.0.1": + "integrity" "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + "resolved" "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "spdx-correct" "^3.0.0" + "spdx-expression-parse" "^3.0.0" + +"value-equal@^1.0.1": + "integrity" "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + "resolved" "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz" + "version" "1.0.1" + +"value-or-function@^3.0.0": + "integrity" "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" + "resolved" "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz" + "version" "3.0.0" + +"vary@~1.1.2": + "integrity" "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "resolved" "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" + "version" "1.1.2" + +"vendors@^1.0.0": + "integrity" "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" + "resolved" "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz" + "version" "1.0.4" + +"vinyl-fs@^3.0.0": + "integrity" "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==" + "resolved" "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "fs-mkdirp-stream" "^1.0.0" + "glob-stream" "^6.1.0" + "graceful-fs" "^4.0.0" + "is-valid-glob" "^1.0.0" + "lazystream" "^1.0.0" + "lead" "^1.0.0" + "object.assign" "^4.0.4" + "pumpify" "^1.3.5" + "readable-stream" "^2.3.3" + "remove-bom-buffer" "^3.0.0" + "remove-bom-stream" "^1.2.0" + "resolve-options" "^1.1.0" + "through2" "^2.0.0" + "to-through" "^2.0.0" + "value-or-function" "^3.0.0" + "vinyl" "^2.0.0" + "vinyl-sourcemap" "^1.1.0" + +"vinyl-sourcemap@^1.1.0": + "integrity" "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=" + "resolved" "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "append-buffer" "^1.0.2" + "convert-source-map" "^1.5.0" + "graceful-fs" "^4.1.6" + "normalize-path" "^2.1.1" + "now-and-later" "^2.0.0" + "remove-bom-buffer" "^3.0.0" + "vinyl" "^2.0.0" + +"vinyl@^2.0.0": + "integrity" "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==" + "resolved" "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz" + "version" "2.2.1" + dependencies: + "clone" "^2.1.1" + "clone-buffer" "^1.0.0" + "clone-stats" "^1.0.0" + "cloneable-readable" "^1.0.0" + "remove-trailing-separator" "^1.0.1" + "replace-ext" "^1.0.0" + +"vm-browserify@^1.0.1": + "integrity" "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "resolved" "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz" + "version" "1.1.2" + +"w3c-hr-time@^1.0.2": + "integrity" "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==" + "resolved" "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "browser-process-hrtime" "^1.0.0" + +"w3c-xmlserializer@^2.0.0": + "integrity" "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==" + "resolved" "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "xml-name-validator" "^3.0.0" + +"walker@^1.0.7", "walker@~1.0.5": + "integrity" "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=" + "resolved" "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz" + "version" "1.0.7" + dependencies: + "makeerror" "1.0.x" + +"warning@^4.0.1": + "integrity" "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==" + "resolved" "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "loose-envify" "^1.0.0" + +"watchpack-chokidar2@^2.0.1": + "integrity" "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==" + "resolved" "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "chokidar" "^2.1.8" + +"watchpack@^1.7.4": + "integrity" "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==" + "resolved" "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz" + "version" "1.7.5" + dependencies: + "graceful-fs" "^4.1.2" + "neo-async" "^2.5.0" + optionalDependencies: + "chokidar" "^3.4.1" + "watchpack-chokidar2" "^2.0.1" + +"wbuf@^1.1.0", "wbuf@^1.7.3": + "integrity" "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + "resolved" "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" + "version" "1.7.3" + dependencies: + "minimalistic-assert" "^1.0.0" + +"webidl-conversions@^5.0.0": + "integrity" "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" + "version" "5.0.0" + +"webidl-conversions@^6.1.0": + "integrity" "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz" + "version" "6.1.0" + +"webpack-dev-middleware@^3.7.2": + "integrity" "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==" + "resolved" "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz" + "version" "3.7.3" + dependencies: + "memory-fs" "^0.4.1" + "mime" "^2.4.4" + "mkdirp" "^0.5.1" + "range-parser" "^1.2.1" + "webpack-log" "^2.0.0" + +"webpack-dev-server@3.11.1", "webpack-dev-server@3.x": + "integrity" "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==" + "resolved" "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz" + "version" "3.11.1" + dependencies: + "ansi-html" "0.0.7" + "bonjour" "^3.5.0" + "chokidar" "^2.1.8" + "compression" "^1.7.4" + "connect-history-api-fallback" "^1.6.0" + "debug" "^4.1.1" + "del" "^4.1.1" + "express" "^4.17.1" + "html-entities" "^1.3.1" + "http-proxy-middleware" "0.19.1" + "import-local" "^2.0.0" + "internal-ip" "^4.3.0" + "ip" "^1.1.5" + "is-absolute-url" "^3.0.3" + "killable" "^1.0.1" + "loglevel" "^1.6.8" + "opn" "^5.5.0" + "p-retry" "^3.0.1" + "portfinder" "^1.0.26" + "schema-utils" "^1.0.0" + "selfsigned" "^1.10.8" + "semver" "^6.3.0" + "serve-index" "^1.9.1" + "sockjs" "^0.3.21" + "sockjs-client" "^1.5.0" + "spdy" "^4.0.2" + "strip-ansi" "^3.0.1" + "supports-color" "^6.1.0" + "url" "^0.11.0" + "webpack-dev-middleware" "^3.7.2" + "webpack-log" "^2.0.0" + "ws" "^6.2.1" + "yargs" "^13.3.2" + +"webpack-log@^2.0.0": + "integrity" "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==" + "resolved" "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "ansi-colors" "^3.0.0" + "uuid" "^3.3.2" + +"webpack-manifest-plugin@2.2.0": + "integrity" "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==" + "resolved" "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "fs-extra" "^7.0.0" + "lodash" ">=3.5 <5" + "object.entries" "^1.1.0" + "tapable" "^1.0.0" + +"webpack-sources@^1.1.0", "webpack-sources@^1.3.0", "webpack-sources@^1.4.0", "webpack-sources@^1.4.1", "webpack-sources@^1.4.3": + "integrity" "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==" + "resolved" "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz" + "version" "1.4.3" + dependencies: + "source-list-map" "^2.0.0" + "source-map" "~0.6.1" + +"webpack@^4.0.0", "webpack@^4.0.0 || ^5.0.0", "webpack@^4.27.0 || ^5.0.0", "webpack@^4.36.0 || ^5.0.0", "webpack@^4.4.0 || ^5.0.0", "webpack@>=2", "webpack@>=4.43.0 <6.0.0", "webpack@2 || 3 || 4", "webpack@4.44.2": + "integrity" "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==" + "resolved" "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz" + "version" "4.44.2" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/wasm-edit" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + "acorn" "^6.4.1" + "ajv" "^6.10.2" + "ajv-keywords" "^3.4.1" + "chrome-trace-event" "^1.0.2" + "enhanced-resolve" "^4.3.0" + "eslint-scope" "^4.0.3" + "json-parse-better-errors" "^1.0.2" + "loader-runner" "^2.4.0" + "loader-utils" "^1.2.3" + "memory-fs" "^0.4.1" + "micromatch" "^3.1.10" + "mkdirp" "^0.5.3" + "neo-async" "^2.6.1" + "node-libs-browser" "^2.2.1" + "schema-utils" "^1.0.0" + "tapable" "^1.1.3" + "terser-webpack-plugin" "^1.4.3" + "watchpack" "^1.7.4" + "webpack-sources" "^1.4.1" + +"websocket-driver@^0.7.4", "websocket-driver@>=0.5.1": + "integrity" "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + "resolved" "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" + "version" "0.7.4" + dependencies: + "http-parser-js" ">=0.5.1" + "safe-buffer" ">=5.1.0" + "websocket-extensions" ">=0.1.1" + +"websocket-extensions@>=0.1.1": + "integrity" "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + "resolved" "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" + "version" "0.1.4" + +"whatwg-encoding@^1.0.5": + "integrity" "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==" + "resolved" "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "iconv-lite" "0.4.24" + +"whatwg-fetch@^3.4.1": + "integrity" "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz" + "version" "3.6.2" + +"whatwg-mimetype@^2.3.0": + "integrity" "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + "resolved" "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" + "version" "2.3.0" + +"whatwg-url@^8.0.0", "whatwg-url@^8.5.0": + "integrity" "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==" + "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz" + "version" "8.7.0" + dependencies: + "lodash" "^4.7.0" + "tr46" "^2.1.0" + "webidl-conversions" "^6.1.0" + +"which-boxed-primitive@^1.0.2": + "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "is-bigint" "^1.0.1" + "is-boolean-object" "^1.1.0" + "is-number-object" "^1.0.4" + "is-string" "^1.0.5" + "is-symbol" "^1.0.3" + +"which-module@^1.0.0": + "integrity" "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + "resolved" "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz" + "version" "1.0.0" + +"which-module@^2.0.0": + "integrity" "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" + "version" "2.0.0" + +"which@^1.2.14", "which@^1.2.9", "which@^1.3.1": + "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + "version" "1.3.1" + dependencies: + "isexe" "^2.0.0" + +"which@^2.0.1": + "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "isexe" "^2.0.0" + +"which@^2.0.2": + "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "isexe" "^2.0.0" + +"word-wrap@^1.2.3", "word-wrap@~1.2.3": + "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" + "version" "1.2.3" + +"workbox-background-sync@^5.1.4": + "integrity" "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==" + "resolved" "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-broadcast-update@^5.1.4": + "integrity" "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==" + "resolved" "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-build@^5.1.4": + "integrity" "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==" + "resolved" "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "@babel/core" "^7.8.4" + "@babel/preset-env" "^7.8.4" + "@babel/runtime" "^7.8.4" + "@hapi/joi" "^15.1.0" + "@rollup/plugin-node-resolve" "^7.1.1" + "@rollup/plugin-replace" "^2.3.1" + "@surma/rollup-plugin-off-main-thread" "^1.1.1" + "common-tags" "^1.8.0" + "fast-json-stable-stringify" "^2.1.0" + "fs-extra" "^8.1.0" + "glob" "^7.1.6" + "lodash.template" "^4.5.0" + "pretty-bytes" "^5.3.0" + "rollup" "^1.31.1" + "rollup-plugin-babel" "^4.3.3" + "rollup-plugin-terser" "^5.3.1" + "source-map" "^0.7.3" + "source-map-url" "^0.4.0" + "stringify-object" "^3.3.0" + "strip-comments" "^1.0.2" + "tempy" "^0.3.0" + "upath" "^1.2.0" + "workbox-background-sync" "^5.1.4" + "workbox-broadcast-update" "^5.1.4" + "workbox-cacheable-response" "^5.1.4" + "workbox-core" "^5.1.4" + "workbox-expiration" "^5.1.4" + "workbox-google-analytics" "^5.1.4" + "workbox-navigation-preload" "^5.1.4" + "workbox-precaching" "^5.1.4" + "workbox-range-requests" "^5.1.4" + "workbox-routing" "^5.1.4" + "workbox-strategies" "^5.1.4" + "workbox-streams" "^5.1.4" + "workbox-sw" "^5.1.4" + "workbox-window" "^5.1.4" + +"workbox-cacheable-response@^5.1.4": + "integrity" "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==" + "resolved" "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-core@^5.1.4": + "integrity" "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + "resolved" "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz" + "version" "5.1.4" + +"workbox-expiration@^5.1.4": + "integrity" "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==" + "resolved" "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-google-analytics@^5.1.4": + "integrity" "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==" + "resolved" "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-background-sync" "^5.1.4" + "workbox-core" "^5.1.4" + "workbox-routing" "^5.1.4" + "workbox-strategies" "^5.1.4" + +"workbox-navigation-preload@^5.1.4": + "integrity" "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==" + "resolved" "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-precaching@^5.1.4": + "integrity" "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==" + "resolved" "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-range-requests@^5.1.4": + "integrity" "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==" + "resolved" "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-routing@^5.1.4": + "integrity" "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==" + "resolved" "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-strategies@^5.1.4": + "integrity" "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==" + "resolved" "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + "workbox-routing" "^5.1.4" + +"workbox-streams@^5.1.4": + "integrity" "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==" + "resolved" "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + "workbox-routing" "^5.1.4" + +"workbox-sw@^5.1.4": + "integrity" "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + "resolved" "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz" + "version" "5.1.4" + +"workbox-webpack-plugin@5.1.4": + "integrity" "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==" + "resolved" "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "@babel/runtime" "^7.5.5" + "fast-json-stable-stringify" "^2.0.0" + "source-map-url" "^0.4.0" + "upath" "^1.1.2" + "webpack-sources" "^1.3.0" + "workbox-build" "^5.1.4" + +"workbox-window@^5.1.4": + "integrity" "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==" + "resolved" "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"worker-farm@^1.7.0": + "integrity" "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==" + "resolved" "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz" + "version" "1.7.0" + dependencies: + "errno" "~0.1.7" + +"worker-rpc@^0.1.0": + "integrity" "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==" + "resolved" "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz" + "version" "0.1.1" + dependencies: + "microevent.ts" "~0.1.1" + +"wrap-ansi@^2.0.0": + "integrity" "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "string-width" "^1.0.1" + "strip-ansi" "^3.0.1" + +"wrap-ansi@^5.1.0": + "integrity" "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz" + "version" "5.1.0" + dependencies: + "ansi-styles" "^3.2.0" + "string-width" "^3.0.0" + "strip-ansi" "^5.0.0" + +"wrap-ansi@^6.2.0": + "integrity" "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" + "version" "6.2.0" + dependencies: + "ansi-styles" "^4.0.0" + "string-width" "^4.1.0" + "strip-ansi" "^6.0.0" + +"wrappy@1": + "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + "version" "1.0.2" + +"write-file-atomic@^3.0.0": + "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "imurmurhash" "^0.1.4" + "is-typedarray" "^1.0.0" + "signal-exit" "^3.0.2" + "typedarray-to-buffer" "^3.1.5" + +"ws@^6.2.1": + "integrity" "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==" + "resolved" "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz" + "version" "6.2.2" + dependencies: + "async-limiter" "~1.0.0" + +"ws@^7.4.6": + "integrity" "sha512-zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg==" + "resolved" "https://registry.npmjs.org/ws/-/ws-7.5.4.tgz" + "version" "7.5.4" + +"xml-name-validator@^3.0.0": + "integrity" "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + "resolved" "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" + "version" "3.0.0" + +"xmlchars@^2.2.0": + "integrity" "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + "resolved" "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" + "version" "2.2.0" + +"xtend@^4.0.0", "xtend@~4.0.0", "xtend@~4.0.1": + "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" + "version" "4.0.2" + +"y18n@^3.2.1": + "integrity" "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" + "resolved" "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz" + "version" "3.2.2" + +"y18n@^4.0.0": + "integrity" "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + "resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" + "version" "4.0.3" + +"yallist@^3.0.2": + "integrity" "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "resolved" "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" + "version" "3.1.1" + +"yallist@^4.0.0": + "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + "version" "4.0.0" + +"yaml@^1.10.0", "yaml@^1.7.2": + "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" + "version" "1.10.2" + +"yargs-parser@^13.1.2": + "integrity" "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==" + "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz" + "version" "13.1.2" + dependencies: + "camelcase" "^5.0.0" + "decamelize" "^1.2.0" + +"yargs-parser@^18.1.2": + "integrity" "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" + "version" "18.1.3" + dependencies: + "camelcase" "^5.0.0" + "decamelize" "^1.2.0" + +"yargs-parser@^5.0.1": + "integrity" "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==" + "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "camelcase" "^3.0.0" + "object.assign" "^4.1.0" + +"yargs@^13.3.2": + "integrity" "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==" + "resolved" "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz" + "version" "13.3.2" + dependencies: + "cliui" "^5.0.0" + "find-up" "^3.0.0" + "get-caller-file" "^2.0.1" + "require-directory" "^2.1.1" + "require-main-filename" "^2.0.0" + "set-blocking" "^2.0.0" + "string-width" "^3.0.0" + "which-module" "^2.0.0" + "y18n" "^4.0.0" + "yargs-parser" "^13.1.2" + +"yargs@^15.4.1": + "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" + "version" "15.4.1" + dependencies: + "cliui" "^6.0.0" + "decamelize" "^1.2.0" + "find-up" "^4.1.0" + "get-caller-file" "^2.0.1" + "require-directory" "^2.1.1" + "require-main-filename" "^2.0.0" + "set-blocking" "^2.0.0" + "string-width" "^4.2.0" + "which-module" "^2.0.0" + "y18n" "^4.0.0" + "yargs-parser" "^18.1.2" + +"yargs@^7.1.0": + "integrity" "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==" + "resolved" "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz" + "version" "7.1.2" + dependencies: + "camelcase" "^3.0.0" + "cliui" "^3.2.0" + "decamelize" "^1.1.1" + "get-caller-file" "^1.0.1" + "os-locale" "^1.4.0" + "read-pkg-up" "^1.0.1" + "require-directory" "^2.1.1" + "require-main-filename" "^1.0.1" + "set-blocking" "^2.0.0" + "string-width" "^1.0.2" + "which-module" "^1.0.0" + "y18n" "^3.2.1" + "yargs-parser" "^5.0.1" + +"yocto-queue@^0.1.0": + "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" + "version" "0.1.0"