diff --git a/AzurePipelines/pr-preview.yml b/AzurePipelines/pr-preview.yml
index 23cd740693..99d782f77a 100644
--- a/AzurePipelines/pr-preview.yml
+++ b/AzurePipelines/pr-preview.yml
@@ -80,8 +80,12 @@ steps:
az webapp deployment slot create \
--name $(webapp.name) \
--resource-group $(webapp.resourceGroup) \
- --slot pr-preview-$(webapp.slotName) \
- --configuration-source $(webapp.name)
+ --slot pr-preview-$(webapp.slotName)
+ az webapp identity assign \
+ -g $(webapp.resourceGroup) \
+ -n $(webapp.name) \
+ --slot pr-preview-$(webapp.slotName) \
+ --identities /subscriptions/19bddd49-8e73-4699-930d-74baa7e5751e/resourcegroups/AlphasiteAppserviceRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID-SCLabs-dev
- task: AzureCLI@2
displayName: 'Deploy pr image to new slot'
@@ -90,11 +94,6 @@ steps:
scriptType: 'bash'
scriptLocation: 'inlineScript'
inlineScript: |
- az webapp identity assign \
- -g $(webapp.resourceGroup) \
- -n $(webapp.name) \
- --slot pr-preview-$(webapp.slotName) \
- --identities /subscriptions/19bddd49-8e73-4699-930d-74baa7e5751e/resourcegroups/AlphasiteAppserviceRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID-SCLabs-dev
az webapp config container set \
--docker-custom-image-name alphasitecrdev.azurecr.io/$(azureContainerRegistry.repository):$(azureContainerRegistry.tag) \
--name $(webapp.name) \
diff --git a/components/atoms/ProjectInfo.js b/components/atoms/ProjectInfo.js
index 295086f4fd..963c7c0ff2 100644
--- a/components/atoms/ProjectInfo.js
+++ b/components/atoms/ProjectInfo.js
@@ -1,22 +1,17 @@
import PropTypes from "prop-types";
-import { useTranslation } from "next-i18next";
-import { useState } from "react";
-import { HelpIcon } from "@dts-stn/service-canada-design-system";
+import { HelpIcon } from "../design-system/HelpIcon";
export function ProjectInfo(props) {
- const { t } = useTranslation("common");
- const [showInfo, setShowInfo] = useState(false);
-
return (
<>
{props.termStarted}
- {!props.dateStarted ? undefined : props.dateStarted.substring(0, 10)}
+ {props.dateStarted && props.dateStarted.substring(0, 10)}
{props.termEnded}
- {!props.dateEnded ? undefined : props.dateEnded.substring(0, 10)}
+ {props.dateEnded && props.dateEnded.substring(0, 10)}
{props.termStage}
diff --git a/components/design-system/Button.jsx b/components/design-system/Button.jsx
new file mode 100644
index 0000000000..65eaeb3d84
--- /dev/null
+++ b/components/design-system/Button.jsx
@@ -0,0 +1,148 @@
+import PropTypes from "prop-types";
+import { Image } from "./Image";
+
+export function Button(props) {
+ const style = "btn-" + props.styling;
+ return props.href === "no ref" ? (
+
+ {props.icon && !props.iconEnd ? (
+
+
+
+ ) : undefined}
+ {props.text}
+ {props.children}
+ {props.icon && props.iconEnd ? (
+
+
+
+ ) : undefined}
+
+ ) : (
+
+ {props.icon && !props.iconEnd ? (
+
+ ) : undefined}
+ {props.text}
+ {props.children}
+ {props.icon && props.iconEnd ? (
+
+
+
+ ) : undefined}
+
+ );
+}
+
+Button.defaultProps = {
+ id: "btn1",
+ styling: "supertask",
+ text: "default",
+ href: "no ref",
+};
+
+Button.propTypes = {
+ /**
+ * Identify which button being clicked
+ */
+ id: PropTypes.string.isRequired,
+
+ /**
+ * User must input one of the follow button styles to apply
+ * to their button. To apply the link style, the user must
+ * also add a value to the href prop
+ */
+ styling: PropTypes.oneOf([
+ "supertask",
+ "primary",
+ "secondary",
+ "danger",
+ "link",
+ "none",
+ ]),
+
+ /**
+ * The text that the button will display
+ */
+ text: PropTypes.string.isRequired,
+
+ /**
+ * This will add a img inside the button when needed
+ */
+ icon: PropTypes.string,
+
+ /**
+ * Alt text for icon added to button
+ */
+ iconAltText: PropTypes.string,
+
+ /**
+ * This is for placing an icon at the end of the component
+ */
+ iconEnd: PropTypes.bool,
+
+ /**
+ * Use when button redirects to a new page.
+ * Automatically applies the Link styling
+ */
+ href: PropTypes.string,
+
+ /**
+ * the type of the button
+ */
+ type: PropTypes.oneOf(["submit", "reset", "button"]),
+
+ /**
+ * Callback for a click event on the button
+ */
+ onClick: PropTypes.func,
+
+ /**
+ * bool to disable a button
+ */
+ disabled: PropTypes.bool,
+
+ /**
+ * css overrides for button
+ */
+ className: PropTypes.string,
+
+ /**
+ * additional attributes for button
+ */
+ attributes: PropTypes.object,
+
+ /**
+ * any other elements you want to add to the button
+ */
+ children: PropTypes.oneOfType([
+ PropTypes.string,
+ PropTypes.element,
+ PropTypes.arrayOf(PropTypes.element),
+ ]),
+};
diff --git a/components/design-system/CTA.jsx b/components/design-system/CTA.jsx
new file mode 100644
index 0000000000..ed94ccc6d8
--- /dev/null
+++ b/components/design-system/CTA.jsx
@@ -0,0 +1,38 @@
+import { Button } from "./Button";
+import { Link } from "./Link";
+import { Image } from "./Image";
+
+export function CTA({
+ heading,
+ body,
+ ButtonProps,
+ LinkProps,
+ containerClass = "",
+}) {
+ return (
+
+
+
+
+
+ {heading}
+
+
{body}
+
+ {LinkProps &&
}
+
+
+
+ );
+}
diff --git a/components/design-system/Collapse.jsx b/components/design-system/Collapse.jsx
new file mode 100644
index 0000000000..394e77ec1c
--- /dev/null
+++ b/components/design-system/Collapse.jsx
@@ -0,0 +1,52 @@
+import PropTypes from "prop-types";
+
+export function Collapse(props) {
+ const { id, title, children } = props;
+ return (
+
+
+ {title}
+
+
+ {children}
+
+
+ );
+}
+
+Collapse.defaultProps = {
+ id: "defaultAccordion",
+};
+
+Collapse.propTypes = {
+ /**
+ * component id
+ */
+ id: PropTypes.string,
+
+ /**
+ * Title of the collapsible header
+ */
+ title: PropTypes.string,
+
+ /**
+ * code passed in to fill the expanded area.
+ */
+ children: PropTypes.oneOfType([
+ PropTypes.string,
+ PropTypes.element,
+ PropTypes.arrayOf(PropTypes.element),
+ ]),
+
+ /**
+ * Test id for unit test
+ */
+ dataTestId: PropTypes.string,
+};
diff --git a/components/design-system/ContextualAlert.jsx b/components/design-system/ContextualAlert.jsx
new file mode 100644
index 0000000000..7552cb757a
--- /dev/null
+++ b/components/design-system/ContextualAlert.jsx
@@ -0,0 +1,117 @@
+import PropTypes from "prop-types";
+
+export function ContextualAlert(props) {
+ const warning_img = "/warning_img.svg";
+ const danger_img = "/danger_img.svg";
+ const info_img = "/info_img.svg";
+ const success_img = "/success_img.svg";
+
+ const {
+ message_heading,
+ message_body,
+ id,
+ type,
+ alert_icon_id,
+ alert_icon_alt_text,
+ asHtml,
+ whiteBG,
+ } = props;
+
+ const alert_type =
+ type === "warning"
+ ? warning_img
+ : type === "danger"
+ ? danger_img
+ : type === "info"
+ ? info_img
+ : success_img;
+
+ const alert_color =
+ type === "warning"
+ ? "border-specific-orange-orange50"
+ : type === "danger"
+ ? "border-specific-red-red50b"
+ : type === "info"
+ ? "border-specific-cyan-cyan50"
+ : "border-specific-green-green50a";
+
+ let white_BG = whiteBG ? "bg-multi-neutrals-white" : " ";
+
+ return (
+
+
+ {/* change back to image component once fixed */}
+
+
+
+ {asHtml ? (
+
+ ) : (
+
{message_heading}
+ )}
+ {asHtml ? (
+
+ ) : (
+
{message_body}
+ )}
+
+
+ );
+}
+
+ContextualAlert.propTypes = {
+ /**
+ * component id
+ */
+ id: PropTypes.string.isRequired,
+
+ /**
+ * alert type
+ */
+ type: PropTypes.oneOf(["warning", "info", "success", "danger"]).isRequired,
+
+ /**
+ * id for the alert icon
+ */
+ alert_icon_id: PropTypes.string.isRequired,
+
+ /**
+ * Alternate text for the alert icon
+ */
+ alert_icon_alt_text: PropTypes.string.isRequired,
+
+ /**
+ * heading text
+ */
+ message_heading: PropTypes.string.isRequired,
+
+ /**
+ * body text
+ */
+ message_body: PropTypes.oneOfType([
+ PropTypes.string,
+ PropTypes.element,
+ PropTypes.arrayOf(PropTypes.element),
+ ]).isRequired,
+
+ /**
+ * HTML toggle. Determines if text is parsed as plain text or HTML.
+ */
+ asHtml: PropTypes.bool,
+
+ /**
+ * If true the background will be white, default is transparent.
+ */
+ whiteBG: PropTypes.bool,
+};
diff --git a/components/design-system/Footer.jsx b/components/design-system/Footer.jsx
new file mode 100644
index 0000000000..c4cfaeac88
--- /dev/null
+++ b/components/design-system/Footer.jsx
@@ -0,0 +1,144 @@
+/* eslint-disable no-prototype-builtins */
+import PropTypes from "prop-types";
+import { MainBand } from "./MainBand";
+import { SubFooterBand } from "./SubFooterBand";
+
+let landscapeLinkKeys = [
+ "contacts",
+ "departments",
+ "about",
+ "jobs",
+ "taxes",
+ "canadaAndWorld",
+ "immigration",
+ "environment",
+ "finance",
+ "travel",
+ "nationalSecurity",
+ "innovation",
+ "business",
+ "culture",
+ "indigenous",
+ "benefit",
+ "policing",
+ "veterans",
+ "health",
+ "transport",
+ "youth",
+];
+
+export function Footer(props) {
+ const {
+ error,
+ lang,
+ id,
+ isAuthenticated,
+ brandLinks,
+ target,
+ onClick,
+ btnLink,
+ } = props;
+
+ return (
+
+ );
+}
+
+Footer.defaultProps = {
+ lang: "en",
+ contactLink: "https://www.canada.ca/en/contact.html",
+ withMainBand: true,
+};
+
+Footer.propTypes = {
+ /**
+ * id of this component
+ */
+ id: PropTypes.string.isRequired,
+ /**
+ * isAuthenticated: bool to switch between authenticated and non authenticated menus
+ **/
+ isAuthenticated: PropTypes.bool,
+ /**
+ * Switch between english and french footer. Pass in "en" or "fr"
+ */
+ lang: PropTypes.oneOf(["en", "fr"]),
+ /**
+ * Add the path Link to the top of your page for the "to the Top" button in mobile
+ */
+ btnLink: PropTypes.string.isRequired,
+
+ /**
+ * containerClass: Customized container class name. If pass a existing class name, then 'ds-container' will be
+ * replaced by the passed in class name.
+ **/
+ containerClass: PropTypes.string,
+
+ /**
+ * If true will display the error page version of the footer component
+ */
+ error: PropTypes.bool,
+
+ /**
+ * Allow user to pass in their own contact link
+ */
+ contactLink: PropTypes.string,
+
+ /**
+ * List of links to display on the footer
+ */
+ brandLinks: PropTypes.arrayOf(
+ PropTypes.shape({
+ id: PropTypes.string,
+ text: PropTypes.string,
+ href: PropTypes.string,
+ })
+ ),
+
+ /**
+ * Specifies where to open the linked document
+ */
+ target: PropTypes.string,
+
+ /**
+ * Handle onclick on the footer media link
+ */
+ onClick: PropTypes.func,
+
+ /**
+ * List of menu items to display in dropdown with links
+ */
+ contextualBandLinks: PropTypes.arrayOf(
+ PropTypes.shape({
+ key: PropTypes.string,
+ text: PropTypes.string,
+ link: PropTypes.string,
+ })
+ ),
+};
diff --git a/components/design-system/Heading.jsx b/components/design-system/Heading.jsx
new file mode 100644
index 0000000000..ae6b7a7fa9
--- /dev/null
+++ b/components/design-system/Heading.jsx
@@ -0,0 +1,54 @@
+import PropTypes from "prop-types";
+
+export function Heading(props) {
+ const { title, fromLink, fromText, id, className } = props;
+
+ return (
+ <>
+
+ {title}
+
+ {fromLink && fromText && (
+
+ From:
+
+ {fromText}
+
+
+ )}
+ >
+ );
+}
+
+Heading.propTypes = {
+ /**
+ * The text / title that will be displayed as heading
+ */
+ title: PropTypes.string.isRequired,
+ /**
+ * Link that should be dispayed under the main heading level
+ */
+ fromLink: PropTypes.string,
+ /**
+ * Text that will be displyed as text link
+ */
+ fromText: PropTypes.string,
+ /**
+ * css overrides for button
+ */
+ className: PropTypes.string,
+ /**
+ * To identify the heading element
+ */
+ id: PropTypes.string.isRequired,
+ /**
+ * Test id for unit test
+ */
+ dataTestId: PropTypes.string,
+};
diff --git a/components/design-system/HelpIcon.jsx b/components/design-system/HelpIcon.jsx
new file mode 100644
index 0000000000..13ff975c73
--- /dev/null
+++ b/components/design-system/HelpIcon.jsx
@@ -0,0 +1,67 @@
+import { useState } from "react";
+import { Modal } from "react-bootstrap";
+import { Button } from "./Button";
+
+export const HelpIcon = ({ title, body, lang }) => {
+ const [showModal, setShowModal] = useState(false);
+ const handleClose = () => setShowModal(false);
+ const handleShow = () => setShowModal(true);
+
+ return (
+ <>
+
+
+
+
+
+
+ {showModal && (
+
+
+
+ {title}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )}
+ >
+ );
+};
diff --git a/components/design-system/Image.jsx b/components/design-system/Image.jsx
new file mode 100644
index 0000000000..0058e9aa81
--- /dev/null
+++ b/components/design-system/Image.jsx
@@ -0,0 +1,38 @@
+import PropTypes from "prop-types";
+
+export function Image(props) {
+ const { src, alt, rounded = "", className = "" } = props;
+
+ return (
+ <>
+
+ >
+ );
+}
+
+Image.propTypes = {
+ /**
+ * The text that the image tag will display
+ */
+ id: PropTypes.string,
+
+ /**
+ * Alternate text will be displayed in place of an image.
+ */
+ alt: PropTypes.string,
+
+ /**
+ * Identify source of image
+ */
+ src: PropTypes.string.isRequired,
+
+ /**
+ * css overrides for image
+ */
+ className: PropTypes.string,
+
+ /**
+ * Enables rounded corners for image
+ */
+ rounded: PropTypes.string,
+};
diff --git a/components/design-system/Link.jsx b/components/design-system/Link.jsx
new file mode 100644
index 0000000000..20a944786e
--- /dev/null
+++ b/components/design-system/Link.jsx
@@ -0,0 +1,146 @@
+/* eslint-disable jsx-a11y/anchor-is-valid */
+import PropTypes from "prop-types";
+
+export function Link(props) {
+ //Styling for links based on Figma Design
+ let basicStyle = "";
+ switch (props.linkStyle) {
+ case "basicStyleWithEmphasis":
+ basicStyle =
+ "underline text-multi-blue-blue70b font-body text-browserh5 font-bold text-mobileh5 leading-33px hover:text-multi-blue-blue50b";
+ break;
+ case "titleLink":
+ basicStyle =
+ "underline text-multi-blue-blue70b font-header text-browserh5 leading-23px font-bold hover:text-multi-blue-blue50b";
+ break;
+ case "smfooterBlue":
+ basicStyle =
+ "text-multi-blue-blue70b font-body leading-20px text-browserh7 hover:underline";
+ break;
+ case "smfooterWhite":
+ basicStyle =
+ "text-multi-neutrals-white font-body text-browserh7 leading-20px font-regular hover:text-multi-neutrals-white hover:underline focus:ring-1 focus:ring-white";
+ break;
+ case "smBreadcrumbs":
+ basicStyle =
+ "text-multi-blue-blue70b font-body text-browserh8 leading-23px font-regular hover:text-multi-blue-blue50b";
+ break;
+ case "cardActionLink":
+ basicStyle =
+ "text-multi-blue-blue70b font-body text-browserh5 underline leading-28px font-regular hover:text-multi-blue-blue50b";
+ break;
+ default:
+ basicStyle =
+ "underline text-multi-blue-blue70b font-body text-browserh5 leading-33px hover:text-multi-blue-blue50b";
+ break;
+ }
+
+ const Component = props.component || "a";
+
+ function onKeyDown() {
+ true;
+ }
+
+ return Component !== "a" ? (
+
+
+ {/* */}
+
+ {props.text}
+
+ {/* */}
+
+ {props.abbr}
+
+
+
+ ) : (
+
+ {/* */}
+
+ {props.text}
+
+ {/* */}
+
+ {props.abbr}
+
+
+ );
+}
+
+Link.defaultProps = {
+ target: "_self",
+ href: "#",
+};
+
+Link.propTypes = {
+ /**
+ * The text that Text Link will display
+ */
+ text: PropTypes.string,
+ /**
+ * Abbrivation for text
+ */
+ abbr: PropTypes.string,
+ /**
+ * Style link as a Text Link when there's a href
+ */
+ href: PropTypes.string,
+ /**
+ * Target attribute to tell the browser where the linked document should be loaded.
+ */
+ target: PropTypes.string,
+ /**
+ * Identify which Text Link being clicked
+ */
+ id: PropTypes.string.isRequired,
+ /**
+ * Lang attribute for links that do not match the language of the top level document
+ */
+ lang: PropTypes.string,
+ /**
+ * css overrides for Link
+ */
+ className: PropTypes.string,
+
+ /**
+ * For tracking on click of forms for analytics
+ */
+ analyticsTracking: PropTypes.bool,
+
+ /**
+ * use ariaLabel to provide more descriptive text for a link (screen reader friendly)
+ */
+ ariaLabel: PropTypes.string,
+
+ /**
+ * Allow user to use configurable component, default is html anchor tag
+ */
+ component: PropTypes.elementType,
+};
diff --git a/components/design-system/MainBand.jsx b/components/design-system/MainBand.jsx
new file mode 100644
index 0000000000..0972deb1d5
--- /dev/null
+++ b/components/design-system/MainBand.jsx
@@ -0,0 +1,43 @@
+import { Link } from "./Link";
+import { useTranslation } from "next-i18next";
+
+export function MainBand(props) {
+ const { t } = useTranslation("common");
+
+ return (
+ <>
+
+ {t("footerTitle")}
+
+
+
+
+ {props.landscapeLinks.map((key, index) => {
+ return (
+
+
+
+ );
+ })}
+
+
+ >
+ );
+}
diff --git a/components/design-system/SubFooterBand.jsx b/components/design-system/SubFooterBand.jsx
new file mode 100644
index 0000000000..fd45ff9be3
--- /dev/null
+++ b/components/design-system/SubFooterBand.jsx
@@ -0,0 +1,88 @@
+import { Link } from "./Link";
+import { Image } from "./Image";
+
+export function SubFooterBand(props) {
+ return (
+
+
+ {props.error ? (
+
+ ) : (
+
+
+
+ {props.brandLinks
+ ? props.brandLinks.map(({ href, text, onClick }, index) => {
+ return (
+
+
+
+ );
+ })
+ : props.brandLinksDefault.map(({ href, text }, index) => {
+ return (
+
+
+
+ );
+ })}
+
+
+
+ )}
+
+
+
+
+
+ );
+}
diff --git a/components/organisms/Layout.js b/components/organisms/Layout.js
index 9443c8ddcf..f0d72d4ac3 100644
--- a/components/organisms/Layout.js
+++ b/components/organisms/Layout.js
@@ -1,6 +1,6 @@
import PropTypes from "prop-types";
import { Banner } from "../atoms/Banner";
-import { Footer } from "@dts-stn/service-canada-design-system";
+// import { Footer } from "@dts-stn/service-canada-design-system";
import { PhaseBanner } from "./PhaseBanner";
import { ReportAProblem } from "./ReportAProblem";
import Link from "next/link";
@@ -8,6 +8,8 @@ import { useTranslation } from "next-i18next";
import { DateModified } from "../atoms/DateModified";
import { Breadcrumb } from "../atoms/Breadcrumb";
+import { Footer } from "../design-system/Footer";
+
/**
* Component which defines the layout of the page for all screen sizes
*/
@@ -33,16 +35,15 @@ export const Layout = ({
return (
-
+
- {t("skipToMainContentBtn")}
-
+ aria-label={t("skipToMainContentBtn")}
+ >
{t("globalHeader")}
diff --git a/package.json b/package.json
index 719f7f3248..34eea1fa13 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,6 @@
"private": true,
"dependencies": {
"@apollo/client": "^3.7.17",
- "@dts-stn/service-canada-design-system": "1.67.9-dev.a73980918",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
@@ -16,8 +15,8 @@
"cors": "^2.8.5",
"cuid": "^2.1.8",
"focus-trap-react": "^8.11.2",
- "graphql": "^16.7.0",
- "i18next": "^23.2.3",
+ "graphql": "^16.8.0",
+ "i18next": "^23.4.5",
"i18next-http-backend": "^1.4.5",
"joi": "^17.9.1",
"js-cookie": "^3.0.5",
@@ -26,6 +25,7 @@
"next-i18next": "^14.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
+ "react-bootstrap": "^2.8.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.0",
diff --git a/pages/home.js b/pages/home.js
index accbb04498..1634c283d1 100644
--- a/pages/home.js
+++ b/pages/home.js
@@ -3,9 +3,9 @@ import { serverSideTranslations } from "next-i18next/serverSideTranslations";
import { Layout } from "../components/organisms/Layout";
import { useEffect, useState } from "react";
import Card from "../components/molecules/Card";
-import { ContextualAlert } from "@dts-stn/service-canada-design-system";
import aemServiceInstance from "../services/aemServiceInstance";
-import { Heading } from "@dts-stn/service-canada-design-system";
+import { Heading } from "../components/design-system/Heading";
+import { ContextualAlert } from "../components/design-system/ContextualAlert";
export default function Home(props) {
const [pageData] = useState(props.pageData.item);
diff --git a/pages/projects/benefits-navigator/[id].js b/pages/projects/benefits-navigator/[id].js
index 5685f9dd5d..bb4633d84f 100644
--- a/pages/projects/benefits-navigator/[id].js
+++ b/pages/projects/benefits-navigator/[id].js
@@ -1,13 +1,11 @@
import Head from "next/head";
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
-import { useTranslation } from "next-i18next";
import { Layout } from "../../../components/organisms/Layout";
-import { ActionButton } from "../../../components/atoms/ActionButton";
import { useEffect, useState } from "react";
import aemServiceInstance from "../../../services/aemServiceInstance";
import { getAllUpdateIds } from "../../../lib/utils/getAllUpdateIds";
-import { CTA, Heading } from "@dts-stn/service-canada-design-system";
import { createBreadcrumbs } from "../../../lib/utils/createBreadcrumbs";
+import { Heading } from "../../../components/design-system/Heading";
export default function DynamicBenefitNavigatorPage(props) {
const [pageData] = useState(props.pageData);
diff --git a/pages/projects/benefits-navigator/index.js b/pages/projects/benefits-navigator/index.js
index 700276f9c7..c33c738dfe 100644
--- a/pages/projects/benefits-navigator/index.js
+++ b/pages/projects/benefits-navigator/index.js
@@ -1,14 +1,13 @@
import Head from "next/head";
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
import { Layout } from "../../../components/organisms/Layout";
-import { ActionButton } from "../../../components//atoms/ActionButton";
import { useEffect, useState } from "react";
import aemServiceInstance from "../../../services/aemServiceInstance";
import { ProjectInfo } from "../../../components/atoms/ProjectInfo";
-import { CTA, Collapse } from "@dts-stn/service-canada-design-system";
-import { Heading } from "@dts-stn/service-canada-design-system";
import Card from "../../../components/molecules/Card";
import { createBreadcrumbs } from "../../../lib/utils/createBreadcrumbs";
+import { Heading } from "../../../components/design-system/Heading";
+import { Collapse } from "../../../components/design-system/Collapse";
export default function BenefitsNavigatorOverview(props) {
const [pageData] = useState(props.pageData.item);
diff --git a/pages/projects/dashboard/index.js b/pages/projects/dashboard/index.js
index 9a7424d371..252365e141 100644
--- a/pages/projects/dashboard/index.js
+++ b/pages/projects/dashboard/index.js
@@ -1,13 +1,11 @@
import Head from "next/head";
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
import { Layout } from "../../../components/organisms/Layout";
-import { ActionButton } from "../../../components//atoms/ActionButton";
import { useEffect, useState } from "react";
import aemServiceInstance from "../../../services/aemServiceInstance";
import { ProjectInfo } from "../../../components/atoms/ProjectInfo";
-import { CTA } from "@dts-stn/service-canada-design-system";
-import { Heading } from "@dts-stn/service-canada-design-system";
import { createBreadcrumbs } from "../../../lib/utils/createBreadcrumbs";
+import { Heading } from "../../../components/design-system/Heading";
export default function MscaDashboard(props) {
const [pageData] = useState(props.pageData.item);
diff --git a/pages/projects/oas-benefits-estimator/[id].js b/pages/projects/oas-benefits-estimator/[id].js
index 1f51b015dd..5981068d28 100644
--- a/pages/projects/oas-benefits-estimator/[id].js
+++ b/pages/projects/oas-benefits-estimator/[id].js
@@ -6,8 +6,9 @@ import { ActionButton } from "../../../components/atoms/ActionButton";
import { useEffect, useState } from "react";
import aemServiceInstance from "../../../services/aemServiceInstance";
import { getAllUpdateIds } from "../../../lib/utils/getAllUpdateIds";
-import { CTA, Heading } from "@dts-stn/service-canada-design-system";
import { createBreadcrumbs } from "../../../lib/utils/createBreadcrumbs";
+import { CTA } from "../../../components/design-system/CTA";
+import { Heading } from "../../../components/design-system/Heading";
export default function OASUpdatePage(props) {
const { t } = useTranslation("common");
diff --git a/pages/projects/oas-benefits-estimator/index.js b/pages/projects/oas-benefits-estimator/index.js
index dcd1f5f5ca..1865f09478 100644
--- a/pages/projects/oas-benefits-estimator/index.js
+++ b/pages/projects/oas-benefits-estimator/index.js
@@ -5,10 +5,10 @@ import { ActionButton } from "../../../components//atoms/ActionButton";
import { useEffect, useState } from "react";
import aemServiceInstance from "../../../services/aemServiceInstance";
import { ProjectInfo } from "../../../components/atoms/ProjectInfo";
-import { CTA } from "@dts-stn/service-canada-design-system";
-import { Heading } from "@dts-stn/service-canada-design-system";
import Card from "../../../components/molecules/Card";
import { createBreadcrumbs } from "../../../lib/utils/createBreadcrumbs";
+import { CTA } from "../../../components/design-system/CTA";
+import { Heading } from "../../../components/design-system/Heading";
export default function OasBenefitsEstimator(props) {
const [pageData] = useState(props.pageData.item);
diff --git a/public/comment_bubble.svg b/public/comment_bubble.svg
new file mode 100644
index 0000000000..67804ccbb6
--- /dev/null
+++ b/public/comment_bubble.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/public/danger_img.svg b/public/danger_img.svg
new file mode 100644
index 0000000000..af0554a37e
--- /dev/null
+++ b/public/danger_img.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/public/footer_bg_img.svg b/public/footer_bg_img.svg
new file mode 100644
index 0000000000..d7ddcf4c9a
--- /dev/null
+++ b/public/footer_bg_img.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/public/info_img.svg b/public/info_img.svg
new file mode 100644
index 0000000000..045d738f47
--- /dev/null
+++ b/public/info_img.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index f707511e75..39a15cd765 100644
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -8,12 +8,12 @@
"dateModified": "Date modified:",
"footerReportProblemButtonString": "Report a problem or mistake on this page",
"footerReportProblem": "Experiencing an issue with this product or have you spotted an error?",
- "projectsAndExplorationTitle": "Have a voice in tomorrow’s services",
+ "projectsAndExplorationTitle": "Have a voice in tomorrow's services",
"experimentsAndExploration-1/4": "Welcome to the virtual Service Canada Labs. We invite you to explore works in progress and test experimental ideas with our team working in the Government of Canada. We need your participation, across all communities, to create inclusive services that meet the needs of all Canadians.",
"experimentsAndExploration-2/4": "\n\nHow you can help:",
"experimentsAndExplorationList": "* Try out current projects * Give anonymous feedback on projects when you try them out * Sign up to get notified and participate in upcoming research sessions with our team",
"experimentsAndExploration-3/4": "You can try out the projects and give anonymous feedback without signing up to be a participant. If you want to be more involved, you can fill out our participant form to be invited to research sessions.",
- "experimentsAndExploration-4/4": "The services you’ll find here are still in their early stages and are not finished yet, but we’re inviting you to help us test and improve them as we go. We might stop working on some ideas if we learn they are not adding value and not meeting people’s needs.",
+ "experimentsAndExploration-4/4": "The services you'll find here are still in their early stages and are not finished yet, but we're inviting you to help us test and improve them as we go. We might stop working on some ideas if we learn they are not adding value and not meeting people's needs.",
"circleTxt1/4": "Displaying our early works in progress",
"circleTxt2/4": "Encouraging people of diverse backgrounds to participate in user research",
"circleTxt3/4": "Trying out new technology",
@@ -52,10 +52,10 @@
"reportAProblemCheckAllThatApply": "Check all the issues that apply",
"reportAProblemIncorrectInformation": "Incorrect Information",
"reportAProblemUnclearInformation": "Unclear Information",
- "reportAProblemDidNotFindWhatYoureLookingFor": "You didn’t find what you were looking for",
+ "reportAProblemDidNotFindWhatYoureLookingFor": "You didn't find what you were looking for",
"reportAProblemPageDoesNotWorkWithAdaptiveTechnology": "Page does not work with your adaptive technologies",
- "reportAProblemYoureWorriedAboutYourPrivacy": "You’re worried about your privacy",
- "reportAProblemNoWhereElseToGo": "You don’t know where else to go for help",
+ "reportAProblemYoureWorriedAboutYourPrivacy": "You're worried about your privacy",
+ "reportAProblemNoWhereElseToGo": "You don't know where else to go for help",
"reportAProblemOther": "Other",
"reportAProblemProvideMoreDetails": "Provide more details",
"reportAProblemNoReply": "You will not receive a reply.",
@@ -81,7 +81,7 @@
"menuLink3": "Virtual Assistant",
"aboutThisSiteContent1": "The Digital Experience and Client Data group at Service Canada created this virtual lab where anyone can see, test, and provide feedback on new projects in development.",
"aboutThisSiteContent2": "Your feedback is needed so we can deliver useful services that are simple and easy to use for everyone.",
- "aboutThisSiteContent3": "We’re offering opportunities to give us feedback early and often so we can make sure our services will work for the people using them.",
+ "aboutThisSiteContent3": "We're offering opportunities to give us feedback early and often so we can make sure our services will work for the people using them.",
"privacyPolicyContent1": "Your participation is completely voluntary. You can withdraw your personal information from our list at any time with no impact.",
"privacyPolicyHeading1": "What we will collect",
"privacyPolicyContent2": "To sign up to join our group of participants we need the following information so we can contact you with any relevant opportunities to take part in our research:",
@@ -94,12 +94,12 @@
"privacyPolicyAnd": "and the",
"privacyPolicyThe": "the",
"privacyPolicyContent4": "This information will be collected under the authority of the",
- "privacyPolicyContent5": " Employment and Social Development Canada’s Digital Experience and Client Data group will use this information to understand and improve how it delivers benefits and services through Service Canada.",
+ "privacyPolicyContent5": " Employment and Social Development Canada's Digital Experience and Client Data group will use this information to understand and improve how it delivers benefits and services through Service Canada.",
"privacyPolicyContent6": "We collect this information to ensure our research groups are diverse, and to identify trends in feedback for specific groups.",
"privacyPolicyHeading2": "How we will use this information",
"privacyPolicyContent7": "This personal information is confidential and will not be used for any “administrative purposes.” This means that your information will not be used for any decision-making process that directly affects you or your access to Government of Canada services. Your information will be used by Employment and Social Development Canada for policy analysis, research, and evaluation purposes.",
"privacyPolicyContent8": "We will only use your email address to communicate with you.",
- "privacyPolicyContent9": "The Digital Experience and Client Data group will own the information for two years after the project’s end date. Your information may be shared with other government departments such as the Canada Revenue Agency, Immigration, Refugees and Citizenship Canada for the purpose of collaborating on other service improvement projects and would not include your name, or email address.",
+ "privacyPolicyContent9": "The Digital Experience and Client Data group will own the information for two years after the project's end date. Your information may be shared with other government departments such as the Canada Revenue Agency, Immigration, Refugees and Citizenship Canada for the purpose of collaborating on other service improvement projects and would not include your name, or email address.",
"privacyPolicyHeading3": "Who we are",
"privacyPolicyContent10": "The Digital Experience and Client Data group is a program within Employment and Social Development Canada. ",
"privacyPolicyContent11": "The collection, use, and disclosure of your personal information is in accordance with the federal ",
@@ -113,7 +113,7 @@
"privacyPolicyContent16": "You have the right to file a complaint with the ",
"privacyPolicyPrivacyCommissioner": "Privacy Commissioner of Canada ",
"privacyPolicyPrivacyCommissionerURL": "https://www.priv.gc.ca/en/about-the-opc/who-we-are/the-privacy-commissioner-of-canada/",
- "privacyPolicyContent17": "regarding Employment and Social Development Canada’s handling of your personal information.",
+ "privacyPolicyContent17": "regarding Employment and Social Development Canada's handling of your personal information.",
"privacyLink": "/signup/privacy",
"upcoming_projects": "Upcoming projects",
"current_projects": "Current projects",
@@ -122,7 +122,7 @@
"filterBy": "Filter by: ",
"skipToMainContentBtn": "Skip to main content",
"signupTitle": "Sign up to get invited to research sessions (Step 1 of 2)",
- "signupP1": "Get invited to test our experimental ideas and participate in research interviews to make government services better for everyone. Every bit of feedback helps us make sure we’re making our services simple and easy to use.",
+ "signupP1": "Get invited to test our experimental ideas and participate in research interviews to make government services better for everyone. Every bit of feedback helps us make sure we're making our services simple and easy to use.",
"signupList1": "* Meet virtually with a member of our team to test an early version of a service * Meet virtually with a member of our team to answer questions about your experience with government services",
"signupP1.1": "You can try out the projects and give anonymous feedback without signing up to be a participant. If you want to be more involved, you can fill out our participant form below to be invited to research sessions. You must be at least 18 years old to sign up.",
"signupTitle2": "We respect your privacy",
@@ -170,7 +170,7 @@
"yes": "Yes",
"yesDetails": "If “Yes,” what assistive technology will you need in order to participate in an online research session with us?",
"no": "No",
- "notSure": "I’m not sure",
+ "notSure": "I'm not sure",
"formMinority": "Do you identify as a member of a visible minority in Canada?",
"minorityYesDetails": "If “Yes”, select the options that you identify with.",
"black": "Black",
@@ -215,7 +215,7 @@
"signupLink": "Sign up",
"errorMustBe18": "Must be at least 18 years old",
"privacyLinkText": "Review the privacy policy",
- "becomeAParticipantDescription": "You’re invited to test our experimental ideas and participate in research interviews to make Service Canada better for everyone. Every bit of feedback helps us make sure we’re making our services simple and easy to use. \n\n Your participation will not affect your access to government services. You can unsubscribe at any time.",
+ "becomeAParticipantDescription": "You're invited to test our experimental ideas and participate in research interviews to make Service Canada better for everyone. Every bit of feedback helps us make sure we're making our services simple and easy to use. \n\n Your participation will not affect your access to government services. You can unsubscribe at any time.",
"thankYou": "Thank you!",
"confirmationP1": "We have sent a confirmation email to ",
"from": "from",
@@ -238,7 +238,7 @@
"unsubscribeConfirmationTitle": "You have successfully unsubscribed",
"unsubscribeConfirmationP1": "Thank you for your time!",
"unsubscribeConfirmationP2": "You will not be contacted for future research studies.",
- "cantFindEMailError": "The email address provided can’t be found in our system",
+ "cantFindEMailError": "The email address provided can't be found in our system",
"sentEmailTo": "We have sent an email to",
"toCheckEmail": "for you to verify and confirm the email address you provided.",
"pleaseCheckYourEmail": "Please check your emails (Step 2 of 2)",
@@ -322,7 +322,7 @@
"unsubscribeMetaDescription": "Form to unsubscribe and no longer be invited to take part in the research sessions.",
"confirmationMetaDescription1": "Message stating that your email address has been confirmed.",
"confirmationMetaDescription2": "Message that confirms that you have unsubscribed.",
- "404errorMetaDescription": "Error message stating that the page couldn’t be found.",
+ "404errorMetaDescription": "Error message stating that the page couldn't be found.",
"chromeLink": "https://www.google.com/intl/en_ca/chrome/",
"safariLink": "https://support.apple.com/en_CA/downloads",
"edgeLink": "https://www.microsoft.com/en-us/edge",
@@ -371,11 +371,136 @@
"informationIconAltText": "An icon indicating important information or instructions",
"topOfPage": "Top of page",
"signupBannerBtnText": "Sign up for research session invites",
- "signupBannerDescription": "You’re invited to fill out quick surveys or take part in research sessions to make Service Canada better for everyone. Your feedback helps us make our services simple and easy to use.",
+ "signupBannerDescription": "You're invited to fill out quick surveys or take part in research sessions to make Service Canada better for everyone. Your feedback helps us make our services simple and easy to use.",
"signupBannerDisclaimer": "Your participation will not affect your access to government services. Participation is voluntary and you can opt out at any time.",
"tableOfContentsTitle": "On this page:",
"started": "Started:",
"ended": "Paused:",
"stage": "Project stage:",
- "status": "Summary:"
+ "status": "Summary:",
+
+ "landscapeLinks": {
+ "text": {
+ "contacts": "All contacts",
+ "departments": "Departments and agencies",
+ "about": "About government",
+ "jobs": "Jobs",
+ "taxes": "Taxes",
+ "canadaAndWorld": "Canada and the world",
+ "immigration": "Immigration and citizenship",
+ "environment": "Environment and natural resources",
+ "finance": "Money and finance",
+ "travel": "Travel and tourism",
+ "nationalSecurity": "National security and defence",
+ "innovation": "Science and innovation",
+ "business": "Business",
+ "culture": "Culture, history and sport",
+ "indigenous": "Indigenous peoples",
+ "benefit": "Benefits",
+ "policing": "Policing, justice and emergencies",
+ "veterans": "Veterans and military",
+ "health": "Health",
+ "transport": "Transport and infrastructure",
+ "youth": "Youth"
+ },
+ "link": {
+ "contacts": "https://www.canada.ca/en/contact.html",
+ "departments": "https://www.canada.ca/en/government/dept.html",
+ "about": "https://www.canada.ca/en/government/system.html",
+ "jobs": "https://www.canada.ca/en/services/jobs.html",
+ "taxes": "https://www.canada.ca/en/services/taxes.html",
+ "canadaAndWorld": "https://international.gc.ca/world-monde/index.aspx?lang=eng",
+ "immigration": "https://www.canada.ca/en/services/immigration-citizenship.html",
+ "environment": "https://www.canada.ca/en/services/environment.html",
+ "finance": "https://www.canada.ca/en/services/finance.html",
+ "travel": "https://travel.gc.ca/",
+ "nationalSecurity": "https://www.canada.ca/en/services/defence.html",
+ "innovation": "https://www.canada.ca/en/services/science.html",
+ "business": "https://www.canada.ca/en/services/business.html",
+ "culture": "https://www.canada.ca/en/services/culture.html",
+ "indigenous": "https://www.canada.ca/en/services/indigenous-peoples.html",
+ "benefit": "https://www.canada.ca/en/services/benefits.html",
+ "policing": "https://www.canada.ca/en/services/policing.html",
+ "veterans": "https://www.canada.ca/en/services/veterans-military.html",
+ "health": "https://www.canada.ca/en/services/health.html",
+ "transport": "https://www.canada.ca/en/services/transport.html",
+ "youth": "https://www.canada.ca/en/services/youth.html"
+ }
+ },
+ "aboutSite": "About this site",
+ "brandLinks": {
+ "link1": "Social media",
+ "link2": "Mobile applications",
+ "link3": "About Canada.ca",
+ "link4": "Terms and conditions",
+ "link5": "Privacy",
+ "link1link": "https://www.canada.ca/en/social.html",
+ "link2link": "https://www.canada.ca/en/mobile.html",
+ "link3link": "https://www.canada.ca/en/government/about.html",
+ "link4link": "https://www.canada.ca/en/transparency/terms.html",
+ "link5link": "https://www.canada.ca/en/transparency/privacy.html"
+ },
+ "mscaFooterHeading": "My Service Canada Account",
+ "mscaContactUs": {
+ "mscaFooterContactUsText": "Contact Us",
+ "mscaFooterContactUsLink": "/"
+ },
+ "footerTitle": "Government of Canada",
+ "footerTopOfPageButtonText": "Top of page",
+ "errorPageHeadingTitle404": "We couldn't find that web page",
+ "errorPageHeadingTitle500": "We're having a problem with that page",
+ "errorPageHeadingTitle503": "This service is currently not available",
+ "errorPageErrorText404": "We're sorry you ended up here. Sometimes a page gets moved or deleted, but hopefully we can help you find what you're looking for.",
+ "errorPageErrorText500": "We expect the problem to be fixed shortly. It's not your computer or Internet connection but a problem with our website's server. We apologize for the inconvenience.",
+ "errorPageErrorText503": "The web server that provides this service is currently overloaded, or may be temporarily down for maintenance. We apologize for the inconvenience. ",
+ "errorPageNextText": " What next?",
+ "errorTextLinkCommon": "• Go to the ",
+ "errorTextLinkCommon_2": " Service Canada home page",
+ "errorTextLinkCommonLink": "https://www.canada.ca/en/employment-social-development/corporate/portfolio/service-canada.html",
+ "errorAuthTextLinkCommon": "• Go to your ",
+ "errorAuthTextLinkCommon_2": "My Service Canada Account dashboard",
+ "errorAuthTextLinkCommonLink": "https://www.canada.ca/en/employment-social-development/services/my-account.html",
+ "error500TextLink": "• Try refreshing the page or try again later",
+ "error503TextLink": "• Try again later",
+ "errorPageType": "Error",
+ "reportAProblem": "Report a problem or mistake on this page",
+ "menuHeaderTitle": "My Service Canada Account",
+ "menuButtonTitle": "Account",
+ "menuItems1": "Services",
+ "menuItems2": "Life events",
+ "menuItems3": "Contact us",
+ "myAccountTitle": "My Service Canada Account",
+ "myDashboard": "My dashboard",
+ "mySecurity": "Security Settings",
+ "myProfile": "Profile",
+ "myCRA": "Switch to CRA My Account",
+ "mySignOut": "Sign out",
+ "skipToMain": "Skip to main content",
+ "skipToAbout": "Skip to 'About government'",
+ "switchToBasic": "Switch to basic HTML version",
+ "accordionStep": "step",
+ "accordionExpanded": "expanded",
+ "accordionCollapsed": "collapsed",
+ "datePicker": {
+ "month": "Month",
+ "year": "Year",
+ "day": "Day",
+ "months": {
+ "1": "January",
+ "2": "February",
+ "3": "March",
+ "4": "April",
+ "5": "May",
+ "6": "June",
+ "7": "July",
+ "8": "August",
+ "9": "September",
+ "10": "October",
+ "11": "November",
+ "12": "December"
+ }
+ },
+ "searchPlaceholderText": "Search Canada.ca",
+ "searchButtonHoverText": "Search bar button",
+ "monthDropdownPlaceholder": "Select month"
}
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index b29a4f5d26..c8eaab7766 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -1,28 +1,28 @@
{
- "phaseBannerTag": "SITE D’ESSAI",
- "phaseBannerText": "Vous ne pouvez pas demander de services ou de prestations par l’intermédiaire de ce site d’essai. Certaines parties du site pourraient ne pas fonctionner et seront modifiées.",
+ "phaseBannerTag": "SITE D'ESSAI",
+ "phaseBannerText": "Vous ne pouvez pas demander de services ou de prestations par l'intermédiaire de ce site d'essai. Certaines parties du site pourraient ne pas fonctionner et seront modifiées.",
"siteTitle": "Laboratoires de Service Canada",
"bannerText": "Donnez vos commentaires pour de nouveaux services gouvernementaux simples et faciles à utiliser",
- "figCaption": "Diagramme qui montre ce que nous faisons et comment les commentaires des utilisateurs sont transformés en un service pour les Canadiens - et / ou - les avantages de rejoindre le bassin d’utilisateurs pour les testeurs",
+ "figCaption": "Diagramme qui montre ce que nous faisons et comment les commentaires des utilisateurs sont transformés en un service pour les Canadiens - et / ou - les avantages de rejoindre le bassin d'utilisateurs pour les testeurs",
"contactUsHeading": "Nous contacter",
- "dateModified": "Date de modification :",
+ "dateModified": "Date de modification :",
"footerReportProblemButtonString": "Signaler un problème ou une erreur sur cette page",
"footerReportProblem": "Vous rencontrez un problème avec ce produit ou avez-vous repéré une erreur?",
"reportAProblemTitle": "Signaler un problème ou une erreur sur cette page",
- "reportAProblemCheckAllThatApply": "Cochez toutes les options qui s’appliquent",
+ "reportAProblemCheckAllThatApply": "Cochez toutes les options qui s'appliquent",
"reportAProblemIncorrectInformation": "Informations incorrectes",
"reportAProblemUnclearInformation": "Informations imprécises",
- "reportAProblemDidNotFindWhatYoureLookingFor": "Vous n’avez pas trouvé ce que vous cherchiez",
- "reportAProblemPageDoesNotWorkWithAdaptiveTechnology": "La page ne fonctionne pas avec vos technologies d’adaptation",
+ "reportAProblemDidNotFindWhatYoureLookingFor": "Vous n'avez pas trouvé ce que vous cherchiez",
+ "reportAProblemPageDoesNotWorkWithAdaptiveTechnology": "La page ne fonctionne pas avec vos technologies d'adaptation",
"reportAProblemYoureWorriedAboutYourPrivacy": "Vous êtes inquiet pour votre vie privée",
- "reportAProblemNoWhereElseToGo": "Vous ne savez pas où trouver de l’aide",
+ "reportAProblemNoWhereElseToGo": "Vous ne savez pas où trouver de l'aide",
"reportAProblemOther": "Autres",
"reportAProblemProvideMoreDetails": "Fournir plus de détails",
"reportAProblemNoReply": "Vous ne recevrez pas de réponse.",
"reportAProblemEnquiries": "Pour toute demande de renseignements, veuillez contacter",
- "reportAProblemNoPersonalInfo": "N’incluez pas d’informations personnelles",
- "reportAProblemNoPersonalInfoDetails": "tels que votre nom, votre numéro d’assurance sociale (NAS), votre adresse personnelle ou professionnelle ou tout numéro de dossier ou d’affaire",
- "reportAProblemMoreInfo": "Pour plus d’information sur cet outil",
+ "reportAProblemNoPersonalInfo": "N'incluez pas d'informations personnelles",
+ "reportAProblemNoPersonalInfoDetails": "tels que votre nom, votre numéro d'assurance sociale (NAS), votre adresse personnelle ou professionnelle ou tout numéro de dossier ou d'affaire",
+ "reportAProblemMoreInfo": "Pour plus d'information sur cet outil",
"reportAProblemMoreInfoDetails": "veuillez vous référer à nos termes et conditions",
"reportAProblemMoreInfoLink": "https://www.canada.ca/fr/transparence/avis.html",
"reportAProblemThankYouForYourHelp": "Merci pour votre aide !",
@@ -35,16 +35,16 @@
"reportAProblemError": "Erreur: Veuillez sélectionner une option",
"expanded": "affiché",
"collapsed": "masqué",
- "projectsAndExplorationTitle": "Participez à l’élaboration des services de demain",
+ "projectsAndExplorationTitle": "Participez à l'élaboration des services de demain",
"experimentsAndExploration-1/4": "Bienvenue dans les laboratoires virtuels de Service Canada. Nous vous invitons à explorer les travaux en cours et analyser des idées expérimentales avec notre équipe travaillant au sein du gouvernement du Canada. Nous avons besoin de votre participation, dans toutes les communautés, afin de créer des services inclusifs répondant aux besoins de tous les Canadiens.",
- "experimentsAndExploration-2/4": "\n\nComment vous pouvez nous aider dans ce qui suit :",
+ "experimentsAndExploration-2/4": "\n\nComment vous pouvez nous aider dans ce qui suit :",
"experimentsAndExplorationList": "* Analyser les projets en cours * Donner des commentaires de façon anonyme sur les projets lorsque vous les analysez * Vous inscrire pour être informé et participer aux prochaines séances de recherche avec notre équipe",
"experimentsAndExploration-3/4": "Vous pouvez analyser les projets et donner vos commentaires de façon anonyme sans vous inscrire pour être invité à participer aux séances avec notre équipe. Si vous souhaitez vous impliquer davantage, vous pouvez vous inscrire en remplissant notre formulaire.",
- "experimentsAndExploration-4/4": "Les services que vous trouverez ici en sont encore à leurs premières ébauches et ne sont pas encore terminés. Nous vous invitons à contribuer aux projets et aux améliorations en cours. Nous pourrions arrêter de travailler sur certaines idées si nous constatons qu’elles n’apportent pas de valeur ajoutée et ne répondent pas aux besoins des gens.",
+ "experimentsAndExploration-4/4": "Les services que vous trouverez ici en sont encore à leurs premières ébauches et ne sont pas encore terminés. Nous vous invitons à contribuer aux projets et aux améliorations en cours. Nous pourrions arrêter de travailler sur certaines idées si nous constatons qu'elles n'apportent pas de valeur ajoutée et ne répondent pas aux besoins des gens.",
"circleTxt1/4": "Nous présentons nos premiers travaux en cours.",
- "circleTxt2/4": "Nous encourageons les personnes d’origines diverses à participer à la recherche sur l’expérience des utilisateurs.",
+ "circleTxt2/4": "Nous encourageons les personnes d'origines diverses à participer à la recherche sur l'expérience des utilisateurs.",
"circleTxt3/4": "Nous essayons les nouvelles technologies.",
- "circleTxt4/4": "Nous créons un dialogue ouvert par l’intermédiaire des blogues, d'un code extérieur et des premiers modèles.",
+ "circleTxt4/4": "Nous créons un dialogue ouvert par l'intermédiaire des blogues, d'un code extérieur et des premiers modèles.",
"aboutTitle": "À propos des laboratoires",
"privacyTitle": "Politique en matière de protection des renseignements personnels",
"howWeWork": "Comment nous travaillons",
@@ -63,7 +63,7 @@
"footerHowGovWorksURL": "https://www.canada.ca/fr/gouvernement/systeme.html",
"footerPublicService": "Fonction publique et force militaire",
"footerPublicServiceURL": "https://www.canada.ca/fr/gouvernement/fonctionpublique.html",
- "footerGovReporting": "Rapports à l’échelle du gouvernement",
+ "footerGovReporting": "Rapports à l'échelle du gouvernement",
"footerGovReportingURL": "https://www.canada.ca/fr/transparence/rapports.html",
"footerOpenGov": "Gouvernement ouvert",
"footerOpenGovURL": "https://open.canada.ca/fr",
@@ -84,31 +84,31 @@
"aboutThisSiteContent3": "Nous vous offrons la possibilité de nous faire part de vos commentaires rapidement et souvent afin que nous puissions nous assurer que nos services fonctionnent pour les personnes qui les utilisent.",
"privacyPolicyContent1": "Votre participation est volontaire. Vous pouvez retirer vos renseignements personnels de notre liste à tout moment, sans aucune conséquence.",
"privacyPolicyHeading1": "Ce que nous allons recueillir",
- "privacyPolicyContent2": "Pour vous inscrire à notre groupe de participants, vous devez nous fournir les renseignements suivants. Ils nous permettront de communiquer avec vous pour vous proposer de participer à nos recherches :",
+ "privacyPolicyContent2": "Pour vous inscrire à notre groupe de participants, vous devez nous fournir les renseignements suivants. Ils nous permettront de communiquer avec vous pour vous proposer de participer à nos recherches :",
"privacyPolicyList1": "* Adresse de courrier électronique * Année de naissance * Langue de votre choix",
"privacyPolicyContent3": "Vous pouvez également choisir de répondre à quelques questions supplémentaires ci-dessous. Vos réponses nous permettront de vous inviter à participer à des recherches et à des essais correspondant à vos expériences de vie.",
- "privacyPolicyAct1": "Loi sur le ministère de l’Emploi et du Développement social",
+ "privacyPolicyAct1": "Loi sur le ministère de l'Emploi et du Développement social",
"privacyPolicyAct2": "Loi sur la gestion des finances publiques",
"privacyPolicyAct3": "Loi sur la protection des renseignements personnels ",
"privacyPolicyAnd": "et de la",
"privacyPolicyThe": "à la",
"privacyPolicyList2": "* Province ou territoire * Identité de genre * Identité autochtone * Situation de handicap * Groupe de minorité visible * Niveau de revenus",
"privacyPolicyContent4": "Ces renseignements seront recueillis en vertu de la ",
- "privacyPolicyContent5": "Le groupe Expérience numérique et données clients d’Emploi et Développement social Canada utilisera ces renseignements pour comprendre et améliorer la façon dont il verse les prestations et fournit les services par l’intermédiaire de Service Canada.",
+ "privacyPolicyContent5": "Le groupe Expérience numérique et données clients d'Emploi et Développement social Canada utilisera ces renseignements pour comprendre et améliorer la façon dont il verse les prestations et fournit les services par l'intermédiaire de Service Canada.",
"privacyPolicyContent6": "Nous recueillons ces renseignements pour nous assurer que nos groupes de recherche sont diversifiés et pour reconnaître les tendances en matière de rétroaction provenant de groupes précis.",
"privacyPolicyHeading2": "Comment nous utiliserons ces renseignements",
- "privacyPolicyContent7": "Ces renseignements personnels ne seront pas utilisés à des « fins administratives ». Cela signifie que vos renseignements ne seront pas utilisés dans le cadre d’un processus décisionnel qui vous touche directement ou qui peut modifier votre accès aux services du gouvernement du Canada. Vos renseignements seront utilisés par Emploi et Développement social Canada aux fins d’analyse des politiques, de recherche et d’évaluation.",
- "privacyPolicyContent8": "Nous n’utiliserons votre adresse de courrier électronique que pour communiquer avec vous.",
- "privacyPolicyContent9": "Le groupe Expérience numérique et données clients conservera vos renseignements pendant deux ans après la date de fin du projet. Vos renseignements pourraient être communiqués à d’autres ministères, tels que l’Agence du revenu du Canada, Immigration, Réfugiés et Citoyenneté Canada, dans le but de collaborer à d’autres projets d’amélioration du service, et n'incluraient pas votre nom ou votre adresse de courrier électronique.",
+ "privacyPolicyContent7": "Ces renseignements personnels ne seront pas utilisés à des « fins administratives ». Cela signifie que vos renseignements ne seront pas utilisés dans le cadre d'un processus décisionnel qui vous touche directement ou qui peut modifier votre accès aux services du gouvernement du Canada. Vos renseignements seront utilisés par Emploi et Développement social Canada aux fins d'analyse des politiques, de recherche et d'évaluation.",
+ "privacyPolicyContent8": "Nous n'utiliserons votre adresse de courrier électronique que pour communiquer avec vous.",
+ "privacyPolicyContent9": "Le groupe Expérience numérique et données clients conservera vos renseignements pendant deux ans après la date de fin du projet. Vos renseignements pourraient être communiqués à d'autres ministères, tels que l'Agence du revenu du Canada, Immigration, Réfugiés et Citoyenneté Canada, dans le but de collaborer à d'autres projets d'amélioration du service, et n'incluraient pas votre nom ou votre adresse de courrier électronique.",
"privacyPolicyHeading3": "Qui nous sommes",
- "privacyPolicyContent10": "Le groupe Expérience numérique et données clients relève de la responsabilité d’Emploi et Développement social Canada.",
- "privacyPolicyContent11": "La collecte, l’utilisation et la divulgation de vos renseignements personnels sont conformes à la ",
+ "privacyPolicyContent10": "Le groupe Expérience numérique et données clients relève de la responsabilité d'Emploi et Développement social Canada.",
+ "privacyPolicyContent11": "La collecte, l'utilisation et la divulgation de vos renseignements personnels sont conformes à la ",
"privacyPolicyContent12": " et à toute autre loi applicable.",
- "privacyPolicyContent13": "Vous avez droit à la protection de vos renseignements personnels et vous avez le droit d’y accéder et de les faire corriger. Ce droit est décrit dans les fichiers de renseignements personnels POU 914, « Communications publiques » et POU 938, « Activités de sensibilisation ».",
+ "privacyPolicyContent13": "Vous avez droit à la protection de vos renseignements personnels et vous avez le droit d'y accéder et de les faire corriger. Ce droit est décrit dans les fichiers de renseignements personnels POU 914, « Communications publiques » et POU 938, « Activités de sensibilisation ».",
"privacyPolicyContent14": "Les instructions pour obtenir ces renseignements sont décrites dans la publication du gouvernement ",
"privacyPolicyInfoHoldings": "Renseignements sur les programmes et les fonds de renseignements",
"privacyPolicyInfoHoldingsURL": "https://www.canada.ca/fr/secretariat-conseil-tresor/services/acces-information-protection-reseignements-personnels/acces-information/renseignements-programmes-fonds-renseignements.html",
- "privacyPolicyContent15": " peut également être consultée en ligne dans n’importe quel Centre Service Canada.",
+ "privacyPolicyContent15": " peut également être consultée en ligne dans n'importe quel Centre Service Canada.",
"privacyPolicyHeading4": "Vos droits",
"privacyPolicyContent16": "Vous avez le droit de déposer une plainte auprès du ",
"privacyPolicyPrivacyCommissioner": "Commissaire à la protection de la vie privée du Canada ",
@@ -121,17 +121,17 @@
"All": "Tous",
"filterBy": "Filtrer par :",
"skipToMainContentBtn": "Passer au contenu principal",
- "signupTitle": "S’inscrire pour être invité aux séances de recherche (étape 1 sur 2)",
- "signupP1": "Recevez nos invitations à analyser minutieusement des idées expérimentales et à participer à des entretiens de recherche afin d’améliorer les services gouvernementaux au bénéfice de tous. Chaque commentaire nous aide à nous assurer que nos services sont simples et faciles à utiliser.",
- "signupList1": "* Rencontrez virtuellement un membre de notre équipe pour analyser une première version d’un service * Rencontrez virtuellement un membre de notre équipe pour répondre à des questions sur votre expérience des services publics",
+ "signupTitle": "S'inscrire pour être invité aux séances de recherche (étape 1 sur 2)",
+ "signupP1": "Recevez nos invitations à analyser minutieusement des idées expérimentales et à participer à des entretiens de recherche afin d'améliorer les services gouvernementaux au bénéfice de tous. Chaque commentaire nous aide à nous assurer que nos services sont simples et faciles à utiliser.",
+ "signupList1": "* Rencontrez virtuellement un membre de notre équipe pour analyser une première version d'un service * Rencontrez virtuellement un membre de notre équipe pour répondre à des questions sur votre expérience des services publics",
"signupP1.1": "Vous pouvez analyser les projets et donner vos commentaires de façon anonyme sans vous inscrire pour être invité à participer aux séances avec notre équipe. Si vous souhaitez vous impliquer davantage, vous pouvez vous inscrire pour être invité aux séances de recherche en remplissant notre formulaire ci-dessous. Vous devez être âgé de 18 ans ou plus pour vous inscrire.",
"signupTitle2": "Nous respectons votre confidentialité",
- "signupList2": "* Vos renseignements personnels ne seront pas utilisés dans le cadre d’un processus décisionnel qui vous touche directement ou qui vous donne accès aux services du gouvernement du Canada. Vos renseignements ne seront pas utilisés à des fins administratives * Votre participation est volontaire. Vous pouvez retirer votre participation et vos renseignements personnels de notre liste à tout moment, sans aucune conséquence sur votre accès aux services ou prestations du gouvernement * Vos renseignements personnels et vos commentaires sont confidentiels * Vos renseignements seront utilisés par Emploi et Développement social Canada à des fins d’analyse des politiques, de recherche et d’évaluation",
+ "signupList2": "* Vos renseignements personnels ne seront pas utilisés dans le cadre d'un processus décisionnel qui vous touche directement ou qui vous donne accès aux services du gouvernement du Canada. Vos renseignements ne seront pas utilisés à des fins administratives * Votre participation est volontaire. Vous pouvez retirer votre participation et vos renseignements personnels de notre liste à tout moment, sans aucune conséquence sur votre accès aux services ou prestations du gouvernement * Vos renseignements personnels et vos commentaires sont confidentiels * Vos renseignements seront utilisés par Emploi et Développement social Canada à des fins d'analyse des politiques, de recherche et d'évaluation",
"signupTitle3": "Ce que nous allons recueillir",
- "signupP3": "Nous avons besoin des renseignements suivants pour pouvoir communiquer avec vous :",
- "signupHomeButton": "S’inscrire pour être invité aux séances de recherche",
+ "signupP3": "Nous avons besoin des renseignements suivants pour pouvoir communiquer avec vous :",
+ "signupHomeButton": "S'inscrire pour être invité aux séances de recherche",
"email": "Adresse de courrier électronique",
- "signupP4": "Vous pouvez également choisir d’échanger plus de renseignements avec nous afin que nous puissions vous inviter à participer à des recherches en fonction de vos expériences de vie :",
+ "signupP4": "Vous pouvez également choisir d'échanger plus de renseignements avec nous afin que nous puissions vous inviter à participer à des recherches en fonction de vos expériences de vie :",
"signupP3.1": "Nous recueillons ces informations pour nous assurer que nos groupes de recherche sont diversifiés et pour identifier les tendances dans les commentaires de groupes spécifiques.",
"privacy": "Lire la politique en matière de protection des renseignements personnels dans son intégralité",
"signupTitle4": "Comment se désabonner des invitations à participer aux recherches",
@@ -161,28 +161,28 @@
"man": "Homme",
"another": "Un autre genre",
"otherDetails": "Si vous indiquez « Un autre genre », veuillez préciser.",
- "formIndigenous": "Vous identifiez-vous comme étant une personne autochtone, c’est-à-dire membre des peuples des Premières Nations, Métis ou Inuits?",
+ "formIndigenous": "Vous identifiez-vous comme étant une personne autochtone, c'est-à-dire membre des peuples des Premières Nations, Métis ou Inuits?",
"FN": "Premières nations",
"metis": "Métis",
"inuit": "Inuit",
- "doesNotApply": "Ne s’applique pas à moi",
+ "doesNotApply": "Ne s'applique pas à moi",
"disability": "Vous identifiez-vous comme une personne en situation de handicap?",
"yes": "Oui",
- "yesDetails": "Si la réponse est « oui », de quelles technologie d’assistance aurez-vous besoin pour participer à une séance de recherche en ligne avec nous?",
+ "yesDetails": "Si la réponse est « oui », de quelles technologie d'assistance aurez-vous besoin pour participer à une séance de recherche en ligne avec nous?",
"no": "Non",
"notSure": "Je ne suis pas certain",
- "formMinority": "Vous identifiez-vous comme étant membre d’une minorité visible au Canada?",
+ "formMinority": "Vous identifiez-vous comme étant membre d'une minorité visible au Canada?",
"minorityYesDetails": "Si vous avez répondu « Oui », sélectionnez les options auxquelles vous vous identifiez.",
"black": "Noirs",
"chinese": "Chinois",
"filipino": "Philippin",
"japanese": "Japonais",
"korean": "Coréen",
- "LA": "Latino-Américain non blanc (incluant : Amérindiens de l’Amérique centrale et de l’Amérique du Sud, etc.)",
- "SA": "Asiatique du Sud/Indien de l’Est (incluant : Indien de l’Inde, Bangladais, Pakistanais, Indien de l’Est originaire de la Guyane, de la Trinité, de l’Afrique orientale, etc.)",
- "SEA": "Asiatique du Sud-Est (incluant : Birman, Cambodgien, Laotien, Thaïlandais, Vietnamien, etc.)",
- "nonWhiteAAA": "Asiatique de l’Ouest non blanc, Nord-Africain non blanc ou Arabe (incluant : Égyptien, Libyen, Libanais, Iranien, etc.)",
- "mixedOrigin": "Personnes d’origine mixte (dont l’un des parents provient de l’un des groupes de minorité visible)",
+ "LA": "Latino-Américain non blanc (incluant : Amérindiens de l'Amérique centrale et de l'Amérique du Sud, etc.)",
+ "SA": "Asiatique du Sud/Indien de l'Est (incluant : Indien de l'Inde, Bangladais, Pakistanais, Indien de l'Est originaire de la Guyane, de la Trinité, de l'Afrique orientale, etc.)",
+ "SEA": "Asiatique du Sud-Est (incluant : Birman, Cambodgien, Laotien, Thaïlandais, Vietnamien, etc.)",
+ "nonWhiteAAA": "Asiatique de l'Ouest non blanc, Nord-Africain non blanc ou Arabe (incluant : Égyptien, Libyen, Libanais, Iranien, etc.)",
+ "mixedOrigin": "Personnes d'origine mixte (dont l'un des parents provient de l'un des groupes de minorité visible)",
"otherMinority": "Autre groupe de minorité visible",
"otherMinorityDetails": "Si vous avez répondu « Autre groupe des minorités visibles », veuillez préciser.",
"formIncome": "Quel est le revenu annuel approximatif de votre ménage (avant impôts)?",
@@ -195,7 +195,7 @@
"preferNotAnswer": "Je préfère ne pas répondre",
"optional": "(facultatif)",
"required": "(obligatoire)",
- "formCheckBox": "J’ai lu, compris et accepté ce qui précède. J’affirme que j’ai 18 ans ou plus. Je comprends que je peux me retirer de ce groupe de participants ou de toute étude de recherche à tout moment, sans conséquence.",
+ "formCheckBox": "J'ai lu, compris et accepté ce qui précède. J'affirme que j'ai 18 ans ou plus. Je comprends que je peux me retirer de ce groupe de participants ou de toute étude de recherche à tout moment, sans conséquence.",
"errorRequired": "Ce champ est obligatoire",
"emailRequired": "Adresse de courrier électronique - Ce champ est obligatoire",
"yearRequired": "Année de naissance - Ce champ est obligatoire",
@@ -206,19 +206,19 @@
"errorDropdown": "Utilisez la liste déroulante pour sélectionner une valeur valide",
"errorDisability": "Handicap - Ce champ est obligatoire",
"errorTerms": "Vous devez accepter les conditions avant de vous inscrire",
- "errorSubmit1": "Le formulaire n’a pas pu être soumis car",
+ "errorSubmit1": "Le formulaire n'a pas pu être soumis car",
"errorSubmit2": "erreur a été trouvée",
"errorsSubmit2": "erreurs ont été trouvées",
- "errorRegistered": "Il semble que vous vous soyez déjà enregistré auprès de nous. Vérifiez votre boîte de réception pour l’email de validation !",
- "errorUnknown": "Une erreur inconnue s’est produite lors de votre inscription. Veuillez contacter experience@servicecanada.gc.ca pour poursuivre votre inscription ou réessayer plus tard",
+ "errorRegistered": "Il semble que vous vous soyez déjà enregistré auprès de nous. Vérifiez votre boîte de réception pour l'email de validation !",
+ "errorUnknown": "Une erreur inconnue s'est produite lors de votre inscription. Veuillez contacter experience@servicecanada.gc.ca pour poursuivre votre inscription ou réessayer plus tard",
"error": "Erreur",
- "signupLink": "S’inscrire",
+ "signupLink": "S'inscrire",
"errorMustBe18": "Vous devez être âgé de 18 ans ou plus",
"privacyLinkText": "Lire la politique en matière de protection des renseignements personnels",
- "becomeAParticipantDescription": "Nous vous invitons à analyser nos idées expérimentales et à participer à des entretiens de recherche afin d’améliorer Service Canada au bénéfice de tous. Chaque commentaire nous aide à nous assurer que nos services sont simples et faciles à utiliser. \n\n Votre participation n’aura aucune conséquence sur votre accès aux services gouvernementaux. Vous pouvez vous désabonner à tout moment.",
+ "becomeAParticipantDescription": "Nous vous invitons à analyser nos idées expérimentales et à participer à des entretiens de recherche afin d'améliorer Service Canada au bénéfice de tous. Chaque commentaire nous aide à nous assurer que nos services sont simples et faciles à utiliser. \n\n Votre participation n'aura aucune conséquence sur votre accès aux services gouvernementaux. Vous pouvez vous désabonner à tout moment.",
"thankYou": "Merci!",
"confirmationP1": "Nous vous avons ajouté à notre liste et nous avons envoyé un courriel de confirmation ",
- "from": "à partir de l’adresse",
+ "from": "à partir de l'adresse",
"confirmationP2": "Veuillez cliquer sur le lien de confirmation qui se trouve dans le courriel dans les 24 prochaines heures pour finaliser votre inscription.",
"confirmationP3": "Une fois que vous aurez confirmé votre adresse de courrier électronique, nous pourrons commencer à vous inviter à prendre part aux activités de recherche pour aider à améliorer Service Canada au bénéfice de tous.",
"confirmationP4": "Nous apprécions vraiment votre temps et vos commentaires!",
@@ -230,41 +230,41 @@
"creator": "Emploi et Développement social Canada",
"scLabsSplash": "Splash",
"scLabsHome": "Accueil",
- "doNotInclude": "Ne pas inclure de renseignements personnels, médicaux ou financiers, comme par exemple, un numéro d’assurance sociale (NAS), une adresse de domicile ou de lieu de travail, un numéro de téléphone ou numéro de dossier.",
+ "doNotInclude": "Ne pas inclure de renseignements personnels, médicaux ou financiers, comme par exemple, un numéro d'assurance sociale (NAS), une adresse de domicile ou de lieu de travail, un numéro de téléphone ou numéro de dossier.",
"getInTouch": "Si vous avez des questions ou des commentaires et que vous souhaitez communiquer avec nous, veuillez nous envoyer un courriel à",
"unsubscribe": "Se désabonner (étape 1 sur 2)",
"unsubscribeInfo": "Saisissez votre adresse de courrier électronique pour vous désabonner de notre liste et ne plus être invité aux futures études de recherche.",
"unsubscribeConfirmationTitle": "Vous avez réussi à vous désabonner",
"unsubscribeConfirmationP1": "Merci pour votre temps!",
"unsubscribeConfirmationP2": "Vous ne serez plus contacté pour de futures études de recherche.",
- "cantFindEMailError": "L’adresse de courrier électronique fournie est introuvable dans notre système.",
+ "cantFindEMailError": "L'adresse de courrier électronique fournie est introuvable dans notre système.",
"sentEmailTo": "Nous vous avons envoyé un courriel à",
- "toCheckEmail": "afin de vérifier et confirmer l’adresse de courrier électronique que vous nous avez fournie.",
+ "toCheckEmail": "afin de vérifier et confirmer l'adresse de courrier électronique que vous nous avez fournie.",
"pleaseCheckYourEmail": "Veuillez vérifier vos courriels (étape 2 sur 2)",
"projectsTitle": "Explorer nos projets",
"projectsIntro": "Nos projets donnent un aperçu des outils et services gouvernementaux qui sont en cours de développement.",
- "projectsText": "Les projets à venir donnent un aperçu des outils et des services sur lesquels nous travaillons afin de les rendre disponibles pour vos commentaires.\n\nLes projets en cours sont interactifs. Vous pouvez fournir des commentaires anonymes pendant que vous les explorez et les mettez à l’essai.",
+ "projectsText": "Les projets à venir donnent un aperçu des outils et des services sur lesquels nous travaillons afin de les rendre disponibles pour vos commentaires.\n\nLes projets en cours sont interactifs. Vous pouvez fournir des commentaires anonymes pendant que vous les explorez et les mettez à l'essai.",
"projectQuestions": "Lors de votre exploration des projets en cours, gardez à l'esprit certaines des questions suivantes pour inclure à vos commentaires :",
"projectQuestion1": "L'information fournie est-elle facile à comprendre?",
"projectQuestion2": "Vous attendiez-vous à ce que le service ait une apparence ou une interaction différente?",
"projectQuestion3": "Vous sentez-vous à l'aise de naviguer dans le contenu?",
"projectQuestion4": "Auriez-vous besoin de l'aide d'une personne spécialisée pour pouvoir utiliser ce service?",
- "projectSignup": "Si vous souhaitez participer à nos activités et entretiens de recherche, vous pouvez vous inscrire pour être invité aux séances de recherche . Nous vous contacterons lorsque des projets seront prêts à être mis à l’essai.",
+ "projectSignup": "Si vous souhaitez participer à nos activités et entretiens de recherche, vous pouvez vous inscrire pour être invité aux séances de recherche . Nous vous contacterons lorsque des projets seront prêts à être mis à l'essai.",
"unsubscribeConfirmation": "Veuillez cliquer sur le lien de confirmation qui se trouve dans le courriel dans les 24 prochaines heures pour finaliser votre désabonnement.",
"withdraw": "Comment retirer vos informations",
"privacyWithdraw": "Si vous vous êtes déjà inscrit pour participer et que vous ne souhaitez plus être contacté pour de futures recherches, vous pouvez ",
"privacyWithdraw2": " et nous supprimerons vos renseignements personnels.",
"unsubscribeWord": "vous désabonner",
"signupTitleCallToAction": "Inscrivez-vous pour être invité aux séances de recherche",
- "signupBtn": "S’inscrire pour être invité aux séances de recherche",
+ "signupBtn": "S'inscrire pour être invité aux séances de recherche",
"breadCrumbsHref1": "/fr/accueil",
"breadCrumbsHref2": "/fr/projets",
"breadCrumbsHref3": "/fr/inscription",
"breadCrumbsHref5": "/fr/projets/assistant-virtuel",
"symbol": "Gouvernement du Canada",
"symbol2": "Symbole du gouvernement du Canada",
- "projectsDisclaimer": "Vous ne pouvez pas demander de services ou de prestations par l’intermédiaire de ce site d’essai. Certaines parties du site pourraient ne pas fonctionner et seront modifiées.",
- "projectsDisclaimerBody": "Vous ne pouvez pas demander de services ou de prestations par l’intermédiaire de ce site d’essai.",
+ "projectsDisclaimer": "Vous ne pouvez pas demander de services ou de prestations par l'intermédiaire de ce site d'essai. Certaines parties du site pourraient ne pas fonctionner et seront modifiées.",
+ "projectsDisclaimerBody": "Vous ne pouvez pas demander de services ou de prestations par l'intermédiaire de ce site d'essai.",
"backProjects": "Retour aux projets",
"giveFeedback": "Donnez vos commentaires pour aider à améliorer ce service",
"thankYouFeedback": "Merci de vos commentaires!",
@@ -312,7 +312,7 @@
"metaImage": "/public/sclabs-meta-image.png",
"homeMetaDescription": "Un aperçu des activités de Service Canada. Explorez nos projets. Faites-nous part de vos commentaires. Inscrivez-vous pour être informé des façons de soutenir l'avenir du gouvernement numérique.",
"projectsMetaDescription": "Un aperçu des projets qui contribueront à façonner l'avenir des services numériques à Service Canada. Voyez ce que nous sommes en train de construire. Essayez de nouvelles façons de travailler avec le gouvernement. Envoyez-nous vos commentaires.",
- "signupMetaDescription": "Formulaire d’inscription pour être informé des prochaines séances de recherche et de la façon dont vous pouvez participer.",
+ "signupMetaDescription": "Formulaire d'inscription pour être informé des prochaines séances de recherche et de la façon dont vous pouvez participer.",
"privacyMetaDescription": "Comment nous utilisons l'information que vous nous partagez avec nous lors des séances de recherche.",
"thankyouMetaDescription1": "Message pour confirmer votre adresse de courrier électronique pour prendre part aux activités de recherche.",
"thankyouMetaDescription2": "Message pour confirmer votre adresse de courrier électronique. Une fois confirmé, vous ne serez plus invité aux séances de recherche.",
@@ -320,15 +320,15 @@
"unsubscribeMetaDescription": "Formulaire pour se désabonner et ne plus être invité à participer aux séances de recherche.",
"confirmationMetaDescription1": "Message indiquant que votre adresse électronique a été confirmée.",
"confirmationMetaDescription2": "Message confirmant que vous avec réussi à vous désabonner.",
- "404errorMetaDescription": "Message d’erreur indiquant que la page n’a pu être trouvée.",
- "signupInfoTitle": "S’inscrire pour participer à l’élaboration des services de demain",
+ "404errorMetaDescription": "Message d'erreur indiquant que la page n'a pu être trouvée.",
+ "signupInfoTitle": "S'inscrire pour participer à l'élaboration des services de demain",
"signupInfoTitle2": "Ce qui vous attend pour la suite",
"signupInfoP1": "Une fois que vous vous serez inscrit pour participer à nos activités de recherche, nous vous contacterons par courriel afin de solliciter votre aide.",
"signupInfoP2": "Voici quelques exemples des types de projets de recherche auxquels vous pourriez être invité à participer : ",
"signupInfoUsabilityTitle": "Tests de convivialité",
- "signupInfoUsabilityContent": "Lors d’un appel vidéo, nous vous demanderons d'accomplir un certain nombre de tâches sur un site ou une application numérique. L'objectif de cette séance est de comprendre les endroits portant à confusion ou de trouver des opportunités pour nous d'améliorer le service.",
+ "signupInfoUsabilityContent": "Lors d'un appel vidéo, nous vous demanderons d'accomplir un certain nombre de tâches sur un site ou une application numérique. L'objectif de cette séance est de comprendre les endroits portant à confusion ou de trouver des opportunités pour nous d'améliorer le service.",
"signupInfoInterviewsTitle": "Entretiens avec les utilisateurs",
- "signupInfoInterviewsContent": "Lors d’un appel vidéo, nous vous poserons une série de questions liées à un sujet d'intérêt. Cette conversation nous permettra de savoir ce que vous pensez d'un service.",
+ "signupInfoInterviewsContent": "Lors d'un appel vidéo, nous vous poserons une série de questions liées à un sujet d'intérêt. Cette conversation nous permettra de savoir ce que vous pensez d'un service.",
"signupInfoSurveysTitle": "Questionnaires",
"signupInfoSurveysContent": "Nous vous enverrons un lien vers un questionnaire et vous demanderons de répondre à une série de questions relatives à l'un de nos services.",
"signupInfoContinue": "Continuer",
@@ -348,8 +348,8 @@
"signupReviewKeywords": "digital services, user experience research",
"metaSubject": "GV Gouvernement et vie politique;Services gouvernementaux",
- "signupInfoMetaDescription": "Comment s’impliquer et à quoi s’attendre lors des séances de recherche des laboratoires de Service Canada.",
- "signupInfoKeywords": "services numériques, recherche sur l’expérience utilisateur",
+ "signupInfoMetaDescription": "Comment s'impliquer et à quoi s'attendre lors des séances de recherche des laboratoires de Service Canada.",
+ "signupInfoKeywords": "services numériques, recherche sur l'expérience utilisateur",
"homeKeywords": "services numériques",
"privacyKeywords": "Renseignements personnels",
"privacyMetaSubject": "SO Société et culture;Vie privée",
@@ -367,5 +367,130 @@
"started": "C'est parti :",
"ended": "Interrompu :",
"stage": "Stade du projet :",
- "status": "Résumé :"
+ "status": "Résumé :",
+
+ "landscapeLinks": {
+ "text": {
+ "contacts": "Toutes les coordonnées",
+ "departments": "Ministères et organismes",
+ "about": "À propos du gouvernement",
+ "jobs": "Emplois",
+ "taxes": "Impôts",
+ "canadaAndWorld": "Le Canada et le monde",
+ "immigration": "Immigration et citoyenneté",
+ "environment": "Environnement et ressources naturelles",
+ "finance": "Argent et finance",
+ "travel": "Voyage et tourisme",
+ "nationalSecurity": "Sécurité nationale et défense",
+ "innovation": "Science et innovation",
+ "business": "Entreprises",
+ "culture": "Culture, histoire et sport",
+ "indigenous": "Autochtones",
+ "benefit": "Prestations",
+ "policing": "Services de police, justice et urgences",
+ "veterans": "Vétérans et militaires",
+ "health": "Santé",
+ "transport": "Transport et infrastructure",
+ "youth": "Jeunesse"
+ },
+ "link": {
+ "contacts": "https://www.canada.ca/fr/contact.html",
+ "departments": "https://www.canada.ca/fr/gouvernement/min.html",
+ "about": "https://www.canada.ca/fr/gouvernement/systeme.html",
+ "jobs": "https://www.canada.ca/fr/services/emplois.html",
+ "taxes": "https://www.canada.ca/fr/services/impots.html",
+ "canadaAndWorld": "https://www.international.gc.ca/world-monde/index.aspx?lang=fra",
+ "immigration": "https://www.canada.ca/fr/services/immigration-citoyennete.html",
+ "environment": "https://www.canada.ca/fr/services/environnement.html",
+ "finance": "https://www.international.gc.ca/world-monde/index.aspx?lang=fra",
+ "travel": "https://voyage.gc.ca/",
+ "nationalSecurity": "https://www.canada.ca/fr/services/defense.html",
+ "innovation": "https://www.canada.ca/fr/services/science.html",
+ "business": "https://www.canada.ca/fr/services/entreprises.html",
+ "culture": "https://www.canada.ca/fr/services/culture.html",
+ "indigenous": "https://www.canada.ca/fr/services/autochtones.html",
+ "benefit": "https://www.canada.ca/fr/services/prestations.html",
+ "policing": "https://www.canada.ca/fr/services/police.html",
+ "veterans": "https://www.canada.ca/fr/services/veterans-militaire.html",
+ "health": "https://www.canada.ca/fr/services/sante.html",
+ "transport": "https://www.canada.ca/fr/services/transport.html",
+ "youth": "https://www.canada.ca/fr/services/jeunesse.html"
+ }
+ },
+ "aboutSite": "À propos de ce site",
+ "brandLinks": {
+ "link1": "Médias sociaux",
+ "link2": "Applications mobiles",
+ "link3": "À propos de Canada.ca",
+ "link4": "Avis",
+ "link5": "Confidentialité",
+ "link1link": "https://www.canada.ca/fr/sociaux.html",
+ "link2link": "https://www.canada.ca/fr/mobile.html",
+ "link3link": "https://www.canada.ca/fr/gouvernement/a-propos.html",
+ "link4link": "https://www.canada.ca/fr/transparence/avis.html",
+ "link5link": "https://www.canada.ca/fr/transparence/confidentialite.html"
+ },
+ "mscaFooterHeading": "Mon dossier Service Canada",
+ "mscaContactUs": {
+ "mscaFooterContactUsText": "Contactez-nous",
+ "mscaFooterContactUsLink": "/"
+ },
+ "footerTitle": "Gouvernement du Canada",
+ "footerTopOfPageButtonText": "Haut de la page",
+ "errorPageHeadingTitle404": "Nous ne pouvons trouver cette page Web",
+ "errorPageHeadingTitle500": "Nous éprouvons des difficultés avec cette page",
+ "errorPageHeadingTitle503": "Le service est actuellement indisponible",
+ "errorPageErrorText404": "Nous sommes désolés que vous ayez abouti ici. Il arrive parfois qu'une page ait été déplacée ou supprimée. Heureusement, nous pouvons vous aider à trouver ce que vous cherchez.",
+ "errorPageErrorText500": "Nous espérons résoudre le problème sous peu. Il ne s'agit pas d'un problème avec votre ordinateur ou Internet, mais plutôt avec le serveur de notre site Web. Nous nous excusons de cet inconvénient.",
+ "errorPageErrorText503": "Le serveur Web auquel vous tentez d'accéder est actuellement surchargé ou pourrait être temporairement hors service à des fins d'entretien. Nous nous excusons de cet inconvénient. ",
+ "errorPageNextText": "Que faire?",
+ "errorTextLinkCommon": "• Accéder à la ",
+ "errorTextLinkCommon_2": "page d'accueil de Service Canada",
+ "errorTextLinkCommonLink": "https://www.canada.ca/fr/emploi-developpement-social/ministere/portefeuille/service-canada.html",
+ "errorAuthTextLinkCommon": "• Accéder au ",
+ "errorAuthTextLinkCommon_2": "tableau de bord de mon compte Mon dossier Service Canada",
+ "errorAuthTextLinkCommonLink": "https://www.canada.ca/fr/emploi-developpement-social/services/mon-dossier.html",
+ "error500TextLink": "• Actualisez la page ou réessayez plus tard",
+ "error503TextLink": "• Réessayez plus tard",
+ "errorPageType": "Erreur",
+ "reportAProblem": "Signaler un problème ou une erreur sur cette page",
+ "menuHeaderTitle": "Mon dossier Service Canada",
+ "menuButtonTitle": "Compte",
+ "menuItems1": "Services",
+ "menuItems2": "Événements de la vie",
+ "menuItems3": "Contactez-nous",
+ "myAccountTitle": "Mon dossier Service Canada",
+ "myDashboard": "Mon tableau de bord",
+ "mySecurity": "Paramètres de sécurité",
+ "myProfile": "Profil",
+ "myCRA": "Aller à Mon dossier de l'ARC",
+ "mySignOut": "Fermez la session",
+ "skipToMain": "Passer au contenu principal",
+ "skipToAbout": "Passer à « Au sujet du gouvernement »",
+ "switchToBasic": "Passer à la version HTML simplifiée",
+ "accordionStep": "étape",
+ "accordionExpanded": "affiché",
+ "accordionCollapsed": "masqué",
+ "datePicker": {
+ "month": "Mois",
+ "year": "Année",
+ "day": "Jour",
+ "months": {
+ "1": "janvier",
+ "2": "février",
+ "3": "mars",
+ "4": "avril",
+ "5": "mai",
+ "6": "juin",
+ "7": "juillet",
+ "8": "août",
+ "9": "septembre",
+ "10": "octobre",
+ "11": "novembre",
+ "12": "décembre"
+ }
+ },
+ "searchPlaceholderText": "Rechercher dans Canada.ca",
+ "searchButtonHoverText": "Bouton du champ de recherche",
+ "monthDropdownPlaceholder": "Sélectionner le mois"
}
diff --git a/public/success_img.svg b/public/success_img.svg
new file mode 100644
index 0000000000..b81caa7527
--- /dev/null
+++ b/public/success_img.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/public/warning_img.svg b/public/warning_img.svg
new file mode 100644
index 0000000000..f4c4631661
--- /dev/null
+++ b/public/warning_img.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/public/wmms-blk.svg b/public/wmms-blk.svg
index cd7b3d1bd6..e03c1d46b4 100644
--- a/public/wmms-blk.svg
+++ b/public/wmms-blk.svg
@@ -1,14 +1,14 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/styles/globals.css b/styles/globals.css
index 2bea34e33b..878a180491 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -345,6 +345,16 @@ html {
box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}
+.footerLine::after {
+ content: "";
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 36px;
+ height: 4px;
+ background-color: #ffffff;
+}
+
@media (max-width: 640px) {
.splash-bg {
background-size: 100%;
@@ -387,4 +397,184 @@ html {
width: 109px;
height: 109px;
}
+}
+
+
+.help-icon {
+ fill: #2b4380;
+}
+
+.exit-icon {
+ fill: #333333;
+}
+
+.info {
+ width: 44px;
+ height: 44px;
+ border-radius: 50%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.help-icon:hover {
+ fill: #31708f;
+}
+
+.info:hover {
+ width: 44px;
+ height: 44px;
+ background-color: #e5e5e5;
+ border-radius: 50%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.info:hover svg {
+ fill: #31708f;
+}
+
+.info:focus {
+ border: 3px;
+ border-style: solid;
+ border-color: #0e62c9;
+ background: white;
+ outline: none;
+}
+
+.info:focus .help-icon {
+ fill: #31708f;
+}
+
+.info:active {
+ border: 1px;
+ border-style: solid;
+ border-color: #6f6f6f;
+ outline: none;
+}
+
+.info:active .help-icon {
+ fill: #31708f;
+}
+
+.modal {
+ max-width: 1136px;
+ color: #333333;
+ padding: 40px;
+ border: 1px solid #dddddd;
+ box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
+ border-radius: 6px;
+ background: #ffffff;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+}
+
+.modal-bg {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background: rgba(71, 71, 71, 0.8);
+}
+
+.modal-header {
+ display: flex;
+ justify-content: space-between;
+ min-width: 290px;
+}
+
+.modal-exit {
+ position: absolute;
+ right: 0;
+ width: 44px;
+ height: 44px;
+ border-radius: 4px;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-right: 2rem;
+}
+
+.modal-exit:focus {
+ outline: none;
+ background-color: #e5e5e5;
+ border: 3px solid #0e62c9;
+ box-shadow: inset 0 0 2px 2px white;
+}
+
+.modal-exit:hover {
+ background-color: #e5e5e5;
+}
+
+.modal-exit:active {
+ background-color: #cccccc;
+ border: none;
+ outline: none;
+ box-shadow: none;
+}
+
+.modal-exit:focus .exit-icon {
+ fill: #000000;
+}
+
+.modal-exit:hover .exit-icon {
+ fill: #000000;
+}
+
+.modal-title {
+ font-family: "Lato";
+ font-weight: 700;
+ font-size: 36px;
+ line-height: 40px;
+ max-width: 80%;
+ margin-right: 1rem;
+}
+
+.modal-body {
+ display: flex;
+ width: 95%;
+ margin-top: 1rem;
+}
+
+.modal-footer {
+ margin-top: 4rem;
+}
+
+@media (max-width: 850px) {
+ .modal {
+ padding: 20px;
+ }
+ .modal-close {
+ width: 100%;
+ }
+ .modal-body {
+ margin-top: 0rem;
+ width: 100%;
+ }
+ .modal-footer {
+ margin-top: 1rem;
+ }
+ .modal-close {
+ width: 100%;
+ justify-content: center;
+ }
+ .modal-exit {
+ margin-right: 1rem;
+ }
+}
+
+.btn-primary {
+ @apply font-header font-normal text-multi-neutrals-white bg-multi-blue-blue70 rounded-[4px] px-[14px] py-[6px] text-btnother
+}
+
+.btn-link {
+ @apply font-header font-normal text-btnother rounded-[4px] py-[6px] px-[14px]
}
\ No newline at end of file
diff --git a/tailwind.config.js b/tailwind.config.js
index 41415b666a..09d21abeb3 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -36,6 +36,7 @@ module.exports = {
darkMode: "class",
theme: {
fontFamily: {
+ header: ["Lato", "font-serif"],
display: ["Lato"],
body: ["Noto sans"],
},
@@ -54,6 +55,32 @@ module.exports = {
h1l: ["38px", "42px"],
h1xl: ["45px", "54px"],
h1xxl: ["70px", "84px"],
+
+ mobiledisplay: ["40px", "40px"],
+ mobileh1: ["34px", "37px"],
+ mobileh2: ["32px", "35px"],
+ mobileh3: ["24px", "26px"],
+ mobileh4: ["22px", "24px"],
+ mobileh5: ["20px", "22px"],
+ mobileh6: ["19px", "21px"],
+ mobilebody: ["20px", "33px"],
+ mobilebodybold: ["20px", "33px"],
+ datepicker: ["15px", "24px"],
+
+ browserdisplay: ["60px", "60px"],
+ browserh1: ["38px", "42px"],
+ browserh2: ["36px", "40px"],
+ browserh3: ["24px", "26px"],
+ browserh4: ["22px", "24px"],
+ browserh5: ["20px", "22px"],
+ browserh6: ["19px", "21px"],
+ browserh7: ["14px", "20px"],
+ browserh8: ["16px", "23px"],
+ browserh9: ["17px", "26px"],
+ browserbody: ["20px", "33px"],
+ browserbodybold: ["20px", "33px"],
+
+ btnother: ["20px", "23px"],
},
screens: {
xxs: "280px",
@@ -307,6 +334,8 @@ module.exports = {
lineHeight: {
"30px": "30px",
+ heading1: "42px",
+ heading3: "26px",
},
outline: {
"black-solid": ["2px solid #000", "1px"],
diff --git a/yarn.lock b/yarn.lock
index 64e0afc6de..45e24d5d52 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -185,13 +185,6 @@
dependencies:
"@babel/types" "^7.21.0"
-"@babel/helper-module-imports@^7.16.7":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
- integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
- dependencies:
- "@babel/types" "^7.22.5"
-
"@babel/helper-module-imports@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
@@ -273,11 +266,6 @@
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-"@babel/helper-string-parser@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
- integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
-
"@babel/helper-validator-identifier@^7.19.1":
version "7.19.1"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
@@ -1062,26 +1050,26 @@
resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
-"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.21.0", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.8", "@babel/runtime@^7.21.0", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/runtime@^7.18.3", "@babel/runtime@^7.20.13", "@babel/runtime@^7.22.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7":
+"@babel/runtime@^7.20.13", "@babel/runtime@^7.22.5":
version "7.22.10"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682"
integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==
dependencies:
regenerator-runtime "^0.14.0"
-"@babel/runtime@^7.3.1":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec"
- integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==
+"@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.15.tgz#38f46494ccf6cf020bd4eed7124b425e83e523b8"
+ integrity sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==
dependencies:
- regenerator-runtime "^0.13.11"
+ regenerator-runtime "^0.14.0"
"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3":
version "7.20.7"
@@ -1117,15 +1105,6 @@
"@babel/helper-validator-identifier" "^7.19.1"
to-fast-properties "^2.0.0"
-"@babel/types@^7.22.5":
- version "7.22.10"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.10.tgz#4a9e76446048f2c66982d1a989dd12b8a2d2dc03"
- integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==
- dependencies:
- "@babel/helper-string-parser" "^7.22.5"
- "@babel/helper-validator-identifier" "^7.22.5"
- to-fast-properties "^2.0.0"
-
"@base2/pretty-print-object@1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz#371ba8be66d556812dc7fb169ebc3c08378f69d4"
@@ -1149,14 +1128,6 @@
resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
-"@conventional-commits/parser@^0.4.1":
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/@conventional-commits/parser/-/parser-0.4.1.tgz#213717b25b7ff85260d295466c282226ffe094f2"
- integrity sha512-H2ZmUVt6q+KBccXfMBhbBF14NlANeqHTXL4qCL6QGbMzrc4HDXyzWuxPxPNbz71f/5UkR5DrycP5VO9u7crahg==
- dependencies:
- unist-util-visit "^2.0.3"
- unist-util-visit-parents "^3.1.1"
-
"@cypress/request@^2.88.5":
version "2.88.11"
resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047"
@@ -1194,126 +1165,11 @@
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
-"@dts-stn/service-canada-design-system@1.67.9-dev.a73980918":
- version "1.67.9-dev.a73980918"
- resolved "https://registry.yarnpkg.com/@dts-stn/service-canada-design-system/-/service-canada-design-system-1.67.9-dev.a73980918.tgz#b52f9f769586bc4fedbee0058d0a922afb63bbe6"
- integrity sha512-I6sqrKBQ1CuDHOC76Bsp4rUYF0yMHzg0KgeMhvMuog7yayp8pWS4U3nHrLJl5U+Q9vdgOXx20vF+9VHR+RW2+w==
- dependencies:
- "@fortawesome/fontawesome-svg-core" "^6.4.0"
- "@fortawesome/free-regular-svg-icons" "^6.4.0"
- "@fortawesome/free-solid-svg-icons" "^6.4.0"
- "@fortawesome/react-fontawesome" "^0.2.0"
- classnames "^2.3.2"
- focus-trap-react "^10.2.1"
- git-conventional-commits "^2.6.5"
- identity-obj-proxy "^3.0.0"
- prop-types "^15.7.2"
- react-app-polyfill "^3.0.0"
- react-bootstrap "^2.8.0"
- react-full-screen "^1.1.1"
- react-player "^2.12.0"
- react-select "^5.7.3"
- react-syntax-highlighter "^15.5.0"
- release-please "^14.17.3"
- sass "^1.63.6"
- sass-loader "^10.4.1"
- shelljs "^0.8.5"
- ts-jest "^29.1.1"
- user "^0.0.0"
-
-"@emotion/babel-plugin@^11.11.0":
- version "11.11.0"
- resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c"
- integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==
- dependencies:
- "@babel/helper-module-imports" "^7.16.7"
- "@babel/runtime" "^7.18.3"
- "@emotion/hash" "^0.9.1"
- "@emotion/memoize" "^0.8.1"
- "@emotion/serialize" "^1.1.2"
- babel-plugin-macros "^3.1.0"
- convert-source-map "^1.5.0"
- escape-string-regexp "^4.0.0"
- find-root "^1.1.0"
- source-map "^0.5.7"
- stylis "4.2.0"
-
-"@emotion/cache@^11.11.0", "@emotion/cache@^11.4.0":
- version "11.11.0"
- resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff"
- integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==
- dependencies:
- "@emotion/memoize" "^0.8.1"
- "@emotion/sheet" "^1.2.2"
- "@emotion/utils" "^1.2.1"
- "@emotion/weak-memoize" "^0.3.1"
- stylis "4.2.0"
-
-"@emotion/hash@^0.9.1":
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43"
- integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==
-
-"@emotion/memoize@^0.8.1":
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17"
- integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==
-
-"@emotion/react@^11.8.1":
- version "11.11.1"
- resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.11.1.tgz#b2c36afac95b184f73b08da8c214fdf861fa4157"
- integrity sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==
- dependencies:
- "@babel/runtime" "^7.18.3"
- "@emotion/babel-plugin" "^11.11.0"
- "@emotion/cache" "^11.11.0"
- "@emotion/serialize" "^1.1.2"
- "@emotion/use-insertion-effect-with-fallbacks" "^1.0.1"
- "@emotion/utils" "^1.2.1"
- "@emotion/weak-memoize" "^0.3.1"
- hoist-non-react-statics "^3.3.1"
-
-"@emotion/serialize@^1.1.2":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.2.tgz#017a6e4c9b8a803bd576ff3d52a0ea6fa5a62b51"
- integrity sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==
- dependencies:
- "@emotion/hash" "^0.9.1"
- "@emotion/memoize" "^0.8.1"
- "@emotion/unitless" "^0.8.1"
- "@emotion/utils" "^1.2.1"
- csstype "^3.0.2"
-
-"@emotion/sheet@^1.2.2":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec"
- integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==
-
-"@emotion/unitless@^0.8.1":
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3"
- integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
-
"@emotion/use-insertion-effect-with-fallbacks@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz#ffadaec35dbb7885bd54de3fa267ab2f860294df"
integrity sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==
-"@emotion/use-insertion-effect-with-fallbacks@^1.0.1":
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz#08de79f54eb3406f9daaf77c76e35313da963963"
- integrity sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==
-
-"@emotion/utils@^1.2.1":
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4"
- integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==
-
-"@emotion/weak-memoize@^0.3.1":
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6"
- integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==
-
"@esbuild/android-arm64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz#cf91e86df127aa3d141744edafcba0abdc577d23"
@@ -1429,43 +1285,11 @@
resolved "https://registry.yarnpkg.com/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz#c05ed35ad82df8e6ac616c68b92c2282bd083ba4"
integrity sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==
-"@floating-ui/core@^1.4.1":
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.4.1.tgz#0d633f4b76052668afb932492ac452f7ebe97f17"
- integrity sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==
- dependencies:
- "@floating-ui/utils" "^0.1.1"
-
-"@floating-ui/dom@^1.0.1":
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.5.1.tgz#88b70defd002fe851f17b4a25efb2d3c04d7a8d7"
- integrity sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==
- dependencies:
- "@floating-ui/core" "^1.4.1"
- "@floating-ui/utils" "^0.1.1"
-
-"@floating-ui/utils@^0.1.1":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.1.tgz#1a5b1959a528e374e8037c4396c3e825d6cf4a83"
- integrity sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==
-
-"@fortawesome/fontawesome-common-types@6.4.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.0.tgz#88da2b70d6ca18aaa6ed3687832e11f39e80624b"
- integrity sha512-HNii132xfomg5QVZw0HwXXpN22s7VBHQBv9CeOu9tfJnhsWQNd2lmTNi8CSrnw5B+5YOmzu1UoPAyxaXsJ6RgQ==
-
"@fortawesome/fontawesome-common-types@6.4.2":
version "6.4.2"
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.2.tgz#1766039cad33f8ad87f9467b98e0d18fbc8f01c5"
integrity sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA==
-"@fortawesome/fontawesome-svg-core@^6.4.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.0.tgz#3727552eff9179506e9203d72feb5b1063c11a21"
- integrity sha512-Bertv8xOiVELz5raB2FlXDPKt+m94MQ3JgDfsVbrqNpLU9+UE2E18GKjLKw+d3XbeYPqg1pzyQKGsrzbw+pPaw==
- dependencies:
- "@fortawesome/fontawesome-common-types" "6.4.0"
-
"@fortawesome/fontawesome-svg-core@^6.4.2":
version "6.4.2"
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.2.tgz#37f4507d5ec645c8b50df6db14eced32a6f9be09"
@@ -1473,13 +1297,6 @@
dependencies:
"@fortawesome/fontawesome-common-types" "6.4.2"
-"@fortawesome/free-regular-svg-icons@^6.4.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.4.0.tgz#cacc53bd8d832d46feead412d9ea9ce80a55e13a"
- integrity sha512-ZfycI7D0KWPZtf7wtMFnQxs8qjBXArRzczABuMQqecA/nXohquJ5J/RCR77PmY5qGWkxAZDxpnUFVXKwtY/jPw==
- dependencies:
- "@fortawesome/fontawesome-common-types" "6.4.0"
-
"@fortawesome/free-regular-svg-icons@^6.4.2":
version "6.4.2"
resolved "https://registry.yarnpkg.com/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.4.2.tgz#aee79ed76ce5dd04931352f9d83700761b8b1b25"
@@ -1487,13 +1304,6 @@
dependencies:
"@fortawesome/fontawesome-common-types" "6.4.2"
-"@fortawesome/free-solid-svg-icons@^6.4.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.4.0.tgz#48c0e790847fa56299e2f26b82b39663b8ad7119"
- integrity sha512-kutPeRGWm8V5dltFP1zGjQOEAzaLZj4StdQhWVZnfGFCvAPVvHh8qk5bRrU4KXnRRRNni5tKQI9PBAdI6MP8nQ==
- dependencies:
- "@fortawesome/fontawesome-common-types" "6.4.0"
-
"@fortawesome/free-solid-svg-icons@^6.4.2":
version "6.4.2"
resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.4.2.tgz#33a02c4cb6aa28abea7bc082a9626b7922099df4"
@@ -1508,15 +1318,6 @@
dependencies:
prop-types "^15.8.1"
-"@google-automations/git-file-utils@^1.2.0":
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/@google-automations/git-file-utils/-/git-file-utils-1.2.6.tgz#c5999d1e7463b3f3af7337445f225a97d5c0e97e"
- integrity sha512-wNWeNLBtQH39kTayGuJMF1IRVPxfcywH//thQHD+xzRlanTNDI/5WACUvBkIz9bhnEC7ADm5ibA+DX9meU+JwQ==
- dependencies:
- "@octokit/rest" "^19.0.7"
- "@octokit/types" "^9.0.0"
- minimatch "^5.1.0"
-
"@graphql-typed-document-node/core@^3.1.1":
version "3.1.2"
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.2.tgz#6fc464307cbe3c8ca5064549b806360d84457b04"
@@ -1534,11 +1335,6 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@iarna/toml@^2.2.5":
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c"
- integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==
-
"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
@@ -1761,7 +1557,7 @@
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
-"@jest/types@^29.4.3", "@jest/types@^29.5.0":
+"@jest/types@^29.4.3":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593"
integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==
@@ -1826,83 +1622,6 @@
resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60"
integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==
-"@lerna/child-process@4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-4.0.0.tgz#341b96a57dffbd9705646d316e231df6fa4df6e1"
- integrity sha512-XtCnmCT9eyVsUUHx6y/CTBYdV9g2Cr/VxyseTWBgfIur92/YKClfEtJTbOh94jRT62hlKLqSvux/UhxXVh613Q==
- dependencies:
- chalk "^4.1.0"
- execa "^5.0.0"
- strong-log-transformer "^2.1.0"
-
-"@lerna/collect-updates@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-4.0.0.tgz#8e208b1bafd98a372ff1177f7a5e288f6bea8041"
- integrity sha512-bnNGpaj4zuxsEkyaCZLka9s7nMs58uZoxrRIPJ+nrmrZYp1V5rrd+7/NYTuunOhY2ug1sTBvTAxj3NZQ+JKnOw==
- dependencies:
- "@lerna/child-process" "4.0.0"
- "@lerna/describe-ref" "4.0.0"
- minimatch "^3.0.4"
- npmlog "^4.1.2"
- slash "^3.0.0"
-
-"@lerna/describe-ref@4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-4.0.0.tgz#53c53b4ea65fdceffa072a62bfebe6772c45d9ec"
- integrity sha512-eTU5+xC4C5Gcgz+Ey4Qiw9nV2B4JJbMulsYJMW8QjGcGh8zudib7Sduj6urgZXUYNyhYpRs+teci9M2J8u+UvQ==
- dependencies:
- "@lerna/child-process" "4.0.0"
- npmlog "^4.1.2"
-
-"@lerna/package-graph@4.0.0", "@lerna/package-graph@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-4.0.0.tgz#16a00253a8ac810f72041481cb46bcee8d8123dd"
- integrity sha512-QED2ZCTkfXMKFoTGoccwUzjHtZMSf3UKX14A4/kYyBms9xfFsesCZ6SLI5YeySEgcul8iuIWfQFZqRw+Qrjraw==
- dependencies:
- "@lerna/prerelease-id-from-version" "4.0.0"
- "@lerna/validation-error" "4.0.0"
- npm-package-arg "^8.1.0"
- npmlog "^4.1.2"
- semver "^7.3.4"
-
-"@lerna/package@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/package/-/package-4.0.0.tgz#1b4c259c4bcff45c876ee1d591a043aacbc0d6b7"
- integrity sha512-l0M/izok6FlyyitxiQKr+gZLVFnvxRQdNhzmQ6nRnN9dvBJWn+IxxpM+cLqGACatTnyo9LDzNTOj2Db3+s0s8Q==
- dependencies:
- load-json-file "^6.2.0"
- npm-package-arg "^8.1.0"
- write-pkg "^4.0.0"
-
-"@lerna/prerelease-id-from-version@4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-4.0.0.tgz#c7e0676fcee1950d85630e108eddecdd5b48c916"
- integrity sha512-GQqguzETdsYRxOSmdFZ6zDBXDErIETWOqomLERRY54f4p+tk4aJjoVdd9xKwehC9TBfIFvlRbL1V9uQGHh1opg==
- dependencies:
- semver "^7.3.4"
-
-"@lerna/query-graph@4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-4.0.0.tgz#09dd1c819ac5ee3f38db23931143701f8a6eef63"
- integrity sha512-YlP6yI3tM4WbBmL9GCmNDoeQyzcyg1e4W96y/PKMZa5GbyUvkS2+Jc2kwPD+5KcXou3wQZxSPzR3Te5OenaDdg==
- dependencies:
- "@lerna/package-graph" "4.0.0"
-
-"@lerna/run-topologically@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-4.0.0.tgz#af846eeee1a09b0c2be0d1bfb5ef0f7b04bb1827"
- integrity sha512-EVZw9hGwo+5yp+VL94+NXRYisqgAlj0jWKWtAIynDCpghRxCE5GMO3xrQLmQgqkpUl9ZxQFpICgYv5DW4DksQA==
- dependencies:
- "@lerna/query-graph" "4.0.0"
- p-queue "^6.6.2"
-
-"@lerna/validation-error@4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-4.0.0.tgz#af9d62fe8304eaa2eb9a6ba1394f9aa807026d35"
- integrity sha512-1rBOM5/koiVWlRi3V6dB863E1YzJS8v41UtsHgMr6gB2ncJ2LsQtMKlJpi3voqcgh41H8UsPXR58RrrpPpufyw==
- dependencies:
- npmlog "^4.1.2"
-
"@lottiefiles/react-lottie-player@^3.5.3":
version "3.5.3"
resolved "https://registry.yarnpkg.com/@lottiefiles/react-lottie-player/-/react-lottie-player-3.5.3.tgz#e7e848f29577bc4eede87d677a0054de29378127"
@@ -2025,117 +1744,6 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@octokit/auth-token@^3.0.0":
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db"
- integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==
-
-"@octokit/core@^4.2.1":
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907"
- integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==
- dependencies:
- "@octokit/auth-token" "^3.0.0"
- "@octokit/graphql" "^5.0.0"
- "@octokit/request" "^6.0.0"
- "@octokit/request-error" "^3.0.0"
- "@octokit/types" "^9.0.0"
- before-after-hook "^2.2.0"
- universal-user-agent "^6.0.0"
-
-"@octokit/endpoint@^7.0.0":
- version "7.0.6"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2"
- integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==
- dependencies:
- "@octokit/types" "^9.0.0"
- is-plain-object "^5.0.0"
- universal-user-agent "^6.0.0"
-
-"@octokit/graphql@^5.0.0":
- version "5.0.6"
- resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248"
- integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==
- dependencies:
- "@octokit/request" "^6.0.0"
- "@octokit/types" "^9.0.0"
- universal-user-agent "^6.0.0"
-
-"@octokit/openapi-types@^18.0.0":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz#f43d765b3c7533fd6fb88f3f25df079c24fccf69"
- integrity sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==
-
-"@octokit/plugin-paginate-rest@^6.1.2":
- version "6.1.2"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8"
- integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==
- dependencies:
- "@octokit/tsconfig" "^1.0.2"
- "@octokit/types" "^9.2.3"
-
-"@octokit/plugin-request-log@^1.0.4":
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85"
- integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==
-
-"@octokit/plugin-rest-endpoint-methods@^7.1.2":
- version "7.2.3"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz#37a84b171a6cb6658816c82c4082ac3512021797"
- integrity sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==
- dependencies:
- "@octokit/types" "^10.0.0"
-
-"@octokit/request-error@^3.0.0":
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69"
- integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==
- dependencies:
- "@octokit/types" "^9.0.0"
- deprecation "^2.0.0"
- once "^1.4.0"
-
-"@octokit/request@^6.0.0":
- version "6.2.8"
- resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.8.tgz#aaf480b32ab2b210e9dadd8271d187c93171d8eb"
- integrity sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==
- dependencies:
- "@octokit/endpoint" "^7.0.0"
- "@octokit/request-error" "^3.0.0"
- "@octokit/types" "^9.0.0"
- is-plain-object "^5.0.0"
- node-fetch "^2.6.7"
- universal-user-agent "^6.0.0"
-
-"@octokit/rest@^19.0.0", "@octokit/rest@^19.0.5", "@octokit/rest@^19.0.7":
- version "19.0.13"
- resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.13.tgz#e799393264edc6d3c67eeda9e5bd7832dcf974e4"
- integrity sha512-/EzVox5V9gYGdbAI+ovYj3nXQT1TtTHRT+0eZPcuC05UFSWO3mdO9UY1C0i2eLF9Un1ONJkAk+IEtYGAC+TahA==
- dependencies:
- "@octokit/core" "^4.2.1"
- "@octokit/plugin-paginate-rest" "^6.1.2"
- "@octokit/plugin-request-log" "^1.0.4"
- "@octokit/plugin-rest-endpoint-methods" "^7.1.2"
-
-"@octokit/tsconfig@^1.0.2":
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7"
- integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==
-
-"@octokit/types@^10.0.0":
- version "10.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-10.0.0.tgz#7ee19c464ea4ada306c43f1a45d444000f419a4a"
- integrity sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==
- dependencies:
- "@octokit/openapi-types" "^18.0.0"
-
-"@octokit/types@^9.0.0", "@octokit/types@^9.2.3":
- version "9.3.2"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5"
- integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==
- dependencies:
- "@octokit/openapi-types" "^18.0.0"
-
"@pmmmwh/react-refresh-webpack-plugin@^0.5.5":
version "0.5.10"
resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz#2eba163b8e7dbabb4ce3609ab5e32ab63dda3ef8"
@@ -2157,9 +1765,9 @@
integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
"@react-aria/ssr@^3.5.0":
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.7.1.tgz#11d0fac17e50028459aad325c2d093dbb2960f68"
- integrity sha512-ovVPSD1WlRpZHt7GI9DqJrWG3OIYS+NXQ9y5HIewMJpSe+jPQmMQfyRmgX4EnvmxSlp0u04Wg/7oItcoSIb/RA==
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/@react-aria/ssr/-/ssr-3.8.0.tgz#e7f467ac42f72504682724304ce221f785d70d49"
+ integrity sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==
dependencies:
"@swc/helpers" "^0.5.0"
@@ -3210,9 +2818,9 @@
tslib "^2.4.0"
"@swc/helpers@^0.5.0":
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.1.tgz#e9031491aa3f26bfcc974a67f48bd456c8a5357a"
- integrity sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.2.tgz#85ea0c76450b61ad7d10a37050289eded783c27d"
+ integrity sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==
dependencies:
tslib "^2.4.0"
@@ -3315,11 +2923,6 @@
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
-"@tootallnate/once@2":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
- integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
-
"@types/aria-query@^5.0.1":
version "5.0.1"
resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc"
@@ -3559,11 +3162,6 @@
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca"
integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
-"@types/minimist@^1.2.0":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c"
- integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
-
"@types/ms@*":
version "0.7.31"
resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
@@ -3597,11 +3195,6 @@
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==
-"@types/npm-package-arg@^6.1.0":
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/@types/npm-package-arg/-/npm-package-arg-6.1.1.tgz#9e2d8adc04d39824a3d9f36f738010a3f7da3c1a"
- integrity sha512-452/1Kp9IdM/oR10AyqAgZOxUt7eLbm+EMJ194L6oarMYdZNiFIFAOJ7IIr0OrZXTySgfHjJezh2oiyk2kc3ag==
-
"@types/npmlog@^4.1.2":
version "4.1.4"
resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.4.tgz#30eb872153c7ead3e8688c476054ddca004115f6"
@@ -3649,7 +3242,7 @@
dependencies:
"@types/react" "*"
-"@types/react-transition-group@^4.4.0", "@types/react-transition-group@^4.4.5":
+"@types/react-transition-group@^4.4.5":
version "4.4.6"
resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.6.tgz#18187bcda5281f8e10dfc48f0943e2fdf4f75e2e"
integrity sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==
@@ -3665,16 +3258,7 @@
"@types/scheduler" "*"
csstype "^3.0.2"
-"@types/react@>=16.9.11":
- version "18.2.20"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.20.tgz#1605557a83df5c8a2cc4eeb743b3dfc0eb6aaeb2"
- integrity sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw==
- dependencies:
- "@types/prop-types" "*"
- "@types/scheduler" "*"
- csstype "^3.0.2"
-
-"@types/react@^18.2.18":
+"@types/react@>=16.9.11", "@types/react@^18.2.18":
version "18.2.21"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.21.tgz#774c37fd01b522d0b91aed04811b58e4e0514ed9"
integrity sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==
@@ -3745,13 +3329,6 @@
dependencies:
"@types/yargs-parser" "*"
-"@types/yargs@^16.0.0":
- version "16.0.5"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.5.tgz#12cc86393985735a283e387936398c2f9e5f88e3"
- integrity sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==
- dependencies:
- "@types/yargs-parser" "*"
-
"@types/yargs@^17.0.8":
version "17.0.24"
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902"
@@ -3915,11 +3492,6 @@
dependencies:
tslib "^2.3.0"
-"@xmldom/xmldom@^0.8.4":
- version "0.8.8"
- resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.8.tgz#d0d11511cbc1de77e53342ad1546a4d487d6ea72"
- integrity sha512-0LNz4EY8B/8xXY86wMrQ4tz6zEHZv9ehFMJPm8u2gq5lQ71cfRKdaKyxfJAx5aUoyzx0qzgURblTisPGgz3d+Q==
-
"@xtuc/ieee754@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
@@ -4088,11 +3660,6 @@ ansi-html-community@0.0.8, ansi-html-community@^0.0.8:
resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
-
ansi-regex@^5.0.0, ansi-regex@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
@@ -4138,11 +3705,6 @@ app-root-dir@^1.0.2:
resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
integrity sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==
-aproba@^1.0.3:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
"aproba@^1.0.3 || ^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
@@ -4161,14 +3723,6 @@ are-we-there-yet@^2.0.0:
delegates "^1.0.0"
readable-stream "^3.6.0"
-are-we-there-yet@~1.1.2:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146"
- integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^2.0.6"
-
arg@^5.0.1, arg@^5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
@@ -4181,11 +3735,6 @@ argparse@^1.0.7:
dependencies:
sprintf-js "~1.0.2"
-argparse@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
- integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-
aria-query@^5.0.0:
version "5.1.3"
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e"
@@ -4213,11 +3762,6 @@ array-flatten@1.1.1:
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
-array-ify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
- integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==
-
array-union@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
@@ -4228,16 +3772,6 @@ array-unique@^0.3.2:
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
-arrify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
- integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==
-
-asap@~2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
- integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
-
asn1@~0.2.3:
version "0.2.6"
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d"
@@ -4296,13 +3830,6 @@ async-limiter@~1.0.0:
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-async-retry@^1.3.1:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.3.tgz#0e7f36c04d8478e7a58bdbed80cedf977785f280"
- integrity sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==
- dependencies:
- retry "0.13.1"
-
async@^3.2.0, async@^3.2.3:
version "3.2.4"
resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
@@ -4436,15 +3963,6 @@ babel-plugin-jest-hoist@^26.6.2:
"@types/babel__core" "^7.0.0"
"@types/babel__traverse" "^7.0.6"
-babel-plugin-macros@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
- integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
- dependencies:
- "@babel/runtime" "^7.12.5"
- cosmiconfig "^7.0.0"
- resolve "^1.19.0"
-
babel-plugin-named-exports-order@^0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/babel-plugin-named-exports-order/-/babel-plugin-named-exports-order-0.0.2.tgz#ae14909521cf9606094a2048239d69847540cb09"
@@ -4549,11 +4067,6 @@ bcrypt-pbkdf@^1.0.0:
dependencies:
tweetnacl "^0.14.3"
-before-after-hook@^2.2.0:
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c"
- integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==
-
better-opn@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6"
@@ -4704,13 +4217,6 @@ browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.21.3, browserslist@^
node-releases "^2.0.8"
update-browserslist-db "^1.0.10"
-bs-logger@0.x:
- version "0.2.6"
- resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8"
- integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==
- dependencies:
- fast-json-stable-stringify "2.x"
-
bser@2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
@@ -4736,11 +4242,6 @@ buffer@^5.5.0:
base64-js "^1.3.1"
ieee754 "^1.1.13"
-builtins@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
- integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==
-
bytes@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
@@ -4815,15 +4316,6 @@ camelcase-css@^2.0.1:
resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
-camelcase-keys@^6.2.2:
- version "6.2.2"
- resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"
- integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
- dependencies:
- camelcase "^5.3.1"
- map-obj "^4.0.0"
- quick-lru "^4.0.1"
-
camelcase@^5.0.0, camelcase@^5.3.1:
version "5.3.1"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
@@ -4934,7 +4426,7 @@ check-more-types@^2.24.0:
resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==
-"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.2, chokidar@^3.5.3:
+chokidar@^3.5.2, chokidar@^3.5.3:
version "3.5.3"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
@@ -5058,15 +4550,6 @@ cliui@^7.0.2:
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"
-cliui@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
- integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
- dependencies:
- string-width "^4.2.0"
- strip-ansi "^6.0.1"
- wrap-ansi "^7.0.0"
-
clone-deep@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
@@ -5081,24 +4564,6 @@ co@^4.6.0:
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
-code-point-at@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
- integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==
-
-code-suggester@^4.1.0:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/code-suggester/-/code-suggester-4.3.2.tgz#7b09a8d32d1cf056b2bcd3b74e387d8a90e66e87"
- integrity sha512-n02zMwcyHtPLQQbQDpBhxjiN3t0i6ifFlffmRP3o+VEfp3RpUZs8NmZUBcl+5KRfPws/hDeYKaVndVQly8IVFA==
- dependencies:
- "@octokit/rest" "^19.0.5"
- "@types/yargs" "^16.0.0"
- async-retry "^1.3.1"
- diff "^5.0.0"
- glob "^7.1.6"
- parse-diff "^0.11.0"
- yargs "^16.0.0"
-
collect-v8-coverage@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
@@ -5219,14 +4684,6 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
-compare-func@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3"
- integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
- dependencies:
- array-ify "^1.0.0"
- dot-prop "^5.1.0"
-
component-emitter@^1.2.1:
version "1.3.0"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
@@ -5267,7 +4724,7 @@ concat-stream@^1.6.2:
readable-stream "^2.2.2"
typedarray "^0.0.6"
-console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0:
+console-control-strings@^1.0.0, console-control-strings@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==
@@ -5284,39 +4741,7 @@ content-type@~1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
-conventional-changelog-conventionalcommits@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz#41bdce54eb65a848a4a3ffdca93e92fa22b64a86"
- integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==
- dependencies:
- compare-func "^2.0.0"
- lodash "^4.17.15"
- q "^1.5.1"
-
-conventional-changelog-writer@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359"
- integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==
- dependencies:
- conventional-commits-filter "^2.0.7"
- dateformat "^3.0.0"
- handlebars "^4.7.7"
- json-stringify-safe "^5.0.1"
- lodash "^4.17.15"
- meow "^8.0.0"
- semver "^6.0.0"
- split "^1.0.0"
- through2 "^4.0.0"
-
-conventional-commits-filter@^2.0.2, conventional-commits-filter@^2.0.7:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3"
- integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==
- dependencies:
- lodash.ismatch "^4.4.0"
- modify-values "^1.0.0"
-
-convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
+convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
@@ -5365,11 +4790,6 @@ core-js@^3, core-js@^3.0.0, core-js@^3.8.2:
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.29.0.tgz#0273e142b67761058bcde5615c503c7406b572d6"
integrity sha512-VG23vuEisJNkGl6XQmFJd3rEG/so/CNatqeE+7uZAwTSwFeB/qaO0be8xZYUNWprJ/GIwL8aMt9cj1kvbpTZhg==
-core-js@^3.19.2:
- version "3.31.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.0.tgz#4471dd33e366c79d8c0977ed2d940821719db344"
- integrity sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==
-
core-util-is@1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
@@ -5480,23 +4900,12 @@ css-select@^4.1.3:
domutils "^2.8.0"
nth-check "^2.0.1"
-css-select@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6"
- integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==
- dependencies:
- boolbase "^1.0.0"
- css-what "^6.1.0"
- domhandler "^5.0.2"
- domutils "^3.0.1"
- nth-check "^2.0.1"
-
css-unit-converter@^1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21"
integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==
-css-what@^6.0.1, css-what@^6.1.0:
+css-what@^6.0.1:
version "6.1.0"
resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
@@ -5616,11 +5025,6 @@ data-urls@^2.0.0:
whatwg-mimetype "^2.3.0"
whatwg-url "^8.0.0"
-dateformat@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
- integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
-
dayjs@^1.10.4:
version "1.11.7"
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2"
@@ -5647,15 +5051,7 @@ debug@^3.1.0:
dependencies:
ms "^2.1.1"
-decamelize-keys@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8"
- integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==
- dependencies:
- decamelize "^1.1.0"
- map-obj "^1.0.0"
-
-decamelize@^1.1.0, decamelize@^1.2.0:
+decamelize@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
@@ -5710,11 +5106,6 @@ deep-is@~0.1.3:
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
-deepmerge@^4.0.0:
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
- integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
-
deepmerge@^4.2.2:
version "4.3.0"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.0.tgz#65491893ec47756d44719ae520e0e2609233b59b"
@@ -5807,11 +5198,6 @@ depd@^1.1.0:
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
-deprecation@^2.0.0:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
- integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
-
dequal@^2.0.0, dequal@^2.0.2, dequal@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
@@ -5822,11 +5208,6 @@ destroy@1.2.0:
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
-detect-indent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
- integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==
-
detect-indent@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6"
@@ -5934,16 +5315,7 @@ dom-serializer@^1.0.1:
domhandler "^4.2.0"
entities "^2.0.0"
-dom-serializer@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
- integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
- dependencies:
- domelementtype "^2.3.0"
- domhandler "^5.0.2"
- entities "^4.2.0"
-
-domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0:
+domelementtype@^2.0.1, domelementtype@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
@@ -5962,13 +5334,6 @@ domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1:
dependencies:
domelementtype "^2.2.0"
-domhandler@^5.0.2, domhandler@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
- integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
- dependencies:
- domelementtype "^2.3.0"
-
domutils@^2.5.2, domutils@^2.8.0:
version "2.8.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
@@ -5978,15 +5343,6 @@ domutils@^2.5.2, domutils@^2.8.0:
domelementtype "^2.2.0"
domhandler "^4.2.0"
-domutils@^3.0.1:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
- integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
- dependencies:
- dom-serializer "^2.0.0"
- domelementtype "^2.3.0"
- domhandler "^5.0.3"
-
dot-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
@@ -5995,13 +5351,6 @@ dot-case@^3.0.4:
no-case "^3.0.4"
tslib "^2.0.3"
-dot-prop@^5.1.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
- integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
- dependencies:
- is-obj "^2.0.0"
-
dotenv-expand@^10.0.0:
version "10.0.0"
resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37"
@@ -6012,11 +5361,6 @@ dotenv@^16.0.0:
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07"
integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==
-duplexer@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
- integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
-
duplexify@^3.5.0, duplexify@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
@@ -6108,11 +5452,6 @@ entities@^2.0.0:
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
-entities@^4.2.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
- integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
-
envinfo@^7.7.3:
version "7.8.1"
resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
@@ -6217,28 +5556,11 @@ escape-string-regexp@^2.0.0:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
-escape-string-regexp@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
- integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
-
escape-string-regexp@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
-escodegen@^1.8.1:
- version "1.14.3"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
- integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
- dependencies:
- esprima "^4.0.1"
- estraverse "^4.2.0"
- esutils "^2.0.2"
- optionator "^0.8.1"
- optionalDependencies:
- source-map "~0.6.1"
-
escodegen@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
@@ -6259,11 +5581,6 @@ eslint-scope@5.1.1:
esrecurse "^4.3.0"
estraverse "^4.1.1"
-esprima@1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.2.tgz#76a0fd66fcfe154fd292667dc264019750b1657b"
- integrity sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==
-
esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
@@ -6276,7 +5593,7 @@ esrecurse@^4.3.0:
dependencies:
estraverse "^5.2.0"
-estraverse@^4.1.1, estraverse@^4.2.0:
+estraverse@^4.1.1:
version "4.3.0"
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
@@ -6310,11 +5627,6 @@ eventemitter2@^6.4.3:
resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.9.tgz#41f2750781b4230ed58827bc119d293471ecb125"
integrity sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==
-eventemitter3@^4.0.4:
- version "4.0.7"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
- integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
-
events@^3.2.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
@@ -6539,7 +5851,7 @@ fast-json-parse@^1.0.3:
resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d"
integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==
-fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
+fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
@@ -6556,13 +5868,6 @@ fastq@^1.6.0:
dependencies:
reusify "^1.0.4"
-fault@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13"
- integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==
- dependencies:
- format "^0.2.0"
-
fb-watchman@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c"
@@ -6598,7 +5903,7 @@ fetch-retry@^5.0.2:
resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.4.tgz#06e8e4533030bf6faa00ffbb9450cb9264c23c12"
integrity sha512-LXcdgpdcVedccGg0AZqg+S8lX/FCdwXD92WNZ5k5qsb0irRhSFsBOpcJt7oevyqT2/C2nEE0zSFNdBEpj3YOSw==
-figures@^3.0.0, figures@^3.2.0:
+figures@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
@@ -6676,11 +5981,6 @@ find-cache-dir@^3.0.0, find-cache-dir@^3.3.1, find-cache-dir@^3.3.2:
make-dir "^3.0.2"
pkg-dir "^4.1.0"
-find-root@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
- integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
-
find-up@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
@@ -6722,14 +6022,6 @@ flow-parser@0.*:
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.201.0.tgz#d2005d4dae6fddf60d30f9ae0fb49a13c9c51cfe"
integrity sha512-G4oeDNpNGyIrweF9EnoHatncAihMT0tQgV6NMdyM5I7fhrz9Pr13PJ2KLQ673O4wj9KooTdBpeeYHdDNAQoyyw==
-focus-trap-react@^10.2.1:
- version "10.2.1"
- resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.2.1.tgz#3f72c9c018885e089806346966c59303eb6e32ef"
- integrity sha512-UrAKOn52lvfHF6lkUMfFhlQxFgahyNW5i6FpHWkDxAeD4FSk3iwx9n4UEA4Sims0G5WiGIi0fAyoq3/UVeNCYA==
- dependencies:
- focus-trap "^7.5.2"
- tabbable "^6.2.0"
-
focus-trap-react@^8.11.2:
version "8.11.3"
resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-8.11.3.tgz#aa0ba3b17676abf8faf78c5e51d8cd8df83eec41"
@@ -6744,13 +6036,6 @@ focus-trap@^6.9.4:
dependencies:
tabbable "^5.3.3"
-focus-trap@^7.5.2:
- version "7.5.2"
- resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.5.2.tgz#e5ee678d10a18651f2591ffb66c949fb098d57cf"
- integrity sha512-p6vGNNWLDGwJCiEjkSK6oERj/hEyI9ITsSwIUICBoKLlWiTWXJRfQibCwcoi50rTZdbi87qDtUlMCmQwsGSgPw==
- dependencies:
- tabbable "^6.2.0"
-
for-each@^0.3.3:
version "0.3.3"
resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
@@ -6812,11 +6097,6 @@ form-data@~2.3.2:
combined-stream "^1.0.6"
mime-types "^2.1.12"
-format@^0.2.0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
- integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==
-
forwarded@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
@@ -6898,11 +6178,6 @@ fs.realpath@^1.0.0:
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-fscreen@^1.0.2:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/fscreen/-/fscreen-1.2.0.tgz#1a8c88e06bc16a07b473ad96196fb06d6657f59e"
- integrity sha512-hlq4+BU0hlPmwsFjwGGzZ+OZ9N/wq9Ljg/sq3pX+2CD7hrJsX9tJgWWK/wiNTFM212CLHWhicOoqwXyZGGetJg==
-
fsevents@^2.1.2, fsevents@^2.3.2, fsevents@~2.3.2:
version "2.3.2"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
@@ -6933,20 +6208,6 @@ gauge@^3.0.0:
strip-ansi "^6.0.1"
wide-align "^1.1.2"
-gauge@~2.7.3:
- version "2.7.4"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
- integrity sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==
- dependencies:
- aproba "^1.0.3"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.0"
- object-assign "^4.1.0"
- signal-exit "^3.0.0"
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wide-align "^1.1.0"
-
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
@@ -7049,14 +6310,6 @@ giget@^1.0.0:
pathe "^1.1.0"
tar "^6.1.13"
-git-conventional-commits@^2.6.5:
- version "2.6.5"
- resolved "https://registry.yarnpkg.com/git-conventional-commits/-/git-conventional-commits-2.6.5.tgz#8665bf548a666998d0228527b5e213cd967995bc"
- integrity sha512-HbtKUnZ3CciI8CVUcnGOXb/bKN0cuXZLjHie/JxlIaCkHr0l38kUtfewoRACp+SJirOzjBtejAwoaQ4hStHfLg==
- dependencies:
- yaml "^2.1.3"
- yargs "^17.6.2"
-
github-slugger@^1.0.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d"
@@ -7088,7 +6341,7 @@ glob-to-regexp@^0.4.0, glob-to-regexp@^0.4.1:
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
-glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7:
+glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.7:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -7142,7 +6395,7 @@ gopd@^1.0.1:
dependencies:
get-intrinsic "^1.1.3"
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.2.9:
+graceful-fs@^4.1.11, graceful-fs@^4.2.9:
version "4.2.11"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
@@ -7159,10 +6412,10 @@ graphql-tag@^2.12.6:
dependencies:
tslib "^2.1.0"
-graphql@^16.7.0:
- version "16.7.1"
- resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.7.1.tgz#11475b74a7bff2aefd4691df52a0eca0abd9b642"
- integrity sha512-DRYR9tf+UGU0KOsMcKAlXeFfX89UiiIZ0dRU3mR0yJfu6OjZqUcp68NnFLnqQU5RexygFoDy1EW+ccOYcPfmHg==
+graphql@^16.8.0:
+ version "16.8.0"
+ resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.8.0.tgz#374478b7f27b2dc6153c8f42c1b80157f79d79d4"
+ integrity sha512-0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg==
growly@^1.3.0:
version "1.3.0"
@@ -7193,16 +6446,6 @@ handlebars@^4.7.7:
optionalDependencies:
uglify-js "^3.1.4"
-hard-rejection@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
- integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
-
-harmony-reflect@^1.4.6:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710"
- integrity sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==
-
has-bigints@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
@@ -7237,7 +6480,7 @@ has-tostringtag@^1.0.0:
dependencies:
has-symbols "^1.0.2"
-has-unicode@^2.0.0, has-unicode@^2.0.1:
+has-unicode@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
@@ -7318,11 +6561,6 @@ hast-util-from-parse5@^7.0.0:
vfile-location "^4.0.0"
web-namespaces "^2.0.0"
-hast-util-parse-selector@^2.0.0:
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a"
- integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==
-
hast-util-parse-selector@^3.0.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz#25ab00ae9e75cbc62cf7a901f68a247eade659e2"
@@ -7388,17 +6626,6 @@ hast-util-whitespace@^2.0.0:
resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557"
integrity sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==
-hastscript@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640"
- integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==
- dependencies:
- "@types/hast" "^2.0.0"
- comma-separated-tokens "^1.0.0"
- hast-util-parse-selector "^2.0.0"
- property-information "^5.0.0"
- space-separated-tokens "^1.0.0"
-
hastscript@^7.0.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-7.2.0.tgz#0eafb7afb153d047077fa2a833dc9b7ec604d10b"
@@ -7410,7 +6637,7 @@ hastscript@^7.0.0:
property-information "^6.0.0"
space-separated-tokens "^2.0.0"
-he@1.2.0, he@^1.2.0:
+he@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
@@ -7420,12 +6647,7 @@ hex-color-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
-highlight.js@^10.4.1, highlight.js@~10.7.0:
- version "10.7.3"
- resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
- integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==
-
-hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2:
+hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
@@ -7437,13 +6659,6 @@ hosted-git-info@^2.1.4:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-hosted-git-info@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224"
- integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==
- dependencies:
- lru-cache "^6.0.0"
-
hsl-regex@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
@@ -7542,15 +6757,6 @@ http-proxy-agent@^4.0.1:
agent-base "6"
debug "4"
-http-proxy-agent@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43"
- integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==
- dependencies:
- "@tootallnate/once" "2"
- agent-base "6"
- debug "4"
-
http-signature@~1.3.6:
version "1.3.6"
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.6.tgz#cb6fbfdf86d1c974f343be94e87f7fc128662cf9"
@@ -7603,10 +6809,10 @@ i18next-http-backend@^1.4.5:
dependencies:
cross-fetch "3.1.5"
-i18next@^23.2.3:
- version "23.4.4"
- resolved "https://registry.yarnpkg.com/i18next/-/i18next-23.4.4.tgz#ec8fb2b5f3c5d8e3bf3f8ab1b19e743be91300e0"
- integrity sha512-+c9B0txp/x1m5zn+QlwHaCS9vyFtmIAEXbVSFzwCX7vupm5V7va8F9cJGNJZ46X9ZtoGzhIiRC7eTIIh93TxPA==
+i18next@^23.4.5:
+ version "23.5.1"
+ resolved "https://registry.yarnpkg.com/i18next/-/i18next-23.5.1.tgz#7f7c35ffaa907618d9489f106d5006b09fbca3d3"
+ integrity sha512-JelYzcaCoFDaa+Ysbfz2JsGAKkrHiMG6S61+HLBUEIPaF40WMwW9hCPymlQGrP+wWawKxKPuSuD71WZscCsWHg==
dependencies:
"@babel/runtime" "^7.22.5"
@@ -7629,13 +6835,6 @@ icss-utils@^5.0.0, icss-utils@^5.1.0:
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
-identity-obj-proxy@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14"
- integrity sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==
- dependencies:
- harmony-reflect "^1.4.6"
-
ieee754@^1.1.13:
version "1.2.1"
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
@@ -7653,11 +6852,6 @@ image-size@^1.0.0:
dependencies:
queue "6.0.2"
-immutable@^4.0.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.0.tgz#eb1738f14ffb39fd068b1dbe1296117484dd34be"
- integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==
-
import-fresh@^3.2.1:
version "3.3.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
@@ -7860,20 +7054,13 @@ is-color-stop@^1.1.0:
rgb-regex "^1.0.1"
rgba-regex "^1.0.0"
-is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.9.0:
+is-core-module@^2.11.0, is-core-module@^2.9.0:
version "2.12.1"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
dependencies:
has "^1.0.3"
-is-core-module@^2.13.0:
- version "2.13.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
- integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
- dependencies:
- has "^1.0.3"
-
is-data-descriptor@^0.1.4:
version "0.1.4"
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
@@ -7945,13 +7132,6 @@ is-extglob@^2.1.1:
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
-is-fullwidth-code-point@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
- integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==
- dependencies:
- number-is-nan "^1.0.0"
-
is-fullwidth-code-point@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
@@ -8031,11 +7211,6 @@ is-obj@^1.0.1:
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==
-is-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
- integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
-
is-path-cwd@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
@@ -8046,11 +7221,6 @@ is-path-inside@^3.0.2:
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
-is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
- integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
-
is-plain-obj@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
@@ -8061,7 +7231,7 @@ is-plain-obj@^4.0.0:
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0"
integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
-is-plain-object@5.0.0, is-plain-object@^5.0.0:
+is-plain-object@5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
@@ -8717,18 +7887,6 @@ jest-util@^26.6.2:
is-ci "^2.0.0"
micromatch "^4.0.2"
-jest-util@^29.0.0:
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f"
- integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==
- dependencies:
- "@jest/types" "^29.5.0"
- "@types/node" "*"
- chalk "^4.0.0"
- ci-info "^3.2.0"
- graceful-fs "^4.2.9"
- picomatch "^2.2.3"
-
jest-util@^29.4.3:
version "29.4.3"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.4.3.tgz#851a148e23fc2b633c55f6dad2e45d7f4579f496"
@@ -8832,13 +7990,6 @@ js-yaml@^3.13.1:
argparse "^1.0.7"
esprima "^4.0.0"
-js-yaml@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
- integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
- dependencies:
- argparse "^2.0.1"
-
jsbn@~0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
@@ -8932,7 +8083,7 @@ json-schema@0.4.0:
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5"
integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
-json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
+json-stringify-safe@~5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
@@ -8953,7 +8104,7 @@ json5@^1.0.1, json5@^1.0.2:
dependencies:
minimist "^1.2.0"
-json5@^2.1.2, json5@^2.2.2, json5@^2.2.3:
+json5@^2.1.2, json5@^2.2.2:
version "2.2.3"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
@@ -8972,15 +8123,6 @@ jsonparse@^1.3.1:
resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
-jsonpath@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/jsonpath/-/jsonpath-1.1.1.tgz#0ca1ed8fb65bb3309248cc9d5466d12d5b0b9901"
- integrity sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==
- dependencies:
- esprima "1.2.2"
- static-eval "2.0.2"
- underscore "1.12.1"
-
jsprim@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d"
@@ -9010,7 +8152,7 @@ kind-of@^5.0.0:
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
-kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
+kind-of@^6.0.0, kind-of@^6.0.2:
version "6.0.3"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
@@ -9101,21 +8243,6 @@ listr2@^3.12.2, listr2@^3.8.3:
through "^2.3.8"
wrap-ansi "^7.0.0"
-load-json-file@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1"
- integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==
- dependencies:
- graceful-fs "^4.1.15"
- parse-json "^5.0.0"
- strip-bom "^4.0.0"
- type-fest "^0.6.0"
-
-load-script@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4"
- integrity sha512-kPEjMFtZvwL9TaZo0uZ2ml+Ye9HUMmPwbYRJ324qF9tqMejwykJ5ggTyvzmrbBeapCAbk98BSbTeovHEEP1uCA==
-
loader-runner@^4.2.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
@@ -9186,21 +8313,11 @@ lodash.isequal@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==
-lodash.ismatch@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
- integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==
-
lodash.isplainobject@^4.0.6:
version "4.0.6"
resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==
-lodash.memoize@4.x:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
- integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
-
lodash.merge@4.6.2, lodash.merge@^4.6.2:
version "4.6.2"
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
@@ -9268,14 +8385,6 @@ lower-case@^2.0.2:
dependencies:
tslib "^2.0.3"
-lowlight@^1.17.0:
- version "1.20.0"
- resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888"
- integrity sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==
- dependencies:
- fault "^1.0.0"
- highlight.js "~10.7.0"
-
lru-cache@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@@ -9310,11 +8419,6 @@ make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
dependencies:
semver "^6.0.0"
-make-error@1.x:
- version "1.3.6"
- resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
- integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
-
makeerror@1.0.12:
version "1.0.12"
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a"
@@ -9327,16 +8431,6 @@ map-cache@^0.2.2:
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
-map-obj@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
- integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==
-
-map-obj@^4.0.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
- integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
-
map-or-similar@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08"
@@ -9564,16 +8658,6 @@ memfs@^3.4.1, memfs@^3.4.3:
dependencies:
fs-monkey "^1.0.3"
-memoize-one@^5.1.1:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e"
- integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==
-
-memoize-one@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045"
- integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==
-
memoizerific@^1.11.3:
version "1.11.3"
resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a"
@@ -9581,23 +8665,6 @@ memoizerific@^1.11.3:
dependencies:
map-or-similar "^1.5.0"
-meow@^8.0.0:
- version "8.1.2"
- resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
- integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==
- dependencies:
- "@types/minimist" "^1.2.0"
- camelcase-keys "^6.2.2"
- decamelize-keys "^1.1.0"
- hard-rejection "^2.1.0"
- minimist-options "4.1.0"
- normalize-package-data "^3.0.0"
- read-pkg-up "^7.0.1"
- redent "^3.0.0"
- trim-newlines "^3.0.0"
- type-fest "^0.18.0"
- yargs-parser "^20.2.3"
-
merge-descriptors@1.0.1, merge-descriptors@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
@@ -9967,22 +9034,13 @@ minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1:
dependencies:
brace-expansion "^1.1.7"
-minimatch@^5.0.1, minimatch@^5.1.0:
+minimatch@^5.0.1:
version "5.1.6"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
dependencies:
brace-expansion "^2.0.1"
-minimist-options@4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
- integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
- dependencies:
- arrify "^1.0.1"
- is-plain-obj "^1.1.0"
- kind-of "^6.0.3"
-
minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
@@ -10038,11 +9096,6 @@ modern-normalize@^1.1.0:
resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-1.1.0.tgz#da8e80140d9221426bd4f725c6e11283d34f90b7"
integrity sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==
-modify-values@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
- integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
-
moo-color@^1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/moo-color/-/moo-color-1.0.3.tgz#d56435f8359c8284d83ac58016df7427febece74"
@@ -10221,14 +9274,6 @@ node-gyp-build@^4.2.1:
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055"
integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==
-node-html-parser@^6.0.0:
- version "6.1.5"
- resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-6.1.5.tgz#c819dceb13a10a7642ff92f94f870b4f77968097"
- integrity sha512-fAaM511feX++/Chnhe475a0NHD8M7AxDInsqQpz6x63GRF7xYNdS8Vo5dKsIVPgsOvG7eioRRTZQnWBrhDHBSg==
- dependencies:
- css-select "^5.1.0"
- he "1.2.0"
-
node-int64@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
@@ -10277,16 +9322,6 @@ normalize-package-data@^2.5.0:
semver "2 || 3 || 4 || 5"
validate-npm-package-license "^3.0.1"
-normalize-package-data@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e"
- integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
- dependencies:
- hosted-git-info "^4.0.1"
- is-core-module "^2.5.0"
- semver "^7.3.4"
- validate-npm-package-license "^3.0.1"
-
normalize-path@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
@@ -10304,15 +9339,6 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
-npm-package-arg@^8.1.0:
- version "8.1.5"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.5.tgz#3369b2d5fe8fdc674baa7f1786514ddc15466e44"
- integrity sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==
- dependencies:
- hosted-git-info "^4.0.1"
- semver "^7.3.4"
- validate-npm-package-name "^3.0.0"
-
npm-run-path@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
@@ -10327,16 +9353,6 @@ npm-run-path@^4.0.0, npm-run-path@^4.0.1:
dependencies:
path-key "^3.0.0"
-npmlog@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
- integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
- dependencies:
- are-we-there-yet "~1.1.2"
- console-control-strings "~1.1.0"
- gauge "~2.7.3"
- set-blocking "~2.0.0"
-
npmlog@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0"
@@ -10359,17 +9375,12 @@ num2fraction@^1.2.2:
resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==
-
nwsapi@^2.2.0:
version "2.2.2"
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0"
integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==
-object-assign@^4, object-assign@^4.1.0, object-assign@^4.1.1:
+object-assign@^4, object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
@@ -10561,21 +9572,6 @@ p-map@^4.0.0:
dependencies:
aggregate-error "^3.0.0"
-p-queue@^6.6.2:
- version "6.6.2"
- resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426"
- integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
- dependencies:
- eventemitter3 "^4.0.4"
- p-timeout "^3.2.0"
-
-p-timeout@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
- integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
- dependencies:
- p-finally "^1.0.0"
-
p-try@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
@@ -10601,11 +9597,6 @@ parent-module@^1.0.0:
dependencies:
callsites "^3.0.0"
-parse-diff@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/parse-diff/-/parse-diff-0.11.1.tgz#d93ca2d225abed280782bccb1476711ca9dd84f0"
- integrity sha512-Oq4j8LAOPOcssanQkIjxosjATBIEJhCxMCxPhMu+Ci4wdNmAEdx0O+a7gzbR2PyKXgKPvRLIN5g224+dJAsKHA==
-
parse-entities@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
@@ -10618,11 +9609,6 @@ parse-entities@^2.0.0:
is-decimal "^1.0.0"
is-hexadecimal "^1.0.0"
-parse-github-repo-url@^1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
- integrity sha512-bSWyzBKqcSL4RrncTpGsEKoJ7H8a4L3++ifTAbTFeMHyq2wRV+42DGmQcHIrJIvdcacjIOxEuKH/w4tthF17gg==
-
parse-json@^5.0.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
@@ -11071,16 +10057,6 @@ pretty-hrtime@^1.0.3:
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
integrity sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==
-prismjs@^1.27.0:
- version "1.29.0"
- resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12"
- integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==
-
-prismjs@~1.27.0:
- version "1.27.0"
- resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057"
- integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==
-
process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
@@ -11096,13 +10072,6 @@ progress@^2.0.1:
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-promise@^8.1.0:
- version "8.3.0"
- resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a"
- integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==
- dependencies:
- asap "~2.0.6"
-
prompts@^2.0.1, prompts@^2.4.0:
version "2.4.2"
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069"
@@ -11119,7 +10088,7 @@ prop-types-extra@^1.1.0:
react-is "^16.3.2"
warning "^4.0.0"
-prop-types@^15.0.0, prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
+prop-types@^15.0.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
@@ -11128,7 +10097,7 @@ prop-types@^15.0.0, prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2,
object-assign "^4.1.1"
react-is "^16.13.1"
-property-information@^5.0.0, property-information@^5.3.0:
+property-information@^5.3.0:
version "5.6.0"
resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69"
integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==
@@ -11219,11 +10188,6 @@ purgecss@^4.0.3:
postcss "^8.3.5"
postcss-selector-parser "^6.0.6"
-q@^1.5.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
- integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
-
qs@6.11.0, qs@^6.10.0:
version "6.11.0"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
@@ -11265,23 +10229,11 @@ queue@6.0.2:
dependencies:
inherits "~2.0.3"
-quick-lru@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
- integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
-
quick-lru@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
-raf@^3.4.1:
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
- integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
- dependencies:
- performance-now "^2.1.0"
-
ramda@0.29.0:
version "0.29.0"
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.29.0.tgz#fbbb67a740a754c8a4cbb41e2a6e0eb8507f55fb"
@@ -11319,18 +10271,6 @@ raw-body@2.5.1:
iconv-lite "0.4.24"
unpipe "1.0.0"
-react-app-polyfill@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz#95221e0a9bd259e5ca6b177c7bb1cb6768f68fd7"
- integrity sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==
- dependencies:
- core-js "^3.19.2"
- object-assign "^4.1.1"
- promise "^8.1.0"
- raf "^3.4.1"
- regenerator-runtime "^0.13.9"
- whatwg-fetch "^3.6.2"
-
react-bootstrap@^2.8.0:
version "2.8.0"
resolved "https://registry.yarnpkg.com/react-bootstrap/-/react-bootstrap-2.8.0.tgz#781f254b33090c1d50ed521b40697727267c6add"
@@ -11476,17 +10416,6 @@ react-markdown@^8.0.7:
unist-util-visit "^4.0.0"
vfile "^5.0.0"
-react-player@^2.12.0:
- version "2.12.0"
- resolved "https://registry.yarnpkg.com/react-player/-/react-player-2.12.0.tgz#2fc05dbfec234c829292fbca563b544064bd14f0"
- integrity sha512-rymLRz/2GJJD+Wc01S7S+i9pGMFYnNmQibR2gVE3KmHJCBNN8BhPAlOPTGZtn1uKpJ6p4RPLlzPQ1OLreXd8gw==
- dependencies:
- deepmerge "^4.0.0"
- load-script "^1.0.0"
- memoize-one "^5.1.1"
- prop-types "^15.7.2"
- react-fast-compare "^3.0.1"
-
react-refresh@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046"
@@ -11509,33 +10438,7 @@ react-resize-detector@^7.1.2:
dependencies:
lodash "^4.17.21"
-react-select@^5.7.3:
- version "5.7.4"
- resolved "https://registry.yarnpkg.com/react-select/-/react-select-5.7.4.tgz#d8cad96e7bc9d6c8e2709bdda8f4363c5dd7ea7d"
- integrity sha512-NhuE56X+p9QDFh4BgeygHFIvJJszO1i1KSkg/JPcIJrbovyRtI+GuOEa4XzFCEpZRAEoEI8u/cAHK+jG/PgUzQ==
- dependencies:
- "@babel/runtime" "^7.12.0"
- "@emotion/cache" "^11.4.0"
- "@emotion/react" "^11.8.1"
- "@floating-ui/dom" "^1.0.1"
- "@types/react-transition-group" "^4.4.0"
- memoize-one "^6.0.0"
- prop-types "^15.6.0"
- react-transition-group "^4.3.0"
- use-isomorphic-layout-effect "^1.1.2"
-
-react-syntax-highlighter@^15.5.0:
- version "15.5.0"
- resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz#4b3eccc2325fa2ec8eff1e2d6c18fa4a9e07ab20"
- integrity sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==
- dependencies:
- "@babel/runtime" "^7.3.1"
- highlight.js "^10.4.1"
- lowlight "^1.17.0"
- prismjs "^1.27.0"
- refractor "^3.6.0"
-
-react-transition-group@^4.3.0, react-transition-group@^4.4.5:
+react-transition-group@^4.4.5:
version "4.4.5"
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1"
integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==
@@ -11578,16 +10481,7 @@ read-pkg@^5.2.0:
parse-json "^5.0.0"
type-fest "^0.6.0"
-readable-stream@3:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
- integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
- dependencies:
- inherits "^2.0.3"
- string_decoder "^1.1.1"
- util-deprecate "^1.0.1"
-
-readable-stream@^2.0.0, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@~2.3.6:
+readable-stream@^2.0.0, readable-stream@^2.2.2, readable-stream@~2.3.6:
version "2.3.8"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
@@ -11660,15 +10554,6 @@ reduce-css-calc@^2.1.8:
css-unit-converter "^1.1.1"
postcss-value-parser "^3.3.0"
-refractor@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.6.0.tgz#ac318f5a0715ead790fcfb0c71f4dd83d977935a"
- integrity sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==
- dependencies:
- hastscript "^6.0.0"
- parse-entities "^2.0.0"
- prismjs "~1.27.0"
-
regenerate-unicode-properties@^10.1.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
@@ -11681,7 +10566,7 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.9:
+regenerator-runtime@^0.13.11:
version "0.13.11"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
@@ -11763,46 +10648,6 @@ relateurl@^0.2.7:
resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==
-release-please@^14.17.3:
- version "14.17.5"
- resolved "https://registry.yarnpkg.com/release-please/-/release-please-14.17.5.tgz#50c970ce182380a02638cece64059f1328eee232"
- integrity sha512-LlAQ2HT7qQs3pZncMWcBkAVzGdGYW0IOyulzqFed5XTvVIjFPuaaxOAtE682mgFczt2JfekLxABaKai9mMCokQ==
- dependencies:
- "@conventional-commits/parser" "^0.4.1"
- "@google-automations/git-file-utils" "^1.2.0"
- "@iarna/toml" "^2.2.5"
- "@lerna/collect-updates" "^4.0.0"
- "@lerna/package" "^4.0.0"
- "@lerna/package-graph" "^4.0.0"
- "@lerna/run-topologically" "^4.0.0"
- "@octokit/graphql" "^5.0.0"
- "@octokit/request" "^6.0.0"
- "@octokit/request-error" "^3.0.0"
- "@octokit/rest" "^19.0.0"
- "@types/npm-package-arg" "^6.1.0"
- "@xmldom/xmldom" "^0.8.4"
- chalk "^4.0.0"
- code-suggester "^4.1.0"
- conventional-changelog-conventionalcommits "^5.0.0"
- conventional-changelog-writer "^5.0.0"
- conventional-commits-filter "^2.0.2"
- detect-indent "^6.1.0"
- diff "^5.0.0"
- figures "^3.0.0"
- http-proxy-agent "^5.0.0"
- https-proxy-agent "^5.0.1"
- js-yaml "^4.0.0"
- jsonpath "^1.1.1"
- node-html-parser "^6.0.0"
- parse-github-repo-url "^1.4.1"
- semver "^7.0.0"
- type-fest "^3.0.0"
- typescript "^4.6.4"
- unist-util-visit "^2.0.3"
- unist-util-visit-parents "^3.1.1"
- xpath "^0.0.32"
- yargs "^17.0.0"
-
remark-breaks@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/remark-breaks/-/remark-breaks-3.0.3.tgz#660e6c995e954e5abdd95bf77df6f1402cb911ef"
@@ -11999,15 +10844,6 @@ resolve@^1.1.7, resolve@^1.14.2, resolve@^1.18.1, resolve@^1.20.0, resolve@^1.22
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-resolve@^1.19.0:
- version "1.22.4"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.4.tgz#1dc40df46554cdaf8948a486a10f6ba1e2026c34"
- integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==
- dependencies:
- is-core-module "^2.13.0"
- path-parse "^1.0.7"
- supports-preserve-symlinks-flag "^1.0.0"
-
response-iterator@^0.2.6:
version "0.2.6"
resolved "https://registry.yarnpkg.com/response-iterator/-/response-iterator-0.2.6.tgz#249005fb14d2e4eeb478a3f735a28fd8b4c9f3da"
@@ -12026,11 +10862,6 @@ ret@~0.1.10:
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-retry@0.13.1:
- version "0.13.1"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
- integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
-
reusify@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
@@ -12140,17 +10971,6 @@ sane@^4.0.3:
minimist "^1.1.1"
walker "~1.0.5"
-sass-loader@^10.4.1:
- version "10.4.1"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.4.1.tgz#bea4e173ddf512c9d7f53e9ec686186146807cbf"
- integrity sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==
- dependencies:
- klona "^2.0.4"
- loader-utils "^2.0.0"
- neo-async "^2.6.2"
- schema-utils "^3.0.0"
- semver "^7.3.2"
-
sass-loader@^12.4.0:
version "12.6.0"
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz#5148362c8e2cdd4b950f3c63ac5d16dbfed37bcb"
@@ -12159,15 +10979,6 @@ sass-loader@^12.4.0:
klona "^2.0.4"
neo-async "^2.6.2"
-sass@^1.63.6:
- version "1.66.0"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.66.0.tgz#74728eed49b0e490cd729c233e7f1c6ce356e638"
- integrity sha512-C3U+RgpAAlTXULZkWwzfysgbbBBo8IZudNAOJAVBLslFbIaZv4MBPkTqhuvpK4lqgdoFiWhnOGMoV4L1FyOBag==
- dependencies:
- chokidar ">=3.0.0 <4.0.0"
- immutable "^4.0.0"
- source-map-js ">=0.6.2 <2.0.0"
-
saxes@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
@@ -12234,7 +11045,7 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-semver@^7.0.0, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3:
+semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8:
version "7.5.4"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
@@ -12293,7 +11104,7 @@ serve-static@1.15.0:
parseurl "~1.3.3"
send "0.18.0"
-set-blocking@^2.0.0, set-blocking@~2.0.0:
+set-blocking@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
@@ -12452,14 +11263,7 @@ snapdragon@^0.8.1:
source-map-resolve "^0.5.0"
use "^3.1.0"
-sort-keys@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
- integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==
- dependencies:
- is-plain-obj "^1.0.0"
-
-"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2:
+source-map-js@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
@@ -12493,7 +11297,7 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, sourc
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-source-map@^0.5.6, source-map@^0.5.7:
+source-map@^0.5.6:
version "0.5.7"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
@@ -12546,13 +11350,6 @@ split-string@^3.0.1, split-string@^3.0.2:
dependencies:
extend-shallow "^3.0.0"
-split@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
- integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
- dependencies:
- through "2"
-
sprintf-js@~1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
@@ -12585,13 +11382,6 @@ stackframe@^1.3.4:
resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310"
integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==
-static-eval@2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.2.tgz#2d1759306b1befa688938454c546b7871f806a42"
- integrity sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==
- dependencies:
- escodegen "^1.8.1"
-
static-extend@^0.1.1:
version "0.1.2"
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
@@ -12642,15 +11432,6 @@ string-length@^4.0.1:
char-regex "^1.0.2"
strip-ansi "^6.0.0"
-string-width@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
- integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==
- dependencies:
- code-point-at "^1.0.0"
- is-fullwidth-code-point "^1.0.0"
- strip-ansi "^3.0.0"
-
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
@@ -12691,13 +11472,6 @@ stringify-object@3.3.0:
is-obj "^1.0.1"
is-regexp "^1.0.0"
-strip-ansi@^3.0.0, strip-ansi@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
- dependencies:
- ansi-regex "^2.0.0"
-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
@@ -12737,15 +11511,6 @@ strip-json-comments@^3.0.1:
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
-strong-log-transformer@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10"
- integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==
- dependencies:
- duplexer "^0.1.1"
- minimist "^1.2.0"
- through "^2.3.4"
-
style-loader@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e"
@@ -12780,11 +11545,6 @@ styled-jsx@5.1.1:
dependencies:
client-only "0.0.1"
-stylis@4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51"
- integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==
-
supports-color@8.1.1, supports-color@^8.0.0, supports-color@^8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
@@ -12839,11 +11599,6 @@ tabbable@^5.3.3:
resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-5.3.3.tgz#aac0ff88c73b22d6c3c5a50b1586310006b47fbf"
integrity sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==
-tabbable@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97"
- integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==
-
tailwindcss@^3.0.9:
version "3.2.7"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.2.7.tgz#5936dd08c250b05180f0944500c01dce19188c07"
@@ -12997,14 +11752,7 @@ through2@^2.0.3:
readable-stream "~2.3.6"
xtend "~4.0.1"
-through2@^4.0.0:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764"
- integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==
- dependencies:
- readable-stream "3"
-
-through@2, through@^2.3.4, through@^2.3.8:
+through@^2.3.8:
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
@@ -13115,11 +11863,6 @@ trim-lines@^3.0.0:
resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338"
integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
-trim-newlines@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144"
- integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
-
trough@^1.0.0:
version "1.0.5"
resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
@@ -13142,20 +11885,6 @@ ts-invariant@^0.10.3:
dependencies:
tslib "^2.1.0"
-ts-jest@^29.1.1:
- version "29.1.1"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.1.tgz#f58fe62c63caf7bfcc5cc6472082f79180f0815b"
- integrity sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==
- dependencies:
- bs-logger "0.x"
- fast-json-stable-stringify "2.x"
- jest-util "^29.0.0"
- json5 "^2.2.3"
- lodash.memoize "4.x"
- make-error "1.x"
- semver "^7.5.3"
- yargs-parser "^21.0.1"
-
ts-pnp@^1.1.6:
version "1.2.0"
resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
@@ -13223,11 +11952,6 @@ type-fest@^0.16.0:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860"
integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==
-type-fest@^0.18.0:
- version "0.18.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f"
- integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==
-
type-fest@^0.20.2:
version "0.20.2"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
@@ -13238,11 +11962,6 @@ type-fest@^0.21.3:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
-type-fest@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8"
- integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==
-
type-fest@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
@@ -13258,11 +11977,6 @@ type-fest@^2.19.0:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b"
integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==
-type-fest@^3.0.0:
- version "3.12.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.12.0.tgz#4ce26edc1ccc59fc171e495887ef391fe1f5280e"
- integrity sha512-qj9wWsnFvVEMUDbESiilKeXeHL7FwwiFcogfhfyjmvT968RXSvnl23f1JOClTHYItsi7o501C/7qVllscUP3oA==
-
type-is@^1.6.18, type-is@~1.6.18:
version "1.6.18"
resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
@@ -13283,11 +11997,6 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
-typescript@^4.6.4:
- version "4.9.5"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
- integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
-
uglify-js@^3.1.4:
version "3.17.4"
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
@@ -13308,11 +12017,6 @@ uncontrollable@^8.0.1:
resolved "https://registry.yarnpkg.com/uncontrollable/-/uncontrollable-8.0.4.tgz#a0a8307f638795162fafd0550f4a1efa0f8c5eb6"
integrity sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==
-underscore@1.12.1:
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e"
- integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==
-
unfetch@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
@@ -13448,7 +12152,7 @@ unist-util-visit-parents@^2.0.0:
dependencies:
unist-util-is "^3.0.0"
-unist-util-visit-parents@^3.0.0, unist-util-visit-parents@^3.1.1:
+unist-util-visit-parents@^3.0.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6"
integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==
@@ -13471,7 +12175,7 @@ unist-util-visit@^1.4.1:
dependencies:
unist-util-visit-parents "^2.0.0"
-unist-util-visit@^2.0.0, unist-util-visit@^2.0.3:
+unist-util-visit@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
@@ -13489,11 +12193,6 @@ unist-util-visit@^4.0.0:
unist-util-is "^5.0.0"
unist-util-visit-parents "^5.1.1"
-universal-user-agent@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee"
- integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==
-
universalify@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
@@ -13568,11 +12267,6 @@ url@^0.11.0:
punycode "1.3.2"
querystring "0.2.0"
-use-isomorphic-layout-effect@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb"
- integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==
-
use-resize-observer@^9.1.0:
version "9.1.0"
resolved "https://registry.yarnpkg.com/use-resize-observer/-/use-resize-observer-9.1.0.tgz#14735235cf3268569c1ea468f8a90c5789fc5c6c"
@@ -13585,11 +12279,6 @@ use@^3.1.0:
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-user@^0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/user/-/user-0.0.0.tgz#f27f1b23fc511f2a8efa40db55cfba123824e02a"
- integrity sha512-eRNM5isOvr6aEFAGi1CqAkmLkYxW2NJ5ThhbD+6IJXYKM1mo7Gtxx4mQIveHz/5K3p/SVnlW9k17ETn+QAu8IQ==
-
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
@@ -13662,13 +12351,6 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
-validate-npm-package-name@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
- integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==
- dependencies:
- builtins "^1.0.3"
-
vary@^1, vary@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
@@ -13874,11 +12556,6 @@ whatwg-encoding@^1.0.5:
dependencies:
iconv-lite "0.4.24"
-whatwg-fetch@^3.6.2:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
- integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
-
whatwg-mimetype@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
@@ -13962,7 +12639,7 @@ which@^2.0.1, which@^2.0.2:
dependencies:
isexe "^2.0.0"
-wide-align@^1.1.0, wide-align@^1.1.2:
+wide-align@^1.1.2:
version "1.1.5"
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
@@ -14009,7 +12686,7 @@ wrappy@1:
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
-write-file-atomic@^2.3.0, write-file-atomic@^2.4.2:
+write-file-atomic@^2.3.0:
version "2.4.3"
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
@@ -14036,27 +12713,6 @@ write-file-atomic@^4.0.2:
imurmurhash "^0.1.4"
signal-exit "^3.0.7"
-write-json-file@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a"
- integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==
- dependencies:
- detect-indent "^5.0.0"
- graceful-fs "^4.1.15"
- make-dir "^2.1.0"
- pify "^4.0.1"
- sort-keys "^2.0.0"
- write-file-atomic "^2.4.2"
-
-write-pkg@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039"
- integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==
- dependencies:
- sort-keys "^2.0.0"
- type-fest "^0.4.1"
- write-json-file "^3.2.0"
-
ws@^6.1.0:
version "6.2.2"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e"
@@ -14084,11 +12740,6 @@ xmlchars@^2.2.0:
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
-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.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
@@ -14119,11 +12770,6 @@ yaml@^1.10.0, yaml@^1.10.2:
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-yaml@^2.1.3:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b"
- integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==
-
yargs-parser@^18.1.2:
version "18.1.3"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
@@ -14132,16 +12778,11 @@ yargs-parser@^18.1.2:
camelcase "^5.0.0"
decamelize "^1.2.0"
-yargs-parser@^20.2.2, yargs-parser@^20.2.3, yargs-parser@^20.2.9:
+yargs-parser@^20.2.2, yargs-parser@^20.2.9:
version "20.2.9"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
-yargs-parser@^21.0.1, yargs-parser@^21.1.1:
- version "21.1.1"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
- integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
-
yargs@^15.4.1:
version "15.4.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
@@ -14159,7 +12800,7 @@ yargs@^15.4.1:
y18n "^4.0.0"
yargs-parser "^18.1.2"
-yargs@^16.0.0, yargs@^16.2.0:
+yargs@^16.2.0:
version "16.2.0"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
@@ -14172,19 +12813,6 @@ yargs@^16.0.0, yargs@^16.2.0:
y18n "^5.0.5"
yargs-parser "^20.2.2"
-yargs@^17.0.0, yargs@^17.6.2:
- version "17.7.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
- integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
- dependencies:
- cliui "^8.0.1"
- escalade "^3.1.1"
- get-caller-file "^2.0.5"
- require-directory "^2.1.1"
- string-width "^4.2.3"
- y18n "^5.0.5"
- yargs-parser "^21.1.1"
-
yauzl@^2.10.0:
version "2.10.0"
resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"