updated api mocks and new appeal pages
This commit is contained in:
Vendored
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
"type": "pwa-chrome",
|
"type": "pwa-chrome",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch Chrome against localhost",
|
"name": "Launch Chrome against localhost",
|
||||||
"url": "https://localhost:3000",
|
"url": "http://localhost:3000",
|
||||||
"webRoot": "${workspaceFolder}"
|
"webRoot": "${workspaceFolder}"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
+122
-86
@@ -1,80 +1,115 @@
|
|||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import https from 'https';
|
import https from "https";
|
||||||
//import {XMLHttpRequest} from 'xmlhttprequest';
|
//import {XMLHttpRequest} from 'xmlhttprequest';
|
||||||
|
|
||||||
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0
|
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
|
||||||
|
|
||||||
|
|
||||||
const agent = new https.Agent({
|
const agent = new https.Agent({
|
||||||
rejectUnauthorized: false,
|
rejectUnauthorized: false,
|
||||||
})
|
});
|
||||||
const crmHeaders = {
|
const crmHeaders = {
|
||||||
withCredentials: true,
|
withCredentials: true,
|
||||||
headers:{
|
headers: {
|
||||||
"Content-Type": "application/json; charset=utf-8",
|
"Content-Type": "application/json; charset=utf-8",
|
||||||
"OData-MaxVersion": "4.0",
|
"OData-MaxVersion": "4.0",
|
||||||
"OData-Version": "4.0",
|
"OData-Version": "4.0",
|
||||||
"Accept": "application/json",
|
"Accept": "application/json",
|
||||||
"Prefer": "odata.include-annotations=\"*\"",
|
"Prefer": 'odata.include-annotations="*"',
|
||||||
agent
|
agent,
|
||||||
},
|
},
|
||||||
auth:{
|
auth: {
|
||||||
username: 'xm\bondr',
|
username: "xm\bondr",
|
||||||
password: '!Sky9fish1972'
|
password: "!Sky9fish1972",
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
export const getBasicSearch = (searchString) => {
|
export const getBasicSearch = (searchString) => {
|
||||||
console.log('got to axios', searchString)
|
console.log("got to axios", searchString);
|
||||||
|
|
||||||
|
return (
|
||||||
|
axios
|
||||||
|
//.get("https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/incidents?$select=_accountid_value,_customerid_value,pinswg_appealcasetype,statuscode,ticketnumber,title&$filter=contains(title, '" + searchString + "')&$count=true", crmHeaders)
|
||||||
|
//.get("https://jsonplaceholder.typicode.com/todos/1",{proxy:{protocol: 'http',host:'lon3.sme.zscloud.net',port: 80}})
|
||||||
|
.get("http://localhost:3000/api/searchresults2", {
|
||||||
|
httpsAgent: new https.Agent({ rejectUnauthorized: false }),
|
||||||
|
})
|
||||||
|
.then((res) => res.data)
|
||||||
|
.catch((error) => {
|
||||||
|
console.log("thiserror", error);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getFormData = (whichForm) => {
|
||||||
|
console.log("got to axios", whichForm);
|
||||||
|
|
||||||
return axios
|
return axios
|
||||||
//.get("https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/incidents?$select=_accountid_value,_customerid_value,pinswg_appealcasetype,statuscode,ticketnumber,title&$filter=contains(title, '" + searchString + "')&$count=true", crmHeaders)
|
.get("http://localhost:3000/api/pinswg_planningappeals78_appealform", {
|
||||||
//.get("https://jsonplaceholder.typicode.com/todos/1",{proxy:{protocol: 'http',host:'lon3.sme.zscloud.net',port: 80}})
|
httpsAgent: new https.Agent({ rejectUnauthorized: false }),
|
||||||
.get("https://localhost:3000/api/searchresults2",{httpsAgent: new https.Agent({rejectUnauthorized:false})})
|
})
|
||||||
.then((res)=>res.data)
|
.then((res) => res.data)
|
||||||
.catch((error)=>{
|
.catch((error) => {
|
||||||
console.log('thiserror',error)
|
console.log("thiserror", error);
|
||||||
})
|
});
|
||||||
}
|
|
||||||
|
|
||||||
export const getBasicSearch2 = (searchString) =>{
|
|
||||||
|
|
||||||
|
|
||||||
var req = new XMLHttpRequest();
|
|
||||||
req.open("GET", "https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/incidents?$select=_accountid_value,_customerid_value,pinswg_appealcasetype,statuscode,ticketnumber,title&$filter=contains(title, '"+ searchString +"')&$count=true", true);
|
|
||||||
req.setRequestHeader("OData-MaxVersion", "4.0");
|
|
||||||
req.setRequestHeader("OData-Version", "4.0");
|
|
||||||
req.setRequestHeader("Accept", "application/json");
|
|
||||||
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
|
|
||||||
req.setRequestHeader("Prefer", "odata.include-annotations=\"*\"");
|
|
||||||
req.onreadystatechange = function() {
|
|
||||||
if (this.readyState === 4) {
|
|
||||||
req.onreadystatechange = null;
|
|
||||||
if (this.status === 200) {
|
|
||||||
var results = JSON.parse(this.response);
|
|
||||||
var recordCount = results["@odata.count"];
|
|
||||||
for (var i = 0; i < results.value.length; i++) {
|
|
||||||
var _accountid_value = results.value[i]["_accountid_value"];
|
|
||||||
var _accountid_value_formatted = results.value[i]["_accountid_value@OData.Community.Display.V1.FormattedValue"];
|
|
||||||
var _accountid_value_lookuplogicalname = results.value[i]["_accountid_value@Microsoft.Dynamics.CRM.lookuplogicalname"];
|
|
||||||
var _customerid_value = results.value[i]["_customerid_value"];
|
|
||||||
var _customerid_value_formatted = results.value[i]["_customerid_value@OData.Community.Display.V1.FormattedValue"];
|
|
||||||
var _customerid_value_lookuplogicalname = results.value[i]["_customerid_value@Microsoft.Dynamics.CRM.lookuplogicalname"];
|
|
||||||
var pinswg_appealcasetype = results.value[i]["pinswg_appealcasetype"];
|
|
||||||
var pinswg_appealcasetype_formatted = results.value[i]["pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"];
|
|
||||||
var statuscode = results.value[i]["statuscode"];
|
|
||||||
var ticketnumber = results.value[i]["ticketnumber"];
|
|
||||||
var title = results.value[i]["title"];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log(this.statusText);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
return (req.send());
|
|
||||||
|
|
||||||
}
|
export const getBasicSearch2 = (searchString) => {
|
||||||
|
var req = new XMLHttpRequest();
|
||||||
|
req.open(
|
||||||
|
"GET",
|
||||||
|
"https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/incidents?$select=_accountid_value,_customerid_value,pinswg_appealcasetype,statuscode,ticketnumber,title&$filter=contains(title, '" +
|
||||||
|
searchString +
|
||||||
|
"')&$count=true",
|
||||||
|
true
|
||||||
|
);
|
||||||
|
req.setRequestHeader("OData-MaxVersion", "4.0");
|
||||||
|
req.setRequestHeader("OData-Version", "4.0");
|
||||||
|
req.setRequestHeader("Accept", "application/json");
|
||||||
|
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
|
||||||
|
req.setRequestHeader("Prefer", 'odata.include-annotations="*"');
|
||||||
|
req.onreadystatechange = function () {
|
||||||
|
if (this.readyState === 4) {
|
||||||
|
req.onreadystatechange = null;
|
||||||
|
if (this.status === 200) {
|
||||||
|
var results = JSON.parse(this.response);
|
||||||
|
var recordCount = results["@odata.count"];
|
||||||
|
for (var i = 0; i < results.value.length; i++) {
|
||||||
|
var _accountid_value = results.value[i]["_accountid_value"];
|
||||||
|
var _accountid_value_formatted =
|
||||||
|
results.value[i][
|
||||||
|
"_accountid_value@OData.Community.Display.V1.FormattedValue"
|
||||||
|
];
|
||||||
|
var _accountid_value_lookuplogicalname =
|
||||||
|
results.value[i][
|
||||||
|
"_accountid_value@Microsoft.Dynamics.CRM.lookuplogicalname"
|
||||||
|
];
|
||||||
|
var _customerid_value =
|
||||||
|
results.value[i]["_customerid_value"];
|
||||||
|
var _customerid_value_formatted =
|
||||||
|
results.value[i][
|
||||||
|
"_customerid_value@OData.Community.Display.V1.FormattedValue"
|
||||||
|
];
|
||||||
|
var _customerid_value_lookuplogicalname =
|
||||||
|
results.value[i][
|
||||||
|
"_customerid_value@Microsoft.Dynamics.CRM.lookuplogicalname"
|
||||||
|
];
|
||||||
|
var pinswg_appealcasetype =
|
||||||
|
results.value[i]["pinswg_appealcasetype"];
|
||||||
|
var pinswg_appealcasetype_formatted =
|
||||||
|
results.value[i][
|
||||||
|
"pinswg_appealcasetype@OData.Community.Display.V1.FormattedValue"
|
||||||
|
];
|
||||||
|
var statuscode = results.value[i]["statuscode"];
|
||||||
|
var ticketnumber = results.value[i]["ticketnumber"];
|
||||||
|
var title = results.value[i]["title"];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
console.log(this.statusText);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return req.send();
|
||||||
|
};
|
||||||
|
|
||||||
//get list of entitydefinitions
|
//get list of entitydefinitions
|
||||||
//https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/EntityDefinitions?$select=LogicalName
|
//https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/EntityDefinitions?$select=LogicalName
|
||||||
@@ -85,11 +120,11 @@ return (req.send());
|
|||||||
//get crm xml form for appealtype
|
//get crm xml form for appealtype
|
||||||
//https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/systemforms?$select=formid,name,formxml&$filter=(objecttypecode%20eq%20%27pinswg_dns%27and%20type%20eq%202)&$count=true
|
//https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/systemforms?$select=formid,name,formxml&$filter=(objecttypecode%20eq%20%27pinswg_dns%27and%20type%20eq%202)&$count=true
|
||||||
// then use regex to remove the escape
|
// then use regex to remove the escape
|
||||||
// convert xml to json and return
|
// convert xml to json and return
|
||||||
// promise example
|
// promise example
|
||||||
// var xml2js = require('xml2js');
|
// var xml2js = require('xml2js');
|
||||||
// var xml = '<foo></foo>';
|
// var xml = '<foo></foo>';
|
||||||
|
|
||||||
// // With parser
|
// // With parser
|
||||||
// var parser = new xml2js.Parser(/* options */);
|
// var parser = new xml2js.Parser(/* options */);
|
||||||
// parser.parseStringPromise(data).then(function (result) {
|
// parser.parseStringPromise(data).then(function (result) {
|
||||||
@@ -100,37 +135,38 @@ return (req.send());
|
|||||||
// // Failed
|
// // Failed
|
||||||
// });
|
// });
|
||||||
|
|
||||||
|
export const getAppealTypeDetail = (caseReference, appealcasetype) => {
|
||||||
|
console.log("got to axios", searchString);
|
||||||
|
|
||||||
|
|
||||||
export const getAppealTypeDetail = (caseReference,appealcasetype) =>{
|
|
||||||
console.log('got to axios', searchString)
|
|
||||||
// example appealcasetype type pinswg_householderappealhases
|
// example appealcasetype type pinswg_householderappealhases
|
||||||
return axios
|
return axios
|
||||||
.get("https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/" + appealcasetype + "?$filter=pinswg_name eq '" + caseReference + "'",{httpsAgent: new https.Agent({rejectUnauthorized:false})})
|
.get(
|
||||||
.then((res)=>res.data)
|
"https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/" +
|
||||||
.catch((error)=>{
|
appealcasetype +
|
||||||
console.log('thi serror',error)
|
"?$filter=pinswg_name eq '" +
|
||||||
})
|
caseReference +
|
||||||
|
"'",
|
||||||
}
|
{ httpsAgent: new https.Agent({ rejectUnauthorized: false }) }
|
||||||
|
)
|
||||||
|
.then((res) => res.data)
|
||||||
|
.catch((error) => {
|
||||||
|
console.log("thi serror", error);
|
||||||
|
});
|
||||||
|
};
|
||||||
//https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/pinswg_planningappeals78s?$filter=pinswg_name eq 'CAS-00015-L7J9H1'
|
//https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/pinswg_planningappeals78s?$filter=pinswg_name eq 'CAS-00015-L7J9H1'
|
||||||
|
|
||||||
export const getLPA = () =>{
|
export const getLPA = () => {
|
||||||
console.log('got to axios', searchString)
|
console.log("got to axios", searchString);
|
||||||
|
|
||||||
return axios
|
return axios
|
||||||
.get("https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/accounts?$select=name",{httpsAgent: new https.Agent({rejectUnauthorized:false})})
|
.get(
|
||||||
.then((res)=>res.data)
|
"https://devcrm2016.llcdt.gov.wales/DVPINS/api/data/v8.2/accounts?$select=name",
|
||||||
.catch((error)=>{
|
{ httpsAgent: new https.Agent({ rejectUnauthorized: false }) }
|
||||||
console.log('thi serror',error)
|
)
|
||||||
})
|
.then((res) => res.data)
|
||||||
|
.catch((error) => {
|
||||||
}
|
console.log("thi serror", error);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
// var req = new XMLHttpRequest();
|
// var req = new XMLHttpRequest();
|
||||||
// req.open("GET", Xrm.Page.context.getClientUrl() + "/api/data/v8.2/incidents?$select=_accountid_value,_customerid_value,pinswg_appealcasetype,statuscode,ticketnumber,title&$filter=contains(title, '000')&$count=true", true);
|
// req.open("GET", Xrm.Page.context.getClientUrl() + "/api/data/v8.2/incidents?$select=_accountid_value,_customerid_value,pinswg_appealcasetype,statuscode,ticketnumber,title&$filter=contains(title, '000')&$count=true", true);
|
||||||
@@ -163,4 +199,4 @@ export const getLPA = () =>{
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// };
|
// };
|
||||||
// req.send();
|
// req.send();
|
||||||
|
|||||||
@@ -3,24 +3,30 @@ import { useRouter } from "next/router";
|
|||||||
import useTranslation from "next-translate/useTranslation";
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
export default function MakeNewAppeal() {
|
export default function MakeNewAppeal() {
|
||||||
let { t } = useTranslation();
|
let { t } = useTranslation();
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { locale } = router;
|
const { locale } = router;
|
||||||
return (
|
return (
|
||||||
<div className="card card-3" id="casescomment-card">
|
<div className="card card-3" id="casescomment-card">
|
||||||
<div className="card-body">
|
<div className="card-body">
|
||||||
<h3 className="heading-small card-heading">
|
<h3 className="heading-small card-heading">
|
||||||
{t("myportal:makenewappeal-card-title")}
|
{t("myportal:makenewappeal-card-title")}
|
||||||
</h3>
|
</h3>
|
||||||
<p className="govuk-body-s">{t("myportal:makenewappeal-card-paragraph-one")}</p>
|
<p className="govuk-body-s">
|
||||||
<p className="govuk-body-s">{t("myportal:makenewappeal-card-paragraph-two")}</p>
|
{t("myportal:makenewappeal-card-paragraph-one")}
|
||||||
<div>
|
</p>
|
||||||
<Link href="/">
|
<p className="govuk-body-s">
|
||||||
<a className="govuk-button">{t("myportal:makenewappeal-card-button-label")}</a>
|
{t("myportal:makenewappeal-card-paragraph-two")}
|
||||||
</Link>
|
</p>
|
||||||
|
<div>
|
||||||
|
<Link href="/newappeal">
|
||||||
|
<a className="govuk-button">
|
||||||
|
{t("myportal:makenewappeal-card-button-label")}
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
);
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
import Link from "next/link";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import { useContext } from "react";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
import PlanningAppeal from "./newappeal/planningappeal";
|
||||||
|
import EnforcementNotice from "./newappeal/enforcementnotice";
|
||||||
|
import LDC from "./newappeal/ldc";
|
||||||
|
import AdvertApplication from "./newappeal/advertapplication";
|
||||||
|
|
||||||
|
export default function NewAppeal({ children, pages }) {
|
||||||
|
let { t } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<main
|
||||||
|
className="govuk-main-wrapper govuk-main-wrapper--auto-spacing"
|
||||||
|
id="main-content"
|
||||||
|
role="main"
|
||||||
|
>
|
||||||
|
<div className="govuk-grid-row">
|
||||||
|
<div className="govuk-grid-column-full">
|
||||||
|
<div className="flex-container grid-row govuk-body ">
|
||||||
|
<PlanningAppeal />
|
||||||
|
<EnforcementNotice />
|
||||||
|
<LDC />
|
||||||
|
<AdvertApplication />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
import Link from "next/link";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
export default function MakeAdvertApplication() {
|
||||||
|
let { t } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
return (
|
||||||
|
<div className="card" id="casescomment-card">
|
||||||
|
<div className="card-body appealModule">
|
||||||
|
<p className="govuk-body-s">
|
||||||
|
An appeal relating to an advertisement application or a
|
||||||
|
discontinuance notice.
|
||||||
|
</p>
|
||||||
|
<div className="appealCTA">
|
||||||
|
<Link href="/newappeal">
|
||||||
|
<a className="govuk-button">
|
||||||
|
An advert application/Discontinuance Notice (DN)
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import Link from "next/link";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
export default function MakeEnforcementNotice() {
|
||||||
|
let { t } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
return (
|
||||||
|
<div className="card" id="casescomment-card">
|
||||||
|
<div className="card-body appealModule">
|
||||||
|
<p className="govuk-body-s">
|
||||||
|
Including an enforcement listed building notice.
|
||||||
|
</p>
|
||||||
|
<div className="appealCTA">
|
||||||
|
<Link href="/newappeal">
|
||||||
|
<a className="govuk-button">A enforcement notice</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
import Link from "next/link";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
export default function MakeLDC() {
|
||||||
|
let { t } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
return (
|
||||||
|
<div className="card" id="casescomment-card">
|
||||||
|
<div className="card-body appealModule">
|
||||||
|
<p className="govuk-body-s">
|
||||||
|
An appeal relating to an application for a certificate of
|
||||||
|
lawful use or development.
|
||||||
|
</p>
|
||||||
|
<div className="appealCTA">
|
||||||
|
<Link href="/newappeal">
|
||||||
|
<a className="govuk-button">
|
||||||
|
A Lawful Development Certificate (LDC)
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
import Link from "next/link";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
export default function MakeNewAppeal() {
|
||||||
|
let { t } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
return (
|
||||||
|
<div className="card" id="casescomment-card">
|
||||||
|
<div className="card-body appealModule">
|
||||||
|
<p className="govuk-body-s">
|
||||||
|
This includes all householder applications, full planning
|
||||||
|
applications, outline planning applications, planning listed
|
||||||
|
building (LB) applications.
|
||||||
|
</p>
|
||||||
|
<div className="appealCTA">
|
||||||
|
<Link href="./newappeal/appealtypes/planningappeals78">
|
||||||
|
<a className="govuk-button">A planning application</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
export default function SkipLink(props) {
|
||||||
|
return (
|
||||||
|
<div id="skiplink-container">
|
||||||
|
<div>
|
||||||
|
<a href="#main-content" className="skiplink govuk-link">
|
||||||
|
Skip to main content
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
Generated
+10399
-2793
File diff suppressed because it is too large
Load Diff
+6
-2
@@ -3,7 +3,7 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "node server.js",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start"
|
"start": "next start"
|
||||||
},
|
},
|
||||||
@@ -11,6 +11,7 @@
|
|||||||
"@webdeb/next-styles": "^1.1.1",
|
"@webdeb/next-styles": "^1.1.1",
|
||||||
"axios": "^0.21.1",
|
"axios": "^0.21.1",
|
||||||
"cookies": "^0.8.0",
|
"cookies": "^0.8.0",
|
||||||
|
"dom": "^0.0.3",
|
||||||
"dynamics-web-api": "^1.7.4",
|
"dynamics-web-api": "^1.7.4",
|
||||||
"govuk-frontend": "^3.13.0",
|
"govuk-frontend": "^3.13.0",
|
||||||
"https": "^1.0.0",
|
"https": "^1.0.0",
|
||||||
@@ -25,6 +26,7 @@
|
|||||||
"react-cookie-consent": "^6.2.4",
|
"react-cookie-consent": "^6.2.4",
|
||||||
"react-dom": "17.0.2",
|
"react-dom": "17.0.2",
|
||||||
"react-redux": "^7.2.4",
|
"react-redux": "^7.2.4",
|
||||||
|
"react-xml-parser": "^1.1.8",
|
||||||
"redux-devtools-extension": "^2.13.9",
|
"redux-devtools-extension": "^2.13.9",
|
||||||
"redux-form": "^8.3.7",
|
"redux-form": "^8.3.7",
|
||||||
"redux-persist": "^6.0.0",
|
"redux-persist": "^6.0.0",
|
||||||
@@ -33,7 +35,9 @@
|
|||||||
"sass-loader": "^12.1.0",
|
"sass-loader": "^12.1.0",
|
||||||
"webpack": "^5.40.0",
|
"webpack": "^5.40.0",
|
||||||
"xml2js": "^0.4.23",
|
"xml2js": "^0.4.23",
|
||||||
"xmlhttprequest": "^1.8.0"
|
"xmldom": "^0.6.0",
|
||||||
|
"xmlhttprequest": "^1.8.0",
|
||||||
|
"xpath": "^0.0.32"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^7.29.0",
|
"eslint": "^7.29.0",
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
import Document, { Html, Head, Main, NextScript } from "next/document";
|
||||||
|
import SkipLink from "../components/skiplink";
|
||||||
|
//import basicAuthMiddleware from "nextjs-basic-auth-middleware";
|
||||||
|
|
||||||
|
class MyDocument extends Document {
|
||||||
|
// static async getInitialProps(ctx) {
|
||||||
|
// const initialProps = await Document.getInitialProps(ctx);
|
||||||
|
// if (ctx.req && ctx.res) {
|
||||||
|
// await basicAuthMiddleware(ctx.req, ctx.res, {
|
||||||
|
// users: [
|
||||||
|
// {
|
||||||
|
// name: "rehab",
|
||||||
|
// password: "preventTesting",
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// return { ...initialProps };
|
||||||
|
// }
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Html lang="en">
|
||||||
|
<Head />
|
||||||
|
<body>
|
||||||
|
<SkipLink />
|
||||||
|
<Main />
|
||||||
|
<NextScript />
|
||||||
|
</body>
|
||||||
|
</Html>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default MyDocument;
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import Header from "../components/header";
|
import Header from "../../components/header";
|
||||||
import Banner from "../components/banner";
|
import Banner from "../../components/banner";
|
||||||
import CookieBanner from "../components/cookieBanner";
|
import CookieBanner from "../../components/cookieBanner";
|
||||||
import Breadcrumbs from "../components/breadcrumbs";
|
import Breadcrumbs from "../../components/breadcrumbs";
|
||||||
import MyPortal from "../components/myportal";
|
import MyPortal from "../../components/myportal";
|
||||||
import Footer from "../components/footer";
|
import Footer from "../../components/footer";
|
||||||
import Errorpage from "../components/errorpage";
|
import Errorpage from "../../components/errorpage";
|
||||||
import styles from "../styles/Home.module.css";
|
import styles from "../../styles/Home.module.css";
|
||||||
import { useSelector, shallowEqual, connect } from "react-redux";
|
import { useSelector, shallowEqual, connect } from "react-redux";
|
||||||
import { wrapper } from "../store/store";
|
import { wrapper } from "../../store/store";
|
||||||
import Cookies from "cookies";
|
import Cookies from "cookies";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import useTranslation from "next-translate/useTranslation";
|
import useTranslation from "next-translate/useTranslation";
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
import _ from "lodash";
|
||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../../components/header";
|
||||||
|
import Banner from "../../../components/banner";
|
||||||
|
import CookieBanner from "../../../components/cookieBanner";
|
||||||
|
import Breadcrumbs from "../../../components/breadcrumbs";
|
||||||
|
import Footer from "../../../components/footer";
|
||||||
|
import Errorpage from "../../../components/errorpage";
|
||||||
|
import styles from "../../../styles/Home.module.css";
|
||||||
|
import { useSelector, shallowEqual, connect } from "react-redux";
|
||||||
|
import { wrapper } from "../../../store/store";
|
||||||
|
import Cookies from "cookies";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
import { setForm, getFormObj } from "../../../store/formData/action";
|
||||||
|
import { getFormData } from "../../../actions";
|
||||||
|
import xpath from "xpath";
|
||||||
|
|
||||||
|
const Home = (props) => {
|
||||||
|
const { footerLinks, pages, formData } = props;
|
||||||
|
let { t, lang } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
|
||||||
|
const formXML = props.formData.formData;
|
||||||
|
const parser = new DOMParser();
|
||||||
|
var doc = parser.parseFromString(formXML, "text/xml");
|
||||||
|
var titles = xpath.select(
|
||||||
|
"//form/tabs/tab[*]/labels/label[@description]/@description",
|
||||||
|
doc
|
||||||
|
);
|
||||||
|
// query for labels in section eg for section 2 - /form/tabs/tab[2]//rows//labels
|
||||||
|
// query for getting guids of form element types /form/tabs/tab[*]//rows/row//control[@classid]/@classid
|
||||||
|
//
|
||||||
|
// 270BD3DB-D9AF-4782-9025-509E298DEC0A - read only
|
||||||
|
// 3EF39988-22BB-4f0b-BBBE-64B5A3748AEE - drop down list controlled by datafieldname for content - datafieldname picklist entity
|
||||||
|
// 67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED - boolean flag / yes no radio button
|
||||||
|
// 4273EDBD-AC1D-40d3-9FB2-095C621B552D - text field
|
||||||
|
// 5B773807-9FB2-42db-97C3-7A91EFF8ADFF - date field
|
||||||
|
// E0DECE4B-6FC8-4a8f-A065-082708572369 - multiline
|
||||||
|
// C6D124CA-7EDA-4a60-AEA9-7FB8D318B68F - numeric field
|
||||||
|
// C3EFE0C3-0EC6-42be-8349-CBD9079DFD8E - decimal
|
||||||
|
|
||||||
|
console.log(titles);
|
||||||
|
|
||||||
|
const SectionTitles = Object.keys(titles).map((key, index) => (
|
||||||
|
<h2>
|
||||||
|
{titles[key].value} - {index}
|
||||||
|
</h2>
|
||||||
|
));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>
|
||||||
|
{t("search:page-title")} - {t("common:service-name")}
|
||||||
|
</title>
|
||||||
|
</Head>
|
||||||
|
<div id="page_wrapper">
|
||||||
|
<CookieBanner />
|
||||||
|
<Header courseName={t("common:service-name")} />
|
||||||
|
<div className="govuk-width-container">
|
||||||
|
<Banner />
|
||||||
|
{SectionTitles}
|
||||||
|
</div>
|
||||||
|
<Footer footerLinks={footerLinks} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getServerSideProps = wrapper.getServerSideProps(
|
||||||
|
(store) =>
|
||||||
|
async ({ query, req, res }) => {
|
||||||
|
const formdata = (await getFormData()) || null;
|
||||||
|
let xmlStr = formdata;
|
||||||
|
xmlStr = formdata.value[0].formxml;
|
||||||
|
xmlStr = xmlStr.replace(/\\"/g, "");
|
||||||
|
store.dispatch(setForm(xmlStr));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// export const getServerSideProps = wrapper.getServerSideProps(
|
||||||
|
// async ({ locale, store, query, req, res }) => {
|
||||||
|
// // const token = await getToken();
|
||||||
|
// // let accessToken = token.access_token;
|
||||||
|
|
||||||
|
// // const apiRoot = process.browser ? window.API_ROOT : process.env.API_ROOT;
|
||||||
|
|
||||||
|
// // const [pages, footerLinks, courseListContent] = await Promise.all([
|
||||||
|
// // await getPages(accessToken, locale),
|
||||||
|
// // await getFooterLinks(accessToken, locale),
|
||||||
|
// // await getCourseList(accessToken, locale),
|
||||||
|
// // ]);
|
||||||
|
// // //const courseID = await getCourseID
|
||||||
|
// // store.dispatch(setApiRoot(apiRoot));
|
||||||
|
// // store.dispatch(setPages(pages));
|
||||||
|
// // store.dispatch(setFooterLinks(footerLinks));
|
||||||
|
// // store.dispatch(setCourseListContent(courseListContent));
|
||||||
|
// console.log(query);
|
||||||
|
// //store.dispatch(setSearch(query.search));
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
|
||||||
|
const mapStateToProps = (state) => {
|
||||||
|
return {
|
||||||
|
search: state.search,
|
||||||
|
searchResultsObj: state.searchResultsObj,
|
||||||
|
formData: state.formData,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export default connect(mapStateToProps)(Home);
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
import _ from "lodash";
|
||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../components/header";
|
||||||
|
import Banner from "../../components/banner";
|
||||||
|
import CookieBanner from "../../components/cookieBanner";
|
||||||
|
import Breadcrumbs from "../../components/breadcrumbs";
|
||||||
|
import NewAppeal from "../../components/newappeal";
|
||||||
|
import Footer from "../../components/footer";
|
||||||
|
import Errorpage from "../../components/errorpage";
|
||||||
|
import styles from "../../styles/Home.module.css";
|
||||||
|
import { useSelector, shallowEqual, connect } from "react-redux";
|
||||||
|
import { wrapper } from "../../store/store";
|
||||||
|
import Cookies from "cookies";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
const Home = (props) => {
|
||||||
|
const { footerLinks, pages } = props;
|
||||||
|
let { t, lang } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>
|
||||||
|
{t("myportal:page-title")} - {t("common:service-name")}
|
||||||
|
</title>
|
||||||
|
</Head>
|
||||||
|
<div id="page_wrapper">
|
||||||
|
<CookieBanner />
|
||||||
|
<Header courseName={t("common:service-name")} />
|
||||||
|
<div className="govuk-width-container">
|
||||||
|
<Banner />
|
||||||
|
<NewAppeal />
|
||||||
|
</div>
|
||||||
|
<Footer footerLinks={footerLinks} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// export const getServerSideProps = wrapper.getServerSideProps(
|
||||||
|
// async ({ locale, store, req, res }) => {
|
||||||
|
// const token = await getToken();
|
||||||
|
// let accessToken = token.access_token;
|
||||||
|
|
||||||
|
// const apiRoot = process.browser ? window.API_ROOT : process.env.API_ROOT;
|
||||||
|
|
||||||
|
// const [pages, footerLinks, courseListContent] = await Promise.all([
|
||||||
|
// await getPages(accessToken, locale),
|
||||||
|
// await getFooterLinks(accessToken, locale),
|
||||||
|
// await getCourseList(accessToken, locale),
|
||||||
|
// ]);
|
||||||
|
// //const courseID = await getCourseID
|
||||||
|
// store.dispatch(setApiRoot(apiRoot));
|
||||||
|
// store.dispatch(setPages(pages));
|
||||||
|
// store.dispatch(setFooterLinks(footerLinks));
|
||||||
|
// store.dispatch(setCourseListContent(courseListContent));
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
|
||||||
|
// const mapStateToProps = (state) => {
|
||||||
|
// //console.log(state);
|
||||||
|
|
||||||
|
// return {
|
||||||
|
// apiroot: state.apiroot,
|
||||||
|
// courseListContent: state.courseListContent.courseListContent,
|
||||||
|
// pages: state.pages.pages,
|
||||||
|
// footerLinks: state.footerLinks.footerLinks,
|
||||||
|
// regions: state.regions,
|
||||||
|
// sectors: state.sectors,
|
||||||
|
// form: state.form,
|
||||||
|
// };
|
||||||
|
// };
|
||||||
|
|
||||||
|
export default Home; //connect(mapStateToProps)(Home);
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
import _ from "lodash";
|
||||||
|
import Head from "next/head";
|
||||||
|
import Header from "../../components/header";
|
||||||
|
import Banner from "../../components/banner";
|
||||||
|
import CookieBanner from "../../components/cookieBanner";
|
||||||
|
import Breadcrumbs from "../../components/breadcrumbs";
|
||||||
|
import NewAppeal from "../../components/newappeal";
|
||||||
|
import Footer from "../../components/footer";
|
||||||
|
import Errorpage from "../../components/errorpage";
|
||||||
|
import styles from "../../styles/Home.module.css";
|
||||||
|
import { useSelector, shallowEqual, connect } from "react-redux";
|
||||||
|
import { wrapper } from "../../store/store";
|
||||||
|
import Cookies from "cookies";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
import useTranslation from "next-translate/useTranslation";
|
||||||
|
|
||||||
|
const Home = (props) => {
|
||||||
|
const { footerLinks, pages } = props;
|
||||||
|
let { t, lang } = useTranslation();
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { locale } = router;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Head>
|
||||||
|
<title>
|
||||||
|
{t("myportal:page-title")} - {t("common:service-name")}
|
||||||
|
</title>
|
||||||
|
</Head>
|
||||||
|
<div id="page_wrapper">
|
||||||
|
<CookieBanner />
|
||||||
|
<Header courseName={t("common:service-name")} />
|
||||||
|
<div className="govuk-width-container">
|
||||||
|
<Banner />
|
||||||
|
<NewAppeal />
|
||||||
|
</div>
|
||||||
|
<Footer footerLinks={footerLinks} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// export const getServerSideProps = wrapper.getServerSideProps(
|
||||||
|
// async ({ locale, store, req, res }) => {
|
||||||
|
// const token = await getToken();
|
||||||
|
// let accessToken = token.access_token;
|
||||||
|
|
||||||
|
// const apiRoot = process.browser ? window.API_ROOT : process.env.API_ROOT;
|
||||||
|
|
||||||
|
// const [pages, footerLinks, courseListContent] = await Promise.all([
|
||||||
|
// await getPages(accessToken, locale),
|
||||||
|
// await getFooterLinks(accessToken, locale),
|
||||||
|
// await getCourseList(accessToken, locale),
|
||||||
|
// ]);
|
||||||
|
// //const courseID = await getCourseID
|
||||||
|
// store.dispatch(setApiRoot(apiRoot));
|
||||||
|
// store.dispatch(setPages(pages));
|
||||||
|
// store.dispatch(setFooterLinks(footerLinks));
|
||||||
|
// store.dispatch(setCourseListContent(courseListContent));
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
|
||||||
|
// const mapStateToProps = (state) => {
|
||||||
|
// //console.log(state);
|
||||||
|
|
||||||
|
// return {
|
||||||
|
// apiroot: state.apiroot,
|
||||||
|
// courseListContent: state.courseListContent.courseListContent,
|
||||||
|
// pages: state.pages.pages,
|
||||||
|
// footerLinks: state.footerLinks.footerLinks,
|
||||||
|
// regions: state.regions,
|
||||||
|
// sectors: state.sectors,
|
||||||
|
// form: state.form,
|
||||||
|
// };
|
||||||
|
// };
|
||||||
|
|
||||||
|
export default Home; //connect(mapStateToProps)(Home);
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
export const formDataActionTypes = {
|
||||||
|
GETFORMDATA: "GETFORMDATA",
|
||||||
|
SETFORMDATA: "SETFORMDATA",
|
||||||
|
UPDATEFORMDATA: "UPDATEFORMDATA",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getFormObj = () => (dispatch) => {
|
||||||
|
return dispatch({
|
||||||
|
type: formDataActionTypes.GETFORMDATA,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const setForm = (formData) => (dispatch) => {
|
||||||
|
return dispatch({
|
||||||
|
type: formDataActionTypes.SETFORMDATA,
|
||||||
|
formData: formData,
|
||||||
|
});
|
||||||
|
};
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
import { formDataActionTypes } from "./action";
|
||||||
|
|
||||||
|
const formDataInitialState = {
|
||||||
|
formData: {},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function reducer(state = formDataInitialState, action) {
|
||||||
|
switch (action.type) {
|
||||||
|
case formDataActionTypes.SETFORMDATA:
|
||||||
|
return {
|
||||||
|
formData: action.formData,
|
||||||
|
};
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
}
|
||||||
+4
-2
@@ -4,6 +4,7 @@ import thunkMiddleware from "redux-thunk";
|
|||||||
import progress from "./progress/reducer";
|
import progress from "./progress/reducer";
|
||||||
import search from "./search/reducer";
|
import search from "./search/reducer";
|
||||||
import searchResultsObj from "./searchOutput/reducer";
|
import searchResultsObj from "./searchOutput/reducer";
|
||||||
|
import formData from "./formData/reducer";
|
||||||
import { reducer as formReducer } from "redux-form";
|
import { reducer as formReducer } from "redux-form";
|
||||||
import autoMergeLevel2 from "redux-persist/lib/stateReconciler/autoMergeLevel2";
|
import autoMergeLevel2 from "redux-persist/lib/stateReconciler/autoMergeLevel2";
|
||||||
|
|
||||||
@@ -11,7 +12,8 @@ import autoMergeLevel2 from "redux-persist/lib/stateReconciler/autoMergeLevel2";
|
|||||||
const combinedReducer = combineReducers({
|
const combinedReducer = combineReducers({
|
||||||
progress,
|
progress,
|
||||||
search,
|
search,
|
||||||
searchResultsObj
|
searchResultsObj,
|
||||||
|
formData,
|
||||||
});
|
});
|
||||||
|
|
||||||
const reducer = (state = { progress: "{}" }, action) => {
|
const reducer = (state = { progress: "{}" }, action) => {
|
||||||
@@ -72,7 +74,7 @@ const makeStore = ({ isServer }) => {
|
|||||||
|
|
||||||
const persistConfig = {
|
const persistConfig = {
|
||||||
key: "nextjs",
|
key: "nextjs",
|
||||||
whitelist: ["progress,search,searchResults"],
|
whitelist: ["progress,search,searchResults,formData"],
|
||||||
storage,
|
storage,
|
||||||
stateReconciler: autoMergeLevel2, // if needed, use a safer storage
|
stateReconciler: autoMergeLevel2, // if needed, use a safer storage
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -199,7 +199,8 @@ html[data-useragent*="MSIE 10.0"] .flex-container {
|
|||||||
padding-top: 20%;
|
padding-top: 20%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-3 .card-body {
|
.card-3 .card-body,
|
||||||
|
.appealModule.card-body {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 30vh;
|
min-height: 30vh;
|
||||||
|
|||||||
@@ -231,3 +231,11 @@ nav {
|
|||||||
.case .govuk-grid-column-full .govuk-summary-list__key {
|
.case .govuk-grid-column-full .govuk-summary-list__key {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.appealModule {
|
||||||
|
width: 94%;
|
||||||
|
min-height: 20vh;
|
||||||
|
.appealCTA {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
+6057
File diff suppressed because it is too large
Load Diff
@@ -31,14 +31,14 @@
|
|||||||
core-js-pure "^3.15.0"
|
core-js-pure "^3.15.0"
|
||||||
regenerator-runtime "^0.13.4"
|
regenerator-runtime "^0.13.4"
|
||||||
|
|
||||||
"@babel/runtime@7.12.5", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.9.2":
|
"@babel/runtime@7.12.5":
|
||||||
version "7.12.5"
|
version "7.12.5"
|
||||||
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
|
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
|
||||||
integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
|
integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
|
||||||
dependencies:
|
dependencies:
|
||||||
regenerator-runtime "^0.13.4"
|
regenerator-runtime "^0.13.4"
|
||||||
|
|
||||||
"@babel/runtime@^7.13.17", "@babel/runtime@^7.14.5":
|
"@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.13.17", "@babel/runtime@^7.14.5", "@babel/runtime@^7.9.2":
|
||||||
version "7.14.6"
|
version "7.14.6"
|
||||||
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz"
|
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz"
|
||||||
integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==
|
integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==
|
||||||
@@ -78,9 +78,9 @@
|
|||||||
"@hapi/hoek" "9.x.x"
|
"@hapi/hoek" "9.x.x"
|
||||||
|
|
||||||
"@hapi/boom@9.x.x":
|
"@hapi/boom@9.x.x":
|
||||||
version "9.1.2"
|
version "9.1.3"
|
||||||
resolved "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.2.tgz"
|
resolved "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz"
|
||||||
integrity sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q==
|
integrity sha512-RlrGyZ603hE/eRTZtTltocRm50HHmrmL3kGOP0SQ9MasazlW1mt/fkv4C5P/6rnpFXjwld/POFX1C8tMZE3ldg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@hapi/hoek" "9.x.x"
|
"@hapi/hoek" "9.x.x"
|
||||||
|
|
||||||
@@ -89,6 +89,20 @@
|
|||||||
resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz"
|
resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz"
|
||||||
integrity sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==
|
integrity sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==
|
||||||
|
|
||||||
|
"@humanwhocodes/config-array@^0.5.0":
|
||||||
|
version "0.5.0"
|
||||||
|
resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
|
||||||
|
integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
|
||||||
|
dependencies:
|
||||||
|
"@humanwhocodes/object-schema" "^1.2.0"
|
||||||
|
debug "^4.1.1"
|
||||||
|
minimatch "^3.0.4"
|
||||||
|
|
||||||
|
"@humanwhocodes/object-schema@^1.2.0":
|
||||||
|
version "1.2.0"
|
||||||
|
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz"
|
||||||
|
integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==
|
||||||
|
|
||||||
"@next/env@11.0.1":
|
"@next/env@11.0.1":
|
||||||
version "11.0.1"
|
version "11.0.1"
|
||||||
resolved "https://registry.npmjs.org/@next/env/-/env-11.0.1.tgz"
|
resolved "https://registry.npmjs.org/@next/env/-/env-11.0.1.tgz"
|
||||||
@@ -152,6 +166,11 @@
|
|||||||
resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz"
|
resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz"
|
||||||
integrity sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==
|
integrity sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==
|
||||||
|
|
||||||
|
"@tootallnate/once@1":
|
||||||
|
version "1.1.2"
|
||||||
|
resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
|
||||||
|
integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
|
||||||
|
|
||||||
"@types/eslint-scope@^3.7.0":
|
"@types/eslint-scope@^3.7.0":
|
||||||
version "3.7.0"
|
version "3.7.0"
|
||||||
resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"
|
resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"
|
||||||
@@ -168,10 +187,15 @@
|
|||||||
"@types/estree" "*"
|
"@types/estree" "*"
|
||||||
"@types/json-schema" "*"
|
"@types/json-schema" "*"
|
||||||
|
|
||||||
"@types/estree@*", "@types/estree@^0.0.47":
|
"@types/estree@*":
|
||||||
version "0.0.47"
|
version "0.0.49"
|
||||||
resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz"
|
resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.49.tgz"
|
||||||
integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==
|
integrity sha512-K1AFuMe8a+pXmfHTtnwBvqoEylNKVeaiKYkjmcEAdytMQVJ/i9Fu7sc13GxgXdO49gkE7Hy8SyJonUZUn+eVaw==
|
||||||
|
|
||||||
|
"@types/estree@^0.0.48":
|
||||||
|
version "0.0.48"
|
||||||
|
resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz"
|
||||||
|
integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew==
|
||||||
|
|
||||||
"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1":
|
"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1":
|
||||||
version "3.3.1"
|
version "3.3.1"
|
||||||
@@ -188,7 +212,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
i18next "^19.7.0"
|
i18next "^19.7.0"
|
||||||
|
|
||||||
"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6":
|
"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7":
|
||||||
version "7.0.7"
|
version "7.0.7"
|
||||||
resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"
|
resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"
|
||||||
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
|
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
|
||||||
@@ -199,9 +223,9 @@
|
|||||||
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
|
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
|
||||||
|
|
||||||
"@types/node@*":
|
"@types/node@*":
|
||||||
version "15.12.4"
|
version "16.0.0"
|
||||||
resolved "https://registry.npmjs.org/@types/node/-/node-15.12.4.tgz"
|
resolved "https://registry.npmjs.org/@types/node/-/node-16.0.0.tgz"
|
||||||
integrity sha512-zrNj1+yqYF4WskCMOHwN+w9iuD12+dGm0rQ35HLl9/Ouuq52cEtd0CH9qMgrdNmi5ejC1/V7vKEXYubB+65DkA==
|
integrity sha512-TmCW5HoZ2o2/z2EYi109jLqIaPIi9y/lc2LmDCWzuCi35bcaQ+OtUh6nwBiFK7SOu25FAU5+YKdqFZUwtqGSdg==
|
||||||
|
|
||||||
"@types/prop-types@*":
|
"@types/prop-types@*":
|
||||||
version "15.7.3"
|
version "15.7.3"
|
||||||
@@ -224,9 +248,9 @@
|
|||||||
redux "^4.0.0"
|
redux "^4.0.0"
|
||||||
|
|
||||||
"@types/react@*":
|
"@types/react@*":
|
||||||
version "17.0.11"
|
version "17.0.13"
|
||||||
resolved "https://registry.npmjs.org/@types/react/-/react-17.0.11.tgz"
|
resolved "https://registry.npmjs.org/@types/react/-/react-17.0.13.tgz"
|
||||||
integrity sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA==
|
integrity sha512-D/G3PiuqTfE3IMNjLn/DCp6umjVCSvtZTPdtAFy5+Ved6CsdRvivfKeCzw79W4AatShtU4nGqgvOv5Gro534vQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/prop-types" "*"
|
"@types/prop-types" "*"
|
||||||
"@types/scheduler" "*"
|
"@types/scheduler" "*"
|
||||||
@@ -238,47 +262,47 @@
|
|||||||
integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==
|
integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==
|
||||||
|
|
||||||
"@typescript-eslint/parser@^4.20.0":
|
"@typescript-eslint/parser@^4.20.0":
|
||||||
version "4.28.1"
|
version "4.28.2"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.28.1.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.28.2.tgz"
|
||||||
integrity sha512-UjrMsgnhQIIK82hXGaD+MCN8IfORS1CbMdu7VlZbYa8LCZtbZjJA26De4IPQB7XYZbL8gJ99KWNj0l6WD0guJg==
|
integrity sha512-Q0gSCN51eikAgFGY+gnd5p9bhhCUAl0ERMiDKrTzpSoMYRubdB8MJrTTR/BBii8z+iFwz8oihxd0RAdP4l8w8w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/scope-manager" "4.28.1"
|
"@typescript-eslint/scope-manager" "4.28.2"
|
||||||
"@typescript-eslint/types" "4.28.1"
|
"@typescript-eslint/types" "4.28.2"
|
||||||
"@typescript-eslint/typescript-estree" "4.28.1"
|
"@typescript-eslint/typescript-estree" "4.28.2"
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
|
|
||||||
"@typescript-eslint/scope-manager@4.28.1":
|
"@typescript-eslint/scope-manager@4.28.2":
|
||||||
version "4.28.1"
|
version "4.28.2"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.28.1.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.28.2.tgz"
|
||||||
integrity sha512-o95bvGKfss6705x7jFGDyS7trAORTy57lwJ+VsYwil/lOUxKQ9tA7Suuq+ciMhJc/1qPwB3XE2DKh9wubW8YYA==
|
integrity sha512-MqbypNjIkJFEFuOwPWNDjq0nqXAKZvDNNs9yNseoGBB1wYfz1G0WHC2AVOy4XD7di3KCcW3+nhZyN6zruqmp2A==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/types" "4.28.1"
|
"@typescript-eslint/types" "4.28.2"
|
||||||
"@typescript-eslint/visitor-keys" "4.28.1"
|
"@typescript-eslint/visitor-keys" "4.28.2"
|
||||||
|
|
||||||
"@typescript-eslint/types@4.28.1":
|
"@typescript-eslint/types@4.28.2":
|
||||||
version "4.28.1"
|
version "4.28.2"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.28.1.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.28.2.tgz"
|
||||||
integrity sha512-4z+knEihcyX7blAGi7O3Fm3O6YRCP+r56NJFMNGsmtdw+NCdpG5SgNz427LS9nQkRVTswZLhz484hakQwB8RRg==
|
integrity sha512-Gr15fuQVd93uD9zzxbApz3wf7ua3yk4ZujABZlZhaxxKY8ojo448u7XTm/+ETpy0V0dlMtj6t4VdDvdc0JmUhA==
|
||||||
|
|
||||||
"@typescript-eslint/typescript-estree@4.28.1":
|
"@typescript-eslint/typescript-estree@4.28.2":
|
||||||
version "4.28.1"
|
version "4.28.2"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.1.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.2.tgz"
|
||||||
integrity sha512-GhKxmC4sHXxHGJv8e8egAZeTZ6HI4mLU6S7FUzvFOtsk7ZIDN1ksA9r9DyOgNqowA9yAtZXV0Uiap61bIO81FQ==
|
integrity sha512-86lLstLvK6QjNZjMoYUBMMsULFw0hPHJlk1fzhAVoNjDBuPVxiwvGuPQq3fsBMCxuDJwmX87tM/AXoadhHRljg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/types" "4.28.1"
|
"@typescript-eslint/types" "4.28.2"
|
||||||
"@typescript-eslint/visitor-keys" "4.28.1"
|
"@typescript-eslint/visitor-keys" "4.28.2"
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
globby "^11.0.3"
|
globby "^11.0.3"
|
||||||
is-glob "^4.0.1"
|
is-glob "^4.0.1"
|
||||||
semver "^7.3.5"
|
semver "^7.3.5"
|
||||||
tsutils "^3.21.0"
|
tsutils "^3.21.0"
|
||||||
|
|
||||||
"@typescript-eslint/visitor-keys@4.28.1":
|
"@typescript-eslint/visitor-keys@4.28.2":
|
||||||
version "4.28.1"
|
version "4.28.2"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.1.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.2.tgz"
|
||||||
integrity sha512-K4HMrdFqr9PFquPu178SaSb92CaWe2yErXyPumc8cYWxFmhgJsNY9eSePmO05j0JhBvf2Cdhptd6E6Yv9HVHcg==
|
integrity sha512-aT2B4PLyyRDUVUafXzpZFoc0C9t0za4BJAKP5sgWIhG+jHECQZUEjuQSCIwZdiJJ4w4cgu5r3Kh20SOdtEBl0w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/types" "4.28.1"
|
"@typescript-eslint/types" "4.28.2"
|
||||||
eslint-visitor-keys "^2.0.0"
|
eslint-visitor-keys "^2.0.0"
|
||||||
|
|
||||||
"@webassemblyjs/ast@1.11.0":
|
"@webassemblyjs/ast@1.11.0":
|
||||||
@@ -444,11 +468,18 @@ acorn@^7.4.0:
|
|||||||
resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
|
resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
|
||||||
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
||||||
|
|
||||||
acorn@^8.2.1:
|
acorn@^8.4.1:
|
||||||
version "8.4.1"
|
version "8.4.1"
|
||||||
resolved "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz"
|
resolved "https://registry.npmjs.org/acorn/-/acorn-8.4.1.tgz"
|
||||||
integrity sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==
|
integrity sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==
|
||||||
|
|
||||||
|
agent-base@6:
|
||||||
|
version "6.0.2"
|
||||||
|
resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
|
||||||
|
integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
|
||||||
|
dependencies:
|
||||||
|
debug "4"
|
||||||
|
|
||||||
ajv-errors@^1.0.0:
|
ajv-errors@^1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz"
|
resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz"
|
||||||
@@ -470,9 +501,9 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:
|
|||||||
uri-js "^4.2.2"
|
uri-js "^4.2.2"
|
||||||
|
|
||||||
ajv@^8.0.1:
|
ajv@^8.0.1:
|
||||||
version "8.6.0"
|
version "8.6.1"
|
||||||
resolved "https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz"
|
resolved "https://registry.npmjs.org/ajv/-/ajv-8.6.1.tgz"
|
||||||
integrity sha512-cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ==
|
integrity sha512-42VLtQUOLefAvKFAQIxIZDaThq6om/PrfP0CYk3/vn+y4BMNkKnbli8ON2QCiHov4KkzOSJ/xSoBJdayiiYvVQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-deep-equal "^3.1.1"
|
fast-deep-equal "^3.1.1"
|
||||||
json-schema-traverse "^1.0.0"
|
json-schema-traverse "^1.0.0"
|
||||||
@@ -504,6 +535,11 @@ ansi-regex@^2.0.0:
|
|||||||
resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
|
resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
|
||||||
integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
|
integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
|
||||||
|
|
||||||
|
ansi-regex@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"
|
||||||
|
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
|
||||||
|
|
||||||
ansi-regex@^4.1.0:
|
ansi-regex@^4.1.0:
|
||||||
version "4.1.0"
|
version "4.1.0"
|
||||||
resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
|
resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
|
||||||
@@ -533,7 +569,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
color-convert "^2.0.1"
|
color-convert "^2.0.1"
|
||||||
|
|
||||||
anymatch@~3.1.1:
|
anymatch@~3.1.1, anymatch@~3.1.2:
|
||||||
version "3.1.2"
|
version "3.1.2"
|
||||||
resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
|
resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
|
||||||
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
|
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
|
||||||
@@ -950,9 +986,9 @@ caniuse-api@^3.0.0:
|
|||||||
lodash.uniq "^4.5.0"
|
lodash.uniq "^4.5.0"
|
||||||
|
|
||||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001202, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001228:
|
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001202, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001228:
|
||||||
version "1.0.30001239"
|
version "1.0.30001242"
|
||||||
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001239.tgz"
|
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001242.tgz"
|
||||||
integrity sha512-cyBkXJDMeI4wthy8xJ2FvDU6+0dtcZSJW3voUF8+e9f1bBeuvyZfc3PNbkOETyhbR+dGCPzn9E7MA3iwzusOhQ==
|
integrity sha512-KvNuZ/duufelMB3w2xtf9gEWCSxJwUgoxOx5b6ScLXC4kPc9xsczUVCPrQU26j5kOsHM4pSUL54tAZt5THQKug==
|
||||||
|
|
||||||
caseless@~0.12.0:
|
caseless@~0.12.0:
|
||||||
version "0.12.0"
|
version "0.12.0"
|
||||||
@@ -995,7 +1031,7 @@ chalk@^4.0.0:
|
|||||||
ansi-styles "^4.1.0"
|
ansi-styles "^4.1.0"
|
||||||
supports-color "^7.1.0"
|
supports-color "^7.1.0"
|
||||||
|
|
||||||
chokidar@3.5.1, "chokidar@>=3.0.0 <4.0.0":
|
chokidar@3.5.1:
|
||||||
version "3.5.1"
|
version "3.5.1"
|
||||||
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"
|
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"
|
||||||
integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
|
integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
|
||||||
@@ -1010,6 +1046,21 @@ chokidar@3.5.1, "chokidar@>=3.0.0 <4.0.0":
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents "~2.3.1"
|
fsevents "~2.3.1"
|
||||||
|
|
||||||
|
"chokidar@>=3.0.0 <4.0.0":
|
||||||
|
version "3.5.2"
|
||||||
|
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"
|
||||||
|
integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
|
||||||
|
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"
|
||||||
|
|
||||||
chrome-trace-event@^1.0.2:
|
chrome-trace-event@^1.0.2:
|
||||||
version "1.0.3"
|
version "1.0.3"
|
||||||
resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"
|
resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"
|
||||||
@@ -1079,12 +1130,12 @@ color-convert@^2.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
color-name "~1.1.4"
|
color-name "~1.1.4"
|
||||||
|
|
||||||
color-name@1.1.3, color-name@^1.0.0:
|
color-name@1.1.3:
|
||||||
version "1.1.3"
|
version "1.1.3"
|
||||||
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
|
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
|
||||||
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
||||||
|
|
||||||
color-name@~1.1.4:
|
color-name@^1.0.0, color-name@~1.1.4:
|
||||||
version "1.1.4"
|
version "1.1.4"
|
||||||
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
|
resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
|
||||||
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
||||||
@@ -1175,9 +1226,9 @@ core-js-pure@^3.15.0:
|
|||||||
integrity sha512-D42L7RYh1J2grW8ttxoY1+17Y4wXZeKe7uyplAI3FkNQyI5OgBIAjUfFiTPfL1rs0qLpxaabITNbjKl1Sp82tA==
|
integrity sha512-D42L7RYh1J2grW8ttxoY1+17Y4wXZeKe7uyplAI3FkNQyI5OgBIAjUfFiTPfL1rs0qLpxaabITNbjKl1Sp82tA==
|
||||||
|
|
||||||
core-js@^3:
|
core-js@^3:
|
||||||
version "3.15.1"
|
version "3.15.2"
|
||||||
resolved "https://registry.npmjs.org/core-js/-/core-js-3.15.1.tgz"
|
resolved "https://registry.npmjs.org/core-js/-/core-js-3.15.2.tgz"
|
||||||
integrity sha512-h8VbZYnc9pDzueiS2610IULDkpFFPunHwIpl8yRwFahAEEdSpHlTy3h3z3rKq5h11CaUdBEeRViu9AYvbxiMeg==
|
integrity sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q==
|
||||||
|
|
||||||
core-util-is@1.0.2, core-util-is@~1.0.0:
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
@@ -1462,6 +1513,13 @@ debug@2, debug@^2.6.9:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms "2.0.0"
|
ms "2.0.0"
|
||||||
|
|
||||||
|
debug@4, debug@^4.0.1, debug@^4.1.1, debug@^4.3.1:
|
||||||
|
version "4.3.2"
|
||||||
|
resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"
|
||||||
|
integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
|
||||||
|
dependencies:
|
||||||
|
ms "2.1.2"
|
||||||
|
|
||||||
debug@^3.2.7:
|
debug@^3.2.7:
|
||||||
version "3.2.7"
|
version "3.2.7"
|
||||||
resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
|
resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
|
||||||
@@ -1469,13 +1527,6 @@ debug@^3.2.7:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms "^2.1.1"
|
ms "^2.1.1"
|
||||||
|
|
||||||
debug@^4.0.1, debug@^4.1.1, debug@^4.3.1:
|
|
||||||
version "4.3.1"
|
|
||||||
resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"
|
|
||||||
integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
|
|
||||||
dependencies:
|
|
||||||
ms "2.1.2"
|
|
||||||
|
|
||||||
decamelize@^1.1.2, decamelize@^1.2.0:
|
decamelize@^1.1.2, decamelize@^1.2.0:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
|
resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
|
||||||
@@ -1559,6 +1610,11 @@ dom-serializer@0:
|
|||||||
domelementtype "^2.0.1"
|
domelementtype "^2.0.1"
|
||||||
entities "^2.0.0"
|
entities "^2.0.0"
|
||||||
|
|
||||||
|
dom@^0.0.3:
|
||||||
|
version "0.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/dom/-/dom-0.0.3.tgz#16e0c225a0553d8e4362cc4bcd78d8fde59af67b"
|
||||||
|
integrity sha1-FuDCJaBVPY5DYsxLzXjY/eWa9ns=
|
||||||
|
|
||||||
domain-browser@4.19.0:
|
domain-browser@4.19.0:
|
||||||
version "4.19.0"
|
version "4.19.0"
|
||||||
resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-4.19.0.tgz"
|
resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-4.19.0.tgz"
|
||||||
@@ -1594,6 +1650,14 @@ dot-prop@^5.2.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
is-obj "^2.0.0"
|
is-obj "^2.0.0"
|
||||||
|
|
||||||
|
dynamics-web-api@^1.7.4:
|
||||||
|
version "1.7.4"
|
||||||
|
resolved "https://registry.npmjs.org/dynamics-web-api/-/dynamics-web-api-1.7.4.tgz"
|
||||||
|
integrity sha512-bwdG1mJInXMlrzdDogIyNP7s14OUgtBZ54e6y+CZB9v4Vtp3BIaF/I/IUEPXM25A66UxLsAw8q+Uv1V7rctXcg==
|
||||||
|
dependencies:
|
||||||
|
http-proxy-agent "^4.0.1"
|
||||||
|
https-proxy-agent "^5.0.0"
|
||||||
|
|
||||||
ecc-jsbn@~0.1.1:
|
ecc-jsbn@~0.1.1:
|
||||||
version "0.1.2"
|
version "0.1.2"
|
||||||
resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
|
resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
|
||||||
@@ -1603,9 +1667,9 @@ ecc-jsbn@~0.1.1:
|
|||||||
safer-buffer "^2.1.0"
|
safer-buffer "^2.1.0"
|
||||||
|
|
||||||
electron-to-chromium@^1.3.723:
|
electron-to-chromium@^1.3.723:
|
||||||
version "1.3.756"
|
version "1.3.768"
|
||||||
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.756.tgz"
|
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.768.tgz"
|
||||||
integrity sha512-WsmJym1TMeHVndjPjczTFbnRR/c4sbzg8fBFtuhlb2Sru3i/S1VGpzDSrv/It8ctMU2bj8G7g7/O3FzYMGw6eA==
|
integrity sha512-I4UMZHhVSK2pwt8jOIxTi3GIuc41NkddtKT/hpuxp9GO5UWJgDKTBa4TACppbVAuKtKbMK6BhQZvT5tFF1bcNA==
|
||||||
|
|
||||||
elliptic@^6.5.3:
|
elliptic@^6.5.3:
|
||||||
version "6.5.4"
|
version "6.5.4"
|
||||||
@@ -1640,6 +1704,11 @@ emojis-list@^2.0.0:
|
|||||||
resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"
|
resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"
|
||||||
integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
|
integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
|
||||||
|
|
||||||
|
emojis-list@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"
|
||||||
|
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
|
||||||
|
|
||||||
encoding@0.1.13:
|
encoding@0.1.13:
|
||||||
version "0.1.13"
|
version "0.1.13"
|
||||||
resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"
|
resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"
|
||||||
@@ -1883,12 +1952,13 @@ eslint-visitor-keys@^2.0.0:
|
|||||||
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
|
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
|
||||||
|
|
||||||
eslint@^7.29.0:
|
eslint@^7.29.0:
|
||||||
version "7.29.0"
|
version "7.30.0"
|
||||||
resolved "https://registry.npmjs.org/eslint/-/eslint-7.29.0.tgz"
|
resolved "https://registry.npmjs.org/eslint/-/eslint-7.30.0.tgz"
|
||||||
integrity sha512-82G/JToB9qIy/ArBzIWG9xvvwL3R86AlCjtGw+A29OMZDqhTybz/MByORSukGxeI+YPCR4coYyITKk8BFH9nDA==
|
integrity sha512-VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/code-frame" "7.12.11"
|
"@babel/code-frame" "7.12.11"
|
||||||
"@eslint/eslintrc" "^0.4.2"
|
"@eslint/eslintrc" "^0.4.2"
|
||||||
|
"@humanwhocodes/config-array" "^0.5.0"
|
||||||
ajv "^6.10.0"
|
ajv "^6.10.0"
|
||||||
chalk "^4.0.0"
|
chalk "^4.0.0"
|
||||||
cross-spawn "^7.0.2"
|
cross-spawn "^7.0.2"
|
||||||
@@ -2003,11 +2073,16 @@ extracted-loader@^1.0.7:
|
|||||||
resolved "https://registry.npmjs.org/extracted-loader/-/extracted-loader-1.0.7.tgz"
|
resolved "https://registry.npmjs.org/extracted-loader/-/extracted-loader-1.0.7.tgz"
|
||||||
integrity sha512-70ynm4CxHhoXkFS1TOoqIesH+xc7l0sqj8C3i9gQklkAhNZjgSafgVuRJyGmD1lROgP1Ft3z2ONP88XJbAJiow==
|
integrity sha512-70ynm4CxHhoXkFS1TOoqIesH+xc7l0sqj8C3i9gQklkAhNZjgSafgVuRJyGmD1lROgP1Ft3z2ONP88XJbAJiow==
|
||||||
|
|
||||||
extsprintf@1.3.0, extsprintf@^1.2.0:
|
extsprintf@1.3.0:
|
||||||
version "1.3.0"
|
version "1.3.0"
|
||||||
resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
|
resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
|
||||||
integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
|
integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
|
||||||
|
|
||||||
|
extsprintf@^1.2.0:
|
||||||
|
version "1.4.0"
|
||||||
|
resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz"
|
||||||
|
integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
|
||||||
|
|
||||||
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
|
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
|
||||||
version "3.1.3"
|
version "3.1.3"
|
||||||
resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
|
resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
|
||||||
@@ -2035,9 +2110,9 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
|
|||||||
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
||||||
|
|
||||||
fastq@^1.6.0:
|
fastq@^1.6.0:
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"
|
resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz"
|
||||||
integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
|
integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==
|
||||||
dependencies:
|
dependencies:
|
||||||
reusify "^1.0.4"
|
reusify "^1.0.4"
|
||||||
|
|
||||||
@@ -2136,7 +2211,7 @@ fs.realpath@^1.0.0:
|
|||||||
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
|
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
|
||||||
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
||||||
|
|
||||||
fsevents@~2.3.1:
|
fsevents@~2.3.1, fsevents@~2.3.2:
|
||||||
version "2.3.2"
|
version "2.3.2"
|
||||||
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
|
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
|
||||||
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
||||||
@@ -2215,7 +2290,7 @@ getpass@^0.1.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
assert-plus "^1.0.0"
|
assert-plus "^1.0.0"
|
||||||
|
|
||||||
glob-parent@^5.1.2, glob-parent@~5.1.0:
|
glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2:
|
||||||
version "5.1.2"
|
version "5.1.2"
|
||||||
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
|
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
|
||||||
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
|
||||||
@@ -2405,6 +2480,15 @@ http-errors@1.7.3:
|
|||||||
statuses ">= 1.5.0 < 2"
|
statuses ">= 1.5.0 < 2"
|
||||||
toidentifier "1.0.0"
|
toidentifier "1.0.0"
|
||||||
|
|
||||||
|
http-proxy-agent@^4.0.1:
|
||||||
|
version "4.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz"
|
||||||
|
integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
|
||||||
|
dependencies:
|
||||||
|
"@tootallnate/once" "1"
|
||||||
|
agent-base "6"
|
||||||
|
debug "4"
|
||||||
|
|
||||||
http-signature@~1.2.0:
|
http-signature@~1.2.0:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"
|
resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"
|
||||||
@@ -2419,9 +2503,17 @@ https-browserify@1.0.0, https-browserify@^1.0.0:
|
|||||||
resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"
|
resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"
|
||||||
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
|
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
|
||||||
|
|
||||||
|
https-proxy-agent@^5.0.0:
|
||||||
|
version "5.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"
|
||||||
|
integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==
|
||||||
|
dependencies:
|
||||||
|
agent-base "6"
|
||||||
|
debug "4"
|
||||||
|
|
||||||
https@^1.0.0:
|
https@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/https/-/https-1.0.0.tgz#3c37c7ae1a8eeb966904a2ad1e975a194b7ed3a4"
|
resolved "https://registry.npmjs.org/https/-/https-1.0.0.tgz"
|
||||||
integrity sha1-PDfHrhqO65ZpBKKtHpdaGUt+06Q=
|
integrity sha1-PDfHrhqO65ZpBKKtHpdaGUt+06Q=
|
||||||
|
|
||||||
i18next-fs-backend@^1.0.7:
|
i18next-fs-backend@^1.0.7:
|
||||||
@@ -2556,12 +2648,12 @@ inflight@^1.0.4:
|
|||||||
once "^1.3.0"
|
once "^1.3.0"
|
||||||
wrappy "1"
|
wrappy "1"
|
||||||
|
|
||||||
inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.3, inherits@~2.0.4:
|
inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4:
|
||||||
version "2.0.4"
|
version "2.0.4"
|
||||||
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
|
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
|
||||||
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
||||||
|
|
||||||
inherits@2.0.1, inherits@~2.0.1:
|
inherits@2.0.1:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
|
||||||
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
|
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
|
||||||
@@ -2827,9 +2919,9 @@ jest-worker@27.0.0-next.5:
|
|||||||
supports-color "^8.0.0"
|
supports-color "^8.0.0"
|
||||||
|
|
||||||
jest-worker@^27.0.2:
|
jest-worker@^27.0.2:
|
||||||
version "27.0.2"
|
version "27.0.6"
|
||||||
resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.2.tgz"
|
resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.6.tgz"
|
||||||
integrity sha512-EoBdilOTTyOgmHXtw/cPc+ZrCA0KJMrkXzkrPGNwLmnvvlN1nj7MPrxpT7m+otSv2e1TLaVffzDnE/LB14zJMg==
|
integrity sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
merge-stream "^2.0.0"
|
merge-stream "^2.0.0"
|
||||||
@@ -3036,7 +3128,7 @@ loader-runner@^4.2.0:
|
|||||||
resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"
|
resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"
|
||||||
integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==
|
integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==
|
||||||
|
|
||||||
loader-utils@1.2.3, loader-utils@^1.1.0, loader-utils@^1.2.3:
|
loader-utils@1.2.3:
|
||||||
version "1.2.3"
|
version "1.2.3"
|
||||||
resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz"
|
resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz"
|
||||||
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
|
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
|
||||||
@@ -3045,6 +3137,15 @@ loader-utils@1.2.3, loader-utils@^1.1.0, loader-utils@^1.2.3:
|
|||||||
emojis-list "^2.0.0"
|
emojis-list "^2.0.0"
|
||||||
json5 "^1.0.1"
|
json5 "^1.0.1"
|
||||||
|
|
||||||
|
loader-utils@^1.1.0, loader-utils@^1.2.3:
|
||||||
|
version "1.4.0"
|
||||||
|
resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz"
|
||||||
|
integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
|
||||||
|
dependencies:
|
||||||
|
big.js "^5.2.2"
|
||||||
|
emojis-list "^3.0.0"
|
||||||
|
json5 "^1.0.1"
|
||||||
|
|
||||||
locate-path@^2.0.0:
|
locate-path@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
|
resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
|
||||||
@@ -3318,9 +3419,9 @@ neo-async@^2.6.1, neo-async@^2.6.2:
|
|||||||
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
||||||
|
|
||||||
next-i18next@^8.5.1:
|
next-i18next@^8.5.1:
|
||||||
version "8.5.1"
|
version "8.5.3"
|
||||||
resolved "https://registry.npmjs.org/next-i18next/-/next-i18next-8.5.1.tgz"
|
resolved "https://registry.npmjs.org/next-i18next/-/next-i18next-8.5.3.tgz"
|
||||||
integrity sha512-ETr6yOw69PPvbUCH2RoujgRzreTzcbSS4YrTusP5878ovBSmoah/mZ4+iUVVRU4ToeaSBZiIIJA6MtAJWGFBTw==
|
integrity sha512-XV+dL7iW/aOpDMIcWIB2HhfSC9cpaM9yXggE9zJFh+7r2UxJVfC23pw3u5MHFgwkcw5daC4SDBvZoVRrXSFdYQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime" "^7.13.17"
|
"@babel/runtime" "^7.13.17"
|
||||||
"@types/hoist-non-react-statics" "^3.3.1"
|
"@types/hoist-non-react-statics" "^3.3.1"
|
||||||
@@ -4430,9 +4531,9 @@ react-dom@17.0.2:
|
|||||||
scheduler "^0.20.2"
|
scheduler "^0.20.2"
|
||||||
|
|
||||||
react-i18next@^11.8.13:
|
react-i18next@^11.8.13:
|
||||||
version "11.11.0"
|
version "11.11.1"
|
||||||
resolved "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.0.tgz"
|
resolved "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.1.tgz"
|
||||||
integrity sha512-p1jHmoyJgDFQmyubUEjrx6kCsr1izW/C8i9pOiJy+9lJqLYwNA8sElVplm0VAnop3kH68edT0/g3wB3UvAcRCQ==
|
integrity sha512-MtfzPEOvx0ev2cz0HmrEcduuqkktSa5bfeN8Flp0cvN0xP3H3MRSTa8P6pxPtqstHbRe1cD9QBOr5T/FEV2gOw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime" "^7.14.5"
|
"@babel/runtime" "^7.14.5"
|
||||||
html-parse-stringify "^3.0.1"
|
html-parse-stringify "^3.0.1"
|
||||||
@@ -4464,6 +4565,11 @@ react-refresh@0.8.3:
|
|||||||
resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz"
|
resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz"
|
||||||
integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
|
integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
|
||||||
|
|
||||||
|
react-xml-parser@^1.1.8:
|
||||||
|
version "1.1.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/react-xml-parser/-/react-xml-parser-1.1.8.tgz#e0fd3a5aa3c6e50197eed72a05fe110a5df64307"
|
||||||
|
integrity sha512-yX9k9LNCRzzNnFWoyo9cWEjtor6n6VD0Uh7z1ww5rIP6h5vdhJKEmowsm9RumEJMRdr7akcT4mMBScpsz573qQ==
|
||||||
|
|
||||||
react@17.0.2:
|
react@17.0.2:
|
||||||
version "17.0.2"
|
version "17.0.2"
|
||||||
resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz"
|
resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz"
|
||||||
@@ -4535,6 +4641,13 @@ readdirp@~3.5.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
picomatch "^2.2.1"
|
picomatch "^2.2.1"
|
||||||
|
|
||||||
|
readdirp@~3.6.0:
|
||||||
|
version "3.6.0"
|
||||||
|
resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
|
||||||
|
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
|
||||||
|
dependencies:
|
||||||
|
picomatch "^2.2.1"
|
||||||
|
|
||||||
redent@^1.0.0:
|
redent@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz"
|
resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz"
|
||||||
@@ -4766,7 +4879,7 @@ sass@^1.35.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
chokidar ">=3.0.0 <4.0.0"
|
chokidar ">=3.0.0 <4.0.0"
|
||||||
|
|
||||||
sax@~1.2.4:
|
sax@>=0.6.0, sax@~1.2.4:
|
||||||
version "1.2.4"
|
version "1.2.4"
|
||||||
resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
|
resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
|
||||||
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
||||||
@@ -4798,11 +4911,11 @@ schema-utils@^2.6.1, schema-utils@^2.7.0:
|
|||||||
ajv-keywords "^3.5.2"
|
ajv-keywords "^3.5.2"
|
||||||
|
|
||||||
schema-utils@^3.0.0:
|
schema-utils@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.1.0"
|
||||||
resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz"
|
resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.0.tgz"
|
||||||
integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==
|
integrity sha512-tTEaeYkyIhEZ9uWgAjDerWov3T9MgX8dhhy2r0IGeeX4W8ngtGl1++dUve/RUqzuaASSh7shwCDJjEzthxki8w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/json-schema" "^7.0.6"
|
"@types/json-schema" "^7.0.7"
|
||||||
ajv "^6.12.5"
|
ajv "^6.12.5"
|
||||||
ajv-keywords "^3.5.2"
|
ajv-keywords "^3.5.2"
|
||||||
|
|
||||||
@@ -4836,10 +4949,10 @@ semver@~5.3.0:
|
|||||||
resolved "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"
|
resolved "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"
|
||||||
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
|
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
|
||||||
|
|
||||||
serialize-javascript@^5.0.1:
|
serialize-javascript@^6.0.0:
|
||||||
version "5.0.1"
|
version "6.0.0"
|
||||||
resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"
|
resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"
|
||||||
integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
|
integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
|
||||||
dependencies:
|
dependencies:
|
||||||
randombytes "^2.1.0"
|
randombytes "^2.1.0"
|
||||||
|
|
||||||
@@ -5100,7 +5213,7 @@ string-hash@1.1.3:
|
|||||||
resolved "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz"
|
resolved "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz"
|
||||||
integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
|
integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
|
||||||
|
|
||||||
string-width@^1.0.1, "string-width@^1.0.2 || 2":
|
string-width@^1.0.1:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
|
resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
|
||||||
integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
|
integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
|
||||||
@@ -5109,6 +5222,14 @@ string-width@^1.0.1, "string-width@^1.0.2 || 2":
|
|||||||
is-fullwidth-code-point "^1.0.0"
|
is-fullwidth-code-point "^1.0.0"
|
||||||
strip-ansi "^3.0.0"
|
strip-ansi "^3.0.0"
|
||||||
|
|
||||||
|
"string-width@^1.0.2 || 2":
|
||||||
|
version "2.1.1"
|
||||||
|
resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"
|
||||||
|
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
|
||||||
|
dependencies:
|
||||||
|
is-fullwidth-code-point "^2.0.0"
|
||||||
|
strip-ansi "^4.0.0"
|
||||||
|
|
||||||
string-width@^3.0.0, string-width@^3.1.0:
|
string-width@^3.0.0, string-width@^3.1.0:
|
||||||
version "3.1.0"
|
version "3.1.0"
|
||||||
resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
|
resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
|
||||||
@@ -5185,6 +5306,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ansi-regex "^2.0.0"
|
ansi-regex "^2.0.0"
|
||||||
|
|
||||||
|
strip-ansi@^4.0.0:
|
||||||
|
version "4.0.0"
|
||||||
|
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"
|
||||||
|
integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
|
||||||
|
dependencies:
|
||||||
|
ansi-regex "^3.0.0"
|
||||||
|
|
||||||
strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
|
||||||
version "5.2.0"
|
version "5.2.0"
|
||||||
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
|
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
|
||||||
@@ -5328,21 +5456,21 @@ tar@^2.0.0:
|
|||||||
inherits "2"
|
inherits "2"
|
||||||
|
|
||||||
terser-webpack-plugin@^5.1.3:
|
terser-webpack-plugin@^5.1.3:
|
||||||
version "5.1.3"
|
version "5.1.4"
|
||||||
resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz"
|
resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz"
|
||||||
integrity sha512-cxGbMqr6+A2hrIB5ehFIF+F/iST5ZOxvOmy9zih9ySbP1C2oEWQSOUS+2SNBTjzx5xLKO4xnod9eywdfq1Nb9A==
|
integrity sha512-C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA==
|
||||||
dependencies:
|
dependencies:
|
||||||
jest-worker "^27.0.2"
|
jest-worker "^27.0.2"
|
||||||
p-limit "^3.1.0"
|
p-limit "^3.1.0"
|
||||||
schema-utils "^3.0.0"
|
schema-utils "^3.0.0"
|
||||||
serialize-javascript "^5.0.1"
|
serialize-javascript "^6.0.0"
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
terser "^5.7.0"
|
terser "^5.7.0"
|
||||||
|
|
||||||
terser@^5.7.0:
|
terser@^5.7.0:
|
||||||
version "5.7.0"
|
version "5.7.1"
|
||||||
resolved "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz"
|
resolved "https://registry.npmjs.org/terser/-/terser-5.7.1.tgz"
|
||||||
integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==
|
integrity sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==
|
||||||
dependencies:
|
dependencies:
|
||||||
commander "^2.20.0"
|
commander "^2.20.0"
|
||||||
source-map "~0.7.2"
|
source-map "~0.7.2"
|
||||||
@@ -5571,7 +5699,7 @@ util@0.10.3:
|
|||||||
dependencies:
|
dependencies:
|
||||||
inherits "2.0.1"
|
inherits "2.0.1"
|
||||||
|
|
||||||
util@0.12.3, util@^0.12.0:
|
util@0.12.3:
|
||||||
version "0.12.3"
|
version "0.12.3"
|
||||||
resolved "https://registry.npmjs.org/util/-/util-0.12.3.tgz"
|
resolved "https://registry.npmjs.org/util/-/util-0.12.3.tgz"
|
||||||
integrity sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==
|
integrity sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==
|
||||||
@@ -5590,6 +5718,18 @@ util@^0.11.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
inherits "2.0.3"
|
inherits "2.0.3"
|
||||||
|
|
||||||
|
util@^0.12.0:
|
||||||
|
version "0.12.4"
|
||||||
|
resolved "https://registry.npmjs.org/util/-/util-0.12.4.tgz"
|
||||||
|
integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==
|
||||||
|
dependencies:
|
||||||
|
inherits "^2.0.3"
|
||||||
|
is-arguments "^1.0.4"
|
||||||
|
is-generator-function "^1.0.7"
|
||||||
|
is-typed-array "^1.1.3"
|
||||||
|
safe-buffer "^5.1.2"
|
||||||
|
which-typed-array "^1.1.2"
|
||||||
|
|
||||||
uuid@^3.3.2:
|
uuid@^3.3.2:
|
||||||
version "3.4.0"
|
version "3.4.0"
|
||||||
resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
|
resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
|
||||||
@@ -5670,16 +5810,16 @@ webpack-sources@^2.3.0:
|
|||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
|
|
||||||
webpack@^5.40.0:
|
webpack@^5.40.0:
|
||||||
version "5.40.0"
|
version "5.42.1"
|
||||||
resolved "https://registry.npmjs.org/webpack/-/webpack-5.40.0.tgz"
|
resolved "https://registry.npmjs.org/webpack/-/webpack-5.42.1.tgz"
|
||||||
integrity sha512-c7f5e/WWrxXWUzQqTBg54vBs5RgcAgpvKE4F4VegVgfo4x660ZxYUF2/hpMkZUnLjgytVTitjeXaN4IPlXCGIw==
|
integrity sha512-msikozzXrG2Hdx+dElq0fyNvxPFsaM2dKLc/l+xkMmhO/1qwVJ9K9gY+fi/49MYWcpSP7alnK5Q78Evrd1LiqQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/eslint-scope" "^3.7.0"
|
"@types/eslint-scope" "^3.7.0"
|
||||||
"@types/estree" "^0.0.47"
|
"@types/estree" "^0.0.48"
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.0"
|
||||||
"@webassemblyjs/wasm-edit" "1.11.0"
|
"@webassemblyjs/wasm-edit" "1.11.0"
|
||||||
"@webassemblyjs/wasm-parser" "1.11.0"
|
"@webassemblyjs/wasm-parser" "1.11.0"
|
||||||
acorn "^8.2.1"
|
acorn "^8.4.1"
|
||||||
browserslist "^4.14.5"
|
browserslist "^4.14.5"
|
||||||
chrome-trace-event "^1.0.2"
|
chrome-trace-event "^1.0.2"
|
||||||
enhanced-resolve "^5.8.0"
|
enhanced-resolve "^5.8.0"
|
||||||
@@ -5776,11 +5916,34 @@ wrappy@1:
|
|||||||
resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
|
resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
|
||||||
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
||||||
|
|
||||||
|
xml2js@^0.4.23:
|
||||||
|
version "0.4.23"
|
||||||
|
resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66"
|
||||||
|
integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==
|
||||||
|
dependencies:
|
||||||
|
sax ">=0.6.0"
|
||||||
|
xmlbuilder "~11.0.0"
|
||||||
|
|
||||||
|
xmlbuilder@~11.0.0:
|
||||||
|
version "11.0.1"
|
||||||
|
resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz"
|
||||||
|
integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==
|
||||||
|
|
||||||
|
xmldom@^0.6.0:
|
||||||
|
version "0.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.6.0.tgz#43a96ecb8beece991cef382c08397d82d4d0c46f"
|
||||||
|
integrity sha512-iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg==
|
||||||
|
|
||||||
xmlhttprequest@^1.8.0:
|
xmlhttprequest@^1.8.0:
|
||||||
version "1.8.0"
|
version "1.8.0"
|
||||||
resolved "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc"
|
resolved "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"
|
||||||
integrity sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw=
|
integrity sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw=
|
||||||
|
|
||||||
|
xpath@^0.0.32:
|
||||||
|
version "0.0.32"
|
||||||
|
resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.32.tgz#1b73d3351af736e17ec078d6da4b8175405c48af"
|
||||||
|
integrity sha512-rxMJhSIoiO8vXcWvSifKqhvV96GjiD5wYb8/QHdoRyQvraTpp4IEv944nhGausZZ3u7dhQXteZuZbaqfpB7uYw==
|
||||||
|
|
||||||
xtend@^4.0.0, xtend@^4.0.2:
|
xtend@^4.0.0, xtend@^4.0.2:
|
||||||
version "4.0.2"
|
version "4.0.2"
|
||||||
resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
|
resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
|
||||||
|
|||||||
Reference in New Issue
Block a user