From 10246192c47e1d8342276e912a426ff188109ce2 Mon Sep 17 00:00:00 2001 From: toino Date: Tue, 26 Sep 2023 01:40:55 +0100 Subject: [PATCH 01/61] Show the user's notifications in a popup --- content-scripts/src/modules/layout.js | 101 ++++++++++++++++++++++- css/simpler.css | 114 +++++++++++++++++++++++++- 2 files changed, 211 insertions(+), 4 deletions(-) diff --git a/content-scripts/src/modules/layout.js b/content-scripts/src/modules/layout.js index fab38d6..da5c68f 100644 --- a/content-scripts/src/modules/layout.js +++ b/content-scripts/src/modules/layout.js @@ -1,5 +1,6 @@ import { elementFromHtml } from "./utilities/elementFromHtml"; import { createPopover } from "./utilities/popover"; +import { fetchSigarraPage } from "./utilities/pageUtils"; const HEADER_LINKS = { Estudantes: { @@ -40,13 +41,32 @@ const HEADER_LINKS = { const authentication = (auth) => auth ? /*html*/ ` - - + +
+ + +
+ + +
+
+
    +
      +
      + + Sem notificações +
      +
      + +
      +
      +
      + ); +} + +export default Button; \ No newline at end of file diff --git a/content-scripts/components/HeaderAuthentication.tsx b/content-scripts/components/HeaderAuthentication.tsx index 6616e8b..f0eaf30 100644 --- a/content-scripts/components/HeaderAuthentication.tsx +++ b/content-scripts/components/HeaderAuthentication.tsx @@ -1,5 +1,6 @@ import jsx from "texsaur"; import { AuthSession } from "../types"; +import { togglePopover } from "../modules/utilities/popover"; interface Props { auth: AuthSession | null; @@ -11,9 +12,9 @@ const Authentication = ({ auth }: Props) => {
      @@ -45,7 +46,8 @@ const Authentication = ({ auth }: Props) => {
      - -
      - - -
      - - -
      -
      -
        -
          -
          - - Sem notificações -
          -
          - -
          -
          -
          - -
          -
          - ${auth.name} - ${auth.number} -
          - -
          - ` - : /*html*/ ` - - -
          - - - - - - - - - ou - - - Autenticação Federada - - - Recuperar palavra-passe - -
          - `; - -/** - * @param {Record>} links - */ -const createLinks = (links) => - Object.entries(links) - .map( - ([key, value]) => /*html*/ ` - -` - ) - .join(""); - -const createNewHeader = (auth) => - elementFromHtml(/*html*/ ` -
          - - -
          ${authentication(auth)}
          -
          - `); - -const loadNotifications = async () => { - const notificationsList = document.querySelector( - "#se-auth-notifications-list" - ); - - if ( - notificationsList?.hasAttribute("data-se-loaded") || - notificationsList?.classList.contains("se-loading") - ) - return; - - notificationsList.classList.add("se-loading"); - - const newNotifications = document.querySelector( - "#se-auth-new-notifications" - ); - const readNotifications = document.querySelector( - "#se-auth-read-notifications" - ); - - const dateFormatter = new Intl.DateTimeFormat("pt-PT", { - dateStyle: "short", - }); - - await Promise.allSettled( - [ - [newNotifications, "P"], - [readNotifications, "F"], - ].map(async ([list, type]) => { - const r = await fetchSigarraPage( - `gnots_ajax.show_lista_notifs?pv_estado=${type}` - ); - - r.querySelectorAll("tr.d").forEach((x) => { - const date = x.querySelector("td:nth-child(3)")?.textContent; - const title = x.querySelector("td:nth-child(4)")?.textContent; - const answer = x.querySelector("td:nth-child(7) input"); - - const li = document.createElement("li"); - li.classList.add("se-notification"); - - const time = document.createElement("time"); - time.classList.add("se-notification-time"); - time.dateTime = date; - time.textContent = dateFormatter.format(new Date(date)); - - const span = document.createElement("span"); - span.classList.add("se-notification-title"); - span.textContent = title; - - li.append(span, time); - - if (answer) { - const markAsRead = async (e) => { - e.preventDefault(); - e.stopPropagation(); - - // Seems to always succeed - await fetchSigarraPage( - `gnots_geral.nots_list_sub?${answer.name}=${answer.value}` - ); - - e.target.remove(); - readNotifications.insertBefore( - li, - readNotifications.firstChild - ); - }; - - const button = document.createElement("button"); - button.classList.add("se-notification-button"); - button.type = "button"; - button.addEventListener("click", markAsRead); - - const icon = document.createElement("span"); - icon.classList.add("se-icon", "ri-check-line"); - - button.append(icon); - li.append(button); - } - - list.append(li); - }); - }) - ); - - notificationsList.classList.remove("se-loading"); - notificationsList.setAttribute("data-se-loaded", ""); -}; - -const replaceHeader = () => { - const oldHeader = document.querySelector("#cabecalho"); - - const autenticacao = oldHeader.querySelector(".autenticacao"); - - let auth = null; - - if (autenticacao && autenticacao.classList.contains("autenticado")) { - const number = autenticacao.querySelector("img").src.slice(-9) - - auth = { - name: autenticacao.querySelector(".nome").textContent, - number: number, - notifications: oldHeader.querySelector(".notificacao") !== null, - }; - } - const newHeader = createNewHeader(auth); - - const newAuth = newHeader.querySelector("#se-auth"); - const authPopover = newHeader.querySelector( - ":is(#se-auth-profile-menu, #se-auth-form)" - ); - const openAuth = createPopover(authPopover, newAuth); - - newHeader - .querySelectorAll(":is(#se-auth-button, #se-auth-profile-button)") - .forEach((x) => x.addEventListener("click", openAuth)); - - const notificationsPopover = newHeader.querySelector( - "#se-auth-notifications-menu" - ); - const notificationsButton = newHeader.querySelector( - "#se-auth-notifications-button" - ); - - if (notificationsPopover && notificationsButton) { - const openNotifications = createPopover(notificationsPopover); - notificationsButton.addEventListener("click", () => { - loadNotifications(); - openNotifications(); - }); - } - - newHeader.querySelectorAll(".se-header-link").forEach((x) => { - const popover = x.querySelector(".se-header-link-popover"); - const togglePopover = createPopover(popover); - const button = x.querySelector("button"); - button.addEventListener("click", togglePopover); - }); - - oldHeader.replaceWith(newHeader); -}; - -const removeLeftColumn = () => { - const leftColumn = document.querySelector("#colunaprincipal"); - const rightColumn = document.querySelector("#colunaextra"); - - const map = leftColumn.querySelector("#caixa-campus"); - const mapImage = map.querySelector("img"); - mapImage.src = chrome.runtime.getURL("images/feup-map.svg"); - mapImage.width = 113; - mapImage.height = 142; - - const newMap = map.cloneNode(true); - rightColumn.append(newMap); -}; - -export const changeLayout = async () => { - // Move all scripts and styles to head - const scripts = document.querySelectorAll("script, link, style"); - document.head.append(...scripts); - - // Simplify layout - const involucro = document.querySelector("#involucro"); - document.body.append(...involucro.children); - involucro.remove(); - - const envolvente = document.querySelector("#envolvente"); - document.body.append(...envolvente.children); - envolvente.remove(); - - document - .querySelectorAll("#rodape, #ferramentas") - .forEach((x) => x.remove()); - - replaceHeader(); - removeLeftColumn(); -}; diff --git a/content-scripts/modules/layout.ts b/content-scripts/modules/layout.ts index 0e1cc1b..74498ef 100644 --- a/content-scripts/modules/layout.ts +++ b/content-scripts/modules/layout.ts @@ -1,5 +1,7 @@ import { AuthSession } from "../types"; import Header from "../components/Header"; +import { fetchSigarraPage } from "./utilities/pageUtils"; +import Button from "../components/Button"; export const changeLayout = async () => { @@ -7,9 +9,7 @@ export const changeLayout = async () => { const scripts = document.querySelectorAll("script, link, style"); document.head.append(...Array.from(scripts)); - // TODO(thePeras): Why?TT // Simplify layout - const involucro = document.querySelector("#involucro"); if (involucro) { document.body.append(...Array.from(involucro.children)); @@ -22,11 +22,6 @@ export const changeLayout = async () => { envolvente.remove(); } - // TODO(thePeras): This should be done in css - document - .querySelectorAll("#rodape, #ferramentas") - .forEach((x) => x.remove()); - replaceHeader(); removeLeftColumn(); }; @@ -45,7 +40,19 @@ const replaceHeader = () => { hasNotifications: oldHeader.querySelector(".notificacao") !== null, }; - oldHeader.replaceWith(Header({ auth })); + const newHeader = Header({ auth }); + oldHeader.replaceWith(newHeader); + + const notificationsButton = newHeader.querySelector( + "#se-auth-notifications-button" + ); + + if (notificationsButton) { + notificationsButton.addEventListener("click", () => { + loadNotifications(); + }); + } + return; } @@ -69,4 +76,98 @@ const removeLeftColumn = () => { const newMap = map.cloneNode(true); rightColumn.append(newMap); -}; \ No newline at end of file +}; + +const loadNotifications = async (): Promise => { + const notificationsList = document.querySelector( + "#se-auth-notifications-list" + ); + + if (!notificationsList) return; + if (notificationsList.hasAttribute("data-se-loaded")) return; + if (notificationsList.classList.contains("se-loading")) return; + + notificationsList.classList.add("se-loading"); + + const newNotifications = document.querySelector( + "#se-auth-new-notifications" + ); + const readNotifications = document.querySelector( + "#se-auth-read-notifications" + ); + + const dateFormatter = new Intl.DateTimeFormat("pt-PT", { + dateStyle: "short", + }); + + await Promise.allSettled( + [ + [newNotifications, "P"], + [readNotifications, "F"], + ].map(async (value) => { + const [list, type] = value as [HTMLUListElement | null, string]; + if (!list) return; + + const response = await fetchSigarraPage( + `gnots_ajax.show_lista_notifs?pv_estado=${type}` + ); + + response.querySelectorAll("tr.d").forEach((notification) => { + const date = notification.querySelector("td:nth-child(3)")?.textContent; + const title = notification.querySelector("td:nth-child(4)")?.textContent; + const answer = notification.querySelector( + "td:nth-child(7) input" + ); + + //TODO(thePeras): Could be a jsx component + const li = document.createElement("li"); + li.classList.add("se-notification"); + + const time = document.createElement("time"); + time.classList.add("se-notification-time"); + if (date) { + time.dateTime = date; + time.textContent = dateFormatter.format(new Date(date)); + } + + const span = document.createElement("span"); + span.classList.add("se-notification-title"); + if (title) { + span.textContent = title; + } + + li.append(span, time); + + if (answer) { + const markAsRead = async (e: Event) => { + e.preventDefault(); + e.stopPropagation(); + + await fetchSigarraPage( + `gnots_geral.nots_list_sub?${answer.name}=${answer.value}` + ); + + const targetElement = e.target as HTMLElement; + targetElement.remove(); + + readNotifications?.insertBefore( + li, + readNotifications.firstChild + ); + }; + + li.append(Button({ + icon: "ri-check-line", + className: "se-notification-button", + onClick: markAsRead, + })); + } + + list.append(li); + }); + }) + ); + + notificationsList.classList.remove("se-loading"); + notificationsList.setAttribute("data-se-loaded", ""); +}; diff --git a/content-scripts/modules/utilities/popover.js b/content-scripts/modules/utilities/popover.js index a051851..a8cccd1 100644 --- a/content-scripts/modules/utilities/popover.js +++ b/content-scripts/modules/utilities/popover.js @@ -28,3 +28,21 @@ export const createPopover = (popover, target = popover) => { return fn; }; + +export const togglePopover = (popoverId) => { + const popover = document.getElementById(popoverId); + if (!popover) return; + + const menuDivs = document.querySelectorAll('div[id$="-menu"]'); + menuDivs.forEach((div) => { + if (div !== popover) + div.classList.remove("se-popover-open"); + }); + + if (popover.classList.contains("se-popover-open")) { + popover.classList.remove("se-popover-open"); + } else { + popover.classList.add("se-popover-open"); + } + return; +} diff --git a/css/simpler.css b/css/simpler.css index 4d413d9..fc5c370 100644 --- a/css/simpler.css +++ b/css/simpler.css @@ -310,8 +310,12 @@ body:is(body) { display: flex; } +.se-popover-open { + display: flex !important; +} + #se-auth-form { - top: 6em; + top: 4.5em; right: 1em; text-align: center; width: max-content; @@ -320,7 +324,7 @@ body:is(body) { } #se-auth-profile-menu, #se-auth-notifications-menu { - top: 6em; + top: 4.5em; right: 1em; width: 16em; max-height: calc(100vh - 7em); diff --git a/popup/yarn.lock b/popup/yarn.lock index 7143345..9ef4e23 100644 --- a/popup/yarn.lock +++ b/popup/yarn.lock @@ -1,5762 +1,4377 @@ -# This file is generated by running "yarn install" inside your project. -# Manual changes might be lost - proceed with caution! - -__metadata: - version: 8 - cacheKey: 10c0 - -"@babel/code-frame@npm:7.12.11": - version: 7.12.11 - resolution: "@babel/code-frame@npm:7.12.11" - dependencies: - "@babel/highlight": "npm:^7.10.4" - checksum: 10c0/836ffd155506768e991d6dd8c51db37cad5958ed1c8e0a2329ccd9527165d5c752e943d66a5c3c92ffd45f343419f0742e7636629a529f4fbd5303e3637746b9 - languageName: node - linkType: hard - -"@babel/helper-plugin-utils@npm:^7.14.5": - version: 7.20.2 - resolution: "@babel/helper-plugin-utils@npm:7.20.2" - checksum: 10c0/bf4de040e57b7ddff36ea599e963c391eb246d5a95207bb9ef3e33073c451bcc0821e3a9cc08dfede862a6dcc110d7e6e7d9a483482f852be358c5b60add499c - languageName: node - linkType: hard - -"@babel/helper-validator-identifier@npm:^7.14.9, @babel/helper-validator-identifier@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-validator-identifier@npm:7.22.15" - checksum: 10c0/0473ccfd123cf872206eb916ec506f8963f75db50413560d4d1674aed4cd5d9354826c2514474d6cd40637d3bdc515ba87e8035b4bed683ba62cb607e0081aaf - languageName: node - linkType: hard - -"@babel/highlight@npm:^7.10.4": - version: 7.22.13 - resolution: "@babel/highlight@npm:7.22.13" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.22.5" - chalk: "npm:^2.4.2" - js-tokens: "npm:^4.0.0" - checksum: 10c0/65f20132c7ada5d82d343dc23ca61bcd040980f7bd59e480532bcd7f7895aa7abe58470ae8a4f851fd244b71b42a7ad915f7c515fef8f1c2e003777721ebdbe6 - languageName: node - linkType: hard - -"@babel/plugin-syntax-jsx@npm:7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-jsx@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.14.5" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 10c0/b553ccd6cf1b560616c4cd347f851a9a1d853c084bac82d39fae9b5edcc283d03053a78d014fde79c07c5dc07cc15ec988065616e9efea3220b58913205fdf49 - languageName: node - linkType: hard - -"@babel/runtime@npm:7.15.4": - version: 7.15.4 - resolution: "@babel/runtime@npm:7.15.4" - dependencies: - regenerator-runtime: "npm:^0.13.4" - checksum: 10c0/2e366347254c9d3e738641d88a086cdfb1de516111e50ebbe9e6b5d8ed78d41819cf991fc0804fa50e04ae7a2157cc28ef3b4180781af5fecfe65310d7ebf301 - languageName: node - linkType: hard - -"@babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.7": - version: 7.20.13 - resolution: "@babel/runtime@npm:7.20.13" - dependencies: - regenerator-runtime: "npm:^0.13.11" - checksum: 10c0/4bea540b54d50af157efc6e9117727c0e9a146b9db43fcd89b8f0024c9464620194efc73e57588b4b141974188dc6f9d338319d74b855d32a785bf14a6fd0d6d - languageName: node - linkType: hard - -"@babel/types@npm:7.15.0": - version: 7.15.0 - resolution: "@babel/types@npm:7.15.0" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.14.9" - to-fast-properties: "npm:^2.0.0" - checksum: 10c0/94e8f9eae94296f16cb0fbb9697b51e84c14649cb48c9a1a671f17a2456b625232e97febf509567670e260bd44c7e2c00cb37df6b96f1883717fecc0796bc90a - languageName: node - linkType: hard - -"@codemirror/autocomplete@npm:^6.0.0": - version: 6.4.2 - resolution: "@codemirror/autocomplete@npm:6.4.2" - dependencies: - "@codemirror/language": "npm:^6.0.0" - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.6.0" - "@lezer/common": "npm:^1.0.0" - peerDependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - checksum: 10c0/0dbcb13f0975385deb10e8343aacc970bf49374c4f186fd2a9fb66032acd4fcdbd3ddb813c06a47336430f59dc2629a573bef61f2b2ab0951c74d3b577a1e4f0 - languageName: node - linkType: hard - -"@codemirror/commands@npm:^6.0.0, @codemirror/commands@npm:^6.1.0": - version: 6.2.1 - resolution: "@codemirror/commands@npm:6.2.1" - dependencies: - "@codemirror/language": "npm:^6.0.0" - "@codemirror/state": "npm:^6.2.0" - "@codemirror/view": "npm:^6.0.0" - "@lezer/common": "npm:^1.0.0" - checksum: 10c0/f68981e1d2e57f1b0f343fe6144ea42aefc0fd8262bf58a0e7ea4f1487101b1978237bee0aef4dc9a0ff02c5e6fad68862cdb3673ebd6406217932af5e2aa7f8 - languageName: node - linkType: hard - -"@codemirror/lang-css@npm:^6.0.1": - version: 6.0.2 - resolution: "@codemirror/lang-css@npm:6.0.2" - dependencies: - "@codemirror/autocomplete": "npm:^6.0.0" - "@codemirror/language": "npm:^6.0.0" - "@codemirror/state": "npm:^6.0.0" - "@lezer/css": "npm:^1.0.0" - checksum: 10c0/09507fcf0f2efcf852eada972a2e5842e81e0e671d37c184860ce71f92b3da6959e4e062c477091cb4c23e225c579b822ee1eb6daf3bcfd357cabbae68816c8d - languageName: node - linkType: hard - -"@codemirror/language@npm:^6.0.0": - version: 6.6.0 - resolution: "@codemirror/language@npm:6.6.0" - dependencies: - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.0.0" - "@lezer/common": "npm:^1.0.0" - "@lezer/highlight": "npm:^1.0.0" - "@lezer/lr": "npm:^1.0.0" - style-mod: "npm:^4.0.0" - checksum: 10c0/ab4c9868850768a06c19f55819c3ed13e1721296d35b0d1bd2e1ab47d337e525140d66e39031611339e9c705954d2f9bfe385c2fa0e947cb97ada63c4d5776aa - languageName: node - linkType: hard - -"@codemirror/lint@npm:^6.0.0": - version: 6.1.1 - resolution: "@codemirror/lint@npm:6.1.1" - dependencies: - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.0.0" - crelt: "npm:^1.0.5" - checksum: 10c0/3cdb7197949433a1e26ff9935b27a452e9a43ec066f0f4d6b0e89978ad986147d74c77af4d8bf210f975390308f8d8cd78b450d4518ad12703eb6f98a7354489 - languageName: node - linkType: hard - -"@codemirror/search@npm:^6.0.0": - version: 6.2.3 - resolution: "@codemirror/search@npm:6.2.3" - dependencies: - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.0.0" - crelt: "npm:^1.0.5" - checksum: 10c0/ab117d52efb76e81e45976824174b2e7ab97e66cd49fa46596cefbc95bbb5a646c56b10828b210db3a63c84c556106fe5d0d4382a2360b4299a1992e800c8865 - languageName: node - linkType: hard - -"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.1.1, @codemirror/state@npm:^6.1.4, @codemirror/state@npm:^6.2.0": - version: 6.2.0 - resolution: "@codemirror/state@npm:6.2.0" - checksum: 10c0/9e1569b3b01a80e634a97816adc82ba938d36d0a0626c82d7ff74faecfd9e1b94b29de58564e0d40b702ac833de34e96448f4ee5c148b68f33c8d7e1c23a3b1b - languageName: node - linkType: hard - -"@codemirror/theme-one-dark@npm:^6.0.0": - version: 6.1.1 - resolution: "@codemirror/theme-one-dark@npm:6.1.1" - dependencies: - "@codemirror/language": "npm:^6.0.0" - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.0.0" - "@lezer/highlight": "npm:^1.0.0" - checksum: 10c0/0585820f298841474c9c6dae333c0b3dd1a49b36fdd4ee059ec75687f71b203d3175d491fcc8b2e1840c16d10f7cf7805e4cc74f79603009ecc2f4476c8f8104 - languageName: node - linkType: hard - -"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.6.0": - version: 6.9.1 - resolution: "@codemirror/view@npm:6.9.1" - dependencies: - "@codemirror/state": "npm:^6.1.4" - style-mod: "npm:^4.0.0" - w3c-keyname: "npm:^2.2.4" - checksum: 10c0/559c011249ff44d0dae57864dd4a0d0f79ff4e50b47b7d9aa04db7c35730b98a8109e31d2a845ece6be4f513aad955fc37421dec29b2f2cbb6af9adc556562d4 - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^0.4.3": - version: 0.4.3 - resolution: "@eslint/eslintrc@npm:0.4.3" - dependencies: - ajv: "npm:^6.12.4" - debug: "npm:^4.1.1" - espree: "npm:^7.3.0" - globals: "npm:^13.9.0" - ignore: "npm:^4.0.6" - import-fresh: "npm:^3.2.1" - js-yaml: "npm:^3.13.1" - minimatch: "npm:^3.0.4" - strip-json-comments: "npm:^3.1.1" - checksum: 10c0/0eed93369f72ef044686d07824742121f9b95153ff34f4614e4e69d64332ee68c84eb70da851a9005bb76b3d1d64ad76c2e6293a808edc0f7dfb883689ca136d - languageName: node - linkType: hard - -"@hapi/accept@npm:5.0.2": - version: 5.0.2 - resolution: "@hapi/accept@npm:5.0.2" - dependencies: - "@hapi/boom": "npm:9.x.x" - "@hapi/hoek": "npm:9.x.x" - checksum: 10c0/38c7bcba40ca2c09aaafefbba73bf5b991bfcc2b2e57285ab6c6a9e00a06c2bdfd0c29a2a89f9ba3af314e12bc0ebd92652e805b7cef805062e8e73f41e75630 - languageName: node - linkType: hard - -"@hapi/boom@npm:9.x.x": - version: 9.1.4 - resolution: "@hapi/boom@npm:9.1.4" - dependencies: - "@hapi/hoek": "npm:9.x.x" - checksum: 10c0/49bb99443e7bdbbdc87ee8de97cd64351e173b57d7c59061c69972d2de77fb98f2f440c1be42b37e1ac04f57c60fbb79f8fd3e9e5695360add560c37e2d584db - languageName: node - linkType: hard - -"@hapi/hoek@npm:9.x.x": - version: 9.3.0 - resolution: "@hapi/hoek@npm:9.3.0" - checksum: 10c0/a096063805051fb8bba4c947e293c664b05a32b47e13bc654c0dd43813a1cec993bdd8f29ceb838020299e1d0f89f68dc0d62a603c13c9cc8541963f0beca055 - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.5.0": - version: 0.5.0 - resolution: "@humanwhocodes/config-array@npm:0.5.0" - dependencies: - "@humanwhocodes/object-schema": "npm:^1.2.0" - debug: "npm:^4.1.1" - minimatch: "npm:^3.0.4" - checksum: 10c0/217fac9e03492361825a2bf761d4bb7ec6d10002a10f7314142245eb13ac9d123523d24d5619c3c4159af215c7b3e583ed386108e227014bef4efbf9caca8ccc - languageName: node - linkType: hard - -"@humanwhocodes/object-schema@npm:^1.2.0": - version: 1.2.1 - resolution: "@humanwhocodes/object-schema@npm:1.2.1" - checksum: 10c0/c3c35fdb70c04a569278351c75553e293ae339684ed75895edc79facc7276e351115786946658d78133130c0cca80e57e2203bc07f8fa7fe7980300e8deef7db - languageName: node - linkType: hard - -"@isaacs/cliui@npm:^8.0.2": - version: 8.0.2 - resolution: "@isaacs/cliui@npm:8.0.2" - dependencies: - string-width: "npm:^5.1.2" - string-width-cjs: "npm:string-width@^4.2.0" - strip-ansi: "npm:^7.0.1" - strip-ansi-cjs: "npm:strip-ansi@^6.0.1" - wrap-ansi: "npm:^8.1.0" - wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" - checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e - languageName: node - linkType: hard - -"@lezer/common@npm:^1.0.0": - version: 1.0.2 - resolution: "@lezer/common@npm:1.0.2" - checksum: 10c0/21e3c254784888cfc8dbd2842884733344fa848a267bba4a5cb3cda865978004f816284f93dc2a947f1315c6888c8f9555a45fb006ab108b971b6664c1a943cb - languageName: node - linkType: hard - -"@lezer/css@npm:^1.0.0": - version: 1.1.1 - resolution: "@lezer/css@npm:1.1.1" - dependencies: - "@lezer/highlight": "npm:^1.0.0" - "@lezer/lr": "npm:^1.0.0" - checksum: 10c0/120ffa723a7a32af64236d10bc9efdd400477af87b4edeb1d187f5a6f387eb8206488e3cdbbd84be5e77a9f4cb61415ead7c9e686faf44f2b2b095621b7c5492 - languageName: node - linkType: hard - -"@lezer/highlight@npm:^1.0.0": - version: 1.1.3 - resolution: "@lezer/highlight@npm:1.1.3" - dependencies: - "@lezer/common": "npm:^1.0.0" - checksum: 10c0/05c628cab07c9ae3c146b1e2bc8e3dec4622d5091e9b7927347e973578d2a8f2ba20d3c4f0f638ee5edb935b44c1f190aa56a24743fb80ac08d856476fd81c27 - languageName: node - linkType: hard - -"@lezer/lr@npm:^1.0.0": - version: 1.3.3 - resolution: "@lezer/lr@npm:1.3.3" - dependencies: - "@lezer/common": "npm:^1.0.0" - checksum: 10c0/4db9900036359ea30cf54527f310af3ca720d0dbb02bf621f4a7e93b0fc805d069526f7201111625e68ff01c62e0e0c71ae435a061bbe79770d1ad2b0e1f96fb - languageName: node - linkType: hard - -"@napi-rs/triples@npm:1.0.3": - version: 1.0.3 - resolution: "@napi-rs/triples@npm:1.0.3" - checksum: 10c0/354878fd2a659adbe9a529afd57591424fdb42303b0a6213bc5f5e2280c4bcca6c41f4558f40472079e4041df032e38c78b3ce3ce4ac0ebac5f5a1301e617cb6 - languageName: node - linkType: hard - -"@next/env@npm:12.0.7": - version: 12.0.7 - resolution: "@next/env@npm:12.0.7" - checksum: 10c0/a47332610eddedb9988bfb646c425b0af2251e66d9cd8fc3a2c22322db99abf8cfc766eebb5c9017da634ce7014a3d51f1dc71c9fa6d4c0f1e41e19f47fc53c2 - languageName: node - linkType: hard - -"@next/eslint-plugin-next@npm:12.0.7": - version: 12.0.7 - resolution: "@next/eslint-plugin-next@npm:12.0.7" - dependencies: - glob: "npm:7.1.7" - checksum: 10c0/5f22c94d087aece043cb24deefa180610c5dc1dd06781ac742f8397b06a47efa0a84a0a5e4d3b70b4aa5e7d67a8e288bf2c6c759992e9d17a446271b01159c3b - languageName: node - linkType: hard - -"@next/polyfill-module@npm:12.0.7": - version: 12.0.7 - resolution: "@next/polyfill-module@npm:12.0.7" - checksum: 10c0/4a6ad37b22e6654cd660d2968f239d74166bbd26d75fce2a9a049baee0c56bcfba8327e33663ee6ae3be2ae4ccd38f479c0f0e89c9b23a6ffa3b1eb6fee69dd9 - languageName: node - linkType: hard - -"@next/react-dev-overlay@npm:12.0.7": - version: 12.0.7 - resolution: "@next/react-dev-overlay@npm:12.0.7" - dependencies: - "@babel/code-frame": "npm:7.12.11" - anser: "npm:1.4.9" - chalk: "npm:4.0.0" - classnames: "npm:2.2.6" - css.escape: "npm:1.5.1" - data-uri-to-buffer: "npm:3.0.1" - platform: "npm:1.3.6" - shell-quote: "npm:1.7.3" - source-map: "npm:0.8.0-beta.0" - stacktrace-parser: "npm:0.1.10" - strip-ansi: "npm:6.0.1" - peerDependencies: - react: ^17.0.2 - react-dom: ^17.0.2 - webpack: ^4 || ^5 - peerDependenciesMeta: - webpack: - optional: true - checksum: 10c0/2cd3959fc2cda3aa376394b289af630e759d649e684262733cf0e2e996ea8246b8b7be796083af99c7855fde4f19b225f06d09b8085902136da6b5f58b4e0b5d - languageName: node - linkType: hard - -"@next/react-refresh-utils@npm:12.0.7": - version: 12.0.7 - resolution: "@next/react-refresh-utils@npm:12.0.7" - peerDependencies: - react-refresh: 0.8.3 - webpack: ^4 || ^5 - peerDependenciesMeta: - webpack: - optional: true - checksum: 10c0/37beb802f843bc6c4dc05d84650f21afbd3392ca8d2fccaa03f1645da693d92259fb58b9ce4f3ea02a843be421e8f126be6ab6f2eb65c7110b343ec27944d947 - languageName: node - linkType: hard - -"@next/swc-android-arm64@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-android-arm64@npm:12.0.7" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-darwin-arm64@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-darwin-arm64@npm:12.0.7" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-darwin-x64@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-darwin-x64@npm:12.0.7" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-linux-arm-gnueabihf@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-linux-arm-gnueabihf@npm:12.0.7" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@next/swc-linux-arm64-gnu@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-linux-arm64-gnu@npm:12.0.7" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-linux-arm64-musl@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-linux-arm64-musl@npm:12.0.7" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-linux-x64-gnu@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-linux-x64-gnu@npm:12.0.7" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-linux-x64-musl@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-linux-x64-musl@npm:12.0.7" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-win32-arm64-msvc@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-win32-arm64-msvc@npm:12.0.7" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-win32-ia32-msvc@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-win32-ia32-msvc@npm:12.0.7" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@next/swc-win32-x64-msvc@npm:12.0.7": - version: 12.0.7 - resolution: "@next/swc-win32-x64-msvc@npm:12.0.7" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@nodelib/fs.scandir@npm:2.1.5": - version: 2.1.5 - resolution: "@nodelib/fs.scandir@npm:2.1.5" - dependencies: - "@nodelib/fs.stat": "npm:2.0.5" - run-parallel: "npm:^1.1.9" - checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb - languageName: node - linkType: hard - -"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": - version: 2.0.5 - resolution: "@nodelib/fs.stat@npm:2.0.5" - checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d - languageName: node - linkType: hard - -"@nodelib/fs.walk@npm:^1.2.3": - version: 1.2.8 - resolution: "@nodelib/fs.walk@npm:1.2.8" - dependencies: - "@nodelib/fs.scandir": "npm:2.1.5" - fastq: "npm:^1.6.0" - checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 - languageName: node - linkType: hard - -"@npmcli/agent@npm:^2.0.0": - version: 2.2.2 - resolution: "@npmcli/agent@npm:2.2.2" - dependencies: - agent-base: "npm:^7.1.0" - http-proxy-agent: "npm:^7.0.0" - https-proxy-agent: "npm:^7.0.1" - lru-cache: "npm:^10.0.1" - socks-proxy-agent: "npm:^8.0.3" - checksum: 10c0/325e0db7b287d4154ecd164c0815c08007abfb07653cc57bceded17bb7fd240998a3cbdbe87d700e30bef494885eccc725ab73b668020811d56623d145b524ae - languageName: node - linkType: hard - -"@npmcli/fs@npm:^3.1.0": - version: 3.1.0 - resolution: "@npmcli/fs@npm:3.1.0" - dependencies: - semver: "npm:^7.3.5" - checksum: 10c0/162b4a0b8705cd6f5c2470b851d1dc6cd228c86d2170e1769d738c1fbb69a87160901411c3c035331e9e99db72f1f1099a8b734bf1637cc32b9a5be1660e4e1e - languageName: node - linkType: hard - -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd - languageName: node - linkType: hard - -"@radix-ui/number@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/number@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - checksum: 10c0/729299eb261e41e93625a5e1af25dacb212186da620307bbb7c0235ac2c4678605b0285ab297a38c69ecf084d10badbbe85f66c4deaa620edfcd2e45d8028261 - languageName: node - linkType: hard - -"@radix-ui/primitive@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/primitive@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - checksum: 10c0/bfd7a89d3826cb93ecd9d50d104da09305332c11f6bffa63d5bf5c842bb8a6ba37cff08a45d306402b4726eb3c0a1807bd60ae029bf63e1c8ff24b7e94366fa0 - languageName: node - linkType: hard - -"@radix-ui/react-checkbox@npm:^0.1.4": - version: 0.1.5 - resolution: "@radix-ui/react-checkbox@npm:0.1.5" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/primitive": "npm:0.1.0" - "@radix-ui/react-compose-refs": "npm:0.1.0" - "@radix-ui/react-context": "npm:0.1.1" - "@radix-ui/react-label": "npm:0.1.5" - "@radix-ui/react-presence": "npm:0.1.2" - "@radix-ui/react-primitive": "npm:0.1.4" - "@radix-ui/react-use-controllable-state": "npm:0.1.0" - "@radix-ui/react-use-previous": "npm:0.1.1" - "@radix-ui/react-use-size": "npm:0.1.1" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/b320522844d80ce439424701ef9f64ecf8b7ab201238f85db198f612c0ccf85a69d7a9df5dd9c6f9c26d421dc2c0614e676e59fb38d1123261ecc2f54e8bc91e - languageName: node - linkType: hard - -"@radix-ui/react-collection@npm:0.1.4": - version: 0.1.4 - resolution: "@radix-ui/react-collection@npm:0.1.4" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-compose-refs": "npm:0.1.0" - "@radix-ui/react-context": "npm:0.1.1" - "@radix-ui/react-primitive": "npm:0.1.4" - "@radix-ui/react-slot": "npm:0.1.2" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/d5d9cd52d7dc2c31fb8f85829757439819d5d4b54d5b2a461aac8820b0aff8e6fb86a48695cd15eccc040a58397689d02925d989c205859a18fe102988e80452 - languageName: node - linkType: hard - -"@radix-ui/react-compose-refs@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/react-compose-refs@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/e049e82f48dd2db6439f2047fd0831166bd4792f93648090c3849ce9643cfd13d7e178cf504b564ecc8dcf23f5f814d5cf18f1e0d232e847a399a1a049a336da - languageName: node - linkType: hard - -"@radix-ui/react-context@npm:0.1.1": - version: 0.1.1 - resolution: "@radix-ui/react-context@npm:0.1.1" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/b857f62a7c838140eac44a044aa38e9380b0caabbfe71ee0531bebda7b8f02c9ced95e7b157f23721c94d8f3de2f1c3d2e1836e7ba9874d894f831c37f7a0939 - languageName: node - linkType: hard - -"@radix-ui/react-icons@npm:^1.0.3": - version: 1.2.0 - resolution: "@radix-ui/react-icons@npm:1.2.0" - peerDependencies: - react: ^16.x || ^17.x || ^18.x - checksum: 10c0/f0761fe34eb44e22647edd438e80f1b1c8c6b9e84945c6370cc76c233c962cfad4a6e17f2f784720623ac3563e49dd80d5855eb5790c78f4c7bb634e37acc5e7 - languageName: node - linkType: hard - -"@radix-ui/react-id@npm:0.1.5": - version: 0.1.5 - resolution: "@radix-ui/react-id@npm:0.1.5" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-use-layout-effect": "npm:0.1.0" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/26b0744c17b6bdd7029de7e858db8d6b276a0009e7bbd0e359c0c104088656d212a8474a0473e0490bef130a1e1aa15479be7892eb050b96300c1fce4a010a0b - languageName: node - linkType: hard - -"@radix-ui/react-label@npm:0.1.5": - version: 0.1.5 - resolution: "@radix-ui/react-label@npm:0.1.5" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-compose-refs": "npm:0.1.0" - "@radix-ui/react-context": "npm:0.1.1" - "@radix-ui/react-id": "npm:0.1.5" - "@radix-ui/react-primitive": "npm:0.1.4" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/d277c51d2fdf7dcc3714dc4cbcd3fd07eeaf9f9c39ed1b23e321ca2c08dccafbcac6a680fe2dcb068176eb20d4e9a62fdd3c659282b394efa89a5dee4759f285 - languageName: node - linkType: hard - -"@radix-ui/react-presence@npm:0.1.2": - version: 0.1.2 - resolution: "@radix-ui/react-presence@npm:0.1.2" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-compose-refs": "npm:0.1.0" - "@radix-ui/react-use-layout-effect": "npm:0.1.0" - peerDependencies: - react: ">=16.8" - checksum: 10c0/3db25704da4a13e19ee76f8f15ffaba55616a61d56f7ff698d904831e9907a35333a8c9c3f7a590089520450c9b1ad99d9774c4f1946fa91d124c39f1154b75f - languageName: node - linkType: hard - -"@radix-ui/react-primitive@npm:0.1.4": - version: 0.1.4 - resolution: "@radix-ui/react-primitive@npm:0.1.4" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-slot": "npm:0.1.2" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/d19832f50586aab57522392ac2455de383d5e80fd0d7f21b081c4f060cac4c23969c618483fc36929610c374e328a1decf655487708954401b856ecff088916c - languageName: node - linkType: hard - -"@radix-ui/react-separator@npm:^0.1.3": - version: 0.1.4 - resolution: "@radix-ui/react-separator@npm:0.1.4" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-primitive": "npm:0.1.4" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/2bd1fad71803e5cd123d00a1c325bbb7705846021eb363221e150022db4d41d296b88fed3e206c7e654333612c285e5a166d872994869cb0db269b9038138415 - languageName: node - linkType: hard - -"@radix-ui/react-slider@npm:^0.1.3": - version: 0.1.4 - resolution: "@radix-ui/react-slider@npm:0.1.4" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/number": "npm:0.1.0" - "@radix-ui/primitive": "npm:0.1.0" - "@radix-ui/react-collection": "npm:0.1.4" - "@radix-ui/react-compose-refs": "npm:0.1.0" - "@radix-ui/react-context": "npm:0.1.1" - "@radix-ui/react-primitive": "npm:0.1.4" - "@radix-ui/react-use-controllable-state": "npm:0.1.0" - "@radix-ui/react-use-direction": "npm:0.1.0" - "@radix-ui/react-use-layout-effect": "npm:0.1.0" - "@radix-ui/react-use-previous": "npm:0.1.1" - "@radix-ui/react-use-size": "npm:0.1.1" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/6790515b35974f4c7fd2816dbeb8f1ed1a08699a9a300ca4fbceda2fa9ecbff4beef48d8c365aa316c34fa60b156c6fcd8b6d5c8ac25ac44fea35e0a68e7f820 - languageName: node - linkType: hard - -"@radix-ui/react-slot@npm:0.1.2": - version: 0.1.2 - resolution: "@radix-ui/react-slot@npm:0.1.2" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-compose-refs": "npm:0.1.0" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/0e5c85302070de42becdad40c77fafc9d07073a1dae486d6e9abc4894eb23a25a10baeda31e82177ddab692c7f2f2393e336c8bf2ad23b6e90884b7bd3541183 - languageName: node - linkType: hard - -"@radix-ui/react-switch@npm:^0.1.4": - version: 0.1.5 - resolution: "@radix-ui/react-switch@npm:0.1.5" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/primitive": "npm:0.1.0" - "@radix-ui/react-compose-refs": "npm:0.1.0" - "@radix-ui/react-context": "npm:0.1.1" - "@radix-ui/react-label": "npm:0.1.5" - "@radix-ui/react-primitive": "npm:0.1.4" - "@radix-ui/react-use-controllable-state": "npm:0.1.0" - "@radix-ui/react-use-previous": "npm:0.1.1" - "@radix-ui/react-use-size": "npm:0.1.1" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/663a70f37cf794d463f5270502e0e98bb06e270da06ad5a41c073055bfc526627db033f75576c6cf9ee66312bc2bfc73fe02fdd64067d4d57563a8b4c0f2257c - languageName: node - linkType: hard - -"@radix-ui/react-toggle@npm:^0.1.3": - version: 0.1.4 - resolution: "@radix-ui/react-toggle@npm:0.1.4" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/primitive": "npm:0.1.0" - "@radix-ui/react-primitive": "npm:0.1.4" - "@radix-ui/react-use-controllable-state": "npm:0.1.0" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/af5b9642c2967a2efcd43bbca14bbebe7c3024e9a6d82e0a6457a653566fe8e0b90a1a04ae0ddd36549a312792c38e1e17565846c855da84bbd27a21dba1ad0b - languageName: node - linkType: hard - -"@radix-ui/react-use-callback-ref@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/react-use-callback-ref@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/2e73a0e2857d27b443df0c51d27b28f5d368794d0560b45bfee4d2f73faeaeac0be3c6155bd61a2c0e422361964fe4afe3864820fa35fe3de99d404e30422131 - languageName: node - linkType: hard - -"@radix-ui/react-use-controllable-state@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/react-use-controllable-state@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - "@radix-ui/react-use-callback-ref": "npm:0.1.0" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/e7dd892ccd01df6f766fae9d25e5c1d4c0ab728da19881d0142a956d267842301c18559b81b42e92fd221d1be3e237b165e076a2ffd26b022eb4e63c0a4d38b2 - languageName: node - linkType: hard - -"@radix-ui/react-use-direction@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/react-use-direction@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/660e5d6e3cbedc2a03e57ff2f8948e3d1fe49ae4e48da0f93c8e9d129ba3d8c19acab7e739183519cd64a26159e246acb9d4fd15ae39a36493cd55a811c7dd77 - languageName: node - linkType: hard - -"@radix-ui/react-use-layout-effect@npm:0.1.0": - version: 0.1.0 - resolution: "@radix-ui/react-use-layout-effect@npm:0.1.0" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/057778c0d490a3f53741369680128f1f9f7e5d8eed91e47c7f620eb42d997ad72d9315d394aedae23d90dcd196fa6b15ad3ac70c1885520b8a00cfd77b2bd584 - languageName: node - linkType: hard - -"@radix-ui/react-use-previous@npm:0.1.1": - version: 0.1.1 - resolution: "@radix-ui/react-use-previous@npm:0.1.1" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/690b0fd1922411e27bab9c18913e1f0fdb5e710c8a233fdb907c95e017f52cb827af6b3f0ee1a68a6f5db883d57b0809ba8274e8932094ffb1647be690d2f65c - languageName: node - linkType: hard - -"@radix-ui/react-use-size@npm:0.1.1": - version: 0.1.1 - resolution: "@radix-ui/react-use-size@npm:0.1.1" - dependencies: - "@babel/runtime": "npm:^7.13.10" - peerDependencies: - react: ^16.8 || ^17.0 - checksum: 10c0/8fabd14efaf33456f5b915d05684c9c531c36e7755e7a8fbf21c2f88310366bd5ffe5c182758a7a8c33cb45d1e6e5a8825675732d77eb22f25847ad48b82dadb - languageName: node - linkType: hard - -"@rushstack/eslint-patch@npm:^1.0.8": - version: 1.2.0 - resolution: "@rushstack/eslint-patch@npm:1.2.0" - checksum: 10c0/96c7622ab54b759f9aca2b03ba98acdfae39adb8c7a97b429a8f5c90adb49cc2c38db894c9a02f4ad8088f132575146c091c15b1f10ed34026ffd2491930c3a4 - languageName: node - linkType: hard - -"@stitches/react@npm:^1.2.6": - version: 1.2.8 - resolution: "@stitches/react@npm:1.2.8" - peerDependencies: - react: ">= 16.3.0" - checksum: 10c0/d9c03cd88ac25edc493b23a1359f36aa9a497d13bb7a833204d8228b09b6227c1a8ea22e946312ca605f7819fbdd3c49d5f8a5f14b2801c9a31d36172d7f60ac - languageName: node - linkType: hard - -"@types/json5@npm:^0.0.29": - version: 0.0.29 - resolution: "@types/json5@npm:0.0.29" - checksum: 10c0/6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac - languageName: node - linkType: hard - -"@types/node@npm:*": - version: 18.14.0 - resolution: "@types/node@npm:18.14.0" - checksum: 10c0/c4b19a3e0a5d97fea4e70edffc095455aec4662883a9fc4bea5d39808995989a58501f2c7e716cfdefe82bc00edeaa93a40ede2a69c9459bd86ad61adab35c55 - languageName: node - linkType: hard - -"@typescript-eslint/parser@npm:^5.0.0": - version: 5.52.0 - resolution: "@typescript-eslint/parser@npm:5.52.0" - dependencies: - "@typescript-eslint/scope-manager": "npm:5.52.0" - "@typescript-eslint/types": "npm:5.52.0" - "@typescript-eslint/typescript-estree": "npm:5.52.0" - debug: "npm:^4.3.4" - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/2405ba68e31100041801f01c8545efb68c36e9220074222960fd3dfbddee0dcb1fb226d18b8975bcb266c4f86c0d7b652f5b8a0f45d62ea3f43e39f43fcbd344 - languageName: node - linkType: hard - -"@typescript-eslint/scope-manager@npm:5.52.0": - version: 5.52.0 - resolution: "@typescript-eslint/scope-manager@npm:5.52.0" - dependencies: - "@typescript-eslint/types": "npm:5.52.0" - "@typescript-eslint/visitor-keys": "npm:5.52.0" - checksum: 10c0/de9852ba7935822cc3a2e451a5aad56972e21e7c14884297b78da03ca5b73ee57653962fcb12ac1326c29f835524560548126faa14be657097f307514f24dd2b - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:5.52.0": - version: 5.52.0 - resolution: "@typescript-eslint/types@npm:5.52.0" - checksum: 10c0/726c8fbf7809725f336f4bec30ea51bd45694d38b179025238a6979df18ff9ded08ea6ec624ea8dd2dcfdeddc573f1ceae9ee403583dfcce897e4bda11ca9ffb - languageName: node - linkType: hard - -"@typescript-eslint/typescript-estree@npm:5.52.0": - version: 5.52.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.52.0" - dependencies: - "@typescript-eslint/types": "npm:5.52.0" - "@typescript-eslint/visitor-keys": "npm:5.52.0" - debug: "npm:^4.3.4" - globby: "npm:^11.1.0" - is-glob: "npm:^4.0.3" - semver: "npm:^7.3.7" - tsutils: "npm:^3.21.0" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/722bcbdcf3ad708b9d7f8ee484600da731073be4f71a7a3278d7705b1ff5cbc56c39d56c37d1f482bcbc62324437a8b27580203ddee49a1316d9887b97fda59d - languageName: node - linkType: hard - -"@typescript-eslint/visitor-keys@npm:5.52.0": - version: 5.52.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.52.0" - dependencies: - "@typescript-eslint/types": "npm:5.52.0" - eslint-visitor-keys: "npm:^3.3.0" - checksum: 10c0/a351fdab8c555c4e25bfbaeef11d29da61a8b4d23c4caaefb656ea8e94a74f473460b53a6d74842f853948b0fec085aa4bc3494362de2c2d8a0b92d99274269b - languageName: node - linkType: hard - -"@uiw/codemirror-extensions-basic-setup@npm:4.19.9": - version: 4.19.9 - resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.19.9" - dependencies: - "@codemirror/autocomplete": "npm:^6.0.0" - "@codemirror/commands": "npm:^6.0.0" - "@codemirror/language": "npm:^6.0.0" - "@codemirror/lint": "npm:^6.0.0" - "@codemirror/search": "npm:^6.0.0" - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.0.0" - peerDependencies: - "@codemirror/autocomplete": ">=6.0.0" - "@codemirror/commands": ">=6.0.0" - "@codemirror/language": ">=6.0.0" - "@codemirror/lint": ">=6.0.0" - "@codemirror/search": ">=6.0.0" - "@codemirror/state": ">=6.0.0" - "@codemirror/view": ">=6.0.0" - checksum: 10c0/20788de9b933fc6b4963c15ee15c94108f83caf46fdc24a1ead709d4cc782de479ef26af79a07ef5aa1b220c0cd440a207daf1886ef05a386b62106a0b4690a7 - languageName: node - linkType: hard - -"@uiw/react-codemirror@npm:^4.19.6": - version: 4.19.9 - resolution: "@uiw/react-codemirror@npm:4.19.9" - dependencies: - "@babel/runtime": "npm:^7.18.6" - "@codemirror/commands": "npm:^6.1.0" - "@codemirror/state": "npm:^6.1.1" - "@codemirror/theme-one-dark": "npm:^6.0.0" - "@uiw/codemirror-extensions-basic-setup": "npm:4.19.9" - codemirror: "npm:^6.0.0" - peerDependencies: - "@babel/runtime": ">=7.11.0" - "@codemirror/state": ">=6.0.0" - "@codemirror/theme-one-dark": ">=6.0.0" - "@codemirror/view": ">=6.0.0" - codemirror: ">=6.0.0" - react: ">=16.8.0" - react-dom: ">=16.8.0" - checksum: 10c0/1fefbb2dafe74ee30af099331a10f08e6430f5f6cd48f4da440b669c16d6204e369d12b86c650eff9e749ca15a48b4f8851937c437e9b886bb370fa476a26e20 - languageName: node - linkType: hard - -"abbrev@npm:^2.0.0": - version: 2.0.0 - resolution: "abbrev@npm:2.0.0" - checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372 - languageName: node - linkType: hard - -"acorn-jsx@npm:^5.3.1": - version: 5.3.2 - resolution: "acorn-jsx@npm:5.3.2" - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 - languageName: node - linkType: hard - -"acorn-node@npm:^1.8.2": - version: 1.8.2 - resolution: "acorn-node@npm:1.8.2" - dependencies: - acorn: "npm:^7.0.0" - acorn-walk: "npm:^7.0.0" - xtend: "npm:^4.0.2" - checksum: 10c0/e9a20dae515701cd3d03812929a7f74c4363fdcb4c74d762f7c43566dc87175ad817aa281ba11c88dabf5e8d35aec590073393c02a04bbdcfda58c2f320d08ac - languageName: node - linkType: hard - -"acorn-walk@npm:^7.0.0": - version: 7.2.0 - resolution: "acorn-walk@npm:7.2.0" - checksum: 10c0/ff99f3406ed8826f7d6ef6ac76b7608f099d45a1ff53229fa267125da1924188dbacf02e7903dfcfd2ae4af46f7be8847dc7d564c73c4e230dfb69c8ea8e6b4c - languageName: node - linkType: hard - -"acorn@npm:8.5.0": - version: 8.5.0 - resolution: "acorn@npm:8.5.0" - bin: - acorn: bin/acorn - checksum: 10c0/a0cd0009d215df0c5a6c69ea40a5e784114f1b89d5649d663264ccbb855d4c6b6da6936fed607078b7d681bd8d8f2e730dad25931edbdef709bc4b520c0caa80 - languageName: node - linkType: hard - -"acorn@npm:^7.0.0, acorn@npm:^7.4.0": - version: 7.4.1 - resolution: "acorn@npm:7.4.1" - bin: - acorn: bin/acorn - checksum: 10c0/bd0b2c2b0f334bbee48828ff897c12bd2eb5898d03bf556dcc8942022cec795ac5bb5b6b585e2de687db6231faf07e096b59a361231dd8c9344d5df5f7f0e526 - languageName: node - linkType: hard - -"agent-base@npm:^7.0.2, agent-base@npm:^7.1.0, agent-base@npm:^7.1.1": - version: 7.1.1 - resolution: "agent-base@npm:7.1.1" - dependencies: - debug: "npm:^4.3.4" - checksum: 10c0/e59ce7bed9c63bf071a30cc471f2933862044c97fd9958967bfe22521d7a0f601ce4ed5a8c011799d0c726ca70312142ae193bbebb60f576b52be19d4a363b50 - languageName: node - linkType: hard - -"aggregate-error@npm:^3.0.0": - version: 3.1.0 - resolution: "aggregate-error@npm:3.1.0" - dependencies: - clean-stack: "npm:^2.0.0" - indent-string: "npm:^4.0.0" - checksum: 10c0/a42f67faa79e3e6687a4923050e7c9807db3848a037076f791d10e092677d65c1d2d863b7848560699f40fc0502c19f40963fb1cd1fb3d338a7423df8e45e039 - languageName: node - linkType: hard - -"ajv@npm:^6.10.0, ajv@npm:^6.12.4": - version: 6.12.6 - resolution: "ajv@npm:6.12.6" - dependencies: - fast-deep-equal: "npm:^3.1.1" - fast-json-stable-stringify: "npm:^2.0.0" - json-schema-traverse: "npm:^0.4.1" - uri-js: "npm:^4.2.2" - checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 - languageName: node - linkType: hard - -"ajv@npm:^8.0.1": - version: 8.12.0 - resolution: "ajv@npm:8.12.0" - dependencies: - fast-deep-equal: "npm:^3.1.1" - json-schema-traverse: "npm:^1.0.0" - require-from-string: "npm:^2.0.2" - uri-js: "npm:^4.2.2" - checksum: 10c0/ac4f72adf727ee425e049bc9d8b31d4a57e1c90da8d28bcd23d60781b12fcd6fc3d68db5df16994c57b78b94eed7988f5a6b482fd376dc5b084125e20a0a622e - languageName: node - linkType: hard - -"anser@npm:1.4.9": - version: 1.4.9 - resolution: "anser@npm:1.4.9" - checksum: 10c0/93a07fae9886b7bde4b30964266b34fba76930f6bb0a7e4d9d12668035175671f3a78403090a5ce9e1a8fb8546b5de039026b6e432eaed7382bcb1be0474cfda - languageName: node - linkType: hard - -"ansi-colors@npm:^4.1.1": - version: 4.1.3 - resolution: "ansi-colors@npm:4.1.3" - checksum: 10c0/ec87a2f59902f74e61eada7f6e6fe20094a628dab765cfdbd03c3477599368768cffccdb5d3bb19a1b6c99126783a143b1fee31aab729b31ffe5836c7e5e28b9 - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 - languageName: node - linkType: hard - -"ansi-regex@npm:^6.0.1": - version: 6.0.1 - resolution: "ansi-regex@npm:6.0.1" - checksum: 10c0/cbe16dbd2c6b2735d1df7976a7070dd277326434f0212f43abf6d87674095d247968209babdaad31bb00882fa68807256ba9be340eec2f1004de14ca75f52a08 - languageName: node - linkType: hard - -"ansi-styles@npm:^3.2.1": - version: 3.2.1 - resolution: "ansi-styles@npm:3.2.1" - dependencies: - color-convert: "npm:^1.9.0" - checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b - languageName: node - linkType: hard - -"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: "npm:^2.0.1" - checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 - languageName: node - linkType: hard - -"ansi-styles@npm:^6.1.0": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c - languageName: node - linkType: hard - -"anymatch@npm:~3.1.1, anymatch@npm:~3.1.2": - version: 3.1.3 - resolution: "anymatch@npm:3.1.3" - dependencies: - normalize-path: "npm:^3.0.0" - picomatch: "npm:^2.0.4" - checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac - languageName: node - linkType: hard - -"arg@npm:^5.0.2": - version: 5.0.2 - resolution: "arg@npm:5.0.2" - checksum: 10c0/ccaf86f4e05d342af6666c569f844bec426595c567d32a8289715087825c2ca7edd8a3d204e4d2fb2aa4602e09a57d0c13ea8c9eea75aac3dbb4af5514e6800e - languageName: node - linkType: hard - -"argparse@npm:^1.0.7": - version: 1.0.10 - resolution: "argparse@npm:1.0.10" - dependencies: - sprintf-js: "npm:~1.0.2" - checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de - languageName: node - linkType: hard - -"aria-query@npm:^5.1.3": - version: 5.1.3 - resolution: "aria-query@npm:5.1.3" - dependencies: - deep-equal: "npm:^2.0.5" - checksum: 10c0/edcbc8044c4663d6f88f785e983e6784f98cb62b4ba1e9dd8d61b725d0203e4cfca38d676aee984c31f354103461102a3d583aa4fbe4fd0a89b679744f4e5faf - languageName: node - linkType: hard - -"array-includes@npm:^3.1.5, array-includes@npm:^3.1.6": - version: 3.1.6 - resolution: "array-includes@npm:3.1.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - get-intrinsic: "npm:^1.1.3" - is-string: "npm:^1.0.7" - checksum: 10c0/d0caeaa57bea7d14b8480daee30cf8611899321006b15a6cd872b831bd7aaed7649f8764e060d01c5d33b8d9e998e5de5c87f4901874e1c1f467f429b7db2929 - languageName: node - linkType: hard - -"array-union@npm:^2.1.0": - version: 2.1.0 - resolution: "array-union@npm:2.1.0" - checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 - languageName: node - linkType: hard - -"array.prototype.flat@npm:^1.3.1": - version: 1.3.1 - resolution: "array.prototype.flat@npm:1.3.1" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - es-shim-unscopables: "npm:^1.0.0" - checksum: 10c0/8eda91d6925cc84b73ebf5a3d406ff28745d93a22ef6a0afb967755107081a937cf6c4555d3c18354870b2c5366c0ff51b3f597c11079e689869810a418b1b4f - languageName: node - linkType: hard - -"array.prototype.flatmap@npm:^1.3.1": - version: 1.3.1 - resolution: "array.prototype.flatmap@npm:1.3.1" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - es-shim-unscopables: "npm:^1.0.0" - checksum: 10c0/2bd58a0e79d5d90cb4f5ef0e287edf8b28e87c65428f54025ac6b7b4c204224b92811c266f296c53a2dbc93872117c0fcea2e51d3c9e8cecfd5024d4a4a57db4 - languageName: node - linkType: hard - -"array.prototype.tosorted@npm:^1.1.1": - version: 1.1.1 - resolution: "array.prototype.tosorted@npm:1.1.1" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - es-shim-unscopables: "npm:^1.0.0" - get-intrinsic: "npm:^1.1.3" - checksum: 10c0/fd5f57aca3c7ddcd1bb83965457b625f3a67d8f334f5cbdb8ac8ef33d5b0d38281524114db2936f8c08048115d5158af216c94e6ae1eb966241b9b6f4ab8a7e8 - languageName: node - linkType: hard - -"asn1.js@npm:^5.2.0": - version: 5.4.1 - resolution: "asn1.js@npm:5.4.1" - dependencies: - bn.js: "npm:^4.0.0" - inherits: "npm:^2.0.1" - minimalistic-assert: "npm:^1.0.0" - safer-buffer: "npm:^2.1.0" - checksum: 10c0/b577232fa6069cc52bb128e564002c62b2b1fe47f7137bdcd709c0b8495aa79cee0f8cc458a831b2d8675900eea0d05781b006be5e1aa4f0ae3577a73ec20324 - languageName: node - linkType: hard - -"assert@npm:2.0.0": - version: 2.0.0 - resolution: "assert@npm:2.0.0" - dependencies: - es6-object-assign: "npm:^1.1.0" - is-nan: "npm:^1.2.1" - object-is: "npm:^1.0.1" - util: "npm:^0.12.0" - checksum: 10c0/a25c7ebc07b52cc4dadd5c46d73472e7d4b86e40eb7ebaa12f78c1ba954dbe83612be5dea314b862fc364c305ab3bdbcd1c9d4ec2d92bc37214ae7d5596347f3 - languageName: node - linkType: hard - -"ast-types-flow@npm:^0.0.7": - version: 0.0.7 - resolution: "ast-types-flow@npm:0.0.7" - checksum: 10c0/f381529f2da535949ba6cceddbdfaa33b4d5105842e147ec63582f560ea9ecc1a08f66457664f3109841d3053641fa8b9fa94ba607f1ea9f6c804fe5dee44a1d - languageName: node - linkType: hard - -"astral-regex@npm:^2.0.0": - version: 2.0.0 - resolution: "astral-regex@npm:2.0.0" - checksum: 10c0/f63d439cc383db1b9c5c6080d1e240bd14dae745f15d11ec5da863e182bbeca70df6c8191cffef5deba0b566ef98834610a68be79ac6379c95eeb26e1b310e25 - languageName: node - linkType: hard - -"autoprefixer@npm:^10.4.1": - version: 10.4.13 - resolution: "autoprefixer@npm:10.4.13" - dependencies: - browserslist: "npm:^4.21.4" - caniuse-lite: "npm:^1.0.30001426" - fraction.js: "npm:^4.2.0" - normalize-range: "npm:^0.1.2" - picocolors: "npm:^1.0.0" - postcss-value-parser: "npm:^4.2.0" - peerDependencies: - postcss: ^8.1.0 - bin: - autoprefixer: bin/autoprefixer - checksum: 10c0/55ef1feb555516f68c740b3a0050d89b663c4a806a52ff23b184869ddf511b561fa56d66b2adb533bfef3798aee87b31132474582968d84fa59da133f837a230 - languageName: node - linkType: hard - -"available-typed-arrays@npm:^1.0.5": - version: 1.0.5 - resolution: "available-typed-arrays@npm:1.0.5" - checksum: 10c0/c4df567ca72d2754a6cbad20088f5f98b1065b3360178169fa9b44ea101af62c0f423fc3854fa820fd6895b6b9171b8386e71558203103ff8fc2ad503fdcc660 - languageName: node - linkType: hard - -"axe-core@npm:^4.6.2": - version: 4.6.3 - resolution: "axe-core@npm:4.6.3" - checksum: 10c0/b26ee77b5c1f9c399a4ed5dadf82c5302fd70326f36b68f5023a57b7ec213d5db126aade0a2cd2866b9563e213192f4257bc5dc35edebb10a73f90155baa39da - languageName: node - linkType: hard - -"axobject-query@npm:^3.1.1": - version: 3.1.1 - resolution: "axobject-query@npm:3.1.1" - dependencies: - deep-equal: "npm:^2.0.5" - checksum: 10c0/fff3175a22fd1f41fceb7ae0cd25f6594a0d7fba28c2335dd904538b80eb4e1040432564a3c643025cd2bb748f68d35aaabffb780b794da97ecfc748810b25ad - languageName: node - linkType: hard - -"balanced-match@npm:^1.0.0": - version: 1.0.2 - resolution: "balanced-match@npm:1.0.2" - checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee - languageName: node - linkType: hard - -"base64-js@npm:^1.0.2": - version: 1.5.1 - resolution: "base64-js@npm:1.5.1" - checksum: 10c0/f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf - languageName: node - linkType: hard - -"big.js@npm:^5.2.2": - version: 5.2.2 - resolution: "big.js@npm:5.2.2" - checksum: 10c0/230520f1ff920b2d2ce3e372d77a33faa4fa60d802fe01ca4ffbc321ee06023fe9a741ac02793ee778040a16b7e497f7d60c504d1c402b8fdab6f03bb785a25f - languageName: node - linkType: hard - -"binary-extensions@npm:^2.0.0": - version: 2.2.0 - resolution: "binary-extensions@npm:2.2.0" - checksum: 10c0/d73d8b897238a2d3ffa5f59c0241870043aa7471335e89ea5e1ff48edb7c2d0bb471517a3e4c5c3f4c043615caa2717b5f80a5e61e07503d51dc85cb848e665d - languageName: node - linkType: hard - -"bn.js@npm:^4.0.0, bn.js@npm:^4.1.0, bn.js@npm:^4.11.9": - version: 4.12.0 - resolution: "bn.js@npm:4.12.0" - checksum: 10c0/9736aaa317421b6b3ed038ff3d4491935a01419ac2d83ddcfebc5717385295fcfcf0c57311d90fe49926d0abbd7a9dbefdd8861e6129939177f7e67ebc645b21 - languageName: node - linkType: hard - -"bn.js@npm:^5.0.0, bn.js@npm:^5.1.1": - version: 5.2.1 - resolution: "bn.js@npm:5.2.1" - checksum: 10c0/bed3d8bd34ec89dbcf9f20f88bd7d4a49c160fda3b561c7bb227501f974d3e435a48fb9b61bc3de304acab9215a3bda0803f7017ffb4d0016a0c3a740a283caa - languageName: node - linkType: hard - -"brace-expansion@npm:^1.1.7": - version: 1.1.11 - resolution: "brace-expansion@npm:1.1.11" - dependencies: - balanced-match: "npm:^1.0.0" - concat-map: "npm:0.0.1" - checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668 - languageName: node - linkType: hard - -"brace-expansion@npm:^2.0.1": - version: 2.0.1 - resolution: "brace-expansion@npm:2.0.1" - dependencies: - balanced-match: "npm:^1.0.0" - checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f - languageName: node - linkType: hard - -"braces@npm:^3.0.2, braces@npm:~3.0.2": - version: 3.0.2 - resolution: "braces@npm:3.0.2" - dependencies: - fill-range: "npm:^7.0.1" - checksum: 10c0/321b4d675791479293264019156ca322163f02dc06e3c4cab33bb15cd43d80b51efef69b0930cfde3acd63d126ebca24cd0544fa6f261e093a0fb41ab9dda381 - languageName: node - linkType: hard - -"brorand@npm:^1.0.1, brorand@npm:^1.1.0": - version: 1.1.0 - resolution: "brorand@npm:1.1.0" - checksum: 10c0/6f366d7c4990f82c366e3878492ba9a372a73163c09871e80d82fb4ae0d23f9f8924cb8a662330308206e6b3b76ba1d528b4601c9ef73c2166b440b2ea3b7571 - languageName: node - linkType: hard - -"browserify-aes@npm:^1.0.0, browserify-aes@npm:^1.0.4": - version: 1.2.0 - resolution: "browserify-aes@npm:1.2.0" - dependencies: - buffer-xor: "npm:^1.0.3" - cipher-base: "npm:^1.0.0" - create-hash: "npm:^1.1.0" - evp_bytestokey: "npm:^1.0.3" - inherits: "npm:^2.0.1" - safe-buffer: "npm:^5.0.1" - checksum: 10c0/967f2ae60d610b7b252a4cbb55a7a3331c78293c94b4dd9c264d384ca93354c089b3af9c0dd023534efdc74ffbc82510f7ad4399cf82bc37bc07052eea485f18 - languageName: node - linkType: hard - -"browserify-cipher@npm:^1.0.0": - version: 1.0.1 - resolution: "browserify-cipher@npm:1.0.1" - dependencies: - browserify-aes: "npm:^1.0.4" - browserify-des: "npm:^1.0.0" - evp_bytestokey: "npm:^1.0.0" - checksum: 10c0/aa256dcb42bc53a67168bbc94ab85d243b0a3b56109dee3b51230b7d010d9b78985ffc1fb36e145c6e4db151f888076c1cfc207baf1525d3e375cbe8187fe27d - languageName: node - linkType: hard - -"browserify-des@npm:^1.0.0": - version: 1.0.2 - resolution: "browserify-des@npm:1.0.2" - dependencies: - cipher-base: "npm:^1.0.1" - des.js: "npm:^1.0.0" - inherits: "npm:^2.0.1" - safe-buffer: "npm:^5.1.2" - checksum: 10c0/943eb5d4045eff80a6cde5be4e5fbb1f2d5002126b5a4789c3c1aae3cdddb1eb92b00fb92277f512288e5c6af330730b1dbabcf7ce0923e749e151fcee5a074d - languageName: node - linkType: hard - -"browserify-rsa@npm:^4.0.0, browserify-rsa@npm:^4.0.1": - version: 4.1.0 - resolution: "browserify-rsa@npm:4.1.0" - dependencies: - bn.js: "npm:^5.0.0" - randombytes: "npm:^2.0.1" - checksum: 10c0/fb2b5a8279d8a567a28d8ee03fb62e448428a906bab5c3dc9e9c3253ace551b5ea271db15e566ac78f1b1d71b243559031446604168b9235c351a32cae99d02a - languageName: node - linkType: hard - -"browserify-sign@npm:^4.0.0": - version: 4.2.1 - resolution: "browserify-sign@npm:4.2.1" - dependencies: - bn.js: "npm:^5.1.1" - browserify-rsa: "npm:^4.0.1" - create-hash: "npm:^1.2.0" - create-hmac: "npm:^1.1.7" - elliptic: "npm:^6.5.3" - inherits: "npm:^2.0.4" - parse-asn1: "npm:^5.1.5" - readable-stream: "npm:^3.6.0" - safe-buffer: "npm:^5.2.0" - checksum: 10c0/8f00a370e3e97060977dc58e51251d3ca398ee73523994a44430321e8de2c7d85395362d59014b2b07efe4190f369baee2ff28eb8f405ff4660b776651cf052d - languageName: node - linkType: hard - -"browserify-zlib@npm:0.2.0": - version: 0.2.0 - resolution: "browserify-zlib@npm:0.2.0" - dependencies: - pako: "npm:~1.0.5" - checksum: 10c0/9ab10b6dc732c6c5ec8ebcbe5cb7fe1467f97402c9b2140113f47b5f187b9438f93a8e065d8baf8b929323c18324fbf1105af479ee86d9d36cab7d7ef3424ad9 - languageName: node - linkType: hard - -"browserslist@npm:4.16.6": - version: 4.16.6 - resolution: "browserslist@npm:4.16.6" - dependencies: - caniuse-lite: "npm:^1.0.30001219" - colorette: "npm:^1.2.2" - electron-to-chromium: "npm:^1.3.723" - escalade: "npm:^3.1.1" - node-releases: "npm:^1.1.71" - bin: - browserslist: cli.js - checksum: 10c0/785883ec44b157f45903b52da2355f87e40dec3d888e5f3ebb559934728ca3744d6d501c5b0e696433844cdc623929f812837fdfa08455955fe01453a873543e - languageName: node - linkType: hard - -"browserslist@npm:^4.21.4": - version: 4.21.5 - resolution: "browserslist@npm:4.21.5" - dependencies: - caniuse-lite: "npm:^1.0.30001449" - electron-to-chromium: "npm:^1.4.284" - node-releases: "npm:^2.0.8" - update-browserslist-db: "npm:^1.0.10" - bin: - browserslist: cli.js - checksum: 10c0/903040d2c45b733e1177c288b4f146ff21d45e8a44ccc87d1d7fc2f6a8d021c7ee54b514fd7722529c282381969382a54bd2ab4263f5b6c8981a856b457ea162 - languageName: node - linkType: hard - -"buffer-xor@npm:^1.0.3": - version: 1.0.3 - resolution: "buffer-xor@npm:1.0.3" - checksum: 10c0/fd269d0e0bf71ecac3146187cfc79edc9dbb054e2ee69b4d97dfb857c6d997c33de391696d04bdd669272751fa48e7872a22f3a6c7b07d6c0bc31dbe02a4075c - languageName: node - linkType: hard - -"buffer@npm:5.6.0": - version: 5.6.0 - resolution: "buffer@npm:5.6.0" - dependencies: - base64-js: "npm:^1.0.2" - ieee754: "npm:^1.1.4" - checksum: 10c0/07037a0278b07fbc779920f1ba1b473933ffb4a2e2f7b387c55daf6ac64a05b58c27da9e85730a4046e8f97a49f8acd9f7bf89605c0a4dfda88ebfb7e08bfe4a - languageName: node - linkType: hard - -"builtin-status-codes@npm:^3.0.0": - version: 3.0.0 - resolution: "builtin-status-codes@npm:3.0.0" - checksum: 10c0/c37bbba11a34c4431e56bd681b175512e99147defbe2358318d8152b3a01df7bf25e0305873947e5b350073d5ef41a364a22b37e48f1fb6d2fe6d5286a0f348c - languageName: node - linkType: hard - -"bytes@npm:3.1.0": - version: 3.1.0 - resolution: "bytes@npm:3.1.0" - checksum: 10c0/7034f475b006b9a8a37c7ecaa0947d0be181feb6d3d5231984e4c14e01c587a47e0fe85f66c630689fa6a046cfa498b6891f5af8022357e52db09365f1dfb625 - languageName: node - linkType: hard - -"cacache@npm:^18.0.0": - version: 18.0.2 - resolution: "cacache@npm:18.0.2" - dependencies: - "@npmcli/fs": "npm:^3.1.0" - fs-minipass: "npm:^3.0.0" - glob: "npm:^10.2.2" - lru-cache: "npm:^10.0.1" - minipass: "npm:^7.0.3" - minipass-collect: "npm:^2.0.1" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - p-map: "npm:^4.0.0" - ssri: "npm:^10.0.0" - tar: "npm:^6.1.11" - unique-filename: "npm:^3.0.0" - checksum: 10c0/7992665305cc251a984f4fdbab1449d50e88c635bc43bf2785530c61d239c61b349e5734461baa461caaee65f040ab14e2d58e694f479c0810cffd181ba5eabc - languageName: node - linkType: hard - -"call-bind@npm:^1.0.0, call-bind@npm:^1.0.2": - version: 1.0.2 - resolution: "call-bind@npm:1.0.2" - dependencies: - function-bind: "npm:^1.1.1" - get-intrinsic: "npm:^1.0.2" - checksum: 10c0/74ba3f31e715456e22e451d8d098779b861eba3c7cac0d9b510049aced70d75c231ba05071f97e1812c98e34e2bee734c0c6126653e0088c2d9819ca047f4073 - languageName: node - linkType: hard - -"callsites@npm:^3.0.0": - version: 3.1.0 - resolution: "callsites@npm:3.1.0" - checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 - languageName: node - linkType: hard - -"camelcase-css@npm:^2.0.1": - version: 2.0.1 - resolution: "camelcase-css@npm:2.0.1" - checksum: 10c0/1a1a3137e8a781e6cbeaeab75634c60ffd8e27850de410c162cce222ea331cd1ba5364e8fb21c95e5ca76f52ac34b81a090925ca00a87221355746d049c6e273 - languageName: node - linkType: hard - -"caniuse-lite@npm:^1.0.30001202, caniuse-lite@npm:^1.0.30001219, caniuse-lite@npm:^1.0.30001228, caniuse-lite@npm:^1.0.30001426, caniuse-lite@npm:^1.0.30001449": - version: 1.0.30001527 - resolution: "caniuse-lite@npm:1.0.30001527" - checksum: 10c0/244312b3342cf27c08bea5a8b362d498a29985e37414b766017c6c2c9186bd01e264be739105cdeeb5e9bdcde1320ecdb12eade7622443647af9f88d03509774 - languageName: node - linkType: hard - -"chalk@npm:2.4.2, chalk@npm:^2.4.2": - version: 2.4.2 - resolution: "chalk@npm:2.4.2" - dependencies: - ansi-styles: "npm:^3.2.1" - escape-string-regexp: "npm:^1.0.5" - supports-color: "npm:^5.3.0" - checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 - languageName: node - linkType: hard - -"chalk@npm:4.0.0": - version: 4.0.0 - resolution: "chalk@npm:4.0.0" - dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" - checksum: 10c0/5982b6132154e086e3b15f68783778aa50be0871acb2e3f2bdde9b28f7016ca9bce4d840ea5ebf12eaf41bba5e131a5d5b528cfee512a14da40834ebbbbb37c7 - languageName: node - linkType: hard - -"chalk@npm:^4.0.0": - version: 4.1.2 - resolution: "chalk@npm:4.1.2" - dependencies: - ansi-styles: "npm:^4.1.0" - supports-color: "npm:^7.1.0" - checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 - languageName: node - linkType: hard - -"chokidar@npm:3.5.1": - version: 3.5.1 - resolution: "chokidar@npm:3.5.1" - dependencies: - anymatch: "npm:~3.1.1" - braces: "npm:~3.0.2" - fsevents: "npm:~2.3.1" - glob-parent: "npm:~5.1.0" - is-binary-path: "npm:~2.1.0" - is-glob: "npm:~4.0.1" - normalize-path: "npm:~3.0.0" - readdirp: "npm:~3.5.0" - dependenciesMeta: - fsevents: - optional: true - checksum: 10c0/894d2fdeeef6a0bc61993a20b864e29e9296f2308628b8b2edf1bef2d59ab11f21938eebbbcbf581f15d16d3e030c08860d2fb035f7b9f3baebac57049a37959 - languageName: node - linkType: hard - -"chokidar@npm:^3.5.3": - version: 3.5.3 - resolution: "chokidar@npm:3.5.3" - dependencies: - anymatch: "npm:~3.1.2" - braces: "npm:~3.0.2" - fsevents: "npm:~2.3.2" - glob-parent: "npm:~5.1.2" - is-binary-path: "npm:~2.1.0" - is-glob: "npm:~4.0.1" - normalize-path: "npm:~3.0.0" - readdirp: "npm:~3.6.0" - dependenciesMeta: - fsevents: - optional: true - checksum: 10c0/1076953093e0707c882a92c66c0f56ba6187831aa51bb4de878c1fec59ae611a3bf02898f190efec8e77a086b8df61c2b2a3ea324642a0558bdf8ee6c5dc9ca1 - languageName: node - linkType: hard - -"chownr@npm:^2.0.0": - version: 2.0.0 - resolution: "chownr@npm:2.0.0" - checksum: 10c0/594754e1303672171cc04e50f6c398ae16128eb134a88f801bf5354fd96f205320f23536a045d9abd8b51024a149696e51231565891d4efdab8846021ecf88e6 - languageName: node - linkType: hard - -"cipher-base@npm:^1.0.0, cipher-base@npm:^1.0.1, cipher-base@npm:^1.0.3": - version: 1.0.4 - resolution: "cipher-base@npm:1.0.4" - dependencies: - inherits: "npm:^2.0.1" - safe-buffer: "npm:^5.0.1" - checksum: 10c0/d8d005f8b64d8a77b3d3ce531301ae7b45902c9cab4ec8b66bdbd2bf2a1d9fceb9a2133c293eb3c060b2d964da0f14c47fb740366081338aa3795dd1faa8984b - languageName: node - linkType: hard - -"classnames@npm:2.2.6": - version: 2.2.6 - resolution: "classnames@npm:2.2.6" - checksum: 10c0/04fe84deb40e4f4fcee688494ced342b048a6992506cd3da81efb773b03f6d8120f9b893e6eb8a0bc7c6fb38edd66b4751e413ab4672ed93b2c59a4e2bd1068a - languageName: node - linkType: hard - -"clean-stack@npm:^2.0.0": - version: 2.2.0 - resolution: "clean-stack@npm:2.2.0" - checksum: 10c0/1f90262d5f6230a17e27d0c190b09d47ebe7efdd76a03b5a1127863f7b3c9aec4c3e6c8bb3a7bbf81d553d56a1fd35728f5a8ef4c63f867ac8d690109742a8c1 - languageName: node - linkType: hard - -"codemirror@npm:^6.0.0": - version: 6.0.1 - resolution: "codemirror@npm:6.0.1" - dependencies: - "@codemirror/autocomplete": "npm:^6.0.0" - "@codemirror/commands": "npm:^6.0.0" - "@codemirror/language": "npm:^6.0.0" - "@codemirror/lint": "npm:^6.0.0" - "@codemirror/search": "npm:^6.0.0" - "@codemirror/state": "npm:^6.0.0" - "@codemirror/view": "npm:^6.0.0" - checksum: 10c0/219b0f6ee91d373380fba2e0564a2665990a3cdada0b01861768005b09061187c58eeb3db96aef486777b02b77b50a50ee843635e3743c47d3725034913c4b60 - languageName: node - linkType: hard - -"color-convert@npm:^1.9.0": - version: 1.9.3 - resolution: "color-convert@npm:1.9.3" - dependencies: - color-name: "npm:1.1.3" - checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c - languageName: node - linkType: hard - -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: "npm:~1.1.4" - checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 - languageName: node - linkType: hard - -"color-name@npm:1.1.3": - version: 1.1.3 - resolution: "color-name@npm:1.1.3" - checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 - languageName: node - linkType: hard - -"color-name@npm:^1.1.4, color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 - languageName: node - linkType: hard - -"colorette@npm:^1.2.2": - version: 1.4.0 - resolution: "colorette@npm:1.4.0" - checksum: 10c0/4955c8f7daafca8ae7081d672e4bd89d553bd5782b5846d5a7e05effe93c2f15f7e9c0cb46f341b59f579a39fcf436241ff79594899d75d5f3460c03d607fe9e - languageName: node - linkType: hard - -"commondir@npm:^1.0.1": - version: 1.0.1 - resolution: "commondir@npm:1.0.1" - checksum: 10c0/33a124960e471c25ee19280c9ce31ccc19574b566dc514fe4f4ca4c34fa8b0b57cf437671f5de380e11353ea9426213fca17687dd2ef03134fea2dbc53809fd6 - languageName: node - linkType: hard - -"concat-map@npm:0.0.1": - version: 0.0.1 - resolution: "concat-map@npm:0.0.1" - checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f - languageName: node - linkType: hard - -"constants-browserify@npm:1.0.0": - version: 1.0.0 - resolution: "constants-browserify@npm:1.0.0" - checksum: 10c0/ab49b1d59a433ed77c964d90d19e08b2f77213fb823da4729c0baead55e3c597f8f97ebccfdfc47bd896d43854a117d114c849a6f659d9986420e97da0f83ac5 - languageName: node - linkType: hard - -"convert-source-map@npm:1.7.0": - version: 1.7.0 - resolution: "convert-source-map@npm:1.7.0" - dependencies: - safe-buffer: "npm:~5.1.1" - checksum: 10c0/e58240044fa2ca34943a450c9af1f2c739a053dc91a97543dd73df666b7e28d9687285926081883950fcc7cb409aad7254d05afbbaf4e2e47491bbf9fad8b952 - languageName: node - linkType: hard - -"create-ecdh@npm:^4.0.0": - version: 4.0.4 - resolution: "create-ecdh@npm:4.0.4" - dependencies: - bn.js: "npm:^4.1.0" - elliptic: "npm:^6.5.3" - checksum: 10c0/77b11a51360fec9c3bce7a76288fc0deba4b9c838d5fb354b3e40c59194d23d66efe6355fd4b81df7580da0661e1334a235a2a5c040b7569ba97db428d466e7f - languageName: node - linkType: hard - -"create-hash@npm:^1.1.0, create-hash@npm:^1.1.2, create-hash@npm:^1.2.0": - version: 1.2.0 - resolution: "create-hash@npm:1.2.0" - dependencies: - cipher-base: "npm:^1.0.1" - inherits: "npm:^2.0.1" - md5.js: "npm:^1.3.4" - ripemd160: "npm:^2.0.1" - sha.js: "npm:^2.4.0" - checksum: 10c0/d402e60e65e70e5083cb57af96d89567954d0669e90550d7cec58b56d49c4b193d35c43cec8338bc72358198b8cbf2f0cac14775b651e99238e1cf411490f915 - languageName: node - linkType: hard - -"create-hmac@npm:^1.1.0, create-hmac@npm:^1.1.4, create-hmac@npm:^1.1.7": - version: 1.1.7 - resolution: "create-hmac@npm:1.1.7" - dependencies: - cipher-base: "npm:^1.0.3" - create-hash: "npm:^1.1.0" - inherits: "npm:^2.0.1" - ripemd160: "npm:^2.0.0" - safe-buffer: "npm:^5.0.1" - sha.js: "npm:^2.4.8" - checksum: 10c0/24332bab51011652a9a0a6d160eed1e8caa091b802335324ae056b0dcb5acbc9fcf173cf10d128eba8548c3ce98dfa4eadaa01bd02f44a34414baee26b651835 - languageName: node - linkType: hard - -"crelt@npm:^1.0.5": - version: 1.0.5 - resolution: "crelt@npm:1.0.5" - checksum: 10c0/c2ed4111254b710e8baf328770bcdd50f2a8e7aa8abc8a10497bfc04110f6f80cb4aa9f9008fb800873af9533d65d4b00a44e0546ff7d80138a48561f14bf468 - languageName: node - linkType: hard - -"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2": - version: 7.0.3 - resolution: "cross-spawn@npm:7.0.3" - dependencies: - path-key: "npm:^3.1.0" - shebang-command: "npm:^2.0.0" - which: "npm:^2.0.1" - checksum: 10c0/5738c312387081c98d69c98e105b6327b069197f864a60593245d64c8089c8a0a744e16349281210d56835bb9274130d825a78b2ad6853ca13cfbeffc0c31750 - languageName: node - linkType: hard - -"crypto-browserify@npm:3.12.0": - version: 3.12.0 - resolution: "crypto-browserify@npm:3.12.0" - dependencies: - browserify-cipher: "npm:^1.0.0" - browserify-sign: "npm:^4.0.0" - create-ecdh: "npm:^4.0.0" - create-hash: "npm:^1.1.0" - create-hmac: "npm:^1.1.0" - diffie-hellman: "npm:^5.0.0" - inherits: "npm:^2.0.1" - pbkdf2: "npm:^3.0.3" - public-encrypt: "npm:^4.0.0" - randombytes: "npm:^2.0.0" - randomfill: "npm:^1.0.3" - checksum: 10c0/0c20198886576050a6aa5ba6ae42f2b82778bfba1753d80c5e7a090836890dc372bdc780986b2568b4fb8ed2a91c958e61db1f0b6b1cc96af4bd03ffc298ba92 - languageName: node - linkType: hard - -"css.escape@npm:1.5.1": - version: 1.5.1 - resolution: "css.escape@npm:1.5.1" - checksum: 10c0/5e09035e5bf6c2c422b40c6df2eb1529657a17df37fda5d0433d722609527ab98090baf25b13970ca754079a0f3161dd3dfc0e743563ded8cfa0749d861c1525 - languageName: node - linkType: hard - -"cssesc@npm:^3.0.0": - version: 3.0.0 - resolution: "cssesc@npm:3.0.0" - bin: - cssesc: bin/cssesc - checksum: 10c0/6bcfd898662671be15ae7827120472c5667afb3d7429f1f917737f3bf84c4176003228131b643ae74543f17a394446247df090c597bb9a728cce298606ed0aa7 - languageName: node - linkType: hard - -"cssnano-preset-simple@npm:^3.0.0": - version: 3.0.2 - resolution: "cssnano-preset-simple@npm:3.0.2" - dependencies: - caniuse-lite: "npm:^1.0.30001202" - peerDependencies: - postcss: ^8.2.15 - checksum: 10c0/a736a322c3d9e0e15585ba6e9b377481bd51f94ac875cfd6d2e01057189e8b7473172175ccae10308ce24a16b45598efae0e2345ee48a2ecb06448f8c81236b8 - languageName: node - linkType: hard - -"cssnano-simple@npm:3.0.0": - version: 3.0.0 - resolution: "cssnano-simple@npm:3.0.0" - dependencies: - cssnano-preset-simple: "npm:^3.0.0" - peerDependencies: - postcss: ^8.2.15 - peerDependenciesMeta: - postcss: - optional: true - checksum: 10c0/0a88684df2311260191d3108232e4289a5215a126c604dfb20b7370919fa054b9bccf4077e61d18e9ef28354de7ddf8b2151e9569cbb49af88f1dfdcbb114604 - languageName: node - linkType: hard - -"damerau-levenshtein@npm:^1.0.8": - version: 1.0.8 - resolution: "damerau-levenshtein@npm:1.0.8" - checksum: 10c0/4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3 - languageName: node - linkType: hard - -"data-uri-to-buffer@npm:3.0.1": - version: 3.0.1 - resolution: "data-uri-to-buffer@npm:3.0.1" - checksum: 10c0/01fa28525402582fbb972c91822533f5528156e9e7241512b903467acbe2e0505760504e22c548bb707c7a56b5459194ee4fa6434e5995fa1a658744c2ce0cff - languageName: node - linkType: hard - -"debug@npm:2": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: "npm:2.0.0" - checksum: 10c0/121908fb839f7801180b69a7e218a40b5a0b718813b886b7d6bdb82001b931c938e2941d1e4450f33a1b1df1da653f5f7a0440c197f29fbf8a6e9d45ff6ef589 - languageName: node - linkType: hard - -"debug@npm:4, debug@npm:^4.0.1, debug@npm:^4.1.1, debug@npm:^4.3.4": - version: 4.3.4 - resolution: "debug@npm:4.3.4" - dependencies: - ms: "npm:2.1.2" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/cedbec45298dd5c501d01b92b119cd3faebe5438c3917ff11ae1bff86a6c722930ac9c8659792824013168ba6db7c4668225d845c633fbdafbbf902a6389f736 - languageName: node - linkType: hard - -"debug@npm:^3.2.7": - version: 3.2.7 - resolution: "debug@npm:3.2.7" - dependencies: - ms: "npm:^2.1.1" - checksum: 10c0/37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a - languageName: node - linkType: hard - -"deep-equal@npm:^2.0.5": - version: 2.2.0 - resolution: "deep-equal@npm:2.2.0" - dependencies: - call-bind: "npm:^1.0.2" - es-get-iterator: "npm:^1.1.2" - get-intrinsic: "npm:^1.1.3" - is-arguments: "npm:^1.1.1" - is-array-buffer: "npm:^3.0.1" - is-date-object: "npm:^1.0.5" - is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.2" - isarray: "npm:^2.0.5" - object-is: "npm:^1.1.5" - object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.4" - regexp.prototype.flags: "npm:^1.4.3" - side-channel: "npm:^1.0.4" - which-boxed-primitive: "npm:^1.0.2" - which-collection: "npm:^1.0.1" - which-typed-array: "npm:^1.1.9" - checksum: 10c0/31de99f3c1b516ef67ba82cbe54fdc1691cdd93ab8ede561eee94f7f8baff6594ddc0860c48707f6cd12e4efd5421e3450e20c40ca71906a9d0abe9017944cd3 - languageName: node - linkType: hard - -"deep-is@npm:^0.1.3": - version: 0.1.4 - resolution: "deep-is@npm:0.1.4" - checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c - languageName: node - linkType: hard - -"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4": - version: 1.2.0 - resolution: "define-properties@npm:1.2.0" - dependencies: - has-property-descriptors: "npm:^1.0.0" - object-keys: "npm:^1.1.1" - checksum: 10c0/34b58cae4651936a3c8c720310ce393a3227f5123640ab5402e7d6e59bb44f8295b789cb5d74e7513682b2e60ff20586d6f52b726d964d617abffa3da76344e0 - languageName: node - linkType: hard - -"defined@npm:^1.0.0": - version: 1.0.1 - resolution: "defined@npm:1.0.1" - checksum: 10c0/357212c95fd69c3b431f4766440f1b10a8362d2663b86e3d7c139fe7fc98a1d5a4996b8b55ca62e97fb882f9887374b76944d29f9650a07993d98e7be86a804a - languageName: node - linkType: hard - -"depd@npm:~1.1.2": - version: 1.1.2 - resolution: "depd@npm:1.1.2" - checksum: 10c0/acb24aaf936ef9a227b6be6d495f0d2eb20108a9a6ad40585c5bda1a897031512fef6484e4fdbb80bd249fdaa82841fa1039f416ece03188e677ba11bcfda249 - languageName: node - linkType: hard - -"des.js@npm:^1.0.0": - version: 1.0.1 - resolution: "des.js@npm:1.0.1" - dependencies: - inherits: "npm:^2.0.1" - minimalistic-assert: "npm:^1.0.0" - checksum: 10c0/69bf742d1c381e01d75151bdcaac71a18d251d7debfc9b6ae5ee4b4edaf39691ae203c5ec9173ba89aedb3ddc622cdff4fca065448c6c2afb1140d9fb826339d - languageName: node - linkType: hard - -"detective@npm:^5.2.1": - version: 5.2.1 - resolution: "detective@npm:5.2.1" - dependencies: - acorn-node: "npm:^1.8.2" - defined: "npm:^1.0.0" - minimist: "npm:^1.2.6" - bin: - detective: bin/detective.js - checksum: 10c0/0d3bdfe49ef094165e7876d83ae1a9e0a07d037785ab0edc7b50df9e4390e0a050167670f3d2d506457c7b00b612471ba840898964422c425e50fe046a379e55 - languageName: node - linkType: hard - -"didyoumean@npm:^1.2.2": - version: 1.2.2 - resolution: "didyoumean@npm:1.2.2" - checksum: 10c0/95d0b53d23b851aacff56dfadb7ecfedce49da4232233baecfeecb7710248c4aa03f0aa8995062f0acafaf925adf8536bd7044a2e68316fd7d411477599bc27b - languageName: node - linkType: hard - -"diffie-hellman@npm:^5.0.0": - version: 5.0.3 - resolution: "diffie-hellman@npm:5.0.3" - dependencies: - bn.js: "npm:^4.1.0" - miller-rabin: "npm:^4.0.0" - randombytes: "npm:^2.0.0" - checksum: 10c0/ce53ccafa9ca544b7fc29b08a626e23a9b6562efc2a98559a0c97b4718937cebaa9b5d7d0a05032cc9c1435e9b3c1532b9e9bf2e0ede868525922807ad6e1ecf - languageName: node - linkType: hard - -"dir-glob@npm:^3.0.1": - version: 3.0.1 - resolution: "dir-glob@npm:3.0.1" - dependencies: - path-type: "npm:^4.0.0" - checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c - languageName: node - linkType: hard - -"dlv@npm:^1.1.3": - version: 1.1.3 - resolution: "dlv@npm:1.1.3" - checksum: 10c0/03eb4e769f19a027fd5b43b59e8a05e3fd2100ac239ebb0bf9a745de35d449e2f25cfaf3aa3934664551d72856f4ae8b7822016ce5c42c2d27c18ae79429ec42 - languageName: node - linkType: hard - -"doctrine@npm:^2.1.0": - version: 2.1.0 - resolution: "doctrine@npm:2.1.0" - dependencies: - esutils: "npm:^2.0.2" - checksum: 10c0/b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac - languageName: node - linkType: hard - -"doctrine@npm:^3.0.0": - version: 3.0.0 - resolution: "doctrine@npm:3.0.0" - dependencies: - esutils: "npm:^2.0.2" - checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 - languageName: node - linkType: hard - -"domain-browser@npm:4.19.0": - version: 4.19.0 - resolution: "domain-browser@npm:4.19.0" - checksum: 10c0/a3534180d8fba1eae177341f868e7af80dfdad6fc9d9e9817735c3f19f6f65d0a9af8f22eb8cf50409c0a2123ccafa6cd50de975fc690bc182a8df03f2986632 - languageName: node - linkType: hard - -"eastasianwidth@npm:^0.2.0": - version: 0.2.0 - resolution: "eastasianwidth@npm:0.2.0" - checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 - languageName: node - linkType: hard - -"electron-to-chromium@npm:^1.3.723, electron-to-chromium@npm:^1.4.284": - version: 1.4.508 - resolution: "electron-to-chromium@npm:1.4.508" - checksum: 10c0/627ecc22796e6bcb2598f8b6737f1c09bbaf9ebd6fcf33fc641239c2a0a0cf96949043f8868c657870ba661204991849db58aedb932667af7eaf1bbec18c919b - languageName: node - linkType: hard - -"elliptic@npm:^6.5.3": - version: 6.5.4 - resolution: "elliptic@npm:6.5.4" - dependencies: - bn.js: "npm:^4.11.9" - brorand: "npm:^1.1.0" - hash.js: "npm:^1.0.0" - hmac-drbg: "npm:^1.0.1" - inherits: "npm:^2.0.4" - minimalistic-assert: "npm:^1.0.1" - minimalistic-crypto-utils: "npm:^1.0.1" - checksum: 10c0/5f361270292c3b27cf0843e84526d11dec31652f03c2763c6c2b8178548175ff5eba95341dd62baff92b2265d1af076526915d8af6cc9cb7559c44a62f8ca6e2 - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 - languageName: node - linkType: hard - -"emoji-regex@npm:^9.2.2": - version: 9.2.2 - resolution: "emoji-regex@npm:9.2.2" - checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 - languageName: node - linkType: hard - -"emojis-list@npm:^2.0.0": - version: 2.1.0 - resolution: "emojis-list@npm:2.1.0" - checksum: 10c0/bbb941223bfb3e38054cb52ed1b3098a8dac0a90fdd2699eb8a3af3b2172cdc4af0932e05c3edd52e814997c8f45cf1d7f5e86e9ecdcd4e2390a0f27e6914db5 - languageName: node - linkType: hard - -"encoding@npm:0.1.13, encoding@npm:^0.1.13": - version: 0.1.13 - resolution: "encoding@npm:0.1.13" - dependencies: - iconv-lite: "npm:^0.6.2" - checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 - languageName: node - linkType: hard - -"enquirer@npm:^2.3.5": - version: 2.3.6 - resolution: "enquirer@npm:2.3.6" - dependencies: - ansi-colors: "npm:^4.1.1" - checksum: 10c0/8e070e052c2c64326a2803db9084d21c8aaa8c688327f133bf65c4a712586beb126fd98c8a01cfb0433e82a4bd3b6262705c55a63e0f7fb91d06b9cedbde9a11 - languageName: node - linkType: hard - -"env-paths@npm:^2.2.0": - version: 2.2.1 - resolution: "env-paths@npm:2.2.1" - checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 - languageName: node - linkType: hard - -"err-code@npm:^2.0.2": - version: 2.0.3 - resolution: "err-code@npm:2.0.3" - checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 - languageName: node - linkType: hard - -"es-abstract@npm:^1.19.0, es-abstract@npm:^1.20.4": - version: 1.21.1 - resolution: "es-abstract@npm:1.21.1" - dependencies: - available-typed-arrays: "npm:^1.0.5" - call-bind: "npm:^1.0.2" - es-set-tostringtag: "npm:^2.0.1" - es-to-primitive: "npm:^1.2.1" - function-bind: "npm:^1.1.1" - function.prototype.name: "npm:^1.1.5" - get-intrinsic: "npm:^1.1.3" - get-symbol-description: "npm:^1.0.0" - globalthis: "npm:^1.0.3" - gopd: "npm:^1.0.1" - has: "npm:^1.0.3" - has-property-descriptors: "npm:^1.0.0" - has-proto: "npm:^1.0.1" - has-symbols: "npm:^1.0.3" - internal-slot: "npm:^1.0.4" - is-array-buffer: "npm:^3.0.1" - is-callable: "npm:^1.2.7" - is-negative-zero: "npm:^2.0.2" - is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.2" - is-string: "npm:^1.0.7" - is-typed-array: "npm:^1.1.10" - is-weakref: "npm:^1.0.2" - object-inspect: "npm:^1.12.2" - object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.4" - regexp.prototype.flags: "npm:^1.4.3" - safe-regex-test: "npm:^1.0.0" - string.prototype.trimend: "npm:^1.0.6" - string.prototype.trimstart: "npm:^1.0.6" - typed-array-length: "npm:^1.0.4" - unbox-primitive: "npm:^1.0.2" - which-typed-array: "npm:^1.1.9" - checksum: 10c0/f05b7c6a0c2ff951bb358e252daa3b059de6aad2222d1338352a104c252824e9eeba7c18961b7e56b9d1bfb39f99580469144b39f05ec44af170b10dd69d4221 - languageName: node - linkType: hard - -"es-get-iterator@npm:^1.1.2": - version: 1.1.3 - resolution: "es-get-iterator@npm:1.1.3" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.3" - has-symbols: "npm:^1.0.3" - is-arguments: "npm:^1.1.1" - is-map: "npm:^2.0.2" - is-set: "npm:^2.0.2" - is-string: "npm:^1.0.7" - isarray: "npm:^2.0.5" - stop-iteration-iterator: "npm:^1.0.0" - checksum: 10c0/ebd11effa79851ea75d7f079405f9d0dc185559fd65d986c6afea59a0ff2d46c2ed8675f19f03dce7429d7f6c14ff9aede8d121fbab78d75cfda6a263030bac0 - languageName: node - linkType: hard - -"es-set-tostringtag@npm:^2.0.1": - version: 2.0.1 - resolution: "es-set-tostringtag@npm:2.0.1" - dependencies: - get-intrinsic: "npm:^1.1.3" - has: "npm:^1.0.3" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/9af096365e3861bb29755cc5f76f15f66a7eab0e83befca396129090c1d9737e54090278b8e5357e97b5f0a5b0459fca07c40c6740884c2659cbf90ef8e508cc - languageName: node - linkType: hard - -"es-shim-unscopables@npm:^1.0.0": - version: 1.0.0 - resolution: "es-shim-unscopables@npm:1.0.0" - dependencies: - has: "npm:^1.0.3" - checksum: 10c0/d54a66239fbd19535b3e50333913260394f14d2d7adb136a95396a13ca584bab400cf9cb2ffd9232f3fe2f0362540bd3a708240c493e46e13fe0b90cfcfedc3d - languageName: node - linkType: hard - -"es-to-primitive@npm:^1.2.1": - version: 1.2.1 - resolution: "es-to-primitive@npm:1.2.1" - dependencies: - is-callable: "npm:^1.1.4" - is-date-object: "npm:^1.0.1" - is-symbol: "npm:^1.0.2" - checksum: 10c0/0886572b8dc075cb10e50c0af62a03d03a68e1e69c388bd4f10c0649ee41b1fbb24840a1b7e590b393011b5cdbe0144b776da316762653685432df37d6de60f1 - languageName: node - linkType: hard - -"es6-object-assign@npm:^1.1.0": - version: 1.1.0 - resolution: "es6-object-assign@npm:1.1.0" - checksum: 10c0/11c165ae16866aca897dee9b689402f0e871589e859809343ef9e0fdd067133684db16fd15abdba2a99e7319222b9f43e6b747baabb909cee9d0ecbac8deebee - languageName: node - linkType: hard - -"escalade@npm:^3.1.1": - version: 3.1.1 - resolution: "escalade@npm:3.1.1" - checksum: 10c0/afd02e6ca91ffa813e1108b5e7756566173d6bc0d1eb951cb44d6b21702ec17c1cf116cfe75d4a2b02e05acb0b808a7a9387d0d1ca5cf9c04ad03a8445c3e46d - languageName: node - linkType: hard - -"escape-string-regexp@npm:^1.0.5": - version: 1.0.5 - resolution: "escape-string-regexp@npm:1.0.5" - checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 - languageName: node - linkType: hard - -"escape-string-regexp@npm:^4.0.0": - version: 4.0.0 - resolution: "escape-string-regexp@npm:4.0.0" - checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 - languageName: node - linkType: hard - -"eslint-config-next@npm:12.0.7": - version: 12.0.7 - resolution: "eslint-config-next@npm:12.0.7" - dependencies: - "@next/eslint-plugin-next": "npm:12.0.7" - "@rushstack/eslint-patch": "npm:^1.0.8" - "@typescript-eslint/parser": "npm:^5.0.0" - eslint-import-resolver-node: "npm:^0.3.4" - eslint-import-resolver-typescript: "npm:^2.4.0" - eslint-plugin-import: "npm:^2.25.2" - eslint-plugin-jsx-a11y: "npm:^6.5.1" - eslint-plugin-react: "npm:^7.27.0" - eslint-plugin-react-hooks: "npm:^4.3.0" - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - next: ">=10.2.0" - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/4e1c504a5e5e2dfce6fce7a743c770918b00fc1301f623bf1fdc0803290a57fd7f8ca8af7cba035c15b1be15383d62971254de25e3323a606f2d2423f487bc54 - languageName: node - linkType: hard - -"eslint-import-resolver-node@npm:^0.3.4, eslint-import-resolver-node@npm:^0.3.7": - version: 0.3.7 - resolution: "eslint-import-resolver-node@npm:0.3.7" - dependencies: - debug: "npm:^3.2.7" - is-core-module: "npm:^2.11.0" - resolve: "npm:^1.22.1" - checksum: 10c0/39c562b59ec8dfd6b85ffa52273dbf0edb661b616463e2c453c60b2398b0a76f268f15f949a1648046c9c996d29599b57f6266df4b5d3562bff1088ded3672d5 - languageName: node - linkType: hard - -"eslint-import-resolver-typescript@npm:^2.4.0": - version: 2.7.1 - resolution: "eslint-import-resolver-typescript@npm:2.7.1" - dependencies: - debug: "npm:^4.3.4" - glob: "npm:^7.2.0" - is-glob: "npm:^4.0.3" - resolve: "npm:^1.22.0" - tsconfig-paths: "npm:^3.14.1" - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" - checksum: 10c0/42e2af8f86bc39413a1dbd597f9e3c645568e2ba02a960dea2e77e6970f57b3a90193ac7c950e28286404956a9b7d1a69fd5072795afe1b98a76d401a612128e - languageName: node - linkType: hard - -"eslint-module-utils@npm:^2.7.4": - version: 2.7.4 - resolution: "eslint-module-utils@npm:2.7.4" - dependencies: - debug: "npm:^3.2.7" - peerDependenciesMeta: - eslint: - optional: true - checksum: 10c0/a14368a03d01824e4780e76df08460bbd5dcbf9d58944faf8660079559d169ab2b163b9b1b21fa2955c31c76f4ad348fdcde1bf0ef50cda7e14b89f6257b0eda - languageName: node - linkType: hard - -"eslint-plugin-import@npm:^2.25.2": - version: 2.27.5 - resolution: "eslint-plugin-import@npm:2.27.5" - dependencies: - array-includes: "npm:^3.1.6" - array.prototype.flat: "npm:^1.3.1" - array.prototype.flatmap: "npm:^1.3.1" - debug: "npm:^3.2.7" - doctrine: "npm:^2.1.0" - eslint-import-resolver-node: "npm:^0.3.7" - eslint-module-utils: "npm:^2.7.4" - has: "npm:^1.0.3" - is-core-module: "npm:^2.11.0" - is-glob: "npm:^4.0.3" - minimatch: "npm:^3.1.2" - object.values: "npm:^1.1.6" - resolve: "npm:^1.22.1" - semver: "npm:^6.3.0" - tsconfig-paths: "npm:^3.14.1" - peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - checksum: 10c0/e561e79889ad3c662e305ca9a9b273a5baf8f492dad8198e42987efc4f0532c0d49caee206e78e057cec3365b36f9cef8340915e9f08adec5f29c9d631e6f691 - languageName: node - linkType: hard - -"eslint-plugin-jsx-a11y@npm:^6.5.1": - version: 6.7.1 - resolution: "eslint-plugin-jsx-a11y@npm:6.7.1" - dependencies: - "@babel/runtime": "npm:^7.20.7" - aria-query: "npm:^5.1.3" - array-includes: "npm:^3.1.6" - array.prototype.flatmap: "npm:^1.3.1" - ast-types-flow: "npm:^0.0.7" - axe-core: "npm:^4.6.2" - axobject-query: "npm:^3.1.1" - damerau-levenshtein: "npm:^1.0.8" - emoji-regex: "npm:^9.2.2" - has: "npm:^1.0.3" - jsx-ast-utils: "npm:^3.3.3" - language-tags: "npm:=1.0.5" - minimatch: "npm:^3.1.2" - object.entries: "npm:^1.1.6" - object.fromentries: "npm:^2.0.6" - semver: "npm:^6.3.0" - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - checksum: 10c0/41ad3d0c8036b36cd475685c1ad639157f403b16e8ac23c07f1dbe0226ccf8458f2805cbd5cc8e56856a5d8a356f3276e3139274d819476ccad80c41b9245502 - languageName: node - linkType: hard - -"eslint-plugin-react-hooks@npm:^4.3.0": - version: 4.6.0 - resolution: "eslint-plugin-react-hooks@npm:4.6.0" - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - checksum: 10c0/58c7e10ea5792c33346fcf5cb4024e14837035ce412ff99c2dcb7c4f903dc9b17939078f80bfef826301ce326582c396c00e8e0ac9d10ac2cde2b42d33763c65 - languageName: node - linkType: hard - -"eslint-plugin-react@npm:^7.27.0": - version: 7.32.2 - resolution: "eslint-plugin-react@npm:7.32.2" - dependencies: - array-includes: "npm:^3.1.6" - array.prototype.flatmap: "npm:^1.3.1" - array.prototype.tosorted: "npm:^1.1.1" - doctrine: "npm:^2.1.0" - estraverse: "npm:^5.3.0" - jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" - minimatch: "npm:^3.1.2" - object.entries: "npm:^1.1.6" - object.fromentries: "npm:^2.0.6" - object.hasown: "npm:^1.1.2" - object.values: "npm:^1.1.6" - prop-types: "npm:^15.8.1" - resolve: "npm:^2.0.0-next.4" - semver: "npm:^6.3.0" - string.prototype.matchall: "npm:^4.0.8" - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - checksum: 10c0/9ddd5cfc508555a5cb3edbdcc9138dd472d269d3a45da0be3e267ea2b3fa1b5990823675208c0e11376c9c55e46aaad5b7a5f46c965eb4dcf6f1eebcebf174c3 - languageName: node - linkType: hard - -"eslint-scope@npm:^5.1.1": - version: 5.1.1 - resolution: "eslint-scope@npm:5.1.1" - dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^4.1.1" - checksum: 10c0/d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a - languageName: node - linkType: hard - -"eslint-utils@npm:^2.1.0": - version: 2.1.0 - resolution: "eslint-utils@npm:2.1.0" - dependencies: - eslint-visitor-keys: "npm:^1.1.0" - checksum: 10c0/69521c5d6569384b24093125d037ba238d3d6e54367f7143af9928f5286369e912c26cad5016d730c0ffb9797ac9e83831059d7f1d863f7dc84330eb02414611 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^1.1.0, eslint-visitor-keys@npm:^1.3.0": - version: 1.3.0 - resolution: "eslint-visitor-keys@npm:1.3.0" - checksum: 10c0/10c91fdbbe36810dd4308e57f9a8bc7177188b2a70247e54e3af1fa05ebc66414ae6fd4ce3c6c6821591f43a556e9037bc6b071122e099b5f8b7d2f76df553e3 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^2.0.0": - version: 2.1.0 - resolution: "eslint-visitor-keys@npm:2.1.0" - checksum: 10c0/9f0e3a2db751d84067d15977ac4b4472efd6b303e369e6ff241a99feac04da758f46d5add022c33d06b53596038dbae4b4aceb27c7e68b8dfc1055b35e495787 - languageName: node - linkType: hard - -"eslint-visitor-keys@npm:^3.3.0": - version: 3.3.0 - resolution: "eslint-visitor-keys@npm:3.3.0" - checksum: 10c0/fc6a9b5bdee8d90e35e7564fd9db10fdf507a2c089a4f0d4d3dd091f7f4ac6790547c8b1b7a760642ef819f875ef86dd5bcb8cdf01b0775f57a699f4e6a20a18 - languageName: node - linkType: hard - -"eslint@npm:7.32.0": - version: 7.32.0 - resolution: "eslint@npm:7.32.0" - dependencies: - "@babel/code-frame": "npm:7.12.11" - "@eslint/eslintrc": "npm:^0.4.3" - "@humanwhocodes/config-array": "npm:^0.5.0" - ajv: "npm:^6.10.0" - chalk: "npm:^4.0.0" - cross-spawn: "npm:^7.0.2" - debug: "npm:^4.0.1" - doctrine: "npm:^3.0.0" - enquirer: "npm:^2.3.5" - escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^5.1.1" - eslint-utils: "npm:^2.1.0" - eslint-visitor-keys: "npm:^2.0.0" - espree: "npm:^7.3.1" - esquery: "npm:^1.4.0" - esutils: "npm:^2.0.2" - fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^6.0.1" - functional-red-black-tree: "npm:^1.0.1" - glob-parent: "npm:^5.1.2" - globals: "npm:^13.6.0" - ignore: "npm:^4.0.6" - import-fresh: "npm:^3.0.0" - imurmurhash: "npm:^0.1.4" - is-glob: "npm:^4.0.0" - js-yaml: "npm:^3.13.1" - json-stable-stringify-without-jsonify: "npm:^1.0.1" - levn: "npm:^0.4.1" - lodash.merge: "npm:^4.6.2" - minimatch: "npm:^3.0.4" - natural-compare: "npm:^1.4.0" - optionator: "npm:^0.9.1" - progress: "npm:^2.0.0" - regexpp: "npm:^3.1.0" - semver: "npm:^7.2.1" - strip-ansi: "npm:^6.0.0" - strip-json-comments: "npm:^3.1.0" - table: "npm:^6.0.9" - text-table: "npm:^0.2.0" - v8-compile-cache: "npm:^2.0.3" - bin: - eslint: bin/eslint.js - checksum: 10c0/84409f7767556179cb11529f1215f335c7dfccf90419df6147f949f14c347a960c7b569e80ed84011a0b6d10da1ef5046edbbb9b11c3e59aa6696d5217092e93 - languageName: node - linkType: hard - -"espree@npm:^7.3.0, espree@npm:^7.3.1": - version: 7.3.1 - resolution: "espree@npm:7.3.1" - dependencies: - acorn: "npm:^7.4.0" - acorn-jsx: "npm:^5.3.1" - eslint-visitor-keys: "npm:^1.3.0" - checksum: 10c0/f4e81b903f03eaf0e6925cea20571632da427deb6e14ca37e481f72c11f36d7bb4945fe8a2ff15ab22d078d3cd93ee65355fa94de9c27485c356481775f25d85 - languageName: node - linkType: hard - -"esprima@npm:^4.0.0": - version: 4.0.1 - resolution: "esprima@npm:4.0.1" - bin: - esparse: ./bin/esparse.js - esvalidate: ./bin/esvalidate.js - checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 - languageName: node - linkType: hard - -"esquery@npm:^1.4.0": - version: 1.4.2 - resolution: "esquery@npm:1.4.2" - dependencies: - estraverse: "npm:^5.1.0" - checksum: 10c0/b4109b3d8301e79bf0be10bbafe4ac9c5469274e61b07a16e7174e99efe815081bc18ac2e6d951d06df95004ac5772751db5d5b14483e51aefa96b018726117d - languageName: node - linkType: hard - -"esrecurse@npm:^4.3.0": - version: 4.3.0 - resolution: "esrecurse@npm:4.3.0" - dependencies: - estraverse: "npm:^5.2.0" - checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 - languageName: node - linkType: hard - -"estraverse@npm:^4.1.1": - version: 4.3.0 - resolution: "estraverse@npm:4.3.0" - checksum: 10c0/9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d - languageName: node - linkType: hard - -"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": - version: 5.3.0 - resolution: "estraverse@npm:5.3.0" - checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 - languageName: node - linkType: hard - -"esutils@npm:^2.0.2": - version: 2.0.3 - resolution: "esutils@npm:2.0.3" - checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 - languageName: node - linkType: hard - -"etag@npm:1.8.1": - version: 1.8.1 - resolution: "etag@npm:1.8.1" - checksum: 10c0/12be11ef62fb9817314d790089a0a49fae4e1b50594135dcb8076312b7d7e470884b5100d249b28c18581b7fd52f8b485689ffae22a11ed9ec17377a33a08f84 - languageName: node - linkType: hard - -"events@npm:3.3.0": - version: 3.3.0 - resolution: "events@npm:3.3.0" - checksum: 10c0/d6b6f2adbccbcda74ddbab52ed07db727ef52e31a61ed26db9feb7dc62af7fc8e060defa65e5f8af9449b86b52cc1a1f6a79f2eafcf4e62add2b7a1fa4a432f6 - languageName: node - linkType: hard - -"evp_bytestokey@npm:^1.0.0, evp_bytestokey@npm:^1.0.3": - version: 1.0.3 - resolution: "evp_bytestokey@npm:1.0.3" - dependencies: - md5.js: "npm:^1.3.4" - node-gyp: "npm:latest" - safe-buffer: "npm:^5.1.1" - checksum: 10c0/77fbe2d94a902a80e9b8f5a73dcd695d9c14899c5e82967a61b1fc6cbbb28c46552d9b127cff47c45fcf684748bdbcfa0a50410349109de87ceb4b199ef6ee99 - languageName: node - linkType: hard - -"exponential-backoff@npm:^3.1.1": - version: 3.1.1 - resolution: "exponential-backoff@npm:3.1.1" - checksum: 10c0/160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579 - languageName: node - linkType: hard - -"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": - version: 3.1.3 - resolution: "fast-deep-equal@npm:3.1.3" - checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 - languageName: node - linkType: hard - -"fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9": - version: 3.2.12 - resolution: "fast-glob@npm:3.2.12" - dependencies: - "@nodelib/fs.stat": "npm:^2.0.2" - "@nodelib/fs.walk": "npm:^1.2.3" - glob-parent: "npm:^5.1.2" - merge2: "npm:^1.3.0" - micromatch: "npm:^4.0.4" - checksum: 10c0/08604fb8ef6442ce74068bef3c3104382bb1f5ab28cf75e4ee904662778b60ad620e1405e692b7edea598ef445f5d387827a965ba034e1892bf54b1dfde97f26 - languageName: node - linkType: hard - -"fast-json-stable-stringify@npm:^2.0.0": - version: 2.1.0 - resolution: "fast-json-stable-stringify@npm:2.1.0" - checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b - languageName: node - linkType: hard - -"fast-levenshtein@npm:^2.0.6": - version: 2.0.6 - resolution: "fast-levenshtein@npm:2.0.6" - checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 - languageName: node - linkType: hard - -"fastq@npm:^1.6.0": - version: 1.15.0 - resolution: "fastq@npm:1.15.0" - dependencies: - reusify: "npm:^1.0.4" - checksum: 10c0/5ce4f83afa5f88c9379e67906b4d31bc7694a30826d6cc8d0f0473c966929017fda65c2174b0ec89f064ede6ace6c67f8a4fe04cef42119b6a55b0d465554c24 - languageName: node - linkType: hard - -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" - dependencies: - flat-cache: "npm:^3.0.4" - checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd - languageName: node - linkType: hard - -"fill-range@npm:^7.0.1": - version: 7.0.1 - resolution: "fill-range@npm:7.0.1" - dependencies: - to-regex-range: "npm:^5.0.1" - checksum: 10c0/7cdad7d426ffbaadf45aeb5d15ec675bbd77f7597ad5399e3d2766987ed20bda24d5fac64b3ee79d93276f5865608bb22344a26b9b1ae6c4d00bd94bf611623f - languageName: node - linkType: hard - -"find-cache-dir@npm:3.3.1": - version: 3.3.1 - resolution: "find-cache-dir@npm:3.3.1" - dependencies: - commondir: "npm:^1.0.1" - make-dir: "npm:^3.0.2" - pkg-dir: "npm:^4.1.0" - checksum: 10c0/589ece7a2721885c354f1f8c5c6d02c3acdfc9d62ae9fad2967e3a613fbfbc7a5ebdb727af3c77864f656224046fbc07e41733f9d9d3eb3896d149e9083ebbb4 - languageName: node - linkType: hard - -"find-up@npm:^4.0.0": - version: 4.1.0 - resolution: "find-up@npm:4.1.0" - dependencies: - locate-path: "npm:^5.0.0" - path-exists: "npm:^4.0.0" - checksum: 10c0/0406ee89ebeefa2d507feb07ec366bebd8a6167ae74aa4e34fb4c4abd06cf782a3ce26ae4194d70706f72182841733f00551c209fe575cb00bd92104056e78c1 - languageName: node - linkType: hard - -"flat-cache@npm:^3.0.4": - version: 3.0.4 - resolution: "flat-cache@npm:3.0.4" - dependencies: - flatted: "npm:^3.1.0" - rimraf: "npm:^3.0.2" - checksum: 10c0/f274dcbadb09ad8d7b6edf2ee9b034bc40bf0c12638f6c4084e9f1d39208cb104a5ebbb24b398880ef048200eaa116852f73d2d8b72e8c9627aba8c3e27ca057 - languageName: node - linkType: hard - -"flatted@npm:^3.1.0": - version: 3.2.7 - resolution: "flatted@npm:3.2.7" - checksum: 10c0/207a87c7abfc1ea6928ea16bac84f9eaa6d44d365620ece419e5c41cf44a5e9902b4c1f59c9605771b10e4565a0cb46e99d78e0464e8aabb42c97de880642257 - languageName: node - linkType: hard - -"for-each@npm:^0.3.3": - version: 0.3.3 - resolution: "for-each@npm:0.3.3" - dependencies: - is-callable: "npm:^1.1.3" - checksum: 10c0/22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa - languageName: node - linkType: hard - -"foreground-child@npm:^3.1.0": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" - dependencies: - cross-spawn: "npm:^7.0.0" - signal-exit: "npm:^4.0.1" - checksum: 10c0/9700a0285628abaeb37007c9a4d92bd49f67210f09067638774338e146c8e9c825c5c877f072b2f75f41dc6a2d0be8664f79ffc03f6576649f54a84fb9b47de0 - languageName: node - linkType: hard - -"fraction.js@npm:^4.2.0": - version: 4.2.0 - resolution: "fraction.js@npm:4.2.0" - checksum: 10c0/b16c0a6a7f045b3416c1afbb174b7afca73bd7eb0c62598a0c734a8b1f888cb375684174daf170abfba314da9f366b7d6445e396359d5fae640883bdb2ed18cb - languageName: node - linkType: hard - -"fs-minipass@npm:^2.0.0": - version: 2.1.0 - resolution: "fs-minipass@npm:2.1.0" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/703d16522b8282d7299337539c3ed6edddd1afe82435e4f5b76e34a79cd74e488a8a0e26a636afc2440e1a23b03878e2122e3a2cfe375a5cf63c37d92b86a004 - languageName: node - linkType: hard - -"fs-minipass@npm:^3.0.0": - version: 3.0.3 - resolution: "fs-minipass@npm:3.0.3" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 - languageName: node - linkType: hard - -"fs.realpath@npm:^1.0.0": - version: 1.0.0 - resolution: "fs.realpath@npm:1.0.0" - checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 - languageName: node - linkType: hard - -"fsevents@npm:~2.3.1, fsevents@npm:~2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: "npm:latest" - checksum: 10c0/be78a3efa3e181cda3cf7a4637cb527bcebb0bd0ea0440105a3bb45b86f9245b307dc10a2507e8f4498a7d4ec349d1910f4d73e4d4495b16103106e07eee735b - conditions: os=darwin - languageName: node - linkType: hard - -"fsevents@patch:fsevents@npm%3A~2.3.1#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1" - dependencies: - node-gyp: "npm:latest" - conditions: os=darwin - languageName: node - linkType: hard - -"function-bind@npm:^1.1.1": - version: 1.1.1 - resolution: "function-bind@npm:1.1.1" - checksum: 10c0/60b74b2407e1942e1ed7f8c284f8ef714d0689dcfce5319985a5b7da3fc727f40b4a59ec72dc55aa83365ad7b8fa4fac3a30d93c850a2b452f29ae03dbc10a1e - languageName: node - linkType: hard - -"function.prototype.name@npm:^1.1.5": - version: 1.1.5 - resolution: "function.prototype.name@npm:1.1.5" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - es-abstract: "npm:^1.19.0" - functions-have-names: "npm:^1.2.2" - checksum: 10c0/b75fb8c5261f03a54f7cb53a8c99e0c40297efc3cf750c51d3a2e56f6741701c14eda51986d30c24063136a4c32d1643df9d1dd2f2a14b64fa011edd3e7117ae - languageName: node - linkType: hard - -"functional-red-black-tree@npm:^1.0.1": - version: 1.0.1 - resolution: "functional-red-black-tree@npm:1.0.1" - checksum: 10c0/5959eed0375803d9924f47688479bb017e0c6816a0e5ac151e22ba6bfe1d12c41de2f339188885e0aa8eeea2072dad509d8e4448467e816bde0a2ca86a0670d3 - languageName: node - linkType: hard - -"functions-have-names@npm:^1.2.2": - version: 1.2.3 - resolution: "functions-have-names@npm:1.2.3" - checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca - languageName: node - linkType: hard - -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0": - version: 1.2.0 - resolution: "get-intrinsic@npm:1.2.0" - dependencies: - function-bind: "npm:^1.1.1" - has: "npm:^1.0.3" - has-symbols: "npm:^1.0.3" - checksum: 10c0/7c564f6b1061e6ca9eb1abab424a2cf80b93e75dcde65229d504e4055aa0ea54f88330e9b75d10e41c72bca881a947e84193b3549a4692d836f304239a178d63 - languageName: node - linkType: hard - -"get-orientation@npm:1.1.2": - version: 1.1.2 - resolution: "get-orientation@npm:1.1.2" - dependencies: - stream-parser: "npm:^0.3.1" - checksum: 10c0/a8be5e7a8afcec5a8c5b915175365f0a4e01483a1323524ce802a460187b1bc476ab220d2a77e691e6ab97b957e2b6bfa4a24090c0cd9b9c028d14255623cdff - languageName: node - linkType: hard - -"get-symbol-description@npm:^1.0.0": - version: 1.0.0 - resolution: "get-symbol-description@npm:1.0.0" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.1" - checksum: 10c0/23bc3b44c221cdf7669a88230c62f4b9e30393b61eb21ba4400cb3e346801bd8f95fe4330ee78dbae37aecd874646d53e3e76a17a654d0c84c77f6690526d6bb - languageName: node - linkType: hard - -"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.0, glob-parent@npm:~5.1.2": - version: 5.1.2 - resolution: "glob-parent@npm:5.1.2" - dependencies: - is-glob: "npm:^4.0.1" - checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee - languageName: node - linkType: hard - -"glob-parent@npm:^6.0.2": - version: 6.0.2 - resolution: "glob-parent@npm:6.0.2" - dependencies: - is-glob: "npm:^4.0.3" - checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 - languageName: node - linkType: hard - -"glob-to-regexp@npm:^0.4.1": - version: 0.4.1 - resolution: "glob-to-regexp@npm:0.4.1" - checksum: 10c0/0486925072d7a916f052842772b61c3e86247f0a80cc0deb9b5a3e8a1a9faad5b04fb6f58986a09f34d3e96cd2a22a24b7e9882fb1cf904c31e9a310de96c429 - languageName: node - linkType: hard - -"glob@npm:7.1.7": - version: 7.1.7 - resolution: "glob@npm:7.1.7" - dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.0.4" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" - checksum: 10c0/173245e6f9ccf904309eb7ef4a44a11f3bf68e9e341dff5a28b5db0dd7123b7506daf41497f3437a0710f57198187b758c2351eeaabce4d16935e956920da6a4 - languageName: node - linkType: hard - -"glob@npm:^10.2.2, glob@npm:^10.3.10": - version: 10.3.12 - resolution: "glob@npm:10.3.12" - dependencies: - foreground-child: "npm:^3.1.0" - jackspeak: "npm:^2.3.6" - minimatch: "npm:^9.0.1" - minipass: "npm:^7.0.4" - path-scurry: "npm:^1.10.2" - bin: - glob: dist/esm/bin.mjs - checksum: 10c0/f60cefdc1cf3f958b2bb5823e1b233727f04916d489dc4641d76914f016e6704421e06a83cbb68b0cb1cb9382298b7a88075b844ad2127fc9727ea22b18b0711 - languageName: node - linkType: hard - -"glob@npm:^7.1.3, glob@npm:^7.2.0": - version: 7.2.3 - resolution: "glob@npm:7.2.3" - dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.1.1" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" - checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe - languageName: node - linkType: hard - -"globals@npm:^13.6.0, globals@npm:^13.9.0": - version: 13.20.0 - resolution: "globals@npm:13.20.0" - dependencies: - type-fest: "npm:^0.20.2" - checksum: 10c0/9a028f136f1e7a3574689f430f7d57faa0d699c4c7e92ade00b02882a892be31c314d50dff07b48e607283013117bb8a997406d03a1f7ab4a33a005eb16efd6c - languageName: node - linkType: hard - -"globalthis@npm:^1.0.3": - version: 1.0.3 - resolution: "globalthis@npm:1.0.3" - dependencies: - define-properties: "npm:^1.1.3" - checksum: 10c0/0db6e9af102a5254630351557ac15e6909bc7459d3e3f6b001e59fe784c96d31108818f032d9095739355a88467459e6488ff16584ee6250cd8c27dec05af4b0 - languageName: node - linkType: hard - -"globby@npm:^11.1.0": - version: 11.1.0 - resolution: "globby@npm:11.1.0" - dependencies: - array-union: "npm:^2.1.0" - dir-glob: "npm:^3.0.1" - fast-glob: "npm:^3.2.9" - ignore: "npm:^5.2.0" - merge2: "npm:^1.4.1" - slash: "npm:^3.0.0" - checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 - languageName: node - linkType: hard - -"goober@npm:^2.1.10": - version: 2.1.13 - resolution: "goober@npm:2.1.13" - peerDependencies: - csstype: ^3.0.10 - checksum: 10c0/a322ea3b688e1140e9e69014169563a1a73ea715d4a6edeaf61b59d40eb2c3b70f8269b09bb178d474764ee1772a0b1719c1d45db689e5c557698e468ce94702 - languageName: node - linkType: hard - -"gopd@npm:^1.0.1": - version: 1.0.1 - resolution: "gopd@npm:1.0.1" - dependencies: - get-intrinsic: "npm:^1.1.3" - checksum: 10c0/505c05487f7944c552cee72087bf1567debb470d4355b1335f2c262d218ebbff805cd3715448fe29b4b380bae6912561d0467233e4165830efd28da241418c63 - languageName: node - linkType: hard - -"graceful-fs@npm:^4.1.2": - version: 4.2.10 - resolution: "graceful-fs@npm:4.2.10" - checksum: 10c0/4223a833e38e1d0d2aea630c2433cfb94ddc07dfc11d511dbd6be1d16688c5be848acc31f9a5d0d0ddbfb56d2ee5a6ae0278aceeb0ca6a13f27e06b9956fb952 - languageName: node - linkType: hard - -"graceful-fs@npm:^4.2.6": - version: 4.2.11 - resolution: "graceful-fs@npm:4.2.11" - checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 - languageName: node - linkType: hard - -"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": - version: 1.0.2 - resolution: "has-bigints@npm:1.0.2" - checksum: 10c0/724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b - languageName: node - linkType: hard - -"has-flag@npm:^3.0.0": - version: 3.0.0 - resolution: "has-flag@npm:3.0.0" - checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 - languageName: node - linkType: hard - -"has-flag@npm:^4.0.0": - version: 4.0.0 - resolution: "has-flag@npm:4.0.0" - checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 - languageName: node - linkType: hard - -"has-property-descriptors@npm:^1.0.0": - version: 1.0.0 - resolution: "has-property-descriptors@npm:1.0.0" - dependencies: - get-intrinsic: "npm:^1.1.1" - checksum: 10c0/d4ca882b6960d6257bd28baa3ddfa21f068d260411004a093b30ca357c740e11e985771c85216a6d1eef4161e862657f48c4758ec8ab515223b3895200ad164b - languageName: node - linkType: hard - -"has-proto@npm:^1.0.1": - version: 1.0.1 - resolution: "has-proto@npm:1.0.1" - checksum: 10c0/c8a8fe411f810b23a564bd5546a8f3f0fff6f1b692740eb7a2fdc9df716ef870040806891e2f23ff4653f1083e3895bf12088703dd1a0eac3d9202d3a4768cd0 - languageName: node - linkType: hard - -"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": - version: 1.0.3 - resolution: "has-symbols@npm:1.0.3" - checksum: 10c0/e6922b4345a3f37069cdfe8600febbca791c94988c01af3394d86ca3360b4b93928bbf395859158f88099cb10b19d98e3bbab7c9ff2c1bd09cf665ee90afa2c3 - languageName: node - linkType: hard - -"has-tostringtag@npm:^1.0.0": - version: 1.0.0 - resolution: "has-tostringtag@npm:1.0.0" - dependencies: - has-symbols: "npm:^1.0.2" - checksum: 10c0/1cdba76b7d13f65198a92b8ca1560ba40edfa09e85d182bf436d928f3588a9ebd260451d569f0ed1b849c4bf54f49c862aa0d0a77f9552b1855bb6deb526c011 - languageName: node - linkType: hard - -"has@npm:^1.0.3": - version: 1.0.3 - resolution: "has@npm:1.0.3" - dependencies: - function-bind: "npm:^1.1.1" - checksum: 10c0/e1da0d2bd109f116b632f27782cf23182b42f14972ca9540e4c5aa7e52647407a0a4a76937334fddcb56befe94a3494825ec22b19b51f5e5507c3153fd1a5e1b - languageName: node - linkType: hard - -"hash-base@npm:^3.0.0": - version: 3.1.0 - resolution: "hash-base@npm:3.1.0" - dependencies: - inherits: "npm:^2.0.4" - readable-stream: "npm:^3.6.0" - safe-buffer: "npm:^5.2.0" - checksum: 10c0/663eabcf4173326fbb65a1918a509045590a26cc7e0964b754eef248d281305c6ec9f6b31cb508d02ffca383ab50028180ce5aefe013e942b44a903ac8dc80d0 - languageName: node - linkType: hard - -"hash.js@npm:^1.0.0, hash.js@npm:^1.0.3": - version: 1.1.7 - resolution: "hash.js@npm:1.1.7" - dependencies: - inherits: "npm:^2.0.3" - minimalistic-assert: "npm:^1.0.1" - checksum: 10c0/41ada59494eac5332cfc1ce6b7ebdd7b88a3864a6d6b08a3ea8ef261332ed60f37f10877e0c825aaa4bddebf164fbffa618286aeeec5296675e2671cbfa746c4 - languageName: node - linkType: hard - -"he@npm:1.2.0": - version: 1.2.0 - resolution: "he@npm:1.2.0" - bin: - he: bin/he - checksum: 10c0/a27d478befe3c8192f006cdd0639a66798979dfa6e2125c6ac582a19a5ebfec62ad83e8382e6036170d873f46e4536a7e795bf8b95bf7c247f4cc0825ccc8c17 - languageName: node - linkType: hard - -"hmac-drbg@npm:^1.0.1": - version: 1.0.1 - resolution: "hmac-drbg@npm:1.0.1" - dependencies: - hash.js: "npm:^1.0.3" - minimalistic-assert: "npm:^1.0.0" - minimalistic-crypto-utils: "npm:^1.0.1" - checksum: 10c0/f3d9ba31b40257a573f162176ac5930109816036c59a09f901eb2ffd7e5e705c6832bedfff507957125f2086a0ab8f853c0df225642a88bf1fcaea945f20600d - languageName: node - linkType: hard - -"http-cache-semantics@npm:^4.1.1": - version: 4.1.1 - resolution: "http-cache-semantics@npm:4.1.1" - checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc - languageName: node - linkType: hard - -"http-errors@npm:1.7.3": - version: 1.7.3 - resolution: "http-errors@npm:1.7.3" - dependencies: - depd: "npm:~1.1.2" - inherits: "npm:2.0.4" - setprototypeof: "npm:1.1.1" - statuses: "npm:>= 1.5.0 < 2" - toidentifier: "npm:1.0.0" - checksum: 10c0/5c3443c340d35b2f18ce908266c4ae93305b7d900bef765ac8dc56fa90125b9fe18a1ed9ebf6af23dc3ba7763731921a2682bf968e199eccf383eb8f508be6c2 - languageName: node - linkType: hard - -"http-proxy-agent@npm:^7.0.0": - version: 7.0.2 - resolution: "http-proxy-agent@npm:7.0.2" - dependencies: - agent-base: "npm:^7.1.0" - debug: "npm:^4.3.4" - checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 - languageName: node - linkType: hard - -"https-browserify@npm:1.0.0": - version: 1.0.0 - resolution: "https-browserify@npm:1.0.0" - checksum: 10c0/e17b6943bc24ea9b9a7da5714645d808670af75a425f29baffc3284962626efdc1eb3aa9bbffaa6e64028a6ad98af5b09fabcb454a8f918fb686abfdc9e9b8ae - languageName: node - linkType: hard - -"https-proxy-agent@npm:^7.0.1": - version: 7.0.4 - resolution: "https-proxy-agent@npm:7.0.4" - dependencies: - agent-base: "npm:^7.0.2" - debug: "npm:4" - checksum: 10c0/bc4f7c38da32a5fc622450b6cb49a24ff596f9bd48dcedb52d2da3fa1c1a80e100fb506bd59b326c012f21c863c69b275c23de1a01d0b84db396822fdf25e52b - languageName: node - linkType: hard - -"iconv-lite@npm:0.4.24": - version: 0.4.24 - resolution: "iconv-lite@npm:0.4.24" - dependencies: - safer-buffer: "npm:>= 2.1.2 < 3" - checksum: 10c0/c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4 - languageName: node - linkType: hard - -"iconv-lite@npm:^0.6.2": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" - dependencies: - safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 - languageName: node - linkType: hard - -"ieee754@npm:^1.1.4": - version: 1.2.1 - resolution: "ieee754@npm:1.2.1" - checksum: 10c0/b0782ef5e0935b9f12883a2e2aa37baa75da6e66ce6515c168697b42160807d9330de9a32ec1ed73149aea02e0d822e572bca6f1e22bdcbd2149e13b050b17bb - languageName: node - linkType: hard - -"ignore@npm:^4.0.6": - version: 4.0.6 - resolution: "ignore@npm:4.0.6" - checksum: 10c0/836ee7dc7fd9436096e2dba429359dbb9fa0e33d309e2b2d81692f375f6ca82024fc00567f798613d50c6b989e9cd2ad2b065acf116325cde177f02c86b7d4e0 - languageName: node - linkType: hard - -"ignore@npm:^5.2.0": - version: 5.2.4 - resolution: "ignore@npm:5.2.4" - checksum: 10c0/7c7cd90edd9fea6e037f9b9da4b01bf0a86b198ce78345f9bbd983929d68ff14830be31111edc5d70c264921f4962404d75b7262b4d9cc3bc12381eccbd03096 - languageName: node - linkType: hard - -"image-size@npm:1.0.0": - version: 1.0.0 - resolution: "image-size@npm:1.0.0" - dependencies: - queue: "npm:6.0.2" - bin: - image-size: bin/image-size.js - checksum: 10c0/71b531ced2abef11e2a5ba77a533b9229aa10585d252154b039458265978172f890e82a210f5f4467bc7d8a5fe0a501251984a1a9caa66a1f65a6e8dcb136289 - languageName: node - linkType: hard - -"import-fresh@npm:^3.0.0, import-fresh@npm:^3.2.1": - version: 3.3.0 - resolution: "import-fresh@npm:3.3.0" - dependencies: - parent-module: "npm:^1.0.0" - resolve-from: "npm:^4.0.0" - checksum: 10c0/7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 - languageName: node - linkType: hard - -"imurmurhash@npm:^0.1.4": - version: 0.1.4 - resolution: "imurmurhash@npm:0.1.4" - checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 - languageName: node - linkType: hard - -"indent-string@npm:^4.0.0": - version: 4.0.0 - resolution: "indent-string@npm:4.0.0" - checksum: 10c0/1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f - languageName: node - linkType: hard - -"inflight@npm:^1.0.4": - version: 1.0.6 - resolution: "inflight@npm:1.0.6" - dependencies: - once: "npm:^1.3.0" - wrappy: "npm:1" - checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 - languageName: node - linkType: hard - -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.1, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3, inherits@npm:~2.0.4": - version: 2.0.4 - resolution: "inherits@npm:2.0.4" - checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 - languageName: node - linkType: hard - -"internal-slot@npm:^1.0.3, internal-slot@npm:^1.0.4": - version: 1.0.5 - resolution: "internal-slot@npm:1.0.5" - dependencies: - get-intrinsic: "npm:^1.2.0" - has: "npm:^1.0.3" - side-channel: "npm:^1.0.4" - checksum: 10c0/66d8a66b4b5310c042e8ad00ce895dc55cb25165a3a7da0d7862ca18d69d3b1ba86511b4bf3baf4273d744d3f6e9154574af45189ef11135a444945309e39e4a - languageName: node - linkType: hard - -"ip-address@npm:^9.0.5": - version: 9.0.5 - resolution: "ip-address@npm:9.0.5" - dependencies: - jsbn: "npm:1.1.0" - sprintf-js: "npm:^1.1.3" - checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc - languageName: node - linkType: hard - -"is-arguments@npm:^1.0.4, is-arguments@npm:^1.1.1": - version: 1.1.1 - resolution: "is-arguments@npm:1.1.1" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/5ff1f341ee4475350adfc14b2328b38962564b7c2076be2f5bac7bd9b61779efba99b9f844a7b82ba7654adccf8e8eb19d1bb0cc6d1c1a085e498f6793d4328f - languageName: node - linkType: hard - -"is-array-buffer@npm:^3.0.1": - version: 3.0.1 - resolution: "is-array-buffer@npm:3.0.1" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.3" - is-typed-array: "npm:^1.1.10" - checksum: 10c0/a20fc6be40c2efa9465f56274d4ad9c13b84b5f7efe76ec4897609817f079d5e86f3b392c3a78e12d96e0151bcf23389946b0721bd00a09fc9c14905fd7edb1b - languageName: node - linkType: hard - -"is-bigint@npm:^1.0.1": - version: 1.0.4 - resolution: "is-bigint@npm:1.0.4" - dependencies: - has-bigints: "npm:^1.0.1" - checksum: 10c0/eb9c88e418a0d195ca545aff2b715c9903d9b0a5033bc5922fec600eb0c3d7b1ee7f882dbf2e0d5a6e694e42391be3683e4368737bd3c4a77f8ac293e7773696 - languageName: node - linkType: hard - -"is-binary-path@npm:~2.1.0": - version: 2.1.0 - resolution: "is-binary-path@npm:2.1.0" - dependencies: - binary-extensions: "npm:^2.0.0" - checksum: 10c0/a16eaee59ae2b315ba36fad5c5dcaf8e49c3e27318f8ab8fa3cdb8772bf559c8d1ba750a589c2ccb096113bb64497084361a25960899cb6172a6925ab6123d38 - languageName: node - linkType: hard - -"is-boolean-object@npm:^1.1.0": - version: 1.1.2 - resolution: "is-boolean-object@npm:1.1.2" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/6090587f8a8a8534c0f816da868bc94f32810f08807aa72fa7e79f7e11c466d281486ffe7a788178809c2aa71fe3e700b167fe80dd96dad68026bfff8ebf39f7 - languageName: node - linkType: hard - -"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": - version: 1.2.7 - resolution: "is-callable@npm:1.2.7" - checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f - languageName: node - linkType: hard - -"is-core-module@npm:^2.11.0, is-core-module@npm:^2.9.0": - version: 2.11.0 - resolution: "is-core-module@npm:2.11.0" - dependencies: - has: "npm:^1.0.3" - checksum: 10c0/fd8f78ef4e243c295deafa809f89381d89aff5aaf38bb63266b17ee6e34b6a051baa5bdc2365456863336d56af6a59a4c1df1256b4eff7d6b4afac618586b004 - languageName: node - linkType: hard - -"is-date-object@npm:^1.0.1, is-date-object@npm:^1.0.5": - version: 1.0.5 - resolution: "is-date-object@npm:1.0.5" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/eed21e5dcc619c48ccef804dfc83a739dbb2abee6ca202838ee1bd5f760fe8d8a93444f0d49012ad19bb7c006186e2884a1b92f6e1c056da7fd23d0a9ad5992e - languageName: node - linkType: hard - -"is-extglob@npm:^2.1.1": - version: 2.1.1 - resolution: "is-extglob@npm:2.1.1" - checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc - languageName: node - linkType: hard - -"is-generator-function@npm:^1.0.7": - version: 1.0.10 - resolution: "is-generator-function@npm:1.0.10" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/df03514df01a6098945b5a0cfa1abff715807c8e72f57c49a0686ad54b3b74d394e2d8714e6f709a71eb00c9630d48e73ca1796c1ccc84ac95092c1fecc0d98b - languageName: node - linkType: hard - -"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": - version: 4.0.3 - resolution: "is-glob@npm:4.0.3" - dependencies: - is-extglob: "npm:^2.1.1" - checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a - languageName: node - linkType: hard - -"is-lambda@npm:^1.0.1": - version: 1.0.1 - resolution: "is-lambda@npm:1.0.1" - checksum: 10c0/85fee098ae62ba6f1e24cf22678805473c7afd0fb3978a3aa260e354cb7bcb3a5806cf0a98403188465efedec41ab4348e8e4e79305d409601323855b3839d4d - languageName: node - linkType: hard - -"is-map@npm:^2.0.1, is-map@npm:^2.0.2": - version: 2.0.2 - resolution: "is-map@npm:2.0.2" - checksum: 10c0/119ff9137a37fd131a72fab3f4ab8c9d6a24b0a1ee26b4eff14dc625900d8675a97785eea5f4174265e2006ed076cc24e89f6e57ebd080a48338d914ec9168a5 - languageName: node - linkType: hard - -"is-nan@npm:^1.2.1": - version: 1.3.2 - resolution: "is-nan@npm:1.3.2" - dependencies: - call-bind: "npm:^1.0.0" - define-properties: "npm:^1.1.3" - checksum: 10c0/8bfb286f85763f9c2e28ea32e9127702fe980ffd15fa5d63ade3be7786559e6e21355d3625dd364c769c033c5aedf0a2ed3d4025d336abf1b9241e3d9eddc5b0 - languageName: node - linkType: hard - -"is-negative-zero@npm:^2.0.2": - version: 2.0.2 - resolution: "is-negative-zero@npm:2.0.2" - checksum: 10c0/eda024c158f70f2017f3415e471b818d314da5ef5be68f801b16314d4a4b6304a74cbed778acf9e2f955bb9c1c5f2935c1be0c7c99e1ad12286f45366217b6a3 - languageName: node - linkType: hard - -"is-number-object@npm:^1.0.4": - version: 1.0.7 - resolution: "is-number-object@npm:1.0.7" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b - languageName: node - linkType: hard - -"is-number@npm:^7.0.0": - version: 7.0.0 - resolution: "is-number@npm:7.0.0" - checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 - languageName: node - linkType: hard - -"is-regex@npm:^1.1.4": - version: 1.1.4 - resolution: "is-regex@npm:1.1.4" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/bb72aae604a69eafd4a82a93002058c416ace8cde95873589a97fc5dac96a6c6c78a9977d487b7b95426a8f5073969124dd228f043f9f604f041f32fcc465fc1 - languageName: node - linkType: hard - -"is-set@npm:^2.0.1, is-set@npm:^2.0.2": - version: 2.0.2 - resolution: "is-set@npm:2.0.2" - checksum: 10c0/5f8bd1880df8c0004ce694e315e6e1e47a3452014be792880bb274a3b2cdb952fdb60789636ca6e084c7947ca8b7ae03ccaf54c93a7fcfed228af810559e5432 - languageName: node - linkType: hard - -"is-shared-array-buffer@npm:^1.0.2": - version: 1.0.2 - resolution: "is-shared-array-buffer@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.2" - checksum: 10c0/cfeee6f171f1b13e6cbc6f3b6cc44e192b93df39f3fcb31aa66ffb1d2df3b91e05664311659f9701baba62f5e98c83b0673c628e7adc30f55071c4874fcdccec - languageName: node - linkType: hard - -"is-string@npm:^1.0.5, is-string@npm:^1.0.7": - version: 1.0.7 - resolution: "is-string@npm:1.0.7" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/905f805cbc6eedfa678aaa103ab7f626aac9ebbdc8737abb5243acaa61d9820f8edc5819106b8fcd1839e33db21de9f0116ae20de380c8382d16dc2a601921f6 - languageName: node - linkType: hard - -"is-symbol@npm:^1.0.2, is-symbol@npm:^1.0.3": - version: 1.0.4 - resolution: "is-symbol@npm:1.0.4" - dependencies: - has-symbols: "npm:^1.0.2" - checksum: 10c0/9381dd015f7c8906154dbcbf93fad769de16b4b961edc94f88d26eb8c555935caa23af88bda0c93a18e65560f6d7cca0fd5a3f8a8e1df6f1abbb9bead4502ef7 - languageName: node - linkType: hard - -"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.3, is-typed-array@npm:^1.1.9": - version: 1.1.10 - resolution: "is-typed-array@npm:1.1.10" - dependencies: - available-typed-arrays: "npm:^1.0.5" - call-bind: "npm:^1.0.2" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/b71268a2e5f493f2b95af4cbfe7a65254a822f07d57f20c18f084347cd45f11810915fe37d7a6831fe4b81def24621a042fd1169ec558c50f830b591bc8c1f66 - languageName: node - linkType: hard - -"is-weakmap@npm:^2.0.1": - version: 2.0.1 - resolution: "is-weakmap@npm:2.0.1" - checksum: 10c0/9c9fec9efa7bf5030a4a927f33fff2a6976b93646259f92b517d3646c073cc5b98283a162ce75c412b060a46de07032444b530f0a4c9b6e012ef8f1741c3a987 - languageName: node - linkType: hard - -"is-weakref@npm:^1.0.2": - version: 1.0.2 - resolution: "is-weakref@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.2" - checksum: 10c0/1545c5d172cb690c392f2136c23eec07d8d78a7f57d0e41f10078aa4f5daf5d7f57b6513a67514ab4f073275ad00c9822fc8935e00229d0a2089e1c02685d4b1 - languageName: node - linkType: hard - -"is-weakset@npm:^2.0.1": - version: 2.0.2 - resolution: "is-weakset@npm:2.0.2" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.1" - checksum: 10c0/ef5136bd446ae4603229b897f73efd0720c6ab3ec6cc05c8d5c4b51aa9f95164713c4cad0a22ff1fedf04865ff86cae4648bc1d5eead4b6388e1150525af1cc1 - languageName: node - linkType: hard - -"isarray@npm:^2.0.5": - version: 2.0.5 - resolution: "isarray@npm:2.0.5" - checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd - languageName: node - linkType: hard - -"isexe@npm:^2.0.0": - version: 2.0.0 - resolution: "isexe@npm:2.0.0" - checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d - languageName: node - linkType: hard - -"isexe@npm:^3.1.1": - version: 3.1.1 - resolution: "isexe@npm:3.1.1" - checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 - languageName: node - linkType: hard - -"jackspeak@npm:^2.3.6": - version: 2.3.6 - resolution: "jackspeak@npm:2.3.6" - dependencies: - "@isaacs/cliui": "npm:^8.0.2" - "@pkgjs/parseargs": "npm:^0.11.0" - dependenciesMeta: - "@pkgjs/parseargs": - optional: true - checksum: 10c0/f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111 - languageName: node - linkType: hard - -"jest-worker@npm:27.0.0-next.5": - version: 27.0.0-next.5 - resolution: "jest-worker@npm:27.0.0-next.5" - dependencies: - "@types/node": "npm:*" - merge-stream: "npm:^2.0.0" - supports-color: "npm:^8.0.0" - checksum: 10c0/e22b5378771d162d69dd4d762bde16df7cb76385baa7f014120e0234ee066b983e47afc39216aaaccd05416a2c7cb8e8d123aa1dc048066f2d435fd273ad32dd - languageName: node - linkType: hard - -"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": - version: 4.0.0 - resolution: "js-tokens@npm:4.0.0" - checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed - languageName: node - linkType: hard - -"js-yaml@npm:^3.13.1": - version: 3.14.1 - resolution: "js-yaml@npm:3.14.1" - dependencies: - argparse: "npm:^1.0.7" - esprima: "npm:^4.0.0" - bin: - js-yaml: bin/js-yaml.js - checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b - languageName: node - linkType: hard - -"jsbn@npm:1.1.0": - version: 1.1.0 - resolution: "jsbn@npm:1.1.0" - checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 - languageName: node - linkType: hard - -"json-schema-traverse@npm:^0.4.1": - version: 0.4.1 - resolution: "json-schema-traverse@npm:0.4.1" - checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce - languageName: node - linkType: hard - -"json-schema-traverse@npm:^1.0.0": - version: 1.0.0 - resolution: "json-schema-traverse@npm:1.0.0" - checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 - languageName: node - linkType: hard - -"json-stable-stringify-without-jsonify@npm:^1.0.1": - version: 1.0.1 - resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" - checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 - languageName: node - linkType: hard - -"json5@npm:^1.0.1": - version: 1.0.2 - resolution: "json5@npm:1.0.2" - dependencies: - minimist: "npm:^1.2.0" - bin: - json5: lib/cli.js - checksum: 10c0/9ee316bf21f000b00752e6c2a3b79ecf5324515a5c60ee88983a1910a45426b643a4f3461657586e8aeca87aaf96f0a519b0516d2ae527a6c3e7eed80f68717f - languageName: node - linkType: hard - -"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.3": - version: 3.3.3 - resolution: "jsx-ast-utils@npm:3.3.3" - dependencies: - array-includes: "npm:^3.1.5" - object.assign: "npm:^4.1.3" - checksum: 10c0/fb69ce100931e50d42c8f72a01495b7d090064824ce481cf7746449609c148a29aae6984624cf9066ac14bdf7978f8774461e120d5b50fa90b3bfe0a0e21ff77 - languageName: node - linkType: hard - -"language-subtag-registry@npm:~0.3.2": - version: 0.3.22 - resolution: "language-subtag-registry@npm:0.3.22" - checksum: 10c0/d1e09971260a7cd3b9fdeb190d33af0b6e99c8697013537d9aaa15f7856d9d83aee128ba8078e219df0a7cf4b8dd18d1a0c188f6543b500d92a2689d2d114b70 - languageName: node - linkType: hard - -"language-tags@npm:=1.0.5": - version: 1.0.5 - resolution: "language-tags@npm:1.0.5" - dependencies: - language-subtag-registry: "npm:~0.3.2" - checksum: 10c0/04215e821af9a8f1bc6c99ab5aa0a316c3fe1912ca3337eb28596316064bddd8edd22f2883d866069ebdf01b2002e504a760a336b2c728b6d30514e86744f76c - languageName: node - linkType: hard - -"levn@npm:^0.4.1": - version: 0.4.1 - resolution: "levn@npm:0.4.1" - dependencies: - prelude-ls: "npm:^1.2.1" - type-check: "npm:~0.4.0" - checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e - languageName: node - linkType: hard - -"lilconfig@npm:^2.0.5, lilconfig@npm:^2.0.6": - version: 2.0.6 - resolution: "lilconfig@npm:2.0.6" - checksum: 10c0/52bcb478586c629a78b9b06de72de897cd6d771725e70ee91ec16605721afebf43cf54b4d20b6bf904ca70877ddd9531b9578494c694072d1573a6d4aba1545a - languageName: node - linkType: hard - -"loader-utils@npm:1.2.3": - version: 1.2.3 - resolution: "loader-utils@npm:1.2.3" - dependencies: - big.js: "npm:^5.2.2" - emojis-list: "npm:^2.0.0" - json5: "npm:^1.0.1" - checksum: 10c0/b4242988adf5d50e7a3dd7b2f0c7b6534ea580a27ae4f8ba226aea3219d8a72ffb6d1a9b200fc8e0435e38a22bce740b094f57be8d0142a3f1a75e610159235b - languageName: node - linkType: hard - -"locate-path@npm:^5.0.0": - version: 5.0.0 - resolution: "locate-path@npm:5.0.0" - dependencies: - p-locate: "npm:^4.1.0" - checksum: 10c0/33a1c5247e87e022f9713e6213a744557a3e9ec32c5d0b5efb10aa3a38177615bf90221a5592674857039c1a0fd2063b82f285702d37b792d973e9e72ace6c59 - languageName: node - linkType: hard - -"lodash.debounce@npm:^4.0.8": - version: 4.0.8 - resolution: "lodash.debounce@npm:4.0.8" - checksum: 10c0/762998a63e095412b6099b8290903e0a8ddcb353ac6e2e0f2d7e7d03abd4275fe3c689d88960eb90b0dde4f177554d51a690f22a343932ecbc50a5d111849987 - languageName: node - linkType: hard - -"lodash.merge@npm:^4.6.2": - version: 4.6.2 - resolution: "lodash.merge@npm:4.6.2" - checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 - languageName: node - linkType: hard - -"lodash.sortby@npm:^4.7.0": - version: 4.7.0 - resolution: "lodash.sortby@npm:4.7.0" - checksum: 10c0/fc48fb54ff7669f33bb32997cab9460757ee99fafaf72400b261c3e10fde21538e47d8cfcbe6a25a31bcb5b7b727c27d52626386fc2de24eb059a6d64a89cdf5 - languageName: node - linkType: hard - -"lodash.startcase@npm:^4.4.0": - version: 4.4.0 - resolution: "lodash.startcase@npm:4.4.0" - checksum: 10c0/bd82aa87a45de8080e1c5ee61128c7aee77bf7f1d86f4ff94f4a6d7438fc9e15e5f03374b947be577a93804c8ad6241f0251beaf1452bf716064eeb657b3a9f0 - languageName: node - linkType: hard - -"lodash.throttle@npm:^4.1.1": - version: 4.1.1 - resolution: "lodash.throttle@npm:4.1.1" - checksum: 10c0/14628013e9e7f65ac904fc82fd8ecb0e55a9c4c2416434b1dd9cf64ae70a8937f0b15376a39a68248530adc64887ed0fe2b75204b2c9ec3eea1cb2d66ddd125d - languageName: node - linkType: hard - -"lodash.truncate@npm:^4.4.2": - version: 4.4.2 - resolution: "lodash.truncate@npm:4.4.2" - checksum: 10c0/4e870d54e8a6c86c8687e057cec4069d2e941446ccab7f40b4d9555fa5872d917d0b6aa73bece7765500a3123f1723bcdba9ae881b679ef120bba9e1a0b0ed70 - languageName: node - linkType: hard - -"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": - version: 1.4.0 - resolution: "loose-envify@npm:1.4.0" - dependencies: - js-tokens: "npm:^3.0.0 || ^4.0.0" - bin: - loose-envify: cli.js - checksum: 10c0/655d110220983c1a4b9c0c679a2e8016d4b67f6e9c7b5435ff5979ecdb20d0813f4dec0a08674fcbdd4846a3f07edbb50a36811fd37930b94aaa0d9daceb017e - languageName: node - linkType: hard - -"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": - version: 10.2.0 - resolution: "lru-cache@npm:10.2.0" - checksum: 10c0/c9847612aa2daaef102d30542a8d6d9b2c2bb36581c1bf0dc3ebf5e5f3352c772a749e604afae2e46873b930a9e9523743faac4e5b937c576ab29196774712ee - languageName: node - linkType: hard - -"lru-cache@npm:^6.0.0": - version: 6.0.0 - resolution: "lru-cache@npm:6.0.0" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9 - languageName: node - linkType: hard - -"make-dir@npm:^3.0.2": - version: 3.1.0 - resolution: "make-dir@npm:3.1.0" - dependencies: - semver: "npm:^6.0.0" - checksum: 10c0/56aaafefc49c2dfef02c5c95f9b196c4eb6988040cf2c712185c7fe5c99b4091591a7fc4d4eafaaefa70ff763a26f6ab8c3ff60b9e75ea19876f49b18667ecaa - languageName: node - linkType: hard - -"make-fetch-happen@npm:^13.0.0": - version: 13.0.0 - resolution: "make-fetch-happen@npm:13.0.0" - dependencies: - "@npmcli/agent": "npm:^2.0.0" - cacache: "npm:^18.0.0" - http-cache-semantics: "npm:^4.1.1" - is-lambda: "npm:^1.0.1" - minipass: "npm:^7.0.2" - minipass-fetch: "npm:^3.0.0" - minipass-flush: "npm:^1.0.5" - minipass-pipeline: "npm:^1.2.4" - negotiator: "npm:^0.6.3" - promise-retry: "npm:^2.0.1" - ssri: "npm:^10.0.0" - checksum: 10c0/43b9f6dcbc6fe8b8604cb6396957c3698857a15ba4dbc38284f7f0e61f248300585ef1eb8cc62df54e9c724af977e45b5cdfd88320ef7f53e45070ed3488da55 - languageName: node - linkType: hard - -"md5.js@npm:^1.3.4": - version: 1.3.5 - resolution: "md5.js@npm:1.3.5" - dependencies: - hash-base: "npm:^3.0.0" - inherits: "npm:^2.0.1" - safe-buffer: "npm:^5.1.2" - checksum: 10c0/b7bd75077f419c8e013fc4d4dada48be71882e37d69a44af65a2f2804b91e253441eb43a0614423a1c91bb830b8140b0dc906bc797245e2e275759584f4efcc5 - languageName: node - linkType: hard - -"merge-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "merge-stream@npm:2.0.0" - checksum: 10c0/867fdbb30a6d58b011449b8885601ec1690c3e41c759ecd5a9d609094f7aed0096c37823ff4a7190ef0b8f22cc86beb7049196ff68c016e3b3c671d0dac91ce5 - languageName: node - linkType: hard - -"merge2@npm:^1.3.0, merge2@npm:^1.4.1": - version: 1.4.1 - resolution: "merge2@npm:1.4.1" - checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb - languageName: node - linkType: hard - -"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": - version: 4.0.5 - resolution: "micromatch@npm:4.0.5" - dependencies: - braces: "npm:^3.0.2" - picomatch: "npm:^2.3.1" - checksum: 10c0/3d6505b20f9fa804af5d8c596cb1c5e475b9b0cd05f652c5b56141cf941bd72adaeb7a436fda344235cef93a7f29b7472efc779fcdb83b478eab0867b95cdeff - languageName: node - linkType: hard - -"miller-rabin@npm:^4.0.0": - version: 4.0.1 - resolution: "miller-rabin@npm:4.0.1" - dependencies: - bn.js: "npm:^4.0.0" - brorand: "npm:^1.0.1" - bin: - miller-rabin: bin/miller-rabin - checksum: 10c0/26b2b96f6e49dbcff7faebb78708ed2f5f9ae27ac8cbbf1d7c08f83cf39bed3d418c0c11034dce997da70d135cc0ff6f3a4c15dc452f8e114c11986388a64346 - languageName: node - linkType: hard - -"minimalistic-assert@npm:^1.0.0, minimalistic-assert@npm:^1.0.1": - version: 1.0.1 - resolution: "minimalistic-assert@npm:1.0.1" - checksum: 10c0/96730e5601cd31457f81a296f521eb56036e6f69133c0b18c13fe941109d53ad23a4204d946a0d638d7f3099482a0cec8c9bb6d642604612ce43ee536be3dddd - languageName: node - linkType: hard - -"minimalistic-crypto-utils@npm:^1.0.1": - version: 1.0.1 - resolution: "minimalistic-crypto-utils@npm:1.0.1" - checksum: 10c0/790ecec8c5c73973a4fbf2c663d911033e8494d5fb0960a4500634766ab05d6107d20af896ca2132e7031741f19888154d44b2408ada0852446705441383e9f8 - languageName: node - linkType: hard - -"minimatch@npm:^3.0.4, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": - version: 3.1.2 - resolution: "minimatch@npm:3.1.2" - dependencies: - brace-expansion: "npm:^1.1.7" - checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 - languageName: node - linkType: hard - -"minimatch@npm:^9.0.1": - version: 9.0.4 - resolution: "minimatch@npm:9.0.4" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10c0/2c16f21f50e64922864e560ff97c587d15fd491f65d92a677a344e970fe62aafdbeafe648965fa96d33c061b4d0eabfe0213466203dd793367e7f28658cf6414 - languageName: node - linkType: hard - -"minimist@npm:^1.2.0, minimist@npm:^1.2.6": - version: 1.2.8 - resolution: "minimist@npm:1.2.8" - checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 - languageName: node - linkType: hard - -"minipass-collect@npm:^2.0.1": - version: 2.0.1 - resolution: "minipass-collect@npm:2.0.1" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e - languageName: node - linkType: hard - -"minipass-fetch@npm:^3.0.0": - version: 3.0.4 - resolution: "minipass-fetch@npm:3.0.4" - dependencies: - encoding: "npm:^0.1.13" - minipass: "npm:^7.0.3" - minipass-sized: "npm:^1.0.3" - minizlib: "npm:^2.1.2" - dependenciesMeta: - encoding: - optional: true - checksum: 10c0/1b63c1f3313e88eeac4689f1b71c9f086598db9a189400e3ee960c32ed89e06737fa23976c9305c2d57464fb3fcdc12749d3378805c9d6176f5569b0d0ee8a75 - languageName: node - linkType: hard - -"minipass-flush@npm:^1.0.5": - version: 1.0.5 - resolution: "minipass-flush@npm:1.0.5" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd - languageName: node - linkType: hard - -"minipass-pipeline@npm:^1.2.4": - version: 1.2.4 - resolution: "minipass-pipeline@npm:1.2.4" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 - languageName: node - linkType: hard - -"minipass-sized@npm:^1.0.3": - version: 1.0.3 - resolution: "minipass-sized@npm:1.0.3" - dependencies: - minipass: "npm:^3.0.0" - checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb - languageName: node - linkType: hard - -"minipass@npm:^3.0.0": - version: 3.3.6 - resolution: "minipass@npm:3.3.6" - dependencies: - yallist: "npm:^4.0.0" - checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c - languageName: node - linkType: hard - -"minipass@npm:^5.0.0": - version: 5.0.0 - resolution: "minipass@npm:5.0.0" - checksum: 10c0/a91d8043f691796a8ac88df039da19933ef0f633e3d7f0d35dcd5373af49131cf2399bfc355f41515dc495e3990369c3858cd319e5c2722b4753c90bf3152462 - languageName: node - linkType: hard - -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4": - version: 7.0.4 - resolution: "minipass@npm:7.0.4" - checksum: 10c0/6c7370a6dfd257bf18222da581ba89a5eaedca10e158781232a8b5542a90547540b4b9b7e7f490e4cda43acfbd12e086f0453728ecf8c19e0ef6921bc5958ac5 - languageName: node - linkType: hard - -"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": - version: 2.1.2 - resolution: "minizlib@npm:2.1.2" - dependencies: - minipass: "npm:^3.0.0" - yallist: "npm:^4.0.0" - checksum: 10c0/64fae024e1a7d0346a1102bb670085b17b7f95bf6cfdf5b128772ec8faf9ea211464ea4add406a3a6384a7d87a0cd1a96263692134323477b4fb43659a6cab78 - languageName: node - linkType: hard - -"mkdirp@npm:^1.0.3": - version: 1.0.4 - resolution: "mkdirp@npm:1.0.4" - bin: - mkdirp: bin/cmd.js - checksum: 10c0/46ea0f3ffa8bc6a5bc0c7081ffc3907777f0ed6516888d40a518c5111f8366d97d2678911ad1a6882bf592fa9de6c784fea32e1687bb94e1f4944170af48a5cf - languageName: node - linkType: hard - -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 10c0/f8fda810b39fd7255bbdc451c46286e549794fcc700dc9cd1d25658bbc4dc2563a5de6fe7c60f798a16a60c6ceb53f033cb353f493f0cf63e5199b702943159d - languageName: node - linkType: hard - -"ms@npm:2.1.2": - version: 2.1.2 - resolution: "ms@npm:2.1.2" - checksum: 10c0/a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc - languageName: node - linkType: hard - -"ms@npm:^2.1.1": - version: 2.1.3 - resolution: "ms@npm:2.1.3" - checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 - languageName: node - linkType: hard - -"nanoid@npm:^3.1.23, nanoid@npm:^3.3.4": - version: 3.3.4 - resolution: "nanoid@npm:3.3.4" - bin: - nanoid: bin/nanoid.cjs - checksum: 10c0/a0747d5c6021828fe8d38334e5afb05d3268d7d4b06024058ec894ccc47070e4e81d268a6b75488d2ff3485fa79a75c251d4b7c6f31051bb54bb662b6fd2a27d - languageName: node - linkType: hard - -"natural-compare@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare@npm:1.4.0" - checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 - languageName: node - linkType: hard - -"negotiator@npm:^0.6.3": - version: 0.6.3 - resolution: "negotiator@npm:0.6.3" - checksum: 10c0/3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2 - languageName: node - linkType: hard - -"next@npm:12.0.7": - version: 12.0.7 - resolution: "next@npm:12.0.7" - dependencies: - "@babel/runtime": "npm:7.15.4" - "@hapi/accept": "npm:5.0.2" - "@napi-rs/triples": "npm:1.0.3" - "@next/env": "npm:12.0.7" - "@next/polyfill-module": "npm:12.0.7" - "@next/react-dev-overlay": "npm:12.0.7" - "@next/react-refresh-utils": "npm:12.0.7" - "@next/swc-android-arm64": "npm:12.0.7" - "@next/swc-darwin-arm64": "npm:12.0.7" - "@next/swc-darwin-x64": "npm:12.0.7" - "@next/swc-linux-arm-gnueabihf": "npm:12.0.7" - "@next/swc-linux-arm64-gnu": "npm:12.0.7" - "@next/swc-linux-arm64-musl": "npm:12.0.7" - "@next/swc-linux-x64-gnu": "npm:12.0.7" - "@next/swc-linux-x64-musl": "npm:12.0.7" - "@next/swc-win32-arm64-msvc": "npm:12.0.7" - "@next/swc-win32-ia32-msvc": "npm:12.0.7" - "@next/swc-win32-x64-msvc": "npm:12.0.7" - acorn: "npm:8.5.0" - assert: "npm:2.0.0" - browserify-zlib: "npm:0.2.0" - browserslist: "npm:4.16.6" - buffer: "npm:5.6.0" - caniuse-lite: "npm:^1.0.30001228" - chalk: "npm:2.4.2" - chokidar: "npm:3.5.1" - constants-browserify: "npm:1.0.0" - crypto-browserify: "npm:3.12.0" - cssnano-simple: "npm:3.0.0" - domain-browser: "npm:4.19.0" - encoding: "npm:0.1.13" - etag: "npm:1.8.1" - events: "npm:3.3.0" - find-cache-dir: "npm:3.3.1" - get-orientation: "npm:1.1.2" - https-browserify: "npm:1.0.0" - image-size: "npm:1.0.0" - jest-worker: "npm:27.0.0-next.5" - node-fetch: "npm:2.6.1" - node-html-parser: "npm:1.4.9" - os-browserify: "npm:0.3.0" - p-limit: "npm:3.1.0" - path-browserify: "npm:1.0.1" - postcss: "npm:8.2.15" - process: "npm:0.11.10" - querystring-es3: "npm:0.2.1" - raw-body: "npm:2.4.1" - react-is: "npm:17.0.2" - react-refresh: "npm:0.8.3" - regenerator-runtime: "npm:0.13.4" - stream-browserify: "npm:3.0.0" - stream-http: "npm:3.1.1" - string_decoder: "npm:1.3.0" - styled-jsx: "npm:5.0.0-beta.3" - timers-browserify: "npm:2.0.12" - tty-browserify: "npm:0.0.1" - use-subscription: "npm:1.5.1" - util: "npm:0.12.4" - vm-browserify: "npm:1.1.2" - watchpack: "npm:2.3.0" - peerDependencies: - fibers: ">= 3.1.0" - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 - react: ^17.0.2 || ^18.0.0-0 - react-dom: ^17.0.2 || ^18.0.0-0 - sass: ^1.3.0 - dependenciesMeta: - "@next/swc-android-arm64": - optional: true - "@next/swc-darwin-arm64": - optional: true - "@next/swc-darwin-x64": - optional: true - "@next/swc-linux-arm-gnueabihf": - optional: true - "@next/swc-linux-arm64-gnu": - optional: true - "@next/swc-linux-arm64-musl": - optional: true - "@next/swc-linux-x64-gnu": - optional: true - "@next/swc-linux-x64-musl": - optional: true - "@next/swc-win32-arm64-msvc": - optional: true - "@next/swc-win32-ia32-msvc": - optional: true - "@next/swc-win32-x64-msvc": - optional: true - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - bin: - next: dist/bin/next - checksum: 10c0/3bb51d83f61ea8cbffaa31f68e162a7abb11b8f11015d88e40cc577ca6dc65b3d50d5f855b6c9ee9f5e13773297778d813868bea52554ba936374314630a523a - languageName: node - linkType: hard - -"nitsig-popup@workspace:.": - version: 0.0.0-use.local - resolution: "nitsig-popup@workspace:." - dependencies: - "@codemirror/lang-css": "npm:^6.0.1" - "@radix-ui/react-checkbox": "npm:^0.1.4" - "@radix-ui/react-icons": "npm:^1.0.3" - "@radix-ui/react-separator": "npm:^0.1.3" - "@radix-ui/react-slider": "npm:^0.1.3" - "@radix-ui/react-switch": "npm:^0.1.4" - "@radix-ui/react-toggle": "npm:^0.1.3" - "@stitches/react": "npm:^1.2.6" - "@uiw/react-codemirror": "npm:^4.19.6" - autoprefixer: "npm:^10.4.1" - eslint: "npm:7.32.0" - eslint-config-next: "npm:12.0.7" - lodash.debounce: "npm:^4.0.8" - lodash.startcase: "npm:^4.4.0" - lodash.throttle: "npm:^4.1.1" - next: "npm:12.0.7" - postcss: "npm:^8.4.5" - react: "npm:17.0.2" - react-dom: "npm:17.0.2" - react-hot-toast: "npm:^2.4.1" - tailwindcss: "npm:^3.0.12" - languageName: unknown - linkType: soft - -"node-fetch@npm:2.6.1": - version: 2.6.1 - resolution: "node-fetch@npm:2.6.1" - checksum: 10c0/c58586d121782df045681e29608f940be90c7d8c4cada29957c148cfcc5e2d81d74b690cf10ee6879ed055da7ea821450a74ff43f3bde651cf6c8a5f34a77e2a - languageName: node - linkType: hard - -"node-gyp@npm:latest": - version: 10.1.0 - resolution: "node-gyp@npm:10.1.0" - dependencies: - env-paths: "npm:^2.2.0" - exponential-backoff: "npm:^3.1.1" - glob: "npm:^10.3.10" - graceful-fs: "npm:^4.2.6" - make-fetch-happen: "npm:^13.0.0" - nopt: "npm:^7.0.0" - proc-log: "npm:^3.0.0" - semver: "npm:^7.3.5" - tar: "npm:^6.1.2" - which: "npm:^4.0.0" - bin: - node-gyp: bin/node-gyp.js - checksum: 10c0/9cc821111ca244a01fb7f054db7523ab0a0cd837f665267eb962eb87695d71fb1e681f9e21464cc2fd7c05530dc4c81b810bca1a88f7d7186909b74477491a3c - languageName: node - linkType: hard - -"node-html-parser@npm:1.4.9": - version: 1.4.9 - resolution: "node-html-parser@npm:1.4.9" - dependencies: - he: "npm:1.2.0" - checksum: 10c0/964610cdf9fe6fbf8be9e4f2371dad052ec46a99e6591993ffa3bbaac7c75bdc97b583ecbb86ae53bfced7a3570d83d798206af99a180eb02cbc420a727f131d - languageName: node - linkType: hard - -"node-releases@npm:^1.1.71": - version: 1.1.77 - resolution: "node-releases@npm:1.1.77" - checksum: 10c0/e7477dd1201d32f2169988665f6e5b3b779f3c582decae4a1ab119dc8a8e3a28b3118c386b3c2e8c5a55c415066fe82c77e976979ad4e742ee14483d62f3f3a5 - languageName: node - linkType: hard - -"node-releases@npm:^2.0.8": - version: 2.0.10 - resolution: "node-releases@npm:2.0.10" - checksum: 10c0/90947653e8e3d85bda4bcbf28d019693ccfb5d5947838ca64e91208b51d7bfc13ba930b8216389a4faffbad8145b2c616bf1f7a09c97a1a9ac57fd6ef6d01c5c - languageName: node - linkType: hard - -"nopt@npm:^7.0.0": - version: 7.2.0 - resolution: "nopt@npm:7.2.0" - dependencies: - abbrev: "npm:^2.0.0" - bin: - nopt: bin/nopt.js - checksum: 10c0/9bd7198df6f16eb29ff16892c77bcf7f0cc41f9fb5c26280ac0def2cf8cf319f3b821b3af83eba0e74c85807cc430a16efe0db58fe6ae1f41e69519f585b6aff - languageName: node - linkType: hard - -"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": - version: 3.0.0 - resolution: "normalize-path@npm:3.0.0" - checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046 - languageName: node - linkType: hard - -"normalize-range@npm:^0.1.2": - version: 0.1.2 - resolution: "normalize-range@npm:0.1.2" - checksum: 10c0/bf39b73a63e0a42ad1a48c2bd1bda5a07ede64a7e2567307a407674e595bcff0fa0d57e8e5f1e7fa5e91000797c7615e13613227aaaa4d6d6e87f5bd5cc95de6 - languageName: node - linkType: hard - -"object-assign@npm:^4.1.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414 - languageName: node - linkType: hard - -"object-hash@npm:^3.0.0": - version: 3.0.0 - resolution: "object-hash@npm:3.0.0" - checksum: 10c0/a06844537107b960c1c8b96cd2ac8592a265186bfa0f6ccafe0d34eabdb526f6fa81da1f37c43df7ed13b12a4ae3457a16071603bcd39d8beddb5f08c37b0f47 - languageName: node - linkType: hard - -"object-inspect@npm:^1.12.2, object-inspect@npm:^1.9.0": - version: 1.12.3 - resolution: "object-inspect@npm:1.12.3" - checksum: 10c0/752bb5f4dc595e214157ea8f442adb77bdb850ace762b078d151d8b6486331ab12364997a89ee6509be1023b15adf2b3774437a7105f8a5043dfda11ed622411 - languageName: node - linkType: hard - -"object-is@npm:^1.0.1, object-is@npm:^1.1.5": - version: 1.1.5 - resolution: "object-is@npm:1.1.5" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - checksum: 10c0/8c263fb03fc28f1ffb54b44b9147235c5e233dc1ca23768e7d2569740b5d860154d7cc29a30220fe28ed6d8008e2422aefdebfe987c103e1c5d190cf02d9d886 - languageName: node - linkType: hard - -"object-keys@npm:^1.1.1": - version: 1.1.1 - resolution: "object-keys@npm:1.1.1" - checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d - languageName: node - linkType: hard - -"object.assign@npm:^4.1.3, object.assign@npm:^4.1.4": - version: 4.1.4 - resolution: "object.assign@npm:4.1.4" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - has-symbols: "npm:^1.0.3" - object-keys: "npm:^1.1.1" - checksum: 10c0/2f286118c023e557757620e647b02e7c88d3d417e0c568fca0820de8ec9cca68928304854d5b03e99763eddad6e78a6716e2930f7e6372e4b9b843f3fd3056f3 - languageName: node - linkType: hard - -"object.entries@npm:^1.1.6": - version: 1.1.6 - resolution: "object.entries@npm:1.1.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - checksum: 10c0/8782c71db3a068ccbae9e0541e6b4ac2c25dc67c63f97b7e6ad3c88271d7820197e7398e37747f96542ed47c27f0b81148cdf14c42df15dc22f64818ae7bb5bf - languageName: node - linkType: hard - -"object.fromentries@npm:^2.0.6": - version: 2.0.6 - resolution: "object.fromentries@npm:2.0.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - checksum: 10c0/db6759ea68131cbdb70b1152f9984b49db03e81de4f6de079b39929bebd8b45501e5333ca2351991e07ee56f4651606c023396644e8f25c0806fa39a26c4c6e6 - languageName: node - linkType: hard - -"object.hasown@npm:^1.1.2": - version: 1.1.2 - resolution: "object.hasown@npm:1.1.2" - dependencies: - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - checksum: 10c0/419fc1c74a2aea7ebb4d49b79d5b1599a010b26c18eae35bd061ccdd013ccb749c499d8dd6ee21a91e6d7264ccc592573d0f13562970f76e25fc844d8c1b02ce - languageName: node - linkType: hard - -"object.values@npm:^1.1.6": - version: 1.1.6 - resolution: "object.values@npm:1.1.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - checksum: 10c0/3381204390f10c9f653a4875a50d221c67b5c16cb80a6ac06c706fc82a7cad8400857d4c7a0731193b0abb56b84fe803eabcf7addcf32de76397bbf207e68c66 - languageName: node - linkType: hard - -"once@npm:^1.3.0": - version: 1.4.0 - resolution: "once@npm:1.4.0" - dependencies: - wrappy: "npm:1" - checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 - languageName: node - linkType: hard - -"optionator@npm:^0.9.1": - version: 0.9.1 - resolution: "optionator@npm:0.9.1" - dependencies: - deep-is: "npm:^0.1.3" - fast-levenshtein: "npm:^2.0.6" - levn: "npm:^0.4.1" - prelude-ls: "npm:^1.2.1" - type-check: "npm:^0.4.0" - word-wrap: "npm:^1.2.3" - checksum: 10c0/8b574d50b032f34713dc09bfacdc351824f713c3c80773ead3a05ab977364de88f2f3962a6f15437747b93a5e0636928253949970daea3aaeeefbd3a525da6a4 - languageName: node - linkType: hard - -"os-browserify@npm:0.3.0": - version: 0.3.0 - resolution: "os-browserify@npm:0.3.0" - checksum: 10c0/6ff32cb1efe2bc6930ad0fd4c50e30c38010aee909eba8d65be60af55efd6cbb48f0287e3649b4e3f3a63dce5a667b23c187c4293a75e557f0d5489d735bcf52 - languageName: node - linkType: hard - -"p-limit@npm:3.1.0": - version: 3.1.0 - resolution: "p-limit@npm:3.1.0" - dependencies: - yocto-queue: "npm:^0.1.0" - checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a - languageName: node - linkType: hard - -"p-limit@npm:^2.2.0": - version: 2.3.0 - resolution: "p-limit@npm:2.3.0" - dependencies: - p-try: "npm:^2.0.0" - checksum: 10c0/8da01ac53efe6a627080fafc127c873da40c18d87b3f5d5492d465bb85ec7207e153948df6b9cbaeb130be70152f874229b8242ee2be84c0794082510af97f12 - languageName: node - linkType: hard - -"p-locate@npm:^4.1.0": - version: 4.1.0 - resolution: "p-locate@npm:4.1.0" - dependencies: - p-limit: "npm:^2.2.0" - checksum: 10c0/1b476ad69ad7f6059744f343b26d51ce091508935c1dbb80c4e0a2f397ffce0ca3a1f9f5cd3c7ce19d7929a09719d5c65fe70d8ee289c3f267cd36f2881813e9 - languageName: node - linkType: hard - -"p-map@npm:^4.0.0": - version: 4.0.0 - resolution: "p-map@npm:4.0.0" - dependencies: - aggregate-error: "npm:^3.0.0" - checksum: 10c0/592c05bd6262c466ce269ff172bb8de7c6975afca9b50c975135b974e9bdaafbfe80e61aaaf5be6d1200ba08b30ead04b88cfa7e25ff1e3b93ab28c9f62a2c75 - languageName: node - linkType: hard - -"p-try@npm:^2.0.0": - version: 2.2.0 - resolution: "p-try@npm:2.2.0" - checksum: 10c0/c36c19907734c904b16994e6535b02c36c2224d433e01a2f1ab777237f4d86e6289fd5fd464850491e940379d4606ed850c03e0f9ab600b0ebddb511312e177f - languageName: node - linkType: hard - -"pako@npm:~1.0.5": - version: 1.0.11 - resolution: "pako@npm:1.0.11" - checksum: 10c0/86dd99d8b34c3930345b8bbeb5e1cd8a05f608eeb40967b293f72fe469d0e9c88b783a8777e4cc7dc7c91ce54c5e93d88ff4b4f060e6ff18408fd21030d9ffbe - languageName: node - linkType: hard - -"parent-module@npm:^1.0.0": - version: 1.0.1 - resolution: "parent-module@npm:1.0.1" - dependencies: - callsites: "npm:^3.0.0" - checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 - languageName: node - linkType: hard - -"parse-asn1@npm:^5.0.0, parse-asn1@npm:^5.1.5": - version: 5.1.6 - resolution: "parse-asn1@npm:5.1.6" - dependencies: - asn1.js: "npm:^5.2.0" - browserify-aes: "npm:^1.0.0" - evp_bytestokey: "npm:^1.0.0" - pbkdf2: "npm:^3.0.3" - safe-buffer: "npm:^5.1.1" - checksum: 10c0/4ed1d9b9e120c5484d29d67bb90171aac0b73422bc016d6294160aea983275c28a27ab85d862059a36a86a97dd31b7ddd97486802ca9fac67115fe3409e9dcbd - languageName: node - linkType: hard - -"path-browserify@npm:1.0.1": - version: 1.0.1 - resolution: "path-browserify@npm:1.0.1" - checksum: 10c0/8b8c3fd5c66bd340272180590ae4ff139769e9ab79522e2eb82e3d571a89b8117c04147f65ad066dccfb42fcad902e5b7d794b3d35e0fd840491a8ddbedf8c66 - languageName: node - linkType: hard - -"path-exists@npm:^4.0.0": - version: 4.0.0 - resolution: "path-exists@npm:4.0.0" - checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b - languageName: node - linkType: hard - -"path-is-absolute@npm:^1.0.0": - version: 1.0.1 - resolution: "path-is-absolute@npm:1.0.1" - checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 - languageName: node - linkType: hard - -"path-key@npm:^3.1.0": - version: 3.1.1 - resolution: "path-key@npm:3.1.1" - checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c - languageName: node - linkType: hard - -"path-parse@npm:^1.0.7": - version: 1.0.7 - resolution: "path-parse@npm:1.0.7" - checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 - languageName: node - linkType: hard - -"path-scurry@npm:^1.10.2": - version: 1.10.2 - resolution: "path-scurry@npm:1.10.2" - dependencies: - lru-cache: "npm:^10.2.0" - minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" - checksum: 10c0/d723777fbf9627f201e64656680f66ebd940957eebacf780e6cce1c2919c29c116678b2d7dbf8821b3a2caa758d125f4444005ccec886a25c8f324504e48e601 - languageName: node - linkType: hard - -"path-type@npm:^4.0.0": - version: 4.0.0 - resolution: "path-type@npm:4.0.0" - checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c - languageName: node - linkType: hard - -"pbkdf2@npm:^3.0.3": - version: 3.1.2 - resolution: "pbkdf2@npm:3.1.2" - dependencies: - create-hash: "npm:^1.1.2" - create-hmac: "npm:^1.1.4" - ripemd160: "npm:^2.0.1" - safe-buffer: "npm:^5.0.1" - sha.js: "npm:^2.4.8" - checksum: 10c0/5a30374e87d33fa080a92734d778cf172542cc7e41b96198c4c88763997b62d7850de3fbda5c3111ddf79805ee7c1da7046881c90ac4920b5e324204518b05fd - languageName: node - linkType: hard - -"picocolors@npm:^1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: 10c0/20a5b249e331c14479d94ec6817a182fd7a5680debae82705747b2db7ec50009a5f6648d0621c561b0572703f84dbef0858abcbd5856d3c5511426afcb1961f7 - languageName: node - linkType: hard - -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1": - version: 2.3.1 - resolution: "picomatch@npm:2.3.1" - checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be - languageName: node - linkType: hard - -"pify@npm:^2.3.0": - version: 2.3.0 - resolution: "pify@npm:2.3.0" - checksum: 10c0/551ff8ab830b1052633f59cb8adc9ae8407a436e06b4a9718bcb27dc5844b83d535c3a8512b388b6062af65a98c49bdc0dd523d8b2617b188f7c8fee457158dc - languageName: node - linkType: hard - -"pkg-dir@npm:^4.1.0": - version: 4.2.0 - resolution: "pkg-dir@npm:4.2.0" - dependencies: - find-up: "npm:^4.0.0" - checksum: 10c0/c56bda7769e04907a88423feb320babaed0711af8c436ce3e56763ab1021ba107c7b0cafb11cde7529f669cfc22bffcaebffb573645cbd63842ea9fb17cd7728 - languageName: node - linkType: hard - -"platform@npm:1.3.6": - version: 1.3.6 - resolution: "platform@npm:1.3.6" - checksum: 10c0/69f2eb692e15f1a343dd0d9347babd9ca933824c8673096be746ff66f99f2bdc909fadd8609076132e6ec768349080babb7362299f2a7f885b98f1254ae6224b - languageName: node - linkType: hard - -"postcss-import@npm:^14.1.0": - version: 14.1.0 - resolution: "postcss-import@npm:14.1.0" - dependencies: - postcss-value-parser: "npm:^4.0.0" - read-cache: "npm:^1.0.0" - resolve: "npm:^1.1.7" - peerDependencies: - postcss: ^8.0.0 - checksum: 10c0/0552f48b6849d48b25213e8bfb4b2ae10fcf061224ba17b5c008d8b8de69b9b85442bff6c7ac2a313aec32f14fd000f57720b06f82dc6e9f104405b221a741db - languageName: node - linkType: hard - -"postcss-js@npm:^4.0.0": - version: 4.0.1 - resolution: "postcss-js@npm:4.0.1" - dependencies: - camelcase-css: "npm:^2.0.1" - peerDependencies: - postcss: ^8.4.21 - checksum: 10c0/af35d55cb873b0797d3b42529514f5318f447b134541844285c9ac31a17497297eb72296902967911bb737a75163441695737300ce2794e3bd8c70c13a3b106e - languageName: node - linkType: hard - -"postcss-load-config@npm:^3.1.4": - version: 3.1.4 - resolution: "postcss-load-config@npm:3.1.4" - dependencies: - lilconfig: "npm:^2.0.5" - yaml: "npm:^1.10.2" - peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - checksum: 10c0/7d2cc6695c2fc063e4538316d651a687fdb55e48db453ff699de916a6ee55ab68eac2b120c28a6b8ca7aa746a588888351b810a215b5cd090eabea62c5762ede - languageName: node - linkType: hard - -"postcss-nested@npm:6.0.0": - version: 6.0.0 - resolution: "postcss-nested@npm:6.0.0" - dependencies: - postcss-selector-parser: "npm:^6.0.10" - peerDependencies: - postcss: ^8.2.14 - checksum: 10c0/354ffeab951ac816e3e29dfc958194b7b2f3c749b7af9218a99a7c8ebd5cad7c04fa31b7929024a2f0855c82f02e41994f5409d6377cb97421b53a917bbbad14 - languageName: node - linkType: hard - -"postcss-selector-parser@npm:^6.0.10, postcss-selector-parser@npm:^6.0.11": - version: 6.0.11 - resolution: "postcss-selector-parser@npm:6.0.11" - dependencies: - cssesc: "npm:^3.0.0" - util-deprecate: "npm:^1.0.2" - checksum: 10c0/70be26abb75dec3c51be312a086e640aee4a32f18114cfbdf8feac0b6373a5494b5571370ab158174e1d692afc50c198d799ae9759afe5da1da1e629e465112c - languageName: node - linkType: hard - -"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.2.0": - version: 4.2.0 - resolution: "postcss-value-parser@npm:4.2.0" - checksum: 10c0/f4142a4f56565f77c1831168e04e3effd9ffcc5aebaf0f538eee4b2d465adfd4b85a44257bb48418202a63806a7da7fe9f56c330aebb3cac898e46b4cbf49161 - languageName: node - linkType: hard - -"postcss@npm:8.2.15": - version: 8.2.15 - resolution: "postcss@npm:8.2.15" - dependencies: - colorette: "npm:^1.2.2" - nanoid: "npm:^3.1.23" - source-map: "npm:^0.6.1" - checksum: 10c0/fa291ba310c9a2bc62818f474305df8f6c141986945a44f233c60819468390243567990d443fee8effb95c32504b1e41b3e1761f296f56cbb3a95ba1a73fee6f - languageName: node - linkType: hard - -"postcss@npm:^8.0.9, postcss@npm:^8.4.5": - version: 8.4.21 - resolution: "postcss@npm:8.4.21" - dependencies: - nanoid: "npm:^3.3.4" - picocolors: "npm:^1.0.0" - source-map-js: "npm:^1.0.2" - checksum: 10c0/a26e7cc86a1807d624d9965914c26c20faa3f237184cbd69db537387f6a4f62df97347549144284d47e9e8e27e7c60e797cb3b92ad36cb2f4c3c9cb3b73f9758 - languageName: node - linkType: hard - -"prelude-ls@npm:^1.2.1": - version: 1.2.1 - resolution: "prelude-ls@npm:1.2.1" - checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd - languageName: node - linkType: hard - -"proc-log@npm:^3.0.0": - version: 3.0.0 - resolution: "proc-log@npm:3.0.0" - checksum: 10c0/f66430e4ff947dbb996058f6fd22de2c66612ae1a89b097744e17fb18a4e8e7a86db99eda52ccf15e53f00b63f4ec0b0911581ff2aac0355b625c8eac509b0dc - languageName: node - linkType: hard - -"process@npm:0.11.10": - version: 0.11.10 - resolution: "process@npm:0.11.10" - checksum: 10c0/40c3ce4b7e6d4b8c3355479df77aeed46f81b279818ccdc500124e6a5ab882c0cc81ff7ea16384873a95a74c4570b01b120f287abbdd4c877931460eca6084b3 - languageName: node - linkType: hard - -"progress@npm:^2.0.0": - version: 2.0.3 - resolution: "progress@npm:2.0.3" - checksum: 10c0/1697e07cb1068055dbe9fe858d242368ff5d2073639e652b75a7eb1f2a1a8d4afd404d719de23c7b48481a6aa0040686310e2dac2f53d776daa2176d3f96369c - languageName: node - linkType: hard - -"promise-retry@npm:^2.0.1": - version: 2.0.1 - resolution: "promise-retry@npm:2.0.1" - dependencies: - err-code: "npm:^2.0.2" - retry: "npm:^0.12.0" - checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 - languageName: node - linkType: hard - -"prop-types@npm:^15.8.1": - version: 15.8.1 - resolution: "prop-types@npm:15.8.1" - dependencies: - loose-envify: "npm:^1.4.0" - object-assign: "npm:^4.1.1" - react-is: "npm:^16.13.1" - checksum: 10c0/59ece7ca2fb9838031d73a48d4becb9a7cc1ed10e610517c7d8f19a1e02fa47f7c27d557d8a5702bec3cfeccddc853579832b43f449e54635803f277b1c78077 - languageName: node - linkType: hard - -"public-encrypt@npm:^4.0.0": - version: 4.0.3 - resolution: "public-encrypt@npm:4.0.3" - dependencies: - bn.js: "npm:^4.1.0" - browserify-rsa: "npm:^4.0.0" - create-hash: "npm:^1.1.0" - parse-asn1: "npm:^5.0.0" - randombytes: "npm:^2.0.1" - safe-buffer: "npm:^5.1.2" - checksum: 10c0/6c2cc19fbb554449e47f2175065d6b32f828f9b3badbee4c76585ac28ae8641aafb9bb107afc430c33c5edd6b05dbe318df4f7d6d7712b1093407b11c4280700 - languageName: node - linkType: hard - -"punycode@npm:^2.1.0": - version: 2.3.0 - resolution: "punycode@npm:2.3.0" - checksum: 10c0/8e6f7abdd3a6635820049e3731c623bbef3fedbf63bbc696b0d7237fdba4cefa069bc1fa62f2938b0fbae057550df7b5318f4a6bcece27f1907fc75c54160bee - languageName: node - linkType: hard - -"querystring-es3@npm:0.2.1": - version: 0.2.1 - resolution: "querystring-es3@npm:0.2.1" - checksum: 10c0/476938c1adb45c141f024fccd2ffd919a3746e79ed444d00e670aad68532977b793889648980e7ca7ff5ffc7bfece623118d0fbadcaf217495eeb7059ae51580 - languageName: node - linkType: hard - -"queue-microtask@npm:^1.2.2": - version: 1.2.3 - resolution: "queue-microtask@npm:1.2.3" - checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 - languageName: node - linkType: hard - -"queue@npm:6.0.2": - version: 6.0.2 - resolution: "queue@npm:6.0.2" - dependencies: - inherits: "npm:~2.0.3" - checksum: 10c0/cf987476cc72e7d3aaabe23ccefaab1cd757a2b5e0c8d80b67c9575a6b5e1198807ffd4f0948a3f118b149d1111d810ee773473530b77a5c606673cac2c9c996 - languageName: node - linkType: hard - -"quick-lru@npm:^5.1.1": - version: 5.1.1 - resolution: "quick-lru@npm:5.1.1" - checksum: 10c0/a24cba5da8cec30d70d2484be37622580f64765fb6390a928b17f60cd69e8dbd32a954b3ff9176fa1b86d86ff2ba05252fae55dc4d40d0291c60412b0ad096da - languageName: node - linkType: hard - -"randombytes@npm:^2.0.0, randombytes@npm:^2.0.1, randombytes@npm:^2.0.5": - version: 2.1.0 - resolution: "randombytes@npm:2.1.0" - dependencies: - safe-buffer: "npm:^5.1.0" - checksum: 10c0/50395efda7a8c94f5dffab564f9ff89736064d32addf0cc7e8bf5e4166f09f8ded7a0849ca6c2d2a59478f7d90f78f20d8048bca3cdf8be09d8e8a10790388f3 - languageName: node - linkType: hard - -"randomfill@npm:^1.0.3": - version: 1.0.4 - resolution: "randomfill@npm:1.0.4" - dependencies: - randombytes: "npm:^2.0.5" - safe-buffer: "npm:^5.1.0" - checksum: 10c0/11aeed35515872e8f8a2edec306734e6b74c39c46653607f03c68385ab8030e2adcc4215f76b5e4598e028c4750d820afd5c65202527d831d2a5f207fe2bc87c - languageName: node - linkType: hard - -"raw-body@npm:2.4.1": - version: 2.4.1 - resolution: "raw-body@npm:2.4.1" - dependencies: - bytes: "npm:3.1.0" - http-errors: "npm:1.7.3" - iconv-lite: "npm:0.4.24" - unpipe: "npm:1.0.0" - checksum: 10c0/e4107f4dd9101d703d40bd8ddd6969badfec39ec81f15fbb1ae9c63752190dd37d2f2c3ff61fdcaf37b1ca18c647abcf80d0519c4d2e082ce849f51acfbf34d7 - languageName: node - linkType: hard - -"react-dom@npm:17.0.2": - version: 17.0.2 - resolution: "react-dom@npm:17.0.2" - dependencies: - loose-envify: "npm:^1.1.0" - object-assign: "npm:^4.1.1" - scheduler: "npm:^0.20.2" - peerDependencies: - react: 17.0.2 - checksum: 10c0/51abbcb72450fe527ebf978c3bc989ba266630faaa53f47a2fae5392369729e8de62b2e4683598cbe651ea7873cd34ec7d5127e2f50bf4bfe6bd0c3ad9bddcb0 - languageName: node - linkType: hard - -"react-hot-toast@npm:^2.4.1": - version: 2.4.1 - resolution: "react-hot-toast@npm:2.4.1" - dependencies: - goober: "npm:^2.1.10" - peerDependencies: - react: ">=16" - react-dom: ">=16" - checksum: 10c0/591ecec3c6adc1cdb70f00165a57baa3d7f75d0d30fa767213c36496bdcc6be2b2e6a3edbf7c04f7d726a1b17dcfb5e7feb2136b04b17c9ccb769894b970f365 - languageName: node - linkType: hard - -"react-is@npm:17.0.2": - version: 17.0.2 - resolution: "react-is@npm:17.0.2" - checksum: 10c0/2bdb6b93fbb1820b024b496042cce405c57e2f85e777c9aabd55f9b26d145408f9f74f5934676ffdc46f3dcff656d78413a6e43968e7b3f92eea35b3052e9053 - languageName: node - linkType: hard - -"react-is@npm:^16.13.1": - version: 16.13.1 - resolution: "react-is@npm:16.13.1" - checksum: 10c0/33977da7a5f1a287936a0c85639fec6ca74f4f15ef1e59a6bc20338fc73dc69555381e211f7a3529b8150a1f71e4225525b41b60b52965bda53ce7d47377ada1 - languageName: node - linkType: hard - -"react-refresh@npm:0.8.3": - version: 0.8.3 - resolution: "react-refresh@npm:0.8.3" - checksum: 10c0/74ad7a7e2f29163163b9e13c9aa868faba58d76113acf910f165c18c022086a590750fd93bc8d9468e73cacc3874ad5c061ded7e931ef299aa3dfa3a663fe665 - languageName: node - linkType: hard - -"react@npm:17.0.2": - version: 17.0.2 - resolution: "react@npm:17.0.2" - dependencies: - loose-envify: "npm:^1.1.0" - object-assign: "npm:^4.1.1" - checksum: 10c0/07ae8959acf1596f0550685102fd6097d461a54a4fd46a50f88a0cd7daaa97fdd6415de1dcb4bfe0da6aa43221a6746ce380410fa848acc60f8ac41f6649c148 - languageName: node - linkType: hard - -"read-cache@npm:^1.0.0": - version: 1.0.0 - resolution: "read-cache@npm:1.0.0" - dependencies: - pify: "npm:^2.3.0" - checksum: 10c0/90cb2750213c7dd7c80cb420654344a311fdec12944e81eb912cd82f1bc92aea21885fa6ce442e3336d9fccd663b8a7a19c46d9698e6ca55620848ab932da814 - languageName: node - linkType: hard - -"readable-stream@npm:^3.5.0, readable-stream@npm:^3.6.0": - version: 3.6.0 - resolution: "readable-stream@npm:3.6.0" - dependencies: - inherits: "npm:^2.0.3" - string_decoder: "npm:^1.1.1" - util-deprecate: "npm:^1.0.1" - checksum: 10c0/937bedd29ac8a68331666291922bea892fa2be1a33269e582de9f844a2002f146cf831e39cd49fe6a378d3f0c27358f259ed0e20d20f0bdc6a3f8fc21fce42dc - languageName: node - linkType: hard - -"readdirp@npm:~3.5.0": - version: 3.5.0 - resolution: "readdirp@npm:3.5.0" - dependencies: - picomatch: "npm:^2.2.1" - checksum: 10c0/293de2ed981884a09e76fbf90bddc7e1a87667e57e0284ddc8c177e3151b0d179a9a56441d9f2f3654423924ec100af57ba9e507086527f98fd1d21bdd041c3e - languageName: node - linkType: hard - -"readdirp@npm:~3.6.0": - version: 3.6.0 - resolution: "readdirp@npm:3.6.0" - dependencies: - picomatch: "npm:^2.2.1" - checksum: 10c0/6fa848cf63d1b82ab4e985f4cf72bd55b7dcfd8e0a376905804e48c3634b7e749170940ba77b32804d5fe93b3cc521aa95a8d7e7d725f830da6d93f3669ce66b - languageName: node - linkType: hard - -"regenerator-runtime@npm:0.13.4": - version: 0.13.4 - resolution: "regenerator-runtime@npm:0.13.4" - checksum: 10c0/3085b3ddf98042a508df687887ead98b3dee60f40b21e52b24b6cb71cfa73cd16c9f4194ec99de7c41106db3f264e54c32dac0e061a270662e94c633af3e17f8 - languageName: node - linkType: hard - -"regenerator-runtime@npm:^0.13.11, regenerator-runtime@npm:^0.13.4": - version: 0.13.11 - resolution: "regenerator-runtime@npm:0.13.11" - checksum: 10c0/12b069dc774001fbb0014f6a28f11c09ebfe3c0d984d88c9bced77fdb6fedbacbca434d24da9ae9371bfbf23f754869307fb51a4c98a8b8b18e5ef748677ca24 - languageName: node - linkType: hard - -"regexp.prototype.flags@npm:^1.4.3": - version: 1.4.3 - resolution: "regexp.prototype.flags@npm:1.4.3" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.3" - functions-have-names: "npm:^1.2.2" - checksum: 10c0/5d797c7fb95f72a52dd9685a485faf0af3c55a4d1f2fafc1153a7be3df036cc3274b195b3ae051ee3d896a01960b446d726206e0d9a90b749e90d93445bb781f - languageName: node - linkType: hard - -"regexpp@npm:^3.1.0": - version: 3.2.0 - resolution: "regexpp@npm:3.2.0" - checksum: 10c0/d1da82385c8754a1681416b90b9cca0e21b4a2babef159099b88f640637d789c69011d0bc94705dacab85b81133e929d027d85210e8b8b03f8035164dbc14710 - languageName: node - linkType: hard - -"require-from-string@npm:^2.0.2": - version: 2.0.2 - resolution: "require-from-string@npm:2.0.2" - checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 - languageName: node - linkType: hard - -"resolve-from@npm:^4.0.0": - version: 4.0.0 - resolution: "resolve-from@npm:4.0.0" - checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 - languageName: node - linkType: hard - -"resolve@npm:^1.1.7, resolve@npm:^1.22.0, resolve@npm:^1.22.1": - version: 1.22.1 - resolution: "resolve@npm:1.22.1" - dependencies: - is-core-module: "npm:^2.9.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/6d58b1cb40f3fc80b9e45dd799d84cdc3829a993e4b9fa3b59d331e1dfacd0870e1851f4d0eb549d68c796e0b7087b43d1aec162653ccccff9e18191221a6e7d - languageName: node - linkType: hard - -"resolve@npm:^2.0.0-next.4": - version: 2.0.0-next.4 - resolution: "resolve@npm:2.0.0-next.4" - dependencies: - is-core-module: "npm:^2.9.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/1de92669e7c46cfe125294c66d5405e13288bb87b97e9bdab71693ceebbcc0255c789bde30e2834265257d330d8ff57414d7d88e3097d8f69951f3ce978bf045 - languageName: node - linkType: hard - -"resolve@patch:resolve@npm%3A^1.1.7#optional!builtin, resolve@patch:resolve@npm%3A^1.22.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin": - version: 1.22.1 - resolution: "resolve@patch:resolve@npm%3A1.22.1#optional!builtin::version=1.22.1&hash=c3c19d" - dependencies: - is-core-module: "npm:^2.9.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/0d8ccceba5537769c42aa75e4aa75ae854aac866a11d7e9ffdb1663f0158ee646a0d48fc2818ed5e7fb364d64220a1fb9092a160e11e00cbdd5fbab39a13092c - languageName: node - linkType: hard - -"resolve@patch:resolve@npm%3A^2.0.0-next.4#optional!builtin": - version: 2.0.0-next.4 - resolution: "resolve@patch:resolve@npm%3A2.0.0-next.4#optional!builtin::version=2.0.0-next.4&hash=c3c19d" - dependencies: - is-core-module: "npm:^2.9.0" - path-parse: "npm:^1.0.7" - supports-preserve-symlinks-flag: "npm:^1.0.0" - bin: - resolve: bin/resolve - checksum: 10c0/ed2bb51d616b9cd30fe85cf49f7a2240094d9fa01a221d361918462be81f683d1855b7f192391d2ab5325245b42464ca59690db5bd5dad0a326fc0de5974dd10 - languageName: node - linkType: hard - -"retry@npm:^0.12.0": - version: 0.12.0 - resolution: "retry@npm:0.12.0" - checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe - languageName: node - linkType: hard - -"reusify@npm:^1.0.4": - version: 1.0.4 - resolution: "reusify@npm:1.0.4" - checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 - languageName: node - linkType: hard - -"rimraf@npm:^3.0.2": - version: 3.0.2 - resolution: "rimraf@npm:3.0.2" - dependencies: - glob: "npm:^7.1.3" - bin: - rimraf: bin.js - checksum: 10c0/9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 - languageName: node - linkType: hard - -"ripemd160@npm:^2.0.0, ripemd160@npm:^2.0.1": - version: 2.0.2 - resolution: "ripemd160@npm:2.0.2" - dependencies: - hash-base: "npm:^3.0.0" - inherits: "npm:^2.0.1" - checksum: 10c0/f6f0df78817e78287c766687aed4d5accbebc308a8e7e673fb085b9977473c1f139f0c5335d353f172a915bb288098430755d2ad3c4f30612f4dd0c901cd2c3a - languageName: node - linkType: hard - -"run-parallel@npm:^1.1.9": - version: 1.2.0 - resolution: "run-parallel@npm:1.2.0" - dependencies: - queue-microtask: "npm:^1.2.2" - checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 - languageName: node - linkType: hard - -"safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.1.1, safe-buffer@npm:^5.1.2, safe-buffer@npm:^5.2.0, safe-buffer@npm:~5.2.0": - version: 5.2.1 - resolution: "safe-buffer@npm:5.2.1" - checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 - languageName: node - linkType: hard - -"safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: 10c0/780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21 - languageName: node - linkType: hard - -"safe-regex-test@npm:^1.0.0": - version: 1.0.0 - resolution: "safe-regex-test@npm:1.0.0" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.3" - is-regex: "npm:^1.1.4" - checksum: 10c0/14a81a7e683f97b2d6e9c8be61fddcf8ed7a02f4e64a825515f96bb1738eb007145359313741d2704d28b55b703a0f6300c749dde7c1dbc13952a2b85048ede2 - languageName: node - linkType: hard - -"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0, safer-buffer@npm:^2.1.0": - version: 2.1.2 - resolution: "safer-buffer@npm:2.1.2" - checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 - languageName: node - linkType: hard - -"scheduler@npm:^0.20.2": - version: 0.20.2 - resolution: "scheduler@npm:0.20.2" - dependencies: - loose-envify: "npm:^1.1.0" - object-assign: "npm:^4.1.1" - checksum: 10c0/b0982e4b0f34f4ffa4f2f486161c0fd9ce9b88680b045dccbf250eb1aa4fd27413570645455187a83535e2370f5c667a251045547765408492bd883cbe95fcdb - languageName: node - linkType: hard - -"semver@npm:^6.0.0, semver@npm:^6.3.0": - version: 6.3.1 - resolution: "semver@npm:6.3.1" - bin: - semver: bin/semver.js - checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d - languageName: node - linkType: hard - -"semver@npm:^7.2.1, semver@npm:^7.3.7": - version: 7.3.8 - resolution: "semver@npm:7.3.8" - dependencies: - lru-cache: "npm:^6.0.0" - bin: - semver: bin/semver.js - checksum: 10c0/7e581d679530db31757301c2117721577a2bb36a301a443aac833b8efad372cda58e7f2a464fe4412ae1041cc1f63a6c1fe0ced8c57ce5aca1e0b57bb0d627b9 - languageName: node - linkType: hard - -"semver@npm:^7.3.5": - version: 7.6.0 - resolution: "semver@npm:7.6.0" - dependencies: - lru-cache: "npm:^6.0.0" - bin: - semver: bin/semver.js - checksum: 10c0/fbfe717094ace0aa8d6332d7ef5ce727259815bd8d8815700853f4faf23aacbd7192522f0dc5af6df52ef4fa85a355ebd2f5d39f554bd028200d6cf481ab9b53 - languageName: node - linkType: hard - -"setimmediate@npm:^1.0.4": - version: 1.0.5 - resolution: "setimmediate@npm:1.0.5" - checksum: 10c0/5bae81bfdbfbd0ce992893286d49c9693c82b1bcc00dcaaf3a09c8f428fdeacf4190c013598b81875dfac2b08a572422db7df779a99332d0fce186d15a3e4d49 - languageName: node - linkType: hard - -"setprototypeof@npm:1.1.1": - version: 1.1.1 - resolution: "setprototypeof@npm:1.1.1" - checksum: 10c0/1084b783f2d77908b0a593619e1214c2118c44c7c3277f6099dd7ca8acfc056c009e5d1b2860eae5e8b0ba9bc0a978c15613ff102ccc1093bb48aa6e0ed75e2f - languageName: node - linkType: hard - -"sha.js@npm:^2.4.0, sha.js@npm:^2.4.8": - version: 2.4.11 - resolution: "sha.js@npm:2.4.11" - dependencies: - inherits: "npm:^2.0.1" - safe-buffer: "npm:^5.0.1" - bin: - sha.js: ./bin.js - checksum: 10c0/b7a371bca8821c9cc98a0aeff67444a03d48d745cb103f17228b96793f455f0eb0a691941b89ea1e60f6359207e36081d9be193252b0f128e0daf9cfea2815a5 - languageName: node - linkType: hard - -"shebang-command@npm:^2.0.0": - version: 2.0.0 - resolution: "shebang-command@npm:2.0.0" - dependencies: - shebang-regex: "npm:^3.0.0" - checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e - languageName: node - linkType: hard - -"shebang-regex@npm:^3.0.0": - version: 3.0.0 - resolution: "shebang-regex@npm:3.0.0" - checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 - languageName: node - linkType: hard - -"shell-quote@npm:1.7.3": - version: 1.7.3 - resolution: "shell-quote@npm:1.7.3" - checksum: 10c0/cf997c325f49c4393a859074f1ee9ca3da7d9e1940225bab24a86f0266504c7d7e356b83f13c74932cb243d53125b5c8c57b714017c53490bf1fe10540422014 - languageName: node - linkType: hard - -"side-channel@npm:^1.0.4": - version: 1.0.4 - resolution: "side-channel@npm:1.0.4" - dependencies: - call-bind: "npm:^1.0.0" - get-intrinsic: "npm:^1.0.2" - object-inspect: "npm:^1.9.0" - checksum: 10c0/054a5d23ee35054b2c4609b9fd2a0587760737782b5d765a9c7852264710cc39c6dcb56a9bbd6c12cd84071648aea3edb2359d2f6e560677eedadce511ac1da5 - languageName: node - linkType: hard - -"signal-exit@npm:^4.0.1": - version: 4.1.0 - resolution: "signal-exit@npm:4.1.0" - checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 - languageName: node - linkType: hard - -"slash@npm:^3.0.0": - version: 3.0.0 - resolution: "slash@npm:3.0.0" - checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b - languageName: node - linkType: hard - -"slice-ansi@npm:^4.0.0": - version: 4.0.0 - resolution: "slice-ansi@npm:4.0.0" - dependencies: - ansi-styles: "npm:^4.0.0" - astral-regex: "npm:^2.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - checksum: 10c0/6c25678db1270d4793e0327620f1e0f9f5bea4630123f51e9e399191bc52c87d6e6de53ed33538609e5eacbd1fab769fae00f3705d08d029f02102a540648918 - languageName: node - linkType: hard - -"smart-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "smart-buffer@npm:4.2.0" - checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 - languageName: node - linkType: hard - -"socks-proxy-agent@npm:^8.0.3": - version: 8.0.3 - resolution: "socks-proxy-agent@npm:8.0.3" - dependencies: - agent-base: "npm:^7.1.1" - debug: "npm:^4.3.4" - socks: "npm:^2.7.1" - checksum: 10c0/4950529affd8ccd6951575e21c1b7be8531b24d924aa4df3ee32df506af34b618c4e50d261f4cc603f1bfd8d426915b7d629966c8ce45b05fb5ad8c8b9a6459d - languageName: node - linkType: hard - -"socks@npm:^2.7.1": - version: 2.8.1 - resolution: "socks@npm:2.8.1" - dependencies: - ip-address: "npm:^9.0.5" - smart-buffer: "npm:^4.2.0" - checksum: 10c0/ac77b515c260473cc7c4452f09b20939e22510ce3ae48385c516d1d5784374d5cc75be3cb18ff66cc985a7f4f2ef8fef84e984c5ec70aad58355ed59241f40a8 - languageName: node - linkType: hard - -"source-map-js@npm:^1.0.2": - version: 1.0.2 - resolution: "source-map-js@npm:1.0.2" - checksum: 10c0/32f2dfd1e9b7168f9a9715eb1b4e21905850f3b50cf02cf476e47e4eebe8e6b762b63a64357896aa29b37e24922b4282df0f492e0d2ace572b43d15525976ff8 - languageName: node - linkType: hard - -"source-map@npm:0.7.3": - version: 0.7.3 - resolution: "source-map@npm:0.7.3" - checksum: 10c0/7d2ddb51f3d2451847692a9ac7808da2b2b3bf7aef92ece33128919040a7e74d9a5edfde7a781f035c974deff876afaf83f2e30484faffffb86484e7408f5d7c - languageName: node - linkType: hard - -"source-map@npm:0.8.0-beta.0": - version: 0.8.0-beta.0 - resolution: "source-map@npm:0.8.0-beta.0" - dependencies: - whatwg-url: "npm:^7.0.0" - checksum: 10c0/fb4d9bde9a9fdb2c29b10e5eae6c71d10e09ef467e1afb75fdec2eb7e11fa5b343a2af553f74f18b695dbc0b81f9da2e9fa3d7a317d5985e9939499ec6087835 - languageName: node - linkType: hard - -"source-map@npm:^0.6.1": - version: 0.6.1 - resolution: "source-map@npm:0.6.1" - checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 - languageName: node - linkType: hard - -"sprintf-js@npm:^1.1.3": - version: 1.1.3 - resolution: "sprintf-js@npm:1.1.3" - checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec - languageName: node - linkType: hard - -"sprintf-js@npm:~1.0.2": - version: 1.0.3 - resolution: "sprintf-js@npm:1.0.3" - checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb - languageName: node - linkType: hard - -"ssri@npm:^10.0.0": - version: 10.0.5 - resolution: "ssri@npm:10.0.5" - dependencies: - minipass: "npm:^7.0.3" - checksum: 10c0/b091f2ae92474183c7ac5ed3f9811457e1df23df7a7e70c9476eaa9a0c4a0c8fc190fb45acefbf023ca9ee864dd6754237a697dc52a0fb182afe65d8e77443d8 - languageName: node - linkType: hard - -"stacktrace-parser@npm:0.1.10": - version: 0.1.10 - resolution: "stacktrace-parser@npm:0.1.10" - dependencies: - type-fest: "npm:^0.7.1" - checksum: 10c0/f9c9cd55b0642a546e5f0516a87124fc496dcc2c082b96b156ed094c51e423314795cd1839cd4c59026349cf392d3414f54fc42165255602728588a58a9f72d3 - languageName: node - linkType: hard - -"statuses@npm:>= 1.5.0 < 2": - version: 1.5.0 - resolution: "statuses@npm:1.5.0" - checksum: 10c0/e433900956357b3efd79b1c547da4d291799ac836960c016d10a98f6a810b1b5c0dcc13b5a7aa609a58239b5190e1ea176ad9221c2157d2fd1c747393e6b2940 - languageName: node - linkType: hard - -"stop-iteration-iterator@npm:^1.0.0": - version: 1.0.0 - resolution: "stop-iteration-iterator@npm:1.0.0" - dependencies: - internal-slot: "npm:^1.0.4" - checksum: 10c0/c4158d6188aac510d9e92925b58709207bd94699e9c31186a040c80932a687f84a51356b5895e6dc72710aad83addb9411c22171832c9ae0e6e11b7d61b0dfb9 - languageName: node - linkType: hard - -"stream-browserify@npm:3.0.0": - version: 3.0.0 - resolution: "stream-browserify@npm:3.0.0" - dependencies: - inherits: "npm:~2.0.4" - readable-stream: "npm:^3.5.0" - checksum: 10c0/ec3b975a4e0aa4b3dc5e70ffae3fc8fd29ac725353a14e72f213dff477b00330140ad014b163a8cbb9922dfe90803f81a5ea2b269e1bbfd8bd71511b88f889ad - languageName: node - linkType: hard - -"stream-http@npm:3.1.1": - version: 3.1.1 - resolution: "stream-http@npm:3.1.1" - dependencies: - builtin-status-codes: "npm:^3.0.0" - inherits: "npm:^2.0.4" - readable-stream: "npm:^3.6.0" - xtend: "npm:^4.0.2" - checksum: 10c0/0da59949faf20e3845bc77c3dc91460ac3b45a0abc55474cb3091404b24751cdd41f6167f3fa535a66d8a7f11118852c681428121a147fd3e8b6bbbe65b23060 - languageName: node - linkType: hard - -"stream-parser@npm:^0.3.1": - version: 0.3.1 - resolution: "stream-parser@npm:0.3.1" - dependencies: - debug: "npm:2" - checksum: 10c0/585508801423bd6c53f6dda9d78e4b743a08ab72e8e2680431fa855ef950e59c849ec2838f2a00c59af655ff8463e90f660f9169a816e63a3ca159cf713bae5c - languageName: node - linkType: hard - -"string-hash@npm:1.1.3": - version: 1.1.3 - resolution: "string-hash@npm:1.1.3" - checksum: 10c0/179725d7706b49fbbc0a4901703a2d8abec244140879afd5a17908497e586a6b07d738f6775450aefd9f8dd729e4a0abd073fbc6fa3bd020b7a1d2369614af88 - languageName: node - linkType: hard - -"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.3": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: "npm:^8.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - strip-ansi: "npm:^6.0.1" - checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b - languageName: node - linkType: hard - -"string-width@npm:^5.0.1, string-width@npm:^5.1.2": - version: 5.1.2 - resolution: "string-width@npm:5.1.2" - dependencies: - eastasianwidth: "npm:^0.2.0" - emoji-regex: "npm:^9.2.2" - strip-ansi: "npm:^7.0.1" - checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca - languageName: node - linkType: hard - -"string.prototype.matchall@npm:^4.0.8": - version: 4.0.8 - resolution: "string.prototype.matchall@npm:4.0.8" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - get-intrinsic: "npm:^1.1.3" - has-symbols: "npm:^1.0.3" - internal-slot: "npm:^1.0.3" - regexp.prototype.flags: "npm:^1.4.3" - side-channel: "npm:^1.0.4" - checksum: 10c0/644523d05c1ee93bab7474e999a5734ee5f6ad2d7ad24ed6ea8706c270dc92b352bde0f2a5420bfbeed54e28cb6a770c3800e1988a5267a70fd5e677c7750abc - languageName: node - linkType: hard - -"string.prototype.trimend@npm:^1.0.6": - version: 1.0.6 - resolution: "string.prototype.trimend@npm:1.0.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - checksum: 10c0/51b663e3195a74b58620a250b3fc4efb58951000f6e7d572a9f671c038f2f37f24a2b8c6994500a882aeab2f1c383fac1e8c023c01eb0c8b4e52d2f13b6c4513 - languageName: node - linkType: hard - -"string.prototype.trimstart@npm:^1.0.6": - version: 1.0.6 - resolution: "string.prototype.trimstart@npm:1.0.6" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" - es-abstract: "npm:^1.20.4" - checksum: 10c0/13b9970d4e234002dfc8069c655c1fe19e83e10ced208b54858c41bb0f7544e581ac0ce746e92b279563664ad63910039f7253f36942113fec413b2b4e7c1fcd - languageName: node - linkType: hard - -"string_decoder@npm:1.3.0, string_decoder@npm:^1.1.1": - version: 1.3.0 - resolution: "string_decoder@npm:1.3.0" - dependencies: - safe-buffer: "npm:~5.2.0" - checksum: 10c0/810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d - languageName: node - linkType: hard - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: "npm:^5.0.1" - checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 - languageName: node - linkType: hard - -"strip-ansi@npm:^7.0.1": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: "npm:^6.0.1" - checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 - languageName: node - linkType: hard - -"strip-bom@npm:^3.0.0": - version: 3.0.0 - resolution: "strip-bom@npm:3.0.0" - checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 - languageName: node - linkType: hard - -"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1": - version: 3.1.1 - resolution: "strip-json-comments@npm:3.1.1" - checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd - languageName: node - linkType: hard - -"style-mod@npm:^4.0.0": - version: 4.0.0 - resolution: "style-mod@npm:4.0.0" - checksum: 10c0/9720b81d4023174ee7680c844b84aacf1026d96ab1d9fc42d09acaf9c82358860fbd9322308154c9449c86a612d94408a6978e1a3847b2cd38c7157443c9b437 - languageName: node - linkType: hard - -"styled-jsx@npm:5.0.0-beta.3": - version: 5.0.0-beta.3 - resolution: "styled-jsx@npm:5.0.0-beta.3" - dependencies: - "@babel/plugin-syntax-jsx": "npm:7.14.5" - "@babel/types": "npm:7.15.0" - convert-source-map: "npm:1.7.0" - loader-utils: "npm:1.2.3" - source-map: "npm:0.7.3" - string-hash: "npm:1.1.3" - stylis: "npm:3.5.4" - stylis-rule-sheet: "npm:0.0.10" - peerDependencies: - react: ">= 16.8.0 || 17.x.x || 18.x.x" - peerDependenciesMeta: - "@babel/core": - optional: true - checksum: 10c0/63579ef21b5ebba1b9ec64c4079d85c44617bb73c0e33596a74b334a6b5989242345a70b3dde9899e7400d7bdfe688d1ff373048f14db225e0a048998d5f760b - languageName: node - linkType: hard - -"stylis-rule-sheet@npm:0.0.10": - version: 0.0.10 - resolution: "stylis-rule-sheet@npm:0.0.10" - peerDependencies: - stylis: ^3.5.0 - checksum: 10c0/362d1a6473569f702ed814a17ecb0a71f84cb93c45aaf82d6054dd1167d60cc4d2d0bc73dc15eb069cd11ea2d91fefb572f910db64c1b5f07f81296a9c6d0f24 - languageName: node - linkType: hard - -"stylis@npm:3.5.4": - version: 3.5.4 - resolution: "stylis@npm:3.5.4" - checksum: 10c0/5da2f4527d6f3b4877bd575dca068698ddc7882d0f4c3f69178f19328726a2b885e03d759ef82bb06e9bd1a5d47f1f2ce17cc5acbeee2435d42940a261ee11fd - languageName: node - linkType: hard - -"supports-color@npm:^5.3.0": - version: 5.5.0 - resolution: "supports-color@npm:5.5.0" - dependencies: - has-flag: "npm:^3.0.0" - checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 - languageName: node - linkType: hard - -"supports-color@npm:^7.1.0": - version: 7.2.0 - resolution: "supports-color@npm:7.2.0" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 - languageName: node - linkType: hard - -"supports-color@npm:^8.0.0": - version: 8.1.1 - resolution: "supports-color@npm:8.1.1" - dependencies: - has-flag: "npm:^4.0.0" - checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 - languageName: node - linkType: hard - -"supports-preserve-symlinks-flag@npm:^1.0.0": - version: 1.0.0 - resolution: "supports-preserve-symlinks-flag@npm:1.0.0" - checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 - languageName: node - linkType: hard - -"table@npm:^6.0.9": - version: 6.8.1 - resolution: "table@npm:6.8.1" - dependencies: - ajv: "npm:^8.0.1" - lodash.truncate: "npm:^4.4.2" - slice-ansi: "npm:^4.0.0" - string-width: "npm:^4.2.3" - strip-ansi: "npm:^6.0.1" - checksum: 10c0/591ed84b2438b01c9bc02248e2238e21e8bfb73654bc5acca0d469053eb39be3db2f57d600dcf08ac983b6f50f80842c44612c03877567c2afee3aec4a033e5f - languageName: node - linkType: hard - -"tailwindcss@npm:^3.0.12": - version: 3.2.7 - resolution: "tailwindcss@npm:3.2.7" - dependencies: - arg: "npm:^5.0.2" - chokidar: "npm:^3.5.3" - color-name: "npm:^1.1.4" - detective: "npm:^5.2.1" - didyoumean: "npm:^1.2.2" - dlv: "npm:^1.1.3" - fast-glob: "npm:^3.2.12" - glob-parent: "npm:^6.0.2" - is-glob: "npm:^4.0.3" - lilconfig: "npm:^2.0.6" - micromatch: "npm:^4.0.5" - normalize-path: "npm:^3.0.0" - object-hash: "npm:^3.0.0" - picocolors: "npm:^1.0.0" - postcss: "npm:^8.0.9" - postcss-import: "npm:^14.1.0" - postcss-js: "npm:^4.0.0" - postcss-load-config: "npm:^3.1.4" - postcss-nested: "npm:6.0.0" - postcss-selector-parser: "npm:^6.0.11" - postcss-value-parser: "npm:^4.2.0" - quick-lru: "npm:^5.1.1" - resolve: "npm:^1.22.1" - peerDependencies: - postcss: ^8.0.9 - bin: - tailwind: lib/cli.js - tailwindcss: lib/cli.js - checksum: 10c0/a36da25493efb0bbf1a5c303b2c01f2af4316f971bbd77a6bcc14b1af7afbb4f8417b808e06faa375db1a829900f14a0a1480799f0f470124f98746af73fc21e - languageName: node - linkType: hard - -"tar@npm:^6.1.11, tar@npm:^6.1.2": - version: 6.2.1 - resolution: "tar@npm:6.2.1" - dependencies: - chownr: "npm:^2.0.0" - fs-minipass: "npm:^2.0.0" - minipass: "npm:^5.0.0" - minizlib: "npm:^2.1.1" - mkdirp: "npm:^1.0.3" - yallist: "npm:^4.0.0" - checksum: 10c0/a5eca3eb50bc11552d453488344e6507156b9193efd7635e98e867fab275d527af53d8866e2370cd09dfe74378a18111622ace35af6a608e5223a7d27fe99537 - languageName: node - linkType: hard - -"text-table@npm:^0.2.0": - version: 0.2.0 - resolution: "text-table@npm:0.2.0" - checksum: 10c0/02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c - languageName: node - linkType: hard - -"timers-browserify@npm:2.0.12": - version: 2.0.12 - resolution: "timers-browserify@npm:2.0.12" - dependencies: - setimmediate: "npm:^1.0.4" - checksum: 10c0/98e84db1a685bc8827c117a8bc62aac811ad56a995d07938fc7ed8cdc5bf3777bfe2d4e5da868847194e771aac3749a20f6cdd22091300fe889a76fe214a4641 - languageName: node - linkType: hard - -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: 10c0/b214d21dbfb4bce3452b6244b336806ffea9c05297148d32ebb428d5c43ce7545bdfc65a1ceb58c9ef4376a65c0cb2854d645f33961658b3e3b4f84910ddcdd7 - languageName: node - linkType: hard - -"to-regex-range@npm:^5.0.1": - version: 5.0.1 - resolution: "to-regex-range@npm:5.0.1" - dependencies: - is-number: "npm:^7.0.0" - checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 - languageName: node - linkType: hard - -"toidentifier@npm:1.0.0": - version: 1.0.0 - resolution: "toidentifier@npm:1.0.0" - checksum: 10c0/27a37b8b21126e7216d40c02f410065b1de35b0f844368d0ccaabba7987595703006d45e5c094b086220cbbc5864d4b99766b460110e4bc15b9db574c5c58be2 - languageName: node - linkType: hard - -"tr46@npm:^1.0.1": - version: 1.0.1 - resolution: "tr46@npm:1.0.1" - dependencies: - punycode: "npm:^2.1.0" - checksum: 10c0/41525c2ccce86e3ef30af6fa5e1464e6d8bb4286a58ea8db09228f598889581ef62347153f6636cd41553dc41685bdfad0a9d032ef58df9fbb0792b3447d0f04 - languageName: node - linkType: hard - -"tsconfig-paths@npm:^3.14.1": - version: 3.14.1 - resolution: "tsconfig-paths@npm:3.14.1" - dependencies: - "@types/json5": "npm:^0.0.29" - json5: "npm:^1.0.1" - minimist: "npm:^1.2.6" - strip-bom: "npm:^3.0.0" - checksum: 10c0/67cd2e400119a0063514782176a9e5c3420d43b7a550804ae65d833027379c0559dec44d21c93791825a3be3c2ec593f07cba658c4167dcbbadb048cb3d36fa3 - languageName: node - linkType: hard - -"tslib@npm:^1.8.1": - version: 1.14.1 - resolution: "tslib@npm:1.14.1" - checksum: 10c0/69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 - languageName: node - linkType: hard - -"tsutils@npm:^3.21.0": - version: 3.21.0 - resolution: "tsutils@npm:3.21.0" - dependencies: - tslib: "npm:^1.8.1" - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - checksum: 10c0/02f19e458ec78ead8fffbf711f834ad8ecd2cc6ade4ec0320790713dccc0a412b99e7fd907c4cda2a1dc602c75db6f12e0108e87a5afad4b2f9e90a24cabd5a2 - languageName: node - linkType: hard - -"tty-browserify@npm:0.0.1": - version: 0.0.1 - resolution: "tty-browserify@npm:0.0.1" - checksum: 10c0/5e34883388eb5f556234dae75b08e069b9e62de12bd6d87687f7817f5569430a6dfef550b51dbc961715ae0cd0eb5a059e6e3fc34dc127ea164aa0f9b5bb033d - languageName: node - linkType: hard - -"type-check@npm:^0.4.0, type-check@npm:~0.4.0": - version: 0.4.0 - resolution: "type-check@npm:0.4.0" - dependencies: - prelude-ls: "npm:^1.2.1" - checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 - languageName: node - linkType: hard - -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 - languageName: node - linkType: hard - -"type-fest@npm:^0.7.1": - version: 0.7.1 - resolution: "type-fest@npm:0.7.1" - checksum: 10c0/ce6b5ef806a76bf08d0daa78d65e61f24d9a0380bd1f1df36ffb61f84d14a0985c3a921923cf4b97831278cb6fa9bf1b89c751df09407e0510b14e8c081e4e0f - languageName: node - linkType: hard - -"typed-array-length@npm:^1.0.4": - version: 1.0.4 - resolution: "typed-array-length@npm:1.0.4" - dependencies: - call-bind: "npm:^1.0.2" - for-each: "npm:^0.3.3" - is-typed-array: "npm:^1.1.9" - checksum: 10c0/c5163c0103d07fefc8a2ad0fc151f9ca9a1f6422098c00f695d55f9896e4d63614cd62cf8d8a031c6cee5f418e8980a533796597174da4edff075b3d275a7e23 - languageName: node - linkType: hard - -"unbox-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "unbox-primitive@npm:1.0.2" - dependencies: - call-bind: "npm:^1.0.2" - has-bigints: "npm:^1.0.2" - has-symbols: "npm:^1.0.3" - which-boxed-primitive: "npm:^1.0.2" - checksum: 10c0/81ca2e81134167cc8f75fa79fbcc8a94379d6c61de67090986a2273850989dd3bae8440c163121b77434b68263e34787a675cbdcb34bb2f764c6b9c843a11b66 - languageName: node - linkType: hard - -"unique-filename@npm:^3.0.0": - version: 3.0.0 - resolution: "unique-filename@npm:3.0.0" - dependencies: - unique-slug: "npm:^4.0.0" - checksum: 10c0/6363e40b2fa758eb5ec5e21b3c7fb83e5da8dcfbd866cc0c199d5534c42f03b9ea9ab069769cc388e1d7ab93b4eeef28ef506ab5f18d910ef29617715101884f - languageName: node - linkType: hard - -"unique-slug@npm:^4.0.0": - version: 4.0.0 - resolution: "unique-slug@npm:4.0.0" - dependencies: - imurmurhash: "npm:^0.1.4" - checksum: 10c0/cb811d9d54eb5821b81b18205750be84cb015c20a4a44280794e915f5a0a70223ce39066781a354e872df3572e8155c228f43ff0cce94c7cbf4da2cc7cbdd635 - languageName: node - linkType: hard - -"unpipe@npm:1.0.0": - version: 1.0.0 - resolution: "unpipe@npm:1.0.0" - checksum: 10c0/193400255bd48968e5c5383730344fbb4fa114cdedfab26e329e50dd2d81b134244bb8a72c6ac1b10ab0281a58b363d06405632c9d49ca9dfd5e90cbd7d0f32c - languageName: node - linkType: hard - -"update-browserslist-db@npm:^1.0.10": - version: 1.0.10 - resolution: "update-browserslist-db@npm:1.0.10" - dependencies: - escalade: "npm:^3.1.1" - picocolors: "npm:^1.0.0" - peerDependencies: - browserslist: ">= 4.21.0" - bin: - browserslist-lint: cli.js - checksum: 10c0/e6fa55b515a674cc3b6c045d1f37f72780ddbbbb48b3094391fb2e43357b859ca5cee4c7d3055fd654d442ef032777d0972494a9a2e6c30d3660ee57b7138ae9 - languageName: node - linkType: hard - -"uri-js@npm:^4.2.2": - version: 4.4.1 - resolution: "uri-js@npm:4.4.1" - dependencies: - punycode: "npm:^2.1.0" - checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c - languageName: node - linkType: hard - -"use-subscription@npm:1.5.1": - version: 1.5.1 - resolution: "use-subscription@npm:1.5.1" - dependencies: - object-assign: "npm:^4.1.1" - peerDependencies: - react: ^16.8.0 || ^17.0.0 - checksum: 10c0/0de6185cd5890a0640cd08b616f9de7875c41d51e6570894eb2bb83fa48c6137eaa56c360edb8fb9f7f253b9705e103bca52fbcd9f86b03d07c6467d282758fc - languageName: node - linkType: hard - -"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2": - version: 1.0.2 - resolution: "util-deprecate@npm:1.0.2" - checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 - languageName: node - linkType: hard - -"util@npm:0.12.4": - version: 0.12.4 - resolution: "util@npm:0.12.4" - dependencies: - inherits: "npm:^2.0.3" - is-arguments: "npm:^1.0.4" - is-generator-function: "npm:^1.0.7" - is-typed-array: "npm:^1.1.3" - safe-buffer: "npm:^5.1.2" - which-typed-array: "npm:^1.1.2" - checksum: 10c0/3e04e6feb68bccdc9fdfa013050719b3b41ce698ff5e244ee683d675b7fb9b91c8a1594b164696ee2201cca9579c286b968d0aabd9c9069ae1667413940a4e49 - languageName: node - linkType: hard - -"util@npm:^0.12.0": - version: 0.12.5 - resolution: "util@npm:0.12.5" - dependencies: - inherits: "npm:^2.0.3" - is-arguments: "npm:^1.0.4" - is-generator-function: "npm:^1.0.7" - is-typed-array: "npm:^1.1.3" - which-typed-array: "npm:^1.1.2" - checksum: 10c0/c27054de2cea2229a66c09522d0fa1415fb12d861d08523a8846bf2e4cbf0079d4c3f725f09dcb87493549bcbf05f5798dce1688b53c6c17201a45759e7253f3 - languageName: node - linkType: hard - -"v8-compile-cache@npm:^2.0.3": - version: 2.3.0 - resolution: "v8-compile-cache@npm:2.3.0" - checksum: 10c0/b2d866febf943fbbf0b5e8d43ae9a9b0dacd11dd76e6a9c8e8032268f0136f081e894a2723774ae2d86befa994be4d4046b0717d82df4f3a10e067994ad5c688 - languageName: node - linkType: hard - -"vm-browserify@npm:1.1.2": - version: 1.1.2 - resolution: "vm-browserify@npm:1.1.2" - checksum: 10c0/0cc1af6e0d880deb58bc974921320c187f9e0a94f25570fca6b1bd64e798ce454ab87dfd797551b1b0cc1849307421aae0193cedf5f06bdb5680476780ee344b - languageName: node - linkType: hard - -"w3c-keyname@npm:^2.2.4": - version: 2.2.6 - resolution: "w3c-keyname@npm:2.2.6" - checksum: 10c0/28f0123438c276661f05dc9d11693feeec413e5c0a0356158e798011108a8245d4f37d850921b314bd0e305bec855ef0f7ad6aa71cfc2479cce48ae957afde19 - languageName: node - linkType: hard - -"watchpack@npm:2.3.0": - version: 2.3.0 - resolution: "watchpack@npm:2.3.0" - dependencies: - glob-to-regexp: "npm:^0.4.1" - graceful-fs: "npm:^4.1.2" - checksum: 10c0/74d6de0a60efcdf01139faa8cec2280bb2d03f61b59256a7da8e4699374dee5438bf9a45a918651ca68e87063ae5350c447195917149fa3458418d2006257726 - languageName: node - linkType: hard - -"webidl-conversions@npm:^4.0.2": - version: 4.0.2 - resolution: "webidl-conversions@npm:4.0.2" - checksum: 10c0/def5c5ac3479286dffcb604547628b2e6b46c5c5b8a8cfaa8c71dc3bafc85859bde5fbe89467ff861f571ab38987cf6ab3d6e7c80b39b999e50e803c12f3164f - languageName: node - linkType: hard - -"whatwg-url@npm:^7.0.0": - version: 7.1.0 - resolution: "whatwg-url@npm:7.1.0" - dependencies: - lodash.sortby: "npm:^4.7.0" - tr46: "npm:^1.0.1" - webidl-conversions: "npm:^4.0.2" - checksum: 10c0/2785fe4647690e5a0225a79509ba5e21fdf4a71f9de3eabdba1192483fe006fc79961198e0b99f82751557309f17fc5a07d4d83c251aa5b2f85ba71e674cbee9 - languageName: node - linkType: hard - -"which-boxed-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "which-boxed-primitive@npm:1.0.2" - dependencies: - is-bigint: "npm:^1.0.1" - is-boolean-object: "npm:^1.1.0" - is-number-object: "npm:^1.0.4" - is-string: "npm:^1.0.5" - is-symbol: "npm:^1.0.3" - checksum: 10c0/0a62a03c00c91dd4fb1035b2f0733c341d805753b027eebd3a304b9cb70e8ce33e25317add2fe9b5fea6f53a175c0633ae701ff812e604410ddd049777cd435e - languageName: node - linkType: hard - -"which-collection@npm:^1.0.1": - version: 1.0.1 - resolution: "which-collection@npm:1.0.1" - dependencies: - is-map: "npm:^2.0.1" - is-set: "npm:^2.0.1" - is-weakmap: "npm:^2.0.1" - is-weakset: "npm:^2.0.1" - checksum: 10c0/249f913e1758ed2f06f00706007d87dc22090a80591a56917376e70ecf8fc9ab6c41d98e1c87208bb9648676f65d4b09c0e4d23c56c7afb0f0a73a27d701df5d - languageName: node - linkType: hard - -"which-typed-array@npm:^1.1.2, which-typed-array@npm:^1.1.9": - version: 1.1.9 - resolution: "which-typed-array@npm:1.1.9" - dependencies: - available-typed-arrays: "npm:^1.0.5" - call-bind: "npm:^1.0.2" - for-each: "npm:^0.3.3" - gopd: "npm:^1.0.1" - has-tostringtag: "npm:^1.0.0" - is-typed-array: "npm:^1.1.10" - checksum: 10c0/7edb12cfd04bfe2e2d3ec3e6046417c59e6a8c72209e4fe41fe1a1a40a3b196626c2ca63dac2a0fa2491d5c37c065dfabd2fcf7c0c15f1d19f5640fef88f6368 - languageName: node - linkType: hard - -"which@npm:^2.0.1": - version: 2.0.2 - resolution: "which@npm:2.0.2" - dependencies: - isexe: "npm:^2.0.0" - bin: - node-which: ./bin/node-which - checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f - languageName: node - linkType: hard - -"which@npm:^4.0.0": - version: 4.0.0 - resolution: "which@npm:4.0.0" - dependencies: - isexe: "npm:^3.1.1" - bin: - node-which: bin/which.js - checksum: 10c0/449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a - languageName: node - linkType: hard - -"word-wrap@npm:^1.2.3": - version: 1.2.3 - resolution: "word-wrap@npm:1.2.3" - checksum: 10c0/1cb6558996deb22c909330db1f01d672feee41d7f0664492912de3de282da3f28ba2d49e87b723024e99d56ba2dac2f3ab28f8db07ac199f5e5d5e2e437833de - languageName: node - linkType: hard +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-plugin-utils@^7.14.5": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" + integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== + +"@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/highlight@^7.10.4": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/plugin-syntax-jsx@7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201" + integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/runtime@7.15.4": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" + integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/runtime@^7.13.10", "@babel/runtime@^7.18.6": + version "7.25.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.4.tgz#6ef37d678428306e7d75f054d5b1bdb8cf8aa8ee" + integrity sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/types@7.15.0": + version "7.15.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz#61af11f2286c4e9c69ca8deb5f4375a73c72dcbd" + integrity sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ== + dependencies: + "@babel/helper-validator-identifier" "^7.14.9" + to-fast-properties "^2.0.0" + +"@codemirror/autocomplete@^6.0.0": + version "6.18.0" + resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.18.0.tgz#5f39b05daca04c95e990b70024144df47b2aa635" + integrity sha512-5DbOvBbY4qW5l57cjDsmmpDh3/TeK1vXfTHa+BUMrRzdWdcxKZ4U4V7vQaTtOpApNU4kLS4FQ6cINtLg245LXA== + dependencies: + "@codemirror/language" "^6.0.0" + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.17.0" + "@lezer/common" "^1.0.0" + +"@codemirror/commands@^6.0.0", "@codemirror/commands@^6.1.0": + version "6.6.0" + resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.6.0.tgz#d308f143fe1b8896ca25fdb855f66acdaf019dd4" + integrity sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg== + dependencies: + "@codemirror/language" "^6.0.0" + "@codemirror/state" "^6.4.0" + "@codemirror/view" "^6.27.0" + "@lezer/common" "^1.1.0" + +"@codemirror/lang-css@^6.0.1": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@codemirror/lang-css/-/lang-css-6.2.1.tgz#5dc0a43b8e3c31f6af7aabd55ff07fe9aef2a227" + integrity sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg== + dependencies: + "@codemirror/autocomplete" "^6.0.0" + "@codemirror/language" "^6.0.0" + "@codemirror/state" "^6.0.0" + "@lezer/common" "^1.0.2" + "@lezer/css" "^1.0.0" + +"@codemirror/language@^6.0.0": + version "6.10.2" + resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.10.2.tgz#4056dc219619627ffe995832eeb09cea6060be61" + integrity sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA== + dependencies: + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.23.0" + "@lezer/common" "^1.1.0" + "@lezer/highlight" "^1.0.0" + "@lezer/lr" "^1.0.0" + style-mod "^4.0.0" + +"@codemirror/lint@^6.0.0": + version "6.8.1" + resolved "https://registry.yarnpkg.com/@codemirror/lint/-/lint-6.8.1.tgz#6427848815baaf68c08e98c7673b804d3d8c0e7f" + integrity sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg== + dependencies: + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.0.0" + crelt "^1.0.5" + +"@codemirror/search@^6.0.0": + version "6.5.6" + resolved "https://registry.yarnpkg.com/@codemirror/search/-/search-6.5.6.tgz#8f858b9e678d675869112e475f082d1e8488db93" + integrity sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q== + dependencies: + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.0.0" + crelt "^1.0.5" + +"@codemirror/state@^6.0.0", "@codemirror/state@^6.1.1", "@codemirror/state@^6.4.0": + version "6.4.1" + resolved "https://registry.yarnpkg.com/@codemirror/state/-/state-6.4.1.tgz#da57143695c056d9a3c38705ed34136e2b68171b" + integrity sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A== + +"@codemirror/theme-one-dark@^6.0.0": + version "6.1.2" + resolved "https://registry.yarnpkg.com/@codemirror/theme-one-dark/-/theme-one-dark-6.1.2.tgz#fcef9f9cfc17a07836cb7da17c9f6d7231064df8" + integrity sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA== + dependencies: + "@codemirror/language" "^6.0.0" + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.0.0" + "@lezer/highlight" "^1.0.0" + +"@codemirror/view@^6.0.0", "@codemirror/view@^6.17.0", "@codemirror/view@^6.23.0", "@codemirror/view@^6.27.0": + version "6.32.0" + resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.32.0.tgz#94be8aa18b60044471200ee80b0339513036680e" + integrity sha512-AgVNvED2QTsZp5e3syoHLsrWtwJFYWdx1Vr/m3f4h1ATQz0ax60CfXF3Htdmk69k2MlYZw8gXesnQdHtzyVmAw== + dependencies: + "@codemirror/state" "^6.4.0" + style-mod "^4.1.0" + w3c-keyname "^2.2.4" + +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== + dependencies: + ajv "^6.12.4" + debug "^4.1.1" + espree "^7.3.0" + globals "^13.9.0" + ignore "^4.0.6" + import-fresh "^3.2.1" + js-yaml "^3.13.1" + minimatch "^3.0.4" + strip-json-comments "^3.1.1" + +"@hapi/accept@5.0.2": + version "5.0.2" + resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-5.0.2.tgz#ab7043b037e68b722f93f376afb05e85c0699523" + integrity sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw== + dependencies: + "@hapi/boom" "9.x.x" + "@hapi/hoek" "9.x.x" + +"@hapi/boom@9.x.x": + version "9.1.4" + resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.4.tgz#1f9dad367c6a7da9f8def24b4a986fc5a7bd9db6" + integrity sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw== + dependencies: + "@hapi/hoek" "9.x.x" + +"@hapi/hoek@9.x.x": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@^0.3.24": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@lezer/common@^1.0.0", "@lezer/common@^1.0.2", "@lezer/common@^1.1.0", "@lezer/common@^1.2.0": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@lezer/common/-/common-1.2.1.tgz#198b278b7869668e1bebbe687586e12a42731049" + integrity sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ== + +"@lezer/css@^1.0.0": + version "1.1.8" + resolved "https://registry.yarnpkg.com/@lezer/css/-/css-1.1.8.tgz#11fd456dac53bc899b266778794ed4ca9576a5a4" + integrity sha512-7JhxupKuMBaWQKjQoLtzhGj83DdnZY9MckEOG5+/iLKNK2ZJqKc6hf6uc0HjwCX7Qlok44jBNqZhHKDhEhZYLA== + dependencies: + "@lezer/common" "^1.2.0" + "@lezer/highlight" "^1.0.0" + "@lezer/lr" "^1.0.0" + +"@lezer/highlight@^1.0.0": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@lezer/highlight/-/highlight-1.2.1.tgz#596fa8f9aeb58a608be0a563e960c373cbf23f8b" + integrity sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA== + dependencies: + "@lezer/common" "^1.0.0" + +"@lezer/lr@^1.0.0": + version "1.4.2" + resolved "https://registry.yarnpkg.com/@lezer/lr/-/lr-1.4.2.tgz#931ea3dea8e9de84e90781001dae30dea9ff1727" + integrity sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA== + dependencies: + "@lezer/common" "^1.0.0" + +"@napi-rs/triples@1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@napi-rs/triples/-/triples-1.0.3.tgz#76d6d0c3f4d16013c61e45dfca5ff1e6c31ae53c" + integrity sha512-jDJTpta+P4p1NZTFVLHJ/TLFVYVcOqv6l8xwOeBKNPMgY/zDYH/YH7SJbvrr/h1RcS9GzbPcLKGzpuK9cV56UA== + +"@next/env@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/env/-/env-12.0.7.tgz#316f7bd1b6b69f554d2676cfc91a16bc7e32ee79" + integrity sha512-TNDqBV37wd95SiNdZsSUq8gnnrTwr+aN9wqy4Zxrxw4bC/jCHNsbK94DxjkG99VL30VCRXXDBTA1/Wa2jIpF9Q== + +"@next/eslint-plugin-next@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.0.7.tgz#2c71bb66b8f8ff1080086342113406aa3156976f" + integrity sha512-xk7eMjw4+roWWR/0ETIoToCNs2wdvCGgQUiUO390Rj33/82yxZsh+ODRSaFWkiKp8zHWQN5GCW+U5pfjt/gyQg== + dependencies: + glob "7.1.7" + +"@next/polyfill-module@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-12.0.7.tgz#140e698557113cd3a3c0833f15ca8af1b608f2dc" + integrity sha512-sA8LAMMlmcspIZw/jeQuJTyA3uGrqOhTBaQE+G9u6DPohqrBFRkaz7RzzJeqXkUXw600occsIBknSjyVd1R67A== + +"@next/react-dev-overlay@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-12.0.7.tgz#ae8f9bd14b1786e52330b729ff63061735d21c77" + integrity sha512-dSQLgpZ5uzyittFtIHlJCLAbc0LlMFbRBSYuGsIlrtGyjYN+WMcnz8lK48VLxNPFGuB/hEzkWV4TW5Zu75+Fzg== + dependencies: + "@babel/code-frame" "7.12.11" + anser "1.4.9" + chalk "4.0.0" + classnames "2.2.6" + css.escape "1.5.1" + data-uri-to-buffer "3.0.1" + platform "1.3.6" + shell-quote "1.7.3" + source-map "0.8.0-beta.0" + stacktrace-parser "0.1.10" + strip-ansi "6.0.1" + +"@next/react-refresh-utils@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-12.0.7.tgz#921c403798e188b4f1d9e609283c0e8d3e532f89" + integrity sha512-Pglj1t+7RxH0txEqVcD8ZxrJgqLDmKvQDqxKq3ZPRWxMv7LTl7FVT2Pnb36QFeBwCvMVl67jxsADKsW0idz8sA== + +"@next/swc-android-arm64@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.0.7.tgz#9b0a9e4bc646a045eef725764112096f0a6ea204" + integrity sha512-yViT7EEc7JqxncRT+ZTeTsrAYXLlcefo0Y0eAfYmmalGD2605L4FWAVrJi4WnrSLji7l+veczw1WBmNeHICKKA== + +"@next/swc-darwin-arm64@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.0.7.tgz#2fd506dba91e4a35036b9fc7930a4d6b8895f16a" + integrity sha512-vhAyW2rDEUcQesRVaj0z1hSoz7QhDzzGd0V1/5/5i9YJOfOtyrPsVJ82tlf7BfXl6/Ep+eKNfWVIb5/Jv89EKg== + +"@next/swc-darwin-x64@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.0.7.tgz#b3016503caa5ed5cc6a20051517d5b2a79cfdc58" + integrity sha512-km+6Rx6TvbraoQ1f0MXa69ol/x0RxzucFGa2OgZaYJERas0spy0iwW8hpASsGcf597D8VRW1x+R2C7ZdjVBSTw== + +"@next/swc-linux-arm-gnueabihf@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.0.7.tgz#8e91ecddc2d6d26946949a67d481110db3063d09" + integrity sha512-d0zWr877YqZ2cf/DQy6obouaR39r0FPebcXj2nws9AC99m68CO2xVpWv9jT7mFvpY+T40HJisLH80jSZ2iQ9sA== + +"@next/swc-linux-arm64-gnu@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.0.7.tgz#1eefcf7b063610315b74e5c7dc24c3437370e49d" + integrity sha512-fdobh5u6gG13Gd5LkHhJ+W8tF9hbaFolRW99FhzArMe5/nMKlLdBymOxvitE3K4gSFQxbXJA6TbU0Vv0e59Kww== + +"@next/swc-linux-arm64-musl@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.0.7.tgz#e9e764519dfb75e43355c442181346cd6e72459b" + integrity sha512-vx0c5Q3oIScFNT/4jI9rCe0yPzKuCqWOkiO/OOV0ixSI2gLhbrwDIcdkm79fKVn3i8JOJunxE4zDoFeR/g8xqQ== + +"@next/swc-linux-x64-gnu@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.0.7.tgz#fef02e14ed8f9c114479dabba1475ae2d3bb040d" + integrity sha512-9ITyp6s6uGVKNx3C/GP7GrYycbcwTADG7TdIXzXUxOOZORrdB1GNg3w/EL3Am4VMPPEpO6v1RfKo2IKZpVKfTA== + +"@next/swc-linux-x64-musl@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.0.7.tgz#07dc334b1924d9f5a8c4a891b91562af19ff5de4" + integrity sha512-C+k+cygbIZXYfc+Hx2fNPUBEg7jzio+mniP5ywZevuTXW14zodIfQ3ZMoMJR8EpOVvYpjWFk2uAjiwqgx8vo/g== + +"@next/swc-win32-arm64-msvc@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.0.7.tgz#6c559d87ce142693173039a18b1c1d65519762dd" + integrity sha512-7jTRjOKkDVnb5s7VoHT7eX+eyT/5BQJ/ljP2G56riAgKGqPL63/V7FXemLhhLT67D+OjoP8DRA2E2ne6IPHk4w== + +"@next/swc-win32-ia32-msvc@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.0.7.tgz#16b23f2301b16877b3623f0e8364e8177e2ef7db" + integrity sha512-2u5pGDsk7H6gGxob2ATIojzlwKzgYsrijo7RRpXOiPePVqwPWg6/pmhaJzLdpfjaBgRg1NFmwSp/7Ump9X8Ijg== + +"@next/swc-win32-x64-msvc@12.0.7": + version "12.0.7" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.0.7.tgz#8d75d3b6a872ab97ab73e3b4173d56dbb2991917" + integrity sha512-frEWtbf+q8Oz4e2UqKJrNssk6DZ6/NLCQXn5/ORWE9dPAfe9XS6aK5FRZ6DuEPmmKd5gOoRkKJFFz5nYd+TeyQ== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + +"@radix-ui/number@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/number/-/number-0.1.0.tgz#73ad13d5cc5f75fa5e147d72e5d5d5e50d688256" + integrity sha512-rpf6QiOWLHAkM4FEMYu9i+5Jr8cKT893+R4mPpcdsy4LD7omr9JfdOqj/h/xPA5+EcVrpMMlU6rrRYpUB5UI8g== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/primitive@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-0.1.0.tgz#6206b97d379994f0d1929809db035733b337e543" + integrity sha512-tqxZKybwN5Fa3VzZry4G6mXAAb9aAqKmPtnVbZpL0vsBwvOHTBwsjHVPXylocYLwEtBY9SCe665bYnNB515uoA== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-checkbox@^0.1.4": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@radix-ui/react-checkbox/-/react-checkbox-0.1.5.tgz#3a6bd54ba1720c8e5c03852acf460e35dfbe9da3" + integrity sha512-M8Y4dSXsKSbF+FryG5VvZKr/1MukMVG7swq9p5s7wYb8Rvn0UM0rQ5w8BWmSWSV4BL/gbJdhwVCznwXXlgZRZg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "0.1.0" + "@radix-ui/react-compose-refs" "0.1.0" + "@radix-ui/react-context" "0.1.1" + "@radix-ui/react-label" "0.1.5" + "@radix-ui/react-presence" "0.1.2" + "@radix-ui/react-primitive" "0.1.4" + "@radix-ui/react-use-controllable-state" "0.1.0" + "@radix-ui/react-use-previous" "0.1.1" + "@radix-ui/react-use-size" "0.1.1" + +"@radix-ui/react-collection@0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-0.1.4.tgz#734061ffd5bb93e88889d49b87391a73a63824c9" + integrity sha512-3muGI15IdgaDFjOcO7xX8a35HQRBRF6LH9pS6UCeZeRmbslkVeHyJRQr2rzICBUoX7zgIA0kXyMDbpQnJGyJTA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "0.1.0" + "@radix-ui/react-context" "0.1.1" + "@radix-ui/react-primitive" "0.1.4" + "@radix-ui/react-slot" "0.1.2" + +"@radix-ui/react-compose-refs@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-0.1.0.tgz#cff6e780a0f73778b976acff2c2a5b6551caab95" + integrity sha512-eyclbh+b77k+69Dk72q3694OHrn9B3QsoIRx7ywX341U9RK1ThgQjMFZoPtmZNQTksXHLNEiefR8hGVeFyInGg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-context@0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-0.1.1.tgz#06996829ea124d9a1bc1dbe3e51f33588fab0875" + integrity sha512-PkyVX1JsLBioeu0jB9WvRpDBBLtLZohVDT3BB5CTSJqActma8S8030P57mWZb4baZifMvN7KKWPAA40UmWKkQg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-icons@^1.0.3": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-icons/-/react-icons-1.3.0.tgz#c61af8f323d87682c5ca76b856d60c2312dbcb69" + integrity sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw== + +"@radix-ui/react-id@0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-0.1.5.tgz#010d311bedd5a2884c1e9bb6aaaa4e6cc1d1d3b8" + integrity sha512-IPc4H/63bes0IZ1GJJozSEkSWcDyhNGtKFWUpJ+XtaLyQ1X3x7Mf6fWwWhDcpqlYEP+5WtAvfqcyEsyjP+ZhBQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-layout-effect" "0.1.0" + +"@radix-ui/react-label@0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@radix-ui/react-label/-/react-label-0.1.5.tgz#12cd965bfc983e0148121d4c99fb8e27a917c45c" + integrity sha512-Au9+n4/DhvjR0IHhvZ1LPdx/OW+3CGDie30ZyCkbSHIuLp4/CV4oPPGBwJ1vY99Jog3zyQhsGww9MXj8O9Aj/A== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "0.1.0" + "@radix-ui/react-context" "0.1.1" + "@radix-ui/react-id" "0.1.5" + "@radix-ui/react-primitive" "0.1.4" + +"@radix-ui/react-presence@0.1.2": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-0.1.2.tgz#9f11cce3df73cf65bc348e8b76d891f0d54c1fe3" + integrity sha512-3BRlFZraooIUfRlyN+b/Xs5hq1lanOOo/+3h6Pwu2GMFjkGKKa4Rd51fcqGqnVlbr3jYg+WLuGyAV4KlgqwrQw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "0.1.0" + "@radix-ui/react-use-layout-effect" "0.1.0" + +"@radix-ui/react-primitive@0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-0.1.4.tgz#6c233cf08b0cb87fecd107e9efecb3f21861edc1" + integrity sha512-6gSl2IidySupIMJFjYnDIkIWRyQdbu/AHK7rbICPani+LW4b0XdxBXc46og/iZvuwW8pjCS8I2SadIerv84xYA== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-slot" "0.1.2" + +"@radix-ui/react-separator@^0.1.3": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-separator/-/react-separator-0.1.4.tgz#383ad0f82b364d9982a978d752084af3598e4090" + integrity sha512-ct2qE072ydvMyFiPwgO8xGE4iLGR9BsSk2tIan23TYSiNTeQ89anzkuax5vNGjey0el2vnwUcReFS0Gy7Lk2VQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-primitive" "0.1.4" + +"@radix-ui/react-slider@^0.1.3": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slider/-/react-slider-0.1.4.tgz#a7b7a480ee00158195794b08cd3f1583cf102518" + integrity sha512-0z3bCcdrAi+FIcoLXS6r0ESVWuuyMnUJoCsFm7tC7Rtv95x34YtaI8YfSyQmzuMVS4rTsNtCCTZ/s727uRaVkQ== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/number" "0.1.0" + "@radix-ui/primitive" "0.1.0" + "@radix-ui/react-collection" "0.1.4" + "@radix-ui/react-compose-refs" "0.1.0" + "@radix-ui/react-context" "0.1.1" + "@radix-ui/react-primitive" "0.1.4" + "@radix-ui/react-use-controllable-state" "0.1.0" + "@radix-ui/react-use-direction" "0.1.0" + "@radix-ui/react-use-layout-effect" "0.1.0" + "@radix-ui/react-use-previous" "0.1.1" + "@radix-ui/react-use-size" "0.1.1" + +"@radix-ui/react-slot@0.1.2": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-0.1.2.tgz#e6f7ad9caa8ce81cc8d532c854c56f9b8b6307c8" + integrity sha512-ADkqfL+agEzEguU3yS26jfB50hRrwf7U4VTwAOZEmi/g+ITcBWe12yM46ueS/UCIMI9Py+gFUaAdxgxafFvY2Q== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-compose-refs" "0.1.0" + +"@radix-ui/react-switch@^0.1.4": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@radix-ui/react-switch/-/react-switch-0.1.5.tgz#071ffa19a17a47fdc5c5e6f371bd5901c9fef2f4" + integrity sha512-ITtslJPK+Yi34iNf7K9LtsPaLD76oRIVzn0E8JpEO5HW8gpRBGb2NNI9mxKtEB30TVqIcdjdL10AmuIfOMwjtg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "0.1.0" + "@radix-ui/react-compose-refs" "0.1.0" + "@radix-ui/react-context" "0.1.1" + "@radix-ui/react-label" "0.1.5" + "@radix-ui/react-primitive" "0.1.4" + "@radix-ui/react-use-controllable-state" "0.1.0" + "@radix-ui/react-use-previous" "0.1.1" + "@radix-ui/react-use-size" "0.1.1" + +"@radix-ui/react-toggle@^0.1.3": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@radix-ui/react-toggle/-/react-toggle-0.1.4.tgz#c5c63f7cc5a03556bb58e0a763735b41bb0331f9" + integrity sha512-gxUq6NgMc4ChV8VJnwdYqueeoblspwXHAexYo+jM9N2hFLbI1C587jLjdTHzIcUa9q68Xaw4jtiImWDOokEhRw== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/primitive" "0.1.0" + "@radix-ui/react-primitive" "0.1.4" + "@radix-ui/react-use-controllable-state" "0.1.0" + +"@radix-ui/react-use-callback-ref@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-0.1.0.tgz#934b6e123330f5b3a6b116460e6662cbc663493f" + integrity sha512-Va041McOFFl+aV+sejvl0BS2aeHx86ND9X/rVFmEFQKTXCp6xgUK0NGUAGcgBlIjnJSbMYPGEk1xKSSlVcN2Aw== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-controllable-state@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-0.1.0.tgz#4fced164acfc69a4e34fb9d193afdab973a55de1" + integrity sha512-zv7CX/PgsRl46a52Tl45TwqwVJdmqnlQEQhaYMz/yBOD2sx2gCkCFSoF/z9mpnYWmS6DTLNTg5lIps3fV6EnXg== + dependencies: + "@babel/runtime" "^7.13.10" + "@radix-ui/react-use-callback-ref" "0.1.0" + +"@radix-ui/react-use-direction@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-direction/-/react-use-direction-0.1.0.tgz#97ac1d52e497c974389e7988f809238ed72e7df7" + integrity sha512-NajpY/An9TCPSfOVkgWIdXJV+VuWl67PxB6kOKYmtNAFHvObzIoh8o0n9sAuwSAyFCZVq211FEf9gvVDRhOyiA== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-layout-effect@0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-0.1.0.tgz#ebf71bd6d2825de8f1fbb984abf2293823f0f223" + integrity sha512-+wdeS51Y+E1q1Wmd+1xSSbesZkpVj4jsg0BojCbopWvgq5iBvixw5vgemscdh58ep98BwUbsFYnrywFhV9yrVg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-previous@0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-previous/-/react-use-previous-0.1.1.tgz#0226017f72267200f6e832a7103760e96a6db5d0" + integrity sha512-O/ZgrDBr11dR8rhO59ED8s5zIXBRFi8MiS+CmFGfi7MJYdLbfqVOmQU90Ghf87aifEgWe6380LA69KBneaShAg== + dependencies: + "@babel/runtime" "^7.13.10" + +"@radix-ui/react-use-size@0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-0.1.1.tgz#f6b75272a5d41c3089ca78c8a2e48e5f204ef90f" + integrity sha512-pTgWM5qKBu6C7kfKxrKPoBI2zZYZmp2cSXzpUiGM3qEBQlMLtYhaY2JXdXUCxz+XmD1YEjc8oRwvyfsD4AG4WA== + dependencies: + "@babel/runtime" "^7.13.10" + +"@rushstack/eslint-patch@^1.0.8": + version "1.10.4" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz#427d5549943a9c6fce808e39ea64dbe60d4047f1" + integrity sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA== + +"@stitches/react@^1.2.6": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@stitches/react/-/react-1.2.8.tgz#954f8008be8d9c65c4e58efa0937f32388ce3a38" + integrity sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/node@*": + version "22.5.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.0.tgz#10f01fe9465166b4cab72e75f60d8b99d019f958" + integrity sha512-DkFrJOe+rfdHTqqMg0bSNlGlQ85hSoh2TPzZyhHsXnMtligRWpxUySiyw8FY14ITt24HVCiQPWxS3KO/QlGmWg== + dependencies: + undici-types "~6.19.2" + +"@typescript-eslint/parser@^5.0.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== + dependencies: + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + +"@uiw/codemirror-extensions-basic-setup@4.23.0": + version "4.23.0" + resolved "https://registry.yarnpkg.com/@uiw/codemirror-extensions-basic-setup/-/codemirror-extensions-basic-setup-4.23.0.tgz#c3c181153335c208a25d59b8ecbc7fc87fe85356" + integrity sha512-+k5nkRpUWGaHr1JWT8jcKsVewlXw5qBgSopm9LW8fZ6KnSNZBycz8kHxh0+WSvckmXEESGptkIsb7dlkmJT/hQ== + dependencies: + "@codemirror/autocomplete" "^6.0.0" + "@codemirror/commands" "^6.0.0" + "@codemirror/language" "^6.0.0" + "@codemirror/lint" "^6.0.0" + "@codemirror/search" "^6.0.0" + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.0.0" + +"@uiw/react-codemirror@^4.19.6": + version "4.23.0" + resolved "https://registry.yarnpkg.com/@uiw/react-codemirror/-/react-codemirror-4.23.0.tgz#5eeadcd5de61213ad76ac3c772fffb7e5b54b465" + integrity sha512-MnqTXfgeLA3fsUUQjqjJgemEuNyoGALgsExVm0NQAllAAi1wfj+IoKFeK+h3XXMlTFRCFYOUh4AHDv0YXJLsOg== + dependencies: + "@babel/runtime" "^7.18.6" + "@codemirror/commands" "^6.1.0" + "@codemirror/state" "^6.1.1" + "@codemirror/theme-one-dark" "^6.0.0" + "@uiw/codemirror-extensions-basic-setup" "4.23.0" + codemirror "^6.0.0" + +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@8.5.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" + integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.1: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + +anser@1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" + integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA== + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.1, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +aria-query@~5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + dependencies: + deep-equal "^2.0.5" + +array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + +array-includes@^3.1.6, array-includes@^3.1.7, array-includes@^3.1.8: + version "3.1.8" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.findlast@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" + integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-shim-unscopables "^1.0.2" + +array.prototype.findlastindex@^1.2.3: + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-shim-unscopables "^1.0.2" + +array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +array.prototype.tosorted@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc" + integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.3" + es-errors "^1.3.0" + es-shim-unscopables "^1.0.2" + +arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + +asn1.js@^4.10.1: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +assert@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32" + integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A== + dependencies: + es6-object-assign "^1.1.0" + is-nan "^1.2.1" + object-is "^1.0.1" + util "^0.12.0" + +ast-types-flow@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" + integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +autoprefixer@^10.4.1: + version "10.4.20" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" + integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== + dependencies: + browserslist "^4.23.3" + caniuse-lite "^1.0.30001646" + fraction.js "^4.3.7" + normalize-range "^0.1.2" + picocolors "^1.0.1" + postcss-value-parser "^4.2.0" + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +axe-core@^4.9.1: + version "4.10.0" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.10.0.tgz#d9e56ab0147278272739a000880196cdfe113b59" + integrity sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g== + +axobject-query@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" + integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== + dependencies: + deep-equal "^2.0.5" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.0.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.3, braces@~3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +brorand@^1.0.1, brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browserify-aes@^1.0.4, browserify-aes@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + dependencies: + bn.js "^5.0.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.3.tgz#7afe4c01ec7ee59a89a558a4b75bd85ae62d4208" + integrity sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw== + dependencies: + bn.js "^5.2.1" + browserify-rsa "^4.1.0" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.5" + hash-base "~3.0" + inherits "^2.0.4" + parse-asn1 "^5.1.7" + readable-stream "^2.3.8" + safe-buffer "^5.2.1" + +browserify-zlib@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserslist@4.16.6: + version "4.16.6" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" + integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== + dependencies: + caniuse-lite "^1.0.30001219" + colorette "^1.2.2" + electron-to-chromium "^1.3.723" + escalade "^3.1.1" + node-releases "^1.1.71" + +browserslist@^4.23.3: + version "4.23.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800" + integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== + dependencies: + caniuse-lite "^1.0.30001646" + electron-to-chromium "^1.5.4" + node-releases "^2.0.18" + update-browserslist-db "^1.1.0" + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== + +buffer@5.6.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786" + integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-css@^2.0.1: + version "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== + +caniuse-lite@^1.0.30001202, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001228, caniuse-lite@^1.0.30001646: + version "1.0.30001651" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz#52de59529e8b02b1aedcaaf5c05d9e23c0c28138" + integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg== + +chalk@2.4.2, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" + integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chokidar@3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" + integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.5.0" + optionalDependencies: + fsevents "~2.3.1" + +chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +classnames@2.2.6: + version "2.2.6" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" + integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== + +codemirror@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-6.0.1.tgz#62b91142d45904547ee3e0e0e4c1a79158035a29" + integrity sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg== + dependencies: + "@codemirror/autocomplete" "^6.0.0" + "@codemirror/commands" "^6.0.0" + "@codemirror/language" "^6.0.0" + "@codemirror/lint" "^6.0.0" + "@codemirror/search" "^6.0.0" + "@codemirror/state" "^6.0.0" + "@codemirror/view" "^6.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colorette@^1.2.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== + +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +constants-browserify@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== + +convert-source-map@1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + dependencies: + safe-buffer "~5.1.1" + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +create-ecdh@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + dependencies: + bn.js "^4.1.0" + elliptic "^6.5.3" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +crelt@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/crelt/-/crelt-1.0.6.tgz#7cc898ea74e190fb6ef9dae57f8f81cf7302df72" + integrity sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g== + +cross-spawn@^7.0.0, cross-spawn@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-browserify@3.12.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +css.escape@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-simple@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-3.0.2.tgz#5d9d0caf4de7a76319b8716a789bb989a028054c" + integrity sha512-7c6EOw3oZshKOZc20Jh+cs2dIKxp0viV043jdal/t1iGVQkoyAQio3rrFWhPgAlkXMu+PRXsslqLhosFTmLhmQ== + dependencies: + caniuse-lite "^1.0.30001202" + +cssnano-simple@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-3.0.0.tgz#a4b8ccdef4c7084af97e19bc5b93b4ecf211e90f" + integrity sha512-oU3ueli5Dtwgh0DyeohcIEE00QVfbPR3HzyXdAl89SfnQG3y0/qcpfLVW+jPIh3/rgMZGwuW96rejZGaYE9eUg== + dependencies: + cssnano-preset-simple "^3.0.0" + +damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +data-uri-to-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" + integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== + +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +debug@2: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.0.1, debug@^4.1.1, debug@^4.3.4: + version "4.3.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" + integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== + dependencies: + ms "2.1.2" + +deep-equal@^2.0.5: + version "2.2.3" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.3.tgz#af89dafb23a396c7da3e862abc0be27cf51d56e1" + integrity sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.5" + es-get-iterator "^1.1.3" + get-intrinsic "^1.2.2" + is-arguments "^1.1.1" + is-array-buffer "^3.0.2" + is-date-object "^1.0.5" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + isarray "^2.0.5" + object-is "^1.1.5" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.1" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.13" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +des.js@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" + integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +domain-browser@4.19.0: + version "4.19.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.19.0.tgz#1093e17c0a17dbd521182fe90d49ac1370054af1" + integrity sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ== + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +electron-to-chromium@^1.3.723, electron-to-chromium@^1.5.4: + version "1.5.13" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz#1abf0410c5344b2b829b7247e031f02810d442e6" + integrity sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q== + +elliptic@^6.5.3, elliptic@^6.5.5: + version "6.5.7" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.7.tgz#8ec4da2cb2939926a1b9a73619d768207e647c8b" + integrity sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + integrity sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng== + +encoding@0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + +enquirer@^2.3.5: + version "2.4.1" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.4.1.tgz#93334b3fbd74fc7097b224ab4a8fb7e40bf4ae56" + integrity sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== + dependencies: + ansi-colors "^4.1.1" + strip-ansi "^6.0.1" + +es-abstract@^1.17.5, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2, es-abstract@^1.23.3: + version "1.23.3" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" + integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.0.3" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" + globalthis "^1.0.3" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + hasown "^2.0.2" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" + is-callable "^1.2.7" + is-data-view "^1.0.1" + is-negative-zero "^2.0.3" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.3" + is-string "^1.0.7" + is-typed-array "^1.1.13" + is-weakref "^1.0.2" + object-inspect "^1.13.1" + object-keys "^1.1.1" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.2" + safe-array-concat "^1.1.2" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.8" + typed-array-buffer "^1.0.2" + typed-array-byte-length "^1.0.1" + typed-array-byte-offset "^1.0.2" + typed-array-length "^1.0.6" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.15" + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-get-iterator@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + is-arguments "^1.1.1" + is-map "^2.0.2" + is-set "^2.0.2" + is-string "^1.0.7" + isarray "^2.0.5" + stop-iteration-iterator "^1.0.0" + +es-iterator-helpers@^1.0.19: + version "1.0.19" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz#117003d0e5fec237b4b5c08aded722e0c6d50ca8" + integrity sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.3" + es-errors "^1.3.0" + es-set-tostringtag "^2.0.3" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + globalthis "^1.0.3" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + internal-slot "^1.0.7" + iterator.prototype "^1.1.2" + safe-array-concat "^1.1.2" + +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== + dependencies: + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" + +es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== + dependencies: + hasown "^2.0.0" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es6-object-assign@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" + integrity sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw== + +escalade@^3.1.1, escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +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== + +eslint-config-next@12.0.7: + version "12.0.7" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.0.7.tgz#985f06c3d749673f6b4b214db6b9321da1bf0b5f" + integrity sha512-kWOaym5qjyzR190zFKkZMaHetmiRORmzJiKML7Kr9CL213S6SwkrHHCEL58TRdpx0NA+HzrsFR9zgcV2pvV2Yg== + dependencies: + "@next/eslint-plugin-next" "12.0.7" + "@rushstack/eslint-patch" "^1.0.8" + "@typescript-eslint/parser" "^5.0.0" + eslint-import-resolver-node "^0.3.4" + eslint-import-resolver-typescript "^2.4.0" + eslint-plugin-import "^2.25.2" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.27.0" + eslint-plugin-react-hooks "^4.3.0" + +eslint-import-resolver-node@^0.3.4, eslint-import-resolver-node@^0.3.9: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + dependencies: + debug "^3.2.7" + is-core-module "^2.13.0" + resolve "^1.22.4" + +eslint-import-resolver-typescript@^2.4.0: + version "2.7.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" + integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== + dependencies: + debug "^4.3.4" + glob "^7.2.0" + is-glob "^4.0.3" + resolve "^1.22.0" + tsconfig-paths "^3.14.1" + +eslint-module-utils@^2.8.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34" + integrity sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q== + dependencies: + debug "^3.2.7" + +eslint-plugin-import@^2.25.2: + version "2.29.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" + integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== + dependencies: + array-includes "^3.1.7" + array.prototype.findlastindex "^1.2.3" + array.prototype.flat "^1.3.2" + array.prototype.flatmap "^1.3.2" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.9" + eslint-module-utils "^2.8.0" + hasown "^2.0.0" + is-core-module "^2.13.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.fromentries "^2.0.7" + object.groupby "^1.0.1" + object.values "^1.1.7" + semver "^6.3.1" + tsconfig-paths "^3.15.0" + +eslint-plugin-jsx-a11y@^6.5.1: + version "6.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz#67ab8ff460d4d3d6a0b4a570e9c1670a0a8245c8" + integrity sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g== + dependencies: + aria-query "~5.1.3" + array-includes "^3.1.8" + array.prototype.flatmap "^1.3.2" + ast-types-flow "^0.0.8" + axe-core "^4.9.1" + axobject-query "~3.1.1" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + es-iterator-helpers "^1.0.19" + hasown "^2.0.2" + jsx-ast-utils "^3.3.5" + language-tags "^1.0.9" + minimatch "^3.1.2" + object.fromentries "^2.0.8" + safe-regex-test "^1.0.3" + string.prototype.includes "^2.0.0" + +eslint-plugin-react-hooks@^4.3.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596" + integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ== + +eslint-plugin-react@^7.27.0: + version "7.35.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz#00b1e4559896710e58af6358898f2ff917ea4c41" + integrity sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA== + dependencies: + array-includes "^3.1.8" + array.prototype.findlast "^1.2.5" + array.prototype.flatmap "^1.3.2" + array.prototype.tosorted "^1.1.4" + doctrine "^2.1.0" + es-iterator-helpers "^1.0.19" + estraverse "^5.3.0" + hasown "^2.0.2" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.1.2" + object.entries "^1.1.8" + object.fromentries "^2.0.8" + object.values "^1.2.0" + prop-types "^15.8.1" + resolve "^2.0.0-next.5" + semver "^6.3.1" + string.prototype.matchall "^4.0.11" + string.prototype.repeat "^1.0.0" + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint@7.32.0: + version "7.32.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== + dependencies: + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.0.1" + doctrine "^3.0.0" + enquirer "^2.3.5" + escape-string-regexp "^4.0.0" + eslint-scope "^5.1.1" + eslint-utils "^2.1.0" + eslint-visitor-keys "^2.0.0" + espree "^7.3.1" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.1.2" + globals "^13.6.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.0.4" + natural-compare "^1.4.0" + optionator "^0.9.1" + progress "^2.0.0" + regexpp "^3.1.0" + semver "^7.2.1" + strip-ansi "^6.0.0" + strip-json-comments "^3.1.0" + table "^6.0.9" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.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== + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +events@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.9, fast-glob@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + 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== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-uri@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.1.tgz#cddd2eecfc83a71c1be2cc2ef2061331be8a7134" + integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw== + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +find-cache-dir@3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" + integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + +flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +foreground-child@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" + integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.1, fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-orientation@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/get-orientation/-/get-orientation-1.1.2.tgz#20507928951814f8a91ded0a0e67b29dfab98947" + integrity sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ== + dependencies: + stream-parser "^0.3.1" + +get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== + dependencies: + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + +glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "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.1.7: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^10.3.10: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + +glob@^7.1.3, glob@^7.2.0: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^13.6.0, globals@^13.9.0: + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== + dependencies: + define-properties "^1.2.1" + gopd "^1.0.1" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +goober@^2.1.10: + version "2.1.14" + resolved "https://registry.yarnpkg.com/goober/-/goober-2.1.14.tgz#4a5c94fc34dc086a8e6035360ae1800005135acd" + integrity sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg== + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.2: + 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== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1, has-proto@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash-base@~3.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +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== + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +http-errors@1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +https-browserify@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +ieee754@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.2.0: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== + +image-size@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.0.0.tgz#58b31fe4743b1cec0a0ac26f5c914d3c5b2f0750" + integrity sha512-JLJ6OwBfO1KcA+TvJT+v8gbE6iWbj24LyDNFgFEN0lzegn6cC6a/p3NIDaepMsJjQjlUWqIC7wJv8lBFxPNjcw== + dependencies: + queue "6.0.2" + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.4, internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.0" + side-channel "^1.0.4" + +is-arguments@^1.0.4, is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-array-buffer@^3.0.2, is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.13.0, is-core-module@^2.13.1: + version "2.15.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" + integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== + dependencies: + hasown "^2.0.2" + +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + +is-date-object@^1.0.1, is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finalizationregistry@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + dependencies: + call-bind "^1.0.2" + +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" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-function@^1.0.10, is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-map@^2.0.2, is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + +is-nan@^1.2.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-set@^2.0.2, is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + +is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + dependencies: + call-bind "^1.0.7" + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.13, is-typed-array@^1.1.3: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + dependencies: + which-typed-array "^1.1.14" + +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +iterator.prototype@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" + integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== + dependencies: + define-properties "^1.2.1" + get-intrinsic "^1.2.1" + has-symbols "^1.0.3" + reflect.getprototypeof "^1.0.4" + set-function-name "^2.0.1" + +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + +jest-worker@27.0.0-next.5: + version "27.0.0-next.5" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.0-next.5.tgz#5985ee29b12a4e191f4aae4bb73b97971d86ec28" + integrity sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jiti@^1.21.0: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.1, json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: + version "3.3.5" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +language-subtag-registry@^0.3.20: + version "0.3.23" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz#23529e04d9e3b74679d70142df3fd2eb6ec572e7" + integrity sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ== + +language-tags@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" + integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== + dependencies: + language-subtag-registry "^0.3.20" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lilconfig@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" + integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +loader-utils@1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== + +lodash.startcase@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" + integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.7" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" + integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.1.23, nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +next@12.0.7: + version "12.0.7" + resolved "https://registry.yarnpkg.com/next/-/next-12.0.7.tgz#33ebf229b81b06e583ab5ae7613cffe1ca2103fc" + integrity sha512-sKO8GJJYfuk9c+q+zHSNumvff+wP7ufmOlwT6BuzwiYfFJ61VTTkfTcDLSJ+95ErQJiC54uS4Yg5JEE8H6jXRA== + dependencies: + "@babel/runtime" "7.15.4" + "@hapi/accept" "5.0.2" + "@napi-rs/triples" "1.0.3" + "@next/env" "12.0.7" + "@next/polyfill-module" "12.0.7" + "@next/react-dev-overlay" "12.0.7" + "@next/react-refresh-utils" "12.0.7" + acorn "8.5.0" + assert "2.0.0" + browserify-zlib "0.2.0" + browserslist "4.16.6" + buffer "5.6.0" + caniuse-lite "^1.0.30001228" + chalk "2.4.2" + chokidar "3.5.1" + constants-browserify "1.0.0" + crypto-browserify "3.12.0" + cssnano-simple "3.0.0" + domain-browser "4.19.0" + encoding "0.1.13" + etag "1.8.1" + events "3.3.0" + find-cache-dir "3.3.1" + get-orientation "1.1.2" + https-browserify "1.0.0" + image-size "1.0.0" + jest-worker "27.0.0-next.5" + node-fetch "2.6.1" + node-html-parser "1.4.9" + os-browserify "0.3.0" + p-limit "3.1.0" + path-browserify "1.0.1" + postcss "8.2.15" + process "0.11.10" + querystring-es3 "0.2.1" + raw-body "2.4.1" + react-is "17.0.2" + react-refresh "0.8.3" + regenerator-runtime "0.13.4" + stream-browserify "3.0.0" + stream-http "3.1.1" + string_decoder "1.3.0" + styled-jsx "5.0.0-beta.3" + timers-browserify "2.0.12" + tty-browserify "0.0.1" + use-subscription "1.5.1" + util "0.12.4" + vm-browserify "1.1.2" + watchpack "2.3.0" + optionalDependencies: + "@next/swc-android-arm64" "12.0.7" + "@next/swc-darwin-arm64" "12.0.7" + "@next/swc-darwin-x64" "12.0.7" + "@next/swc-linux-arm-gnueabihf" "12.0.7" + "@next/swc-linux-arm64-gnu" "12.0.7" + "@next/swc-linux-arm64-musl" "12.0.7" + "@next/swc-linux-x64-gnu" "12.0.7" + "@next/swc-linux-x64-musl" "12.0.7" + "@next/swc-win32-arm64-msvc" "12.0.7" + "@next/swc-win32-ia32-msvc" "12.0.7" + "@next/swc-win32-x64-msvc" "12.0.7" + +node-fetch@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + +node-html-parser@1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c" + integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw== + dependencies: + he "1.2.0" + +node-releases@^1.1.71: + version "1.1.77" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.77.tgz#50b0cfede855dd374e7585bf228ff34e57c1c32e" + integrity sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ== + +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +object-assign@^4.0.1, 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== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +object-inspect@^1.13.1: + version "1.13.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" + integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== + +object-is@^1.0.1, object-is@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07" + integrity sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4, object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" + integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +object.fromentries@^2.0.7, object.fromentries@^2.0.8: + version "2.0.8" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" + integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + +object.groupby@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" + integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + +object.values@^1.1.6, object.values@^1.1.7, object.values@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" + integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +optionator@^0.9.1: + version "0.9.4" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.5" + +os-browserify@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== + +p-limit@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +package-json-from-dist@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" + integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== + +pako@~1.0.5: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-asn1@^5.0.0, parse-asn1@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.7.tgz#73cdaaa822125f9647165625eb45f8a051d2df06" + integrity sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg== + dependencies: + asn1.js "^4.10.1" + browserify-aes "^1.2.0" + evp_bytestokey "^1.0.3" + hash-base "~3.0" + pbkdf2 "^3.1.2" + safe-buffer "^5.2.1" + +path-browserify@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pbkdf2@^3.0.3, pbkdf2@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +picocolors@^1.0.0, picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +platform@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" + integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== + +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-load-config@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== + dependencies: + lilconfig "^3.0.0" + yaml "^2.3.4" + +postcss-nested@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131" + integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ== + dependencies: + postcss-selector-parser "^6.1.1" + +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.1.1: + version "6.1.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" + integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@8.2.15: + version "8.2.15" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.15.tgz#9e66ccf07292817d226fc315cbbf9bc148fbca65" + integrity sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q== + dependencies: + colorette "^1.2.2" + nanoid "^3.1.23" + source-map "^0.6.1" + +postcss@^8.4.23, postcss@^8.4.5: + version "8.4.41" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681" + integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +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" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +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== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +querystring-es3@0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +queue@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" + integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== + dependencies: + inherits "~2.0.3" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +raw-body@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" + integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA== + dependencies: + bytes "3.1.0" + http-errors "1.7.3" + iconv-lite "0.4.24" + unpipe "1.0.0" + +react-dom@17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" + integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.2" + +react-hot-toast@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/react-hot-toast/-/react-hot-toast-2.4.1.tgz#df04295eda8a7b12c4f968e54a61c8d36f4c0994" + integrity sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ== + dependencies: + goober "^2.1.10" + +react-is@17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-refresh@0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" + integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== + +react@17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +readable-stream@^2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.5.0, readable-stream@^3.6.0: + 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" + +readdirp@~3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" + integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== + dependencies: + picomatch "^2.2.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +reflect.getprototypeof@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859" + integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.1" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + globalthis "^1.0.3" + which-builtin-type "^1.1.3" + +regenerator-runtime@0.13.4: + version "0.13.4" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.4.tgz#e96bf612a3362d12bb69f7e8f74ffeab25c7ac91" + integrity sha512-plpwicqEzfEyTQohIKktWigcLzmNStMGwbOUbykx51/29Z3JOGYldaaNGK7ngNXV+UcoqvIMmloZ48Sr74sd+g== + +regenerator-runtime@^0.13.4: + 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== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + dependencies: + call-bind "^1.0.6" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.1" + +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.1.7, resolve@^1.22.0, resolve@^1.22.2, resolve@^1.22.4: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.5: + version "2.0.0-next.5" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" + integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-regex "^1.1.4" + +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +scheduler@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +semver@^6.0.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.2.1, semver@^7.3.7: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +set-function-name@^2.0.1, set-function-name@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== + +side-channel@^1.0.4, side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + +source-map@0.7.3: + version "0.7.3" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" + integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== + +source-map@0.8.0-beta.0: + version "0.8.0-beta.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" + integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== + dependencies: + whatwg-url "^7.0.0" + +source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +stacktrace-parser@0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" + integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== + dependencies: + type-fest "^0.7.1" + +"statuses@>= 1.5.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + +stream-browserify@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" + integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== + dependencies: + inherits "~2.0.4" + readable-stream "^3.5.0" + +stream-http@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.1.1.tgz#0370a8017cf8d050b9a8554afe608f043eaff564" + integrity sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.4" + readable-stream "^3.6.0" + xtend "^4.0.2" + +stream-parser@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/stream-parser/-/stream-parser-0.3.1.tgz#1618548694420021a1182ff0af1911c129761773" + integrity sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ== + dependencies: + debug "2" + +string-hash@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" + integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A== + +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string.prototype.includes@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz#8986d57aee66d5460c144620a6d873778ad7289f" + integrity sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.matchall@^4.0.11: + version "4.0.11" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" + integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.7" + regexp.prototype.flags "^1.5.2" + set-function-name "^2.0.2" + side-channel "^1.0.6" + +string.prototype.repeat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a" + integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" + +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string_decoder@1.3.0, string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, 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" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +style-mod@^4.0.0, style-mod@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/style-mod/-/style-mod-4.1.2.tgz#ca238a1ad4786520f7515a8539d5a63691d7bf67" + integrity sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw== + +styled-jsx@5.0.0-beta.3: + version "5.0.0-beta.3" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.0-beta.3.tgz#400d16179b5dff10d5954ab8be27a9a1b7780dd2" + integrity sha512-HtDDGSFPvmjHIqWf9n8Oo54tAoY/DTplvlyOH2+YOtD80Sp31Ap8ffSmxhgk5EkUoJ7xepdXMGT650mSffWuRA== + dependencies: + "@babel/plugin-syntax-jsx" "7.14.5" + "@babel/types" "7.15.0" + convert-source-map "1.7.0" + loader-utils "1.2.3" + source-map "0.7.3" + string-hash "1.1.3" + stylis "3.5.4" + stylis-rule-sheet "0.0.10" + +stylis-rule-sheet@0.0.10: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" + integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw== + +stylis@3.5.4: + version "3.5.4" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe" + integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q== + +sucrase@^3.32.0: + version "3.35.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "^10.3.10" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +table@^6.0.9: + version "6.8.2" + resolved "https://registry.yarnpkg.com/table/-/table-6.8.2.tgz#c5504ccf201213fa227248bdc8c5569716ac6c58" + integrity sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA== + dependencies: + ajv "^8.0.1" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + +tailwindcss@^3.0.12: + version "3.4.10" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.10.tgz#70442d9aeb78758d1f911af29af8255ecdb8ffef" + integrity sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.3.0" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.21.0" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +timers-browserify@2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" + integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== + dependencies: + setimmediate "^1.0.4" + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== + dependencies: + punycode "^2.1.0" + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +tsconfig-paths@^3.14.1, tsconfig-paths@^3.15.0: + version "3.15.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tty-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" + integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== + +typed-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + +typed-array-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-byte-offset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-length@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +undici-types@~6.19.2: + version "6.19.8" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== + +unpipe@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +use-subscription@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1" + integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA== + dependencies: + object-assign "^4.1.1" + +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" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util@0.12.4: + version "0.12.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253" + integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + safe-buffer "^5.1.2" + which-typed-array "^1.1.2" + +util@^0.12.0: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + +v8-compile-cache@^2.0.3: + version "2.4.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz#cdada8bec61e15865f05d097c5f4fd30e94dc128" + integrity sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== + +vm-browserify@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + +w3c-keyname@^2.2.4: + version "2.2.8" + resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz#7b17c8c6883d4e8b86ac8aba79d39e880f8869c5" + integrity sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ== + +watchpack@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.3.0.tgz#a41bca3da6afaff31e92a433f4c856a0c25ea0c4" + integrity sha512-MnN0Q1OsvB/GGHETrFeZPQaOelWh/7O+EiFlj8sM9GPjtQkis7k01aAxrg/18kTfoIVcLL+haEVFlXDaSRwKRw== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-builtin-type@^1.1.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.4.tgz#592796260602fc3514a1b5ee7fa29319b72380c3" + integrity sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w== + dependencies: + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.0.2" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.2" + which-typed-array "^1.1.15" + +which-collection@^1.0.1, which-collection@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + dependencies: + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" + +which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.2" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +word-wrap@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" - dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da - languageName: node - linkType: hard - -"wrap-ansi@npm:^8.1.0": - version: 8.1.0 - resolution: "wrap-ansi@npm:8.1.0" - dependencies: - ansi-styles: "npm:^6.1.0" - string-width: "npm:^5.0.1" - strip-ansi: "npm:^7.0.1" - checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 - languageName: node - linkType: hard - -"wrappy@npm:1": - version: 1.0.2 - resolution: "wrappy@npm:1.0.2" - checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 - languageName: node - linkType: hard - -"xtend@npm:^4.0.2": - version: 4.0.2 - resolution: "xtend@npm:4.0.2" - checksum: 10c0/366ae4783eec6100f8a02dff02ac907bf29f9a00b82ac0264b4d8b832ead18306797e283cf19de776538babfdcb2101375ec5646b59f08c52128ac4ab812ed0e - languageName: node - linkType: hard - -"yallist@npm:^4.0.0": - version: 4.0.0 - resolution: "yallist@npm:4.0.0" - checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a - languageName: node - linkType: hard - -"yaml@npm:^1.10.2": - version: 1.10.2 - resolution: "yaml@npm:1.10.2" - checksum: 10c0/5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f - languageName: node - linkType: hard - -"yocto-queue@npm:^0.1.0": - version: 0.1.0 - resolution: "yocto-queue@npm:0.1.0" - checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f - languageName: node - linkType: hard + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +xtend@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +yaml@^2.3.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.0.tgz#c6165a721cf8000e91c36490a41d7be25176cf5d" + integrity sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== From 4a74b3d5a891587ca6abc3e236fa871c3ec7a272 Mon Sep 17 00:00:00 2001 From: toni-santos Date: Mon, 2 Sep 2024 16:55:01 +0100 Subject: [PATCH 20/61] add styling to table components --- content-scripts/modules/components/table.tsx | 11 ++-- css/simpler.css | 65 +++++++++++++++++--- 2 files changed, 63 insertions(+), 13 deletions(-) diff --git a/content-scripts/modules/components/table.tsx b/content-scripts/modules/components/table.tsx index 80412eb..f2372e3 100644 --- a/content-scripts/modules/components/table.tsx +++ b/content-scripts/modules/components/table.tsx @@ -4,18 +4,17 @@ import { isDate, reverseDate } from "../utilities/date.js"; // Props for the Table component interface TableProps { // content may be a JSX component or a string - // TODO maybe we should add JSX.Component if we want to allow JSX components - tableName: string; + name: string; headers: [string, (string | Element)][]; data: (string | Element)[][]; } -export const Table:JSX.Component = ({ tableName, headers, data }) => { +export const Table:JSX.Component = ({ name, headers, data }) => { const headerKeys = headers.map((header) => header[0]); const sortHeader = (event: any) => { const states = ["asc", "desc"]; - let table = document.querySelector(`[aria-name=${tableName}]`)!; + let table = document.querySelector(`[aria-name=${name}]`)!; const rows = Array.from(table.querySelectorAll("tbody tr")); let el = event.target as HTMLElement; @@ -34,7 +33,7 @@ export const Table:JSX.Component = ({ tableName, headers, data }) => const nextState = states[(states.indexOf(currentState || "") + 1) % 2]; el.setAttribute("aria-sort", nextState); currentState = nextState; - } + } rows.sort((a: Element, b: Element): number => { let aValue = a.querySelector(`td[key=${key}]`)!.innerHTML; @@ -64,7 +63,7 @@ export const Table:JSX.Component = ({ tableName, headers, data }) => } return ( - +
          {headers.map(([key, value]) => ( diff --git a/css/simpler.css b/css/simpler.css index 4a90c94..eaa6843 100644 --- a/css/simpler.css +++ b/css/simpler.css @@ -1350,18 +1350,22 @@ center:first-of-type > img, .encaixar { object-fit: cover; } +.se-table { + width: 100%; + border-collapse: collapse !important; +} + .se-sort-button { background: none !important; border: none !important; - display: inline !important; - right: 0 !important; - left: 0 !important; - top: 0 !important; - bottom: 0 !important; + display: inline-block !important; width: 100% !important; height: 100% !important; outline: none !important; cursor: pointer !important; + padding: 0 !important; + margin: 0 !important; + box-sizing: border-box !important; } .se-sort-button:hover { @@ -1369,6 +1373,53 @@ center:first-of-type > img, .encaixar { } .se-table-header { - height: fit-content; - width: fit-content; + background: none !important; + color: #676767; + padding: 0 !important; + margin: 0; + width: auto; + height: 100%; +} + +.se-table-header::after { + display: none; +} + +.se-sort-button::after { + font-family: "remixicon"; + vertical-align: middle; + padding-left: 0.3rem; +} + +.se-sort-button[aria-sort="asc"]::after { + content: "\f160"; + font-weight: bold; +} + +.se-sort-button[aria-sort="desc"]::after { + content: "\f15f"; + font-weight: bold; +} + +.se-sort-button, +.se-table td { + padding: 0.6rem 1rem !important; + border-bottom: 1.4px solid #f3f3f3; + text-align: left !important; +} + +.se-table tr td:first-child, +.se-table tr th:first-child .se-sort-button{ + text-align: left; + padding-left: 0 !important; +} + +.se-table tr td:last-child, +.se-table tr th:last-child .se-sort-button{ + text-align: right !important; + padding-right: 0 !important; +} + +.se-table thead tr { + border-bottom: 1.4px solid #f3f3f3 !important; } \ No newline at end of file From 8074588465cf84330498f26d4189288d4b939486 Mon Sep 17 00:00:00 2001 From: thePeras Date: Fri, 23 Aug 2024 17:40:00 +0100 Subject: [PATCH 21/61] Icon component and remove decraped code --- content-scripts/components/Button.tsx | 11 +++-- .../components/HeaderAuthentication.tsx | 23 +++++---- content-scripts/components/Icon.tsx | 13 +++++ content-scripts/modules/layout.ts | 2 +- content-scripts/modules/utilities/popover.js | 48 ------------------- content-scripts/modules/utilities/popover.ts | 17 +++++++ 6 files changed, 48 insertions(+), 66 deletions(-) create mode 100644 content-scripts/components/Icon.tsx delete mode 100644 content-scripts/modules/utilities/popover.js create mode 100644 content-scripts/modules/utilities/popover.ts diff --git a/content-scripts/components/Button.tsx b/content-scripts/components/Button.tsx index 082b5c0..96f90f9 100644 --- a/content-scripts/components/Button.tsx +++ b/content-scripts/components/Button.tsx @@ -1,18 +1,19 @@ import jsx from "texsaur"; +import Icon from "./Icon"; interface ButtonProps { title?: string; icon?: string; id?: string; className?: string; - onClick?: (e: Event) => void; + onclick?: (e: Event) => void; } -const Button: JSX.Component = ({ title, icon, id, className, onClick }) => { +const Button: JSX.Component = ({ title, icon, id, className, onclick }) => { return ( - ); } diff --git a/content-scripts/components/HeaderAuthentication.tsx b/content-scripts/components/HeaderAuthentication.tsx index f0eaf30..fc85129 100644 --- a/content-scripts/components/HeaderAuthentication.tsx +++ b/content-scripts/components/HeaderAuthentication.tsx @@ -1,6 +1,7 @@ import jsx from "texsaur"; import { AuthSession } from "../types"; import { togglePopover } from "../modules/utilities/popover"; +import Icon from "./Icon"; interface Props { auth: AuthSession | null; @@ -16,7 +17,7 @@ const Authentication = ({ auth }: Props) => { }`} onclick={() => togglePopover("se-auth-notifications-menu")} > - +
          {
              - + Sem notificações
              - +
              @@ -63,20 +64,21 @@ const Authentication = ({ auth }: Props) => { className="se-auth-profile" href={`fest_geral.cursos_list?pv_num_unico=${auth.number}`} > - Perfil + + Perfil - Conta - corrente + + Conta corrente - Terminar - Sessão + + Terminar Sessão @@ -88,9 +90,6 @@ const Authentication = ({ auth }: Props) => { -
              @@ -124,7 +123,7 @@ const Authentication = ({ auth }: Props) => { id="se-auth-federate" className="se-button" > - + Autenticação Federada diff --git a/content-scripts/components/Icon.tsx b/content-scripts/components/Icon.tsx new file mode 100644 index 0000000..542e948 --- /dev/null +++ b/content-scripts/components/Icon.tsx @@ -0,0 +1,13 @@ +import jsx from "texsaur"; + +interface IconProps { + name?: string; +} + +const Icon: JSX.Component = ({ name }) => { + return ( + + ); +} + +export default Icon; \ No newline at end of file diff --git a/content-scripts/modules/layout.ts b/content-scripts/modules/layout.ts index 74498ef..787c993 100644 --- a/content-scripts/modules/layout.ts +++ b/content-scripts/modules/layout.ts @@ -159,7 +159,7 @@ const loadNotifications = async (): Promise => { li.append(Button({ icon: "ri-check-line", className: "se-notification-button", - onClick: markAsRead, + onclick: markAsRead, })); } diff --git a/content-scripts/modules/utilities/popover.js b/content-scripts/modules/utilities/popover.js deleted file mode 100644 index a8cccd1..0000000 --- a/content-scripts/modules/utilities/popover.js +++ /dev/null @@ -1,48 +0,0 @@ -let popoverId = 0; - -export const createPopover = (popover, target = popover) => { - const id = popoverId++; - - popover.addEventListener(`popover-close:${id}`, (e) => e.stopPropagation()); - - document.addEventListener(`popover-close:${id}`, () => { - target?.classList.remove("se-popover-open"); - document.removeEventListener("click", close, { - capture: true, - }); - }); - - const close = (/** @type {Event} */ e) => - e.target?.dispatchEvent( - new CustomEvent(`popover-close:${id}`, { bubbles: true }) - ); - - const fn = (/** @type {Event} */ e) => { - if (target?.classList.contains("se-popover-open")) return; - - target?.classList.add("se-popover-open"); - document.addEventListener("click", close, { - capture: true, - }); - }; - - return fn; -}; - -export const togglePopover = (popoverId) => { - const popover = document.getElementById(popoverId); - if (!popover) return; - - const menuDivs = document.querySelectorAll('div[id$="-menu"]'); - menuDivs.forEach((div) => { - if (div !== popover) - div.classList.remove("se-popover-open"); - }); - - if (popover.classList.contains("se-popover-open")) { - popover.classList.remove("se-popover-open"); - } else { - popover.classList.add("se-popover-open"); - } - return; -} diff --git a/content-scripts/modules/utilities/popover.ts b/content-scripts/modules/utilities/popover.ts new file mode 100644 index 0000000..f4fc65c --- /dev/null +++ b/content-scripts/modules/utilities/popover.ts @@ -0,0 +1,17 @@ +export const togglePopover = (popoverId: string) => { + const popover = document.getElementById(popoverId); + if (!popover) return; + + const menuDivs = document.querySelectorAll('div[id$="-menu"]'); + menuDivs.forEach((div) => { + if (div !== popover) + div.classList.remove("se-popover-open"); + }); + + if (popover.classList.contains("se-popover-open")) { + popover.classList.remove("se-popover-open"); + } else { + popover.classList.add("se-popover-open"); + } + return; +} From b2f5152d374cfa0a75f8c9e065eab936a185e6b3 Mon Sep 17 00:00:00 2001 From: toni-santos Date: Sun, 8 Sep 2024 20:10:52 +0100 Subject: [PATCH 22/61] allow anchor tags to be clickable on table header --- content-scripts/modules/components/table.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content-scripts/modules/components/table.tsx b/content-scripts/modules/components/table.tsx index f2372e3..8625613 100644 --- a/content-scripts/modules/components/table.tsx +++ b/content-scripts/modules/components/table.tsx @@ -18,8 +18,8 @@ export const Table:JSX.Component = ({ name, headers, data }) => { const rows = Array.from(table.querySelectorAll("tbody tr")); let el = event.target as HTMLElement; - // Checking if a button within the th was clicked - if (el.parentElement?.tagName != "TH" && el.tagName == "BUTTON") return; + // Checking if a button/anchor within the th was clicked + if (el.parentElement?.tagName != "TH" && (el.tagName == "BUTTON" || el.tagName == "A")) return; // It was not a button therefore we need to find the original button if (el.tagName !== "TH") el = el.closest(".se-sort-button")!; From f5cb06c407183a17d9fa4a48a81efdb9330c5874 Mon Sep 17 00:00:00 2001 From: toni-santos Date: Sun, 8 Sep 2024 20:24:08 +0100 Subject: [PATCH 23/61] fix folder structure --- .../{modules/components/table.tsx => components/Table.tsx} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename content-scripts/{modules/components/table.tsx => components/Table.tsx} (97%) diff --git a/content-scripts/modules/components/table.tsx b/content-scripts/components/Table.tsx similarity index 97% rename from content-scripts/modules/components/table.tsx rename to content-scripts/components/Table.tsx index 8625613..793b479 100644 --- a/content-scripts/modules/components/table.tsx +++ b/content-scripts/components/Table.tsx @@ -1,5 +1,5 @@ import jsx from "texsaur"; -import { isDate, reverseDate } from "../utilities/date.js"; +import { isDate, reverseDate } from "../modules/utilities/date.js"; // Props for the Table component interface TableProps { From 247d4e56b50855df91cd355cae9cb277c1525499 Mon Sep 17 00:00:00 2001 From: toni-santos Date: Wed, 11 Sep 2024 16:50:04 +0100 Subject: [PATCH 24/61] added and ran linter and formatter --- .prettierignore | 13 + .prettierrc | 8 + Develop for Safari.md | 14 +- PRIVACY.md | 1 + README.md | 4 +- assets/mac-icon/README.md | 2 +- background.js | 92 +- content-scripts/components/Button.tsx | 19 +- content-scripts/components/Header.tsx | 90 +- .../components/HeaderAuthentication.tsx | 259 +++--- content-scripts/components/HeaderLinks.tsx | 33 +- content-scripts/components/Icon.tsx | 9 +- content-scripts/components/Table.tsx | 81 +- content-scripts/index.js | 81 +- content-scripts/modules/expandable-card.js | 39 +- content-scripts/modules/favorite-course.js | 157 ++-- content-scripts/modules/icons/constants.js | 200 ++-- content-scripts/modules/icons/index.js | 7 +- content-scripts/modules/initialize.js | 630 +++++++------ content-scripts/modules/layout.ts | 46 +- content-scripts/modules/login.js | 99 +- content-scripts/modules/options/addStyles.js | 14 +- content-scripts/modules/options/index.js | 23 +- content-scripts/modules/options/options.js | 80 +- content-scripts/modules/pagination.js | 6 +- content-scripts/modules/schedule.js | 37 +- .../modules/utilities/constructNewData.js | 32 +- content-scripts/modules/utilities/date.js | 5 +- .../modules/utilities/elementFromHtml.js | 4 +- content-scripts/modules/utilities/math.js | 14 +- .../modules/utilities/pageUtils.js | 168 ++-- content-scripts/modules/utilities/popover.ts | 5 +- .../modules/utilities/removeElement.js | 5 +- content-scripts/modules/utilities/sigarra.js | 20 +- content-scripts/modules/utilities/storage.js | 24 +- content-scripts/modules/utilities/throttle.js | 36 +- content-scripts/pages/class_page.js | 92 +- content-scripts/pages/course_unit_page.js | 19 +- content-scripts/pages/profile_page.js | 171 ++-- content-scripts/pages/teacher_page.js | 203 +++-- content-scripts/types.ts | 2 +- css/card.css | 8 +- css/classPage.css | 7 +- css/custom.css | 24 +- css/expandableCard.css | 10 +- css/homepage.css | 28 +- css/icons.css | 8 +- css/profilePage.css | 40 +- css/simpler.css | 858 +++++++++--------- css/teacherPage.css | 80 +- eslint.config.js | 31 + html/autorize.html | 8 +- html/autorize.js | 34 +- html/installed.html | 10 +- html/style.css | 32 +- js/override-functions.js | 18 +- manifest.js | 15 +- package.json | 91 +- popup/components/controls/CheckboxControl.js | 9 +- popup/components/controls/SwitchControl.js | 9 +- popup/components/layout/Footer.js | 2 +- popup/components/layout/Header.js | 12 +- popup/components/layout/Main.js | 2 +- popup/components/sections/Layout.js | 4 +- popup/components/sections/LayoutContent.js | 32 +- popup/pages/feedback.js | 35 +- popup/tailwind.config.js | 4 +- popup/utilities/chromeStorage.js | 2 + tsconfig.json | 48 +- webpack.config.js | 20 +- yarn.lock | 406 ++++++++- 71 files changed, 2719 insertions(+), 2012 deletions(-) create mode 100644 .prettierignore create mode 100644 .prettierrc create mode 100644 eslint.config.js diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..ee3e8f4 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,13 @@ +.DS_Store +/node_modules +/dist +/.yarn +/.github +/popup/.next +/popup/.yarn +/popup/.node_modules +/popup/out + +.changes.json +package-lock.json +yarn.lock \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..d05956d --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "useTabs": false, + "tabWidth": 4, + "printWidth": 80, + "singleQuote": false, + "endOfLine": "auto", + "trailingComma": "all" +} diff --git a/Develop for Safari.md b/Develop for Safari.md index 11b8ce6..d416206 100644 --- a/Develop for Safari.md +++ b/Develop for Safari.md @@ -1,15 +1,15 @@ From [developer.apple.com](https://developer.apple.com/documentation/safariservices/safari_app_extensions/building_a_safari_app_extension#2957927): ->To develop without a certificate, each time you launch Safari, you need to tell it to load unsigned extensions using the Develop menu: +> To develop without a certificate, each time you launch Safari, you need to tell it to load unsigned extensions using the Develop menu: > -> Open Safari and choose Safari > Preferences. +> Open Safari and choose Safari > Preferences. > -> Select the Advanced tab, then select the “Show Develop menu in menu bar” checkbox. +> Select the Advanced tab, then select the “Show Develop menu in menu bar” checkbox. > -> Choose Develop > Allow Unsigned Extensions, enter your password, and click OK. The Allow Unsigned Extensions setting resets when a user quits Safari, so you need to set it again the next time you launch Safari. +> Choose Develop > Allow Unsigned Extensions, enter your password, and click OK. The Allow Unsigned Extensions setting resets when a user quits Safari, so you need to set it again the next time you launch Safari. > -> Choose Safari > Preferences and click the Extensions tab. This tab shows the localized description, display name, and version number for the selected Safari app extension. It also provides a more nuanced message about the permissions for the extension. +> Choose Safari > Preferences and click the Extensions tab. This tab shows the localized description, display name, and version number for the selected Safari app extension. It also provides a more nuanced message about the permissions for the extension. > -> Find your new extension in the list on the left, and enable it by selecting its checkbox. +> Find your new extension in the list on the left, and enable it by selecting its checkbox. > -> Close Safari Preferences. \ No newline at end of file +> Close Safari Preferences. diff --git a/PRIVACY.md b/PRIVACY.md index 07e112b..da6b3a6 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -1,4 +1,5 @@ TODO: + # Privacy Policy NitSig does not store or collect any personal information. All user prefences are stored on the user's device in local storage. diff --git a/README.md b/README.md index e5b0570..a5a9d74 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,9 @@ Choose your favorite browser and start developing: ```sh yarn run dev:firefox ``` + or + ```sh yarn run dev:chrome ``` @@ -64,4 +66,4 @@ yarn build
              -
              \ No newline at end of file + diff --git a/assets/mac-icon/README.md b/assets/mac-icon/README.md index 6bb7d2c..ee86321 100644 --- a/assets/mac-icon/README.md +++ b/assets/mac-icon/README.md @@ -15,4 +15,4 @@ convert mac-icon.png -resize 64x64 -gravity center -background transparent -exte convert mac-icon.png -resize 256x256 -gravity center -background transparent -extent 256x256 mac-icon-128@2x.png convert mac-icon.png -resize 512x512 -gravity center -background transparent -extent 512x512 mac-icon-256@2x.png convert mac-icon.png -resize 1024x1024 -gravity center -background transparent -extent 1024x1024 mac-icon-512@2x.png -``` \ No newline at end of file +``` diff --git a/background.js b/background.js index f9c5dcc..41d26ba 100644 --- a/background.js +++ b/background.js @@ -2,65 +2,67 @@ const sigarraRegex = /.*:\/\/sigarra\.up\.pt\/feup\/.*/; // Add default values for each option here const popupOptions = { - navbar: "on", - shortcuts: "on", - autoLogin: "off", - font: "on", + navbar: "on", + shortcuts: "on", + autoLogin: "off", + font: "on", }; const reloadFEUPSigarraPages = () => { - chrome.tabs.query({ url: "*://sigarra.up.pt/feup/*" }, (tabs) => { - tabs.forEach((tab) => { - chrome.tabs.reload(tab.id); + chrome.tabs.query({ url: "*://sigarra.up.pt/feup/*" }, (tabs) => { + tabs.forEach((tab) => { + chrome.tabs.reload(tab.id); + }); }); - }); -} +}; chrome.runtime.onInstalled.addListener((object) => { - if (object.reason === "install") { - reloadFEUPSigarraPages() + if (object.reason === "install") { + reloadFEUPSigarraPages(); - if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) { - chrome.tabs.create({ - url: chrome.runtime.getURL("html/autorize.html") - }); - }else{ - chrome.tabs.create({ - url: chrome.runtime.getURL("html/installed.html") - }); - } + if (navigator.userAgent.toLowerCase().indexOf("firefox") > -1) { + chrome.tabs.create({ + url: chrome.runtime.getURL("html/autorize.html"), + }); + } else { + chrome.tabs.create({ + url: chrome.runtime.getURL("html/installed.html"), + }); + } - chrome.storage.local.set(popupOptions); - } + chrome.storage.local.set(popupOptions); + } - if (object.reason === "update") { - reloadFEUPSigarraPages(); - for (const opt in popupOptions) { - if (chrome.storage.local.get(opt) == null) - chrome.storage.local.set({[opt]: popupOptions[opt]}); + if (object.reason === "update") { + reloadFEUPSigarraPages(); + for (const opt in popupOptions) { + if (chrome.storage.local.get(opt) == null) + chrome.storage.local.set({ [opt]: popupOptions[opt] }); + } } - } }); - chrome.runtime.onMessage.addListener(async (message, sender, sendResponse) => { - if(!sender.tab.active){ - console.log("tab not active skipping message...") - return; - } - if (message.type == "login") { - const cookie = await chrome.cookies.get({ name: "SI_SESSION", url: sender.tab.url }) - console.log(cookie) - if(cookie == null || cookie.value === "0"){ - sendResponse(false); - return; + if (!sender.tab.active) { + console.log("tab not active skipping message..."); + return; + } + if (message.type == "login") { + const cookie = await chrome.cookies.get({ + name: "SI_SESSION", + url: sender.tab.url, + }); + console.log(cookie); + if (cookie == null || cookie.value === "0") { + sendResponse(false); + return; + } + message.auto_login.verifed = true; + await chrome.storage.local.set({ auto_login: message.auto_login }); + sendResponse(true); } - message.auto_login.verifed = true; - await chrome.storage.local.set({ auto_login: message.auto_login }); - sendResponse(true); - } }); chrome.permissions.onRemoved.addListener((permissions) => { - //TODO: -}); \ No newline at end of file + //TODO: +}); diff --git a/content-scripts/components/Button.tsx b/content-scripts/components/Button.tsx index 96f90f9..74701ef 100644 --- a/content-scripts/components/Button.tsx +++ b/content-scripts/components/Button.tsx @@ -1,3 +1,4 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars import jsx from "texsaur"; import Icon from "./Icon"; @@ -9,13 +10,23 @@ interface ButtonProps { onclick?: (e: Event) => void; } -const Button: JSX.Component = ({ title, icon, id, className, onclick }) => { +const Button: JSX.Component = ({ + title, + icon, + id, + className, + onclick, +}) => { return ( - ); -} +}; -export default Button; \ No newline at end of file +export default Button; diff --git a/content-scripts/components/Header.tsx b/content-scripts/components/Header.tsx index 6bf8eaf..319ad7a 100644 --- a/content-scripts/components/Header.tsx +++ b/content-scripts/components/Header.tsx @@ -1,3 +1,4 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars import jsx from "texsaur"; import HeaderLinks from "./HeaderLinks"; @@ -5,55 +6,58 @@ import Authentication from "./HeaderAuthentication"; import { AuthSession } from "../types"; const HEADER_LINKS = { - Estudantes: { - Bolsas: "web_base.gera_pagina?p_pagina=242366", - "Escolher turmas": "it_geral.ver_insc", - "Estatutos especiais": "web_base.gera_pagina?p_pagina=242322", - Exames: "web_base.gera_pagina?p_pagina=242382", - Matrículas: "web_base.gera_pagina?p_pagina=31583", - Propinas: "web_base.gera_pagina?p_pagina=propinas ano corrente", - "Mais opções": "web_base.gera_pagina?p_pagina=ESTUDANTES", - }, - Faculdade: { - Alumni: "web_base.gera_pagina?p_pagina=243186", - "Calendário escolar": - "web_base.gera_pagina?p_pagina=página estática genérica 106", - Cursos: "cur_geral.cur_inicio", - Departamentos: "uni_geral.nivel_list?pv_nivel_id=1", - Empresas: "web_base.gera_pagina?p_pagina=242380", - Governo: "web_base.gera_pagina?p_pagina=31715", - Notícias: "noticias_geral.lista_noticias", - "Serviços/Gabinetes": "uni_geral.nivel_list?pv_nivel_id=4", - }, - Pesquisa: { - Edifícios: "instal_geral.edificio_query", - Estudantes: "fest_geral.fest_query", - Horários: "hor_geral.pesquisa_form", - Notícias: "noticias_geral.pesquisa", - Pessoal: "func_geral.formquery", - "Projetos de investigação": "projectos_geral.pesquisa_projectos", - Publicações: "pub_geral.pub_pesquisa", - Salas: "instal_geral.espaco_query", - Turmas: "it_turmas_geral.formquery", - "Unidades Curriculares": "ucurr_geral.pesquisa_ucs", - "Mais opções": "web_base.gera_pagina?p_pagina=1831", - }, + Estudantes: { + Bolsas: "web_base.gera_pagina?p_pagina=242366", + "Escolher turmas": "it_geral.ver_insc", + "Estatutos especiais": "web_base.gera_pagina?p_pagina=242322", + Exames: "web_base.gera_pagina?p_pagina=242382", + Matrículas: "web_base.gera_pagina?p_pagina=31583", + Propinas: "web_base.gera_pagina?p_pagina=propinas ano corrente", + "Mais opções": "web_base.gera_pagina?p_pagina=ESTUDANTES", + }, + Faculdade: { + Alumni: "web_base.gera_pagina?p_pagina=243186", + "Calendário escolar": + "web_base.gera_pagina?p_pagina=página estática genérica 106", + Cursos: "cur_geral.cur_inicio", + Departamentos: "uni_geral.nivel_list?pv_nivel_id=1", + Empresas: "web_base.gera_pagina?p_pagina=242380", + Governo: "web_base.gera_pagina?p_pagina=31715", + Notícias: "noticias_geral.lista_noticias", + "Serviços/Gabinetes": "uni_geral.nivel_list?pv_nivel_id=4", + }, + Pesquisa: { + Edifícios: "instal_geral.edificio_query", + Estudantes: "fest_geral.fest_query", + Horários: "hor_geral.pesquisa_form", + Notícias: "noticias_geral.pesquisa", + Pessoal: "func_geral.formquery", + "Projetos de investigação": "projectos_geral.pesquisa_projectos", + Publicações: "pub_geral.pub_pesquisa", + Salas: "instal_geral.espaco_query", + Turmas: "it_turmas_geral.formquery", + "Unidades Curriculares": "ucurr_geral.pesquisa_ucs", + "Mais opções": "web_base.gera_pagina?p_pagina=1831", + }, }; interface Props { - auth?: AuthSession | null; + auth?: AuthSession | null; } const Header = ({ auth = null }: Props) => { - return ( -
              - - - -
              - ); + return ( +
              + + + +
              + ); }; export default Header; diff --git a/content-scripts/components/HeaderAuthentication.tsx b/content-scripts/components/HeaderAuthentication.tsx index fc85129..95d2abf 100644 --- a/content-scripts/components/HeaderAuthentication.tsx +++ b/content-scripts/components/HeaderAuthentication.tsx @@ -1,137 +1,158 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars import jsx from "texsaur"; import { AuthSession } from "../types"; import { togglePopover } from "../modules/utilities/popover"; import Icon from "./Icon"; interface Props { - auth: AuthSession | null; + auth: AuthSession | null; } const Authentication = ({ auth }: Props) => { - if (auth) - return ( -
              - -
              - - -
              - - -
              -
              -
                -
                  -
                  - - Sem notificações -
                  -
                  - + if (auth) + return ( +
                  + +
                  + + +
                  + + +
                  +
                  +
                    +
                      +
                      + + Sem notificações +
                      +
                      + +
                      +
                      +
                      + + +
                      +
                      + {auth.name} + {auth.number} +
                      + +
                      -
                      -
                      + ); - -
                      -
                      - {auth.name} - {auth.number} -
                      - + + + + + + + + + ou + + + Autenticação Federada + + + Recuperar palavra-passe + +
                      -
                      ); - - return ( -
                      - -
                      - - - - - - - - - ou - - - Autenticação Federada - - - Recuperar palavra-passe - -
                      -
                      - ); }; export default Authentication; diff --git a/content-scripts/components/HeaderLinks.tsx b/content-scripts/components/HeaderLinks.tsx index 07c63ef..7482074 100644 --- a/content-scripts/components/HeaderLinks.tsx +++ b/content-scripts/components/HeaderLinks.tsx @@ -1,26 +1,27 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars import jsx from "texsaur"; interface Props { - links: Record>; + links: Record>; } const HeaderLinks = ({ links }: Props) => { - return ( - - ); + + ); }; export default HeaderLinks; diff --git a/content-scripts/components/Icon.tsx b/content-scripts/components/Icon.tsx index 542e948..6fa44cf 100644 --- a/content-scripts/components/Icon.tsx +++ b/content-scripts/components/Icon.tsx @@ -1,3 +1,4 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars import jsx from "texsaur"; interface IconProps { @@ -5,9 +6,7 @@ interface IconProps { } const Icon: JSX.Component = ({ name }) => { - return ( - - ); -} + return ; +}; -export default Icon; \ No newline at end of file +export default Icon; diff --git a/content-scripts/components/Table.tsx b/content-scripts/components/Table.tsx index 793b479..c2fb396 100644 --- a/content-scripts/components/Table.tsx +++ b/content-scripts/components/Table.tsx @@ -1,3 +1,4 @@ +// eslint-disable-next-line @typescript-eslint/no-unused-vars import jsx from "texsaur"; import { isDate, reverseDate } from "../modules/utilities/date.js"; @@ -5,21 +6,25 @@ import { isDate, reverseDate } from "../modules/utilities/date.js"; interface TableProps { // content may be a JSX component or a string name: string; - headers: [string, (string | Element)][]; + headers: [string, string | Element][]; data: (string | Element)[][]; } -export const Table:JSX.Component = ({ name, headers, data }) => { +export const Table: JSX.Component = ({ name, headers, data }) => { const headerKeys = headers.map((header) => header[0]); - const sortHeader = (event: any) => { + const sortHeader = (event: Event) => { const states = ["asc", "desc"]; - let table = document.querySelector(`[aria-name=${name}]`)!; + const table = document.querySelector(`[aria-name=${name}]`)!; const rows = Array.from(table.querySelectorAll("tbody tr")); - + let el = event.target as HTMLElement; // Checking if a button/anchor within the th was clicked - if (el.parentElement?.tagName != "TH" && (el.tagName == "BUTTON" || el.tagName == "A")) return; + if ( + el.parentElement?.tagName != "TH" && + (el.tagName == "BUTTON" || el.tagName == "A") + ) + return; // It was not a button therefore we need to find the original button if (el.tagName !== "TH") el = el.closest(".se-sort-button")!; @@ -30,7 +35,8 @@ export const Table:JSX.Component = ({ name, headers, data }) => { el.setAttribute("aria-sort", "asc"); currentState = "asc"; } else { - const nextState = states[(states.indexOf(currentState || "") + 1) % 2]; + const nextState = + states[(states.indexOf(currentState || "") + 1) % 2]; el.setAttribute("aria-sort", nextState); currentState = nextState; } @@ -38,52 +44,57 @@ export const Table:JSX.Component = ({ name, headers, data }) => { rows.sort((a: Element, b: Element): number => { let aValue = a.querySelector(`td[key=${key}]`)!.innerHTML; let bValue = b.querySelector(`td[key=${key}]`)!.innerHTML; - - if(currentState == "desc") [aValue, bValue] = [bValue, aValue]; + + if (currentState == "desc") [aValue, bValue] = [bValue, aValue]; // Date order - if(isDate(reverseDate(aValue)) && isDate(reverseDate(bValue))){ + if (isDate(reverseDate(aValue)) && isDate(reverseDate(bValue))) { const aDate = new Date(reverseDate(aValue)); const bDate = new Date(reverseDate(bValue)); - if(aDate < bDate) return -1; - if(aDate > bDate) return 1; + if (aDate < bDate) return -1; + if (aDate > bDate) return 1; return 0; } - + // Alphabetical order return aValue.localeCompare(bValue, undefined, { numeric: true, - sensitivity: 'base' + sensitivity: "base", }); }); rows.forEach((row) => { table.querySelector("tbody")!.appendChild(row); }); - } + }; return ( - - - {headers.map(([key, value]) => ( - - ))} - - - - {data.map((row, index) => ( - - {row.map((cell, index) => ( - + + + {headers.map(([key, value]) => ( + + ))} + + + + {data.map((row, index) => ( + + {row.map((cell, index) => ( + + ))} + ))} - - ))} - +
                      - -
                      {cell}
                      + +
                      {cell}
                      ); -} \ No newline at end of file +}; diff --git a/content-scripts/index.js b/content-scripts/index.js index f6b0b48..83da698 100644 --- a/content-scripts/index.js +++ b/content-scripts/index.js @@ -1,8 +1,8 @@ import { - injectOverrideFunctions, - reverseDateDirection, - currentAccountPage, - addSortTableActions + injectOverrideFunctions, + reverseDateDirection, + currentAccountPage, + addSortTableActions, } from "./modules/initialize"; import { injectAllChanges, userPreferences } from "./modules/options"; import constructNewData from "./modules/utilities/constructNewData"; @@ -24,9 +24,9 @@ import { addStarIconToCard } from "./modules/favorite-course"; - Inject styles in respond to changes --*/ chrome.storage.onChanged.addListener((changes) => { - const newChangesData = constructNewData(changes); - rememberLogin(); - injectAllChanges(newChangesData); + const newChangesData = constructNewData(changes); + rememberLogin(); + injectAllChanges(newChangesData); }); /*-- @@ -35,44 +35,43 @@ chrome.storage.onChanged.addListener((changes) => { --*/ const functionsToExecute = [ - { name: "changeLayout", func: changeLayout }, - { name: "reverseDateDirection", func: reverseDateDirection }, - { name: "currentAccountPage", func: currentAccountPage }, - { name: "addSortTableActions", func: addSortTableActions }, - { name: "replaceIcons", func: replaceIcons }, - { name: "improveSchedule", func: improveSchedule }, - { name: "changeProfileRow", func: changeProfileRow }, - { name: "changeCourseCards", func: changeCourseCards }, - { name: "fixPagination", func: fixPagination }, - { name: "teacherPage", func: teacherPage }, - { name: "classPage", func: classPage }, - { name: "courseUnitPage", func: courseUnitPage }, - { name: "injectOverrideFunctions", func: injectOverrideFunctions }, - { name: "addStarIconToCard", func: addStarIconToCard } -] + { name: "changeLayout", func: changeLayout }, + { name: "reverseDateDirection", func: reverseDateDirection }, + { name: "currentAccountPage", func: currentAccountPage }, + { name: "addSortTableActions", func: addSortTableActions }, + { name: "replaceIcons", func: replaceIcons }, + { name: "improveSchedule", func: improveSchedule }, + { name: "changeProfileRow", func: changeProfileRow }, + { name: "changeCourseCards", func: changeCourseCards }, + { name: "fixPagination", func: fixPagination }, + { name: "teacherPage", func: teacherPage }, + { name: "classPage", func: classPage }, + { name: "courseUnitPage", func: courseUnitPage }, + { name: "injectOverrideFunctions", func: injectOverrideFunctions }, + { name: "addStarIconToCard", func: addStarIconToCard }, +]; const init = async () => { + // Inject user preferences + const data = await getStorage(userPreferences); + injectAllChanges(data); - // Inject user preferences - const data = await getStorage(userPreferences); - injectAllChanges(data); - - if (!(await getStorage('favorite_courses'))) { - await setStorage({ 'favorite_courses': '{}' }) //Insert empty object - } - - functionsToExecute.forEach(f => { - try { - f.func(); - } catch (error) { - console.error(`Error running ${f.name} init function!\n`) - console.error(error); + if (!(await getStorage("favorite_courses"))) { + await setStorage({ favorite_courses: "{}" }); //Insert empty object } - }); - // we run rememberLogin at last, because it's async - // TODO (luisd): make a better mechanism for functions that depend on previous - // steps and might be async - await rememberLogin(data); + + functionsToExecute.forEach((f) => { + try { + f.func(); + } catch (error) { + console.error(`Error running ${f.name} init function!\n`); + console.error(error); + } + }); + // we run rememberLogin at last, because it's async + // TODO (luisd): make a better mechanism for functions that depend on previous + // steps and might be async + await rememberLogin(data); }; init(); diff --git a/content-scripts/modules/expandable-card.js b/content-scripts/modules/expandable-card.js index 3f8d15a..d3944e0 100644 --- a/content-scripts/modules/expandable-card.js +++ b/content-scripts/modules/expandable-card.js @@ -1,48 +1,43 @@ - /** * @this {Element} * @param {Element} innerContent * @param {Number} max_size */ const toggleExpandableCard = (innerContent, max_size) => { - - function clickEvent(ev){ + function clickEvent() { /** @type {Keyframe[]} */ if (this.dataset.expanded == "false") { this.dataset.expanded = "true"; this.animate( [{ transform: "rotate(0)" }, { transform: "rotate(180deg)" }], - { duration: 300, fill: "forwards", easing: "ease-in" } + { duration: 300, fill: "forwards", easing: "ease-in" }, ); innerContent.style.maxHeight = `${max_size}px`; } else { this.dataset.expanded = "false"; this.animate( [{ transform: "rotate(180deg)" }, { transform: "rotate(0)" }], - { duration: 300, fill: "forwards", easing: "ease-in" } + { duration: 300, fill: "forwards", easing: "ease-in" }, ); innerContent.style.maxHeight = `0px`; - } - - - } + } return clickEvent; }; - /** - * - * @param {string[]} content + * + * @param {string[]} content */ export const makeSigarraExpandableCard = (content) => { const elements = document.querySelectorAll(".se-expandable-card"); elements.forEach((element) => { - const collapesedCard = document.createElement("div") + const collapesedCard = document.createElement("div"); collapesedCard.classList.add("se-card-header"); const div = document.createElement("div"); div.classList.add("se-card-content"); - const contentElements = content.map((value) => Array.from(element.querySelectorAll(value))) + const contentElements = content + .map((value) => Array.from(element.querySelectorAll(value))) .flat(); div.prepend(...contentElements); const button = document.createElement("button"); @@ -62,18 +57,24 @@ export const makeSigarraExpandableCard = (content) => { element.append(innerContentDiv); - let func = toggleExpandableCard(innerContentDiv, innerContentDiv.offsetHeight); + let func = toggleExpandableCard( + innerContentDiv, + innerContentDiv.offsetHeight, + ); button.addEventListener("click", func); - - element.addEventListener("resize", (_) => { + + element.addEventListener("resize", () => { button.removeEventListener("click", func); const previousMaxHeight = innerContent.style.maxHeight; innerContent.style.maxHeight = "100%"; - func = toggleExpandableCard(innerContentDiv, innerContentDiv.offsetHeight); + func = toggleExpandableCard( + innerContentDiv, + innerContentDiv.offsetHeight, + ); innerContent.style.maxHeight = previousMaxHeight; button.addEventListener("click", func); }); innerContentDiv.style.maxHeight = `0px`; }); -}; \ No newline at end of file +}; diff --git a/content-scripts/modules/favorite-course.js b/content-scripts/modules/favorite-course.js index 1960b41..51828bd 100644 --- a/content-scripts/modules/favorite-course.js +++ b/content-scripts/modules/favorite-course.js @@ -8,53 +8,53 @@ const pagesWithCourseCards = [ "fest_geral.ucurr_inscricoes_list", "fest_geral.estatutos_regimes_view", "fest_geral.info_ingresso_view", - "fest_geral.info_pessoal_completa_view" + "fest_geral.info_pessoal_completa_view", ]; /** - * + * * @param {Element[]} cards * @param {string | undefined} favoriteCourse */ function rerenderStarIcons(cards, favoriteCourse) { cards.forEach((val) => { - const enrollmentId = val.getAttribute('data-course-enrollment-id') - if(enrollmentId === null) { - throw Error('could not find enrollment id in card') + const enrollmentId = val.getAttribute("data-course-enrollment-id"); + if (enrollmentId === null) { + throw Error("could not find enrollment id in card"); } - let isFavoriteCourse = enrollmentId === favoriteCourse - const i = val.querySelector('.se-course-star') - i.classList = [] - + let isFavoriteCourse = enrollmentId === favoriteCourse; + const i = val.querySelector(".se-course-star"); + i.classList = []; + i.classList.add( - isFavoriteCourse ? 'ri-star-fill' : 'ri-star-line', - 'se-course-star' - ) - if(isFavoriteCourse) i.classList.add('se-favorite-course') - }) + isFavoriteCourse ? "ri-star-fill" : "ri-star-line", + "se-course-star", + ); + if (isFavoriteCourse) i.classList.add("se-favorite-course"); + }); } -function changeProfileLink(favoriteCourses){ - const up = getUP().toString() - const favoriteCourse = favoriteCourses[up] - const profileLink = document.querySelector('.se-auth-profile') - if(favoriteCourse === undefined){ - profileLink.href = `fest_geral.cursos_list?pv_num_unico=${up}` +function changeProfileLink(favoriteCourses) { + const up = getUP().toString(); + const favoriteCourse = favoriteCourses[up]; + const profileLink = document.querySelector(".se-auth-profile"); + if (favoriteCourse === undefined) { + profileLink.href = `fest_geral.cursos_list?pv_num_unico=${up}`; } else { - profileLink.href = `fest_geral.curso_percurso_academico_view?pv_fest_id=${favoriteCourse}` + profileLink.href = `fest_geral.curso_percurso_academico_view?pv_fest_id=${favoriteCourse}`; } } -export async function favoriteCardListener(){ - const favoriteCourses = await getStorage('favorite_courses') - changeProfileLink(JSON.parse(favoriteCourses)) +export async function favoriteCardListener() { + const favoriteCourses = await getStorage("favorite_courses"); + changeProfileLink(JSON.parse(favoriteCourses)); chrome.storage.local.onChanged.addListener(async (changes) => { - if(!Object.keys(changes).includes('favorite_courses')){ - return + if (!Object.keys(changes).includes("favorite_courses")) { + return; } - changeProfileLink(JSON.parse(changes['favorite_courses'].newValue)) - }) + changeProfileLink(JSON.parse(changes["favorite_courses"].newValue)); + }); } export async function addStarIconToCard() { @@ -62,68 +62,69 @@ export async function addStarIconToCard() { const hasProfileRow = pagesWithCourseCards .map((value) => document.location.href.toLowerCase().includes(value)) .reduce((prev, curr) => prev || curr); - - if (!hasProfileRow){ + + if (!hasProfileRow) { return; } - const up = getUP() - let favoriteCourses = JSON.parse(await getStorage('favorite_courses')) - let favoriteCourse = favoriteCourses[up.toString()] - const cards = document.querySelectorAll('.se-course-card') + const up = getUP(); + let favoriteCourses = JSON.parse(await getStorage("favorite_courses")); + let favoriteCourse = favoriteCourses[up.toString()]; + const cards = document.querySelectorAll(".se-course-card"); cards.forEach((val) => { - const titleBar = val.querySelector('.estudante-lista-curso-nome') - const enrollmentId = val.getAttribute('data-course-enrollment-id') - if(enrollmentId === null) { - throw Error('could not find enrollment id in card') + const titleBar = val.querySelector(".estudante-lista-curso-nome"); + const enrollmentId = val.getAttribute("data-course-enrollment-id"); + if (enrollmentId === null) { + throw Error("could not find enrollment id in card"); } - if(titleBar === null){ - throw Error('Could not find titlebar for the course card') + if (titleBar === null) { + throw Error("Could not find titlebar for the course card"); } - let isFavoriteCourse = enrollmentId === favoriteCourse - const i = document.createElement('i') + let isFavoriteCourse = enrollmentId === favoriteCourse; + const i = document.createElement("i"); i.classList.add( - isFavoriteCourse ? 'ri-star-fill' : 'ri-star-line', - 'se-course-star' - ) - if(isFavoriteCourse) i.classList.add('se-favorite-course') - - i.addEventListener('mouseenter', (_) => { - if(!isFavoriteCourse){ - i.classList.remove('ri-star-line') - i.classList.add('ri-star-fill') + isFavoriteCourse ? "ri-star-fill" : "ri-star-line", + "se-course-star", + ); + if (isFavoriteCourse) i.classList.add("se-favorite-course"); + + i.addEventListener("mouseenter", () => { + if (!isFavoriteCourse) { + i.classList.remove("ri-star-line"); + i.classList.add("ri-star-fill"); } - }) + }); - i.addEventListener('mouseleave', (_) => { - if(!isFavoriteCourse){ - i.classList.remove('ri-star-fill') - i.classList.add('ri-star-line') + i.addEventListener("mouseleave", () => { + if (!isFavoriteCourse) { + i.classList.remove("ri-star-fill"); + i.classList.add("ri-star-line"); } - }) + }); - i.addEventListener('click', async (ev) => { - ev.preventDefault() - ev.stopPropagation() + i.addEventListener("click", async (ev) => { + ev.preventDefault(); + ev.stopPropagation(); - if(favoriteCourse === enrollmentId) { - delete favoriteCourses[up.toString()] - favoriteCourse = undefined - isFavoriteCourse = false - i.classList.remove('se-favorite-course') + if (favoriteCourse === enrollmentId) { + delete favoriteCourses[up.toString()]; + favoriteCourse = undefined; + isFavoriteCourse = false; + i.classList.remove("se-favorite-course"); } else { - favoriteCourses[up.toString()] = enrollmentId - favoriteCourse = enrollmentId - isFavoriteCourse = true - i.classList.add('se-favorite-course') - + favoriteCourses[up.toString()] = enrollmentId; + favoriteCourse = enrollmentId; + isFavoriteCourse = true; + i.classList.add("se-favorite-course"); } - await setStorage({'favorite_courses': JSON.stringify(favoriteCourses)}) - - rerenderStarIcons(cards, favoriteCourse) - }) - - titleBar.append(i) - }) -} \ No newline at end of file + await setStorage({ + favorite_courses: JSON.stringify(favoriteCourses), + }); + + rerenderStarIcons(cards, favoriteCourse); + }); + + titleBar.append(i); + }); +} diff --git a/content-scripts/modules/icons/constants.js b/content-scripts/modules/icons/constants.js index ef6e6f6..551be22 100644 --- a/content-scripts/modules/icons/constants.js +++ b/content-scripts/modules/icons/constants.js @@ -1,11 +1,11 @@ export const IMG_ICON_MAP = Object.freeze({ - "Acreditado": "checkbox-circle", - "Alerta": "alert", - "Apagar": "close-circle", - "Aprovado": "checkbox-circle", - "Arroba": "at", - "Ascendente": "arrow-up-s", - "AscendenteS": "arrow-up-s", + Acreditado: "checkbox-circle", + Alerta: "alert", + Apagar: "close-circle", + Aprovado: "checkbox-circle", + Arroba: "at", + Ascendente: "arrow-up-s", + AscendenteS: "arrow-up-s", "atalho_administracao.gif": "admin", "atalho_computador.gif": "computer", "atalho_coracao.gif": "heart", @@ -28,33 +28,33 @@ export const IMG_ICON_MAP = Object.freeze({ "atalho_smile_feliz.gif": "emotion-happy", "atalho_smile_triste.gif": "emotion-unhappy", "atalho_tomada.gif": "plug", - "AtencaoNPisca": "alert", - "AtencaoPisca": "error-warning", - "BotaoColapsar": "close-circle", - "BotaoMin": "close-circle", - "BotaoPersonalisar": "edit", - "BotaoRestaurar": "add-circle", - "Calendario": "calendar", + AtencaoNPisca: "alert", + AtencaoPisca: "error-warning", + BotaoColapsar: "close-circle", + BotaoMin: "close-circle", + BotaoPersonalisar: "edit", + BotaoRestaurar: "add-circle", + Calendario: "calendar", "CERT-Certidao": "file-paper-2", "CERT-Visto": "checkbox-circle", - "Comentario": "edit", - "Completo": "checkbox-circle", - "CriarNovo": "add-circle", - "Descendente": "arrow-down-s", - "DescendenteS": "arrow-down-s", - "Documento": "file-text", - "Documento": "file-text", - "DocumentoCriar": "file-add", - "EditarPerfil": "edit", - "EnderecoEmail": "mail", - "Erro": "error-warning", - "EstadoSem1_off": "arrow-up-circle", - "EstadoSem1": "checkbox-circle", - "EstadoSem2": "arrow-down-circle", - "EstadoSem3": "refresh", - "EstadoSem4": "close-circle", + Comentario: "edit", + Completo: "checkbox-circle", + CriarNovo: "add-circle", + Descendente: "arrow-down-s", + DescendenteS: "arrow-down-s", + Documento: "file-text", + // Documento: "file-text", + DocumentoCriar: "file-add", + EditarPerfil: "edit", + EnderecoEmail: "mail", + Erro: "error-warning", + EstadoSem1_off: "arrow-up-circle", + EstadoSem1: "checkbox-circle", + EstadoSem2: "arrow-down-circle", + EstadoSem3: "refresh", + EstadoSem4: "close-circle", "facebook_32.png": "facebook-box", - "Fazer": "indeterminate-circle", + Fazer: "indeterminate-circle", "FEST-Selecionado": "radio-button", "FEST-Selecionar": "checkbox-blank-circle", "GENT-ContactoAguarda": "error-warning", @@ -63,63 +63,63 @@ export const IMG_ICON_MAP = Object.freeze({ "GPAG-Documento": "file-text", "GPAG-MB": "bank-card-2", "In_Logo_Web4Print_CMYK_1in.jpg": "linkedin-box", - "Informa": "information", - "Inscrito": "indeterminate-circle", + Informa: "information", + Inscrito: "indeterminate-circle", "instagram40x40.png": "instagram", "IPUP-Formula": "functions", "IT-AlocAdm": "admin", "IT-Email": "mail", "IT-Fotos4x4": "layout-grid", "IT-Fotos6x6": "grid", - "JanelaFechar": "close-circle", - "LegendaSemaforos": "question", - "Limpar": "eraser", - "ListaMais": "add-circle", - "ListaMenos": "close-circle", - "LOV": "arrow-left", - "Lupa": "search", - "Lupa": "search", - "MarcaTemporal": "checkbox-circle", - "MarcaTemporalActivo": "play-circle", - "MarcaTemporalOff": "checkbox-blank-circle", - "Mensagem": "chat-4", - "MensagemBBom": "emotion-laugh", - "MensagemBom": "emotion-happy", - "MensagemFilhos": "question-answer", - "MensagemGrande": "sticky-note", - "MensagemMau": "emotion-sad", - "MensagemMMau": "emotion-unhappy", - "MensagemNao": "thumb-down", - "MensagemNeutro": "emotion-normal", - "MensagemNova": "folder-unknown", - "MensagemResponder": "edit", - "MensagemSemFilhos": "chat-off", - "MensagemSim": "thumb-up", - "MensagemVelha": "folder", - "MensagemVelhaV": "folder-open", - "MenuContextoDetalhesMaisG": "zoom-in", - "MenuContextoDetalhesMenosG": "zoom-out", - "MenuContextoEditarG": "edit", - "MenuContextoImagemPisoDescerOff": "arrow-right-down", - "MenuContextoImagemPisoSubirOff": "arrow-right-up", - "MenuContextoInicioG": "", - "MoodleIcon": undefined, - "NaoInscrito": "close-circle", - "Novo": "star", - "Obr": "asterisk", - "PaginaWeb": "global", - "Pasta": "folder-open", - "PastaFechada": "folder", - "Pessoa": "user", - "Prior1": "arrow-up-double", - "Prior2": "arrow-up-s", - "Prior3": "subtract", - "Prior4": "arrow-down-s", - "Prior5": "arrow-down-double", - "QuadradoMaisPeq": "add-circle", - "QuadradoMenosPeq": "close-circle", - "QuadradoPequenoMais": "add-circle", - "QuadradoPequenoMenos": "close-circle", + JanelaFechar: "close-circle", + LegendaSemaforos: "question", + Limpar: "eraser", + ListaMais: "add-circle", + ListaMenos: "close-circle", + LOV: "arrow-left", + Lupa: "search", + // Lupa: "search", + MarcaTemporal: "checkbox-circle", + MarcaTemporalActivo: "play-circle", + MarcaTemporalOff: "checkbox-blank-circle", + Mensagem: "chat-4", + MensagemBBom: "emotion-laugh", + MensagemBom: "emotion-happy", + MensagemFilhos: "question-answer", + MensagemGrande: "sticky-note", + MensagemMau: "emotion-sad", + MensagemMMau: "emotion-unhappy", + MensagemNao: "thumb-down", + MensagemNeutro: "emotion-normal", + MensagemNova: "folder-unknown", + MensagemResponder: "edit", + MensagemSemFilhos: "chat-off", + MensagemSim: "thumb-up", + MensagemVelha: "folder", + MensagemVelhaV: "folder-open", + MenuContextoDetalhesMaisG: "zoom-in", + MenuContextoDetalhesMenosG: "zoom-out", + MenuContextoEditarG: "edit", + MenuContextoImagemPisoDescerOff: "arrow-right-down", + MenuContextoImagemPisoSubirOff: "arrow-right-up", + MenuContextoInicioG: "", + MoodleIcon: undefined, + NaoInscrito: "close-circle", + Novo: "star", + Obr: "asterisk", + PaginaWeb: "global", + Pasta: "folder-open", + PastaFechada: "folder", + Pessoa: "user", + Prior1: "arrow-up-double", + Prior2: "arrow-up-s", + Prior3: "subtract", + Prior4: "arrow-down-s", + Prior5: "arrow-down-double", + QuadradoMaisPeq: "add-circle", + QuadradoMenosPeq: "close-circle", + QuadradoPequenoMais: "add-circle", + QuadradoPequenoMenos: "close-circle", // "ResultadoActual": "map-pin", // TODO (toino): find better icon // "ResultadoAnt": "arrow-left-s", // "ResultadoAntFin": "skip-back", @@ -127,38 +127,38 @@ export const IMG_ICON_MAP = Object.freeze({ // "ResultadoSeg": "arrow-right-s", // "ResultadoSegFin": "skip-forward", // "ResultadoSegInt": "more", - "SemAmarelo": "indeterminate-circle", - "SemPermissoes": "error-warning", - "SemRegistos": "forbid", - "SemVerde": "checkbox-circle", - "SemVermelho": "error-warning", - "SetaDir": "arrow-right", + SemAmarelo: "indeterminate-circle", + SemPermissoes: "error-warning", + SemRegistos: "forbid", + SemVerde: "checkbox-circle", + SemVermelho: "error-warning", + SetaDir: "arrow-right", "SUMARIOS-Anexo": "attachment", "SUMARIOS-AnexoOff": "attachment", "SUMARIOS-VerSumario": "file-text", "SUMARIOS-VerSumarioOff": "file-text", - "Telef": "phone", - "Visto": "checkbox-circle", + Telef: "phone", + Visto: "checkbox-circle", "youtube_32.png": "youtube", - "ZipPeq": "file-zip", + ZipPeq: "file-zip", }); export const FA_ICON_MAP = Object.freeze({ - "bars": "menu", + bars: "menu", "ellipsis-v": "more-2", "envelope-o": "mail", - "fax": "printer", // TODO (toino): find better icon - "laptop": "computer", - "phone": "phone", + fax: "printer", // TODO (toino): find better icon + laptop: "computer", + phone: "phone", "plus-circle": "add-circle", - "unlock": "login-circle", - "envelope": "mail-unread" + unlock: "login-circle", + envelope: "mail-unread", }); export const BANNER_ICON_MAP = Object.freeze({ - "alerta": "alert", - "info": "information", - "informa": "information", + alerta: "alert", + info: "information", + informa: "information", }); export const BG_IMAGE_ICON_MAP = Object.freeze({ diff --git a/content-scripts/modules/icons/index.js b/content-scripts/modules/icons/index.js index 095f531..393b2dd 100644 --- a/content-scripts/modules/icons/index.js +++ b/content-scripts/modules/icons/index.js @@ -41,7 +41,10 @@ const replaceImages = () => { copyEvents(i, span); } - size = Math.max(Math.round(Math.max(i.width, i.height) / 24) * 24, 24); + let size = Math.max( + Math.round(Math.max(i.width, i.height) / 24) * 24, + 24, + ); copyAttrs(i, span); span.classList.add(`ri-${icon}-line`, `ri-${icon}`); @@ -59,7 +62,7 @@ const replaceImages = () => { else if (n instanceof HTMLElement) n.querySelectorAll("img").forEach(handleImage); }); - }) + }), ).observe(document, { subtree: true, childList: true, diff --git a/content-scripts/modules/initialize.js b/content-scripts/modules/initialize.js index 5f74501..a99b138 100644 --- a/content-scripts/modules/initialize.js +++ b/content-scripts/modules/initialize.js @@ -4,326 +4,370 @@ import { isDate, reverseDate } from "./utilities/date"; // Resize Listener export const addResizeListener = () => { - window.addEventListener( - "resize", - throttle(async () => { - /* + window.addEventListener( + "resize", + throttle(async () => { + /* Code here */ - }, 1000) - ); + }, 1000), + ); }; // Append override-functions.js to the page export const injectOverrideFunctions = () => { - const script = document.createElement("script"); - script.src = chrome.runtime.getURL("js/override-functions.js"); - document.body.appendChild(script); -} + const script = document.createElement("script"); + script.src = chrome.runtime.getURL("js/override-functions.js"); + document.body.appendChild(script); +}; /** * Reverse the date direction * Ex: 2023-10-05 to 05-10-2023 */ export const reverseDateDirection = () => { - document.querySelectorAll(".data").forEach(date => { - if(isDate(date.innerHTML)){ - date.innerHTML = reverseDate(date.innerHTML) - } - }); -} - -export const currentAccountPage = () => { - if(getPath() != "gpag_ccorrente_geral.conta_corrente_view") return; - - const contaCorrente = document.getElementById("GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW"); - if(contaCorrente){ - - tabs = contaCorrente.querySelectorAll(".tab") - - // merge "Crédito" and "Débito" collumns and remove collumns - tabs.forEach((tab, tab_index) => { - let creditColumnIndex; - let columnsToRemove = []; - rows = [...(tab.querySelectorAll("thead > tr, tbody > tr"))]; - if(rows.length == 0) return; - - headerTitles = document.querySelectorAll("ul.ui-tabs-nav > li > a") - headerTitles = [...headerTitles].map(title => title.textContent) - headerCells = rows[0].querySelectorAll("th"); - headerCells.forEach((th, index) => { - if(th.innerHTML == "Débito"){ - th.innerHTML = "Valor"; - }else if(th.innerHTML == "Crédito"){ - creditColumnIndex = index - // Colspan - colSpan = headerCells[0].colSpan; - if(colSpan > 1) creditColumnIndex += colSpan; - th.remove() - } - - // Remove "Valor Pago" Column - if(th.innerHTML == "Valor Pago"){ - columnsToRemove.push(index + headerCells[0].colSpan - 1); - th.remove() - } - - // Remove "Valor em Falta" Column - if(th.innerHTML == "Valor em Falta"){ - th.innerHTML = ""; - th.colSpan = 1; - columnsToRemove.push(index + headerCells[0].colSpan - 1); + document.querySelectorAll(".data").forEach((date) => { + if (isDate(date.innerHTML)) { + date.innerHTML = reverseDate(date.innerHTML); } + }); +}; - // Rename "Juros em Mora" Column - if(th.innerHTML == "Juros de Mora"){ - th.innerHTML = "Juros"; - // Remove "Juros de Mora" Column in "Juros de mora Proprinas" tab - if(headerTitles[tab_index] == "Juros de mora Propinas"){ - columnsToRemove.push(index + headerCells[0].colSpan - 1); - th.remove() - } - } +export const currentAccountPage = () => { + if (getPath() != "gpag_ccorrente_geral.conta_corrente_view") return; + + const contaCorrente = document.getElementById( + "GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW", + ); + if (contaCorrente) { + let tabs = contaCorrente.querySelectorAll(".tab"); + + // merge "Crédito" and "Débito" collumns and remove collumns + tabs.forEach((tab, tab_index) => { + let creditColumnIndex; + let columnsToRemove = []; + let rows = [...tab.querySelectorAll("thead > tr, tbody > tr")]; + if (rows.length == 0) return; + + let headerTitles = document.querySelectorAll( + "ul.ui-tabs-nav > li > a", + ); + headerTitles = [...headerTitles].map((title) => title.textContent); + let headerCells = rows[0].querySelectorAll("th"); + headerCells.forEach((th, index) => { + if (th.innerHTML == "Débito") { + th.innerHTML = "Valor"; + } else if (th.innerHTML == "Crédito") { + creditColumnIndex = index; + // Colspan + let colSpan = headerCells[0].colSpan; + if (colSpan > 1) creditColumnIndex += colSpan; + th.remove(); + } + + // Remove "Valor Pago" Column + if (th.innerHTML == "Valor Pago") { + columnsToRemove.push(index + headerCells[0].colSpan - 1); + th.remove(); + } + + // Remove "Valor em Falta" Column + if (th.innerHTML == "Valor em Falta") { + th.innerHTML = ""; + th.colSpan = 1; + columnsToRemove.push(index + headerCells[0].colSpan - 1); + } + + // Rename "Juros em Mora" Column + if (th.innerHTML == "Juros de Mora") { + th.innerHTML = "Juros"; + // Remove "Juros de Mora" Column in "Juros de mora Proprinas" tab + if (headerTitles[tab_index] == "Juros de mora Propinas") { + columnsToRemove.push( + index + headerCells[0].colSpan - 1, + ); + th.remove(); + } + } + + // Remove "Débito em Falta" Column + if (th.innerHTML == "Débito em Falta") { + columnsToRemove.push(index + headerCells[0].colSpan - 1); + th.remove(); + } + + // Remove "Valor em Falta" Column + if (th.innerHTML == "Documento") { + th.colSpan = 1; + columnsToRemove.push(index + headerCells[0].colSpan - 1); + } + + // Remove "Estado" Column + if (th.innerHTML == "Estado") { + columnsToRemove.push(index + headerCells[0].colSpan - 1); + th.remove(); + } + }); + + rows.shift(); + + rows.forEach((row) => { + let cells = [...row.querySelectorAll("td")]; + columnsToRemove.forEach((columnIndex) => { + if (!cells[0].classList.contains("credito")) { + cells[columnIndex].remove(); + } + }); + }); + + if (creditColumnIndex) { + rows.forEach((row, index) => { + let isGeralExtract = + headerTitles[tab_index] == "Extrato Geral"; + + let cells = [...row.querySelectorAll("td")]; + let debitCell = cells[creditColumnIndex - 1]; + + if (debitCell.innerHTML == " ") { + debitCell.innerHTML = ""; + debitCell.classList.add("n"); + if (isGeralExtract) { + debitCell.classList.add("positive"); + debitCell.innerHTML = "+"; + } + debitCell.innerHTML += + cells[creditColumnIndex].innerHTML; + } else { + if (isGeralExtract) { + debitCell.classList.add("negative"); + debitCell.innerHTML = "-" + debitCell.innerHTML; + } + } + cells[creditColumnIndex].remove(); + if (cells[0].classList.contains("credito")) { + //remove "Multibanco - SIBS" row + //TODO: adicionar data a "pago em" + + //change the last cell of the last row to the value of the last cell of the current row + let lastRowCells = + rows[index - 1].querySelectorAll("td"); + + let document_file = + cells[cells.length - 1].querySelector("a"); + if (document_file) { + lastRowCells[lastRowCells.length - 1].innerHTML = + ""; + lastRowCells[lastRowCells.length - 1].appendChild( + document_file, + ); + lastRowCells[ + lastRowCells.length - 1 + ].style.paddingRight = "0.6rem"; + } + row.remove(); + } + }); + } + }); - // Remove "Débito em Falta" Column - if(th.innerHTML == "Débito em Falta"){ - columnsToRemove.push(index + headerCells[0].colSpan - 1); - th.remove() + // Change "Data" collumn position in "Extrato Geral" tab + const geralExtractTable = document.querySelector("#tab_extracto_geral"); + if (geralExtractTable) { + geralExtractTable.querySelectorAll("tr").forEach((row) => { + let cells = [ + ...row.querySelectorAll("td"), + ...row.querySelectorAll("th"), + ]; + // len = cells.length; + row.insertBefore(cells[1], cells[0]); + }); } - // Remove "Valor em Falta" Column - if(th.innerHTML == "Documento"){ - th.colSpan = 1; - columnsToRemove.push(index + headerCells[0].colSpan - 1); + // Switch "Refência" action button to the right + if (tabs.length > 0) { + tabs[0].querySelectorAll("tbody > tr").forEach((row) => { + let cells = [ + ...row.querySelectorAll("td"), + ...row.querySelectorAll("th"), + ]; + let len = cells.length; + row.insertBefore(cells[len - 1], cells[len - 2]); + }); } - // Remove "Estado" Column - if(th.innerHTML == "Estado"){ - columnsToRemove.push(index + headerCells[0].colSpan - 1); - th.remove(); - } - }); - - rows.shift(); - - rows.forEach(row => { - cells = [...row.querySelectorAll("td")] - columnsToRemove.forEach(columnIndex => { - if(!cells[0].classList.contains("credito")){ - cells[columnIndex].remove(); - } - }) - }) - - if(creditColumnIndex){ - rows.forEach((row, index) => { - isGeralExtract = headerTitles[tab_index] == "Extrato Geral"; - - cells = [...row.querySelectorAll("td")] - debitCell = cells[creditColumnIndex-1]; - - if(debitCell.innerHTML == " "){ - debitCell.innerHTML = "" - debitCell.classList.add("n"); - if(isGeralExtract){ - debitCell.classList.add("positive") - debitCell.innerHTML = "+" - } - debitCell.innerHTML += cells[creditColumnIndex].innerHTML; - }else{ - if(isGeralExtract){ - debitCell.classList.add("negative") - debitCell.innerHTML = "-" + debitCell.innerHTML; - } - } - cells[creditColumnIndex].remove(); - if(cells[0].classList.contains("credito")){ //remove "Multibanco - SIBS" row - //TODO: adicionar data a "pago em" - - //change the last cell of the last row to the value of the last cell of the current row - lastRowCells = rows[index-1].querySelectorAll("td") - - document_file = cells[cells.length - 1].querySelector("a") - if(document_file){ - lastRowCells[lastRowCells.length - 1].innerHTML = ""; - lastRowCells[lastRowCells.length - 1].appendChild(document_file) - lastRowCells[lastRowCells.length - 1].style.paddingRight = "0.6rem"; - } - row.remove(); - } + let statusProperties = { + Pago: { + class: "success", + text: "Pago", + }, + "Não pago mas prazo ainda não foi excedido": { + class: "pending", + text: "Pendente", + }, + Anulado: { + class: "cancelled", + text: "Anulado", + }, + "Prazo excedido": { + class: "danger", + text: "Excedido", + }, + }; + + // Improve the status badge + tabs.forEach((tab) => { + tab.querySelectorAll("tbody > tr").forEach((row) => { + let cells = [...row.querySelectorAll("td")]; + if (cells.length == 0) return; + + // Get title atriuibute from the first cell + const cellStatus = + cells[0].querySelector("img")?.getAttribute("title") ?? + null; + if (cellStatus == null) return; + + // Creating a new status badge + let statusDiv = document.createElement("div"); + statusDiv.innerHTML = statusProperties[cellStatus].text; + statusDiv.classList.add("badge"); + statusDiv.classList.add( + "badge-" + statusProperties[cellStatus].class, + ); + statusDiv.title = cellStatus; + + cells[0].innerHTML = statusDiv.outerHTML; + }); }); - } - }) - - // Change "Data" collumn position in "Extrato Geral" tab - const geralExtractTable = document.querySelector("#tab_extracto_geral"); - if(geralExtractTable){ - geralExtractTable.querySelectorAll("tr").forEach(row => { - cells = [...row.querySelectorAll("td"), ...row.querySelectorAll("th")] - len = cells.length; - row.insertBefore(cells[1], cells[0]); - }) - } - - // Switch "Refência" action button to the right - if(tabs.length > 0){ - tabs[0].querySelectorAll("tbody > tr").forEach(row => { - cells = [...row.querySelectorAll("td"), ...row.querySelectorAll("th")] - len = cells.length; - row.insertBefore(cells[len - 1], cells[len - 2]); - }) - } - statusProperties = { - "Pago":{ - class: "success", - text: "Pago" - }, - "Não pago mas prazo ainda não foi excedido":{ - class: "pending", - text: "Pendente" - }, - "Anulado":{ - class:"cancelled", - text: "Anulado" - }, - "Prazo excedido": { - class: "danger", - text: "Excedido" - } + // Remove "Movimentos" h2 + contaCorrente.previousElementSibling.remove(); + + // Create Balance and NIF cards + const saldo = document.querySelector( + ".formulario #span_saldo_total", + ).textContent; + const saldoCard = document.createElement("div"); + saldoCard.classList.add("card"); + const title = document.createElement("p"); + title.innerHTML = "Saldo"; + const saldoValue = document.createElement("h3"); + saldoValue.innerHTML = saldo + "€"; + saldoCard.appendChild(title); + saldoCard.appendChild(saldoValue); + + const nif = Array.from( + document.querySelectorAll(".formulario .formulario-legenda"), + ).filter((el) => el.innerHTML.includes("N.I.F."))[0].nextElementSibling + .innerHTML; + const nifCard = document.createElement("div"); + nifCard.classList.add("card"); + const nifTitle = document.createElement("p"); + nifTitle.innerHTML = "NIF"; + const nifValue = document.createElement("h3"); + nifValue.innerHTML = nif; + nifCard.appendChild(nifTitle); + nifCard.appendChild(nifValue); + + let accountDetails = document.createElement("div"); + accountDetails.style.display = "flex"; + accountDetails.style.gap = "1rem"; + accountDetails.style.marginBottom = "0.5rem"; + + accountDetails.appendChild(saldoCard); + accountDetails.appendChild(nifCard); + contaCorrente.insertBefore(accountDetails, contaCorrente.firstChild); + + return; } - - // Improve the status badge - tabs.forEach((tab) => { - tab.querySelectorAll("tbody > tr").forEach(row => { - cells = [...row.querySelectorAll("td")] - if(cells.length == 0) return; - - // Get title atriuibute from the first cell - const cellStatus = cells[0].querySelector("img")?.getAttribute("title") ?? null; - if(cellStatus == null) return; - - // Creating a new status badge - statusDiv = document.createElement("div"); - statusDiv.innerHTML = statusProperties[cellStatus].text - statusDiv.classList.add("badge"); - statusDiv.classList.add("badge-" + statusProperties[cellStatus].class); - statusDiv.title = cellStatus; - - cells[0].innerHTML = statusDiv.outerHTML; - }) - }) - - // Remove "Movimentos" h2 - contaCorrente.previousElementSibling.remove() - - // Create Balance and NIF cards - const saldo = document.querySelector(".formulario #span_saldo_total").textContent; - const saldoCard = document.createElement("div"); - saldoCard.classList.add("card"); - const title = document.createElement("p"); - title.innerHTML = "Saldo"; - const saldoValue = document.createElement("h3"); - saldoValue.innerHTML = saldo + "€"; - saldoCard.appendChild(title); - saldoCard.appendChild(saldoValue); - - const nif = Array.from(document.querySelectorAll(".formulario .formulario-legenda")).filter(el => el.innerHTML.includes("N.I.F."))[0].nextElementSibling.innerHTML; - const nifCard = document.createElement("div"); - nifCard.classList.add("card"); - const nifTitle = document.createElement("p"); - nifTitle.innerHTML = "NIF"; - const nifValue = document.createElement("h3"); - nifValue.innerHTML = nif; - nifCard.appendChild(nifTitle); - nifCard.appendChild(nifValue); - - accountDetails = document.createElement("div"); - accountDetails.style.display = "flex"; - accountDetails.style.gap = "1rem"; - accountDetails.style.marginBottom = "0.5rem"; - - accountDetails.appendChild(saldoCard); - accountDetails.appendChild(nifCard); - contaCorrente.insertBefore(accountDetails, contaCorrente.firstChild); - - return; - } -} +}; // We are now doing this on our own table component (components/table.tsx), but this still works for regular tables that we didn't reimplement yet export const addSortTableActions = () => { - document.querySelectorAll("th").forEach(th => { - th.addEventListener("click", () => { - const table = th.closest("table"); - // Don't sort our tables with this function - if (table.classList.contains("se-table")) return; - let index = [...th.parentElement.children].indexOf(th); - const aditionalColspan = parseInt(th.parentElement.children[0].getAttribute("colspan")) || 1; - const rows = [...table.querySelectorAll("tr")]; - - // Removing header rows - while(rows.length > 0 && rows[0].classList.length === 0) - rows.shift(); - - // Only sort rows with classList[0] starting with "i" "p" or "d" - const rowsToSort = rows.filter(row => { - if(row.classList.length == 0) return false; - const firstClass = row.classList[0]; - return firstClass.startsWith("i") || firstClass.startsWith("p") || firstClass.startsWith("d"); - }) - - // console.log("rows", rowsToSort) - - index += aditionalColspan-1; - - if(rowsToSort.length <= 1) return; - if(rowsToSort[0].querySelectorAll("td").length <= index) return; - - const classes = ["asc", "desc"]; - const currentClasses = th.classList; - - // Remove asc and desc classes from neighbors th - th.parentElement.querySelectorAll("th").forEach(neighbor => { - if(neighbor == th) return - neighbor.classList.remove(...classes); - }) - - // Check if the current th has some class from classes - if(currentClasses.length == 0 || !classes.some(c => currentClasses.contains(c))){ - th.classList.add(classes[0]); - }else{ - classes.forEach(c => th.classList.toggle(c)); - } - - rowsToSort.sort((a, b) => { - let aValue = a.querySelectorAll("td")[index].innerHTML; - let bValue = b.querySelectorAll("td")[index].innerHTML; - if(th.classList.contains("desc")) [aValue, bValue] = [bValue, aValue]; - - // Date order - if(isDate(reverseDate(aValue)) && isDate(reverseDate(bValue))){ - const aDate = new Date(reverseDate(aValue)); - const bDate = new Date(reverseDate(bValue)); - if(aDate < bDate) return -1; - if(aDate > bDate) return 1; - return 0; - } + document.querySelectorAll("th").forEach((th) => { + th.addEventListener("click", () => { + const table = th.closest("table"); + // Don't sort our tables with this function + if (table.classList.contains("se-table")) return; + let index = [...th.parentElement.children].indexOf(th); + const aditionalColspan = + parseInt( + th.parentElement.children[0].getAttribute("colspan"), + ) || 1; + const rows = [...table.querySelectorAll("tr")]; + + // Removing header rows + while (rows.length > 0 && rows[0].classList.length === 0) + rows.shift(); + + // Only sort rows with classList[0] starting with "i" "p" or "d" + const rowsToSort = rows.filter((row) => { + if (row.classList.length == 0) return false; + const firstClass = row.classList[0]; + return ( + firstClass.startsWith("i") || + firstClass.startsWith("p") || + firstClass.startsWith("d") + ); + }); + + // console.log("rows", rowsToSort) + + index += aditionalColspan - 1; + + if (rowsToSort.length <= 1) return; + if (rowsToSort[0].querySelectorAll("td").length <= index) return; + + const classes = ["asc", "desc"]; + const currentClasses = th.classList; + + // Remove asc and desc classes from neighbors th + th.parentElement.querySelectorAll("th").forEach((neighbor) => { + if (neighbor == th) return; + neighbor.classList.remove(...classes); + }); + + // Check if the current th has some class from classes + if ( + currentClasses.length == 0 || + !classes.some((c) => currentClasses.contains(c)) + ) { + th.classList.add(classes[0]); + } else { + classes.forEach((c) => th.classList.toggle(c)); + } - // Alphabetical order - return aValue.localeCompare(bValue, undefined, { - numeric: true, - sensitivity: 'base' + rowsToSort.sort((a, b) => { + let aValue = a.querySelectorAll("td")[index].innerHTML; + let bValue = b.querySelectorAll("td")[index].innerHTML; + if (th.classList.contains("desc")) + [aValue, bValue] = [bValue, aValue]; + + // Date order + if ( + isDate(reverseDate(aValue)) && + isDate(reverseDate(bValue)) + ) { + const aDate = new Date(reverseDate(aValue)); + const bDate = new Date(reverseDate(bValue)); + if (aDate < bDate) return -1; + if (aDate > bDate) return 1; + return 0; + } + + // Alphabetical order + return aValue.localeCompare(bValue, undefined, { + numeric: true, + sensitivity: "base", + }); + }); + + rowsToSort.forEach((row) => { + table.appendChild(row); + }); }); - }) - - rowsToSort.forEach(row => { - table.appendChild(row); - }) - }) - th.style.cursor = "pointer"; - }) -} \ No newline at end of file + th.style.cursor = "pointer"; + }); +}; diff --git a/content-scripts/modules/layout.ts b/content-scripts/modules/layout.ts index 787c993..de21a86 100644 --- a/content-scripts/modules/layout.ts +++ b/content-scripts/modules/layout.ts @@ -4,7 +4,6 @@ import { fetchSigarraPage } from "./utilities/pageUtils"; import Button from "../components/Button"; export const changeLayout = async () => { - // Move all scripts and styles to head const scripts = document.querySelectorAll("script, link, style"); document.head.append(...Array.from(scripts)); @@ -33,10 +32,9 @@ const replaceHeader = () => { if (!autenticacao) return; if (autenticacao.classList.contains("autenticado")) { - - let auth: AuthSession = { - name: autenticacao.querySelector(".nome")?.textContent!, - number: autenticacao.querySelector("img")?.src.slice(-9)!, + const auth: AuthSession = { + name: autenticacao.querySelector(".nome")!.textContent!, + number: autenticacao.querySelector("img")!.src.slice(-9)!, hasNotifications: oldHeader.querySelector(".notificacao") !== null, }; @@ -44,7 +42,7 @@ const replaceHeader = () => { oldHeader.replaceWith(newHeader); const notificationsButton = newHeader.querySelector( - "#se-auth-notifications-button" + "#se-auth-notifications-button", ); if (notificationsButton) { @@ -57,7 +55,7 @@ const replaceHeader = () => { } oldHeader.replaceWith(Header({})); -} +}; const removeLeftColumn = () => { const leftColumn = document.querySelector("#colunaprincipal"); @@ -80,7 +78,7 @@ const removeLeftColumn = () => { const loadNotifications = async (): Promise => { const notificationsList = document.querySelector( - "#se-auth-notifications-list" + "#se-auth-notifications-list", ); if (!notificationsList) return; @@ -90,10 +88,10 @@ const loadNotifications = async (): Promise => { notificationsList.classList.add("se-loading"); const newNotifications = document.querySelector( - "#se-auth-new-notifications" + "#se-auth-new-notifications", ); const readNotifications = document.querySelector( - "#se-auth-read-notifications" + "#se-auth-read-notifications", ); const dateFormatter = new Intl.DateTimeFormat("pt-PT", { @@ -109,14 +107,16 @@ const loadNotifications = async (): Promise => { if (!list) return; const response = await fetchSigarraPage( - `gnots_ajax.show_lista_notifs?pv_estado=${type}` + `gnots_ajax.show_lista_notifs?pv_estado=${type}`, ); response.querySelectorAll("tr.d").forEach((notification) => { - const date = notification.querySelector("td:nth-child(3)")?.textContent; - const title = notification.querySelector("td:nth-child(4)")?.textContent; + const date = + notification.querySelector("td:nth-child(3)")?.textContent; + const title = + notification.querySelector("td:nth-child(4)")?.textContent; const answer = notification.querySelector( - "td:nth-child(7) input" + "td:nth-child(7) input", ); //TODO(thePeras): Could be a jsx component @@ -144,7 +144,7 @@ const loadNotifications = async (): Promise => { e.stopPropagation(); await fetchSigarraPage( - `gnots_geral.nots_list_sub?${answer.name}=${answer.value}` + `gnots_geral.nots_list_sub?${answer.name}=${answer.value}`, ); const targetElement = e.target as HTMLElement; @@ -152,20 +152,22 @@ const loadNotifications = async (): Promise => { readNotifications?.insertBefore( li, - readNotifications.firstChild + readNotifications.firstChild, ); }; - li.append(Button({ - icon: "ri-check-line", - className: "se-notification-button", - onclick: markAsRead, - })); + li.append( + Button({ + icon: "ri-check-line", + className: "se-notification-button", + onclick: markAsRead, + }), + ); } list.append(li); }); - }) + }), ); notificationsList.classList.remove("se-loading"); diff --git a/content-scripts/modules/login.js b/content-scripts/modules/login.js index 23ed4a6..e949c44 100644 --- a/content-scripts/modules/login.js +++ b/content-scripts/modules/login.js @@ -8,7 +8,7 @@ var auto_login = {}; export const rememberLogin = async (data) => { if (!(data?.autoLogin === "on")) return; - const isAuthenticated = document.querySelector('#se-auth-form') == null; + const isAuthenticated = document.querySelector("#se-auth-form") == null; auto_login = await getStorage("auto_login"); if (!auto_login) { @@ -19,33 +19,31 @@ export const rememberLogin = async (data) => { if (!isAuthenticated) { //inject button onClick document - .querySelector('#se-auth-form') + .querySelector("#se-auth-form") .addEventListener("submit", loginButtonHandler); } - } else if (!isAuthenticated) { const res = await tryLogin(auto_login); // NOTE(luisd): if this happens probably the login is now invalid // eg.: user changes password / expires // we should then prompt the user to login again - if(res.querySelector("p.aviso-invalidado") != null){ + if (res.querySelector("p.aviso-invalidado") != null) { await setStorage(emptyLogin); - return; + return; } - await chrome.runtime.sendMessage({ type: "login", auto_login: auto_login }); + await chrome.runtime.sendMessage({ + type: "login", + auto_login: auto_login, + }); window.location.reload(); - - } if (isAuthenticated) { document.querySelector("#se-logout-button").onclick = function () { setStorage(emptyLogin); - } - }; + }; + } }; - - export const loginButtonHandler = (event) => { event.preventDefault(); @@ -53,38 +51,41 @@ export const loginButtonHandler = (event) => { document.getElementById("se-auth-pass").classList.remove("se-auth-invalid"); document.getElementById("se-auth-wrong-details")?.remove(); + auto_login.user_info = btoa( + JSON.stringify({ + user: document.getElementById("se-auth-user").value, + pass: document.getElementById("se-auth-pass").value, + }), + ); + tryLogin(auto_login).then(async (res) => { + if (res.querySelector("p.aviso-invalidado") != null) { + document + .getElementById("se-auth-user") + .classList.add("se-auth-invalid"); + document + .getElementById("se-auth-pass") + .classList.add("se-auth-invalid"); + const p = document.createElement("p"); + p.id = "se-auth-wrong-details"; + p.textContent = "Utilizador ou password incorreta."; + document.querySelector("#se-auth-form").prepend(p); + console.log("Wrong details... try again"); + return; + } - - auto_login.user_info = btoa(JSON.stringify({ - user: document.getElementById("se-auth-user").value, - pass: document.getElementById("se-auth-pass").value - })); - - tryLogin(auto_login).then( - async (res) => { - if(res.querySelector("p.aviso-invalidado") != null){ - document.getElementById("se-auth-user").classList.add("se-auth-invalid"); - document.getElementById("se-auth-pass").classList.add("se-auth-invalid"); - const p = document.createElement('p'); - p.id = "se-auth-wrong-details"; - p.textContent = "Utilizador ou password incorreta." - document.querySelector('#se-auth-form').prepend(p); - console.log("Wrong details... try again"); - return; - } - - const loggedIn = await chrome.runtime.sendMessage({ type: "login", auto_login: auto_login }); - if (loggedIn === false) { - return; - } else { - window.location.reload(); - } + const loggedIn = await chrome.runtime.sendMessage({ + type: "login", + auto_login: auto_login, + }); + if (loggedIn === false) { + return; + } else { + window.location.reload(); } - ); + }); return false; -} - +}; async function tryLogin(auto_login) { const user_info = JSON.parse(atob(auto_login.user_info)); @@ -94,14 +95,14 @@ async function tryLogin(auto_login) { formBody.append("p_address", "WEB_PAGE.INICIAL"); formBody.append("p_user", user_info.user); formBody.append("p_pass", user_info.pass); - const url = new URL('https://sigarra.up.pt/feup/pt/vld_validacao.validacao'); - url.search = formBody.toString(); - return await fetchSigarraPage(url, - { - method: "POST", - headers: { - "Content-Type": "application/x-www-form-urlencoded" - } - } + const url = new URL( + "https://sigarra.up.pt/feup/pt/vld_validacao.validacao", ); + url.search = formBody.toString(); + return await fetchSigarraPage(url, { + method: "POST", + headers: { + "Content-Type": "application/x-www-form-urlencoded", + }, + }); } diff --git a/content-scripts/modules/options/addStyles.js b/content-scripts/modules/options/addStyles.js index ebb7d93..5c696e8 100644 --- a/content-scripts/modules/options/addStyles.js +++ b/content-scripts/modules/options/addStyles.js @@ -2,12 +2,12 @@ import removeElement from "../utilities/removeElement"; // Utility function to inject CSS into page export default function addStyles(id, css) { - // First remove before adding - removeElement(id); + // First remove before adding + removeElement(id); - const head = document.querySelector("head"); - const style = document.createElement("style"); - style.id = id; - style.textContent = `${css}`; - head.appendChild(style); + const head = document.querySelector("head"); + const style = document.createElement("style"); + style.id = id; + style.textContent = `${css}`; + head.appendChild(style); } diff --git a/content-scripts/modules/options/index.js b/content-scripts/modules/options/index.js index b4e02d8..e0e2d01 100644 --- a/content-scripts/modules/options/index.js +++ b/content-scripts/modules/options/index.js @@ -1,21 +1,12 @@ -import { - useNavBar, - hideShortcuts, - changeFont -} from "./options"; +import { useNavBar, hideShortcuts, changeFont } from "./options"; // Array of user preferences, passed to `injectAllChanges` -export const userPreferences = [ - "navbar", - "shortcuts", - "autoLogin", - "font" -]; +export const userPreferences = ["navbar", "shortcuts", "autoLogin", "font"]; export const injectAllChanges = (data) => { - Promise.all([ - hideShortcuts(data?.shortcuts), - useNavBar(data?.navbar), - changeFont(data?.font) - ]).catch((err) => console.error(err)); + Promise.all([ + hideShortcuts(data?.shortcuts), + useNavBar(data?.navbar), + changeFont(data?.font), + ]).catch((err) => console.error(err)); }; diff --git a/content-scripts/modules/options/options.js b/content-scripts/modules/options/options.js index 90f773e..3c340e4 100644 --- a/content-scripts/modules/options/options.js +++ b/content-scripts/modules/options/options.js @@ -2,63 +2,69 @@ import addStyles from "./addStyles"; import removeElement from "../utilities/removeElement"; export const hideShortcuts = async (shortcuts) => { - switch (shortcuts) { - case "on": - addStyles( - "se-hide-shortcuts", - ` + switch (shortcuts) { + case "on": + addStyles( + "se-hide-shortcuts", + ` #caixa-atalhos{ display: none } - ` - ); - break; + `, + ); + break; - case "off": - removeElement("#se-hide-shortcuts"); - break; - } + case "off": + removeElement("#se-hide-shortcuts"); + break; + } }; export const changeFont = async (font) => { - switch (font) { - case "on": - addStyles( - "se-change-font", - ` + switch (font) { + case "on": + addStyles( + "se-change-font", + ` * { font-family: Roboto, sans-serif; } - ` - ); - break; + `, + ); + break; - case "off": - removeElement("#se-change-font"); - break; - } + case "off": + removeElement("#se-change-font"); + break; + } }; export const useNavBar = async (navbar) => { - switch (navbar) { - case "on": - addStyles("se-use-navbar", ` + switch (navbar) { + case "on": + addStyles( + "se-use-navbar", + ` #colunaprincipal, #rodape, #ferramentas{ display: none !important; } - `); - removeElement("#se-dont-use-navbar"); - break; - case "off": - addStyles("se-dont-use-navbar", ` + `, + ); + removeElement("#se-dont-use-navbar"); + break; + case "off": + addStyles( + "se-dont-use-navbar", + ` #se-header-links { display: none !important; } #colunaextra #caixa-campus { display: none !important; } - `); - removeElement("#se-use-navbar"); - break; - } -}; \ No newline at end of file + `, + ); + removeElement("#se-use-navbar"); + break; + } +}; diff --git a/content-scripts/modules/pagination.js b/content-scripts/modules/pagination.js index b07fbc4..fd76767 100644 --- a/content-scripts/modules/pagination.js +++ b/content-scripts/modules/pagination.js @@ -3,15 +3,15 @@ */ const replacePagination = (pagination) => { const prevLinks = pagination.querySelectorAll( - ".paginar-paginas-anteriores a" + ".paginar-paginas-anteriores a", ); const nextLinks = pagination.querySelectorAll( - ".paginar-paginas-posteriores a" + ".paginar-paginas-posteriores a", ); const current = pagination.querySelector(".paginar-paginas-atual span"); const icons = pagination.querySelector( - ".paginar-saltar-barra-posicao" + ".paginar-saltar-barra-posicao", )?.children; const first = icons?.[0]?.querySelector("a"); diff --git a/content-scripts/modules/schedule.js b/content-scripts/modules/schedule.js index 888a837..ae49d11 100644 --- a/content-scripts/modules/schedule.js +++ b/content-scripts/modules/schedule.js @@ -19,7 +19,6 @@ const CLASS_ABBR_TO_ABBR = { P: "P", PL: "PL", OT: "OT", - PL: "PL", TC: "TC", S: "S", O: "O", @@ -116,6 +115,7 @@ const fixScheduleTable = (table) => { rows[i] ??= defaultRows.slice(); // Add column info to cells (useful later) + // eslint-disable-next-line @typescript-eslint/no-unused-vars e.querySelectorAll("td").forEach((c, j) => { const weekday = rows[i].shift(); c.dataset.seWeekday = weekday; @@ -123,7 +123,7 @@ const fixScheduleTable = (table) => { for (let k = i + 1; k < i + c.rowSpan; ++k) { rows[k] = (rows[k] ?? defaultRows.slice()).filter( - (x) => x != weekday + (x) => x != weekday, ); c.dataset.seRows += ` ${k}`; } @@ -172,18 +172,18 @@ const createClass = (name, clazz, room, teacher, reservation) => { const fixClasses = (table) => { /** @type {NodeListOf} */ const classes = table.querySelectorAll( - "td:is(.TP, .TE, .P, .O, .OT, .PL, .TC, .S, .existeexames)" + "td:is(.TP, .TE, .P, .O, .OT, .PL, .TC, .S, .existeexames)", ); classes.forEach((e) => { const className = e.querySelector(":scope b a"); const classClass = e.querySelector( - ":scope span.textopequenoc" + ":scope span.textopequenoc", )?.firstChild; const classRoom = e.querySelector(":scope table td:first-of-type a"); const classTeacher = e.querySelector(":scope table td:last-of-type a"); const classReservation = e.querySelector( - ":scope acronym > a.acao.detalhar" + ":scope acronym > a.acao.detalhar", )?.parentElement?.title; e.replaceChildren( @@ -192,8 +192,8 @@ const fixClasses = (table) => { classClass, classRoom, classTeacher, - classReservation - ) + classReservation, + ), ); }); }; @@ -210,7 +210,7 @@ const getClassDuration = async (url) => { const ret = new Map(); html.querySelectorAll( - ".horario :is(.TP, .TE, .O, .OT, .PL, .TC, .S, .existeexames)" + ".horario :is(.TP, .TE, .O, .OT, .PL, .TC, .S, .existeexames)", ).forEach((/** @type {HTMLTableCellElement} */ e) => { const className = e.querySelector("b a").innerText; const classClass = e.querySelector("span > a").innerText; @@ -248,7 +248,7 @@ const fixOverlappingClasses = async (table, overlapping) => { /** @type {HTMLAnchorElement} */ const className = e.querySelector("[headers=t1] a"); const classType = /\((.+)\)/.exec( - e.querySelector("[headers=t1]").innerText + e.querySelector("[headers=t1]").innerText, )[1]; /** @type {string} */ const weekday = @@ -260,16 +260,16 @@ const fixOverlappingClasses = async (table, overlapping) => { const classClass = e.querySelector("[headers=t6] a"); let classDuration = durationCache.get( - `${className.innerText},${CLASS_ABBR_TO_ABBR[classType]},${classClass.innerText}` + `${className.innerText},${CLASS_ABBR_TO_ABBR[classType]},${classClass.innerText}`, ); if (!classDuration) { (await getClassDuration(classClass.href)).forEach( - (duration, k) => durationCache.set(k, duration) + (duration, k) => durationCache.set(k, duration), ); classDuration = durationCache.get( - `${className.innerText},${CLASS_ABBR_TO_ABBR[classType]},${classClass.innerText}` + `${className.innerText},${CLASS_ABBR_TO_ABBR[classType]},${classClass.innerText}`, ) ?? 1; } @@ -285,7 +285,7 @@ const fixOverlappingClasses = async (table, overlapping) => { cell.rowSpan = classDuration; cell.classList.add(CLASS_ABBR_TO_ABBR[classType]); cell.append( - createClass(className, classClass, classRoom, classTeacher) + createClass(className, classClass, classRoom, classTeacher), ); cell.dataset.seWeekday = weekday; cell.dataset.seRows = row; @@ -302,7 +302,7 @@ const fixOverlappingClasses = async (table, overlapping) => { } tr.insertBefore(cell, next); - }) + }), ); // Find the number of columns needed per weekday @@ -310,7 +310,7 @@ const fixOverlappingClasses = async (table, overlapping) => { for (let i = 1; i < 7; ++i) { for (let j = 0; j < 30; ++j) { const o = table.querySelectorAll( - `[data-se-weekday="${i}"][data-se-rows~="${j}"]` + `[data-se-weekday="${i}"][data-se-rows~="${j}"]`, ); set.add(o.length); } @@ -327,10 +327,10 @@ const fixOverlappingClasses = async (table, overlapping) => { for (let i = 1; i < 7; ++i) { for (let j = 0; j < 30; ++j) { const o = table.querySelectorAll( - `[data-se-weekday="${i}"][data-se-rows~="${j}"]` + `[data-se-weekday="${i}"][data-se-rows~="${j}"]`, ); o.forEach( - (c) => (c.colSpan = Math.min(span / o.length, c.colSpan)) + (c) => (c.colSpan = Math.min(span / o.length, c.colSpan)), ); } } @@ -342,7 +342,7 @@ const fixOverlappingClasses = async (table, overlapping) => { for (let i = 1; i < 7; ++i) { for (let j = 0; j < 30; ++j) { const o = table.querySelectorAll( - `[data-se-weekday="${i}"][data-se-rows~="${j}"]` + `[data-se-weekday="${i}"][data-se-rows~="${j}"]`, ); let s = 0; o.forEach((c) => (s += c.colSpan)); @@ -438,6 +438,7 @@ const fixForm = async () => { e.id = e.name; e.querySelector("option:empty")?.remove(); + // eslint-disable-next-line @typescript-eslint/no-unused-vars e.addEventListener("change", (_) => form.submit()); }); diff --git a/content-scripts/modules/utilities/constructNewData.js b/content-scripts/modules/utilities/constructNewData.js index 4ae3229..3aac2c6 100644 --- a/content-scripts/modules/utilities/constructNewData.js +++ b/content-scripts/modules/utilities/constructNewData.js @@ -1,21 +1,21 @@ // Utility function to create data for `injectAllChanges()` export default function constructNewData(changes) { - // Creates an array of objects from changes - // The value of each object is the new value - const newValuesArray = Object.entries(changes).map((item) => { - const itemKey = item[0]; - const itemValue = item[1]?.newValue; - return { [itemKey]: itemValue }; - }); + // Creates an array of objects from changes + // The value of each object is the new value + const newValuesArray = Object.entries(changes).map((item) => { + const itemKey = item[0]; + const itemValue = item[1]?.newValue; + return { [itemKey]: itemValue }; + }); - // Recreate a hash map to pass to `injectAllChanges()` - const newChangesData = Object.fromEntries( - newValuesArray.map((item) => { - const itemKey = Object.keys(item)[0]; - const itemValue = Object.values(item)[0]; - return [itemKey, itemValue]; - }) - ); + // Recreate a hash map to pass to `injectAllChanges()` + const newChangesData = Object.fromEntries( + newValuesArray.map((item) => { + const itemKey = Object.keys(item)[0]; + const itemValue = Object.values(item)[0]; + return [itemKey, itemValue]; + }), + ); - return newChangesData; + return newChangesData; } diff --git a/content-scripts/modules/utilities/date.js b/content-scripts/modules/utilities/date.js index 459ce70..15d82b8 100644 --- a/content-scripts/modules/utilities/date.js +++ b/content-scripts/modules/utilities/date.js @@ -2,10 +2,9 @@ export const isDate = (date) => { const dateObj = new Date(date); return dateObj instanceof Date && !isNaN(dateObj); -} +}; //Reverse date format from DD-MM-YYYY to YYYY-MM-DD and vice-versa export const reverseDate = (date) => { return date.split("-").reverse().join("-"); -} - +}; diff --git a/content-scripts/modules/utilities/elementFromHtml.js b/content-scripts/modules/utilities/elementFromHtml.js index 2b4ab73..a51b003 100644 --- a/content-scripts/modules/utilities/elementFromHtml.js +++ b/content-scripts/modules/utilities/elementFromHtml.js @@ -1,2 +1,2 @@ -export const elementFromHtml = - (html) => document.createRange().createContextualFragment(html); +export const elementFromHtml = (html) => + document.createRange().createContextualFragment(html); diff --git a/content-scripts/modules/utilities/math.js b/content-scripts/modules/utilities/math.js index 981d664..6dac10a 100644 --- a/content-scripts/modules/utilities/math.js +++ b/content-scripts/modules/utilities/math.js @@ -1,20 +1,20 @@ /** - * @param {number} a - * @param {number} b + * @param {number} a + * @param {number} b * @returns {number} */ export const gcd = (a, b) => (!b ? a : gcd(b, a % b)); /** - * @param {number} a - * @param {number} b + * @param {number} a + * @param {number} b * @returns {number} */ -export const lcm = (a, b) => (a * b) / gcd(a, b); +export const lcm = (a, b) => (a * b) / gcd(a, b); /** - * - * @param {...number} numbers + * + * @param {...number} numbers * @returns {number} */ export const lcmAll = (...numbers) => numbers.reduce(lcm); diff --git a/content-scripts/modules/utilities/pageUtils.js b/content-scripts/modules/utilities/pageUtils.js index d35f511..32e6f5e 100644 --- a/content-scripts/modules/utilities/pageUtils.js +++ b/content-scripts/modules/utilities/pageUtils.js @@ -1,122 +1,132 @@ - /** - * @param {string} selector - * @param {string[]} classList + * @param {string} selector + * @param {string[]} classList */ -export function groupSectionTitleAndContent(selector, classList=[]) { - //this detects if an element is an h3 and groups +export function groupSectionTitleAndContent(selector, classList = []) { + //this detects if an element is an h3 and groups //with the next element until the next h3 appears, if any const outerElement = document.querySelector(selector); let elementList = []; - const listOfRows = [...outerElement.children] + const listOfRows = [...outerElement.children]; for (const row of listOfRows) { if (row.nodeName === "H3" && elementList.length === 0) { row.classList.add("se-group-title"); - elementList.push(row) - continue + elementList.push(row); + continue; } if (row.nodeName === "H3" && elementList.length !== 0) { - const div = document.createElement("div") - div.classList.add(...classList) + const div = document.createElement("div"); + div.classList.add(...classList); elementList.forEach((element) => { - element.remove() - div.appendChild(element) - }) - outerElement.appendChild(div) + element.remove(); + div.appendChild(element); + }); + outerElement.appendChild(div); row.classList.add("se-group-title"); - elementList = [row] - continue + elementList = [row]; + continue; } if (elementList.length === 0) { - continue + continue; } - elementList.push(row) + elementList.push(row); } if (elementList.length !== 0) { - const div = document.createElement("div") - div.classList.add(...classList) + const div = document.createElement("div"); + div.classList.add(...classList); elementList.forEach((element) => { - element.remove() - div.appendChild(element) - }) - outerElement.appendChild(div) + element.remove(); + div.appendChild(element); + }); + outerElement.appendChild(div); } } -export function moveChildrenToAncestor(selector){ +export function moveChildrenToAncestor(selector) { const element = document.querySelector(selector); const parent = element.parentElement; const listOfChildren = [...element.children]; - listOfChildren.forEach((child)=>{ + listOfChildren.forEach((child) => { child.remove(); parent.insertBefore(child, element); }); element.remove(); } - -export function removeTwoColumnTable(tableSelector, inverted=false, parent=null){ +export function removeTwoColumnTable( + tableSelector, + inverted = false, + parent = null, +) { const table = document.querySelector(tableSelector); - - if(table === null || table.tagName !== "TABLE") - throw Error("Couldnt find table with " + tableSelector + " selector"); + + if (table === null || table.tagName !== "TABLE") + throw Error("Couldnt find table with " + tableSelector + " selector"); parent ??= table.parentElement; - + const tbody = table.children[0]; const div = document.createElement("div"); - div.classList.add("se-key-pair-table") - for(const tr of tbody.children){ + div.classList.add("se-key-pair-table"); + for (const tr of tbody.children) { if (tr.children[0].tagName === "TH") continue; - if(tr.children.length !== 2){ - throw Error("Table with selector " + tableSelector + " isn't a two column table"); + if (tr.children.length !== 2) { + throw Error( + "Table with selector " + + tableSelector + + " isn't a two column table", + ); } - if (tr.children[0].children.length === 0 || - tr.children[0].children[0].textContent === ""){ + if ( + tr.children[0].children.length === 0 || + tr.children[0].children[0].textContent === "" + ) { const p = document.createElement("p"); p.textContent = tr.children[0].textContent; - if(!inverted) p.classList.add("se-highlighted-part") + if (!inverted) p.classList.add("se-highlighted-part"); p.classList.add("se-pair-start"); div.appendChild(p); } else { const element = tr.children[0].children[0]; - const childText = tr.children[0].childNodes[0].textContent + const childText = tr.children[0].childNodes[0].textContent; if (childText !== "") { - element.textContent = `${childText} @ ${element.textContent}` + element.textContent = `${childText} @ ${element.textContent}`; } - if(!inverted) element.classList.add("se-highlighted-part"); + if (!inverted) element.classList.add("se-highlighted-part"); div.append(element); } - if (tr.children[1].children.length === 0){ + if (tr.children[1].children.length === 0) { const p = document.createElement("p"); p.textContent = tr.children[1].textContent; - if(inverted) p.classList.add("se-highlighted-part"); + if (inverted) p.classList.add("se-highlighted-part"); p.classList.add("se-content-part"); div.appendChild(p); - } //sometimes table elements will not also include ::text but also a child element - //aka villate's cellphone when the user is logged on :) + //aka villate's cellphone when the user is logged on :) else { const innerDiv = document.createElement("div"); - if(inverted) innerDiv.classList.add("se-highlighted-part"); + if (inverted) innerDiv.classList.add("se-highlighted-part"); innerDiv.classList.add("se-content-part"); const label = tr.children[0].textContent; - - if (tr.children[1].childNodes[0].nodeValue != ""){ + + if (tr.children[1].childNodes[0].nodeValue != "") { const p = document.createElement("p"); p.style.display = "inline"; - if (label === "Salas: "){ + if (label === "Salas: ") { // ensure all classrooms are present const classrooms = tr.children[1].querySelectorAll("a"); classrooms.forEach((room) => { p.append(room); p.append(", "); - }) + }); p.removeChild(p.lastChild); innerDiv.append(p); } else { - if (label.startsWith("Telemóvel") || label.startsWith("Mobile phone")){ + if ( + label.startsWith("Telemóvel") || + label.startsWith("Mobile phone") + ) { p.textContent = tr.children[1].childNodes[0].nodeValue; innerDiv.append(p); } @@ -126,44 +136,44 @@ export function removeTwoColumnTable(tableSelector, inverted=false, parent=null) } div.append(innerDiv); } - } parent.appendChild(div); table.remove(); return div; } - -export function groupChildrenBySelector(childSelectors, classList){ - if(childSelectors === null) return; - if(childSelectors.length === 0) return; +export function groupChildrenBySelector(childSelectors, classList) { + if (childSelectors === null) return; + if (childSelectors.length === 0) return; const parent = document.querySelector(childSelectors[0]).parentElement; const groupElement = document.createElement("div"); - parent.insertBefore(groupElement, document.querySelector(childSelectors[0])); - if(classList !== null) groupElement.classList.add(...classList); + parent.insertBefore( + groupElement, + document.querySelector(childSelectors[0]), + ); + if (classList !== null) groupElement.classList.add(...classList); childSelectors.forEach((childSelector) => { const child = document.querySelector(childSelector); - if(child === null) return; + if (child === null) return; child.remove(); groupElement.appendChild(child); }); - } /** - * - * @param {RequestInfo | URL} url - * @param {RequestInit | undefined} init - * @returns + * + * @param {RequestInfo | URL} url + * @param {RequestInit | undefined} init + * @returns */ -export async function fetchSigarraPage(url, init=undefined) { +export async function fetchSigarraPage(url, init = undefined) { const r = await fetch(url, init); const decoder = new TextDecoder( - r.headers.get("Content-Type").replace("text/html; charset=", "") + r.headers.get("Content-Type").replace("text/html; charset=", ""), ); const text = decoder.decode(await r.arrayBuffer()); @@ -174,23 +184,25 @@ export async function fetchSigarraPage(url, init=undefined) { return html; } -export function makeTextNodesElements(selector){ - +export function makeTextNodesElements(selector) { const element = document.querySelector(selector); let lastElement = null; - for(let value of [...element.childNodes]){ - if(value.nodeType == Node.TEXT_NODE || value.nodeType == Node.ENTITY_NODE){ - const span = document.createElement('span'); - if(value.textContent == '\n') continue; + for (let value of [...element.childNodes]) { + if ( + value.nodeType == Node.TEXT_NODE || + value.nodeType == Node.ENTITY_NODE + ) { + const span = document.createElement("span"); + if (value.textContent == "\n") continue; span.textContent = value.textContent; - if(lastElement == null){ + if (lastElement == null) { element.prepend(span); } else { - element.insertBefore(span, lastElement.nextSibling) + element.insertBefore(span, lastElement.nextSibling); } - element.removeChild(value) - } else if (value.nodeType == Node.ELEMENT_NODE){ - lastElement = value + element.removeChild(value); + } else if (value.nodeType == Node.ELEMENT_NODE) { + lastElement = value; } } } diff --git a/content-scripts/modules/utilities/popover.ts b/content-scripts/modules/utilities/popover.ts index f4fc65c..f96e6f6 100644 --- a/content-scripts/modules/utilities/popover.ts +++ b/content-scripts/modules/utilities/popover.ts @@ -4,8 +4,7 @@ export const togglePopover = (popoverId: string) => { const menuDivs = document.querySelectorAll('div[id$="-menu"]'); menuDivs.forEach((div) => { - if (div !== popover) - div.classList.remove("se-popover-open"); + if (div !== popover) div.classList.remove("se-popover-open"); }); if (popover.classList.contains("se-popover-open")) { @@ -14,4 +13,4 @@ export const togglePopover = (popoverId: string) => { popover.classList.add("se-popover-open"); } return; -} +}; diff --git a/content-scripts/modules/utilities/removeElement.js b/content-scripts/modules/utilities/removeElement.js index 75d2bb1..414e2b4 100644 --- a/content-scripts/modules/utilities/removeElement.js +++ b/content-scripts/modules/utilities/removeElement.js @@ -1,5 +1,6 @@ // Utility function to remove DOM element export default function removeElement(query) { - const element = document.querySelector(query); - element && element.remove(); + const element = document.querySelector(query); + // eslint-disable-next-line @typescript-eslint/no-unused-expressions + element && element.remove(); } diff --git a/content-scripts/modules/utilities/sigarra.js b/content-scripts/modules/utilities/sigarra.js index 7ea9266..36a3d3a 100644 --- a/content-scripts/modules/utilities/sigarra.js +++ b/content-scripts/modules/utilities/sigarra.js @@ -1,31 +1,29 @@ /** * Checks if user is authenticated - * + * * @returns true if user is authenticated, false otherwise */ export const isAuth = () => { - return document.querySelector('#se-auth-form') == null; + return document.querySelector("#se-auth-form") == null; }; /** * Fetches the user's "up" number - * + * * @returns the "up" number unique to each user */ export const getUP = () => { - if (isAuth()) { - const pfp = document.querySelector("#se-auth-profile-button > img"); + if (isAuth()) { + const pfp = document.querySelector("#se-auth-profile-button > img"); - return pfp.src.substr(-9, pfp.src.length); - } + return pfp.src.substr(-9, pfp.src.length); + } }; /** * @returns the current location path */ export const getPath = () => { - const url = window.location.pathname; - return url.split("/").pop().toLowerCase(); + const url = window.location.pathname; + return url.split("/").pop().toLowerCase(); }; - - diff --git a/content-scripts/modules/utilities/storage.js b/content-scripts/modules/utilities/storage.js index 6e6d20c..1f9e059 100644 --- a/content-scripts/modules/utilities/storage.js +++ b/content-scripts/modules/utilities/storage.js @@ -9,13 +9,14 @@ - Don't need to throttle */ export const getStorage = async (k) => { - const promise = new Promise((resolve, _reject) => { - const storageKey = Array.isArray(k) ? k : [k]; - chrome?.storage?.local.get(storageKey, (data) => { - return resolve(Array.isArray(k) ? data : data[k]); + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const promise = new Promise((resolve, _reject) => { + const storageKey = Array.isArray(k) ? k : [k]; + chrome?.storage?.local.get(storageKey, (data) => { + return resolve(Array.isArray(k) ? data : data[k]); + }); }); - }); - return promise; + return promise; }; /*-- @@ -27,10 +28,11 @@ export const getStorage = async (k) => { - 60000 ms / 120 operations = 500 ms/operation --*/ export const setStorage = async (kv) => { - const promise = new Promise((resolve, _reject) => { - chrome?.storage?.local.set(kv, () => { - return resolve(kv); + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const promise = new Promise((resolve, _reject) => { + chrome?.storage?.local.set(kv, () => { + return resolve(kv); + }); }); - }); - return promise; + return promise; }; diff --git a/content-scripts/modules/utilities/throttle.js b/content-scripts/modules/utilities/throttle.js index 24cdba8..6a1274b 100644 --- a/content-scripts/modules/utilities/throttle.js +++ b/content-scripts/modules/utilities/throttle.js @@ -6,22 +6,24 @@ }, 1000) --*/ export default function throttle(func, limit) { - let lastFunc; - let lastRan; - return function () { - const context = this; - const args = arguments; - if (!lastRan) { - func.apply(context, args); - lastRan = Date.now(); - } else { - clearTimeout(lastFunc); - lastFunc = setTimeout(function () { - if (Date.now() - lastRan >= limit) { - func.apply(context, args); - lastRan = Date.now(); + let lastFunc; + let lastRan; + return function () { + const args = arguments; + if (!lastRan) { + func.apply(this, args); + lastRan = Date.now(); + } else { + clearTimeout(lastFunc); + lastFunc = setTimeout( + function () { + if (Date.now() - lastRan >= limit) { + func.apply(this, args); + lastRan = Date.now(); + } + }, + limit - (Date.now() - lastRan), + ); } - }, limit - (Date.now() - lastRan)); - } - }; + }; } diff --git a/content-scripts/pages/class_page.js b/content-scripts/pages/class_page.js index 43767a8..240833a 100644 --- a/content-scripts/pages/class_page.js +++ b/content-scripts/pages/class_page.js @@ -3,8 +3,8 @@ import { getPath } from "../modules/utilities/sigarra"; const removeExtras = () => { document.querySelector("#conteudoinner > h2").remove(); - document.querySelectorAll("#conteudoinner br").forEach( x => x.remove()); -} + document.querySelectorAll("#conteudoinner br").forEach((x) => x.remove()); +}; const titleClick = (table, title) => { if (title.dataset.expand == "true") { @@ -14,7 +14,7 @@ const titleClick = (table, title) => { title.dataset.expand = "true"; table.style.height = "100%"; } -} +}; const createPhotosDialog = async (title, index) => { const dialog = document.createElement("dialog"); @@ -29,17 +29,17 @@ const createPhotosDialog = async (title, index) => { dialog.id = "photosDialog" + index; closeButton.classList.add("closeDialog"); closeButton.classList.add("ri-close-line"); - wrapper.classList.add("dialogContentWrapper") + wrapper.classList.add("dialogContentWrapper"); closeButton.addEventListener("click", () => { dialog.close(); - }) + }); wrapper.appendChild(closeButton); wrapper.appendChild(table); dialog.appendChild(wrapper); return dialog; -} +}; const createPhotosButton = (icon, dialog) => { const button = document.createElement("span"); @@ -52,22 +52,25 @@ const createPhotosButton = (icon, dialog) => { }); return button; -} +}; const getPhotosLink = (title) => { return title.children[2].href; -} +}; -const editTitle = async (title, table, dialog, enrolled, enrolledText) => { +const editTitle = async (title, table, dialog, enrolled, enrolledText) => { const titleText = document.createElement("h3"); const enrolledQnt = document.createElement("h3"); const leftSide = document.createElement("div"); const chevron = document.createElement("span"); chevron.classList.add("ri-arrow-up-s-line", "rightChevron"); leftSide.classList.add("titleContent"); - + const titleContent = title.children[0]; - const className = titleContent.innerText.replaceAll(String.fromCharCode(160), ''); + const className = titleContent.innerText.replaceAll( + String.fromCharCode(160), + "", + ); const classLinks = titleContent.children; titleText.classList.add("classTitle"); @@ -75,34 +78,45 @@ const editTitle = async (title, table, dialog, enrolled, enrolledText) => { titleText.innerText = className; leftSide.appendChild(classLinks[0]); // email button - + const photosButton = createPhotosButton(classLinks[1].children[0], dialog); // photos button leftSide.appendChild(photosButton); - + enrolledQnt.classList.add("classTitle"); enrolledQnt.innerText = `${enrolled} ${enrolledText.toLowerCase()}`; - + title.appendChild(leftSide); title.appendChild(chevron); leftSide.appendChild(enrolledQnt); titleContent.remove(); title.addEventListener("click", () => titleClick(table, title)); -} +}; /** - * + * * @param {Element} enrolledTable * */ const groupClasses = async (enrolledTable) => { const parent = document.querySelector("#conteudoinner"); - let titleIndex = 5, tableIndex = 6, classIndex = 0, enrolledIndex = 2; - let title = document.querySelector(`#conteudoinner > h3:nth-child(${titleIndex})`); - let enrolled = enrolledTable.querySelector(`td.l:nth-child(${enrolledIndex})`).textContent; - let enrolledText = enrolledTable.querySelector("tbody > tr.d > td.k.t").textContent - let table = document.querySelector(`#conteudoinner > table:nth-child(${tableIndex})`); - + let titleIndex = 5, + tableIndex = 6, + classIndex = 0, + enrolledIndex = 2; + let title = document.querySelector( + `#conteudoinner > h3:nth-child(${titleIndex})`, + ); + let enrolled = enrolledTable.querySelector( + `td.l:nth-child(${enrolledIndex})`, + ).textContent; + let enrolledText = enrolledTable.querySelector( + "tbody > tr.d > td.k.t", + ).textContent; + let table = document.querySelector( + `#conteudoinner > table:nth-child(${tableIndex})`, + ); + while (title || table) { const groupElement = document.createElement("section"); const tableWrapperElement = document.createElement("div"); @@ -113,7 +127,7 @@ const groupClasses = async (enrolledTable) => { groupElement.classList.add("classWrapper"); tableWrapperElement.classList.add("tableWrapper"); titleWrapperElement.classList.add("titleWrapper"); - + title.remove(); table.remove(); @@ -122,8 +136,14 @@ const groupClasses = async (enrolledTable) => { groupElement.appendChild(titleWrapperElement); groupElement.appendChild(tableWrapperElement); groupElement.appendChild(photosDialog); - - editTitle(titleWrapperElement, tableWrapperElement, photosDialog, enrolled, enrolledText); + + editTitle( + titleWrapperElement, + tableWrapperElement, + photosDialog, + enrolled, + enrolledText, + ); titleWrapperElement.dataset.expand = "true"; titleIndex++; @@ -131,18 +151,26 @@ const groupClasses = async (enrolledTable) => { classIndex++; enrolledIndex++; - title = document.querySelector(`#conteudoinner > h3:nth-child(${titleIndex})`); - table = document.querySelector(`#conteudoinner > table:nth-child(${tableIndex})`); - enrolled = enrolledTable.querySelector(`td.l:nth-child(${enrolledIndex})`).textContent; + title = document.querySelector( + `#conteudoinner > h3:nth-child(${titleIndex})`, + ); + table = document.querySelector( + `#conteudoinner > table:nth-child(${tableIndex})`, + ); + enrolled = enrolledTable.querySelector( + `td.l:nth-child(${enrolledIndex})`, + ).textContent; } -} +}; export const classPage = () => { const path = getPath(); - if(!path.includes("it_listagem.lista_turma_disciplina")) return; + if (!path.includes("it_listagem.lista_turma_disciplina")) return; removeExtras(); - const enrolledTable = document.querySelector("#conteudoinner > table:nth-child(5)"); + const enrolledTable = document.querySelector( + "#conteudoinner > table:nth-child(5)", + ); enrolledTable.remove(); groupClasses(enrolledTable); -} \ No newline at end of file +}; diff --git a/content-scripts/pages/course_unit_page.js b/content-scripts/pages/course_unit_page.js index 20e0e3b..b69f421 100644 --- a/content-scripts/pages/course_unit_page.js +++ b/content-scripts/pages/course_unit_page.js @@ -1,14 +1,25 @@ import { makeSigarraExpandableCard } from "../modules/expandable-card"; -import { groupSectionTitleAndContent, makeTextNodesElements, removeTwoColumnTable } from "../modules/utilities/pageUtils"; +import { + groupSectionTitleAndContent, + makeTextNodesElements, + // removeTwoColumnTable, +} from "../modules/utilities/pageUtils"; export const courseUnitPage = () => { - if (!document.location.href.toLowerCase().includes("ucurr_geral.ficha_uc_view")) { + if ( + !document.location.href + .toLowerCase() + .includes("ucurr_geral.ficha_uc_view") + ) { return; } makeTextNodesElements("#conteudoinner"); - groupSectionTitleAndContent("#conteudoinner", ["se-card", "se-expandable-card"]); + groupSectionTitleAndContent("#conteudoinner", [ + "se-card", + "se-expandable-card", + ]); makeSigarraExpandableCard([".se-group-title"]); //TODO (luisd): make removeTwoColumnTable return an element and maybe add an class/id //in order to order it later //removeTwoColumnTable("table.formulario:nth-child(8)"); -}; \ No newline at end of file +}; diff --git a/content-scripts/pages/profile_page.js b/content-scripts/pages/profile_page.js index e7971ee..663ea92 100644 --- a/content-scripts/pages/profile_page.js +++ b/content-scripts/pages/profile_page.js @@ -1,4 +1,4 @@ -import { removeTwoColumnTable } from "../modules/utilities/pageUtils"; +// import { removeTwoColumnTable } from "../modules/utilities/pageUtils"; import { getUP } from "../modules/utilities/sigarra"; //this is are all pages AFAIK that contain an profile row @@ -9,126 +9,140 @@ const profileRowPages = [ "fest_geral.ucurr_inscricoes_list", "fest_geral.estatutos_regimes_view", "fest_geral.info_ingresso_view", - "fest_geral.info_pessoal_completa_view" + "fest_geral.info_pessoal_completa_view", ]; -const currentSearchParams = (new URL(document.URL)).searchParams; +const currentSearchParams = new URL(document.URL).searchParams; /** - * + * * @returns string */ -function getStudentName(){ - return document.querySelector('.estudante-info-nome').textContent.trim(); +// eslint-disable-next-line @typescript-eslint/no-unused-vars +function getStudentName() { + return document.querySelector(".estudante-info-nome").textContent.trim(); } /** - * - * @param {Element} element + * + * @param {Element} element */ function removeAtSign(element) { - const atSign = element.querySelector('span:nth-child(2) > a:nth-child(1) > span:nth-child(2)'); - atSign.parentElement.insertBefore(document.createTextNode('@'), atSign); + const atSign = element.querySelector( + "span:nth-child(2) > a:nth-child(1) > span:nth-child(2)", + ); + atSign.parentElement.insertBefore(document.createTextNode("@"), atSign); atSign.remove(); - element.querySelector('span:nth-child(2) > a:nth-child(1) > img:nth-child(1)').remove(); + element + .querySelector("span:nth-child(2) > a:nth-child(1) > img:nth-child(1)") + .remove(); } /** - * - * @param {Element} element + * + * @param {Element} element */ async function removeTitleRedudancy(element) { - - if(getUP() == currentSearchParams.get("pv_num_unico") && - document.location.href.toLowerCase().includes("fest_geral.cursos_list")){ - + if ( + getUP() == currentSearchParams.get("pv_num_unico") && + document.location.href.toLowerCase().includes("fest_geral.cursos_list") + ) { element.textContent = "O teu perfil"; return; } - element.textContent = element.textContent.split('-')[0].trim() + element.textContent = element.textContent.split("-")[0].trim(); } export const changeProfileRow = () => { const hasProfileRow = profileRowPages .map((value) => document.location.href.toLowerCase().includes(value)) .reduce((prev, curr) => prev || curr); - if (!hasProfileRow){ + if (!hasProfileRow) { return; } // first we change the h1, because it always repeats the student's full name - const h1 = document.querySelector('#conteudoinner > h1:nth-child(3)'); - if(h1 !== null){ + const h1 = document.querySelector("#conteudoinner > h1:nth-child(3)"); + if (h1 !== null) { removeTitleRedudancy(h1); } - const personalInfo = document.querySelector('#infopessoalh') - if(personalInfo !== null){ + const personalInfo = document.querySelector("#infopessoalh"); + if (personalInfo !== null) { personalInfo.remove(); } - const studentPhoto = document.querySelector('.estudante-foto'); - studentPhoto.classList.add('se-student-photo'); + const studentPhoto = document.querySelector(".estudante-foto"); + studentPhoto.classList.add("se-student-photo"); - const studentName = document.querySelector('.estudante-info-nome'); - const studentUP = document.querySelector('.estudante-info-numero'); - const newStudentUP = document.createElement('p'); + const studentName = document.querySelector(".estudante-info-nome"); + const studentUP = document.querySelector(".estudante-info-numero"); + const newStudentUP = document.createElement("p"); newStudentUP.textContent = studentUP.textContent; - const studentInstitutionalEmail = document.querySelector('.email-institucional'); - const studentAlternativeEmail = document.querySelector('.email-alternativo'); - const studentWebPage = document.querySelector('.pagina-pessoal'); + const studentInstitutionalEmail = document.querySelector( + ".email-institucional", + ); + const studentAlternativeEmail = + document.querySelector(".email-alternativo"); + const studentWebPage = document.querySelector(".pagina-pessoal"); - const oldScheduleRow = document.querySelector('.container-fluid'); - const newScheduleRow = document.createElement('div'); + const oldScheduleRow = document.querySelector(".container-fluid"); + const newScheduleRow = document.createElement("div"); newScheduleRow.classList.add("se-profile-row"); newScheduleRow.append(studentPhoto); - const profileInfo = document.createElement('div'); - profileInfo.classList.add('se-profile-info'); + const profileInfo = document.createElement("div"); + profileInfo.classList.add("se-profile-info"); - const firstRow = document.createElement('div'); - firstRow.classList.add('se-profile-first-row'); + const firstRow = document.createElement("div"); + firstRow.classList.add("se-profile-first-row"); - const userNameUPRow = document.createElement('div'); + const userNameUPRow = document.createElement("div"); userNameUPRow.append(studentName, newStudentUP); - userNameUPRow.classList.add('se-profile-username-row'); + userNameUPRow.classList.add("se-profile-username-row"); firstRow.append(userNameUPRow); - - const editButton = document.querySelector('.menu-contexto-principal') - if(editButton != null){ - const isInEditPage = location.href.toLowerCase().includes("fest_geral.info_pessoal_completa_view"); - const href = isInEditPage ? "javascript:history.go(-1)" : `fest_geral.info_pessoal_completa_view?pv_num_unico=${getUP()}`; - const a = document.createElement('a'); - a.classList.add('se-profile-edit-button'); + + const editButton = document.querySelector(".menu-contexto-principal"); + if (editButton != null) { + const isInEditPage = location.href + .toLowerCase() + .includes("fest_geral.info_pessoal_completa_view"); + const href = isInEditPage + ? "javascript:history.go(-1)" + : `fest_geral.info_pessoal_completa_view?pv_num_unico=${getUP()}`; + const a = document.createElement("a"); + a.classList.add("se-profile-edit-button"); a.href = href; a.innerHTML = ``; + isInEditPage ? "ri-arrow-go-back-line" : "ri-edit-line" + } ri-xl">`; firstRow.append(a); } profileInfo.append(firstRow); - const emailList = document.createElement('div'); - profileInfo.append(emailList) + const emailList = document.createElement("div"); + profileInfo.append(emailList); removeAtSign(studentInstitutionalEmail); - studentInstitutionalEmail.querySelectorAll('.cursormao').forEach((val) => val.remove()); + studentInstitutionalEmail + .querySelectorAll(".cursormao") + .forEach((val) => val.remove()); emailList.append(studentInstitutionalEmail); - if(studentAlternativeEmail != null) { + if (studentAlternativeEmail != null) { emailList.append(studentAlternativeEmail); removeAtSign(studentAlternativeEmail); } - if(studentWebPage != null) { + if (studentWebPage != null) { const webpageLink = studentWebPage.lastElementChild; - webpageLink.textContent = 'Website'; - webpageLink.classList.add('se-website-button'); + webpageLink.textContent = "Website"; + webpageLink.classList.add("se-website-button"); webpageLink.style.margin = 0; profileInfo.append(webpageLink); } - newScheduleRow.append(profileInfo); @@ -141,34 +155,40 @@ export const changeCourseCards = () => { const couldHaveCards = profileRowPages .map((value) => document.location.href.toLowerCase().includes(value)) .reduce((prev, curr) => prev || curr); - if(!couldHaveCards) return; + if (!couldHaveCards) return; - const cards = Array.from(document.querySelectorAll('.estudante-lista-curso-activo')); - if(cards.length == 0) return; + const cards = Array.from( + document.querySelectorAll(".estudante-lista-curso-activo"), + ); + if (cards.length == 0) return; const hasCardSelected = cards - .map((card) => card.classList.contains('percurso')) + .map((card) => card.classList.contains("percurso")) .reduce((prev, curr) => prev || curr); const modifiedCards = cards.map((card) => { - const active = card.classList.contains('percurso'); + const active = card.classList.contains("percurso"); card.classList = ["se-course-card"]; - const detailsElement = card.querySelector('.estudante-lista-curso-detalhes'); - if(detailsElement != null) { - const url = detailsElement.querySelector('a').href; + const detailsElement = card.querySelector( + ".estudante-lista-curso-detalhes", + ); + if (detailsElement != null) { + const url = detailsElement.querySelector("a").href; detailsElement.remove(); - const parsedUrlParams = new URLSearchParams(url.split('?')[1]) - let festId = parsedUrlParams.get('pv_fest_id') - if(festId === null){ - festId = new URLSearchParams(location.href.split('?')[1]).get('pv_fest_id') - + const parsedUrlParams = new URLSearchParams(url.split("?")[1]); + let festId = parsedUrlParams.get("pv_fest_id"); + if (festId === null) { + festId = new URLSearchParams(location.href.split("?")[1]).get( + "pv_fest_id", + ); } - const a = document.createElement('a'); + const a = document.createElement("a"); a.classList = card.classList; a.classList.add("se-course-card-clickable"); - a.setAttribute('data-course-enrollment-id', festId) - if(active || hasCardSelected == false) a.classList.add('se-course-card-active') + a.setAttribute("data-course-enrollment-id", festId); + if (active || hasCardSelected == false) + a.classList.add("se-course-card-active"); a.append(...card.children); a.href = url; @@ -177,13 +197,14 @@ export const changeCourseCards = () => { return card; }); - const oldCardsList = document.querySelector('.estudantes-caixa-lista-cursos'); - const newCardsList = document.createElement('div'); + const oldCardsList = document.querySelector( + ".estudantes-caixa-lista-cursos", + ); + const newCardsList = document.createElement("div"); newCardsList.classList.add("se-course-card-list"); newCardsList.append(...modifiedCards); - oldCardsList.parentElement.insertBefore(newCardsList, oldCardsList); oldCardsList.remove(); -}; \ No newline at end of file +}; diff --git a/content-scripts/pages/teacher_page.js b/content-scripts/pages/teacher_page.js index 3fb0a4f..308ace2 100644 --- a/content-scripts/pages/teacher_page.js +++ b/content-scripts/pages/teacher_page.js @@ -1,14 +1,17 @@ -import {groupSectionTitleAndContent, groupChildrenBySelector, moveChildrenToAncestor, removeTwoColumnTable} from "../modules/utilities/pageUtils" - +import { + groupSectionTitleAndContent, + groupChildrenBySelector, + moveChildrenToAncestor, + removeTwoColumnTable, +} from "../modules/utilities/pageUtils"; const publicationWebsites = { "authenticus.pt": { icon: "authenticusID.png", text: "Authenticus ID" }, "orcid.org": { icon: "orcid.png", text: "ORCID" }, "cienciavitae.pt": { icon: "cienciaID.png", text: "Ciência ID" }, "publons.com": { icon: "researchID.png", text: "Research-ID" }, - "scopus.com": { icon: "scopus.png", text: "Scopus" } -} - + "scopus.com": { icon: "scopus.png", text: "Scopus" }, +}; export const teacherPage = () => { if (!document.location.href.toLowerCase().includes("func_geral.formview")) { @@ -28,147 +31,163 @@ export const teacherPage = () => { moveChildrenToAncestor(".informacao-pessoal-dados"); moveChildrenToAncestor(".informacao-pessoal-funcoes"); - //we group the page contents to be easier to style to - groupChildrenBySelector([".se-teacher-title-bar", ".tabelasz", ".se-website-button"], - ["se-main-info-content"]); - - groupChildrenBySelector([".informacao-pessoal-dados-foto", ".se-main-info-content"], - ["se-main-info-row"]); - - groupChildrenBySelector([".se-contact-info", ".se-roles", ".se-publication-website-list"], - ["se-extra-information-row"]); + groupChildrenBySelector( + [".se-teacher-title-bar", ".tabelasz", ".se-website-button"], + ["se-main-info-content"], + ); + groupChildrenBySelector( + [".informacao-pessoal-dados-foto", ".se-main-info-content"], + ["se-main-info-row"], + ); + + groupChildrenBySelector( + [".se-contact-info", ".se-roles", ".se-publication-website-list"], + ["se-extra-information-row"], + ); const sectionClasses = [ - ".se-contact-info", - ".se-roles", - ".se-positions", - ".informacao-pessoal-outras" - ] + ".se-contact-info", + ".se-roles", + ".se-positions", + ".informacao-pessoal-outras", + ]; //i hate sigarra, for some reason it nests one table inside each other sectionClasses.forEach(reformatTables); }; -function reformatTables(parentSelector){ +function reformatTables(parentSelector) { let parentElement = document.querySelector(parentSelector); - if (parentElement === null || - parentElement.children.length === 0) return; - const tableList = parentElement.querySelectorAll("table > tbody > tr > td > table"); - + if (parentElement === null || parentElement.children.length === 0) return; + const tableList = parentElement.querySelectorAll( + "table > tbody > tr > td > table", + ); + if (tableList.length !== 0) { - parentElement.querySelector('table').remove(); + parentElement.querySelector("table").remove(); if (tableList.length > 1) { const container = document.createElement("div"); container.classList.add("se-container"); parentElement.appendChild(container); parentElement = container; - }; - for (table of tableList) { + } + for (let table of tableList) { document.querySelector(parentSelector).appendChild(table); - removeTwoColumnTable(`${parentSelector} > table`, true, parentElement); + removeTwoColumnTable( + `${parentSelector} > table`, + true, + parentElement, + ); } - } - else { + } else { const tableSelector = `${parentSelector} > table`; - table = document.querySelector(tableSelector); + const table = document.querySelector(tableSelector); parentElement.appendChild(table); removeTwoColumnTable(tableSelector, true, parentElement); } } -function tagGroupedElements(){ - let contacts = document.querySelector(".informacao-pessoal-dados-dados > div:not(.se-website-button)"); - if(contacts !== null){ - contacts.classList.add("se-contact-info") +function tagGroupedElements() { + let contacts = document.querySelector( + ".informacao-pessoal-dados-dados > div:not(.se-website-button)", + ); + if (contacts !== null) { + contacts.classList.add("se-contact-info"); } else { - contacts = document.querySelector(".informacao-pessoal-dados-dados > table:not(.tabelasz)") - const div = document.createElement("div") - const informacao_pessoal = document.querySelector(".informacao-pessoal-dados-dados") - const h3 = document.createElement("h3") - h3.textContent = "Contactos" - div.append(h3, contacts) - div.classList.add("se-contact-info") - informacao_pessoal.appendChild(div) + contacts = document.querySelector( + ".informacao-pessoal-dados-dados > table:not(.tabelasz)", + ); + const div = document.createElement("div"); + const informacao_pessoal = document.querySelector( + ".informacao-pessoal-dados-dados", + ); + const h3 = document.createElement("h3"); + h3.textContent = "Contactos"; + div.append(h3, contacts); + div.classList.add("se-contact-info"); + informacao_pessoal.appendChild(div); } const roles = document.querySelector(".informacao-pessoal-funcoes"); - if(roles !== null){ - if(roles.childElementCount === 1){ + if (roles !== null) { + if (roles.childElementCount === 1) { roles.children[0].classList.add("se-roles"); - } else if (roles.childElementCount > 1){ + } else if (roles.childElementCount > 1) { roles.children[0].classList.add("se-roles"); roles.children[1].classList.add("se-positions"); } } - } - - -function makeWebsiteButtonIfExists(){ - const websiteIcon = document - .querySelector(".informacao-pessoal-dados-dados > table > tbody > tr:nth-child(1) > td:nth-child(2) > a"); - const informationElement = document.querySelector(".informacao-pessoal-dados-dados") - if(websiteIcon === null) return; +function makeWebsiteButtonIfExists() { + const websiteIcon = document.querySelector( + ".informacao-pessoal-dados-dados > table > tbody > tr:nth-child(1) > td:nth-child(2) > a", + ); + const informationElement = document.querySelector( + ".informacao-pessoal-dados-dados", + ); + if (websiteIcon === null) return; const websiteLink = websiteIcon.href; const websiteButton = document.createElement("a"); websiteButton.classList.add("se-website-button"); - websiteButton.href = websiteLink + websiteButton.href = websiteLink; websiteButton.textContent = "Website"; informationElement.append(websiteButton); websiteIcon.remove(); - - } - - function makePublicationWebsiteButtons() { - const tabelasz = document.querySelector(".tabelasz > tbody") - const informacaoPessoal = document.querySelector(".informacao-pessoal-dados"); - const websiteList = document.createElement("div") - websiteList.classList.add("se-publication-website-list") - const listOfRows = [...tabelasz.children] + const tabelasz = document.querySelector(".tabelasz > tbody"); + const informacaoPessoal = document.querySelector( + ".informacao-pessoal-dados", + ); + const websiteList = document.createElement("div"); + websiteList.classList.add("se-publication-website-list"); + const listOfRows = [...tabelasz.children]; listOfRows.forEach((row) => { - const linkElement = row.querySelector("td:nth-child(2) > a") + const linkElement = row.querySelector("td:nth-child(2) > a"); if (linkElement === null) { return; } - const link = linkElement.href + const link = linkElement.href; let found = false; - for (website of Object.keys(publicationWebsites)) { + for (let website of Object.keys(publicationWebsites)) { if (link.includes(website)) { - found = true - const image = document.createElement("img") - image.src = chrome.runtime.getURL("images/publicationWebsiteLogo/" + - publicationWebsites[website].icon); - const text = document.createElement("p") - text.textContent = publicationWebsites[website].text - - const a = document.createElement("a") - a.appendChild(image) - a.appendChild(text) - a.classList.add("se-publication-website-button") - a.href = link - websiteList.appendChild(a) + found = true; + const image = document.createElement("img"); + image.src = chrome.runtime.getURL( + "images/publicationWebsiteLogo/" + + publicationWebsites[website].icon, + ); + const text = document.createElement("p"); + text.textContent = publicationWebsites[website].text; + + const a = document.createElement("a"); + a.appendChild(image); + a.appendChild(text); + a.classList.add("se-publication-website-button"); + a.href = link; + websiteList.appendChild(a); break; } } - if (found) row.remove() - }) - - - informacaoPessoal.appendChild(websiteList) + if (found) row.remove(); + }); + informacaoPessoal.appendChild(websiteList); } function moveResearchSection() { - const researchSection = document.querySelector(".informacao-pessoal-outras"); - const informacaoPessoal = document.querySelector(".informacao-pessoal-dados"); + const researchSection = document.querySelector( + ".informacao-pessoal-outras", + ); + const informacaoPessoal = document.querySelector( + ".informacao-pessoal-dados", + ); researchSection.remove(); const rolesSection = document.querySelector(".informacao-pessoal-funcoes"); informacaoPessoal.insertBefore(researchSection, rolesSection); @@ -180,9 +199,12 @@ function makeTitleBar() { const titleElement = document.querySelectorAll("#conteudoinner > h1")[1]; const title = titleElement.textContent; titleElement.remove(); - const siglaRow = document.querySelector(".tabelasz > tbody:nth-child(1) > tr:nth-child(2)"); - const sigla = document.querySelector(".tabelasz > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2) > b:nth-child(1)") - .textContent; + const siglaRow = document.querySelector( + ".tabelasz > tbody:nth-child(1) > tr:nth-child(2)", + ); + const sigla = document.querySelector( + ".tabelasz > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2) > b:nth-child(1)", + ).textContent; siglaRow.remove(); const titleBar = document.createElement("div"); @@ -197,6 +219,5 @@ function makeTitleBar() { titleBar.appendChild(newTitle); titleBar.appendChild(newSigla); - informacaoPessoal.prepend(titleBar); } diff --git a/content-scripts/types.ts b/content-scripts/types.ts index 1b70454..7d22d29 100644 --- a/content-scripts/types.ts +++ b/content-scripts/types.ts @@ -2,4 +2,4 @@ export type AuthSession = { number: string; name: string; hasNotifications: boolean; -} \ No newline at end of file +}; diff --git a/css/card.css b/css/card.css index 13ccd99..18f83a7 100644 --- a/css/card.css +++ b/css/card.css @@ -1,10 +1,10 @@ -.se-card{ - background-color: #F4F4F4; +.se-card { + background-color: #f4f4f4; border-radius: 8px; padding: 0.5em 1em; margin: 2em 0em; } -.se-card :is(h2,h3,h4) { +.se-card :is(h2, h3, h4) { margin: 0; -} \ No newline at end of file +} diff --git a/css/classPage.css b/css/classPage.css index f0bb9f5..31c2375 100644 --- a/css/classPage.css +++ b/css/classPage.css @@ -74,10 +74,11 @@ dialog[id^="photosDialog"]::backdrop { transform: rotate(0deg); } -.tabela tr.k, .tabela td.k { +.tabela tr.k, +.tabela td.k { background-image: none; } -.tabela tr:hover { +.tabela tr:hover { border: none !important; -} \ No newline at end of file +} diff --git a/css/custom.css b/css/custom.css index 4d78855..3e640d2 100644 --- a/css/custom.css +++ b/css/custom.css @@ -1,14 +1,14 @@ -@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); +@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); /* Página: Inscrições nas Turmas */ -ul[id^="list_"]{ +ul[id^="list_"] { opacity: 0; visibility: hidden; overflow: hidden; height: 0; margin: 0; - + display: grid !important; flex-wrap: wrap; gap: 1rem; @@ -16,14 +16,16 @@ ul[id^="list_"]{ padding: 0; margin: 0; - transition: opacity 0.3s ease-in, height 0.2s ease-out; + transition: + opacity 0.3s ease-in, + height 0.2s ease-out; } -ul[id^="list_"] br{ +ul[id^="list_"] br { display: none; } -ul[id^="list_"] > li{ +ul[id^="list_"] > li { list-style-type: none; width: fit-content; background: whitesmoke; @@ -32,17 +34,17 @@ ul[id^="list_"] > li{ width: 100%; } -ul[id^="list_"] li ul{ +ul[id^="list_"] li ul { padding: 0; padding-top: 0.4rem; display: flex; } -ul[id^="list_"] li ul br{ +ul[id^="list_"] li ul br { display: none; } -ul[id^="list_"] li ul li{ +ul[id^="list_"] li ul li { padding: 0; display: flex; flex-wrap: wrap; @@ -50,6 +52,6 @@ ul[id^="list_"] li ul li{ padding-right: 1em; } -ul[id^="list_"] li ul li a{ +ul[id^="list_"] li ul li a { cursor: pointer; -} \ No newline at end of file +} diff --git a/css/expandableCard.css b/css/expandableCard.css index d56d416..c6eda1c 100644 --- a/css/expandableCard.css +++ b/css/expandableCard.css @@ -1,22 +1,22 @@ -.se-card-header{ +.se-card-header { display: flex; flex-direction: row; justify-content: space-between; align-items: center; } -.se-card-expand-button{ +.se-card-expand-button { background: inherit !important; border: none !important; padding: none !important; margin: none !important; } -.se-card-expand-button:hover{ +.se-card-expand-button:hover { background: inherit !important; } -.se-expandable-card-wrapper{ +.se-expandable-card-wrapper { overflow: hidden; transition: max-height 300ms ease-in-out; -} \ No newline at end of file +} diff --git a/css/homepage.css b/css/homepage.css index e511f2a..b7947ba 100644 --- a/css/homepage.css +++ b/css/homepage.css @@ -16,7 +16,7 @@ p.flex-caption a { font-weight: bold; text-align: center; word-spacing: 0.7em; - font-family: 'Kanit', sans-serif !important; + font-family: "Kanit", sans-serif !important; } .ajuda-contextual { @@ -70,15 +70,18 @@ p.flex-caption a { width: 85%; } -.col-md-7 .novo-portlet-noticias p a>span { +.col-md-7 .novo-portlet-noticias p a > span { float: right; - background-image: linear-gradient(rgb(110, 110, 110), rgb(130, 130, 130)) !important; + background-image: linear-gradient( + rgb(110, 110, 110), + rgb(130, 130, 130) + ) !important; background-size: 100% 200% !important; background-position: initial !important; transition: background-position 0.3s; } -.col-md-7 .novo-portlet-noticias p a>span:hover { +.col-md-7 .novo-portlet-noticias p a > span:hover { background-position: 0 -100% !important; } @@ -89,7 +92,6 @@ p.flex-caption a { background-size: 100% 200%; transition: background-position 0.3s; border-radius: 8px !important; - } .mais-noticias a:link { @@ -110,7 +112,6 @@ p.mais-noticias a:hover { background-position: 0 -100%; } - /* Calendar and Events*/ .calendario-inicio input[type="submit"] { @@ -118,7 +119,10 @@ p.mais-noticias a:hover { margin: 0; text-transform: uppercase; color: white !important; - background-image: linear-gradient(rgb(140, 45, 25), rgb(165, 45, 25)) !important; + background-image: linear-gradient( + rgb(140, 45, 25), + rgb(165, 45, 25) + ) !important; background-size: 100% 200%; transition: background-position 0.3s; border-radius: 8px; @@ -221,16 +225,16 @@ p.mais-eventos a:hover { } } -.row>div.col-md-7, -.row>div.col-md-5 { - width: auto +.row > div.col-md-7, +.row > div.col-md-5 { + width: auto; } -.row>div.col-md-7 { +.row > div.col-md-7 { min-width: 450px; } /* Footer */ .container-fluid:last-child { display: none; -} \ No newline at end of file +} diff --git a/css/icons.css b/css/icons.css index 9bf0423..3265b35 100644 --- a/css/icons.css +++ b/css/icons.css @@ -35,11 +35,11 @@ } #infopessoalh:not(.expandido) .colapsar { - display: none + display: none; } #infopessoalh.expandido .expandir { - display: none + display: none; } th:after { @@ -49,12 +49,12 @@ th:after { padding-left: 0.3rem; } -th.asc:after{ +th.asc:after { content: "\f160"; font-weight: bold; } -th.desc:after{ +th.desc:after { content: "\f15f"; font-weight: bold; } diff --git a/css/profilePage.css b/css/profilePage.css index 8554d14..c1d7bc7 100644 --- a/css/profilePage.css +++ b/css/profilePage.css @@ -1,5 +1,4 @@ - -.se-profile-row{ +.se-profile-row { display: flex; flex-direction: row; justify-content: flex-start; @@ -7,14 +6,14 @@ gap: 2em; } -.se-student-photo{ +.se-student-photo { float: none !important; padding: 0em !important; - white-space: normal !important; + white-space: normal !important; max-width: 150px; } -.se-student-photo > img{ +.se-student-photo > img { border-radius: 8px; } @@ -31,7 +30,7 @@ gap: 1em; } -.se-profile-info{ +.se-profile-info { flex-grow: 1; display: flex; flex-direction: column; @@ -51,19 +50,18 @@ .se-course-card { flex-basis: 25em; - background-color: #F4F4F4; + background-color: #f4f4f4; border-radius: 8px; padding: 1em; } -@container card-list (width < 25em){ +@container card-list (width < 25em) { .se-course-card { - flex-basis: 100% + flex-basis: 100%; } } - -.se-course-card-clickable{ +.se-course-card-clickable { text-decoration: none !important; color: inherit !important; } @@ -74,35 +72,39 @@ gap: 1rem; } -.se-course-card > .estudante-lista-curso-nome > .se-course-star { +.se-course-card > .estudante-lista-curso-nome > .se-course-star { font-size: 1.5rem; } -.se-course-card > .estudante-lista-curso-nome > .se-course-star.se-favorite-course:hover{ +.se-course-card + > .estudante-lista-curso-nome + > .se-course-star.se-favorite-course:hover { color: rgb(219, 146, 9); } -.se-course-card > .estudante-lista-curso-nome > .se-course-star.ri-star-fill { +.se-course-card > .estudante-lista-curso-nome > .se-course-star.ri-star-fill { color: rgb(236, 156, 7); } -.se-course-card-clickable > .estudante-lista-curso-nome > a{ +.se-course-card-clickable > .estudante-lista-curso-nome > a { display: block; } -.se-course-card-clickable:hover, .se-course-card-clickable:active, .se-course-card-clickable:focus{ +.se-course-card-clickable:hover, +.se-course-card-clickable:active, +.se-course-card-clickable:focus { color: inherit !important; background-color: #dddada; opacity: 1 !important; transition: opacity 0.2s ease-out; } -.se-course-card-clickable:not(.se-course-card-active){ +.se-course-card-clickable:not(.se-course-card-active) { opacity: 0.5; transition: opacity 0.2s ease-out; } -.se-profile-first-row{ +.se-profile-first-row { width: 100%; display: flex; flex-direction: row; @@ -113,4 +115,4 @@ .se-profile-edit-button { text-decoration: none !important; color: initial !important; -} \ No newline at end of file +} diff --git a/css/simpler.css b/css/simpler.css index 9037b64..ac7692d 100644 --- a/css/simpler.css +++ b/css/simpler.css @@ -1,4 +1,4 @@ -@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap'); +@import url("https://fonts.googleapis.com/css2?family=Kanit&display=swap"); /* Usefull selectors examples: @@ -23,7 +23,8 @@ } /* Fix accessibility not being actually accessible <.< */ -.acessibilidade, .acs { +.acessibilidade, +.acs { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; @@ -36,16 +37,15 @@ /* Smoother scroll */ html { - scroll-behavior: smooth; + scroll-behavior: smooth; } /* Disable smooth scrolling when users have prefers-reduced-motion enabled */ - @media screen and (prefers-reduced-motion: reduce) { - html { - scroll-behavior: auto; - } - } - +@media screen and (prefers-reduced-motion: reduce) { + html { + scroll-behavior: auto; + } +} /* ----------------- ALL PAGES ---------------- */ @@ -77,7 +77,9 @@ body:is(body) { border-radius: 8px !important; border: none; text-decoration: none !important; - transition: background-color 0.2s, color 0.2s; + transition: + background-color 0.2s, + color 0.2s; } .se-button:is(:hover, :focus):not(:disabled) { @@ -204,7 +206,7 @@ body:is(body) { #se-header-links { display: flex; flex-direction: row; - gap: max(0em, calc((100vw - 900px) * .2)); + gap: max(0em, calc((100vw - 900px) * 0.2)); align-items: stretch; justify-content: space-around; align-self: stretch; @@ -236,7 +238,7 @@ body:is(body) { top: 4em; width: max-content; max-height: calc(100vh - 5em); - padding-block: .5em; + padding-block: 0.5em; overflow-y: auto !important; } @@ -279,14 +281,13 @@ body:is(body) { } .se-auth-invalid { - border: 1px solid #cc0000 !important; - + border: 1px solid #cc0000 !important; } #se-auth-wrong-details { - color: #cc0000; - font-weight: bold; - font-size: 0.8em; + color: #cc0000; + font-weight: bold; + font-size: 0.8em; } #se-auth-close-button, @@ -311,7 +312,7 @@ body:is(body) { } .se-popover-open { - display: flex !important; + display: flex !important; } #se-auth-form { @@ -323,7 +324,8 @@ body:is(body) { padding: 1em; } -#se-auth-profile-menu, #se-auth-notifications-menu { +#se-auth-profile-menu, +#se-auth-notifications-menu { top: 4.5em; right: 1em; width: 16em; @@ -426,7 +428,7 @@ body:is(body) { #se-auth-notifications-header label { flex: 1; - padding: .5em; + padding: 0.5em; display: flex; align-items: center; justify-content: center; @@ -437,8 +439,12 @@ body:is(body) { background-color: #f0f0f0; } -#se-auth-new-notifications-radio:checked ~ #se-auth-notifications-header label[for="se-auth-new-notifications-radio"], -#se-auth-read-notifications-radio:checked ~ #se-auth-notifications-header label[for="se-auth-read-notifications-radio"] { +#se-auth-new-notifications-radio:checked + ~ #se-auth-notifications-header + label[for="se-auth-new-notifications-radio"], +#se-auth-read-notifications-radio:checked + ~ #se-auth-notifications-header + label[for="se-auth-read-notifications-radio"] { font-weight: bold; } @@ -450,12 +456,13 @@ body:is(body) { .se-notification { display: grid; - grid-template: "title button" auto - "time button" auto - / 1fr auto; + grid-template: + "title button" auto + "time button" auto + / 1fr auto; align-items: center; - gap: .25em; - padding: .5em; + gap: 0.25em; + padding: 0.5em; border-bottom: 1px solid #d1d1d1; } @@ -470,7 +477,7 @@ body:is(body) { .se-notification-time { grid-area: time; - font-size: .8em; + font-size: 0.8em; } .se-notification-button { @@ -487,8 +494,12 @@ body:is(body) { margin: 0; } -#se-auth-new-notifications-radio:checked ~ #se-auth-notifications-list #se-auth-new-notifications:not(:empty), -#se-auth-read-notifications-radio:checked ~ #se-auth-notifications-list #se-auth-read-notifications:not(:empty) { +#se-auth-new-notifications-radio:checked + ~ #se-auth-notifications-list + #se-auth-new-notifications:not(:empty), +#se-auth-read-notifications-radio:checked + ~ #se-auth-notifications-list + #se-auth-read-notifications:not(:empty) { display: flex; } @@ -501,16 +512,27 @@ body:is(body) { flex-direction: column; align-items: center; justify-content: center; - gap: .5em; + gap: 0.5em; padding: 1em; } -#se-auth-new-notifications-radio:checked ~ #se-auth-notifications-list #se-auth-new-notifications:empty ~ #se-auth-empty-notifications, -#se-auth-read-notifications-radio:checked ~ #se-auth-notifications-list #se-auth-read-notifications:empty ~ #se-auth-empty-notifications { +#se-auth-new-notifications-radio:checked + ~ #se-auth-notifications-list + #se-auth-new-notifications:empty + ~ #se-auth-empty-notifications, +#se-auth-read-notifications-radio:checked + ~ #se-auth-notifications-list + #se-auth-read-notifications:empty + ~ #se-auth-empty-notifications { display: flex; } -.se-loading > :is(#se-auth-new-notifications, #se-auth-read-notifications, #se-auth-empty-notifications) { +.se-loading + > :is( + #se-auth-new-notifications, + #se-auth-read-notifications, + #se-auth-empty-notifications + ) { display: none !important; } @@ -537,7 +559,7 @@ body:is(body) { } #barralocalizacao { - display: none; + display: none; } #colunaextra img.destaque { @@ -545,544 +567,563 @@ body:is(body) { } #rodape { - display: none; + display: none; } /* ----------------- CALENDAR ----------------- */ table.calendtable td.calendevent { - border-bottom: 0.2em solid rgb(140, 45, 25) !important; + border-bottom: 0.2em solid rgb(140, 45, 25) !important; } table.calendtable .calendeventsel { - background-color: rgb(140, 45, 25) !important; - border-color: rgb(140, 45, 25) !important; - color: white !important; - border-radius: 0.5em + background-color: rgb(140, 45, 25) !important; + border-color: rgb(140, 45, 25) !important; + color: white !important; + border-radius: 0.5em; } .calendevent a { - text-decoration: none !important; - color: black !important; + text-decoration: none !important; + color: black !important; } .calendeventsel a { - color: white !important; - text-decoration: none !important; - font-weight: bold; + color: white !important; + text-decoration: none !important; + font-weight: bold; } .calendevent a:hover, .calendeventsel a:hover, .calendeventsel a:visited { - font-weight: bold; + font-weight: bold; } .calendtable tbody { - line-height: 2em; + line-height: 2em; } - table.calendtable { - background-color: rgb(240, 240, 240) !important; - border: 10px solid rgb(240, 240, 240) !important; - font-family: sans-serif; - border-radius: 0.5em; - min-width: 400px; - border-spacing: 0.5em !important; + background-color: rgb(240, 240, 240) !important; + border: 10px solid rgb(240, 240, 240) !important; + font-family: sans-serif; + border-radius: 0.5em; + min-width: 400px; + border-spacing: 0.5em !important; } table.calendtable td { - color: black !important; - background-color: rgb(240, 240, 240) !important; + color: black !important; + background-color: rgb(240, 240, 240) !important; } table.calendtable th { - color: black !important; - background-color: rgb(240, 240, 240) !important; + color: black !important; + background-color: rgb(240, 240, 240) !important; } table.calendtable tbody { - line-height: 2em; + line-height: 2em; } table.calendtable .calendfdssel { - text-align: center !important; + text-align: center !important; } -table.calendtable:first-child tr:first-child>td:nth-child(2) { - /* Aligns calendar year */ - text-align: center !important; +table.calendtable:first-child tr:first-child > td:nth-child(2) { + /* Aligns calendar year */ + text-align: center !important; } - /* ----------------- POPUP ----------------- */ -.popup > table > tbody > tr:first-child, .popup > table > tbody > tr:last-child{ - display: none; +.popup > table > tbody > tr:first-child, +.popup > table > tbody > tr:last-child { + display: none; } -.popup td.b{ - display: none; +.popup td.b { + display: none; } -.popup td.body{ - padding: 1.5rem !important; - border: 1px solid #b0b0b0; - box-shadow: 0px 25px 102px -44px rgb(87 87 87); - border: 0; +.popup td.body { + padding: 1.5rem !important; + border: 1px solid #b0b0b0; + box-shadow: 0px 25px 102px -44px rgb(87 87 87); + border: 0; } -.popup td.body > .content > h2{ - margin: 0 0 1em 0; +.popup td.body > .content > h2 { + margin: 0 0 1em 0; } -.popup td.body > .footer{ - display: none; +.popup td.body > .footer { + display: none; } -#facebox{ - position: fixed !important; - top: 50% !important; - left: 50% !important; - transform: translate(-50%, -50%); +#facebox { + position: fixed !important; + top: 50% !important; + left: 50% !important; + transform: translate(-50%, -50%); - max-height: 90vh; - overflow: auto; - border-radius: 8px; + max-height: 90vh; + overflow: auto; + border-radius: 8px; } -#facebox table{ - border-spacing: 0 !important; +#facebox table { + border-spacing: 0 !important; } -#facebox_overlay{ - opacity: 0.3 !important; +#facebox_overlay { + opacity: 0.3 !important; } -body:has(#facebox_overlay){ - overflow-y: hidden; +body:has(#facebox_overlay) { + overflow-y: hidden; } /* ----------------- Conta Corrente Page ----------------- */ /* Status badges */ -.badge{ - padding: 0.2rem 0.5rem; - border: 1px solid; - border-radius: 0.5rem; - width: fit-content; - display: inline-flex; - align-items: center; +.badge { + padding: 0.2rem 0.5rem; + border: 1px solid; + border-radius: 0.5rem; + width: fit-content; + display: inline-flex; + align-items: center; } -.badge::before{ - content: ""; - display: inline-block; - width: 0.5rem; - height: 0.5rem; - border-radius: 50%; - margin-right: 0.5rem; +.badge::before { + content: ""; + display: inline-block; + width: 0.5rem; + height: 0.5rem; + border-radius: 50%; + margin-right: 0.5rem; } -.badge.badge-success{ - border-color: #cce6d5; - background: #effdf4; - color: #368e50; +.badge.badge-success { + border-color: #cce6d5; + background: #effdf4; + color: #368e50; } -.badge.badge-success::before{ - background: #0cb143; +.badge.badge-success::before { + background: #0cb143; } -.badge.badge-pending{ - border-color: #f0eac6; - background: #fefde9; - color: #956e30; +.badge.badge-pending { + border-color: #f0eac6; + background: #fefde9; + color: #956e30; } -.badge.badge-pending::before{ - background: #f2bc30; +.badge.badge-pending::before { + background: #f2bc30; } -.badge.badge-cancelled{ - border-color: #e3e5e6; - background: #f9fafc; - color: #4d535d; +.badge.badge-cancelled { + border-color: #e3e5e6; + background: #f9fafc; + color: #4d535d; } -.badge.badge-cancelled::before{ - background: #8f8f9c; +.badge.badge-cancelled::before { + background: #8f8f9c; } -.badge.badge-danger{ - border-color: #e3c3b9; - background: #fef7f9; - color: #b25943; +.badge.badge-danger { + border-color: #e3c3b9; + background: #fef7f9; + color: #b25943; } -.badge.badge-danger::before{ - background: #fc6a44; +.badge.badge-danger::before { + background: #fc6a44; } -abbr[title]{ - text-decoration: none; - border: none !important; +abbr[title] { + text-decoration: none; + border: none !important; } section.entidade { - display: none; + display: none; } -section.entidade ~ .formulario{ - display: none; +section.entidade ~ .formulario { + display: none; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW ~ .alerta{ - display: none; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW ~ .alerta { + display: none; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW{ - border: none; - padding: 0; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW { + border: none; + padding: 0; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > div.ui-tabs-panel{ - padding: 1rem 0; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > div.ui-tabs-panel { + padding: 1rem 0; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav{ - background: none; - border: none; - display: flex; - flex-wrap: wrap; - gap: 0.7rem; - padding: 0; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav { + background: none; + border: none; + display: flex; + flex-wrap: wrap; + gap: 0.7rem; + padding: 0; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW .ui-tabs-anchor{ - width: 100%; - text-align: center; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW .ui-tabs-anchor { + width: 100%; + text-align: center; } #GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav::before, -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav::after{ - content: ""; - flex: 1 0 100%; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav::after { + content: ""; + flex: 1 0 100%; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav > li{ - border: none; - border-radius: 5px; - cursor: pointer; - flex: 1; - margin: 0; - padding: 0; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav > li { + border: none; + border-radius: 5px; + cursor: pointer; + flex: 1; + margin: 0; + padding: 0; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav > li > a{ - outline-color: #8e2915 !important; - outline-width: 5px !important; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > ul.ui-tabs-nav > li > a { + outline-color: #8e2915 !important; + outline-width: 5px !important; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > .ui-tabs-nav > li > a > em{ - font-style: normal; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW > .ui-tabs-nav > li > a > em { + font-style: normal; } -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW li.ui-tabs-active{ - background: #8c2d19; - color: white; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW li.ui-tabs-active { + background: #8c2d19; + color: white; } #GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW li.ui-tabs-active:hover a:hover, #GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW li.ui-tabs-active a:active, -#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW li.ui-tabs-active a:focus{ - color: white !important; - cursor: pointer; +#GPAG_CCORRENTE_GERAL_CONTA_CORRENTE_VIEW li.ui-tabs-active a:focus { + color: white !important; + cursor: pointer; } #tab_extracto_geral .positive { - color: #5fd17f; + color: #5fd17f; } #tab_extracto_geral .negative { - color: #fa8078; + color: #fa8078; } /* TABLES DESIGN */ .tabela { - border-spacing: 0 !important; - width: 100%; + border-spacing: 0 !important; + width: 100%; } -.tabela .data{ - color:rgb(112, 112, 112); +.tabela .data { + color: rgb(112, 112, 112); } - .tabela th { - color: #676767; - background: none; - text-align: left; + color: #676767; + background: none; + text-align: left; } .tabela > tbody > tr.i, -.tabela > tbody > tr.p -{ - background: none; +.tabela > tbody > tr.p { + background: none; } -table.dados tbody tr:nth-child(even), tr.p, td.p, -table.dados tbody tr:nth-child(odd), tr.i, td.i{ - background: none !important; +table.dados tbody tr:nth-child(even), +tr.p, +td.p, +table.dados tbody tr:nth-child(odd), +tr.i, +td.i { + background: none !important; } .tabela th, .tabela td { - padding: 0.6rem 1rem !important; - border-bottom: 1.4px solid #f3f3f3; - text-align: left !important; + padding: 0.6rem 1rem !important; + border-bottom: 1.4px solid #f3f3f3; + text-align: left !important; } .tabela tr td:first-child, -.tabela tr th:first-child{ - text-align: left; - padding-left: 0 !important; +.tabela tr th:first-child { + text-align: left; + padding-left: 0 !important; } .tabela tr td:last-child, -.tabela tr th:last-child{ - text-align: right !important; - padding-right: 0 !important; +.tabela tr th:last-child { + text-align: right !important; + padding-right: 0 !important; } -.tabela th{ - font-weight: 400; +.tabela th { + font-weight: 400; } -.tabela i{ - font-style: normal; +.tabela i { + font-style: normal; } /* ----------------- Generic New Components ----------------- */ -.card{ - border: 1px solid #f3f3f3; - border-radius: 15px; - padding: 1rem; - margin-bottom: 0.5rem; - background: #f6f6f6; - width: fit-content; - padding: 1rem 2rem; +.card { + border: 1px solid #f3f3f3; + border-radius: 15px; + padding: 1rem; + margin-bottom: 0.5rem; + background: #f6f6f6; + width: fit-content; + padding: 1rem 2rem; } -.card > h3, .card > p{ - margin: 0; +.card > h3, +.card > p { + margin: 0; } /* ----------------- INPUT ----------------- */ -input, select, button{ - border-radius: 8px !important; - border-color: #cfcfcf !important; - box-sizing: border-box; - padding: 0.5rem !important; - box-shadow: 0px 0px 23px -17px rgba(0,0,0,0.3); - background: rgb(248, 248, 248) !important; - box-shadow: none !important; - font-weight: 500 !important; - transition: all 0.2s ease-in-out; +input, +select, +button { + border-radius: 8px !important; + border-color: #cfcfcf !important; + box-sizing: border-box; + padding: 0.5rem !important; + box-shadow: 0px 0px 23px -17px rgba(0, 0, 0, 0.3); + background: rgb(248, 248, 248) !important; + box-shadow: none !important; + font-weight: 500 !important; + transition: all 0.2s ease-in-out; } -button:hover{ - cursor: pointer; - background-color: #e8e8e8 !important; +button:hover { + cursor: pointer; + background-color: #e8e8e8 !important; } -select{ - appearance: none; - /*background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); +select { + appearance: none; + /*background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 0.5rem center; background-size: 1em;*/ } -button:active, button:focus, input:active, input:focus, select:active, select:focus{ - outline-color: #dc8877 !important; - outline-width: 5px !important; +button:active, +button:focus, +input:active, +input:focus, +select:active, +select:focus { + outline-color: #dc8877 !important; + outline-width: 5px !important; } /* ----------------- COOKIES BAR ----------------- */ -#cookie-bar.fixed{ - padding: 0.8rem; - background: #111111d9; +#cookie-bar.fixed { + padding: 0.8rem; + background: #111111d9; } -#cookie-bar a.cb-enable{ - background: #842918; - padding: 0.3rem 0.7rem; - margin-left: 20px; +#cookie-bar a.cb-enable { + background: #842918; + padding: 0.3rem 0.7rem; + margin-left: 20px; } -#cookie-bar a.cb-enable:hover{ - background: #9d3c29; - color: white !important; +#cookie-bar a.cb-enable:hover { + background: #9d3c29; + color: white !important; } -#cookie-bar a.cb-policy{ - background: #2b2b2b; - padding: 0.3rem 0.7rem; - margin-left: 15px; +#cookie-bar a.cb-policy { + background: #2b2b2b; + padding: 0.3rem 0.7rem; + margin-left: 15px; } -#cookie-bar a.cb-policy:hover{ - background: #353535; - color: white !important; +#cookie-bar a.cb-policy:hover { + background: #353535; + color: white !important; } /* ----------------- DATE INPUT ----------------- */ -.yui-skin-sam table{ - border-spacing: 0.8rem 0.2rem !important; +.yui-skin-sam table { + border-spacing: 0.8rem 0.2rem !important; } -.yui-skin-sam .yui-calcontainer{ - background-color: #fbfbfb !important; - border: 1px solid #c8c8c8 !important; - padding: 1rem !important; - border-radius: 8px; - box-shadow: 1px 1px 10px #00000014; +.yui-skin-sam .yui-calcontainer { + background-color: #fbfbfb !important; + border: 1px solid #c8c8c8 !important; + padding: 1rem !important; + border-radius: 8px; + box-shadow: 1px 1px 10px #00000014; } -.yui-skin-sam .yui-calcontainer .title{ - margin: 0 !important; - background: none !important; - border-bottom: none !important; - padding: 0 !important; +.yui-skin-sam .yui-calcontainer .title { + margin: 0 !important; + background: none !important; + border-bottom: none !important; + padding: 0 !important; } -.yui-skin-sam .yui-calendar a.calnav{ - color: #1A1A1A !important; - border: none !important; +.yui-skin-sam .yui-calendar a.calnav { + color: #1a1a1a !important; + border: none !important; } -.yui-skin-sam .yui-calendar a.calnav:hover{ - background: none !important; +.yui-skin-sam .yui-calendar a.calnav:hover { + background: none !important; } -.yui-skin-sam .yui-calendar .calweekdaycell{ - /* background-color: none !important; */ - background: none; - color: #575757 !important; +.yui-skin-sam .yui-calendar .calweekdaycell { + /* background-color: none !important; */ + background: none; + color: #575757 !important; } -.yui-skin-sam .yui-calendar td.calcell{ - border: none !important; - background: none !important; - border-radius: 8px !important; - transition: all 0.2s ease-out; +.yui-skin-sam .yui-calendar td.calcell { + border: none !important; + background: none !important; + border-radius: 8px !important; + transition: all 0.2s ease-out; } -.yui-skin-sam .yui-calendar td.calcell:hover{ - background: #1A1A1A !important; +.yui-skin-sam .yui-calendar td.calcell:hover { + background: #1a1a1a !important; } -.yui-skin-sam .yui-calendar td.calcell:hover a{ - color: #FFFFFF !important; +.yui-skin-sam .yui-calendar td.calcell:hover a { + color: #ffffff !important; } .yui-skin-sam .yui-calendar td.calcell a { - color: #1A1A1A !important; - background: none !important; + color: #1a1a1a !important; + background: none !important; } -.yui-skin-sam .yui-calendar td.calcell.oom{ - color: #BABABA !important; - background: none !important; +.yui-skin-sam .yui-calendar td.calcell.oom { + color: #bababa !important; + background: none !important; } -.yui-skin-sam .yui-calendar td.calcell.today{ - background: #F2F2F2 !important; +.yui-skin-sam .yui-calendar td.calcell.today { + background: #f2f2f2 !important; } -.yui-skin-sam .yui-calendar td.calcell.today a{ - color: #1A1A1A !important; +.yui-skin-sam .yui-calendar td.calcell.today a { + color: #1a1a1a !important; } -.yui-skin-sam .yui-calcontainer .yui-cal-nav{ - background-color: #f5f5f5 !important; - border-radius: 8px; - border: 1px solid #a0a0a0; - width: fit-content !important; - align-items: center; - margin-left: -20% !important; +.yui-skin-sam .yui-calcontainer .yui-cal-nav { + background-color: #f5f5f5 !important; + border-radius: 8px; + border: 1px solid #a0a0a0; + width: fit-content !important; + align-items: center; + margin-left: -20% !important; } .yui-skin-sam .yui-calcontainer .yui-cal-nav-mc { - width: auto; + width: auto; } -div.yui-cal-nav{ - padding: 0.5rem !important; - display: grid; - grid-template-columns: auto auto; - gap: 0.5rem; +div.yui-cal-nav { + padding: 0.5rem !important; + display: grid; + grid-template-columns: auto auto; + gap: 0.5rem; } -.yui-cal-nav-m, .yui-cal-nav-y, .yui-cal-nav-b{ - padding: 0 !important; +.yui-cal-nav-m, +.yui-cal-nav-y, +.yui-cal-nav-b { + padding: 0 !important; } -.yui-cal-nav-y{ - margin: 0.5rem 0; +.yui-cal-nav-y { + margin: 0.5rem 0; } -.yui-cal-nav-b{ - display: flex; - flex-direction: row-reverse; - justify-content: center; - gap: 0.5rem; +.yui-cal-nav-b { + display: flex; + flex-direction: row-reverse; + justify-content: center; + gap: 0.5rem; } -.yui-cal-nav-b{ - grid-column: 1/3; +.yui-cal-nav-b { + grid-column: 1/3; } -.yui-skin-sam .yui-calcontainer .yui-cal-nav label{ - display: none !important; +.yui-skin-sam .yui-calcontainer .yui-cal-nav label { + display: none !important; } -.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn.yui-default button{ - background: #1A1A1A !important; +.yui-skin-sam + .yui-calcontainer + .yui-cal-nav + .yui-cal-nav-btn.yui-default + button { + background: #1a1a1a !important; } .yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn { - border: none !important; - background: none !important; - margin: 0 !important; + border: none !important; + background: none !important; + margin: 0 !important; } -.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn:hover{ - background: none !important; +.yui-skin-sam .yui-calcontainer .yui-cal-nav .yui-cal-nav-btn:hover { + background: none !important; } -.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc{ - width: 7.5rem !important; +.yui-skin-sam .yui-calcontainer .yui-cal-nav-yc { + width: 7.5rem !important; } /* Warning boxes */ -div.info > span, div.alerta > span { - color: #000000; - font-weight: 100; - font-size: 1rem; - background-image: none; +div.info > span, +div.alerta > span { + color: #000000; + font-weight: 100; + font-size: 1rem; + background-image: none; } -div.alerta, div.info, div.informa{ - display: flex; - align-items: center; - gap: 1rem; - padding: 1.5rem 1rem !important; - background-image: none !important; - border: 0 !important; - width: fit-content; - margin: 1.5em 0 !important; - color: #000000 !important; - font-weight: normal !important; +div.alerta, +div.info, +div.informa { + display: flex; + align-items: center; + gap: 1rem; + padding: 1.5rem 1rem !important; + background-image: none !important; + border: 0 !important; + width: fit-content; + margin: 1.5em 0 !important; + color: #000000 !important; + font-weight: normal !important; } div.alerta { - background-color: #fdecee !important; + background-color: #fdecee !important; } -div.info, div.informa{ - background-color: #e6fafd !important; +div.info, +div.informa { + background-color: #e6fafd !important; } div.alerta > span.se-icon { - color: #ef4d61; + color: #ef4d61; } div:is(.info, .informa) > span.se-icon { - color: #02cfe9; + color: #02cfe9; } div.informa > span > span.se-icon { @@ -1121,7 +1162,7 @@ div.informa > span > span.se-icon { } .horario tfoot { - border-top: solid 1px #b5b5b5; + border-top: solid 1px #b5b5b5; } .horario thead { @@ -1159,7 +1200,7 @@ div.informa > span > span.se-icon { background: #ebebeb; } -.horario :is(.TP, .TE, .P, .OT, .PL, .TC, .S, .O, .existeexames)>* { +.horario :is(.TP, .TE, .P, .OT, .PL, .TC, .S, .O, .existeexames) > * { display: grid; grid-template-columns: repeat(auto-fit, minmax(10ch, 1fr)); grid-auto-rows: 1fr; @@ -1197,54 +1238,54 @@ div.informa > span > span.se-icon { display: none !important; } -.horario .TP>*, +.horario .TP > *, #new-legend #TP::before { - background-color: #D3944C; + background-color: #d3944c; } -.horario .P>*, +.horario .P > *, #new-legend #P::before { - background-color: #AB4D39; + background-color: #ab4d39; } -.horario .TE>*, +.horario .TE > *, #new-legend #TE::before { - background-color: #FBD56C; + background-color: #fbd56c; } -.horario .OT>*, +.horario .OT > *, #new-legend #OT::before { - background-color: #7CA5B8; + background-color: #7ca5b8; } -.horario .PL>*, +.horario .PL > *, #new-legend #PL::before { - background-color: #769C87; + background-color: #769c87; } -.horario .TC>*, +.horario .TC > *, #new-legend #TC::before { - background-color: #CDBEB1; + background-color: #cdbeb1; } -.horario .S>*, +.horario .S > *, #new-legend #S::before { - background-color: #917C9B; + background-color: #917c9b; } -.horario .O>*, +.horario .O > *, #new-legend #O::before { background-color: #b3b3b3; } -.horario .existeexames>*, +.horario .existeexames > *, #new-legend #existeexames::before { - background-color: #FFBCB5; + background-color: #ffbcb5; } .horario .almoco, #new-legend #almoco::before { - box-shadow: inset 0 0 0 10000px #FFBCB588; + box-shadow: inset 0 0 0 10000px #ffbcb588; } .horario .today { @@ -1323,7 +1364,7 @@ p[id^="legend-abbrv-"] { border-left: none; color: inherit !important; text-decoration: none !important; - padding: .25em; + padding: 0.25em; } .se-pagination > span { @@ -1348,82 +1389,83 @@ p[id^="legend-abbrv-"] { } /* Page top image cover*/ -center:first-of-type > img, .encaixar { - width: 100%; - max-height: 220px; - object-fit: cover; +center:first-of-type > img, +.encaixar { + width: 100%; + max-height: 220px; + object-fit: cover; } .se-table { - width: 100%; - border-collapse: collapse !important; + width: 100%; + border-collapse: collapse !important; } .se-sort-button { - background: none !important; - border: none !important; - display: inline-block !important; - width: 100% !important; - height: 100% !important; - outline: none !important; - cursor: pointer !important; - padding: 0 !important; - margin: 0 !important; - box-sizing: border-box !important; + background: none !important; + border: none !important; + display: inline-block !important; + width: 100% !important; + height: 100% !important; + outline: none !important; + cursor: pointer !important; + padding: 0 !important; + margin: 0 !important; + box-sizing: border-box !important; } .se-sort-button:hover { - background: none !important; + background: none !important; } .se-table-header { - background: none !important; - color: #676767; - padding: 0 !important; - margin: 0; - width: auto; - height: 100%; + background: none !important; + color: #676767; + padding: 0 !important; + margin: 0; + width: auto; + height: 100%; } .se-table-header::after { - display: none; + display: none; } .se-sort-button::after { - font-family: "remixicon"; - vertical-align: middle; - padding-left: 0.3rem; + font-family: "remixicon"; + vertical-align: middle; + padding-left: 0.3rem; } .se-sort-button[aria-sort="asc"]::after { - content: "\f160"; - font-weight: bold; + content: "\f160"; + font-weight: bold; } .se-sort-button[aria-sort="desc"]::after { - content: "\f15f"; - font-weight: bold; + content: "\f15f"; + font-weight: bold; } .se-sort-button, .se-table td { - padding: 0.6rem 1rem !important; - border-bottom: 1.4px solid #f3f3f3; - text-align: left !important; + padding: 0.6rem 1rem !important; + border-bottom: 1.4px solid #f3f3f3; + text-align: left !important; } .se-table tr td:first-child, -.se-table tr th:first-child .se-sort-button{ - text-align: left; - padding-left: 0 !important; +.se-table tr th:first-child .se-sort-button { + text-align: left; + padding-left: 0 !important; } .se-table tr td:last-child, -.se-table tr th:last-child .se-sort-button{ - text-align: right !important; - padding-right: 0 !important; +.se-table tr th:last-child .se-sort-button { + text-align: right !important; + padding-right: 0 !important; } .se-table thead tr { - border-bottom: 1.4px solid #f3f3f3 !important; -} \ No newline at end of file + border-bottom: 1.4px solid #f3f3f3 !important; +} diff --git a/css/teacherPage.css b/css/teacherPage.css index 0f85227..7c82c4a 100644 --- a/css/teacherPage.css +++ b/css/teacherPage.css @@ -1,32 +1,29 @@ - - -.se-teacher-title-bar > h1{ +.se-teacher-title-bar > h1 { margin: 0 !important; padding: 0em; } -.se-teacher-title-bar > h3{ +.se-teacher-title-bar > h3 { margin: 0; padding-left: 1em; } -.se-teacher-title-bar{ +.se-teacher-title-bar { display: flex; align-items: center; } - -.informacao-pessoal-dados-foto{ +.informacao-pessoal-dados-foto { float: none !important; } -.informacao-pessoal-dados-foto > img{ +.informacao-pessoal-dados-foto > img { border-radius: 8px; } .se-publication-website-button { display: block; - background-color: #F4F4F4; - width: fit-content; + background-color: #f4f4f4; + width: fit-content; height: fit-content; padding: 5px 10px; margin-bottom: 1em; @@ -34,12 +31,11 @@ cursor: pointer; } -.se-publication-website-button:active{ +.se-publication-website-button:active { background-color: #dddada; - } -.se-publication-website-button > img{ +.se-publication-website-button > img { display: inline-block; height: 25px; } @@ -49,43 +45,42 @@ padding: 0; margin: 0; padding-left: 1em; - } -.informacao-pessoal-apresentacao{ +.informacao-pessoal-apresentacao { margin-top: 2em; box-shadow: none !important; border: none !important; margin-left: 0 !important; - background-color: #F4F4F4 !important; + background-color: #f4f4f4 !important; border-radius: 8px; } -.informacao-pessoal-adicional{ +.informacao-pessoal-adicional { width: 100% !important; } -.informacao-pessoal-apresentacao > h3{ +.informacao-pessoal-apresentacao > h3 { margin: 1em 0em; } -.se-roles{ - background-color: #F4F4F4; +.se-roles { + background-color: #f4f4f4; border-radius: 8px; } -.informacao-pessoal-outras, .se-positions{ +.informacao-pessoal-outras, +.se-positions { float: none !important; - background-color: #F4F4F4; + background-color: #f4f4f4; border-radius: 8px; margin-top: 2em; - } -.se-website-button{ +.se-website-button { display: block; - background-color: #F4F4F4; - width: fit-content; + background-color: #f4f4f4; + width: fit-content; height: fit-content; border-radius: 8px; cursor: pointer; @@ -95,60 +90,59 @@ text-decoration: none !important; } -.se-website-button:active{ +.se-website-button:active { background-color: #dddada; - } -.se-contact-info{ - background-color: #F4F4F4; +.se-contact-info { + background-color: #f4f4f4; border-radius: 8px; - } -:is(.se-contact-info, .se-roles, .se-positions, .informacao-pessoal-outras) > h3{ +:is(.se-contact-info, .se-roles, .se-positions, .informacao-pessoal-outras) + > h3 { margin: 0em !important; padding: 0.5em 1em; } -:is(.se-contact-info, .se-roles, .informacao-pessoal-outras) .formulario-legenda{ +:is(.se-contact-info, .se-roles, .informacao-pessoal-outras) + .formulario-legenda { text-align: left !important; } -.se-container{ +.se-container { display: flex; flex-direction: row; } -.se-key-pair-table{ +.se-key-pair-table { padding: 0em 2em 1em 2em; width: 100%; } -.se-key-pair-table p{ +.se-key-pair-table p { margin: 0 !important; } -.se-key-pair-table .se-highlighted-part{ +.se-key-pair-table .se-highlighted-part { font-weight: bold; } -.se-key-pair-table .se-content-part{ +.se-key-pair-table .se-content-part { padding-left: 0.5em; } /* Main page Layout **/ -.se-main-info-row{ +.se-main-info-row { display: flex; flex-direction: row; justify-content: flex-start; gap: 1em; margin-top: 1em; - } -.se-extra-information-row{ +.se-extra-information-row { display: flex; flex-direction: row; justify-content: flex-start; @@ -157,7 +151,7 @@ } @media screen and (max-width: 480px) { - .se-extra-information-row{ + .se-extra-information-row { flex-direction: column; } -} \ No newline at end of file +} diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..358128d --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,31 @@ +import globals from "globals"; +import pluginJs from "@eslint/js"; +import tseslint from "typescript-eslint"; +import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"; + +export default [ + { files: ["**/*.{js,mjs,cjs,ts,tsx}"] }, + { + languageOptions: { + globals: { ...globals.browser, ...globals.webextensions }, + }, + }, + pluginJs.configs.recommended, + ...tseslint.configs.recommended, + eslintPluginPrettierRecommended, + // { + // ignores: [ + // ".DS_Store", + // "/node_modules", + // "/dist", + // "/.yarn", + // "/.github", + // "/popup/.next", + // "/popup/.yarn", + // "/popup/node_modules", + // "/popup/out", + // ".changes.json", + // "package-lock.json", + // ], + // }, +]; diff --git a/html/autorize.html b/html/autorize.html index 510e159..83ed87b 100644 --- a/html/autorize.html +++ b/html/autorize.html @@ -1,13 +1,13 @@ - + - + - +

                      Quase lá

                      Autoriza-nos a melhorar o Sigarra

                      Autorizar
                      - \ No newline at end of file + diff --git a/html/autorize.js b/html/autorize.js index c5f9c46..bab4675 100644 --- a/html/autorize.js +++ b/html/autorize.js @@ -1,17 +1,23 @@ - -document.addEventListener('DOMContentLoaded', () =>{ +document.addEventListener("DOMContentLoaded", () => { document.getElementById("permissions").addEventListener("click", () => { - chrome.permissions.request({origins:["https://sigarra.up.pt/*"]}).then((granted) => { - if(granted){ - chrome.tabs.query({ url: "*://sigarra.up.pt/feup/*" }, (tabs) => { - tabs.forEach((tab) => { - chrome.tabs.reload(tab.id); + chrome.permissions + .request({ origins: ["https://sigarra.up.pt/*"] }) + .then((granted) => { + if (granted) { + chrome.tabs.query( + { url: "*://sigarra.up.pt/feup/*" }, + (tabs) => { + tabs.forEach((tab) => { + chrome.tabs.reload(tab.id); + }); + }, + ); + chrome.tabs.update({ + url: chrome.runtime.getURL("html/installed.html"), }); - }); - chrome.tabs.update({url: chrome.runtime.getURL("html/installed.html")}); - }else{ - //TODO: Handle when the user didn't grant permissions - } - }); + } else { + //TODO: Handle when the user didn't grant permissions + } + }); }); -}); \ No newline at end of file +}); diff --git a/html/installed.html b/html/installed.html index 7a0c9c6..6040d24 100644 --- a/html/installed.html +++ b/html/installed.html @@ -1,13 +1,13 @@ - + - - + +
                      - success + success

                      Extensão pronta a usar!

                      - \ No newline at end of file + diff --git a/html/style.css b/html/style.css index 3276090..aba5472 100644 --- a/html/style.css +++ b/html/style.css @@ -1,12 +1,12 @@ -@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500&display=swap'); +@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500&display=swap"); -*{ +* { margin: 0; padding: 0; box-sizing: border-box; } -body#autorize{ +body#autorize { background-image: url("./images/background.jpg"); background-repeat: no-repeat; background-attachment: fixed; @@ -15,8 +15,8 @@ body#autorize{ animation: shrink 6s infinite alternate; } -body{ - font-family: 'Lexend Deca', sans-serif; +body { + font-family: "Lexend Deca", sans-serif; display: flex; justify-content: center; align-items: center; @@ -44,21 +44,21 @@ body{ } } -h1{ +h1 { font-size: 7rem; font-weight: 100; text-shadow: 0 10px 20px #000000d0; animation: zoom 6s infinite alternate; } -h3{ +h3 { font-size: 2rem; font-weight: 300; text-shadow: 0 10px 20px #000000d0; animation: zoom 6s infinite alternate; } -#permissions{ +#permissions { background-color: #518886; padding: 0.7rem 2rem; border-radius: 10px; @@ -70,13 +70,13 @@ h3{ transition: all 0.3s ease; } -#permissions:hover{ +#permissions:hover { background-color: #3a6463; box-shadow: 0 10px 50px #0000004c; transform: translateY(-5px) scale(1.01); } -#ready{ +#ready { background: rgba(153, 51, 51, 0.3); padding: 1.2rem; border-radius: 15px; @@ -87,17 +87,17 @@ h3{ font-weight: 300; animation: 0.5s ease-in-out 0s 1 slideInFromDown; } -#ready > img{ +#ready > img { height: 50px; } @keyframes slideInFromDown { 0% { - transform: translatey(10%); - opacity: 0.2; + transform: translatey(10%); + opacity: 0.2; } 100% { - transform: translateX(0); - opacity: 1; + transform: translateX(0); + opacity: 1; } - } \ No newline at end of file +} diff --git a/js/override-functions.js b/js/override-functions.js index ad9384c..29b684f 100644 --- a/js/override-functions.js +++ b/js/override-functions.js @@ -1,27 +1,27 @@ -function expandir_colapsar(id, event){ +function expandir_colapsar(id, event) { const element = document.getElementById(id); - if(isVisible(element)){ - hideElement(element) - }else{ - bringElement(element) + if (isVisible(element)) { + hideElement(element); + } else { + bringElement(element); } } // TODOs MOVE THIS TO BETTER LOCATION -function hideElement(element){ +function hideElement(element) { element.style.visibility = "hidden"; element.style.opacity = "0"; element.style.height = "0"; element.style.margin = "0"; } -function bringElement(element){ +function bringElement(element) { element.style.visibility = "visible"; element.style.opacity = "1"; element.style.height = "auto"; element.style.margin = "1rem 0"; } -function isVisible(element){ +function isVisible(element) { return element.style.opacity > 0; -} \ No newline at end of file +} diff --git a/manifest.js b/manifest.js index d45c637..5387c91 100644 --- a/manifest.js +++ b/manifest.js @@ -1,7 +1,8 @@ let manifest = { name: "NitSig: Sigarra, but Neater", short_name: "NitSig", - description: "A Neater Sigarra by improving its UI/UX experience and adding new features", + description: + "A Neater Sigarra by improving its UI/UX experience and adding new features", version: "1.0.4", manifest_version: 3, icons: { @@ -11,7 +12,7 @@ let manifest = { 128: "images/logo/logo-128.png", }, content_security_policy: { - extension_pages: "script-src 'self'; object-src 'self';" + extension_pages: "script-src 'self'; object-src 'self';", }, content_scripts: [ { @@ -25,7 +26,7 @@ let manifest = { "css/classPage.css", "css/profilePage.css", "css/card.css", - "css/expandableCard.css" + "css/expandableCard.css", ], }, { @@ -36,7 +37,7 @@ let manifest = { { matches: ["*://sigarra.up.pt/*/web_page.inicial"], css: ["css/homepage.css"], - } + }, ], web_accessible_resources: [ { @@ -71,7 +72,7 @@ export const MANIFEST_CHROME = { background: { service_worker: "background.js", type: "module", - } + }, }; export const MANIFEST_FIREFOX = { @@ -84,5 +85,5 @@ export const MANIFEST_FIREFOX = { }, background: { scripts: ["background.js"], - } -}; \ No newline at end of file + }, +}; diff --git a/package.json b/package.json index 127a7d4..cdd1b37 100644 --- a/package.json +++ b/package.json @@ -1,42 +1,53 @@ { - "name": "nitsig", - "type": "module", - "scripts": { - "build": "webpack", - "watch": "webpack --watch", - "run:firefox": "web-ext run --source-dir dist/firefox --start-url fe.up.pt --keep-profile-changes", - "run:chrome": "web-ext run --source-dir dist/chrome --chromium-binary --start-url fe.up.pt --keep-profile-changes", - "run": "yarn run:firefox", - "dev:firefox": "concurrently 'yarn watch' 'yarn run:firefox'", - "dev:chrome": "concurrently 'yarn watch' 'yarn run:chrome'", - "dev": "yarn dev:firefox" - }, - "dependencies": { - "fs-extra": "^11.1.0", - "node-cmd": "^5.0.0", - "texsaur": "^1.0.2", - "zip-local": "^0.3.5" - }, - "devDependencies": { - "@types/chrome": "^0.0.218", - "@types/fs-extra": "^9.0.13", - "@types/klaw": "^3.0.3", - "@types/node": "^20.11.28", - "@types/webpack": "^5.28.5", - "concurrently": "^8.2.2", - "copy-webpack-plugin": "^12.0.2", - "cross-env": "^7.0.3", - "esbuild-loader": "^4.1.0", - "https-localhost": "^4.7.1", - "klaw": "^4.1.0", - "ts-loader": "^9.5.1", - "ts-node": "^10.9.2", - "typescript": "^5.4.2", - "watch": "^1.0.2", - "web-ext": "^7.11.0", - "webpack": "^5.90.3", - "webpack-cli": "^5.1.4", - "webpack-shell-plugin-next": "^2.3.1" - }, - "packageManager": "yarn@4.1.1+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781" + "name": "nitsig", + "type": "module", + "scripts": { + "build": "webpack", + "watch": "webpack --watch", + "run:firefox": "web-ext run --source-dir dist/firefox --start-url fe.up.pt --keep-profile-changes", + "run:chrome": "web-ext run --source-dir dist/chrome --chromium-binary --start-url fe.up.pt --keep-profile-changes", + "run": "yarn run:firefox", + "dev:firefox": "concurrently 'yarn watch' 'yarn run:firefox'", + "dev:chrome": "concurrently 'yarn watch' 'yarn run:chrome'", + "dev": "yarn dev:firefox", + "format": "prettier --check . ./content-scripts/* ./popup/*", + "format:fix": "prettier --write . ./content-scripts/* ./popup/*", + "lint": "yarn run eslint ./content-scripts/* ./popup/components ./popup/pages ./popup/utilities", + "lint:fix": "yarn run eslint --fix ./content-scripts/* ./popup/components ./popup/pages ./popup/utilities" + }, + "dependencies": { + "fs-extra": "^11.1.0", + "node-cmd": "^5.0.0", + "texsaur": "^1.0.2", + "zip-local": "^0.3.5" + }, + "devDependencies": { + "@eslint/js": "^9.10.0", + "@types/chrome": "^0.0.218", + "@types/fs-extra": "^9.0.13", + "@types/klaw": "^3.0.3", + "@types/node": "^20.11.28", + "@types/webpack": "^5.28.5", + "concurrently": "^8.2.2", + "copy-webpack-plugin": "^12.0.2", + "cross-env": "^7.0.3", + "esbuild-loader": "^4.1.0", + "eslint": "^9.10.0", + "eslint-config-prettier": "9.1.0", + "eslint-plugin-prettier": "5.2.1", + "globals": "^15.9.0", + "https-localhost": "^4.7.1", + "klaw": "^4.1.0", + "prettier": "3.3.3", + "ts-loader": "^9.5.1", + "ts-node": "^10.9.2", + "typescript": "^5.4.2", + "typescript-eslint": "^8.4.0", + "watch": "^1.0.2", + "web-ext": "^7.11.0", + "webpack": "^5.90.3", + "webpack-cli": "^5.1.4", + "webpack-shell-plugin-next": "^2.3.1" + }, + "packageManager": "yarn@4.1.1+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781" } diff --git a/popup/components/controls/CheckboxControl.js b/popup/components/controls/CheckboxControl.js index 707d298..1eaef0a 100644 --- a/popup/components/controls/CheckboxControl.js +++ b/popup/components/controls/CheckboxControl.js @@ -5,17 +5,14 @@ import { useEffect, useState } from "react" import { getStorage, setStorage } from "../../utilities/chromeStorage" -function CheckboxControl({ - label, - storageKey, - defaultState = false -}) { +function CheckboxControl({ label, storageKey, defaultState = false }) { const [localState, setLocalState] = useState(defaultState) useEffect(() => { const getDefaultState = async () => { try { const userSetting = await getStorage(storageKey) + // eslint-disable-next-line @typescript-eslint/no-unused-expressions userSetting && setLocalState(userSetting === "on" ? true : false) } catch (error) { console.warn(error) @@ -71,4 +68,4 @@ const StyledCheckbox = styled(CheckboxPrimitive.Root, { } }) -export default CheckboxControl \ No newline at end of file +export default CheckboxControl diff --git a/popup/components/controls/SwitchControl.js b/popup/components/controls/SwitchControl.js index ef50115..6a4a9bb 100644 --- a/popup/components/controls/SwitchControl.js +++ b/popup/components/controls/SwitchControl.js @@ -4,17 +4,14 @@ import { useEffect, useState } from "react" import { getStorage, setStorage } from "../../utilities/chromeStorage" -function SwitchControl({ - label, - storageKey, - defaultState = false -}) { +function SwitchControl({ label, storageKey, defaultState = false }) { const [localState, setLocalState] = useState(defaultState) useEffect(() => { const getDefaultState = async () => { try { const userDefault = await getStorage(storageKey) + // eslint-disable-next-line @typescript-eslint/no-unused-expressions userDefault && setLocalState(userDefault === "on" ? true : false) } catch (error) { console.warn(error) @@ -77,4 +74,4 @@ const StyledThumb = styled(SwitchPrimitive.Thumb, { } }) -export default SwitchControl \ No newline at end of file +export default SwitchControl diff --git a/popup/components/layout/Footer.js b/popup/components/layout/Footer.js index 003f953..1feec86 100644 --- a/popup/components/layout/Footer.js +++ b/popup/components/layout/Footer.js @@ -1,4 +1,4 @@ -import Link from 'next/link' +import Link from "next/link" const Footer = () => { return ( diff --git a/popup/components/layout/Header.js b/popup/components/layout/Header.js index aabe6a1..a71a5ae 100644 --- a/popup/components/layout/Header.js +++ b/popup/components/layout/Header.js @@ -1,8 +1,16 @@ const Header = () => (
                      - NitSig Logo - NitSig Logo + NitSig Logo + NitSig Logo

                      Made by{" "} diff --git a/popup/components/layout/Main.js b/popup/components/layout/Main.js index 4e1f644..33510a7 100644 --- a/popup/components/layout/Main.js +++ b/popup/components/layout/Main.js @@ -2,7 +2,7 @@ import Layout from "../sections/Layout" const Main = () => (

                      - +
                      ) diff --git a/popup/components/sections/Layout.js b/popup/components/sections/Layout.js index 6c3c4c5..ee20a60 100644 --- a/popup/components/sections/Layout.js +++ b/popup/components/sections/Layout.js @@ -1,4 +1,4 @@ -import LayoutContent from './LayoutContent' +import LayoutContent from "./LayoutContent" const Layout = () => (
                      @@ -14,4 +14,4 @@ const Layout = () => (
                      ) -export default Layout \ No newline at end of file +export default Layout diff --git a/popup/components/sections/LayoutContent.js b/popup/components/sections/LayoutContent.js index cbf1d47..9dc5c9b 100644 --- a/popup/components/sections/LayoutContent.js +++ b/popup/components/sections/LayoutContent.js @@ -1,24 +1,16 @@ -import SwitchControl from '../controls/SwitchControl' +import SwitchControl from "../controls/SwitchControl" const LayoutContent = () => ( -
                      -
                      -
                      - - - - -
                      -
                      -
                      +
                      +
                      +
                      + + + + +
                      +
                      +
                      ) -export default LayoutContent \ No newline at end of file +export default LayoutContent diff --git a/popup/pages/feedback.js b/popup/pages/feedback.js index 8cc8b46..2049442 100644 --- a/popup/pages/feedback.js +++ b/popup/pages/feedback.js @@ -3,10 +3,10 @@ import Header from "../components/layout/Header" import { useState } from "react" import { Toaster, toast } from "react-hot-toast" -const FORMS_LINK = "https://docs.google.com/forms/d/e/1FAIpQLSdvLEl7FzXEtcq-ZeD1Lrm_1S-CTmCBc3-_AwXmWAw1LU3Z9A/formResponse" +const FORMS_LINK = + "https://docs.google.com/forms/d/e/1FAIpQLSdvLEl7FzXEtcq-ZeD1Lrm_1S-CTmCBc3-_AwXmWAw1LU3Z9A/formResponse" const FeedBackPage = () => { - const [bugReport, setBugReport] = useState(false) const [title, setTitle] = useState("") const [description, setDescription] = useState("") @@ -16,7 +16,7 @@ const FeedBackPage = () => { return toast.error("Preencha todos os campos") } - const url = new URL(FORMS_LINK); + const url = new URL(FORMS_LINK) url.searchParams.append("entry.685094821", bugReport ? "Bug" : "Sugestão") url.searchParams.append("entry.1903295036", title) url.searchParams.append("entry.1357581566", description) @@ -34,7 +34,8 @@ const FeedBackPage = () => {