diff --git a/.eslintrc.json b/.eslintrc.json
index 51c7de09..189319d6 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -63,7 +63,7 @@
"files": ["**/stencil.tsx", "**/*.stencil.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
- "project": ["packages/web-components-stencil/tsconfig.json"]
+ "parserSerivce": true
},
"plugins": ["@typescript-eslint", "import"]
},
@@ -78,11 +78,7 @@
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
- "project": [
- "packages/storybook/tsconfig.json",
- "packages/components-react/tsconfig.json",
- "packages/components-react/tsconfig.test.json"
- ]
+ "parserSerivce": true
},
"plugins": ["@typescript-eslint"]
}
diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml
index dd3aede0..5104705a 100644
--- a/.github/workflows/continuous-deployment.yml
+++ b/.github/workflows/continuous-deployment.yml
@@ -150,7 +150,7 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4.6.1
with:
branch: gh-pages
- folder: apps/frameless.io/dist/
+ folder: apps/frameless.io/dist/client/
publish-npm:
runs-on: ubuntu-latest
diff --git a/.stylelintrc.json b/.stylelintrc.json
index e136eb99..c9fe783f 100644
--- a/.stylelintrc.json
+++ b/.stylelintrc.json
@@ -13,7 +13,7 @@
"scss/operator-no-newline-after": null,
"scss/at-extend-no-missing-placeholder": null,
"custom-property-pattern": "^_?(frameless|denhaag|utrecht)-[a-z0-9-]+$",
- "selector-class-pattern": "^(frameless|utrecht)-[a-z0-9_-]+$",
+ "selector-class-pattern": "^((frameless|utrecht)-[a-z0-9_-]+|hydrated)$",
"keyframes-name-pattern": "^(frameless|utrecht)-[a-z0-9-]+$",
"at-rule-no-unknown": null,
"block-no-empty": [true],
diff --git a/apps/frameless.io/.eslintrc.cjs b/apps/frameless.io/.eslintrc.cjs
new file mode 100644
index 00000000..c7ab7f83
--- /dev/null
+++ b/apps/frameless.io/.eslintrc.cjs
@@ -0,0 +1,21 @@
+module.exports = {
+ rules: {
+ 'react-refresh/only-export-components': 'warn',
+ '@typescript-eslint/no-namespace': 'off',
+ },
+ reportUnusedDisableDirectives: true,
+ ignorePatterns: ['dist/*', '**/*.mdx'],
+ env: { browser: true, es2020: true, node: true },
+ parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
+ settings: { react: { version: 'detect' } },
+ plugins: ['react-refresh'],
+ extends: [
+ 'eslint:recommended',
+ 'plugin:react/recommended',
+ 'plugin:react/jsx-runtime',
+ 'plugin:react-hooks/recommended',
+ 'plugin:@typescript-eslint/recommended',
+ 'plugin:mdx/recommended',
+ ],
+ parser: '@typescript-eslint/parser',
+};
diff --git a/apps/frameless.io/.gitignore b/apps/frameless.io/.gitignore
new file mode 100644
index 00000000..b9470778
--- /dev/null
+++ b/apps/frameless.io/.gitignore
@@ -0,0 +1,2 @@
+node_modules/
+dist/
diff --git a/apps/frameless.io/package.json b/apps/frameless.io/package.json
index 759edcbf..da5f96a1 100644
--- a/apps/frameless.io/package.json
+++ b/apps/frameless.io/package.json
@@ -1,5 +1,5 @@
{
- "version": "3.2.0",
+ "version": "4.0.0",
"author": "Frameless",
"description": "V1",
"license": "EUPL-1.2",
@@ -9,34 +9,54 @@
"publishConfig": {
"access": "public"
},
+ "type": "module",
"repository": {
"type": "git+ssh",
"url": "git@github.com:frameless/website/.git"
},
- "devDependencies": {
- "@fontsource/fira-sans": "5.0.20",
- "@fontsource/oswald": "5.0.20",
- "@frameless/design-tokens": "workspace:*",
- "@rollup/plugin-replace": "5.0.7",
- "@web/rollup-plugin-html": "2.3.0",
- "postcss-discard-duplicates": "7.0.0",
- "rimraf": "3.0.2",
- "rollup": "3.29.4",
- "rollup-plugin-copy": "3.5.0",
- "rollup-plugin-postcss": "4.0.2"
- },
"scripts": {
- "build": "rollup --config ./rollup.config.mjs",
- "prebuild": "pnpm run clean",
- "postbuild": "rimraf tmp",
- "clean": "rimraf dist tmp",
- "serve": "npx http-server ./dist"
+ "dev": "pnpm run server:dev",
+ "prod": "pnpm run lint && pnpm run build && pnpm run server:prod",
+ "build": "vite build",
+ "purgecss": "purgecss --css 'dist/client/assets/static/*.css' --content dist/client/index.html 'dist/client/assets/**/*.js' --variables --output 'dist/client/assets/static'",
+ "postbuild": "pnpm run purgecss && precompress --exclude '**.woff2' --types br --verbose dist/client/",
+ "server": "tsx ./server/index.ts",
+ "server:dev": "pnpm run server",
+ "server:prod": "cross-env NODE_ENV=production pnpm run server",
+ "start": "http-server dist/client/ --brotli",
+ "lint": "eslint . --max-warnings 0"
},
- "main": "dist/index.css",
- "dependencies": {
+ "devDependencies": {
+ "@frameless/assets": "workspace:*",
"@frameless/components-css": "workspace:*",
+ "@frameless/components-react": "workspace:*",
"@frameless/design-tokens": "workspace:*",
- "@fullhuman/postcss-purgecss": "6.0.0",
- "@utrecht/component-library-css": "3.2.0"
+ "@frameless/font": "workspace:*",
+ "@mdx-js/react": "3.0.1",
+ "@mdx-js/rollup": "3.0.1",
+ "@types/node": "20.16.11",
+ "@types/react": "18.3.11",
+ "@types/react-dom": "18.3.1",
+ "@utrecht/component-library-css": "6.1.0",
+ "@utrecht/component-library-react": "3.1.0",
+ "@vitejs/plugin-react-swc": "3.7.1",
+ "clsx": "2.1.1",
+ "cross-env": "7.0.3",
+ "eslint-plugin-react-hooks": "5.0.0",
+ "eslint-plugin-react-refresh": "0.4.13",
+ "precompress": "12.0.5",
+ "purgecss": "6.0.0",
+ "tsx": "4.19.1",
+ "typescript": "5.6.3",
+ "vite-plugin-compression2": "1.3.0",
+ "vite-plugin-svgr": "4.2.0"
+ },
+ "dependencies": {
+ "vike": "0.4.199",
+ "vite": "5.4.8"
+ },
+ "peerDependencies": {
+ "react": "18",
+ "react-dom": "18"
}
}
diff --git a/apps/frameless.io/pages/_error/+Page.tsx b/apps/frameless.io/pages/_error/+Page.tsx
new file mode 100644
index 00000000..82e8aac7
--- /dev/null
+++ b/apps/frameless.io/pages/_error/+Page.tsx
@@ -0,0 +1,30 @@
+import type { ReactNode } from 'react';
+import { usePageContext } from '../../renderer/usePageContext';
+
+export const Page = () => {
+ const pageContext = usePageContext();
+ let { abortReason } = pageContext;
+ if (!abortReason) {
+ abortReason = pageContext.is404 ? 'Page not found.' : 'Something went wrong.';
+ }
+ return (
+
+ {abortReason}
+
+ );
+};
+
+const Center = ({ children }: { children: ReactNode }) => {
+ return (
+
+ {children}
+
+ );
+};
diff --git a/apps/frameless.io/pages/index/+Page.tsx b/apps/frameless.io/pages/index/+Page.tsx
new file mode 100644
index 00000000..09428e4d
--- /dev/null
+++ b/apps/frameless.io/pages/index/+Page.tsx
@@ -0,0 +1,171 @@
+import { Card, CardGroup, Hero, Logo, Section } from '@frameless/components-react/src';
+import { PageHeader } from '@frameless/components-react/src/PageHeader';
+import { ButtonGroup, ButtonLink, Link, Page, Paragraph } from '@utrecht/component-library-react';
+import Aanpak from './docs/aanpak.mdx';
+import Contact from './docs/contact.mdx';
+import Projecten from './docs/projecten.mdx';
+import TechnischPartner from './docs/technisch-partner.mdx';
+import AccessiblityPartner from './docs/toegankelijkheid/partner-in-toegankelijkheid.mdx';
+import Toegankelijkheidsverklaring from './docs/toegankelijkheid/toegankelijkheidsverklaring.mdx';
+import WCAGEend from './docs/toegankelijkheid/wcag-eend.mdx';
+import { customComponents, mapHeadings, omitHeading1 } from '../../src/mdxUtils';
+
+const HomePage = () => (
+
+ }
+ menuItems={[
+ { label: 'Aanpak', href: '#aanpak' },
+ { label: 'WCAG Audits', href: '#audits' },
+ // { label: 'Voorbeelden', href: '#voorbeelden' },
+ { label: 'Contact', href: '#contact' },
+ ]}
+ />
+
+
+
+
+
+
+
+ Neem gelijk contact op
+
+
+ Bekijk voorbeelden van ons werk
+
+
+
+
+
+ Als Frameless ondersteunen wij graag jouw organisatie bij:
+
+
+
+ Een audit door ons laten doen?
+
+
+ Vraag een offerte aan
+
+
+
+
+
+
+
+
+
+
+ Hieronder hebben we er een aantal voor je uitgelicht
+
+
+
+ Frameless heeft al aan meerdere white-label design systems mogen werken, zoals bijvoorbeeld voor{' '}
+ Backbase
+
+
+ Maar het meest trots zijn we natuurlijk op onze bijdrage aan{' '}
+ NL Design System Waar Robbert en Yolijn als Product Manager en
+ Design System lead samenwerken aan het mooiste design system van Nederland!
+
+
+
+
+ Afgelopen jaren heeft Frameless voor de gemeente Utrecht diverse projecten met Strapi ontwikkeld, waar
+ inmiddels twee websites op draaien en één API: het Digitaal Loket, het VTH Programma-verslag en de
+ Samenwerkende Catalogi API.
+
+
+ Meer weten over dit CMS? https://cms.frameless.io
+
+
+
+
+
+
+ Meer dan 80 componenten ontwikkeld voor{' '}
+ Utrecht Design System in
+ verschillende technieken: als CSS, HTML, React, Angular, Vue en als Web Component.
+
+
+ Deze componenten worden inmiddels ook veel gebruikt door uiteenlopende projecten in de NL Design System
+ community.
+
+
+
+
+ Begeleiding van het
+ Den Haag Design System team en leveranciers
+ met open source bouwen volgens de NL Design System architectuur.
+
+
+
+
+ Ontwikkeling van CMS voor de Producten en Diensten Catalogus, en de nieuwe website ontwikkelen als headless
+ frontend op basis van NL Design System.
+ Digitaal Loket van gemeente Utrecht.
+
+
+
+
+ Meer projecten
+
+
+
+ De cijfers voor het jaarlijks verslag zijn nu voor iedereen beschikbaar op{' '}
+
+ https://vth-programma-verslag.digitaal.utrecht.nl
+
+
+
+ Wij maakten hiervoor in samenwerking met de beleidsmedewerkers een uitbreiding op het CMS voor Producten
+ en Diesten Catalogus en NL Design System.
+
+
+
+
+ Front-end ontwikkeling voor de Huwelijksplanner CMS op basis van NL Design System componenten.
+
+
+
+
+ gemeente Voorbeeld: ontwikkeling van demo-website waar
+ Vereniging van Nederlandse Gemeenten (VNG) gebruikerstesten doet, om gemeenten op weg te helpen met
+ voldoen aan de
+
+ WMEBV
+
+ met NL Design System.
+
+
+
+
+ We hebben voor gemeente Rotterdam een Proof-of-concept{' '}
+ Rotterdam Design System gemaakt.
+ Daarnaast hebben we onderzocht op welke manier dit design system in het interessante Rotterdam ecosysteem
+ met Mendix en Apache Wicket zou passen.
+
+
+
+
+ We hebben OpenCatalogi.nl gemigreerd naar React componenten
+ uit de NL Design System community. De huisstijl keuzes van gemeente Rotterdam die hiervoor nodig waren
+ hebben we als een NL Design System thema beschikbaar gemaakt.
+
+
+ {/*
+
+ We hebben OpenCatalogi.nl gemigreerd naar React componenten
+ uit de NL Design System community. De huisstijl keuzes van gemeente Rotterdam die hiervoor nodig waren
+ hebben we als een NL Design System thema beschikbaar gemaakt.
+
+ */}
+
+
+
+
+
+);
+
+export default HomePage;
diff --git a/apps/frameless.io/pages/index/+config.ts b/apps/frameless.io/pages/index/+config.ts
new file mode 100644
index 00000000..020f1543
--- /dev/null
+++ b/apps/frameless.io/pages/index/+config.ts
@@ -0,0 +1,5 @@
+export default {
+ title: 'Frameless: technisch partner voor toegankelijke, gebruiksvriendelijke webapplicaties.',
+ description:
+ 'Frameless ontzorgt bij implementatie, beheer, ondersteuning en toegankelijkheid. Ervaren in transitie van bestaande systemen naar gebruiksvriendelijke, onderhoudbare oplossingen met de NL Design System aanpak en Common Ground principes. Ook voeren we WCAG-EM audits uit en maken we toegankelijkheidsverklaringen.',
+};
diff --git a/apps/frameless.io/pages/index/docs/aanpak.mdx b/apps/frameless.io/pages/index/docs/aanpak.mdx
new file mode 100644
index 00000000..9a167a73
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/aanpak.mdx
@@ -0,0 +1,21 @@
+import { Coffee } from "../illustrations/Coffee";
+
+# Samen vinden we de beste oplossing!
+
+Sta je voor een technische of organistorische uitdaging? Na een goede kop koffie zijn wij een ideale sparringspartner!
+
+
+
+Tijdens een kennismaking bespreken we waar jullie mee bezig zijn, en bekijken we op welke manier Frameless of ons netwerk kunnen helpen.
+
+## Hulp nodig?
+
+We onderzoeken welke oplossingen, technieken en expertise er in jouw organisatie al aanwezig zijn om een plan van aanpak op maat te maken voor een migratie of vernieuwing. Dat doen we graag in samen met betrokken experts uit jouw organisatie én andere leveranciers om zo tot een passende en duurzame oplossing te komen.
+
+## Ontzorgen bij uitvoering
+
+We nemen met alle plezier werk uit handen, zoals het aansturen van leveranciers, het ondersteunen van interne teams bij de uitvoering en bij het zorgen dat de oplossing daadwerkelijk wordt ingebed in de organisatie. Daarnaast hebben we professionals in dienst en experts in ons netwerk die desgewenst de opdracht voor jouw organisatie graag uitvoeren én het eindresultaat op toegankelijkheid toetsen.
+
+## Efficiënt en herkenbaar
+
+We zorgen dat de oplossing aansluit bij bestaande oplossingen, en doen ons best om dubbel werk te voorkomen. Door te werken volgens de NL Design System aanpak, zorgen we voor hergebruik waar mogelijk en voeren we de verbeteringen door op een manier dat anderen hier ook weer gebruik van kunnen maken.
diff --git a/apps/frameless.io/pages/index/docs/contact.mdx b/apps/frameless.io/pages/index/docs/contact.mdx
new file mode 100644
index 00000000..fb7958a8
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/contact.mdx
@@ -0,0 +1,17 @@
+import { Image } from "@utrecht/component-library-react";
+
+# Kennis maken?
+
+
+
+## Kom een keer (digitaal) langs!
+
+Ons kantoor zit op Weverssingel 28 in het pittoreske centrum van Amersfoort, maar we werken meestal online! Het team van Frameless werkt namelijk graag vanuit huis, dus of we nou in Enschede, Portugal of Polen zitten, online kan iedereen aansluiten.
+
+Mail ons op [hello@frameless.io](mailto:hello@frameless.io), dan spreken we snel een keer af!
diff --git a/apps/frameless.io/pages/index/docs/projecten.mdx b/apps/frameless.io/pages/index/docs/projecten.mdx
new file mode 100644
index 00000000..487030f3
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/projecten.mdx
@@ -0,0 +1,6 @@
+## Wij werken aan
+
+Herbruikbare componenten onafhankelijk van huisstijl, met een Headless CMS en slimme API's, daar mag je ons voor wakker maken!
+
+Sinds de oprichting van Frameless in 2013 hebben we diverse opdrachten mogen doen, de ene nog leuker en
+ingewikkelder dan de ander.
diff --git a/apps/frameless.io/pages/index/docs/technisch-partner.mdx b/apps/frameless.io/pages/index/docs/technisch-partner.mdx
new file mode 100644
index 00000000..e18e650b
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/technisch-partner.mdx
@@ -0,0 +1,13 @@
+import { TechnicalPartner } from "../illustrations/TechnicalPartner";
+
+# Technisch partner voor toegankelijke, gebruiksvriendelijke webapplicaties.
+
+Frameless ontzorgt bij implementatie, beheer, ondersteuning en toegankelijkheid. We werken Agile en zijn ervaren in transitie van bestaande systemen naar gebruiksvriendelijke, onderhoudbare oplossingen volgens de Common Ground principes.
+
+
+
+- Gebruiksvriendelijkheid voorop, voor eindgebruikers én redactie.
+- Expertise in bouwen en onderhouden van robuuste webapplicaties.
+- WCAG-EM audits en hulp bij het oplossen van toegankelijkheidsproblemen.
+
+[Lees meer over de Frameless aanpak](/#aanpak)
diff --git a/apps/frameless.io/pages/index/docs/toegankelijkheid/partner-in-toegankelijkheid.mdx b/apps/frameless.io/pages/index/docs/toegankelijkheid/partner-in-toegankelijkheid.mdx
new file mode 100644
index 00000000..1079fc9d
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/toegankelijkheid/partner-in-toegankelijkheid.mdx
@@ -0,0 +1,9 @@
+import { AccessiblityPartner } from "../../illustrations/AccessiblityPartner";
+
+# Partner in toegankelijkheid
+
+Met de komst van de European Accessibility Act wordt het toegankelijk maken van een website of webapplicatie nóg belangrijker. Momenteel is digitale toegankelijkheid al verplicht voor overheidsorganisaties, maar in 2025 wordt dit ook verplicht voor alle andere bedrijven.
+
+Benieuwd hoe je ervoor staat, of hulp nodig om WCAG-complient te worden? Frameless kan WCAG-EM audits uitvoeren, tips geven en meehelpen bij het verbeteren van de gevonden problemen en na een aantal maanden een hertest doen. Zo ben je er helemaal klaar voor!
+
+
diff --git a/apps/frameless.io/pages/index/docs/toegankelijkheid/toegankelijkheidsverklaring.mdx b/apps/frameless.io/pages/index/docs/toegankelijkheid/toegankelijkheidsverklaring.mdx
new file mode 100644
index 00000000..7176f968
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/toegankelijkheid/toegankelijkheidsverklaring.mdx
@@ -0,0 +1,5 @@
+# Het uitvoeren van een WCAG audit
+
+Onderzoek doen naar de toegankelijkheid van je website is nodig, maar niet altijd makkelijk. Wij hebben de expertise in huis voor het doen van audits en het opleveren van een toegankelijkheidsverklaring.
+
+We maken een onderzoeksrapport met de gevonden problemen en verwijzen naar [de WCAG paginas van NL Design System](https://nldesignsystem.nl/wcag/) die helpen met het zelf testen en oplossen van de problemen.
diff --git a/apps/frameless.io/pages/index/docs/toegankelijkheid/wcag-eend.mdx b/apps/frameless.io/pages/index/docs/toegankelijkheid/wcag-eend.mdx
new file mode 100644
index 00000000..2df70be7
--- /dev/null
+++ b/apps/frameless.io/pages/index/docs/toegankelijkheid/wcag-eend.mdx
@@ -0,0 +1,7 @@
+# Toegankelijkheid in onze eigen projecten
+
+Wanneer wij een project voor je doen willen we natuurlijk dat dit voor alle gebruikers goed werkt. Daarom doen we standaard een onderzoek volgens de WCAG-EM methode van het W3C. Het onderzoeksrapport maakt bij ons standaard onderdeel uit van de opdracht. En wanneer je dat wilt, dan maken we er ook gewoon gelijk een toegankelijkheidsverklaring van.
+
+## Mogen wij van WCAG-eend dat wel doen?
+
+Volgens [DigiToeganklijk](https://www.digitoegankelijk.nl/toegankelijkheidsverklaring/onderzoek#zelf) wel, wij hebben namelijk de technische kennis, alle benodigde documentatie en het gereedschap in huis!
diff --git a/apps/frameless.io/pages/index/illustrations/AccessiblityPartner.tsx b/apps/frameless.io/pages/index/illustrations/AccessiblityPartner.tsx
new file mode 100644
index 00000000..6fc12220
--- /dev/null
+++ b/apps/frameless.io/pages/index/illustrations/AccessiblityPartner.tsx
@@ -0,0 +1,25 @@
+import { Figure, FigureCaption, FigureProps, Image } from '@utrecht/component-library-react';
+
+export const AccessiblityPartner = (props: FigureProps) => {
+ const labelId = '49skj12kdnmf';
+ const descriptionId = '043o23jenflskdqasld';
+
+ return (
+
+
+
+ Speelse schets van een vrouw die met vergrootglas naar een webpagina kijkt
+
+
+ Illustratie in de huisstijlkleuren van Frameless. Links staat een vrouw met zwart lang haar met een knot
+ bovenop, sportief gekleed in een t-shirt en korte broek. Rechts staan 2 frames alsof het een webpagina is en een
+ code blokje. In de achtergrond decoratieve golven.
+
+
+ );
+};
diff --git a/apps/frameless.io/pages/index/illustrations/Coffee.tsx b/apps/frameless.io/pages/index/illustrations/Coffee.tsx
new file mode 100644
index 00000000..bdab4e97
--- /dev/null
+++ b/apps/frameless.io/pages/index/illustrations/Coffee.tsx
@@ -0,0 +1,20 @@
+import { Figure, FigureCaption, FigureProps, Image } from '@utrecht/component-library-react';
+
+export const Coffee = (props: FigureProps) => {
+ const labelId = '0934wdfhksfjsas';
+ const descriptionId = 'lhjeroqawpodfg12';
+
+ return (
+
+
+
+ Speelse schets van een man met een enorme kop koffie
+
+
+ Illustratie in de huisstijlkleuren van Frameless. De man kijkt gelukzalig terwijl hij achterover leunt van de
+ enorme bak koffie die groter is dan hij. De koffie klotst over de rand en de man steekt zijn linker been uit
+ alsof hij zijn balans bijna niet kan houden.
+
+
+ );
+};
diff --git a/apps/frameless.io/pages/index/illustrations/ImplementationPartner.tsx b/apps/frameless.io/pages/index/illustrations/ImplementationPartner.tsx
new file mode 100644
index 00000000..43d2e0c2
--- /dev/null
+++ b/apps/frameless.io/pages/index/illustrations/ImplementationPartner.tsx
@@ -0,0 +1,25 @@
+import { Figure, FigureCaption, FigureProps, Image } from '@utrecht/component-library-react';
+
+export const ImplementationPartner = (props: FigureProps) => {
+ const labelId = 'oisdfhsdjfkwqsnd';
+ const descriptionId = '12ukebaksjd4jd';
+ return (
+
+
+
+ Speelse schets van een vrouw met haar telefoon in de hand achter een bureau.
+
+
+ Illustratie in de huisstijlkleuren van Frameless. Links zit een vrouw met kort zwart haar en een oorbel in, ze
+ heeft een pluizige trui aan. Ze zit op een comfortabele bureaustoel met wielen en steekt haar benen voor zich
+ uit. Rechts staat haar bueau met een beeldscherm, glas water en een vaas met bloemen. Boven het bureau hangt een
+ ronde transparante lamp met een zichtbaar peertje erin.
+
+
+ );
+};
diff --git a/apps/frameless.io/pages/index/illustrations/TechnicalPartner.tsx b/apps/frameless.io/pages/index/illustrations/TechnicalPartner.tsx
new file mode 100644
index 00000000..bf3df808
--- /dev/null
+++ b/apps/frameless.io/pages/index/illustrations/TechnicalPartner.tsx
@@ -0,0 +1,25 @@
+import { Figure, FigureCaption, FigureProps, Image } from '@utrecht/component-library-react';
+
+export const TechnicalPartner = (props: FigureProps) => {
+ const labelId = '09u2309rejf';
+ const descriptionId = 'kjdqwmednas';
+ return (
+
+
+
+ Speelse schets van twee mensen die samenwerken
+
+
+ Illustratie in de huisstijlkleuren van Frameless. Links staat vrouw met plannen onder haar arm, licht haar in
+ een paardenstaart en een blije uitdrukking. Rechts staat een man met donker haar en een snor. Hij heeft een
+ laptop in zijn hand met het icoon van een peer erop. Hij draagt een gestippelde grote trui en driekwartbroek. Op
+ de achtergrond zie je decoratieve golven.
+
+
+ );
+};
diff --git a/apps/frameless.io/pages/index/illustrations/Workshops.tsx b/apps/frameless.io/pages/index/illustrations/Workshops.tsx
new file mode 100644
index 00000000..efa1f601
--- /dev/null
+++ b/apps/frameless.io/pages/index/illustrations/Workshops.tsx
@@ -0,0 +1,20 @@
+import { Figure, FigureCaption, FigureProps, Image } from '@utrecht/component-library-react';
+
+export const Workshops = (props: FigureProps) => {
+ const labelId = 'zkjd23euhakds';
+ const descriptionId = '091ue0dakj';
+
+ return (
+
+
+
+ Speelse schets van een vrouw met allemaal spraakbubbels en vraagtekens.
+
+
+ Illustratie in de huisstijlkleuren van Frameless. In het midden staat vrouw met een ronde bril, blouse met korte
+ mouwen en broek met een strepenprint. Ze maakt een dansende beweging en staat tussen vraagtekens en lege
+ spraakbubbels.
+
+
+ );
+};
diff --git a/apps/frameless.io/public/font/fira-sans-latin-400-normal.woff2 b/apps/frameless.io/public/font/fira-sans-latin-400-normal.woff2
new file mode 100644
index 00000000..d31eba84
Binary files /dev/null and b/apps/frameless.io/public/font/fira-sans-latin-400-normal.woff2 differ
diff --git a/apps/frameless.io/public/font/fira-sans-latin-600-normal.woff2 b/apps/frameless.io/public/font/fira-sans-latin-600-normal.woff2
new file mode 100644
index 00000000..c938f864
Binary files /dev/null and b/apps/frameless.io/public/font/fira-sans-latin-600-normal.woff2 differ
diff --git a/apps/frameless.io/public/font/oswald-latin-400-normal.woff2 b/apps/frameless.io/public/font/oswald-latin-400-normal.woff2
new file mode 100644
index 00000000..df40e60a
Binary files /dev/null and b/apps/frameless.io/public/font/oswald-latin-400-normal.woff2 differ
diff --git a/apps/frameless.io/public/svg/accessibility-partner.svg b/apps/frameless.io/public/svg/accessibility-partner.svg
new file mode 100644
index 00000000..d3db9ed6
--- /dev/null
+++ b/apps/frameless.io/public/svg/accessibility-partner.svg
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/frameless.io/public/svg/coffee.svg b/apps/frameless.io/public/svg/coffee.svg
new file mode 100644
index 00000000..e595aafd
--- /dev/null
+++ b/apps/frameless.io/public/svg/coffee.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/frameless.io/public/svg/implementation-partner.svg b/apps/frameless.io/public/svg/implementation-partner.svg
new file mode 100644
index 00000000..73d97641
--- /dev/null
+++ b/apps/frameless.io/public/svg/implementation-partner.svg
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/frameless.io/public/svg/technical-partner.svg b/apps/frameless.io/public/svg/technical-partner.svg
new file mode 100644
index 00000000..4e6ecd16
--- /dev/null
+++ b/apps/frameless.io/public/svg/technical-partner.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/frameless.io/public/svg/workshops.svg b/apps/frameless.io/public/svg/workshops.svg
new file mode 100644
index 00000000..3da93a02
--- /dev/null
+++ b/apps/frameless.io/public/svg/workshops.svg
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/frameless.io/renderer/+config.ts b/apps/frameless.io/renderer/+config.ts
new file mode 100644
index 00000000..03c197ad
--- /dev/null
+++ b/apps/frameless.io/renderer/+config.ts
@@ -0,0 +1,19 @@
+import type { Config } from 'vike/types';
+
+// https://vike.dev/config
+export default {
+ // https://vike.dev/clientRouting
+ clientRouting: false,
+ // https://vike.dev/meta
+ meta: {
+ // Define new setting 'title'
+ title: {
+ env: { server: true, client: false },
+ },
+ // Define new setting 'description'
+ description: {
+ env: { server: true },
+ },
+ },
+ hydrationCanBeAborted: true,
+} satisfies Config;
diff --git a/apps/frameless.io/renderer/+onRenderClient.tsx b/apps/frameless.io/renderer/+onRenderClient.tsx
new file mode 100644
index 00000000..2889da80
--- /dev/null
+++ b/apps/frameless.io/renderer/+onRenderClient.tsx
@@ -0,0 +1,33 @@
+import ReactDOM from 'react-dom/client';
+import type { OnRenderClientAsync } from 'vike/types';
+import { Layout } from './Layout';
+import { getPageTitle } from './getPageTitle';
+
+let root: ReactDOM.Root;
+
+// https://vike.dev/onRenderClient
+export const onRenderClient: OnRenderClientAsync = async (pageContext): ReturnType => {
+ const { Page } = pageContext;
+
+ // This onRenderClient() hook only supports SSR, see https://vike.dev/render-modes for how to modify onRenderClient()
+ // to support SPA
+ if (!Page) throw new Error('My onRenderClient() hook expects pageContext.Page to be defined');
+
+ const container = document.getElementById('react-root');
+ if (!container) throw new Error('DOM element #react-root not found');
+
+ const page = (
+
+
+
+ );
+ if (pageContext.isHydration) {
+ root = ReactDOM.hydrateRoot(container, page);
+ } else {
+ if (!root) {
+ root = ReactDOM.createRoot(container);
+ }
+ root.render(page);
+ }
+ document.title = getPageTitle(pageContext);
+};
diff --git a/apps/frameless.io/renderer/+onRenderHtml.tsx b/apps/frameless.io/renderer/+onRenderHtml.tsx
new file mode 100644
index 00000000..f932ec30
--- /dev/null
+++ b/apps/frameless.io/renderer/+onRenderHtml.tsx
@@ -0,0 +1,46 @@
+import logoUrl from '@frameless/assets/src/logo-frameless.svg';
+import ReactDOMServer from 'react-dom/server';
+import { dangerouslySkipEscape, escapeInject } from 'vike/server';
+import type { OnRenderHtmlAsync } from 'vike/types';
+import { Layout } from './Layout';
+import { getPageTitle } from './getPageTitle';
+
+// https://vike.dev/onRenderHtml
+export const onRenderHtml: OnRenderHtmlAsync = async (pageContext): ReturnType => {
+ const { Page } = pageContext;
+
+ // This onRenderHtml() hook only supports SSR, see https://vike.dev/render-modes for how to modify
+ // onRenderHtml() to support SPA
+ if (!Page) throw new Error('My onRenderHtml() hook expects pageContext.Page to be defined');
+
+ // Alternatively, we can use an HTML stream, see https://vike.dev/streaming
+ const pageHtml = ReactDOMServer.renderToString(
+
+
+ ,
+ );
+
+ const title = getPageTitle(pageContext);
+ const desc = pageContext.data?.description || pageContext.config.description || 'Demo of using Vike';
+
+ const documentHtml = escapeInject`
+
+
+
+
+
+
+
+
+
+ ${title}
+
+
+ ${dangerouslySkipEscape(pageHtml)}
+
+ `;
+
+ return {
+ documentHtml,
+ };
+};
diff --git a/apps/frameless.io/renderer/Layout.tsx b/apps/frameless.io/renderer/Layout.tsx
new file mode 100644
index 00000000..0b6c4dd1
--- /dev/null
+++ b/apps/frameless.io/renderer/Layout.tsx
@@ -0,0 +1,16 @@
+import { Document } from '@utrecht/component-library-react';
+import clsx from 'clsx';
+import React from 'react';
+import type { PageContext } from 'vike/types';
+import { PageContextProvider } from './usePageContext';
+import './global.css';
+
+export const Layout = ({ children, pageContext }: { children: React.ReactNode; pageContext: PageContext }) => {
+ return (
+
+
+ {children}
+
+
+ );
+};
diff --git a/apps/frameless.io/renderer/getPageTitle.ts b/apps/frameless.io/renderer/getPageTitle.ts
new file mode 100644
index 00000000..fca1984c
--- /dev/null
+++ b/apps/frameless.io/renderer/getPageTitle.ts
@@ -0,0 +1,12 @@
+import type { PageContext } from 'vike/types';
+
+export const getPageTitle = (pageContext: PageContext): string => {
+ const title =
+ // Title defined dynamically by data()
+ pageContext.data?.title ||
+ // Title defined statically by /pages/some-page/+title.js (or by `export default { title }` in /pages/some-page/+config.js)
+ // The setting 'pageContext.config.title' is a custom setting we defined at ./+config.ts
+ pageContext.config.title ||
+ 'Frameless';
+ return title;
+};
diff --git a/apps/frameless.io/renderer/global.css b/apps/frameless.io/renderer/global.css
new file mode 100644
index 00000000..e23ea92e
--- /dev/null
+++ b/apps/frameless.io/renderer/global.css
@@ -0,0 +1,161 @@
+@import "@frameless/design-tokens/dist/index.css";
+@import "@utrecht/component-library-css/dist/index.css";
+@import "@frameless/components-css/dist/index.css";
+
+@font-face {
+ font-display: swap;
+ font-family: "Fira Sans";
+ font-style: normal;
+ font-weight: 400;
+ src:
+ local("Fira Sans"),
+ url("/font/fira-sans-latin-400-normal.woff2") format("woff2");
+ unicode-range: U+000-5FF; /* Downloads only latin glyphs */
+}
+
+@font-face {
+ font-display: swap;
+ font-family: "Fira Sans";
+ font-style: normal;
+ font-weight: 600;
+ src:
+ local("Firava"),
+ url("/font/fira-sans-latin-600-normal.woff2") format("woff2");
+ unicode-range: U+000-5FF; /* Downloads only latin glyphs */
+}
+
+@font-face {
+ font-display: swap;
+ font-family: "Oswald";
+ font-style: normal;
+ font-weight: 400;
+ src: url("/font/oswald-latin-400-normal.woff2") format("woff2");
+ unicode-range: U+000-5FF; /* Downloads only latin glyphs */
+}
+
+.frameless-theme {
+ --utrecht-space-around: 1;
+ --frameless-illustration-color: #122529;
+ --frameless-illustration-background-color: white;
+ --frameless-illustration-floor-color: #a9c7cb;
+ --frameless-illustration-background-detail-color: #295960;
+ --frameless-illustration-detail-color: #51929a;
+ --utrecht-logo-min-block-size: auto;
+ --utrecht-logo-min-inline-size: 42px;
+
+ hyphenate-limit-chars: 12 8 4;
+ hyphenate-limit-lines: 2;
+ hyphens: auto;
+ overflow-wrap: break-word;
+ word-break: break-word;
+}
+
+.utrecht-heading-1,
+.utrecht-heading-2,
+.utrecht-heading-3,
+.utrecht-heading-4,
+.utrecht-heading-5,
+.utrecht-heading-6 {
+ text-wrap: balance;
+}
+
+.utrecht-logo > .frameless-logo-image__svg {
+ display: block;
+}
+
+.utrecht-paragraph:last-child {
+ --utrecht-paragraph-margin-block-end: 0;
+}
+
+.utrecht-heading-3:first-child {
+ --utrecht-heading-3-margin-block-start: 0;
+}
+
+.utrecht-nav-bar {
+ margin-block-start: 32px;
+}
+
+details[open] summary {
+ margin-block-end: 1.5rem;
+}
+
+.utrecht-img {
+ max-inline-size: 100%;
+}
+
+.frameless-illustration {
+ max-inline-size: 22rem;
+ padding-block-end: 1.5rem;
+ padding-block-start: 1.5rem;
+}
+
+@media (prefers-color-scheme: dark) {
+ .frameless-theme {
+ --utrecht-document-background-color: var(--utrecht-document-inverse-background-color);
+ --utrecht-document-color: var(--utrecht-document-inverse-color);
+ --utrecht-paragraph-color: var(--utrecht-document-inverse-color);
+ --utrecht-paragraph-lead-color: var(--utrecht-document-inverse-color);
+ --utrecht-heading-1-color: var(--utrecht-document-inverse-color);
+ --utrecht-heading-2-color: var(--utrecht-document-inverse-color);
+ --utrecht-heading-3-color: var(--utrecht-document-inverse-color);
+ --utrecht-heading-4-color: var(--utrecht-document-inverse-color);
+ --utrecht-heading-5-color: var(--utrecht-document-inverse-color);
+ --utrecht-heading-6-color: var(--utrecht-document-inverse-color);
+ --utrecht-link-color: var(--frameless-color-petrol-70);
+ --utrecht-link-hover-color: var(--frameless-color-petrol-80);
+ --utrecht-link-text-decoration-color: currentColor;
+ --frameless-card-background-color: var(--utrecht-document-inverse-background-color);
+ --frameless-card-border-color: var(--frameless-color-gray-60);
+ --frameless-card-border-width: 1px;
+ --frameless-card-box-shadow-color: var(--frameless-color-black);
+ --frameless-section-alternate-background-color: var(--frameless-color-petrol-20);
+ --frameless-section-alternate-card-background-color: var(--utrecht-document-inverse-background-color);
+ --frameless-section-alternate-card-border-width: 1px;
+ --frameless-section-alternate-card-border-color: var(--frameless-color-gray-60);
+ --utrecht-unordered-list-marker-color: white;
+ summary {
+ color: var(--utrecht-document-inverse-color);
+ }
+
+ .frameless-illustration--backdrop {
+ background-color: hsla(0 0% 100%);
+ border-radius: 40px;
+ padding-block-end: 16px;
+ padding-block-start: 16px;
+ padding-inline-end: 16px;
+ padding-inline-start: 16px;
+ }
+ }
+}
+
+@media screen and (width <= 400px) {
+ .frameless-theme {
+ --frameless-logo-text-font-size: 2rem;
+ --utrecht-heading-2-font-size: 1.5rem;
+ --utrecht-heading-3-font-size: 1.4rem;
+ --utrecht-heading-4-font-size: 1.3rem;
+ --utrecht-heading-5-font-size: 1.2rem;
+ --utrecht-heading-6-font-size: 1rem;
+ --utrecht-logo-min-inline-size: 32px;
+ --frameless-logo-wrapper-gap: 1ch;
+ }
+}
+
+@media screen and (width <= 350px) {
+ .frameless-theme {
+ --frameless-logo-wrapper-flex-direction: column;
+ --frameless-logo-wrapper-gap: 1ch;
+ }
+
+ .frameless-logo__wrapper .utrecht-logo {
+ display: none;
+ }
+}
+
+@media screen and (width <= 300px) {
+ .frameless-page-header__container {
+ display: flex;
+ flex-wrap: wrap-reverse;
+ gap: 1rem;
+ }
+}
diff --git a/apps/frameless.io/renderer/types.ts b/apps/frameless.io/renderer/types.ts
new file mode 100644
index 00000000..534dfbce
--- /dev/null
+++ b/apps/frameless.io/renderer/types.ts
@@ -0,0 +1,27 @@
+import React from 'react';
+
+// https://vike.dev/pageContext#typescript
+declare global {
+ export namespace Vike {
+ export interface PageContext {
+ Page: () => React.ReactElement;
+ data?: {
+ /** Value for defined dynamically by by /pages/some-page/+data.js */
+ title?: string;
+ /** Value for defined dynamically */
+ description?: string;
+ };
+ config: {
+ /** Value for defined statically by /pages/some-page/+title.js (or by `export default { title }` in /pages/some-page/+config.js) */
+ title?: string;
+ /** Value for defined statically */
+ description?: string;
+ };
+ /** https://vike.dev/render */
+ abortReason?: string;
+ }
+ }
+}
+
+// Tell TypeScript this file isn't an ambient module
+export {};
diff --git a/apps/frameless.io/renderer/usePageContext.tsx b/apps/frameless.io/renderer/usePageContext.tsx
new file mode 100644
index 00000000..92a91854
--- /dev/null
+++ b/apps/frameless.io/renderer/usePageContext.tsx
@@ -0,0 +1,21 @@
+import React, { useContext } from 'react';
+import type { PageContext } from 'vike/types';
+
+const Context = React.createContext(undefined as unknown as PageContext);
+
+export const PageContextProvider = ({
+ pageContext,
+ children,
+}: {
+ pageContext: PageContext;
+ children: React.ReactNode;
+}) => {
+ return {children} ;
+};
+
+/** https://vike.dev/usePageContext */
+// eslint-disable-next-line react-refresh/only-export-components
+export const usePageContext = () => {
+ const pageContext = useContext(Context);
+ return pageContext;
+};
diff --git a/apps/frameless.io/rollup.config.mjs b/apps/frameless.io/rollup.config.mjs
deleted file mode 100644
index b9bd3f5f..00000000
--- a/apps/frameless.io/rollup.config.mjs
+++ /dev/null
@@ -1,57 +0,0 @@
-import postcss from "rollup-plugin-postcss";
-import discardDuplicates from "postcss-discard-duplicates";
-import purgecss from "@fullhuman/postcss-purgecss";
-import { rollupPluginHTML as html } from "@web/rollup-plugin-html";
-import copy from "rollup-plugin-copy";
-
-export default [
- {
- input: "src/index.scss",
- output: {
- dir: "./dist",
- compact: true,
- },
- plugins: [
- // Transform SCSS to one CSS file with only used CSS
- postcss({
- extensions: [".css", ".scss"],
- minimize: true,
- plugins: [
- discardDuplicates(),
- purgecss({
- content: ["./src/index.html"],
- }),
- ],
- extract: true,
- }),
- // Copy html file to enable replacing of the scss import to the minified css file created by the previous step
- // This enables us to have the html plugin automatically build a hash for the minified css file in the next step
- copy({
- targets: [
- {
- src: "./src/index.html",
- dest: "./tmp",
- transform: (contents) =>
- contents.toString().replace("./index.scss", "../dist/index.css"),
- },
- // Copy font-files in a directory expected by the font-css files
- {
- src: "./node_modules/@fontsource/fira-sans/files",
- dest: "./dist/assets",
- },
- {
- src: "./node_modules/@fontsource/oswald/files",
- dest: "./dist/assets",
- },
- ],
- }),
- ],
- },
- // Use the html file with a reference to the minified css
- // And create a hashed CSS reference to ensure new versions will reach all users regardless of cache settings
- {
- input: "./tmp/index.html",
- output: { dir: "./dist" },
- plugins: [html()],
- },
-];
diff --git a/apps/frameless.io/server/tsconfig.json b/apps/frameless.io/server/tsconfig.json
new file mode 100644
index 00000000..a8441ea1
--- /dev/null
+++ b/apps/frameless.io/server/tsconfig.json
@@ -0,0 +1,6 @@
+{
+ "extends": "../tsconfig.json",
+ "compilerOptions": {
+ "noEmit": true
+ }
+}
diff --git a/apps/frameless.io/src/font.scss b/apps/frameless.io/src/font.scss
deleted file mode 100644
index aed5ec84..00000000
--- a/apps/frameless.io/src/font.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-@import "~@fontsource/fira-sans/200";
-@import "~@fontsource/fira-sans/200-italic";
-@import "~@fontsource/fira-sans/300";
-@import "~@fontsource/fira-sans/300-italic";
-@import "~@fontsource/fira-sans/400";
-@import "~@fontsource/fira-sans/400-italic";
-@import "~@fontsource/fira-sans/500";
-@import "~@fontsource/fira-sans/500-italic";
-@import "~@fontsource/fira-sans/600";
-@import "~@fontsource/fira-sans/600-italic";
-@import "~@fontsource/fira-sans/700";
-@import "~@fontsource/fira-sans/700-italic";
-@import "~@fontsource/fira-sans/800";
-@import "~@fontsource/fira-sans/800-italic";
-@import "~@fontsource/fira-sans/900";
-@import "~@fontsource/fira-sans/900-italic";
-@import "~@fontsource/oswald/200";
-@import "~@fontsource/oswald/300";
-@import "~@fontsource/oswald/400";
-@import "~@fontsource/oswald/500";
-@import "~@fontsource/oswald/600";
-@import "~@fontsource/oswald/700";
diff --git a/apps/frameless.io/src/index.html b/apps/frameless.io/src/index.html
deleted file mode 100644
index 71cb7ab7..00000000
--- a/apps/frameless.io/src/index.html
+++ /dev/null
@@ -1,703 +0,0 @@
-
-
-
-
-
-
-
-
-
- Frameless — experts in samenwerken aan websites
-
-
-
-
-
-
-
-
-
-
-
- Technisch partner voor toegankelijke, gebruiksvriendelijke webapplicaties.
-
-
- Frameless ontzorgt bij implementatie, beheer, ondersteuning en toegankelijkheid. We werken Agile en
- zijn ervaren in transitie van bestaande systemen naar gebruiksvriendelijke, onderhoudbare oplossingen
- volgens de Common Ground principes.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Speelse schets van twee mensen die samenwerken
-
-
- Illustratie in de huisstijlkleuren van Frameless. Links staat vrouw met plannen onder haar arm, licht
- haar in een paardenstaart en een blije uitdrukking. Rechts staat een man met donker haar en een snor.
- Hij heeft een laptop in zijn hand met het icoon van een peer erop. Hij draagt een gestippelde grote trui
- en driekwartbroek. Op de achtergrond zie je decoratieve golven.
-
-
-
-
- Gebruiksvriendelijkheid voorop, voor eindgebruikers én redactie.
-
-
- Expertise in bouwen en onderhouden van robuuste webapplicaties.
-
-
- WCAG-EM audits en hulp bij het oplossen van toegankelijkheidsproblemen.
-
-
-
Lees meer over de Frameless aanpak
-
-
-
-
-
-
Hulp nodig?
-
- Sta je voor een technische of organistorische uitdaging? Na een goede kop koffie zijn wij een ideale
- sparringspartner!
-
-
-
-
-
-
-
- Speelse schets van een man met een enorme kop koffie
-
-
- Illustratie in de huisstijlkleuren van Frameless. De man kijkt gelukzalig terwijl hij achterover leunt van
- de enorme bak koffie die groter is dan hij. De koffie klotst over de rand en de man steekt zijn linker
- been uit alsof hij zijn balans bijna niet kan houden.
-
-
-
- Tijdens een kennismaking bespreken we waar jullie mee bezig zijn, en bekijken we op welke manier Frameless
- of ons netwerk kunnen helpen.
-
-
Plan van aanpak
-
- We onderzoeken welke oplossingen, technieken en expertise er in de organisatie aanwezig is om daarna met een
- plan van aanpak te komen voor migratie of vernieuwing. Dat doen we graag samen met betrokken expertise uit
- de organisatie én andere leveranciers.
-
-
Ontzorgen bij uitvoering
-
- We helpen graag bij het aansturen van leveranciers of teams bij het uitvoeren of aansturen en zorgen dat het
- in de organisatie ingebed wordt. Daarnaast hebben we zelf mensen in dienst en experts in ons netwerk die de
- opdracht desgewenst kunnen uitvoeren en het eindresultaat op toegankelijkheid kunnen toetsen.
-
-
Efficiënt en herkenbaar
-
- We zorgen dat de oplossing aansluit bij bestaande oplossingen, en doen ons best om dubbel werk te voorkomen.
- Met gebruik van de NL Design System aanpak zorgen we dat we hergebruiken waar mogelijk en voeren we
- verbeteringen door op een manier dat ook anderen er gebruik van kunnen maken.
-
-
- Neem gelijk contact op Bekijk voorbeelden van ons werk
-
-
-
-
-
-
Partner in toegankelijkheid
-
- Met de komst van de European Accessibility Act wordt het toegankelijk maken van een website of webapplicatie
- nóg belangrijker. Momenteel is digitale toegankelijkheid al verplicht voor overheidsorganisaties, maar in
- 2025 wordt dit ook verplicht voor alle andere bedrijven.
-
-
- Benieuwd hoe je ervoor staat, of hulp nodig om WCAG-complient te worden? Frameless kan WCAG-EM audits
- uitvoeren, tips geven en meehelpen bij het verbeteren van de gevonden problemen en na een aantal maanden een
- hertest doen. Zo ben je er helemaal klaar voor!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Speelse schets van een vrouw die met vergrootglas naar een webpagina kijkt
-
-
- Illustratie in de huisstijlkleuren van Frameless. Links staat een vrouw met zwart lang haar met een knot
- bovenop, sportief gekleed in een t-shirt en korte broek. Rechts staan 2 frames alsof het een webpagina is
- en een code blokje. In de achtergrond decoratieve golven.
-
-
-
Als Frameless ondersteunen wij graag jouw organisatie bij:
-
-
-
-
-
WCAG audit
-
- Onderzoek doen naar de toegankelijkheid van je website is nodig, maar niet altijd makkelijk. Wij
- hebben de expertise in huis voor het doen van audits en het opleveren van een
- toegankelijkheidsverklaring.
-
-
- We maken een onderzoeksrapport met de gevonden problemen en verwijzen naar
- de WCAG paginas van NL Design System
- die helpen met het zelf testen en oplossen van de problemen.
-
-
Een audit door ons laten doen?
-
- Vraag een offerte aan
-
-
-
-
-
-
Eigen projecten
-
- Wanneer wij een project voor je doen willen we natuurlijk dat hij voor alle gebruikers goed werkt.
- Daarom doen we standaard een onderzoek volgens de WCAG-EM methode van het W3C. Het onderzoeksrapport
- is bij ons onderdeel van de opdracht en wanneer je dat wil maken we er ook gewoon gelijk een
- toegankelijkheidsverklaring van.
-
-
Mogen wij van WCAG-eend dat wel doen?
-
- Volgens
- DigiToeganklijk
- wel, wij hebben de technische kennis, alle benodigde documentatie en het gereedschap in huis!
-
-
-
-
-
-
-
-
-
-
Wij werken aan
-
- Herbruikbare componenten onafhankelijk van huisstijl, met een Headless CMS en slimme API's, daar mag je
- ons voor wakker maken!
-
-
- Sinds de oprichting van Frameless in 2013 hebben we diverse opdrachten mogen doen, de ene nog leuker en
- ingewikkelder dan de ander. Hieronder hebben we er een aantal voor je uitgelicht
-
-
-
-
-
-
NL Design System
-
- Frameless heeft al aan meerdere white-label design systems mogen werken, zoals bijvoorbeeld voor
- Backbase
-
-
- Maar het meest trots zijn we natuurlijk op onze bijdrage aan
- NL Design System
- Waar Robbert en Yolijn als Product Manager en Design System lead samenwerken aan het mooiste design
- system van Nederland!
-
-
-
-
-
-
Headless CMS
-
- Afgelopen jaren heeft Frameless voor de gemeente Utrecht diverse projecten met Strapi ontwikkeld,
- waar inmiddels twee websites op draaien en één API: het Digitaal Loket, het VTH Programma-verslag en
- de Samenwerkende Catalogi API.
-
-
- Meer weten over dit CMS?
- https://cms.frameless.io
-
-
-
-
-
-
-
-
-
-
Utrecht Design System
-
- Meer dan 80 componenten ontwikkeld voor
- Utrecht Design System
- in verschillende technieken: als CSS, HTML, React, Angular, Vue en als Web Component.
-
-
- Deze componenten worden inmiddels ook veel gebruikt door uiteenlopende projecten in de NL Design
- System community.
-
-
-
-
-
-
Den Haag Design System
-
- Begeleiding van het
- Den Haag Design System
- team en leveranciers met open source bouwen volgens de NL Design System architectuur.
-
-
-
-
-
-
Digitaal Loket van gemeente Utrecht
-
- Ontwikkeling van CMS voor de Producten en Diensten Catalogus, en de nieuwe website ontwikkelen als
- headless frontend op basis van NL Design System.Digitaal Loket van gemeente Utrecht .
-
-
-
-
-
-
- Meer projecten
-
-
-
-
-
- Website voor Veiligheid Toezicht en Handhaving
-
-
- De cijfers voor het jaarlijks verslag zijn nu voor iedereen beschikbaar op
- https://vth-programma-verslag.digitaal.utrecht.nl
-
-
- Wij maakten hiervoor in samenwerking met de beleidsmedewerkers een uitbreiding op het CMS voor
- Producten en Diesten Catalogus en NL Design System.
-
-
-
-
-
-
Huwelijksplanner
-
- Front-end ontwikkeling voor de Huwelijksplanner CMS op basis van NL Design System componenten.
-
-
-
-
-
-
WMEBV Gebruikerstests
-
- gemeente Voorbeeld : ontwikkeling van demo-website waar Vereniging van Nederlandse Gemeenten (VNG) gebruikerstesten
- doet, om gemeenten op weg te helpen met voldoen aan de WMEBV met NL Design System.
-
-
-
-
-
-
Rotterdam Design System
-
- We hebben voor gemeente Rotterdam een Proof-of-concept
- Rotterdam Design System
- gemaakt. Daarnaast hebben we onderzocht op welke manier dit design system in het interessante
- Rotterdam ecosysteem met Mendix en Apache Wicket zou passen.
-
-
-
-
-
-
OpenCatelogi
-
- We hebben
- OpenCatalogi.nl
- gemigreerd naar React componenten uit de NL Design System community. De huisstijl keuzes van
- gemeente Rotterdam die hiervoor nodig waren hebben we als een NL Design System thema beschikbaar
- gemaakt.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/frameless.io/src/index.scss b/apps/frameless.io/src/index.scss
deleted file mode 100644
index 94305e1c..00000000
--- a/apps/frameless.io/src/index.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-@import "~@frameless/components-css";
-@import "~@frameless/design-tokens";
-@import "~@utrecht/component-library-css";
-@import "../../../packages/storybook/src/templates/index";
-@import "./font";
-
-.utrecht-document--html-body {
- margin-block-end: 0;
- margin-block-start: 0;
- margin-inline-end: 0;
- margin-inline-start: 0;
-}
diff --git a/apps/frameless.io/src/mdxUtils.ts b/apps/frameless.io/src/mdxUtils.ts
new file mode 100644
index 00000000..bd957eab
--- /dev/null
+++ b/apps/frameless.io/src/mdxUtils.ts
@@ -0,0 +1,49 @@
+import {
+ Code,
+ Emphasis,
+ Heading1,
+ Heading2,
+ Heading3,
+ Heading4,
+ Heading5,
+ Heading6,
+ Image,
+ Link,
+ OrderedList,
+ Paragraph,
+ UnorderedList,
+} from '@utrecht/component-library-react';
+
+export const customComponents = {
+ code: Code,
+ a: Link,
+ em: Emphasis,
+ ul: UnorderedList,
+ ol: OrderedList,
+ img: Image,
+ h1: Heading1,
+ h2: Heading2,
+ h3: Heading3,
+ h4: Heading4,
+ h5: Heading5,
+ h6: Heading6,
+ p: Paragraph,
+};
+
+export const mapHeadings = (level: 1 | 2 | 3 | 4 | 5 | 6, components: { [key: string]: unknown }) => {
+ const headingMap = {
+ 1: { h1: Heading1, h2: Heading2, h3: Heading3, h4: Heading4, h5: Heading5 },
+ 2: { h1: Heading2, h2: Heading3, h3: Heading4, h4: Heading5, h5: Heading6 },
+ 3: { h1: Heading3, h2: Heading4, h3: Heading5, h4: Heading6, h5: Heading6 },
+ 4: { h1: Heading4, h2: Heading5, h3: Heading6, h4: Heading6, h5: Heading6 },
+ 5: { h1: Heading5, h2: Heading6, h3: Heading6, h4: Heading6, h5: Heading6 },
+ 6: { h1: Heading6, h2: Heading6, h3: Heading6, h4: Heading6, h5: Heading6 },
+ };
+
+ return { ...components, ...headingMap[level] };
+};
+
+export const omitHeading1 = (components: { [key: string]: unknown }) => ({
+ ...components,
+ h1: () => null,
+});
diff --git a/apps/frameless.io/tsconfig.json b/apps/frameless.io/tsconfig.json
new file mode 100644
index 00000000..0f2c71cf
--- /dev/null
+++ b/apps/frameless.io/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "compilerOptions": {
+ "strict": true,
+ "module": "ES2020",
+ "target": "ES2020",
+ "moduleResolution": "Bundler",
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
+ "types": ["vite/client"],
+ "jsx": "react-jsx",
+ "skipLibCheck": true,
+ "esModuleInterop": true
+ },
+ "ts-node": {
+ "transpileOnly": true,
+ "esm": true
+ }
+}
diff --git a/apps/frameless.io/types/mdx.d.ts b/apps/frameless.io/types/mdx.d.ts
new file mode 100644
index 00000000..42016543
--- /dev/null
+++ b/apps/frameless.io/types/mdx.d.ts
@@ -0,0 +1,5 @@
+// types/mdx.d.ts
+declare module '*.mdx' {
+ let MDXComponent: (props) => JSX.Element;
+ export default MDXComponent;
+}
diff --git a/apps/frameless.io/vite.config.ts b/apps/frameless.io/vite.config.ts
new file mode 100644
index 00000000..0fa20bdf
--- /dev/null
+++ b/apps/frameless.io/vite.config.ts
@@ -0,0 +1,11 @@
+import mdx from '@mdx-js/rollup';
+import react from '@vitejs/plugin-react-swc';
+import vike from 'vike/plugin';
+import { UserConfig } from 'vite';
+import { compression } from 'vite-plugin-compression2';
+
+const config: UserConfig = {
+ plugins: [compression({ algorithm: 'brotliCompress' }), vike({ prerender: true }), mdx(), react()],
+};
+
+export default config;
diff --git a/package.json b/package.json
index 18e87d71..2576033f 100644
--- a/package.json
+++ b/package.json
@@ -18,35 +18,38 @@
"./proprietary/*"
],
"devDependencies": {
- "@lerna-lite/cli": "3.5.1",
- "@lerna-lite/publish": "3.5.2",
- "@lerna-lite/run": "3.5.1",
- "@lerna-lite/version": "3.5.2",
- "@types/node": "20.14.2",
- "@typescript-eslint/eslint-plugin": "7.13.0",
- "@typescript-eslint/parser": "7.13.0",
+ "@lerna-lite/cli": "3.9.3",
+ "@lerna-lite/publish": "3.9.3",
+ "@lerna-lite/run": "3.9.3",
+ "@lerna-lite/version": "3.9.3",
+ "@types/node": "20.16.11",
+ "@typescript-eslint/eslint-plugin": "7.18.0",
+ "@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
- "eslint-plugin-import": "2.29.1",
+ "eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mdx": "3.1.5",
- "eslint-plugin-react": "7.34.2",
- "husky": "9.0.11",
- "lint-staged": "15.2.7",
- "markdownlint-cli": "0.41.0",
+ "eslint-plugin-react": "7.37.1",
+ "husky": "9.1.6",
+ "lint-staged": "15.2.10",
+ "markdownlint-cli": "0.42.0",
"npm-check-updates": "16.14.20",
"npm-package-json-lint": "7.1.0",
"npm-run-all": "4.1.5",
- "postcss": "8.4.38",
- "prettier": "3.3.2",
- "stylelint": "16.6.1",
+ "postcss": "8.4.47",
+ "prettier": "3.3.3",
+ "react": "18.3.1",
+ "react-dom": "18.3.1",
+ "stylelint": "16.10.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-order": "6.0.4",
- "typescript": "5.4.5"
+ "typescript": "5.6.3"
},
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
+ "dev": "lerna run --no-bail dev",
"lint": "npm-run-all --continue-on-error lint:** lint-workspaces",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint --ext .js,.cjs,.mjs,.json,.jsx,.mdx,.ts,.tsx --report-unused-disable-directives .",
diff --git a/packages/components-css/logo/index.scss b/packages/components-css/logo/index.scss
index 2cb6364f..852ec18a 100644
--- a/packages/components-css/logo/index.scss
+++ b/packages/components-css/logo/index.scss
@@ -1,9 +1,11 @@
-// LOGO (XL) STYLING
.frameless-logo__wrapper {
align-items: center;
+ container-name: logowrapper;
display: flex;
flex-basis: min-content;
- flex-direction: row;
+ flex-direction: var(--frameless-logo-wrapper-flex-direction, row);
+ gap: var(--frameless-logo-wrapper-gap, 2ch);
+ word-break: keep-all;
}
.frameless-logo__text {
@@ -16,44 +18,3 @@
margin-block-start: 0;
text-transform: var(--frameless-logo-text-text-transform);
}
-
-// RESPONSIVENESS
-
-// LOGO SMALL (60px - 185Ppx) | Alleen kleine SVG
-@container logowrapper (min-width: 60px) and (max-width: 185px) {
- .frameless-logo__text {
- display: none;
- }
-}
-
-// LOGO MEDIUM (151px - 250px) | Kleine Text en SVG (onder elkaar)
-
-// @Media voor flex column
-@media (186px <= width <= 337px) {
- .frameless-logo__wrapper {
- display: flex;
- flex-direction: column;
- gap: 0.2rem;
- }
-}
-
-// @Container voor Text + Logo klein
-@container logowrapper (min-width: 186px) and (max-width: 300px) {
- .utrecht-logo {
- transform: scale(0.55);
- }
-
- .frameless-logo__text {
- font-size: var(--frameless-logo-text-small-font-size);
- margin-block: 0;
- margin-block-end: 0.5em;
- margin-inline: 0;
- }
-}
-
-// LOGO LARGE (251px - 299px) | Kleine Text en SVG (naast elkaar)
-@container logowrapper (min-width: 301px) and (max-width: 374px) {
- .frameless-logo__text {
- font-size: var(--frameless-logo-text-small-font-size);
- }
-}
diff --git a/packages/components-css/mobile-menu/index.scss b/packages/components-css/mobile-menu/index.scss
index 5032279d..5fd7178f 100644
--- a/packages/components-css/mobile-menu/index.scss
+++ b/packages/components-css/mobile-menu/index.scss
@@ -2,3 +2,15 @@
display: flex;
justify-content: flex-end;
}
+
+.frameless-mobile-menu__nav {
+ --utrecht-unordered-list-padding-inline-start: 0;
+ --utrecht-unordered-list-item-padding-inline-start: 0;
+ --utrecht-unordered-list-line-height: 2;
+
+ margin-block-start: 1rem;
+}
+
+.frameless-mobile-menu__nav-list .utrecht-unordered-list__item::marker {
+ content: none;
+}
diff --git a/packages/components-css/package.json b/packages/components-css/package.json
index 97efbb8d..cddbbaea 100644
--- a/packages/components-css/package.json
+++ b/packages/components-css/package.json
@@ -7,5 +7,17 @@
"keywords": [
"nl-design-system"
],
- "private": true
+ "private": true,
+ "scripts": {
+ "build": "rollup --config ./rollup.config.mjs",
+ "clean": "rimraf dist"
+ },
+ "main": "dist/index.css",
+ "devDependencies": {
+ "postcss": "8.4.47",
+ "postcss-discard-duplicates": "7.0.1",
+ "rimraf": "5.0.10",
+ "rollup": "4.24.0",
+ "rollup-plugin-postcss": "4.0.2"
+ }
}
diff --git a/packages/components-css/page-content/index.scss b/packages/components-css/page-content/index.scss
index edb462d2..0fd4cfca 100644
--- a/packages/components-css/page-content/index.scss
+++ b/packages/components-css/page-content/index.scss
@@ -7,3 +7,13 @@
padding-inline-end: var(--frameless-page-content-padding-inline-end);
padding-inline-start: var(--frameless-page-content-padding-inline-start);
}
+
+.frameless-page-header__webcomponent,
+.frameless-page-header__mobile-nav {
+ visibility: hidden;
+}
+
+.hydrated .frameless-page-header__webcomponent,
+.hydrated .frameless-page-header__mobile-nav {
+ visibility: visible;
+}
diff --git a/packages/components-css/page-header/index.scss b/packages/components-css/page-header/index.scss
index f998103e..1380561f 100644
--- a/packages/components-css/page-header/index.scss
+++ b/packages/components-css/page-header/index.scss
@@ -1,4 +1,5 @@
.frameless-page-header__container {
+ align-items: center;
display: grid;
grid-auto-columns: 1fr auto;
grid-auto-flow: column;
diff --git a/packages/components-css/rollup.config.mjs b/packages/components-css/rollup.config.mjs
new file mode 100644
index 00000000..7d1c271a
--- /dev/null
+++ b/packages/components-css/rollup.config.mjs
@@ -0,0 +1,71 @@
+import postcss from "rollup-plugin-postcss";
+import { Comment } from "postcss";
+import discardDuplicates from "postcss-discard-duplicates";
+
+const isLicenseComment = (str) => /@license/.test(str);
+
+const removeComments = ({ keepLicense = false }) => {
+ return (css) => {
+ css.walk((node) => {
+ if (node.type === "comment") {
+ if (keepLicense && isLicenseComment(node.text)) {
+ return;
+ }
+ node.remove();
+ }
+ });
+ };
+};
+
+const mergeLicenseComments = () => {
+ return (css) => {
+ // Add all licenses to a `Map`, to deduplicate the license declarations.
+ const licenses = new Map();
+ css.walkComments((node) => {
+ if (isLicenseComment(node.text)) {
+ node.remove();
+
+ if (!licenses.has(node.text)) {
+ licenses.set(
+ node.text,
+ new Comment({
+ text: node.text,
+ raws: {
+ left: node.raws.left,
+ right: node.raws.right,
+ },
+ }),
+ );
+ }
+ }
+ });
+ licenses.forEach((license) => {
+ css.prepend(license);
+ });
+ };
+};
+
+export default [
+ {
+ input: "index.scss",
+ output: {
+ dir: "./dist",
+ sourcemap: false,
+ format: "esm",
+ compact: true,
+ },
+ plugins: [
+ postcss({
+ extensions: [".css", ".scss"],
+ plugins: [
+ discardDuplicates(),
+ mergeLicenseComments(),
+ removeComments({
+ keepLicense: true,
+ }),
+ ],
+ extract: true,
+ }),
+ ],
+ },
+];
diff --git a/packages/components-react/package.json b/packages/components-react/package.json
index 72a8cbc9..a326c745 100644
--- a/packages/components-react/package.json
+++ b/packages/components-react/package.json
@@ -34,46 +34,45 @@
"clsx": "2.1.1"
},
"devDependencies": {
- "@babel/core": "7.24.7",
- "@babel/plugin-transform-runtime": "7.24.7",
- "@babel/preset-env": "7.24.7",
- "@babel/preset-react": "7.24.7",
- "@babel/preset-typescript": "7.24.7",
- "@babel/runtime": "7.24.7",
+ "@babel/core": "7.25.8",
+ "@babel/plugin-transform-runtime": "7.25.7",
+ "@babel/preset-env": "7.25.8",
+ "@babel/preset-react": "7.25.7",
+ "@babel/preset-typescript": "7.25.7",
+ "@babel/runtime": "7.25.7",
"@frameless/components-css": "workspace:*",
- "@gemeente-denhaag/sidenav": "0.1.0-alpha.227",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.8",
- "@rollup/plugin-node-resolve": "15.2.3",
- "@testing-library/dom": "10.1.0",
- "@testing-library/jest-dom": "6.4.6",
+ "@rollup/plugin-node-resolve": "15.3.0",
+ "@testing-library/dom": "10.4.0",
+ "@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.2",
- "@types/jest": "29.5.12",
- "@types/react": "18.3.3",
+ "@types/jest": "29.5.13",
+ "@types/react": "18.3.11",
"@types/testing-library__jest-dom": "5.14.9",
"@utrecht/component-library-react": "3.1.0",
- "@utrecht/web-component-library-react": "2.0.0",
- "@vitejs/plugin-react": "4.3.1",
+ "@utrecht/web-component-library-react": "2.0.1",
+ "@vitejs/plugin-react": "4.3.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
- "next": "14.2.4",
+ "next": "14.2.15",
"npm-run-all": "4.1.5",
- "postcss": "8.4.38",
+ "postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
- "rimraf": "5.0.7",
- "rollup": "4.18.0",
+ "rimraf": "5.0.10",
+ "rollup": "4.24.0",
"rollup-plugin-filesize": "10.0.0",
- "rollup-plugin-node-externals": "7.1.2",
+ "rollup-plugin-node-externals": "7.1.3",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-typescript2": "0.36.0",
- "sass": "1.77.5",
- "tslib": "2.6.3",
- "typescript": "5.4.5",
- "vite": "5.3.1",
+ "sass": "1.79.5",
+ "tslib": "2.7.0",
+ "typescript": "5.6.3",
+ "vite": "5.4.8",
"vite-plugin-runtime-config": "1.0.2"
},
"peerDependencies": {
diff --git a/packages/components-react/src/Card/index.tsx b/packages/components-react/src/Card/index.tsx
index 4a89c624..c881cef3 100644
--- a/packages/components-react/src/Card/index.tsx
+++ b/packages/components-react/src/Card/index.tsx
@@ -1,7 +1,6 @@
import { Heading } from '@utrecht/component-library-react';
import clsx from 'clsx';
import { HTMLAttributes, PropsWithChildren, ReactNode } from 'react';
-import '@frameless/components-css/card/index.scss';
interface CardProps extends HTMLAttributes {
heading?: string;
diff --git a/packages/components-react/src/CardGroup/index.tsx b/packages/components-react/src/CardGroup/index.tsx
index 32c2a326..5ffeb13b 100644
--- a/packages/components-react/src/CardGroup/index.tsx
+++ b/packages/components-react/src/CardGroup/index.tsx
@@ -1,7 +1,5 @@
import clsx from 'clsx';
import { ForwardedRef, forwardRef, HTMLAttributes, PropsWithChildren } from 'react';
-import '@frameless/components-css/card-group/index.scss';
-import '@frameless/components-css/card/index.scss';
export type CardGroupProps = HTMLAttributes;
diff --git a/packages/components-react/src/Hero/index.tsx b/packages/components-react/src/Hero/index.tsx
index 7e6cb98e..b9aaae6b 100644
--- a/packages/components-react/src/Hero/index.tsx
+++ b/packages/components-react/src/Hero/index.tsx
@@ -1,6 +1,5 @@
import clsx from 'clsx';
import { HTMLAttributes, PropsWithChildren } from 'react';
-import '@frameless/components-css/hero/index.scss';
import { PageContent } from '../PageContent';
interface HeroProps extends HTMLAttributes {}
diff --git a/packages/components-react/src/Logo/LogoImage.tsx b/packages/components-react/src/Logo/LogoImage.tsx
index 949b7686..6b398ec4 100644
--- a/packages/components-react/src/Logo/LogoImage.tsx
+++ b/packages/components-react/src/Logo/LogoImage.tsx
@@ -5,8 +5,6 @@ export const LogoImage = () => (
version="1.1"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
- width="70"
- height="80"
>
diff --git a/packages/components-react/src/Logo/LogoText.tsx b/packages/components-react/src/Logo/LogoText.tsx
index 4a169443..5b3e332d 100644
--- a/packages/components-react/src/Logo/LogoText.tsx
+++ b/packages/components-react/src/Logo/LogoText.tsx
@@ -1,9 +1,6 @@
import clsx from 'clsx';
import { HTMLAttributes } from 'react';
-// Include CSS for logo as a package deal. FIXME: move this to a separate `css-module` option like Utrecht
-import '@frameless/components-css/logo/index.scss';
-
export type LogoTextProps = HTMLAttributes;
export const LogoText = ({ className, children, ...restProps }: LogoTextProps) => (
diff --git a/packages/components-react/src/Logo/LogoWrapper.tsx b/packages/components-react/src/Logo/LogoWrapper.tsx
index 9650251b..acbd5d26 100644
--- a/packages/components-react/src/Logo/LogoWrapper.tsx
+++ b/packages/components-react/src/Logo/LogoWrapper.tsx
@@ -1,9 +1,6 @@
import clsx from 'clsx';
import { HTMLAttributes } from 'react';
-// Include CSS for logo as a package deal. FIXME: move this to a separate `css-module` option like Utrecht
-import '@frameless/components-css/logo/index.scss';
-
export type LogoWrapperProps = HTMLAttributes;
export const LogoWrapper = ({ className, children, ...restProps }: LogoWrapperProps) => (
diff --git a/packages/components-react/src/Logo/index.tsx b/packages/components-react/src/Logo/index.tsx
index 447ed8fe..10f0fcc7 100644
--- a/packages/components-react/src/Logo/index.tsx
+++ b/packages/components-react/src/Logo/index.tsx
@@ -1,7 +1,7 @@
// Logo component is imported from Utrecht
// LogoImage, LogoText and LogoWrapper are Frameless components
-import { Logo as UtrechtLogo } from '@utrecht/component-library-react/dist/css-module';
+import { Logo as UtrechtLogo } from '@utrecht/component-library-react';
import { HTMLAttributes } from 'react';
import { LogoImage } from './LogoImage';
import { LogoText } from './LogoText';
diff --git a/packages/components-react/src/MobileMenu/index.tsx b/packages/components-react/src/MobileMenu/index.tsx
index 1db5126e..68340430 100644
--- a/packages/components-react/src/MobileMenu/index.tsx
+++ b/packages/components-react/src/MobileMenu/index.tsx
@@ -1,11 +1,19 @@
-import { Sidenav, SidenavItem, SidenavLink, SidenavList } from '@gemeente-denhaag/sidenav';
-import { Backdrop, Button, Drawer } from '@utrecht/component-library-react/dist/css-module';
+import {
+ Button,
+ Drawer,
+ Link,
+ UnorderedList,
+ UnorderedListItem,
+} from '@utrecht/component-library-react/dist/css-module';
import { UtrechtIconClose, UtrechtIconHamburgerMenu } from '@utrecht/web-component-library-react';
import clsx from 'clsx';
import { HTMLAttributes, useState } from 'react';
-import '@frameless/components-css/mobile-menu/index.scss';
-export const MobileMenu = ({ className, ...restProps }: HTMLAttributes) => {
+interface MobileMenuProps extends HTMLAttributes {
+ menuItems?: { label: string; href: string }[];
+}
+
+export const MobileMenu = ({ className, menuItems = [], ...restProps }: MobileMenuProps) => {
const [open, setOpen] = useState(false);
return (
@@ -17,21 +25,18 @@ export const MobileMenu = ({ className, ...restProps }: HTMLAttributes setOpen(false)}>
-
-
-
- Aanpak
-
-
- Voorbeelden
-
-
- Contact
-
-
-
+ {menuItems.length && (
+
+
+ {menuItems.map(({ label, href }) => (
+
+ {label}
+
+ ))}
+
+
+ )}
- {open && }
);
};
diff --git a/packages/components-react/src/PageContent/index.tsx b/packages/components-react/src/PageContent/index.tsx
index 6f42e52f..07a80f32 100644
--- a/packages/components-react/src/PageContent/index.tsx
+++ b/packages/components-react/src/PageContent/index.tsx
@@ -1,6 +1,5 @@
import clsx from 'clsx';
import { HTMLAttributes, PropsWithChildren } from 'react';
-import '@frameless/components-css/page-content/index.scss';
interface PageContentProps extends HTMLAttributes {
heading?: string;
diff --git a/packages/components-react/src/PageHeader/index.tsx b/packages/components-react/src/PageHeader/index.tsx
index 84e7fa57..d3249f15 100644
--- a/packages/components-react/src/PageHeader/index.tsx
+++ b/packages/components-react/src/PageHeader/index.tsx
@@ -4,31 +4,36 @@ import clsx from 'clsx';
import { HTMLAttributes, ReactNode } from 'react';
import { MobileMenu } from '../MobileMenu';
import { PageContent } from '../PageContent';
-import '@frameless/components-css/page-header/index.scss';
interface PageHeaderProps extends HTMLAttributes {
heading?: string;
headingLevel?: number;
Logo: ReactNode;
+ menuItems?: { label: string; href: string }[];
}
-export const PageHeader = ({ Logo, className, ...restProps }: PageHeaderProps) => (
-
-
-
- {Logo}
-
-
-
- Aanpak
- WCAG Audits
- Voorbeelden
- Contact
-
-
-
-
-
-
-
-);
+export const PageHeader = ({ Logo, className, menuItems = [], ...restProps }: PageHeaderProps) => {
+ return (
+
+
+
+ {Logo}
+ {menuItems.length && (
+
+
+
+ {menuItems.map(({ label, href }) => (
+
+ {label}
+
+ ))}
+
+
+
+
+ )}
+
+
+
+ );
+};
diff --git a/packages/components-react/src/Section/index.tsx b/packages/components-react/src/Section/index.tsx
index 67750333..a820a9cb 100644
--- a/packages/components-react/src/Section/index.tsx
+++ b/packages/components-react/src/Section/index.tsx
@@ -1,6 +1,5 @@
import clsx from 'clsx';
import { HTMLAttributes, PropsWithChildren } from 'react';
-import '@frameless/components-css/section/index.scss';
import { PageContent } from '../PageContent';
interface SectionProps extends HTMLAttributes {
diff --git a/packages/storybook/config/preview.ts b/packages/storybook/config/preview.ts
index 3cd6ea13..5c2d3f43 100644
--- a/packages/storybook/config/preview.ts
+++ b/packages/storybook/config/preview.ts
@@ -1,5 +1,6 @@
import '@frameless/design-tokens/dist/index.css';
-import '@frameless/font/src/index.scss';
+import '@frameless/font/src/index.css';
+import '@frameless/components-css/index.scss';
import type { Preview } from '@storybook/react';
import { ParametersArgsDecorator } from './ParametersArgsDecorator';
diff --git a/packages/storybook/package.json b/packages/storybook/package.json
index 8e5a282b..c75300ff 100644
--- a/packages/storybook/package.json
+++ b/packages/storybook/package.json
@@ -24,30 +24,32 @@
"@frameless/components-react": "workspace:*",
"@frameless/design-tokens": "workspace:*",
"@frameless/font": "workspace:*",
- "@storybook/addon-a11y": "8.1.9",
- "@storybook/addon-actions": "8.1.9",
- "@storybook/addon-docs": "8.1.9",
- "@storybook/addon-interactions": "8.1.9",
- "@storybook/addon-links": "8.1.9",
- "@storybook/addon-viewport": "8.1.9",
- "@storybook/react": "8.1.9",
- "@storybook/react-vite": "8.1.9",
- "@types/react": "18.3.3",
- "@types/react-dom": "18.3.0",
+ "@storybook/addon-a11y": "8.3.5",
+ "@storybook/addon-actions": "8.3.5",
+ "@storybook/addon-docs": "8.3.5",
+ "@storybook/addon-interactions": "8.3.5",
+ "@storybook/addon-links": "8.3.5",
+ "@storybook/addon-viewport": "8.3.5",
+ "@storybook/react": "8.3.5",
+ "@storybook/react-vite": "8.3.5",
+ "@types/react": "18.3.11",
+ "@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"@utrecht/component-library-react": "3.1.0",
"@whitespace/storybook-addon-html": "6.1.1",
"clsx": "2.1.1",
"install": "0.13.0",
- "npm": "10.8.1",
+ "npm": "10.9.0",
"npx": "10.2.2",
- "react": "18.3.1",
- "react-dom": "18.3.1",
"react-syntax-highlighter": "15.5.0",
- "rimraf": "5.0.7",
- "storybook": "8.1.9",
- "typescript": "5.4.5",
+ "rimraf": "5.0.10",
+ "storybook": "8.3.5",
+ "typescript": "5.6.3",
"uuid": "10.0.0",
- "vite": "5.3.1"
+ "vite": "5.4.8"
+ },
+ "peerDependencies": {
+ "react": "18",
+ "react-dom": "18"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e97ab071..dce0bac0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -13,26 +13,26 @@ importers:
version: 14.1.1
devDependencies:
'@lerna-lite/cli':
- specifier: 3.5.1
- version: 3.5.1(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(@lerna-lite/version@3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5)
+ specifier: 3.9.3
+ version: 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/version@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
'@lerna-lite/publish':
- specifier: 3.5.2
- version: 3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5)
+ specifier: 3.9.3
+ version: 3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3)
'@lerna-lite/run':
- specifier: 3.5.1
- version: 3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5)
+ specifier: 3.9.3
+ version: 3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3)
'@lerna-lite/version':
- specifier: 3.5.2
- version: 3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5)
+ specifier: 3.9.3
+ version: 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
'@types/node':
- specifier: 20.14.2
- version: 20.14.2
+ specifier: 20.16.11
+ version: 20.16.11
'@typescript-eslint/eslint-plugin':
- specifier: 7.13.0
- version: 7.13.0(@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ specifier: 7.18.0
+ version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
'@typescript-eslint/parser':
- specifier: 7.13.0
- version: 7.13.0(eslint@8.57.0)(typescript@5.4.5)
+ specifier: 7.18.0
+ version: 7.18.0(eslint@8.57.0)(typescript@5.6.3)
eslint:
specifier: 8.57.0
version: 8.57.0
@@ -40,8 +40,8 @@ importers:
specifier: 9.1.0
version: 9.1.0(eslint@8.57.0)
eslint-plugin-import:
- specifier: 2.29.1
- version: 2.29.1(@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
+ specifier: 2.31.0
+ version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)
eslint-plugin-json:
specifier: 3.1.0
version: 3.1.0
@@ -49,89 +49,237 @@ importers:
specifier: 3.1.5
version: 3.1.5(eslint@8.57.0)
eslint-plugin-react:
- specifier: 7.34.2
- version: 7.34.2(eslint@8.57.0)
+ specifier: 7.37.1
+ version: 7.37.1(eslint@8.57.0)
husky:
- specifier: 9.0.11
- version: 9.0.11
+ specifier: 9.1.6
+ version: 9.1.6
lint-staged:
- specifier: 15.2.7
- version: 15.2.7
+ specifier: 15.2.10
+ version: 15.2.10
markdownlint-cli:
- specifier: 0.41.0
- version: 0.41.0
+ specifier: 0.42.0
+ version: 0.42.0
npm-check-updates:
specifier: 16.14.20
version: 16.14.20
npm-package-json-lint:
specifier: 7.1.0
- version: 7.1.0(typescript@5.4.5)
+ version: 7.1.0(typescript@5.6.3)
npm-run-all:
specifier: 4.1.5
version: 4.1.5
postcss:
- specifier: 8.4.38
- version: 8.4.38
+ specifier: 8.4.47
+ version: 8.4.47
prettier:
- specifier: 3.3.2
- version: 3.3.2
+ specifier: 3.3.3
+ version: 3.3.3
+ react:
+ specifier: 18.3.1
+ version: 18.3.1
+ react-dom:
+ specifier: 18.3.1
+ version: 18.3.1(react@18.3.1)
stylelint:
- specifier: 16.6.1
- version: 16.6.1(typescript@5.4.5)
+ specifier: 16.10.0
+ version: 16.10.0(typescript@5.6.3)
stylelint-config-standard-scss:
specifier: 13.1.0
- version: 13.1.0(postcss@8.4.38)(stylelint@16.6.1(typescript@5.4.5))
+ version: 13.1.0(postcss@8.4.47)(stylelint@16.10.0(typescript@5.6.3))
stylelint-order:
specifier: 6.0.4
- version: 6.0.4(stylelint@16.6.1(typescript@5.4.5))
+ version: 6.0.4(stylelint@16.10.0(typescript@5.6.3))
typescript:
- specifier: 5.4.5
- version: 5.4.5
+ specifier: 5.6.3
+ version: 5.6.3
apps/frameless.io:
dependencies:
+ vike:
+ specifier: 0.4.199
+ version: 0.4.199(vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0))
+ vite:
+ specifier: 5.4.8
+ version: 5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0)
+ devDependencies:
+ '@frameless/assets':
+ specifier: workspace:*
+ version: link:../../proprietary/assets
'@frameless/components-css':
specifier: workspace:*
version: link:../../packages/components-css
+ '@frameless/components-react':
+ specifier: workspace:*
+ version: link:../../packages/components-react
'@frameless/design-tokens':
specifier: workspace:*
version: link:../../proprietary/design-tokens
- '@fullhuman/postcss-purgecss':
- specifier: 6.0.0
- version: 6.0.0(postcss@8.4.38)
+ '@frameless/font':
+ specifier: workspace:*
+ version: link:../../proprietary/font
+ '@mdx-js/react':
+ specifier: 3.0.1
+ version: 3.0.1(@types/react@18.3.11)(react@18.3.1)
+ '@mdx-js/rollup':
+ specifier: 3.0.1
+ version: 3.0.1(rollup@4.24.0)
+ '@types/node':
+ specifier: 20.16.11
+ version: 20.16.11
+ '@types/react':
+ specifier: 18.3.11
+ version: 18.3.11
+ '@types/react-dom':
+ specifier: 18.3.1
+ version: 18.3.1
'@utrecht/component-library-css':
- specifier: 3.2.0
- version: 3.2.0
+ specifier: 6.1.0
+ version: 6.1.0
+ '@utrecht/component-library-react':
+ specifier: 3.1.0
+ version: 3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@vitejs/plugin-react-swc':
+ specifier: 3.7.1
+ version: 3.7.1(@swc/helpers@0.5.5)(vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0))
+ clsx:
+ specifier: 2.1.1
+ version: 2.1.1
+ cross-env:
+ specifier: 7.0.3
+ version: 7.0.3
+ eslint-plugin-react-hooks:
+ specifier: 5.0.0
+ version: 5.0.0(eslint@8.57.0)
+ eslint-plugin-react-refresh:
+ specifier: 0.4.13
+ version: 0.4.13(eslint@8.57.0)
+ precompress:
+ specifier: 12.0.5
+ version: 12.0.5
+ purgecss:
+ specifier: 6.0.0
+ version: 6.0.0
+ tsx:
+ specifier: 4.19.1
+ version: 4.19.1
+ typescript:
+ specifier: 5.6.3
+ version: 5.6.3
+ vite-plugin-compression2:
+ specifier: 1.3.0
+ version: 1.3.0(rollup@4.24.0)
+ vite-plugin-svgr:
+ specifier: 4.2.0
+ version: 4.2.0(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0))
+
+ apps/next.frameless.io:
devDependencies:
- '@fontsource/fira-sans':
- specifier: 5.0.20
- version: 5.0.20
- '@fontsource/oswald':
- specifier: 5.0.20
- version: 5.0.20
- '@rollup/plugin-replace':
- specifier: 5.0.7
- version: 5.0.7(rollup@3.29.4)
- '@web/rollup-plugin-html':
- specifier: 2.3.0
- version: 2.3.0
+ '@builder.io/qwik':
+ specifier: 1.9.1
+ version: 1.9.1(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)
+ '@builder.io/qwik-city':
+ specifier: 1.9.1
+ version: 1.9.1(@types/node@20.14.11)(rollup@4.24.0)(sass@1.79.5)(terser@5.19.0)(typescript@5.4.5)
+ '@builder.io/qwik-react':
+ specifier: 0.5.0
+ version: 0.5.0(@builder.io/qwik@1.9.1(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0))(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@emotion/react':
+ specifier: ^11.11.1
+ version: 11.13.3(@types/react@18.3.11)(react@18.2.0)
+ '@emotion/styled':
+ specifier: ^11.11.0
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
+ '@frameless/assets':
+ specifier: workspace:*
+ version: link:../../proprietary/assets
+ '@frameless/components-css':
+ specifier: workspace:*
+ version: link:../../packages/components-css
+ '@frameless/components-react':
+ specifier: workspace:*
+ version: link:../../packages/components-react
+ '@frameless/design-tokens':
+ specifier: workspace:*
+ version: link:../../proprietary/design-tokens
+ '@frameless/font':
+ specifier: workspace:*
+ version: link:../../proprietary/font
+ '@mui/material':
+ specifier: ^5.13.0
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@mui/x-data-grid':
+ specifier: ^6.4.0
+ version: 6.20.4(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@types/eslint':
+ specifier: 8.56.10
+ version: 8.56.10
+ '@types/node':
+ specifier: 20.14.11
+ version: 20.14.11
+ '@types/react':
+ specifier: ^18.2.28
+ version: 18.3.11
+ '@types/react-dom':
+ specifier: ^18.2.13
+ version: 18.3.1
+ '@typescript-eslint/eslint-plugin':
+ specifier: 7.16.1
+ version: 7.16.1(@typescript-eslint/parser@7.16.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser':
+ specifier: 7.16.1
+ version: 7.16.1(eslint@8.57.0)(typescript@5.4.5)
+ '@utrecht/component-library-react':
+ specifier: 3.1.0
+ version: 3.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ clsx:
+ specifier: 2.1.1
+ version: 2.1.1
+ eslint:
+ specifier: 8.57.0
+ version: 8.57.0
+ eslint-plugin-qwik:
+ specifier: 1.9.1
+ version: 1.9.1(eslint@8.57.0)
+ prettier:
+ specifier: 3.3.3
+ version: 3.3.3
+ react:
+ specifier: 18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ typescript:
+ specifier: 5.4.5
+ version: 5.4.5
+ undici:
+ specifier: '*'
+ version: 6.20.1
+ vite:
+ specifier: 5.3.5
+ version: 5.3.5(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)
+ vite-tsconfig-paths:
+ specifier: 4.2.1
+ version: 4.2.1(typescript@5.4.5)(vite@5.3.5(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0))
+
+ packages/components-css:
+ devDependencies:
+ postcss:
+ specifier: 8.4.47
+ version: 8.4.47
postcss-discard-duplicates:
- specifier: 7.0.0
- version: 7.0.0(postcss@8.4.38)
+ specifier: 7.0.1
+ version: 7.0.1(postcss@8.4.47)
rimraf:
- specifier: 3.0.2
- version: 3.0.2
+ specifier: 5.0.10
+ version: 5.0.10
rollup:
- specifier: 3.29.4
- version: 3.29.4
- rollup-plugin-copy:
- specifier: 3.5.0
- version: 3.5.0
+ specifier: 4.24.0
+ version: 4.24.0
rollup-plugin-postcss:
specifier: 4.0.2
- version: 4.0.2(postcss@8.4.38)
-
- packages/components-css: {}
+ version: 4.0.2(postcss@8.4.47)
packages/components-react:
dependencies:
@@ -140,56 +288,53 @@ importers:
version: 2.1.1
devDependencies:
'@babel/core':
- specifier: 7.24.7
- version: 7.24.7
+ specifier: 7.25.8
+ version: 7.25.8
'@babel/plugin-transform-runtime':
- specifier: 7.24.7
- version: 7.24.7(@babel/core@7.24.7)
+ specifier: 7.25.7
+ version: 7.25.7(@babel/core@7.25.8)
'@babel/preset-env':
- specifier: 7.24.7
- version: 7.24.7(@babel/core@7.24.7)
+ specifier: 7.25.8
+ version: 7.25.8(@babel/core@7.25.8)
'@babel/preset-react':
- specifier: 7.24.7
- version: 7.24.7(@babel/core@7.24.7)
+ specifier: 7.25.7
+ version: 7.25.7(@babel/core@7.25.8)
'@babel/preset-typescript':
- specifier: 7.24.7
- version: 7.24.7(@babel/core@7.24.7)
+ specifier: 7.25.7
+ version: 7.25.7(@babel/core@7.25.8)
'@babel/runtime':
- specifier: 7.24.7
- version: 7.24.7
+ specifier: 7.25.7
+ version: 7.25.7
'@frameless/components-css':
specifier: workspace:*
version: link:../components-css
- '@gemeente-denhaag/sidenav':
- specifier: 0.1.0-alpha.227
- version: 0.1.0-alpha.227(react@18.3.1)
'@rollup/plugin-babel':
specifier: 6.0.4
- version: 6.0.4(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@4.18.0)
+ version: 6.0.4(@babel/core@7.25.8)(@types/babel__core@7.20.5)(rollup@4.24.0)
'@rollup/plugin-commonjs':
specifier: 25.0.8
- version: 25.0.8(rollup@4.18.0)
+ version: 25.0.8(rollup@4.24.0)
'@rollup/plugin-node-resolve':
- specifier: 15.2.3
- version: 15.2.3(rollup@4.18.0)
+ specifier: 15.3.0
+ version: 15.3.0(rollup@4.24.0)
'@testing-library/dom':
- specifier: 10.1.0
- version: 10.1.0
+ specifier: 10.4.0
+ version: 10.4.0
'@testing-library/jest-dom':
- specifier: 6.4.6
- version: 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))
+ specifier: 6.5.0
+ version: 6.5.0
'@testing-library/react':
specifier: 15.0.7
- version: 15.0.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.7(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@testing-library/user-event':
specifier: 14.5.2
- version: 14.5.2(@testing-library/dom@10.1.0)
+ version: 14.5.2(@testing-library/dom@10.4.0)
'@types/jest':
- specifier: 29.5.12
- version: 29.5.12
+ specifier: 29.5.13
+ version: 29.5.13
'@types/react':
- specifier: 18.3.3
- version: 18.3.3
+ specifier: 18.3.11
+ version: 18.3.11
'@types/testing-library__jest-dom':
specifier: 5.14.9
version: 5.14.9
@@ -197,26 +342,26 @@ importers:
specifier: 3.1.0
version: 3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@utrecht/web-component-library-react':
- specifier: 2.0.0
- version: 2.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 2.0.1
+ version: 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@vitejs/plugin-react':
- specifier: 4.3.1
- version: 4.3.1(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))
+ specifier: 4.3.2
+ version: 4.3.2(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))
jest:
specifier: 29.7.0
- version: 29.7.0(@types/node@20.14.2)
+ version: 29.7.0(@types/node@22.7.5)
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0
next:
- specifier: 14.2.4
- version: 14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.5)
+ specifier: 14.2.15
+ version: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.79.5)
npm-run-all:
specifier: 4.1.5
version: 4.1.5
postcss:
- specifier: 8.4.38
- version: 8.4.38
+ specifier: 8.4.47
+ version: 8.4.47
react:
specifier: 18.3.1
version: 18.3.1
@@ -224,44 +369,44 @@ importers:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 5.0.10
+ version: 5.0.10
rollup:
- specifier: 4.18.0
- version: 4.18.0
+ specifier: 4.24.0
+ version: 4.24.0
rollup-plugin-filesize:
specifier: 10.0.0
version: 10.0.0
rollup-plugin-node-externals:
- specifier: 7.1.2
- version: 7.1.2(rollup@4.18.0)
+ specifier: 7.1.3
+ version: 7.1.3(rollup@4.24.0)
rollup-plugin-node-polyfills:
specifier: 0.2.1
version: 0.2.1
rollup-plugin-peer-deps-external:
specifier: 2.2.4
- version: 2.2.4(rollup@4.18.0)
+ version: 2.2.4(rollup@4.24.0)
rollup-plugin-postcss:
specifier: 4.0.2
- version: 4.0.2(postcss@8.4.38)
+ version: 4.0.2(postcss@8.4.47)
rollup-plugin-typescript2:
specifier: 0.36.0
- version: 0.36.0(rollup@4.18.0)(typescript@5.4.5)
+ version: 0.36.0(rollup@4.24.0)(typescript@5.6.3)
sass:
- specifier: 1.77.5
- version: 1.77.5
+ specifier: 1.79.5
+ version: 1.79.5
tslib:
- specifier: 2.6.3
- version: 2.6.3
+ specifier: 2.7.0
+ version: 2.7.0
typescript:
- specifier: 5.4.5
- version: 5.4.5
+ specifier: 5.6.3
+ version: 5.6.3
vite:
- specifier: 5.3.1
- version: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ specifier: 5.4.8
+ version: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
vite-plugin-runtime-config:
specifier: 1.0.2
- version: 1.0.2(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))
+ version: 1.0.2(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))
packages/storybook:
devDependencies:
@@ -281,35 +426,35 @@ importers:
specifier: workspace:*
version: link:../../proprietary/font
'@storybook/addon-a11y':
- specifier: 8.1.9
- version: 8.1.9
+ specifier: 8.3.5
+ version: 8.3.5(storybook@8.3.5)
'@storybook/addon-actions':
- specifier: 8.1.9
- version: 8.1.9
+ specifier: 8.3.5
+ version: 8.3.5(storybook@8.3.5)
'@storybook/addon-docs':
- specifier: 8.1.9
- version: 8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.3.2)
+ specifier: 8.3.5
+ version: 8.3.5(storybook@8.3.5)
'@storybook/addon-interactions':
- specifier: 8.1.9
- version: 8.1.9(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))
+ specifier: 8.3.5
+ version: 8.3.5(storybook@8.3.5)
'@storybook/addon-links':
- specifier: 8.1.9
- version: 8.1.9(react@18.3.1)
+ specifier: 8.3.5
+ version: 8.3.5(react@18.3.1)(storybook@8.3.5)
'@storybook/addon-viewport':
- specifier: 8.1.9
- version: 8.1.9
+ specifier: 8.3.5
+ version: 8.3.5(storybook@8.3.5)
'@storybook/react':
- specifier: 8.1.9
- version: 8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
+ specifier: 8.3.5
+ version: 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)
'@storybook/react-vite':
- specifier: 8.1.9
- version: 8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))
+ specifier: 8.3.5
+ version: 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))
'@types/react':
- specifier: 18.3.3
- version: 18.3.3
+ specifier: 18.3.11
+ version: 18.3.11
'@types/react-dom':
- specifier: 18.3.0
- version: 18.3.0
+ specifier: 18.3.1
+ version: 18.3.1
'@types/uuid':
specifier: 10.0.0
version: 10.0.0
@@ -318,7 +463,7 @@ importers:
version: 3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@whitespace/storybook-addon-html':
specifier: 6.1.1
- version: 6.1.1(prettier@3.3.2)(react-syntax-highlighter@15.5.0(react@18.3.1))
+ version: 6.1.1(prettier@3.3.3)(react-syntax-highlighter@15.5.0(react@18.3.1))
clsx:
specifier: 2.1.1
version: 2.1.1
@@ -326,35 +471,29 @@ importers:
specifier: 0.13.0
version: 0.13.0
npm:
- specifier: 10.8.1
- version: 10.8.1
+ specifier: 10.9.0
+ version: 10.9.0
npx:
specifier: 10.2.2
version: 10.2.2
- react:
- specifier: 18.3.1
- version: 18.3.1
- react-dom:
- specifier: 18.3.1
- version: 18.3.1(react@18.3.1)
react-syntax-highlighter:
specifier: 15.5.0
version: 15.5.0(react@18.3.1)
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 5.0.10
+ version: 5.0.10
storybook:
- specifier: 8.1.9
- version: 8.1.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 8.3.5
+ version: 8.3.5
typescript:
- specifier: 5.4.5
- version: 5.4.5
+ specifier: 5.6.3
+ version: 5.6.3
uuid:
specifier: 10.0.0
version: 10.0.0
vite:
- specifier: 5.3.1
- version: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ specifier: 5.4.8
+ version: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
proprietary/assets: {}
@@ -367,8 +506,8 @@ importers:
specifier: 4.1.5
version: 4.1.5
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 5.0.10
+ version: 5.0.10
style-dictionary:
specifier: 3.9.2
version: 3.9.2
@@ -379,12 +518,12 @@ importers:
proprietary/font:
dependencies:
'@fontsource/fira-sans':
- specifier: 5.0.20
- version: 5.0.20
+ specifier: 5.1.0
+ version: 5.1.0
devDependencies:
'@fontsource/oswald':
- specifier: 5.0.20
- version: 5.0.20
+ specifier: 5.1.0
+ version: 5.1.0
packages:
@@ -399,78 +538,52 @@ packages:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
- '@aw-web-design/x-default-browser@1.4.126':
- resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==}
- hasBin: true
-
- '@babel/code-frame@7.24.2':
- resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.24.4':
- resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.24.7':
- resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.24.7':
- resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
+ '@babel/code-frame@7.25.7':
+ resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.5':
- resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
+ '@babel/compat-data@7.25.8':
+ resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.7':
- resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
+ '@babel/core@7.25.8':
+ resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.22.5':
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ '@babel/generator@7.25.7':
+ resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-compilation-targets@7.23.6':
- resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ '@babel/helper-annotate-as-pure@7.25.7':
+ resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.7':
- resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
+ resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.5':
- resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
+ '@babel/helper-compilation-targets@7.25.7':
+ resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.24.7':
- resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
+ '@babel/helper-create-class-features-plugin@7.25.7':
+ resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.22.15':
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ '@babel/helper-create-regexp-features-plugin@7.24.7':
+ resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.24.7':
- resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
+ '@babel/helper-create-regexp-features-plugin@7.25.7':
+ resolution: {integrity: sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -480,198 +593,120 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-environment-visitor@7.22.20':
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.24.7':
- resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.23.0':
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.24.7':
- resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.22.5':
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.24.7':
- resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-member-expression-to-functions@7.24.5':
- resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
- engines: {node: '>=6.9.0'}
+ '@babel/helper-define-polyfill-provider@0.6.2':
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.24.7':
- resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
+ '@babel/helper-member-expression-to-functions@7.25.7':
+ resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.22.5':
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.3':
- resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helper-module-imports@7.25.7':
+ resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.5':
- resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
+ '@babel/helper-module-transforms@7.25.7':
+ resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-module-transforms@7.24.7':
- resolution: {integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-optimise-call-expression@7.22.5':
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-optimise-call-expression@7.24.7':
- resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-plugin-utils@7.24.7':
- resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
+ '@babel/helper-optimise-call-expression@7.25.7':
+ resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.24.7':
- resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
+ '@babel/helper-plugin-utils@7.25.7':
+ resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.1':
- resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
+ '@babel/helper-remap-async-to-generator@7.25.7':
+ resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.7':
- resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ '@babel/helper-replace-supers@7.25.7':
+ resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.5':
- resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ '@babel/helper-simple-access@7.25.7':
+ resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.24.5':
- resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-split-export-declaration@7.24.7':
- resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
+ resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.22.5':
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.24.7':
- resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ '@babel/helper-string-parser@7.25.7':
+ resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.22.5':
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.5':
- resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ '@babel/helper-validator-identifier@7.25.7':
+ resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.23.5':
- resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ '@babel/helper-validator-option@7.25.7':
+ resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.7':
- resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
+ '@babel/helper-wrap-function@7.25.7':
+ resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.24.7':
- resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
+ '@babel/helpers@7.25.7':
+ resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.7':
- resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
+ '@babel/highlight@7.25.7':
+ resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.2':
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.24.5':
- resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
+ '@babel/parser@7.25.8':
+ resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.24.7':
- resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7':
+ resolution: {integrity: sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
- resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7':
+ resolution: {integrity: sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7':
- resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7':
+ resolution: {integrity: sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
- resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7':
+ resolution: {integrity: sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7':
- resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7':
+ resolution: {integrity: sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -697,36 +732,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-dynamic-import@7.8.3':
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-flow@7.23.3':
- resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-assertions@7.24.7':
- resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
+ '@babel/plugin-syntax-import-assertions@7.25.7':
+ resolution: {integrity: sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.7':
- resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
+ '@babel/plugin-syntax-import-attributes@7.25.7':
+ resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -741,14 +754,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ '@babel/plugin-syntax-jsx@7.24.7':
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ '@babel/plugin-syntax-jsx@7.25.7':
+ resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -783,12 +796,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-private-property-in-object@7.14.5':
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -801,8 +808,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ '@babel/plugin-syntax-typescript@7.25.7':
+ resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -813,272 +820,242 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-async-generator-functions@7.24.7':
- resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==}
+ '@babel/plugin-transform-arrow-functions@7.25.7':
+ resolution: {integrity: sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.7':
- resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
+ '@babel/plugin-transform-async-generator-functions@7.25.8':
+ resolution: {integrity: sha512-9ypqkozyzpG+HxlH4o4gdctalFGIjjdufzo7I2XPda0iBnZ6a+FO0rIEQcdSPXp02CkvGsII1exJhmROPQd5oA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.7':
- resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
+ '@babel/plugin-transform-async-to-generator@7.25.7':
+ resolution: {integrity: sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.7':
- resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.7':
+ resolution: {integrity: sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.1':
- resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
+ '@babel/plugin-transform-block-scoping@7.25.7':
+ resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.7':
- resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
+ '@babel/plugin-transform-class-properties@7.25.7':
+ resolution: {integrity: sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.24.7':
- resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
+ '@babel/plugin-transform-class-static-block@7.25.8':
+ resolution: {integrity: sha512-e82gl3TCorath6YLf9xUwFehVvjvfqFhdOo4+0iVIVju+6XOi5XHkqB3P2AXnSwoeTX0HBoXq5gJFtvotJzFnQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.24.7':
- resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-computed-properties@7.24.7':
- resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
+ '@babel/plugin-transform-classes@7.25.7':
+ resolution: {integrity: sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.7':
- resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==}
+ '@babel/plugin-transform-computed-properties@7.25.7':
+ resolution: {integrity: sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.7':
- resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
+ '@babel/plugin-transform-destructuring@7.25.7':
+ resolution: {integrity: sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.7':
- resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
+ '@babel/plugin-transform-dotall-regex@7.25.7':
+ resolution: {integrity: sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.24.7':
- resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
+ '@babel/plugin-transform-duplicate-keys@7.25.7':
+ resolution: {integrity: sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.7':
- resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7':
+ resolution: {integrity: sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-transform-export-namespace-from@7.24.7':
- resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
+ '@babel/plugin-transform-dynamic-import@7.25.8':
+ resolution: {integrity: sha512-gznWY+mr4ZQL/EWPcbBQUP3BXS5FwZp8RUOw06BaRn8tQLzN4XLIxXejpHN9Qo8x8jjBmAAKp6FoS51AgkSA/A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.23.3':
- resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
+ '@babel/plugin-transform-exponentiation-operator@7.25.7':
+ resolution: {integrity: sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.7':
- resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
+ '@babel/plugin-transform-export-namespace-from@7.25.8':
+ resolution: {integrity: sha512-sPtYrduWINTQTW7FtOy99VCTWp4H23UX7vYcut7S4CIMEXU+54zKX9uCoGkLsWXteyaMXzVHgzWbLfQ1w4GZgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.24.7':
- resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
+ '@babel/plugin-transform-for-of@7.25.7':
+ resolution: {integrity: sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.7':
- resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
+ '@babel/plugin-transform-function-name@7.25.7':
+ resolution: {integrity: sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.24.7':
- resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
+ '@babel/plugin-transform-json-strings@7.25.8':
+ resolution: {integrity: sha512-4OMNv7eHTmJ2YXs3tvxAfa/I43di+VcF+M4Wt66c88EAED1RoGaf1D64cL5FkRpNL+Vx9Hds84lksWvd/wMIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.7':
- resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
+ '@babel/plugin-transform-literals@7.25.7':
+ resolution: {integrity: sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.7':
- resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.8':
+ resolution: {integrity: sha512-f5W0AhSbbI+yY6VakT04jmxdxz+WsID0neG7+kQZbCOjuyJNdL5Nn4WIBm4hRpKnUcO9lP0eipUhFN12JpoH8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.7':
- resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
+ '@babel/plugin-transform-member-expression-literals@7.25.7':
+ resolution: {integrity: sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.1':
- resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
+ '@babel/plugin-transform-modules-amd@7.25.7':
+ resolution: {integrity: sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.7':
- resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
+ '@babel/plugin-transform-modules-commonjs@7.25.7':
+ resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.7':
- resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
+ '@babel/plugin-transform-modules-systemjs@7.25.7':
+ resolution: {integrity: sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.7':
- resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
+ '@babel/plugin-transform-modules-umd@7.25.7':
+ resolution: {integrity: sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
- resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.7':
+ resolution: {integrity: sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.24.7':
- resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1':
- resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
- resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-transform-numeric-separator@7.24.7':
- resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
+ '@babel/plugin-transform-new-target@7.25.7':
+ resolution: {integrity: sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.7':
- resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.8':
+ resolution: {integrity: sha512-Z7WJJWdQc8yCWgAmjI3hyC+5PXIubH9yRKzkl9ZEG647O9szl9zvmKLzpbItlijBnVhTUf1cpyWBsZ3+2wjWPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.7':
- resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
+ '@babel/plugin-transform-numeric-separator@7.25.8':
+ resolution: {integrity: sha512-rm9a5iEFPS4iMIy+/A/PiS0QN0UyjPIeVvbU5EMZFKJZHt8vQnasbpo3T3EFcxzCeYO0BHfc4RqooCZc51J86Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.7':
- resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
+ '@babel/plugin-transform-object-rest-spread@7.25.8':
+ resolution: {integrity: sha512-LkUu0O2hnUKHKE7/zYOIjByMa4VRaV2CD/cdGz0AxU9we+VA3kDDggKEzI0Oz1IroG+6gUP6UmWEHBMWZU316g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.5':
- resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==}
+ '@babel/plugin-transform-object-super@7.25.7':
+ resolution: {integrity: sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.7':
- resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.8':
+ resolution: {integrity: sha512-EbQYweoMAHOn7iJ9GgZo14ghhb9tTjgOc88xFgYngifx7Z9u580cENCV159M4xDh3q/irbhSjZVpuhpC2gKBbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.7':
- resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
+ '@babel/plugin-transform-optional-chaining@7.25.8':
+ resolution: {integrity: sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.1':
- resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
+ '@babel/plugin-transform-parameters@7.25.7':
+ resolution: {integrity: sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.7':
- resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
+ '@babel/plugin-transform-private-methods@7.25.7':
+ resolution: {integrity: sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.7':
- resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
+ '@babel/plugin-transform-private-property-in-object@7.25.8':
+ resolution: {integrity: sha512-8Uh966svuB4V8RHHg0QJOB32QK287NBksJOByoKmHMp1TAobNniNalIkI2i5IPj5+S9NYCG4VIjbEuiSN8r+ow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.7':
- resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
+ '@babel/plugin-transform-property-literals@7.25.7':
+ resolution: {integrity: sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.7':
- resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
+ '@babel/plugin-transform-react-display-name@7.25.7':
+ resolution: {integrity: sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.24.7':
- resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
+ '@babel/plugin-transform-react-jsx-development@7.25.7':
+ resolution: {integrity: sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1095,104 +1072,98 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.24.7':
- resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
+ '@babel/plugin-transform-react-jsx@7.25.7':
+ resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.24.7':
- resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
+ '@babel/plugin-transform-react-pure-annotations@7.25.7':
+ resolution: {integrity: sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.7':
- resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
+ '@babel/plugin-transform-regenerator@7.25.7':
+ resolution: {integrity: sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.7':
- resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
+ '@babel/plugin-transform-reserved-words@7.25.7':
+ resolution: {integrity: sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.7':
- resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
+ '@babel/plugin-transform-runtime@7.25.7':
+ resolution: {integrity: sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
+ '@babel/plugin-transform-shorthand-properties@7.25.7':
+ resolution: {integrity: sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
+ '@babel/plugin-transform-spread@7.25.7':
+ resolution: {integrity: sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
+ '@babel/plugin-transform-sticky-regex@7.25.7':
+ resolution: {integrity: sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.7':
- resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
+ '@babel/plugin-transform-template-literals@7.25.7':
+ resolution: {integrity: sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.7':
- resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
+ '@babel/plugin-transform-typeof-symbol@7.25.7':
+ resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.7':
- resolution: {integrity: sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==}
+ '@babel/plugin-transform-typescript@7.25.7':
+ resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.7':
- resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
+ '@babel/plugin-transform-unicode-escapes@7.25.7':
+ resolution: {integrity: sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.7':
- resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
+ '@babel/plugin-transform-unicode-property-regex@7.25.7':
+ resolution: {integrity: sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.7':
- resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
+ '@babel/plugin-transform-unicode-regex@7.25.7':
+ resolution: {integrity: sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.7':
- resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.7':
+ resolution: {integrity: sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.24.7':
- resolution: {integrity: sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-flow@7.23.3':
- resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==}
+ '@babel/preset-env@7.25.8':
+ resolution: {integrity: sha512-58T2yulDHMN8YMUxiLq5YmWUnlDCyY1FsHM+v12VMx+1/FlrUj5tY50iDCpofFQEM8fMYOaY9YRvym2jcjn1Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1202,20 +1173,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.7':
- resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/preset-typescript@7.24.7':
- resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
+ '@babel/preset-react@7.25.7':
+ resolution: {integrity: sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.22.15':
- resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==}
+ '@babel/preset-typescript@7.25.7':
+ resolution: {integrity: sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1223,36 +1188,24 @@ packages:
'@babel/regjsgen@0.8.0':
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- '@babel/runtime@7.24.7':
- resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.24.0':
- resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ '@babel/runtime@7.25.7':
+ resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.5':
- resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
+ '@babel/template@7.25.7':
+ resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.7':
- resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
+ '@babel/traverse@7.25.7':
+ resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.22.5':
resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.5':
- resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.24.7':
- resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
+ '@babel/types@7.25.8':
+ resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
engines: {node: '>=6.9.0'}
'@base2/pretty-print-object@1.0.1':
@@ -1261,50 +1214,126 @@ packages:
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+ '@brillout/import@0.2.3':
+ resolution: {integrity: sha512-1T8WlD75eeFSMrptGy8jiLHmfHgMmSjWvLOIUvHmSVZt+6k0eQqYUoK4KbmE4T9pVLIfxvZSOm2D68VEqKRHRw==}
+
+ '@brillout/json-serializer@0.5.13':
+ resolution: {integrity: sha512-9FpmgpuoSISw6fAPVB2qwW1dGAADN28YbWpfwOErfcZxpBH4lsnejuY89qcivInnWXYJvyyPwghCuOTbtuaYFg==}
+
+ '@brillout/picocolors@1.0.15':
+ resolution: {integrity: sha512-VrgvPtfnKP/i8kxCAyQVd0DWg6xU8OZJndbLf/lrywd96UdMhnGL/PK42HhHhhwkDSkaiQU+zc+OPWpvqOe4Cg==}
+
+ '@brillout/require-shim@0.1.2':
+ resolution: {integrity: sha512-3I4LRHnVZXoSAsEoni5mosq9l6eiJED58d9V954W4CIZ88AUfYBanWGBGbJG3NztaRTpFHEA6wB3Hn93BmmJdg==}
+
+ '@brillout/vite-plugin-server-entry@0.4.13':
+ resolution: {integrity: sha512-tJQ9AmFGKZdoapoV+BPQ1uhR79raxMFfJ7TVrFAPA1k7aO2/ugGBQ+tglh4XwVeL/bwUtIIeQOyDQyBThJG99A==}
+
+ '@builder.io/qwik-city@1.9.1':
+ resolution: {integrity: sha512-GEM4Ybjg9edSWzAtp38mAyb2lIeuQYlcpyrDJ9W/KhXPoIQ7CAjhE2w1XaYXrtfg4iJOgCkiCXjL3JxobxNLxw==}
+ engines: {node: '>=16.8.0 <18.0.0 || >=18.11'}
+
+ '@builder.io/qwik-react@0.5.0':
+ resolution: {integrity: sha512-JdJWQWOJGv7ddQqEZwzR8wPh0IoCQZwD9qo75+reiQaLp6eH+Pjsm/kn1LaMQt6u72pCCNjnj5kEn/bnbfnIjQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@builder.io/qwik': '>=0.22.0'
+ '@types/react': '>=18.0.1'
+ '@types/react-dom': '>=18.0.0'
+ react: '>=18.0.0'
+ react-dom: '>=18.0.0'
+
+ '@builder.io/qwik@1.9.1':
+ resolution: {integrity: sha512-7Dqty4625BJFDcPSy52M2ZS/CpI9yimMFjFyuhyOLjS8BbHVBFtiGIQ0nL133S447K+oU5T2QZzdvjBKsSPlsg==}
+ engines: {node: '>=16.8.0 <18.0.0 || >=18.11'}
+ hasBin: true
+
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- '@csstools/css-parser-algorithms@2.6.3':
- resolution: {integrity: sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/css-parser-algorithms@3.0.2':
+ resolution: {integrity: sha512-6tC/MnlEvs5suR4Ahef4YlBccJDHZuxGsAlxXmybWjZ5jPxlzLSMlRZ9mVHSRvlD+CmtE7+hJ+UQbfXrws/rUQ==}
+ engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^2.3.1
+ '@csstools/css-tokenizer': ^3.0.2
- '@csstools/css-tokenizer@2.3.1':
- resolution: {integrity: sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/css-tokenizer@3.0.2':
+ resolution: {integrity: sha512-IuTRcD53WHsXPCZ6W7ubfGqReTJ9Ra0yRRFmXYP/Re8hFYYfoIYIK4080X5luslVLWimhIeFq0hj09urVMQzTw==}
+ engines: {node: '>=18'}
- '@csstools/media-query-list-parser@2.1.11':
- resolution: {integrity: sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/media-query-list-parser@3.0.1':
+ resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==}
+ engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.6.3
- '@csstools/css-tokenizer': ^2.3.1
+ '@csstools/css-parser-algorithms': ^3.0.1
+ '@csstools/css-tokenizer': ^3.0.1
- '@csstools/selector-specificity@3.1.1':
- resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/selector-specificity@4.0.0':
+ resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==}
+ engines: {node: '>=18'}
peerDependencies:
- postcss-selector-parser: ^6.0.13
-
- '@discoveryjs/json-ext@0.5.7':
- resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
- engines: {node: '>=10.0.0'}
+ postcss-selector-parser: ^6.1.0
'@dual-bundle/import-meta-resolve@4.1.0':
resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1':
- resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
+ '@emotion/babel-plugin@11.12.0':
+ resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
+
+ '@emotion/cache@11.13.1':
+ resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==}
+
+ '@emotion/hash@0.9.2':
+ resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
+
+ '@emotion/is-prop-valid@1.3.1':
+ resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==}
+
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
+
+ '@emotion/react@11.13.3':
+ resolution: {integrity: sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==}
peerDependencies:
+ '@types/react': '*'
react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@esbuild/aix-ppc64@0.20.2':
- resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
+ '@emotion/serialize@1.3.2':
+ resolution: {integrity: sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==}
+
+ '@emotion/sheet@1.4.0':
+ resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
+
+ '@emotion/styled@11.13.0':
+ resolution: {integrity: sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0-rc.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@emotion/unitless@0.10.0':
+ resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
+ peerDependencies:
+ react: '>=16.8.0'
+
+ '@emotion/utils@1.4.1':
+ resolution: {integrity: sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==}
+
+ '@emotion/weak-memoize@0.4.0':
+ resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
@@ -1312,11 +1341,11 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.20.2':
- resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ '@esbuild/aix-ppc64@0.23.1':
+ resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
@@ -1324,10 +1353,10 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.20.2':
- resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/android-arm64@0.23.1':
+ resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.21.5':
@@ -1336,10 +1365,10 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.20.2':
- resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/android-arm@0.23.1':
+ resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [android]
'@esbuild/android-x64@0.21.5':
@@ -1348,11 +1377,11 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.20.2':
- resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
+ '@esbuild/android-x64@0.23.1':
+ resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
@@ -1360,10 +1389,10 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.20.2':
- resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/darwin-arm64@0.23.1':
+ resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.21.5':
@@ -1372,11 +1401,11 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.20.2':
- resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
+ '@esbuild/darwin-x64@0.23.1':
+ resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
@@ -1384,10 +1413,10 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.20.2':
- resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/freebsd-arm64@0.23.1':
+ resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.21.5':
@@ -1396,11 +1425,11 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.20.2':
- resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
+ '@esbuild/freebsd-x64@0.23.1':
+ resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
@@ -1408,10 +1437,10 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.20.2':
- resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
- engines: {node: '>=12'}
- cpu: [arm]
+ '@esbuild/linux-arm64@0.23.1':
+ resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.21.5':
@@ -1420,10 +1449,10 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.20.2':
- resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/linux-arm@0.23.1':
+ resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.21.5':
@@ -1432,10 +1461,10 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.20.2':
- resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
+ '@esbuild/linux-ia32@0.23.1':
+ resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.21.5':
@@ -1444,10 +1473,10 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.20.2':
- resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
+ '@esbuild/linux-loong64@0.23.1':
+ resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.21.5':
@@ -1456,10 +1485,10 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.20.2':
- resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
+ '@esbuild/linux-mips64el@0.23.1':
+ resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.21.5':
@@ -1468,10 +1497,10 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.20.2':
- resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
+ '@esbuild/linux-ppc64@0.23.1':
+ resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.21.5':
@@ -1480,10 +1509,10 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.20.2':
- resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
+ '@esbuild/linux-riscv64@0.23.1':
+ resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.21.5':
@@ -1492,10 +1521,10 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.20.2':
- resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/linux-s390x@0.23.1':
+ resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.21.5':
@@ -1504,11 +1533,11 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-x64@0.20.2':
- resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
- engines: {node: '>=12'}
+ '@esbuild/linux-x64@0.23.1':
+ resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [netbsd]
+ os: [linux]
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
@@ -1516,10 +1545,16 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-x64@0.20.2':
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
- engines: {node: '>=12'}
+ '@esbuild/netbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ engines: {node: '>=18'}
cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.23.1':
+ resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [openbsd]
'@esbuild/openbsd-x64@0.21.5':
@@ -1528,11 +1563,11 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.20.2':
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
- engines: {node: '>=12'}
+ '@esbuild/openbsd-x64@0.23.1':
+ resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ engines: {node: '>=18'}
cpu: [x64]
- os: [sunos]
+ os: [openbsd]
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
@@ -1540,11 +1575,11 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.20.2':
- resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
+ '@esbuild/sunos-x64@0.23.1':
+ resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
@@ -1552,10 +1587,10 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.20.2':
- resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
+ '@esbuild/win32-arm64@0.23.1':
+ resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.21.5':
@@ -1564,10 +1599,10 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.20.2':
- resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/win32-ia32@0.23.1':
+ resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.21.5':
@@ -1576,14 +1611,20 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.23.1':
+ resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.11.1':
+ resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
@@ -1594,28 +1635,16 @@ packages:
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@fal-works/esbuild-plugin-global-externals@2.1.2':
- resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
-
- '@fontsource/fira-sans@5.0.20':
- resolution: {integrity: sha512-inmUjoKPrgnO4uUaZTAgP0b6YdhDfA52axHXvdTwgLvwd2kn3ZgK52UZoxD0VnrvTOjLA/iE4oC0tNtz4nyb5g==}
+ '@fontsource/fira-sans@5.1.0':
+ resolution: {integrity: sha512-qfAjF5WcrL6qQh9eIWLK7lOh9wbCgCnVWh2Nu2gozrTgsUgYBLR8sbCGYwlK1K0yZoQsR2i9VSiQ16wwPCBkSw==}
- '@fontsource/oswald@5.0.20':
- resolution: {integrity: sha512-4oWDUT8j4XrDb/TJGlHwtGsWiVTNChnAUaU8/oYuF4pisO7PDElT+gk1rbNSAJCQ++3CnrJXrrr931O0cPcwpw==}
-
- '@fullhuman/postcss-purgecss@6.0.0':
- resolution: {integrity: sha512-sUvk5PV7O5xvTJcxDYrQ00xlKtSxivvJdZrwgxE8F1GmNMs7w9U+dSbr83N/qEs9b+f+6QsZKXDs0k8nMjBIqA==}
- peerDependencies:
- postcss: ^8.0.0
-
- '@gemeente-denhaag/sidenav@0.1.0-alpha.227':
- resolution: {integrity: sha512-ZYYeXv+SC2Q9YPh7k8t1JRU3dnSBtEua3+m66Cb/r5Dp+8cD6sbnr2KbTNOwz0TNUq2wdyBXkJcTw9jzTmR4WQ==}
- peerDependencies:
- react: ^18.0.0
+ '@fontsource/oswald@5.1.0':
+ resolution: {integrity: sha512-MwHMRCNCeTvaUWk15AHVfUi84T4TB4dshJrCOcfBYqUkY0V8IxKEwqFzSgGBG7zIfTZ0Diu+/CKpiktKqo5Gkg==}
'@humanwhocodes/config-array@0.11.14':
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
+ deprecated: Use @eslint/config-array instead
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
@@ -1628,14 +1657,144 @@ packages:
resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==}
engines: {node: '>=10.13.0'}
- '@inquirer/figures@1.0.3':
- resolution: {integrity: sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==}
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@inquirer/core@10.0.0':
+ resolution: {integrity: sha512-7dwoKCGvgZGHWTZfOj2KLmbIAIdiXP9NTrwGaTO/XDfKMEmyBahZpnombiG6JDHmiOrmK3GLEJRXrWExXCDLmQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/expand@4.0.0':
+ resolution: {integrity: sha512-mR7JHNIvCB4o12f75KN42he7s1O9tmcSN4wJ6l04oymfXKLn+lYJFI7z9lbe4/Ald6fm8nuF38fuY5hNPl3B+A==}
+ engines: {node: '>=18'}
+
+ '@inquirer/figures@1.0.7':
+ resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==}
+ engines: {node: '>=18'}
+
+ '@inquirer/input@4.0.0':
+ resolution: {integrity: sha512-LD7MNzaX+q2OpU4Fn0i/SedhnnBCAnEzRr6L0MP6ohofFFlx9kp5EXX7flbRZlUnh8icOwC3NFmXTyP76hvo0g==}
+ engines: {node: '>=18'}
+
+ '@inquirer/select@4.0.0':
+ resolution: {integrity: sha512-XTN4AIFusWbNCBU1Xm2YDxbtH94e/FOrC27U3QargSsoDT1mRm+aLfqE+oOZnUuxwtTnInRT8UHRU3MVOu52wg==}
+ engines: {node: '>=18'}
+
+ '@inquirer/type@3.0.0':
+ resolution: {integrity: sha512-YYykfbw/lefC7yKj7nanzQXILM7r3suIvyFlCcMskc99axmsSewXWkAfXKwMbgxL76iAFVmRwmYdwNZNc8gjog==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
+ '@isaacs/string-locale-compare@1.1.0':
+ resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==}
+
'@istanbuljs/load-nyc-config@1.1.0':
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -1710,8 +1869,8 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1':
- resolution: {integrity: sha512-pdoMZ9QaPnVlSM+SdU/wgg0nyD/8wQ7y90ttO2CMCyrrm7RxveYIJ5eNfjPaoMFqW41LZra7QO9j+xV4Y18Glw==}
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0':
+ resolution: {integrity: sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==}
peerDependencies:
typescript: '>= 4.3.x'
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
@@ -1749,8 +1908,8 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@lerna-lite/cli@3.5.1':
- resolution: {integrity: sha512-kWhjomm8iwI6MxC/Au7Mv9pztOm4QVEKR72+YQ59qfP1sVwIX6jlWNaBmszXonry34v226GDs6gDE31Vl3QHoQ==}
+ '@lerna-lite/cli@3.9.3':
+ resolution: {integrity: sha512-xNNozIKLdnfIYAqm9a38961wWdQZ3xujqDxMjKCH1Jp3HabCsBDA9OPTuwQ0v3YfrwfBSC49ZTJMQnLfBHTvkw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -1774,37 +1933,40 @@ packages:
'@lerna-lite/watch':
optional: true
- '@lerna-lite/core@3.5.1':
- resolution: {integrity: sha512-cPOcwlEETXyraa2A0202B4GKYdlHsJ7i2YGzPY5PYrtV7AkjpETqKbQhhWzuQWXFJpdIuzuowmMeX/6XcVtorA==}
+ '@lerna-lite/core@3.9.3':
+ resolution: {integrity: sha512-VqpRh/TCazyBMvHGVwuSQDhO6XwrxoBcGFLbpKm7cb8KhgISkXH/xwEUITt8a/eDRIdDVo54yll7zuBD/beriQ==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@lerna-lite/filter-packages@3.5.1':
- resolution: {integrity: sha512-sYRoLB1kAiXP5yz/qPDJvna2ue6LYYYDJTxY62b40mcXcpzXd9VvvR/ECOi+3Gpomfs0qcr5eTusBZj4qDM5LQ==}
+ '@lerna-lite/filter-packages@3.9.3':
+ resolution: {integrity: sha512-2k8Aw+gfjhrVSGRLLzkBQxUwFofMpV+MASfa1znKy2idqTyqDzSyXAHX1DH9X2Zf7U5AJnewUUa9JXXxKRHr4A==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@lerna-lite/init@3.5.1':
- resolution: {integrity: sha512-N7p9ByH4OE/UaWUzz7BL51pnkNxU4tQetEMbn/4QFTh0EfFYP4OXF3zq2Y5Egs8l1Mx/iso9Ly68VHaE8aKPeQ==}
+ '@lerna-lite/init@3.9.3':
+ resolution: {integrity: sha512-mptePjJCvkpUkgw03u6bRTQ5VUPqPz+xPBUoqaj1Ebvk+fzPYcl31vROwxCWCmclC1SUVV9Q87Ge0Dl6EO9nVA==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@lerna-lite/profiler@3.5.1':
- resolution: {integrity: sha512-4vh68Ap2wUNEWtBVPTJLsfjwmSaGu95anUqir0P52Sn67uoy+CelmAaSpKEAE0trbsPp0fKumeotPhzEhCNo3A==}
+ '@lerna-lite/npmlog@3.9.3':
+ resolution: {integrity: sha512-4GJyCVofPKbxlZkZ0E2BLF3wzlqbmxzXqXMbm4ASL1xVYhoPqI5W4OPugc+a8hHm3OTqMqT09PYDXXGAtGh03g==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@lerna-lite/publish@3.5.2':
- resolution: {integrity: sha512-yAECe5l+t2snNXQGq5rm88w7mPc/watY0cSUaDtkrLf5nLJZbFpk3VV5ntwvNMUs9iFNjwFZCMaSl4q0WTbEBg==}
+ '@lerna-lite/profiler@3.9.3':
+ resolution: {integrity: sha512-09w3O5WwiHc3Y45flMaHI/QzBJKFw4A+xPxtROheFssB3YlMuixyMH6FlVlZRF44MwaFDBoCur4D6CfgHvmnkw==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@lerna-lite/run@3.5.1':
- resolution: {integrity: sha512-qy1h83h9UBiaqPSap23oJaVmkhME4ePMT5eOwN1sj+BLfUOKghVEYc/ZsMgNzFq0NspLYyFnUMbp8ZeieSKRDg==}
+ '@lerna-lite/publish@3.9.3':
+ resolution: {integrity: sha512-tHu32QkVIJTh4EjADKlL5UlUENHl8Ua6mJoh/JXUPAcBqeCmTlhOEBkOuJ2MvIpjqUPuNodg/Xsl8FGozTn86A==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@lerna-lite/version@3.5.2':
- resolution: {integrity: sha512-SEAwfox4jgYeEJI+DLjwSRP7qI2j5SUz902v+jjhBJkIxJwE+GDNNmH+Iih3W7HOK8La05CbtFvEpxUODGFtlA==}
+ '@lerna-lite/run@3.9.3':
+ resolution: {integrity: sha512-YxnB8PmGiWktwmU8bxZUcKosL7VjKT5PDYBgQDznf8Id8PTOwEoFXBwipQ6rA9pD/pjIhLog36mvp6Hb9CY0gw==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@ljharb/through@2.3.13':
- resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==}
- engines: {node: '>= 0.4'}
+ '@lerna-lite/version@3.9.3':
+ resolution: {integrity: sha512-IwnxOpdodhdJpbnIiZVrj+Cene9uSd/IfJ6cxUVVmtyvpS9OcwTn8zzSQs3EiX/R6nfZaDtVVqh0eFGVJdyTEw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+
+ '@mdx-js/mdx@3.0.1':
+ resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
'@mdx-js/react@3.0.1':
resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
@@ -1812,62 +1974,150 @@ packages:
'@types/react': '>=16'
react: '>=16'
- '@ndelangen/get-tarball@3.0.9':
- resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==}
+ '@mdx-js/rollup@3.0.1':
+ resolution: {integrity: sha512-j0II91OCm4ld+l5QVgXXMQGxVVcAWIQJakYWi1dv5pefDHASJyCYER2TsdH7Alf958GoFSM7ugukWyvDq/UY4A==}
+ peerDependencies:
+ rollup: '>=2'
+
+ '@mui/core-downloads-tracker@5.16.7':
+ resolution: {integrity: sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ==}
+
+ '@mui/material@5.16.7':
+ resolution: {integrity: sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ react-dom: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ '@types/react':
+ optional: true
+
+ '@mui/private-theming@5.16.6':
+ resolution: {integrity: sha512-rAk+Rh8Clg7Cd7shZhyt2HGTTE5wYKNSJ5sspf28Fqm/PZ69Er9o6KX25g03/FG2dfpg5GCwZh/xOojiTfm3hw==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/styled-engine@5.16.6':
+ resolution: {integrity: sha512-zaThmS67ZmtHSWToTiHslbI8jwrmITcN93LQaR2lKArbvS7Z3iLkwRoiikNWutx9MBs8Q6okKvbZq1RQYB3v7g==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.4.1
+ '@emotion/styled': ^11.3.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+
+ '@mui/system@5.16.7':
+ resolution: {integrity: sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ '@types/react':
+ optional: true
+
+ '@mui/types@7.2.18':
+ resolution: {integrity: sha512-uvK9dWeyCJl/3ocVnTOS6nlji/Knj8/tVqVX03UVTpdmTJYu/s4jtDd9Kvv0nRGE0CUSNW1UYAci7PYypjealg==}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/utils@5.16.6':
+ resolution: {integrity: sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/x-data-grid@6.20.4':
+ resolution: {integrity: sha512-I0JhinVV4e25hD2dB+R6biPBtpGeFrXf8RwlMPQbr9gUggPmPmNtWKo8Kk2PtBBMlGtdMAgHWe7PqhmucUxU1w==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@mui/material': ^5.4.1
+ '@mui/system': ^5.4.1
+ react: ^17.0.0 || ^18.0.0
+ react-dom: ^17.0.0 || ^18.0.0
- '@next/env@14.2.4':
- resolution: {integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==}
+ '@next/env@14.2.15':
+ resolution: {integrity: sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==}
- '@next/swc-darwin-arm64@14.2.4':
- resolution: {integrity: sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==}
+ '@next/swc-darwin-arm64@14.2.15':
+ resolution: {integrity: sha512-Rvh7KU9hOUBnZ9TJ28n2Oa7dD9cvDBKua9IKx7cfQQ0GoYUwg9ig31O2oMwH3wm+pE3IkAQ67ZobPfEgurPZIA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.4':
- resolution: {integrity: sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==}
+ '@next/swc-darwin-x64@14.2.15':
+ resolution: {integrity: sha512-5TGyjFcf8ampZP3e+FyCax5zFVHi+Oe7sZyaKOngsqyaNEpOgkKB3sqmymkZfowy3ufGA/tUgDPPxpQx931lHg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@14.2.4':
- resolution: {integrity: sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==}
+ '@next/swc-linux-arm64-gnu@14.2.15':
+ resolution: {integrity: sha512-3Bwv4oc08ONiQ3FiOLKT72Q+ndEMyLNsc/D3qnLMbtUYTQAmkx9E/JRu0DBpHxNddBmNT5hxz1mYBphJ3mfrrw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.4':
- resolution: {integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==}
+ '@next/swc-linux-arm64-musl@14.2.15':
+ resolution: {integrity: sha512-k5xf/tg1FBv/M4CMd8S+JL3uV9BnnRmoe7F+GWC3DxkTCD9aewFRH1s5rJ1zkzDa+Do4zyN8qD0N8c84Hu96FQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.4':
- resolution: {integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==}
+ '@next/swc-linux-x64-gnu@14.2.15':
+ resolution: {integrity: sha512-kE6q38hbrRbKEkkVn62reLXhThLRh6/TvgSP56GkFNhU22TbIrQDEMrO7j0IcQHcew2wfykq8lZyHFabz0oBrA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.4':
- resolution: {integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==}
+ '@next/swc-linux-x64-musl@14.2.15':
+ resolution: {integrity: sha512-PZ5YE9ouy/IdO7QVJeIcyLn/Rc4ml9M2G4y3kCM9MNf1YKvFY4heg3pVa/jQbMro+tP6yc4G2o9LjAz1zxD7tQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@14.2.4':
- resolution: {integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==}
+ '@next/swc-win32-arm64-msvc@14.2.15':
+ resolution: {integrity: sha512-2raR16703kBvYEQD9HNLyb0/394yfqzmIeyp2nDzcPV4yPjqNUG3ohX6jX00WryXz6s1FXpVhsCo3i+g4RUX+g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.4':
- resolution: {integrity: sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==}
+ '@next/swc-win32-ia32-msvc@14.2.15':
+ resolution: {integrity: sha512-fyTE8cklgkyR1p03kJa5zXEaZ9El+kDNM5A+66+8evQS5e/6v0Gk28LqA0Jet8gKSOyP+OTm/tJHzMlGdQerdQ==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.4':
- resolution: {integrity: sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==}
+ '@next/swc-win32-x64-msvc@14.2.15':
+ resolution: {integrity: sha512-SzqGbsLsP9OwKNUG9nekShTwhj6JSB9ZLMWQ8g1gG6hdE5gQLncbnbymrwy2yVmH9nikSLYRYxYMFu78Ggp7/g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -1888,6 +2138,11 @@ packages:
resolution: {integrity: sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==}
engines: {node: ^16.14.0 || >=18.0.0}
+ '@npmcli/arborist@7.5.4':
+ resolution: {integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ hasBin: true
+
'@npmcli/config@8.1.0':
resolution: {integrity: sha512-61LNEybTFaa9Z/f8y6X9s2Blc75aijZK67LxqC5xicBcfkw8M/88nYrRXGXxAUKm6GRlxTZ216dp1UK2+TbaYw==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -1896,6 +2151,10 @@ packages:
resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ '@npmcli/fs@3.1.1':
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
'@npmcli/git@4.1.0':
resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -1909,10 +2168,19 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
+ '@npmcli/installed-package-contents@2.1.0':
+ resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ hasBin: true
+
'@npmcli/map-workspaces@3.0.4':
resolution: {integrity: sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ '@npmcli/metavuln-calculator@7.1.1':
+ resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
'@npmcli/name-from-folder@2.0.0':
resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -1925,6 +2193,10 @@ packages:
resolution: {integrity: sha512-1aL4TuVrLS9sf8quCLerU3H9J4vtCtgu8VauYozrmEyU57i/EdKleCnsQ7vpnABIH6c9mnTxcH5sFkO3BlV8wQ==}
engines: {node: ^16.14.0 || >=18.0.0}
+ '@npmcli/package-json@5.2.1':
+ resolution: {integrity: sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
'@npmcli/promise-spawn@6.0.2':
resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -1933,6 +2205,10 @@ packages:
resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==}
engines: {node: ^16.14.0 || >=18.0.0}
+ '@npmcli/query@3.1.0':
+ resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
'@npmcli/redact@2.0.0':
resolution: {integrity: sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -1945,25 +2221,22 @@ packages:
resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@octokit/auth-token@4.0.0':
- resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
+ '@octokit/auth-token@5.1.1':
+ resolution: {integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==}
engines: {node: '>= 18'}
- '@octokit/core@5.0.2':
- resolution: {integrity: sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==}
+ '@octokit/core@6.1.2':
+ resolution: {integrity: sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==}
engines: {node: '>= 18'}
- '@octokit/endpoint@9.0.4':
- resolution: {integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==}
+ '@octokit/endpoint@10.1.1':
+ resolution: {integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==}
engines: {node: '>= 18'}
- '@octokit/graphql@7.0.2':
- resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==}
+ '@octokit/graphql@8.1.1':
+ resolution: {integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==}
engines: {node: '>= 18'}
- '@octokit/openapi-types@19.1.0':
- resolution: {integrity: sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==}
-
'@octokit/openapi-types@22.2.0':
resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==}
@@ -1976,11 +2249,11 @@ packages:
peerDependencies:
'@octokit/core': '5'
- '@octokit/plugin-request-log@4.0.0':
- resolution: {integrity: sha512-2uJI1COtYCq8Z4yNSnM231TgH50bRkheQ9+aH8TnZanB6QilOnx8RMD2qsnamSOXtDj0ilxvevf5fGsBhBBzKA==}
+ '@octokit/plugin-request-log@5.3.1':
+ resolution: {integrity: sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==}
engines: {node: '>= 18'}
peerDependencies:
- '@octokit/core': '>=5'
+ '@octokit/core': '>=6'
'@octokit/plugin-rest-endpoint-methods@13.2.2':
resolution: {integrity: sha512-EI7kXWidkt3Xlok5uN43suK99VWqc8OaIMktY9d9+RNKl69juoTyxmLoWPIZgJYzi41qj/9zU7G/ljnNOJ5AFA==}
@@ -1988,205 +2261,122 @@ packages:
peerDependencies:
'@octokit/core': ^5
- '@octokit/request-error@5.0.1':
- resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==}
+ '@octokit/request-error@6.1.5':
+ resolution: {integrity: sha512-IlBTfGX8Yn/oFPMwSfvugfncK2EwRLjzbrpifNaMY8o/HTEAFqCA1FZxjD9cWvSKBHgrIhc4CSBIzMxiLsbzFQ==}
engines: {node: '>= 18'}
- '@octokit/request@8.1.6':
- resolution: {integrity: sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==}
+ '@octokit/request@9.1.3':
+ resolution: {integrity: sha512-V+TFhu5fdF3K58rs1pGUJIDH5RZLbZm5BI+MNF+6o/ssFNT4vWlCh/tVpF3NxGtP15HUxTTMUbsG5llAuU2CZA==}
engines: {node: '>= 18'}
- '@octokit/rest@20.1.1':
- resolution: {integrity: sha512-MB4AYDsM5jhIHro/dq4ix1iWTLGToIGk6cWF5L6vanFaMble5jTX/UBQyiv05HsWnwUtY8JrfHy2LWfKwihqMw==}
+ '@octokit/rest@21.0.2':
+ resolution: {integrity: sha512-+CiLisCoyWmYicH25y1cDfCrv41kRSvTq6pPWtRroRJzhsCZWZyCqGyI8foJT5LmScADSwRAnr/xo+eewL04wQ==}
engines: {node: '>= 18'}
- '@octokit/types@12.3.0':
- resolution: {integrity: sha512-nJ8X2HRr234q3w/FcovDlA+ttUU4m1eJAourvfUUtwAWeqL8AsyRqfnLvVnYn3NFbUnsmzQCzLNdFerPwdmcDQ==}
-
'@octokit/types@13.5.0':
resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==}
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
-
- '@pkgr/core@0.1.0':
- resolution: {integrity: sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==}
- engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+ '@parcel/watcher-android-arm64@2.4.1':
+ resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
- '@pnpm/config.env-replace@1.1.0':
- resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
- engines: {node: '>=12.22.0'}
+ '@parcel/watcher-darwin-arm64@2.4.1':
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [darwin]
- '@pnpm/network.ca-file@1.0.2':
- resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
- engines: {node: '>=12.22.0'}
+ '@parcel/watcher-darwin-x64@2.4.1':
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
- '@pnpm/npm-conf@2.2.2':
- resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
- engines: {node: '>=12'}
+ '@parcel/watcher-freebsd-x64@2.4.1':
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
- '@radix-ui/primitive@1.0.1':
- resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
+ resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
- '@radix-ui/react-compose-refs@1.0.1':
- resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
- '@radix-ui/react-context@1.0.1':
- resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
+ resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
- '@radix-ui/react-dialog@1.0.5':
- resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
+ resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
- '@radix-ui/react-dismissable-layer@1.0.5':
- resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
- '@radix-ui/react-focus-guards@1.0.1':
- resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@parcel/watcher-win32-arm64@2.4.1':
+ resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
- '@radix-ui/react-focus-scope@1.0.4':
- resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@parcel/watcher-win32-ia32@2.4.1':
+ resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [ia32]
+ os: [win32]
- '@radix-ui/react-id@1.0.1':
- resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@parcel/watcher-win32-x64@2.4.1':
+ resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [win32]
- '@radix-ui/react-portal@1.0.4':
- resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@parcel/watcher@2.4.1':
+ resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ engines: {node: '>= 10.0.0'}
- '@radix-ui/react-presence@1.0.1':
- resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
- '@radix-ui/react-primitive@1.0.3':
- resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
+ '@pkgr/core@0.1.0':
+ resolution: {integrity: sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@radix-ui/react-slot@1.0.2':
- resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@pnpm/config.env-replace@1.1.0':
+ resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
+ engines: {node: '>=12.22.0'}
- '@radix-ui/react-use-callback-ref@1.0.1':
- resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@pnpm/network.ca-file@1.0.2':
+ resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
+ engines: {node: '>=12.22.0'}
- '@radix-ui/react-use-controllable-state@1.0.1':
- resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@pnpm/npm-conf@2.2.2':
+ resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ engines: {node: '>=12'}
- '@radix-ui/react-use-escape-keydown@1.0.3':
- resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@polka/url@1.0.0-next.28':
+ resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
- '@radix-ui/react-use-layout-effect@1.0.1':
- resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
+ '@popperjs/core@2.11.8':
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
'@rollup/plugin-babel@6.0.4':
resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==}
@@ -2210,8 +2400,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-node-resolve@15.2.3':
- resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
+ '@rollup/plugin-node-resolve@15.3.0':
+ resolution: {integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.78.0||^3.0.0||^4.0.0
@@ -2219,15 +2409,6 @@ packages:
rollup:
optional: true
- '@rollup/plugin-replace@5.0.7':
- resolution: {integrity: sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
'@rollup/pluginutils@4.2.1':
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
@@ -2241,86 +2422,98 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.18.0':
- resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
+ '@rollup/pluginutils@5.1.2':
+ resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.24.0':
+ resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.18.0':
- resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
+ '@rollup/rollup-android-arm64@4.24.0':
+ resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.18.0':
- resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
+ '@rollup/rollup-darwin-arm64@4.24.0':
+ resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.18.0':
- resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
+ '@rollup/rollup-darwin-x64@4.24.0':
+ resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
- resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
+ resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.18.0':
- resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
+ '@rollup/rollup-linux-arm-musleabihf@4.24.0':
+ resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.18.0':
- resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
+ '@rollup/rollup-linux-arm64-gnu@4.24.0':
+ resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.18.0':
- resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
+ '@rollup/rollup-linux-arm64-musl@4.24.0':
+ resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
- resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
+ resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.18.0':
- resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.24.0':
+ resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.18.0':
- resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
+ '@rollup/rollup-linux-s390x-gnu@4.24.0':
+ resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.18.0':
- resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
+ '@rollup/rollup-linux-x64-gnu@4.24.0':
+ resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.18.0':
- resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
+ '@rollup/rollup-linux-x64-musl@4.24.0':
+ resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.18.0':
- resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
+ '@rollup/rollup-win32-arm64-msvc@4.24.0':
+ resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.18.0':
- resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
+ '@rollup/rollup-win32-ia32-msvc@4.24.0':
+ resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.18.0':
- resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
+ '@rollup/rollup-win32-x64-msvc@4.24.0':
+ resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==}
cpu: [x64]
os: [win32]
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
@@ -2363,10 +2556,6 @@ packages:
resolution: {integrity: sha512-axlrvsHlHlFmKKMEg4VyvMzFr93JWJj4eIfXY1STVuO2fsImCa7ncaiG5gC8HKOX590AW5RtRsC41/B+OfrSqw==}
engines: {node: '>=14.16'}
- '@sindresorhus/merge-streams@2.3.0':
- resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
- engines: {node: '>=18'}
-
'@sinonjs/commons@3.0.0':
resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
@@ -2378,50 +2567,62 @@ packages:
engines: {node: '>=16.0.0', npm: '>=7.10.0'}
hasBin: true
- '@storybook/addon-a11y@8.1.9':
- resolution: {integrity: sha512-UNA0uGUU7bS43Ue9uSwvqHxalNB6rGo7y15CqU4vBFY3ilZlnwLiIJ/sjdyuUt03i1lNu6avAM9nTic8uI5jWg==}
+ '@storybook/addon-a11y@8.3.5':
+ resolution: {integrity: sha512-/19UO8IXbyfcYK5K8ejSYF+hC+EK79c0bBPHMNeYSFOHSqQM3KoMo+TLIcLsuhuRClmlM+4Zs+VSIYDwc+d3ig==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/addon-actions@8.1.9':
- resolution: {integrity: sha512-7ZefE9AER42htn4McqMXcL2RDnflesIf4SxY7pCHpL7rUoldxfZ1DGGRgyKen00H6vx1LGzLRBN9fhBUf9XqCA==}
+ '@storybook/addon-actions@8.3.5':
+ resolution: {integrity: sha512-t8D5oo+4XfD+F8091wLa2y/CDd/W2lExCeol5Vm1tp5saO+u6f2/d7iykLhTowWV84Uohi3D073uFeyTAlGebg==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/addon-docs@8.1.9':
- resolution: {integrity: sha512-dRSG54gSVn4qQc6u9ROYeDu4B0wJkr+fpS2AGwav2+KAM5kNw2ecsyhyreUhc4e/AwhAhGc49d7iQ3rjOHR//A==}
+ '@storybook/addon-docs@8.3.5':
+ resolution: {integrity: sha512-MOVfo1bY8kXTzbvmWnx3UuSO4WNykFz7Edvb3mxltNyuW7UDRZGuIuSe32ddT/EtLJfurrC9Ja3yBy4KBUGnMA==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/addon-highlight@8.1.9':
- resolution: {integrity: sha512-7jcjepeP/Z6XhKXKIfMqrM72tsTwo3wAaytuVWG9mHeNTTphepqO0YXZphaEh5EhupaT0DOYWT6jVxOkiw+xpA==}
+ '@storybook/addon-highlight@8.3.5':
+ resolution: {integrity: sha512-ku0epul9aReCR3Gv/emwYnsqg3vgux5OmYMjoDcJC7s+LyfweSzLV/f5t9gSHazikJElh5TehtVkWbC4QfbGSw==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/addon-interactions@8.1.9':
- resolution: {integrity: sha512-R916xLxWrhNPujo63JHIn8pcwR9KpaME/WH1PGLFsvVS7R7gcTNsa/ZL2LanuG8tHtEcLAoGufXaeoZGmTCTIQ==}
+ '@storybook/addon-interactions@8.3.5':
+ resolution: {integrity: sha512-GtTy/A+mG7vDOahQr2avT4dpWtCRiFDSYcWyuQOZm10y8VDDw157HQM+FuhxjV9Owrrohy9F24oBUwRG8H3b5A==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/addon-links@8.1.9':
- resolution: {integrity: sha512-gawakQHokGDLEDIyyJzxHB0d5AJi2sSLzoNc0cvewEE55i6T7jvpXpVqTu6/ZtVFZ+3x3gLIQ6Q3krNNIz6W2A==}
+ '@storybook/addon-links@8.3.5':
+ resolution: {integrity: sha512-giRCpn6cfJMYPnVJkojoQDO5ae6098fgY9YgAhwaJej/9dufNcioFdbiyfK1vyzbG6TGeTmJ9ncWCXgWRtzxPQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ storybook: ^8.3.5
peerDependenciesMeta:
react:
optional: true
- '@storybook/addon-viewport@8.1.9':
- resolution: {integrity: sha512-ZCoqzNWp2w9TLJL8RC0fjv1RQcuGhwI64jjlGvszZm7TxP82C1SS71X/jbx5LWc2Dyl5xMt1/yOGFXvkAB2SUg==}
+ '@storybook/addon-viewport@8.3.5':
+ resolution: {integrity: sha512-FSWydoPiVWFXEittG7O1YgvuaqoU9Vb+qoq9XfP/hvQHHMDcMZvC40JaV8AnJeTXaM7ngIjcn9XDEfGbFfOzXw==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/blocks@8.1.9':
- resolution: {integrity: sha512-AB7icCijK2rft5kmzFF7bHuTdVIf6u5r26r4auqYxxVsHV87+k12kLvC8AyEssVIKMo+2vzImmdlhIScpCjrdQ==}
+ '@storybook/blocks@8.3.5':
+ resolution: {integrity: sha512-8cHTdTywolTHlgwN8I7YH7saWAIjGzV617AwjhJ95AKlC0VtpO1gAFcAgCqr4DU9eMc+LZuvbnaU/RSvA5eCCQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ storybook: ^8.3.5
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
- '@storybook/builder-manager@8.1.9':
- resolution: {integrity: sha512-CmDXVrx3moUde6VWmdb49eCYHNu4e2wxeANKSsW1yEC0OLysQ9N6W9B5CuVWeoV3axVX/tKDqC83YY/008/4Qg==}
-
- '@storybook/builder-vite@8.1.9':
- resolution: {integrity: sha512-OqjJne7x3l8yPMB3VTc9zbKYN5+9Yw/8cW9vK3N0rMObQa6be76JfJAgTFUGujp/GdVjYEiFI1Pu3b1wf5loWQ==}
+ '@storybook/builder-vite@8.3.5':
+ resolution: {integrity: sha512-paGX8tEmAeAKFU5Cnwkq3RAi3LFCnmjAxMJikT09jUi6jDpNa0VzH8jbLxKdjsPMAsz0Wv3mrLvL2b8hyxLWAw==}
peerDependencies:
'@preact/preset-vite': '*'
+ storybook: ^8.3.5
typescript: '>= 4.3.x'
vite: ^4.0.0 || ^5.0.0
vite-plugin-glimmerx: '*'
@@ -2433,168 +2634,245 @@ packages:
vite-plugin-glimmerx:
optional: true
- '@storybook/channels@8.1.9':
- resolution: {integrity: sha512-7dvzoHBJQDvG1PMJVLnsPw3xuQ6KMZBSOgzVrkFWi4f3j6zXjs7ADVo/uqIoLq8inziupz2himWFnUtl5moIUw==}
-
- '@storybook/cli@8.1.9':
- resolution: {integrity: sha512-+4DQJf5yrdmKrAs8sx0WvKu/ja49oOLQU2MxRPKhXW3bxDFjkTYvWuCKwSbMwUa7Npt96CK3bwAPP53jz/+mXA==}
- hasBin: true
-
- '@storybook/client-logger@8.1.9':
- resolution: {integrity: sha512-sHX0UhAquhVCtbRtDNN5Ura8hUxRjZWKgQKt8NWQIt9hOSSurGJE3+93OzNAYDp54kh77QKY3qdZCgAJZuWZPw==}
-
- '@storybook/codemod@8.1.9':
- resolution: {integrity: sha512-thTdwiAO/eUUyiCzgkyGjA4fE3BAdXqf3WdTRjH4Vqk4yby9EalwcBitkj/M6bCDGjdoxU2q2ByUDD9opwyMiw==}
-
- '@storybook/components@8.1.9':
- resolution: {integrity: sha512-YGDYTJfobtNDBJrvXNgmExX3LGnb9jGPGdroS4uHewLFaqEI3Fqu3RiFLaJf40TlZ27uWLprysdLRol8j+wYEw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
-
- '@storybook/core-common@8.1.9':
- resolution: {integrity: sha512-+KReoo41FUknTxk3fbnoul995SnZdKAVSK6MuqKOQnC9PH6bh864k6i1LShVZx/wk3n25h9xorD3UgyRI6sZ0w==}
+ '@storybook/components@8.3.5':
+ resolution: {integrity: sha512-Rq28YogakD3FO4F8KwAtGpo1g3t4V/gfCLqTQ8B6oQUFoxLqegkWk/DlwCzvoJndXuQJfdSyM6+r1JcA4Nql5A==}
peerDependencies:
- prettier: ^2 || ^3
- peerDependenciesMeta:
- prettier:
- optional: true
-
- '@storybook/core-events@8.1.9':
- resolution: {integrity: sha512-c8MnBqUtTvIBNoDBBQQrFEy8pNAagcDryh5FM+T1SPBsH6j3fRSZwXMc6vvW2BYkQxJ67kpd7xrH7uapqhNEcg==}
-
- '@storybook/core-server@8.1.9':
- resolution: {integrity: sha512-bn3M264vr3GY9kgAdRRIUdVV4PcUqtYvttQ/h6XDVJWC1UYUQW49zQNxQLQUXSQo4KLISnvTKHmP5qgbY6BASQ==}
-
- '@storybook/csf-plugin@8.1.9':
- resolution: {integrity: sha512-OC3Z7lx5Tt3iNqVpfAykCKhmHyWXwjPvK0C0RubmKLRWdH66aKp2SzvqJSFppRGZySWKKJqSBGtjB/AsG/Do4Q==}
+ storybook: ^8.3.5
- '@storybook/csf-tools@8.1.9':
- resolution: {integrity: sha512-nCYGNJOoBZjAdD1blTgS8/O0HwXaZ4cwUd8G9pQbsyt/cSW65clATeEV1rTTcR+G9JHnZBQ3jLAnH2dbFY0c8w==}
+ '@storybook/core@8.3.5':
+ resolution: {integrity: sha512-GOGfTvdioNa/n+Huwg4u/dsyYyBcM+gEcdxi3B7i5x4yJ3I912KoVshumQAOF2myKSRdI8h8aGWdx7nnjd0+5Q==}
- '@storybook/csf@0.1.7':
- resolution: {integrity: sha512-53JeLZBibjQxi0Ep+/AJTfxlofJlxy1jXcSKENlnKxHjWEYyHQCumMP5yTFjf7vhNnMjEpV3zx6t23ssFiGRyw==}
-
- '@storybook/docs-mdx@3.1.0-next.0':
- resolution: {integrity: sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==}
+ '@storybook/csf-plugin@8.3.5':
+ resolution: {integrity: sha512-ODVqNXwJt90hG7QW8I9w/XUyOGlr0l7XltmIJgXwB/2cYDvaGu3JV5Ybg7O0fxPV8uXk7JlRuUD8ZYv5Low6pA==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/docs-tools@8.1.9':
- resolution: {integrity: sha512-ZGtlldQARXG+v8KtNq5dxtAfPLsaLFuV4gJQ4MHXcspQSKtQ6fq5k2IkxhKhDg4EEQ/lhSl8vUxws+W79xWbbg==}
+ '@storybook/csf@0.1.11':
+ resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==}
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/icons@1.2.9':
- resolution: {integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==}
+ '@storybook/icons@1.2.12':
+ resolution: {integrity: sha512-UxgyK5W3/UV4VrI3dl6ajGfHM4aOqMAkFLWe2KibeQudLf6NJpDrDMSHwZj+3iKC4jFU7dkKbbtH2h/al4sW3Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/instrumenter@8.1.9':
- resolution: {integrity: sha512-R4L//OeQzLiVHkMLJcQ387aaOEXjP28m5sLJZIPI97PQNCrY/vD+aMWGDb4f5DOgCT7e248BEfpnlW5ZwZnnRA==}
-
- '@storybook/manager-api@8.1.9':
- resolution: {integrity: sha512-iafn/C9Bg9UHae7FoL5rNLCeQQnzvm+kKRlQzP5iVSJurnaYnajzej4baoZmF/eZJTFLdyp8klsqcl+NLJh8iA==}
-
- '@storybook/manager@8.1.9':
- resolution: {integrity: sha512-sp1N7ZgOtGK5uhCgwuPQlJ4JYKr3TyNeahotwAf2FUb5n70YyXDzqoqO8q8H0y9NarX+EcP1gJ4GmpT9+qTxsQ==}
-
- '@storybook/node-logger@8.1.9':
- resolution: {integrity: sha512-X5YGkJOui+m3TXqbf7HODzrf4VdzamtlUXlD08Qm36JJD/qJJZVhSivzkQR4uom/VW+ejChM2ETgw41SrK0vJA==}
+ '@storybook/instrumenter@8.3.5':
+ resolution: {integrity: sha512-NLDXai5y2t1ITgHVK9chyL0rMFZbICCOGcnTbyWhkLbiEWZKPJ8FuB8+g+Ba6zwtCve1A1Cnb4O2LOWy7TgWQw==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/preview-api@8.1.9':
- resolution: {integrity: sha512-deZoKsTHMbpzGOhboVdT/MHhafPKQyxo2tj1Zrb0GFfpabAUnJzVXRr93P5qCOKCuPQEwQyZx0ScW5qzY2JTrQ==}
+ '@storybook/manager-api@8.3.5':
+ resolution: {integrity: sha512-fEQoKKi7h7pzh2z9RfuzatJxubrsfL/CB99fNXQ0wshMSY/7O4ckd18pK4fzG9ErnCtLAO9qsim4N/4eQC+/8Q==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/preview@8.1.9':
- resolution: {integrity: sha512-yLwe9RJRlF+h9D73pyo4fUXFxN/krTgLKT08IoyWwq7/onzVlujYdDl56EsM+Aw5OktBuwAvTiaw0WCdiFP4sA==}
+ '@storybook/preview-api@8.3.5':
+ resolution: {integrity: sha512-VPqpudE8pmjTLvdNJoW/2//nqElDgUOmIn3QxbbCmdZTHDg5tFtxuqwdlNfArF0TxvTSBDIulXt/Q6K56TAfTg==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/react-dom-shim@8.1.9':
- resolution: {integrity: sha512-nRpw1SxkSCf8+MrsgL37lpihcr0fwtG0tHShW6F2+Lrx0nlzaOTH/VOvAwZJLNYpqddqln6vQ6Yk7Wxvw2IIkw==}
+ '@storybook/react-dom-shim@8.3.5':
+ resolution: {integrity: sha512-Hf0UitJ/K0C7ajooooUK/PxOR4ihUWqsC7iCV1Gqth8U37dTeLMbaEO4PBwu0VQ+Ufg0N8BJLWfg7o6G4hrODw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ storybook: ^8.3.5
- '@storybook/react-vite@8.1.9':
- resolution: {integrity: sha512-aWKqsFDIDEulZBd7zKKaXkeR5wWZBn6sdbwBnnneC7WY0tty3ZeZLueVqgc/lglT3EnUpg3nRA3UFAbft9npYQ==}
+ '@storybook/react-vite@8.3.5':
+ resolution: {integrity: sha512-1pnN1JB7GrHUoTVn8VGkS240VNGhWkZBOMaaaRQnkgY1dCrFxAQv4YKFVuC250+rQzgp8X33J/pDAukgwzWYFQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ storybook: ^8.3.5
vite: ^4.0.0 || ^5.0.0
- '@storybook/react@8.1.9':
- resolution: {integrity: sha512-linHAtKslwcZaJDsVzH+tayX1cJtdPfh6bJlEaKxolO9xZ3vSiyK4D3u2DWLeiETx+9qyoS/qmWL/z7I8ijvfg==}
+ '@storybook/react@8.3.5':
+ resolution: {integrity: sha512-kuBPe/wBin10SWr4EWPKxiTRGQ4RD2etGEVWVQLqVpOuJp/J2hVvXQHtCfZXU4TZT5x4PBbPRswbr58+XlF+kQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
+ '@storybook/test': 8.3.5
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ storybook: ^8.3.5
typescript: '>= 4.2.x'
peerDependenciesMeta:
+ '@storybook/test':
+ optional: true
typescript:
optional: true
- '@storybook/router@8.1.9':
- resolution: {integrity: sha512-b7e/pnqfYLD3oxdStnAZI+Gxp0Bodk3q5Jo9FUoiSNZaa3Pu8conq+jsyyXT19uDZtWwOursBKVvDM2/dtHGLg==}
+ '@storybook/test@8.3.5':
+ resolution: {integrity: sha512-1BXWsUGWk9FiKKelZZ55FDJdeoL8uRBHbjTYBRM2xJLhdNSvGzI4Tb3bkmxPpGn72Ua6AyldhlTxr2BpUFKOHA==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/telemetry@8.1.9':
- resolution: {integrity: sha512-ayNt4g6MKIQCj5fPmB2WhYbEEH+AMVswUOedFp2DtPojeDnVJMp38lSFykTbjaq+/HrDpnoZn6fG4pd+05N+dg==}
+ '@storybook/theming@8.3.5':
+ resolution: {integrity: sha512-9HmDDyC691oqfg4RziIM9ElsS2HITaxmH7n/yeUPtuirkPdAQzqOzhvH/Sa0qOhifzs8VjR+Gd/a/ZQ+S38r7w==}
+ peerDependencies:
+ storybook: ^8.3.5
- '@storybook/test@8.1.9':
- resolution: {integrity: sha512-7b9PFHh+1XJz2Cge6FZTyZZHJfGelr7GB7RtTvsWY17+gYBzhbiv1Oqrj0+RKRZtyjfG0lAJ6fiyXETBevXmDw==}
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- '@storybook/theming@8.1.9':
- resolution: {integrity: sha512-CVM3F4Fa9cIFL4u/BhbANWytShBFeFBZeCFwvcJizJUL+nSgVlxeYilxwQB/1AxyJn/+OprW3nCw5aSbui/EEA==}
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
+ engines: {node: '>=14'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0':
+ resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0':
+ resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0':
+ resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0':
+ resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0':
+ resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-transform-svg-component@8.0.0':
+ resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-preset@8.1.0':
+ resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/core@8.1.0':
+ resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
+ engines: {node: '>=14'}
+
+ '@svgr/hast-util-to-babel-ast@8.0.0':
+ resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
+ engines: {node: '>=14'}
+
+ '@svgr/plugin-jsx@8.1.0':
+ resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@svgr/core': '*'
+
+ '@swc/core-darwin-arm64@1.7.36':
+ resolution: {integrity: sha512-8vDczXzCgv3ceTPhEivlpGprN44YlrCK1nbfU9g2TrhV/Aiqi09W/eM5zLesdoM1Z3mJl492gc/8nlTkpDdusw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@swc/core-darwin-x64@1.7.36':
+ resolution: {integrity: sha512-Pa2Gao7+Wf5m3SsK4abKRtd48AtoUnJInvaC3d077swBfgZjbjUbQvcpdc2dOeQtWwo49rFqUZJonMsL0jnPgQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@swc/core-linux-arm-gnueabihf@1.7.36':
+ resolution: {integrity: sha512-3YsMWd7V+WZEjbfBnLkkz/olcRBa8nyoK0iIOnNARJBMcYaJxjkJSMZpmSojCnIVwvjA1N83CPAbUL+W+fCnHg==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@swc/core-linux-arm64-gnu@1.7.36':
+ resolution: {integrity: sha512-lqM3aBB7kJazJYOwHeA5OGNLqXoQPZ/76b3dV+XcjN1GhD0CcXz6mW5PRYVin6OSN1eKrKBKJjtDA1mqADDEvw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-arm64-musl@1.7.36':
+ resolution: {integrity: sha512-bqei2YDzvUfG0pth5W2xJaj0eG4XWYk0d/NJ75vBX6bkIzK6dC8iuKQ41jOfUWonnrAs7rTDDJW0sTn/evvRdw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-x64-gnu@1.7.36':
+ resolution: {integrity: sha512-03maXTUyaBjeCxlDltmdzHje1ryQt1C4OWmmNgSSRXjLb+GNnAenwOJMSrcvHP/aNClD2pwsFCnYKDGy+sYE6w==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-linux-x64-musl@1.7.36':
+ resolution: {integrity: sha512-XXysqLkvjtQnXm1zHqLhy00UYPv/gk5OtwR732X+piNisnEbcJBqI8Qp9O7YvLWllRcoP8IMBGDWLGdGLSpViA==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-win32-arm64-msvc@1.7.36':
+ resolution: {integrity: sha512-k7+dmb13a/zPw+E4XYfPmLZFWJgcOcBRKIjYl9nQErtYsgsg3Ji6TBbsvJVETy23lNHyewZ17V5Vq6NzaG0hzg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@swc/core-win32-ia32-msvc@1.7.36':
+ resolution: {integrity: sha512-ridD3ay6YM2PEYHZXXFN+edYEv0FOynaqOBP+NSnGNHA35azItIjoIe+KNi4WltGtAjpKCHSpjGCNfna12wdYQ==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@swc/core-win32-x64-msvc@1.7.36':
+ resolution: {integrity: sha512-j1z2Z1Ln9d0E3dHsPkC1K9XDh0ojhRPwV+GfRTu4D61PE+aYhYLvbJC6xPvL4/204QrStRS7eDu3m+BcDp3rgQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@swc/core@1.7.36':
+ resolution: {integrity: sha512-bu7ymMX+LCJOSSrKank25Jaq66ymLVA9fOUuy4ck3/6rbXdLw+pIJPnIDKQ9uNcxww8KDxOuJk9Ui9pqR+aGFw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '*'
peerDependenciesMeta:
- react:
- optional: true
- react-dom:
+ '@swc/helpers':
optional: true
- '@storybook/types@8.1.9':
- resolution: {integrity: sha512-temr7cNoBwu/+EF0jZ7aIfHtqwMqyevPLRfl/emkZM2t751NxbTkP1kxvfk9I0L8wF7mvVHXWn2iIM3QBqzWDw==}
-
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
+ '@swc/types@0.1.13':
+ resolution: {integrity: sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==}
+
'@szmarczak/http-timer@5.0.1':
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
- '@testing-library/dom@10.1.0':
- resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==}
+ '@testing-library/dom@10.4.0':
+ resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
- '@testing-library/dom@9.3.4':
- resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
- engines: {node: '>=14'}
-
- '@testing-library/jest-dom@6.4.6':
- resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==}
+ '@testing-library/jest-dom@6.5.0':
+ resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
- peerDependencies:
- '@jest/globals': '>= 28'
- '@types/bun': latest
- '@types/jest': '>= 28'
- jest: '>= 28'
- vitest: '>= 0.32'
- peerDependenciesMeta:
- '@jest/globals':
- optional: true
- '@types/bun':
- optional: true
- '@types/jest':
- optional: true
- jest:
- optional: true
- vitest:
- optional: true
'@testing-library/react@15.0.7':
resolution: {integrity: sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==}
@@ -2664,54 +2942,36 @@ packages:
'@types/connect@3.4.35':
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
- '@types/cross-spawn@6.0.6':
- resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
-
'@types/debug@4.1.8':
resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==}
- '@types/detect-port@1.3.3':
- resolution: {integrity: sha512-bV/jQlAJ/nPY3XqSatkGpu+nGzou+uSwrH1cROhn+jBFg47yaNH+blW4C7p9KhopC7QxCv/6M86s37k8dMk0Yg==}
-
- '@types/diff@5.2.1':
- resolution: {integrity: sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==}
-
- '@types/doctrine@0.0.3':
- resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==}
-
'@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
- '@types/ejs@3.1.2':
- resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==}
-
- '@types/emscripten@1.39.10':
- resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==}
-
'@types/escodegen@0.0.6':
resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
+ '@types/eslint@8.56.10':
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+
'@types/estree-jsx@1.0.0':
resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==}
'@types/estree@0.0.51':
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/express-serve-static-core@4.17.35':
resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==}
- '@types/express@4.17.17':
- resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
+ '@types/express@4.17.21':
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
'@types/find-cache-dir@3.2.1':
resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==}
- '@types/fs-extra@8.1.5':
- resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==}
-
'@types/glob@7.2.0':
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
@@ -2742,12 +3002,15 @@ packages:
'@types/istanbul-reports@3.0.1':
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
- '@types/jest@29.5.12':
- resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==}
+ '@types/jest@29.5.13':
+ resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==}
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
@@ -2778,14 +3041,14 @@ packages:
'@types/ms@0.7.31':
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
- '@types/node@18.18.14':
- resolution: {integrity: sha512-iSOeNeXYNYNLLOMDSVPvIFojclvMZ/HDY2dU17kUlcsOsSQETbWIslJbYLZgA+ox8g2XQwSHKTkght1a5X26lQ==}
+ '@types/node@20.14.11':
+ resolution: {integrity: sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==}
- '@types/node@20.10.1':
- resolution: {integrity: sha512-T2qwhjWwGH81vUEx4EXmBKsTJRXFXNZTL4v0gi01+zyBmCwzE6TyHszqX01m+QHTEq+EZNo13NeJIdEqf+Myrg==}
+ '@types/node@20.16.11':
+ resolution: {integrity: sha512-y+cTCACu92FyA5fgQSAI8A1H429g7aSK2HsO7K4XYUWc4dY5IUz55JSDIYT6/VsOLfGy8vmvQYC2hfb0iF16Uw==}
- '@types/node@20.14.2':
- resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==}
+ '@types/node@22.7.5':
+ resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
'@types/normalize-package-data@2.4.1':
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -2793,11 +3056,11 @@ packages:
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
- '@types/parse5@6.0.3':
- resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
- '@types/pretty-hrtime@1.0.1':
- resolution: {integrity: sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==}
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
'@types/prop-types@15.7.5':
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
@@ -2808,11 +3071,14 @@ packages:
'@types/range-parser@1.2.4':
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
- '@types/react-dom@18.3.0':
- resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
+
+ '@types/react-transition-group@4.4.11':
+ resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
- '@types/react@18.3.3':
- resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
+ '@types/react@18.3.11':
+ resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==}
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -2820,9 +3086,6 @@ packages:
'@types/semver-utils@1.1.3':
resolution: {integrity: sha512-T+YwkslhsM+CeuhYUxyAjWm7mJ5am/K10UX40RuA6k6Lc7eGtq8iY2xOzy7Vq0GOqhl/xZl5l2FwURZMTPTUww==}
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
-
'@types/send@0.17.1':
resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
@@ -2859,8 +3122,8 @@ packages:
'@types/yargs@17.0.24':
resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
- '@typescript-eslint/eslint-plugin@7.13.0':
- resolution: {integrity: sha512-FX1X6AF0w8MdVFLSdqwqN/me2hyhuQg4ykN6ZpVhh1ij/80pTvDKclX1sZB9iqex8SjQfVhwMKs3JtnnMLzG9w==}
+ '@typescript-eslint/eslint-plugin@7.16.1':
+ resolution: {integrity: sha512-SxdPak/5bO0EnGktV05+Hq8oatjAYVY3Zh2bye9pGZy6+jwyR3LG3YKkV4YatlsgqXP28BTeVm9pqwJM96vf2A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -2870,22 +3133,29 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.13.0':
- resolution: {integrity: sha512-EjMfl69KOS9awXXe83iRN7oIEXy9yYdqWfqdrFAYAAr6syP8eLEFI7ZE4939antx2mNgPRW/o1ybm2SFYkbTVA==}
+ '@typescript-eslint/eslint-plugin@7.18.0':
+ resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
+ '@typescript-eslint/parser': ^7.0.0
eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/scope-manager@7.13.0':
- resolution: {integrity: sha512-ZrMCe1R6a01T94ilV13egvcnvVJ1pxShkE0+NDjDzH4nvG1wXpwsVI5bZCvE7AEDH1mXEx5tJSVR68bLgG7Dng==}
+ '@typescript-eslint/parser@7.16.1':
+ resolution: {integrity: sha512-u+1Qx86jfGQ5i4JjK33/FnawZRpsLxRnKzGE6EABZ40KxVT/vWsiZFEBBHjFOljmmV3MBYOHEKi0Jm9hbAOClA==}
engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@typescript-eslint/type-utils@7.13.0':
- resolution: {integrity: sha512-xMEtMzxq9eRkZy48XuxlBFzpVMDurUAfDu5Rz16GouAtXm0TaAoTFzqWUFPPuQYXI/CDaH/Bgx/fk/84t/Bc9A==}
+ '@typescript-eslint/parser@7.18.0':
+ resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -2894,34 +3164,85 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@7.13.0':
- resolution: {integrity: sha512-QWuwm9wcGMAuTsxP+qz6LBBd3Uq8I5Nv8xb0mk54jmNoCyDspnMvVsOxI6IsMmway5d1S9Su2+sCKv1st2l6eA==}
+ '@typescript-eslint/scope-manager@7.16.1':
+ resolution: {integrity: sha512-nYpyv6ALte18gbMz323RM+vpFpTjfNdyakbf3nsLvF43uF9KeNC289SUEW3QLZ1xPtyINJ1dIsZOuWuSRIWygw==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/typescript-estree@7.13.0':
- resolution: {integrity: sha512-cAvBvUoobaoIcoqox1YatXOnSl3gx92rCZoMRPzMNisDiM12siGilSM4+dJAekuuHTibI2hVC2fYK79iSFvWjw==}
+ '@typescript-eslint/scope-manager@7.18.0':
+ resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/type-utils@7.16.1':
+ resolution: {integrity: sha512-rbu/H2MWXN4SkjIIyWcmYBjlp55VT+1G3duFOIukTNFxr9PI35pLc2ydwAfejCEitCv4uztA07q0QWanOHC7dA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
+ eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/utils@7.13.0':
- resolution: {integrity: sha512-jceD8RgdKORVnB4Y6BqasfIkFhl4pajB1wVxrF4akxD2QPM8GNYjgGwEzYS+437ewlqqrg7Dw+6dhdpjMpeBFQ==}
+ '@typescript-eslint/type-utils@7.18.0':
+ resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/types@7.16.1':
+ resolution: {integrity: sha512-AQn9XqCzUXd4bAVEsAXM/Izk11Wx2u4H3BAfQVhSfzfDOm/wAON9nP7J5rpkCxts7E5TELmN845xTUCQrD1xIQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/visitor-keys@7.13.0':
- resolution: {integrity: sha512-nxn+dozQx+MK61nn/JP+M4eCkHDSxSLDpgE3WcQo0+fkjEolnaB5jswvIKC4K56By8MMgIho7f1PVxERHEo8rw==}
+ '@typescript-eslint/types@7.18.0':
+ resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/typescript-estree@7.16.1':
+ resolution: {integrity: sha512-0vFPk8tMjj6apaAZ1HlwM8w7jbghC8jc1aRNJG5vN8Ym5miyhTQGMqU++kuBFDNKe9NcPeZ6x0zfSzV8xC1UlQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/typescript-estree@7.18.0':
+ resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/utils@7.16.1':
+ resolution: {integrity: sha512-WrFM8nzCowV0he0RlkotGDujx78xudsxnGMBHI88l5J8wEhED6yBwaSLP99ygfrzAjsQvcYQ94quDwI0d7E1fA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+
+ '@typescript-eslint/utils@7.18.0':
+ resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+
+ '@typescript-eslint/visitor-keys@7.16.1':
+ resolution: {integrity: sha512-Qlzzx4sE4u3FsHTPQAAQFJFNOuqtuY0LFrZHwQ8IHK705XxBiWOFkfKRWu6niB7hwfgnwIpO4jTC75ozW1PHWg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/visitor-keys@7.18.0':
+ resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@utrecht/component-library-css@3.2.0':
- resolution: {integrity: sha512-gye9m5NaxZGTTHLeYiCaGwugitNZE6jB1OPyo10m/YGesh6zmM+lCJoFf1UY2Q9UyTQih6SKC9dn5QU7QObY9g==}
+ '@utrecht/component-library-css@6.1.0':
+ resolution: {integrity: sha512-+2qarCIgsNpLpxOcG5Rw3WLqNBASoWJFHMI4RlZJm5JTFfnhnl2wC/ylK23wOOooLNNCmsGrLdvSHHrEThJynw==}
'@utrecht/component-library-react@3.1.0':
resolution: {integrity: sha512-mz2CGkPbbAZiv+wcdUPu5MwfZ3fUqIUVI0HKzAfHNDPbB71pnboW8QSMV9HItsQ/bu5+4zM+l4fyJ69mvOGK0w==}
@@ -2939,43 +3260,43 @@ packages:
vega:
optional: true
- '@utrecht/web-component-library-react@2.0.0':
- resolution: {integrity: sha512-G39zklTxW6IpqGz0bJLBKKWypg+ai0PEUCtAVc9qlqMc3MqvhUcoSD8+1O626XbFWMUxP2u4sw8lEniEcswi0Q==}
+ '@utrecht/web-component-library-react@2.0.1':
+ resolution: {integrity: sha512-ZOC6aD+T0OLW/RK1fqzfmRjDNl2LDP44dRONTO/w+HOzhY2rdqmt/tkqif3jlL/CfDCIsXoGnd/AEKHSb6Ptfg==}
peerDependencies:
react: 16 - 18
react-dom: 16 - 18
- '@utrecht/web-component-library-stencil@2.0.0':
- resolution: {integrity: sha512-tl4YctoEi9nzSrbFLgmIm/BOJzke82NF7TJcmNgzQhBDmWykZNbeNHdx7CE07+TmMR81ZWs8s/umiTCTC6pRUQ==}
+ '@utrecht/web-component-library-stencil@2.1.0':
+ resolution: {integrity: sha512-kPCi8cQtJk5f4hZUi+DNgOXPFeEh9Fxt3mv9bi6vVrUiEnKrLEOxDqC5Uj23icR3xWCtqQkAG4nE8Sw/9XlKhA==}
- '@vitejs/plugin-react@4.3.1':
- resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
+ '@vitejs/plugin-react-swc@3.7.1':
+ resolution: {integrity: sha512-vgWOY0i1EROUK0Ctg1hwhtC3SdcDjZcdit4Ups4aPkDcB1jYhmo+RMYWY87cmXMhvtD5uf8lV89j2w16vkdSVg==}
+ peerDependencies:
+ vite: ^4 || ^5
+
+ '@vitejs/plugin-react@4.3.2':
+ resolution: {integrity: sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
- '@vitest/expect@1.3.1':
- resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
-
- '@vitest/spy@1.3.1':
- resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
+ '@vitest/expect@2.0.5':
+ resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
- '@vitest/spy@1.5.2':
- resolution: {integrity: sha512-xCcPvI8JpCtgikT9nLpHPL1/81AYqZy1GCy4+MCHBE7xi8jgsYkULpW5hrx5PGLgOQjUpb6fd15lqcriJ40tfQ==}
+ '@vitest/pretty-format@2.0.5':
+ resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
- '@vitest/utils@1.3.1':
- resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
+ '@vitest/pretty-format@2.1.2':
+ resolution: {integrity: sha512-FIoglbHrSUlOJPDGIrh2bjX1sNars5HbxlcsFKCtKzu4+5lpsRhOCVcuzp0fEhAGHkPZRIXVNzPcpSlkoZ3LuA==}
- '@vitest/utils@1.5.2':
- resolution: {integrity: sha512-sWOmyofuXLJ85VvXNsroZur7mOJGiQeM0JN3/0D1uU8U9bGFM69X1iqHaRXl6R8BwaLY6yPCogP257zxTzkUdA==}
+ '@vitest/spy@2.0.5':
+ resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
- '@web/parse5-utils@2.1.0':
- resolution: {integrity: sha512-GzfK5disEJ6wEjoPwx8AVNwUe9gYIiwc+x//QYxYDAFKUp4Xb1OJAGLc2l2gVrSQmtPGLKrTRcW90Hv4pEq1qA==}
- engines: {node: '>=18.0.0'}
+ '@vitest/utils@2.0.5':
+ resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
- '@web/rollup-plugin-html@2.3.0':
- resolution: {integrity: sha512-ap4AisBacK6WwrTnVlPErupxlywWU1ELsjGIMZ4VpofvhbVTBIGErJo5VEj2mSJyEH3I1EbzUcWuhDCePrnWEw==}
- engines: {node: '>=18.0.0'}
+ '@vitest/utils@2.1.2':
+ resolution: {integrity: sha512-zMO2KdYy6mx56btx9JvAqAZ6EyS3g49krMPPrgOp1yxGZiA93HumGk+bZ5jIZtOg5/VBYl5eBmGRQHqq4FG6uQ==}
'@whitespace/storybook-addon-html@6.1.1':
resolution: {integrity: sha512-sq/9c6s4PXugl//Q5iFwKoHF3tBDTEfJQubb62HWspF+CqBrDLHVEh7VYoEjubm5LjihxdFV3+mjj8Ck6bnoHQ==}
@@ -2983,20 +3304,6 @@ packages:
prettier: ^3.0.0
react-syntax-highlighter: ^15.0.0
- '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15':
- resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==}
- engines: {node: '>=14.15.0'}
- peerDependencies:
- esbuild: '>=0.10.0'
-
- '@yarnpkg/fslib@2.10.3':
- resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
-
- '@yarnpkg/libzip@2.3.0':
- resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
- engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
-
JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
@@ -3012,10 +3319,6 @@ packages:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- abort-controller@3.0.0:
- resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
- engines: {node: '>=6.5'}
-
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
@@ -3041,28 +3344,14 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
add-stream@1.0.0:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
- address@1.2.2:
- resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
- engines: {node: '>= 10.0.0'}
-
agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
@@ -3097,9 +3386,9 @@ packages:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- ansi-escapes@6.2.0:
- resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==}
- engines: {node: '>=14.16'}
+ ansi-escapes@7.0.0:
+ resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
+ engines: {node: '>=18'}
ansi-regex@4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
@@ -3133,9 +3422,6 @@ packages:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- app-root-dir@1.0.2:
- resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
-
aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
@@ -3143,24 +3429,12 @@ packages:
resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- are-we-there-yet@4.0.0:
- resolution: {integrity: sha512-nSXlV+u3vtVjRgihdTzbfWYzxPWGo424zPgQbHD0ZqIla3jqYAewDcvee0Ua2hjS5IfTAmjGlx1Jf0PKwjZDEw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- deprecated: This package is no longer supported.
-
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-hidden@1.2.4:
- resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
- engines: {node: '>=10'}
-
- aria-query@5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
-
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
@@ -3181,10 +3455,6 @@ packages:
array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
- array-includes@3.1.7:
- resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
- engines: {node: '>= 0.4'}
-
array-includes@3.1.8:
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
@@ -3201,8 +3471,8 @@ packages:
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
engines: {node: '>= 0.4'}
- array.prototype.findlastindex@1.2.3:
- resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
+ array.prototype.findlastindex@1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
array.prototype.flat@1.3.2:
@@ -3213,14 +3483,8 @@ packages:
resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
- array.prototype.toreversed@1.1.2:
- resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
-
- array.prototype.tosorted@1.1.3:
- resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
-
- arraybuffer.prototype.slice@1.0.2:
- resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
+ array.prototype.tosorted@1.1.4:
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
arraybuffer.prototype.slice@1.0.3:
@@ -3231,11 +3495,9 @@ packages:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
- assert@2.1.0:
- resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
-
- assertion-error@1.1.0:
- resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ assertion-error@2.0.1:
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
+ engines: {node: '>=12'}
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
@@ -3245,12 +3507,13 @@ packages:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
+ astring@1.9.0:
+ resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
+ hasBin: true
+
async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
- async@3.2.4:
- resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
-
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -3266,11 +3529,6 @@ packages:
resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==}
engines: {node: '>=4'}
- babel-core@7.0.0-bridge.0:
- resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3285,13 +3543,17 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ babel-plugin-macros@3.1.0:
+ resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
+ engines: {node: '>=10', npm: '>=6'}
+
babel-plugin-polyfill-corejs2@0.4.10:
resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -3320,33 +3582,27 @@ packages:
balanced-match@2.0.0:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
- base64-js@1.5.1:
- resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
-
basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
- before-after-hook@2.2.3:
- resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+ before-after-hook@3.0.2:
+ resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
better-opn@3.0.2:
resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
engines: {node: '>=12.0.0'}
- big-integer@1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
- engines: {node: '>=0.6'}
+ bin-links@4.0.4:
+ resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- bl@4.1.0:
- resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
-
- body-parser@1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
boolbase@1.0.0:
@@ -3360,20 +3616,12 @@ packages:
resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==}
engines: {node: '>=14.16'}
- bplist-parser@0.2.0:
- resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
- engines: {node: '>= 5.10.0'}
-
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
- engines: {node: '>=8'}
-
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
@@ -3385,11 +3633,8 @@ packages:
browser-assert@1.2.1:
resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==}
- browserify-zlib@0.1.4:
- resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==}
-
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ browserslist@4.24.0:
+ resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -3399,16 +3644,6 @@ packages:
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- buffer@5.7.1:
- resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
-
- buffer@6.0.3:
- resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
-
- builtin-modules@3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
- engines: {node: '>=6'}
-
builtins@5.0.1:
resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
@@ -3416,18 +3651,18 @@ packages:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
- byte-size@8.1.1:
- resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==}
+ byte-size@9.0.0:
+ resolution: {integrity: sha512-xrJ8Hki7eQ6xew55mM6TG9zHI852OoAHcPfduWWtR6yxk2upTuIZy13VioRBDyHReHDdbeDPifUboeNkK/sXXA==}
engines: {node: '>=12.17'}
- bytes@3.0.0:
- resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
- engines: {node: '>= 0.8'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
+ cac@6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+
cacache@17.1.3:
resolution: {integrity: sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -3436,6 +3671,10 @@ packages:
resolution: {integrity: sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==}
engines: {node: ^16.14.0 || >=18.0.0}
+ cacache@18.0.4:
+ resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
cacheable-lookup@7.0.0:
resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
engines: {node: '>=14.16'}
@@ -3447,9 +3686,6 @@ packages:
call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
- call-bind@1.0.5:
- resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
-
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -3480,8 +3716,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001608:
- resolution: {integrity: sha512-cjUJTQkk9fQlJR2s4HMuPMvTiRggl0rAVMtthQuyOlDWuqHXqN8azLq+pi8B2TjwKJ32diHjUqRIKeFX4z1FoA==}
+ caniuse-lite@1.0.30001668:
+ resolution: {integrity: sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==}
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -3489,9 +3725,9 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@4.4.1:
- resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
- engines: {node: '>=4'}
+ chai@5.1.1:
+ resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ engines: {node: '>=12'}
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@@ -3537,11 +3773,9 @@ packages:
character-reference-invalid@2.0.1:
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
- chardet@0.7.0:
- resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
-
- check-error@1.0.3:
- resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ check-error@2.1.1:
+ resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
+ engines: {node: '>= 16'}
chokidar-cli@3.0.0:
resolution: {integrity: sha512-xVW+Qeh7z15uZRxHOkP93Ux8A0xbPzwK4GaqD8dQOYc34TlkqUhVSS59fK36DOp5WdJlrRzlYSy02Ht99FjZqQ==}
@@ -3552,8 +3786,9 @@ packages:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
- chownr@1.1.4:
- resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
@@ -3570,10 +3805,6 @@ packages:
cjs-module-lexer@1.2.3:
resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
- clean-css@5.3.3:
- resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
- engines: {node: '>= 10.0'}
-
clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -3586,17 +3817,9 @@ packages:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
- cli-cursor@3.1.0:
- resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
- engines: {node: '>=8'}
-
- cli-cursor@4.0.0:
- resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- cli-spinners@2.9.0:
- resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
- engines: {node: '>=6'}
+ cli-cursor@5.0.0:
+ resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
+ engines: {node: '>=18'}
cli-table3@0.6.3:
resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
@@ -3636,10 +3859,17 @@ packages:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
+ cmd-shim@6.0.3:
+ resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+ collapse-white-space@2.1.0:
+ resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
+
collect-v8-coverage@1.0.2:
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
@@ -3656,16 +3886,20 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
color-support@1.1.3:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- colorette@1.4.0:
- resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
-
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -3684,6 +3918,9 @@ packages:
comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
+ comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
+
commander@10.0.1:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
@@ -3695,10 +3932,6 @@ packages:
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@6.2.1:
- resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
- engines: {node: '>= 6'}
-
commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
@@ -3707,20 +3940,15 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
+ common-ancestor-path@1.0.1:
+ resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==}
+
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
compare-func@2.0.0:
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
- compressible@2.0.18:
- resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
- engines: {node: '>= 0.6'}
-
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
- engines: {node: '>= 0.8.0'}
-
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
@@ -3792,20 +4020,21 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
- core-js-compat@3.36.1:
- resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
-
- core-util-is@1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ core-js-compat@3.38.1:
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
corser@2.0.1:
resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==}
engines: {node: '>= 0.4.0'}
+ cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
+
cosmiconfig@8.3.6:
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
@@ -3829,6 +4058,11 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
+ cross-env@7.0.3:
+ resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
+ engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
+ hasBin: true
+
cross-spawn@6.0.5:
resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
engines: {node: '>=4.8'}
@@ -3847,21 +4081,32 @@ packages:
peerDependencies:
postcss: ^8.0.9
- css-functions-list@3.2.2:
- resolution: {integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==}
+ css-functions-list@3.2.3:
+ resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==}
engines: {node: '>=12 || >=16'}
css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
+ css-select@5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+
css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
+ css-tree@2.2.1:
+ resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
+
css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ css-tree@3.0.0:
+ resolution: {integrity: sha512-o88DVQ6GzsABn1+6+zo2ct801dBO5OASVyxbbvA2W20ue2puSh/VOuqUj90eUeMSX/xqGqBmOKiRQN7tJOuBXw==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+
css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
@@ -3896,6 +4141,10 @@ packages:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
+ csso@5.0.5:
+ resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
+
cssom@0.3.8:
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
@@ -3909,6 +4158,9 @@ packages:
csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+ csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+
dargs@8.1.0:
resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
engines: {node: '>=12'}
@@ -3958,6 +4210,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decamelize-keys@1.1.1:
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
@@ -3984,13 +4245,10 @@ packages:
babel-plugin-macros:
optional: true
- deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ deep-eql@5.0.2:
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
- deep-equal@2.2.2:
- resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==}
-
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -3998,18 +4256,14 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- deepmerge-ts@5.1.0:
- resolution: {integrity: sha512-eS8dRJOckyo9maw9Tu5O5RUi/4inFLrnoLkBe3cPfDMx3WZioXtmOew4TXQaxq7Rhl4xjDtR7c6x8nNTxOvbFw==}
+ deepmerge-ts@7.1.3:
+ resolution: {integrity: sha512-qCSH6I0INPxd9Y1VtAiLpnYvz5O//6rCfJXKk0z66Up9/VOSr+1yS8XSKA5IWRxjocFGlzPyaZYe+jxq7OOLtQ==}
engines: {node: '>=16.0.0'}
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-browser-id@3.0.0:
- resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
- engines: {node: '>=12'}
-
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
@@ -4017,10 +4271,6 @@ packages:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
- define-data-property@1.1.1:
- resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
- engines: {node: '>= 0.4'}
-
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -4037,9 +4287,6 @@ packages:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
- defu@6.1.2:
- resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
-
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
@@ -4051,9 +4298,6 @@ packages:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- deprecation@2.3.1:
- resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
-
dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -4062,10 +4306,6 @@ packages:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
-
detect-indent@7.0.1:
resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
engines: {node: '>=12.20'}
@@ -4075,21 +4315,14 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
+
detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
- detect-node-es@1.1.0:
- resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
-
- detect-package-manager@2.0.1:
- resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==}
- engines: {node: '>=12'}
-
- detect-port@1.5.1:
- resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
- hasBin: true
-
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
@@ -4097,10 +4330,6 @@ packages:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- diff@5.1.0:
- resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
- engines: {node: '>=0.3.1'}
-
diff@5.2.0:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
@@ -4123,9 +4352,15 @@ packages:
dom-accessibility-api@0.6.3:
resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
+ dom-helpers@5.2.1:
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
+
dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+ dom-serializer@2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+
domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
@@ -4138,9 +4373,16 @@ packages:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
+ domhandler@5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
+ engines: {node: '>= 4'}
+
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+ domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -4152,10 +4394,6 @@ packages:
resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
engines: {node: '>=10'}
- dotenv-expand@10.0.0:
- resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==}
- engines: {node: '>=12'}
-
dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
@@ -4166,22 +4404,14 @@ packages:
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- duplexify@3.7.1:
- resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
-
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- ejs@3.1.10:
- resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
- engines: {node: '>=0.10.0'}
- hasBin: true
-
- electron-to-chromium@1.4.731:
- resolution: {integrity: sha512-+TqVfZjpRz2V/5SPpmJxq9qK620SC5SqCnxQIOi7i/U08ZDcTpKbT7Xjj9FU5CbXTMUb4fywbIr8C7cGv4hcjw==}
+ electron-to-chromium@1.5.36:
+ resolution: {integrity: sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -4203,12 +4433,13 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
- end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
-
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
@@ -4220,10 +4451,9 @@ packages:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- envinfo@7.10.0:
- resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==}
- engines: {node: '>=4'}
- hasBin: true
+ environment@1.1.0:
+ resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
+ engines: {node: '>=18'}
err-code@2.0.3:
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
@@ -4235,14 +4465,6 @@ packages:
resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
engines: {node: '>= 0.4'}
- es-abstract@1.22.3:
- resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
- engines: {node: '>= 0.4'}
-
- es-abstract@1.22.5:
- resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==}
- engines: {node: '>= 0.4'}
-
es-abstract@1.23.3:
resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
@@ -4255,9 +4477,6 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-get-iterator@1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
-
es-iterator-helpers@1.0.19:
resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
@@ -4277,9 +4496,6 @@ packages:
resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
engines: {node: '>= 0.4'}
- es-shim-unscopables@1.0.0:
- resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
-
es-shim-unscopables@1.0.2:
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
@@ -4287,28 +4503,29 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- esbuild-plugin-alias@0.2.1:
- resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
-
esbuild-register@3.5.0:
resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
peerDependencies:
esbuild: '>=0.12 <1'
- esbuild@0.20.2:
- resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.23.1:
+ resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
escape-goat@4.0.0:
resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==}
engines: {node: '>=12'}
@@ -4348,8 +4565,8 @@ packages:
peerDependencies:
eslint: '>=8.0.0'
- eslint-module-utils@2.8.0:
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ eslint-module-utils@2.12.0:
+ resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -4369,12 +4586,12 @@ packages:
eslint-import-resolver-webpack:
optional: true
- eslint-plugin-import@2.29.1:
- resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
@@ -4395,11 +4612,28 @@ packages:
peerDependencies:
eslint: '>=8.0.0'
- eslint-plugin-react@7.34.2:
- resolution: {integrity: sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==}
+ eslint-plugin-qwik@1.9.1:
+ resolution: {integrity: sha512-H8WKYfFsubQh4rcAGYuZh6gX1pReHZGBwCi3l4bJ+7Oa1XqqBr6E8O70+Jv9RoXg9dH99zfWSdWjap9/N/4Pqw==}
+ engines: {node: '>=16.8.0 <18.0.0 || >=18.11'}
+ peerDependencies:
+ eslint: ^8.57.0
+
+ eslint-plugin-react-hooks@5.0.0:
+ resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+
+ eslint-plugin-react-refresh@0.4.13:
+ resolution: {integrity: sha512-f1EppwrpJRWmqDTyvAyomFVDYRtrS7iTEqv3nokETnMiMzs2SSTmKRTACce4O2p4jYyowiSMvpdwC/RLcMFhuQ==}
+ peerDependencies:
+ eslint: '>=7'
+
+ eslint-plugin-react@7.37.1:
+ resolution: {integrity: sha512-xwTnwDqzbDRA8uJ7BMxPs/EXRB3i8ZfnOIp8BsxEQkT0nHPp+WWceqGgo6rKb9ctNi8GJLDT4Go5HAWELa/WMg==}
engines: {node: '>=4'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
eslint-scope@7.2.2:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
@@ -4412,6 +4646,7 @@ packages:
eslint@8.57.0:
resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
espree@9.6.1:
@@ -4435,9 +4670,18 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
+ estree-util-attach-comments@3.0.0:
+ resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
+
+ estree-util-build-jsx@3.0.1:
+ resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
+
estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+ estree-util-to-js@2.0.0:
+ resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
+
estree-util-visit@2.0.0:
resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
@@ -4458,20 +4702,12 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- event-target-shim@5.0.1:
- resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
- engines: {node: '>=6'}
-
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
- events@3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
-
execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -4491,17 +4727,13 @@ packages:
exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
- express@4.18.2:
- resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ express@4.21.1:
+ resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
engines: {node: '>= 0.10.0'}
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- external-editor@3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
- engines: {node: '>=4'}
-
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -4531,27 +4763,26 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+ fdir@6.4.0:
+ resolution: {integrity: sha512-3oB133prH1o4j/L5lLW7uOCF1PlD+/It2L0eL/iAqWMB91RBbqTewABqxhj0ibBd90EEmWZq7ntIWzVaWcXTGQ==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
fetch-blob@3.2.0:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
- fetch-retry@5.0.6:
- resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==}
-
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
- file-entry-cache@9.0.0:
- resolution: {integrity: sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==}
+ file-entry-cache@9.1.0:
+ resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==}
engines: {node: '>=18'}
- file-system-cache@2.3.0:
- resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==}
-
- filelist@1.0.4:
- resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
-
filesize@6.4.0:
resolution: {integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==}
engines: {node: '>= 0.4.0'}
@@ -4560,18 +4791,17 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
- find-cache-dir@2.1.0:
- resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
- engines: {node: '>=6'}
-
find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
+ find-root@1.1.0:
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
+
find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
@@ -4596,16 +4826,9 @@ packages:
resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==}
engines: {node: '>=18'}
- flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
-
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- flow-parser@0.212.0:
- resolution: {integrity: sha512-45eNySEs7n692jLN+eHQ6zvC9e1cqu9Dq1PpDHTcWRri2HFEs8is8Anmp1RcIhYxA5TZYD6RuESG2jdj6nkDJQ==}
- engines: {node: '>=0.4.0'}
-
follow-redirects@1.15.6:
resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
engines: {node: '>=4.0'}
@@ -4650,25 +4873,14 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- fs-constants@1.0.0:
- resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
-
fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
- fs-extra@11.1.1:
- resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
- engines: {node: '>=14.14'}
-
fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
- fs-extra@8.1.0:
- resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
- engines: {node: '>=6 <7 || >=8'}
-
fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -4685,9 +4897,6 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
-
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
@@ -4706,11 +4915,6 @@ packages:
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- gauge@5.0.1:
- resolution: {integrity: sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- deprecated: This package is no longer supported.
-
generic-names@4.0.0:
resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==}
@@ -4726,27 +4930,10 @@ packages:
resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
engines: {node: '>=18'}
- get-func-name@2.0.2:
- resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
-
- get-intrinsic@1.2.1:
- resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
-
- get-intrinsic@1.2.2:
- resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
-
get-intrinsic@1.2.4:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
- get-nonce@1.0.1:
- resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
- engines: {node: '>=6'}
-
- get-npm-tarball-url@2.0.3:
- resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==}
- engines: {node: '>=12.17'}
-
get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -4779,9 +4966,8 @@ packages:
resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
- giget@1.1.2:
- resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==}
- hasBin: true
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
git-raw-commits@4.0.0:
resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==}
@@ -4796,8 +4982,8 @@ packages:
git-up@7.0.0:
resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
- git-url-parse@14.0.0:
- resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
+ git-url-parse@15.0.0:
+ resolution: {integrity: sha512-5reeBufLi+i4QD3ZFftcJs9jC26aULFLBU23FeKM/b1rI0K6ofIeAblmDVO7Ht22zTDE9+CkJ3ZVb0CgJmz3UQ==}
github-slugger@2.0.0:
resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
@@ -4816,24 +5002,16 @@ packages:
peerDependencies:
glob: ^7.1.6
- glob-to-regexp@0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
-
- glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
- glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
glob@10.4.1:
resolution: {integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==}
engines: {node: '>=16 || 14 >=14.18'}
hasBin: true
+ glob@11.0.0:
+ resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==}
+ engines: {node: 20 || >=22}
+ hasBin: true
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -4841,6 +5019,7 @@ packages:
glob@8.1.0:
resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
engines: {node: '>=12'}
+ deprecated: Glob versions prior to v9 are no longer supported
global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
@@ -4866,21 +5045,16 @@ packages:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
- globby@10.0.1:
- resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==}
- engines: {node: '>=8'}
-
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@14.0.1:
- resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
- engines: {node: '>=18'}
-
globjoin@0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
+ globrex@0.1.2:
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
@@ -4897,10 +5071,6 @@ packages:
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- gunzip-maybe@1.4.2:
- resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==}
- hasBin: true
-
gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
@@ -4925,16 +5095,9 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-property-descriptors@1.0.0:
- resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
-
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
-
has-proto@1.0.3:
resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
@@ -4962,14 +5125,6 @@ packages:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
- hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
- engines: {node: '>= 0.4'}
-
- hasown@2.0.1:
- resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==}
- engines: {node: '>= 0.4'}
-
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -4983,9 +5138,18 @@ packages:
hast-util-parse-selector@2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
+ hast-util-to-estree@3.1.0:
+ resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==}
+
+ hast-util-to-jsx-runtime@2.3.1:
+ resolution: {integrity: sha512-Rbemi1rzrkysSin0FDHZfsxYPoqLGHFfxFm28aOBHPibT7aqjy7kUgY636se9xbuCWUsFpWAYlmtGHQakiqtEA==}
+
hast-util-to-string@3.0.0:
resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
+ hast-util-whitespace@3.0.0:
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+
hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
@@ -4999,6 +5163,9 @@ packages:
highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
+ hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
@@ -5018,6 +5185,10 @@ packages:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
+ hosted-git-info@7.0.2:
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
html-encoding-sniffer@3.0.0:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
engines: {node: '>=12'}
@@ -5025,11 +5196,6 @@ packages:
html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- html-minifier-terser@7.2.0:
- resolution: {integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==}
- engines: {node: ^14.13.1 || >=16.0.0}
- hasBin: true
-
html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
engines: {node: '>=8'}
@@ -5081,8 +5247,8 @@ packages:
humanize-ms@1.2.1:
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
- husky@9.0.11:
- resolution: {integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==}
+ husky@9.1.6:
+ resolution: {integrity: sha512-sqbjZKK7kf44hfdE94EoX8MZNk0n7HeW37O4YrVGCF4wzgQjp+akPAkfUK5LZ6KuR/6sqeAVuXHji+RzQgOn5A==}
engines: {node: '>=18'}
hasBin: true
@@ -5103,13 +5269,6 @@ packages:
peerDependencies:
postcss: ^8.1.0
- ieee754@1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
-
- ignore-walk@5.0.1:
- resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
ignore-walk@6.0.4:
resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -5122,6 +5281,14 @@ packages:
resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
+ ignore@6.0.2:
+ resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
+ engines: {node: '>= 4'}
+
+ imagetools-core@7.0.1:
+ resolution: {integrity: sha512-XDUx3Ac1VrZ4XF5eAJNYdHbFXRPNyebHFrwJsZ4WHb7X2MitOVW23cFphSDByT3MH5rdWdxKr4edSW2agChvDg==}
+ engines: {node: '>=18.0.0'}
+
immutable@4.3.1:
resolution: {integrity: sha512-lj9cnmB/kVS0QHsJnYKD1uo3o39nrbKxszjnqS9Fr6NB7bZzW45U6WSGBPKXDL/CvDKqDNPA4r3DoDQ8GTxo2A==}
@@ -5146,6 +5313,11 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
+ hasBin: true
+
import-meta-resolve@4.0.0:
resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==}
@@ -5179,9 +5351,11 @@ packages:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- inquirer@9.2.23:
- resolution: {integrity: sha512-kod5s+FBPIDM2xiy9fu+6wdU/SkK5le5GS9lh4FEBjBHqiMgD9lLFbCbuqFNAjNL2ZOy9Wd9F694IOzN9pZHBA==}
- engines: {node: '>=18'}
+ inline-style-parser@0.1.1:
+ resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
+
+ inline-style-parser@0.2.4:
+ resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
install@0.13.0:
resolution: {integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==}
@@ -5195,9 +5369,6 @@ packages:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
- invariant@2.2.4:
- resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
-
ip@2.0.1:
resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
@@ -5239,6 +5410,9 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+
is-async-function@2.0.0:
resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
@@ -5254,10 +5428,6 @@ packages:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
- is-builtin-module@3.2.1:
- resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
- engines: {node: '>=6'}
-
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
@@ -5266,11 +5436,9 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.12.1:
- resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
-
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
is-data-view@1.0.1:
resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
@@ -5286,9 +5454,6 @@ packages:
is-decimal@2.0.1:
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
- is-deflate@1.0.0:
- resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==}
-
is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
@@ -5332,10 +5497,6 @@ packages:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
- is-gzip@1.0.0:
- resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==}
- engines: {node: '>=0.10.0'}
-
is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
@@ -5346,10 +5507,6 @@ packages:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
- is-interactive@1.0.0:
- resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
- engines: {node: '>=8'}
-
is-lambda@1.0.1:
resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
@@ -5359,10 +5516,6 @@ packages:
is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
- is-nan@1.3.2:
- resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
- engines: {node: '>= 0.4'}
-
is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
@@ -5407,10 +5560,6 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- is-plain-object@3.0.1:
- resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==}
- engines: {node: '>=0.10.0'}
-
is-plain-object@5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
@@ -5421,6 +5570,9 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+ is-reference@3.0.2:
+ resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
+
is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -5466,10 +5618,6 @@ packages:
resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
engines: {node: '>= 0.4'}
- is-typed-array@1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
- engines: {node: '>= 0.4'}
-
is-typed-array@1.1.13:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
@@ -5498,9 +5646,6 @@ packages:
resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==}
engines: {node: '>=12'}
- isarray@1.0.0:
- resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
-
isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
@@ -5542,18 +5687,13 @@ packages:
iterator.prototype@1.1.2:
resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
-
jackspeak@3.4.0:
resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==}
engines: {node: '>=14'}
- jake@10.8.7:
- resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
- engines: {node: '>=10'}
- hasBin: true
+ jackspeak@4.0.2:
+ resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
+ engines: {node: 20 || >=22}
jest-changed-files@29.7.0:
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
@@ -5707,14 +5847,9 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- jscodeshift@0.15.1:
- resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==}
- hasBin: true
- peerDependencies:
- '@babel/preset-env': ^7.1.6
- peerDependenciesMeta:
- '@babel/preset-env':
- optional: true
+ jsdoc-type-pratt-parser@4.1.0:
+ resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
+ engines: {node: '>=12.0.0'}
jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
@@ -5729,9 +5864,9 @@ packages:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
json-buffer@3.0.1:
@@ -5747,6 +5882,10 @@ packages:
resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ json-parse-even-better-errors@3.0.2:
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
json-parse-helpfulerror@1.0.3:
resolution: {integrity: sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==}
@@ -5759,6 +5898,9 @@ packages:
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ json-stringify-nice@1.1.4:
+ resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==}
+
json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
@@ -5774,11 +5916,8 @@ packages:
jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
- jsonc-parser@3.2.1:
- resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
-
- jsonfile@4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
@@ -5798,6 +5937,16 @@ packages:
resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==}
engines: {node: '>=4.0'}
+ jsx-ast-utils@3.3.5:
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
+ engines: {node: '>=4.0'}
+
+ just-diff-apply@5.5.0:
+ resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==}
+
+ just-diff@6.0.2:
+ resolution: {integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==}
+
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -5816,90 +5965,28 @@ packages:
known-css-properties@0.29.0:
resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==}
- known-css-properties@0.31.0:
- resolution: {integrity: sha512-sBPIUGTNF0czz0mwGGUoKKJC8Q7On1GPbCSFPfyEsfHb2DyBG0Y4QtV+EVWpINSaiGKZblDNuF5AezxSgOhesQ==}
+ known-css-properties@0.34.0:
+ resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==}
latest-version@7.0.0:
resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
engines: {node: '>=14.16'}
- lazy-universal-dotenv@4.0.0:
- resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==}
- engines: {node: '>=14.0.0'}
-
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- levn@0.4.1:
- resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
- engines: {node: '>= 0.8.0'}
-
- libnpmaccess@8.0.6:
- resolution: {integrity: sha512-uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- libnpmpublish@9.0.9:
- resolution: {integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- lightningcss-darwin-arm64@1.25.1:
- resolution: {integrity: sha512-G4Dcvv85bs5NLENcu/s1f7ehzE3D5ThnlWSDwE190tWXRQCQaqwcuHe+MGSVI/slm0XrxnaayXY+cNl3cSricw==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [darwin]
-
- lightningcss-darwin-x64@1.25.1:
- resolution: {integrity: sha512-dYWuCzzfqRueDSmto6YU5SoGHvZTMU1Em9xvhcdROpmtOQLorurUZz8+xFxZ51lCO2LnYbfdjZ/gCqWEkwixNg==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [darwin]
-
- lightningcss-freebsd-x64@1.25.1:
- resolution: {integrity: sha512-hXoy2s9A3KVNAIoKz+Fp6bNeY+h9c3tkcx1J3+pS48CqAt+5bI/R/YY4hxGL57fWAIquRjGKW50arltD6iRt/w==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [freebsd]
-
- lightningcss-linux-arm-gnueabihf@1.25.1:
- resolution: {integrity: sha512-tWyMgHFlHlp1e5iW3EpqvH5MvsgoN7ZkylBbG2R2LWxnvH3FuWCJOhtGcYx9Ks0Kv0eZOBud789odkYLhyf1ng==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm]
- os: [linux]
-
- lightningcss-linux-arm64-gnu@1.25.1:
- resolution: {integrity: sha512-Xjxsx286OT9/XSnVLIsFEDyDipqe4BcLeB4pXQ/FEA5+2uWCCuAEarUNQumRucnj7k6ftkAHUEph5r821KBccQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
- lightningcss-linux-arm64-musl@1.25.1:
- resolution: {integrity: sha512-IhxVFJoTW8wq6yLvxdPvyHv4NjzcpN1B7gjxrY3uaykQNXPHNIpChLB52+wfH+yS58zm1PL4LemUp8u9Cfp6Bw==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
- lightningcss-linux-x64-gnu@1.25.1:
- resolution: {integrity: sha512-RXIaru79KrREPEd6WLXfKfIp4QzoppZvD3x7vuTKkDA64PwTzKJ2jaC43RZHRt8BmyIkRRlmywNhTRMbmkPYpA==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
- lightningcss-linux-x64-musl@1.25.1:
- resolution: {integrity: sha512-TdcNqFsAENEEFr8fJWg0Y4fZ/nwuqTRsIr7W7t2wmDUlA8eSXVepeeONYcb+gtTj1RaXn/WgNLB45SFkz+XBZA==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
+ levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
- lightningcss-win32-x64-msvc@1.25.1:
- resolution: {integrity: sha512-9KZZkmmy9oGDSrnyHuxP6iMhbsgChUiu/NSgOx+U1I/wTngBStDf2i2aGRCHvFqj19HqqBEI4WuGVQBa2V6e0A==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [win32]
+ libnpmaccess@8.0.6:
+ resolution: {integrity: sha512-uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
- lightningcss@1.25.1:
- resolution: {integrity: sha512-V0RMVZzK1+rCHpymRv4URK2lNhIRyO8g7U7zOFwVAhJuat74HtkjIQpQRKNCwFEYkRGpafOpmXXLoaoBcyVtBg==}
- engines: {node: '>= 12.0.0'}
+ libnpmpublish@9.0.9:
+ resolution: {integrity: sha512-26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
@@ -5919,13 +6006,13 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- lint-staged@15.2.7:
- resolution: {integrity: sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw==}
+ lint-staged@15.2.10:
+ resolution: {integrity: sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==}
engines: {node: '>=18.12.0'}
hasBin: true
- listr2@8.2.1:
- resolution: {integrity: sha512-irTfvpib/rNiD637xeevjO2l3Z5loZmuaRi0L0YE5LfijwVY96oyVn0DFD3o/teAok7nfobMG1THvvcHh/BP6g==}
+ listr2@8.2.5:
+ resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
load-json-file@4.0.0:
@@ -5990,8 +6077,8 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
- log-update@6.0.0:
- resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==}
+ log-update@6.1.0:
+ resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
longest-streak@3.1.0:
@@ -6001,8 +6088,8 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@2.3.7:
- resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ loupe@3.1.2:
+ resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -6014,9 +6101,12 @@ packages:
lowlight@1.20.0:
resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
- lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
- engines: {node: 14 || >=16.14}
+ lru-cache@10.4.3:
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+
+ lru-cache@11.0.1:
+ resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==}
+ engines: {node: 20 || >=22}
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -6044,10 +6134,6 @@ packages:
resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
- make-dir@2.1.0:
- resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
- engines: {node: '>=6'}
-
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -6078,27 +6164,31 @@ packages:
map-or-similar@1.5.0:
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
+ markdown-extensions@2.0.0:
+ resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
+ engines: {node: '>=16'}
+
markdown-it@14.1.0:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
- markdown-to-jsx@7.3.2:
- resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==}
+ markdown-to-jsx@7.5.0:
+ resolution: {integrity: sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
- markdownlint-cli@0.41.0:
- resolution: {integrity: sha512-kp29tKrMKdn+xonfefjp3a/MsNzAd9c5ke0ydMEI9PR98bOjzglYN4nfMSaIs69msUf1DNkgevAIAPtK2SeX0Q==}
+ markdownlint-cli@0.42.0:
+ resolution: {integrity: sha512-AjkzhhZa3TmEGi/CE2Wpmny69x1IrzqK2gPB0k8SmNMRgnSAJfyEO5FgZdWTHtJ6Nrdv5FWt5c4C5pkG6Dk30A==}
engines: {node: '>=18'}
hasBin: true
- markdownlint-micromark@0.1.9:
- resolution: {integrity: sha512-5hVs/DzAFa8XqYosbEAEg6ok6MF2smDj89ztn9pKkCtdKHVdPQuGMH7frFfYL9mLkvfFe4pTyAMffLbjf3/EyA==}
+ markdownlint-micromark@0.1.10:
+ resolution: {integrity: sha512-no5ZfdqAdWGxftCLlySHSgddEjyW4kui4z7amQcGsSKfYC5v/ou+8mIQVyg9KQMeEZLNtz9OPDTj7nnTnoR4FQ==}
engines: {node: '>=18'}
- markdownlint@0.34.0:
- resolution: {integrity: sha512-qwGyuyKwjkEMOJ10XN6OTKNOVYvOIi35RNvDLNxTof5s8UmyGHlCdpngRHoRGNvQVGuxO3BJ7uNSgdeX166WXw==}
+ markdownlint@0.35.0:
+ resolution: {integrity: sha512-wgp8yesWjFBL7bycA3hxwHRdsZGJhjhyP1dSxKVKrza0EPFYtn+mHtkVy6dvP1kGSjovyG5B8yNP6Frj0UFUJg==}
engines: {node: '>=18'}
mathml-tag-names@2.1.3:
@@ -6125,6 +6215,9 @@ packages:
mdast-util-phrasing@4.1.0:
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+ mdast-util-to-hast@13.2.0:
+ resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
+
mdast-util-to-markdown@2.1.0:
resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
@@ -6137,9 +6230,15 @@ packages:
mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ mdn-data@2.0.28:
+ resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
+
mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+ mdn-data@2.10.0:
+ resolution: {integrity: sha512-qq7C3EtK3yJXMwz1zAab65pjl+UhohqMOctTgcqjLOWABqmwj+me02LSsCuEUxnst9X1lCBpoE0WArGKgdGDzw==}
+
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
@@ -6166,8 +6265,8 @@ packages:
resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==}
engines: {node: '>=10'}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -6271,8 +6370,8 @@ packages:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
mime-db@1.52.0:
@@ -6296,6 +6395,10 @@ packages:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
+ mimic-function@5.0.1:
+ resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
+ engines: {node: '>=18'}
+
mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
@@ -6308,6 +6411,10 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
+ minimatch@10.0.1:
+ resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
+ engines: {node: 20 || >=22}
+
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -6315,14 +6422,14 @@ packages:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
- minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minimatch@9.0.4:
resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -6369,10 +6476,6 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -6381,9 +6484,6 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
- mkdirp-classic@0.5.3:
- resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
-
mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
@@ -6397,6 +6497,10 @@ packages:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
+ mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
+ engines: {node: '>=10'}
+
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -6410,9 +6514,9 @@ packages:
resolution: {integrity: sha512-SYU3HBAdF4psHEL/+jXDKHO95/m5P2RvboHT2Y0WtTttvJLP4H/2WS9WlQPFvF6C8d6SpLw8vjCnQOnVIVOSJQ==}
engines: {node: '>=18'}
- mute-stream@1.0.0:
- resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ mute-stream@2.0.0:
+ resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
@@ -6433,8 +6537,8 @@ packages:
resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- next@14.2.4:
- resolution: {integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==}
+ next@14.2.15:
+ resolution: {integrity: sha512-h9ctmOokpoDphRvMGnwOJAedT6zKhwqyZML9mDtspgf4Rh3Pn7UTYKqePNoDvhsWBAO5GoPNYshnAUGIazVGmw==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -6457,26 +6561,13 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-dir@0.1.17:
- resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
- engines: {node: '>= 0.10.5'}
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
- node-fetch-native@1.2.0:
- resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==}
-
- node-fetch@2.6.12:
- resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
-
node-fetch@3.3.2:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -6494,8 +6585,8 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nopt@6.0.0:
resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
@@ -6507,6 +6598,11 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
+ nopt@7.2.1:
+ resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ hasBin: true
+
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -6518,10 +6614,6 @@ packages:
resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- normalize-package-data@6.0.0:
- resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
normalize-package-data@6.0.1:
resolution: {integrity: sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -6538,10 +6630,6 @@ packages:
resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==}
engines: {node: '>=14.16'}
- npm-bundled@2.0.1:
- resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
npm-bundled@3.0.0:
resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -6555,10 +6643,6 @@ packages:
resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- npm-normalize-package-bin@2.0.0:
- resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
npm-normalize-package-bin@3.0.1:
resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -6567,8 +6651,8 @@ packages:
resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- npm-package-arg@11.0.2:
- resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==}
+ npm-package-arg@11.0.3:
+ resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==}
engines: {node: ^16.14.0 || >=18.0.0}
npm-package-json-lint@7.1.0:
@@ -6576,11 +6660,6 @@ packages:
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
hasBin: true
- npm-packlist@5.1.3:
- resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- hasBin: true
-
npm-packlist@7.0.4:
resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -6597,12 +6676,16 @@ packages:
resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==}
engines: {node: ^16.14.0 || >=18.0.0}
+ npm-pick-manifest@9.1.0:
+ resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
npm-registry-fetch@14.0.5:
resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- npm-registry-fetch@17.0.1:
- resolution: {integrity: sha512-fLu9MTdZTlJAHUek/VLklE6EpIiP3VZpTiuN7OOMCt2Sd67NCpSEetMaxHHEZiZxllp8ZLsUpvbEszqTFEc+wA==}
+ npm-registry-fetch@17.1.0:
+ resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==}
engines: {node: ^16.14.0 || >=18.0.0}
npm-run-all@4.1.5:
@@ -6618,8 +6701,8 @@ packages:
resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- npm@10.8.1:
- resolution: {integrity: sha512-Dp1C6SvSMYQI7YHq/y2l94uvI+59Eqbu1EpuKQHQ8p16txXRuRit5gH3Lnaagk2aXDIjg/Iru9pd05bnneKgdw==}
+ npm@10.9.0:
+ resolution: {integrity: sha512-ZanDioFylI9helNhl2LNd+ErmVD+H5I53ry41ixlLyCBgkuYb+58CvbAp99hW+zr5L9W4X7CchSoeqKdngOLSw==}
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
bundledDependencies:
@@ -6696,11 +6779,6 @@ packages:
resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- npmlog@7.0.1:
- resolution: {integrity: sha512-uJ0YFk/mCQpLBt+bxN88AKd+gyqZvZDbtiNxk6Waqcj2aPRyfVx8ITawkyQynxUagInjdYT1+qj4NfA5KJJUxg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- deprecated: This package is no longer supported.
-
npx@10.2.2:
resolution: {integrity: sha512-eImmySusyeWphzs5iNh791XbZnZG0FSNvM4KSah34pdQQIDsdTDhIwg1sjN3AIVcjGLpbQ/YcfqHPshKZQK1fA==}
deprecated: This package is now part of the npm CLI.
@@ -6719,16 +6797,9 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
-
object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
- object-is@1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
-
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -6745,23 +6816,12 @@ packages:
resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
engines: {node: '>= 0.4'}
- object.fromentries@2.0.7:
- resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
- engines: {node: '>= 0.4'}
-
object.fromentries@2.0.8:
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
- object.groupby@1.0.1:
- resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
-
- object.hasown@1.1.4:
- resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
- engines: {node: '>= 0.4'}
-
- object.values@1.1.7:
- resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
+ object.groupby@1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
engines: {node: '>= 0.4'}
object.values@1.2.0:
@@ -6772,10 +6832,6 @@ packages:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- on-headers@1.0.2:
- resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
- engines: {node: '>= 0.8'}
-
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -6787,6 +6843,10 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ onetime@7.0.0:
+ resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
+ engines: {node: '>=18'}
+
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -6799,14 +6859,6 @@ packages:
resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
- ora@5.4.1:
- resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
- engines: {node: '>=10'}
-
- os-tmpdir@1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
-
p-cancelable@3.0.0:
resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
engines: {node: '>=12.20'}
@@ -6827,8 +6879,8 @@ packages:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- p-limit@5.0.0:
- resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ p-limit@6.1.0:
+ resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==}
engines: {node: '>=18'}
p-locate@3.0.0:
@@ -6883,6 +6935,9 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
package-json@8.1.1:
resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
engines: {node: '>=14.16'}
@@ -6902,9 +6957,6 @@ packages:
engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
- pako@0.2.9:
- resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
-
param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
@@ -6912,6 +6964,10 @@ packages:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
+ parse-conflict-json@3.0.1:
+ resolution: {integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
@@ -6945,9 +7001,6 @@ packages:
parse-url@8.1.0:
resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==}
- parse5@6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
-
parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
@@ -6992,20 +7045,16 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- path-scurry@1.10.2:
- resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
- engines: {node: '>=16 || 14 >=14.17'}
-
path-scurry@1.11.1:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-scurry@2.0.0:
+ resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
+ engines: {node: 20 || >=22}
+
+ path-to-regexp@0.1.10:
+ resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
@@ -7015,29 +7064,24 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- path-type@5.0.0:
- resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
- engines: {node: '>=12'}
-
- pathe@1.1.1:
- resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
-
- pathval@1.1.1:
- resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ pathval@2.0.0:
+ resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
+ engines: {node: '>= 14.16'}
- peek-stream@1.1.3:
- resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==}
+ periscopic@3.1.0:
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
-
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.0:
+ resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pidtree@0.3.1:
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
engines: {node: '>=0.10'}
@@ -7052,10 +7096,6 @@ packages:
resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
engines: {node: '>=4'}
- pify@4.0.1:
- resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
- engines: {node: '>=6'}
-
pify@5.0.0:
resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==}
engines: {node: '>=10'}
@@ -7068,18 +7108,10 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- pkg-dir@3.0.0:
- resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
- engines: {node: '>=6'}
-
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
- pkg-dir@5.0.0:
- resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
- engines: {node: '>=10'}
-
plur@4.0.0:
resolution: {integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==}
engines: {node: '>=10'}
@@ -7125,8 +7157,8 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss-discard-duplicates@7.0.0:
- resolution: {integrity: sha512-bAnSuBop5LpAIUmmOSsuvtKAAKREB6BBIYStWUTGq8oG5q9fClDMMuY8i4UPI/cEcDx2TN+7PMnXYIId20UVDw==}
+ postcss-discard-duplicates@7.0.1:
+ resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
@@ -7298,8 +7330,11 @@ packages:
postcss-resolve-nested-selector@0.1.1:
resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==}
- postcss-safe-parser@7.0.0:
- resolution: {integrity: sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==}
+ postcss-resolve-nested-selector@0.1.6:
+ resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
+
+ postcss-safe-parser@7.0.1:
+ resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
engines: {node: '>=18.0'}
peerDependencies:
postcss: ^8.4.31
@@ -7310,8 +7345,8 @@ packages:
peerDependencies:
postcss: ^8.4.29
- postcss-selector-parser@6.1.0:
- resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-sorting@8.0.2:
@@ -7338,16 +7373,21 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
+ precompress@12.0.5:
+ resolution: {integrity: sha512-feBgwuMCSpBUCt+Vx4bstyOtQPlPh3UuK7RrTBkRCqlZUNrUNpAc/wyJSiHSPS+wYUTzOzZlz7/cNvon0+ah4w==}
+ engines: {node: '>=18'}
+ hasBin: true
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier@3.3.2:
- resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==}
+ prettier@3.3.3:
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'}
hasBin: true
@@ -7359,10 +7399,6 @@ packages:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- pretty-hrtime@1.0.3:
- resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
- engines: {node: '>= 0.8'}
-
prismjs@1.27.0:
resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
engines: {node: '>=6'}
@@ -7379,17 +7415,24 @@ packages:
resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- process-nextick-args@2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
-
process@0.11.10:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
+ proggy@2.0.0:
+ resolution: {integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
+ promise-all-reject-late@1.0.1:
+ resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==}
+
+ promise-call-limit@3.0.2:
+ resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==}
+
promise-inflight@1.0.1:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
@@ -7420,6 +7463,9 @@ packages:
property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
+ property-information@6.5.0:
+ resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
+
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -7433,15 +7479,6 @@ packages:
psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
- pump@2.0.1:
- resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
-
- pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
-
- pumpify@1.5.1:
- resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
-
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
engines: {node: '>=6'}
@@ -7461,14 +7498,14 @@ packages:
resolution: {integrity: sha512-s3EBxg5RSWmpqd0KGzNqPiaBbWDz1/As+2MzoYVGMqgDqRTLBhJW6sywfTBek7OwNfoS/6pS0xdtvChNhFj2cw==}
hasBin: true
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
-
qs@6.11.2:
resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
engines: {node: '>=0.6'}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
+ engines: {node: '>=0.6'}
+
querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
@@ -7483,15 +7520,12 @@ packages:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
- ramda@0.29.0:
- resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- raw-body@2.5.1:
- resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
+ raw-body@2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
rc-config-loader@4.1.3:
@@ -7516,6 +7550,11 @@ packages:
resolution: {integrity: sha512-rCz0HBIT0LWbIM+///LfRrJoTKftIzzwsYDf0ns5KwaEjejMHQRtphcns+IXFHDNY9pnz6G8l/JbbI6pD4EAIA==}
engines: {node: '>=16.14.0'}
+ react-dom@18.2.0:
+ resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ peerDependencies:
+ react: ^18.2.0
+
react-dom@18.3.1:
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
@@ -7539,49 +7578,36 @@ packages:
react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+
react-refresh@0.14.2:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- react-remove-scroll-bar@2.3.6:
- resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-remove-scroll@2.5.5:
- resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-style-singleton@2.2.1:
- resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
react-syntax-highlighter@15.5.0:
resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==}
peerDependencies:
react: '>= 0.14.0'
+ react-transition-group@4.4.5:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
+ peerDependencies:
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
+
+ react@18.2.0:
+ resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ engines: {node: '>=0.10.0'}
+
react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
+ read-cmd-shim@4.0.0:
+ resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
read-package-json-fast@3.0.2:
resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -7590,11 +7616,6 @@ packages:
resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- read-package-json@7.0.1:
- resolution: {integrity: sha512-8PcDiZ8DXUjLf687Ol4BR8Bpm2umR7vhoZOzNRt+uxD9GpBh/K+CAAALVIiYFknmvlmyg7hM7BSNUXPaCCqd0Q==}
- engines: {node: ^16.14.0 || >=18.0.0}
- deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
-
read-pkg-up@10.1.0:
resolution: {integrity: sha512-aNtBq4jR8NawpKJQldrQcSW9y/d+KWH4v24HWkHljOZ7H0av+YTGANBzRh9A5pw7v/bLVsLVPpOhJ7gHNVy8lA==}
engines: {node: '>=16'}
@@ -7619,21 +7640,18 @@ packages:
resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==}
engines: {node: '>=18'}
- readable-stream@2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
-
readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- readable-stream@4.4.2:
- resolution: {integrity: sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
+
recast@0.23.6:
resolution: {integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==}
engines: {node: '>= 4'}
@@ -7653,6 +7671,10 @@ packages:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ engines: {node: '>=4'}
+
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
@@ -7666,10 +7688,6 @@ packages:
resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
engines: {node: '>= 0.4'}
- regexp.prototype.flags@1.5.1:
- resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
- engines: {node: '>= 0.4'}
-
regexp.prototype.flags@1.5.2:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
@@ -7678,6 +7696,10 @@ packages:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
+ regexpu-core@6.1.1:
+ resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
+ engines: {node: '>=4'}
+
registry-auth-token@5.0.2:
resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
engines: {node: '>=14'}
@@ -7686,6 +7708,13 @@ packages:
resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==}
engines: {node: '>=12'}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.11.1:
+ resolution: {integrity: sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ==}
+ hasBin: true
+
regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
@@ -7696,16 +7725,15 @@ packages:
rehype-slug@6.0.0:
resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
- relateurl@0.2.7:
- resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
- engines: {node: '>= 0.10'}
-
remark-mdx@3.0.0:
resolution: {integrity: sha512-O7yfjuC6ra3NHPbRVxfflafAj3LTwx3b73aBvkEFU5z4PsD6FD4vrqJAkE5iNGLz71GdjXfgRqm3SQ0h0VuE7g==}
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
+ remark-rehype@11.1.1:
+ resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
+
remark-stringify@11.0.0:
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
@@ -7727,6 +7755,9 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ reselect@4.1.8:
+ resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==}
+
resolve-alpn@1.2.1:
resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
@@ -7742,14 +7773,13 @@ packages:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
+ resolve-pkg-maps@1.0.0:
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+
resolve.exports@2.0.2:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
- resolve@1.22.2:
- resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
- hasBin: true
-
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -7762,13 +7792,9 @@ packages:
resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
engines: {node: '>=14.16'}
- restore-cursor@3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
-
- restore-cursor@4.0.0:
- resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ restore-cursor@5.1.0:
+ resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
+ engines: {node: '>=18'}
retry@0.12.0:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
@@ -7781,25 +7807,15 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@2.6.3:
- resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.7:
- resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==}
- engines: {node: '>=14.18'}
+ rimraf@5.0.10:
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
- rollup-plugin-copy@3.5.0:
- resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==}
- engines: {node: '>=8.3'}
-
rollup-plugin-filesize@10.0.0:
resolution: {integrity: sha512-JAYYhzCcmGjmCzo3LEHSDE3RAPHKIeBdpqRhiyZSv5o/3wFhktUOzYAWg/uUKyEu5dEaVaql6UOmaqHx1qKrZA==}
engines: {node: '>=16.0.0'}
@@ -7808,8 +7824,8 @@ packages:
resolution: {integrity: sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==}
deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.
- rollup-plugin-node-externals@7.1.2:
- resolution: {integrity: sha512-cVJFKs+ulZxpMmn/s+oi431d93Jq5+G7Sc5ixWDrL2k+Gj+MqXg0KMNWgKf8Mw5qpaG4jVDpsvuqFfiCvRcGeA==}
+ rollup-plugin-node-externals@7.1.3:
+ resolution: {integrity: sha512-RM+7tJAejAoRsCf93TptTSdqUhRA8S78DleihMiu54Kac+uLkd9VIegLPhGnaW3ehZTXh56+R301mFH6j2A7vw==}
engines: {node: '>= 21 || ^20.6.0 || ^18.19.0'}
peerDependencies:
rollup: ^3.0.0 || ^4.0.0
@@ -7837,20 +7853,11 @@ packages:
rollup-pluginutils@2.8.2:
resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
- rollup@3.29.4:
- resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
-
- rollup@4.18.0:
- resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
+ rollup@4.24.0:
+ resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- run-async@3.0.0:
- resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
- engines: {node: '>=0.12.0'}
-
run-con@1.3.2:
resolution: {integrity: sha512-CcfE+mYiTcKEzg0IqS08+efdnH0oJ3zV0wSUFBNrMHMuxCtXvBCLzCJHatwuXDcu/RlhjTziTo/a1ruQik6/Yg==}
hasBin: true
@@ -7858,21 +7865,10 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
-
sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
- safe-array-concat@1.0.1:
- resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
- engines: {node: '>=0.4'}
-
- safe-array-concat@1.1.0:
- resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==}
- engines: {node: '>=0.4'}
-
safe-array-concat@1.1.2:
resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
engines: {node: '>=0.4'}
@@ -7896,8 +7892,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.77.5:
- resolution: {integrity: sha512-oDfX1mukIlxacPdQqNb6mV2tVCrnE+P3nVYioy72V5tlk56CPNcO4TCuFcaCRKKfJ1M3lH95CleRS+dVKL2qMg==}
+ sass@1.79.5:
+ resolution: {integrity: sha512-W1h5kp6bdhqFh2tk3DsI771MoEJjvrSY/2ihJRJS4pjIyfJCw0nTsxqhnrUzaLMOJjFchj8rOvraI/YUVjtx5g==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -7941,32 +7937,29 @@ packages:
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
sentence-case@3.0.4:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- set-function-length@1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
- engines: {node: '>= 0.4'}
-
set-function-length@1.2.1:
resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==}
engines: {node: '>= 0.4'}
- set-function-name@2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
- engines: {node: '>= 0.4'}
-
set-function-name@2.0.2:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
@@ -7978,6 +7971,10 @@ packages:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -7997,9 +7994,6 @@ packages:
shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
-
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
@@ -8007,10 +8001,6 @@ packages:
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- signal-exit@4.0.2:
- resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==}
- engines: {node: '>=14'}
-
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
@@ -8024,6 +8014,13 @@ packages:
resolution: {integrity: sha512-2A3WvXkQurhuMgORgT60r6pOWiCOO5LlEqY2ADxGBDGVYLSo5HN0uLtb68YpVpuL/Vi8mLTe7+0Dx2Fq8lLqEg==}
engines: {node: ^16.14.0 || >=18.0.0}
+ simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+
+ sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
+ engines: {node: '>= 10'}
+
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -8051,9 +8048,9 @@ packages:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- smol-toml@1.2.1:
- resolution: {integrity: sha512-OtZKrVrGIT+m++lxyF0z5n68nkwdgZotPhy89bfA4T7nSWe0xeQtfbjM1z5VLTilJdWXH46g8i0oAcpQNkzZTg==}
- engines: {node: '>= 18', pnpm: '>= 9'}
+ smol-toml@1.3.0:
+ resolution: {integrity: sha512-tWpi2TsODPScmi48b/OQZGi2lgUmBCHy6SZrhi/FdnnHiU1GwebbCfuQuxsC3nHaLwtYeJGPrDZDIeodDOc4pA==}
+ engines: {node: '>= 18'}
snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
@@ -8074,8 +8071,8 @@ packages:
resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==}
engines: {node: '>=12'}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-support@0.5.13:
@@ -8084,10 +8081,18 @@ packages:
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+ source-map@0.5.7:
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ engines: {node: '>=0.10.0'}
+
source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
+ source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
+
sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
@@ -8121,14 +8126,14 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- ssri@10.0.5:
- resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
ssri@10.0.6:
resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ssri@11.0.0:
+ resolution: {integrity: sha512-aZpUoMN/Jj2MqA4vMCeiKGnc/8SuSyHbGSBdgFbZxP8OJGF/lFkIuElzPxsN0q8TQQ+prw3P4EDfB3TBHHgfXw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
@@ -8141,20 +8146,10 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
-
- store2@2.14.2:
- resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
-
- storybook@8.1.9:
- resolution: {integrity: sha512-Jymrfn299+MJBIZVDYPJlIGJMZM33udFCjbeRdOHIXF2BfpqOSS2FoEfmlp3zya3gwyZDq/BE7uiBc7HIVZa4g==}
+ storybook@8.3.5:
+ resolution: {integrity: sha512-hYQVtP2l+3kO8oKDn4fjXXQYxgTRsj/LaV6lUMJH0zt+OhVmDXKJLxmdUP4ieTm0T8wEbSYosFavgPcQZlxRfw==}
hasBin: true
- stream-shift@1.0.1:
- resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
-
streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
@@ -8186,8 +8181,8 @@ packages:
resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==}
engines: {node: '>=16'}
- string-width@7.0.0:
- resolution: {integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==}
+ string-width@7.2.0:
+ resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
string.prototype.matchall@4.0.11:
@@ -8198,14 +8193,13 @@ packages:
resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==}
engines: {node: '>= 0.4'}
+ string.prototype.repeat@1.0.0:
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
+
string.prototype.trim@1.2.7:
resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
engines: {node: '>= 0.4'}
- string.prototype.trim@1.2.8:
- resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
- engines: {node: '>= 0.4'}
-
string.prototype.trim@1.2.9:
resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
@@ -8213,25 +8207,16 @@ packages:
string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
- string.prototype.trimend@1.0.7:
- resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
-
string.prototype.trimend@1.0.8:
resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
string.prototype.trimstart@1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
- string.prototype.trimstart@1.0.7:
- resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
-
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
engines: {node: '>= 0.4'}
- string_decoder@1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
-
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
@@ -8299,6 +8284,12 @@ packages:
style-inject@0.3.0:
resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==}
+ style-to-object@0.4.4:
+ resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
+
+ style-to-object@1.0.8:
+ resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
+
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
@@ -8361,11 +8352,14 @@ packages:
peerDependencies:
stylelint: ^16.0.2
- stylelint@16.6.1:
- resolution: {integrity: sha512-yNgz2PqWLkhH2hw6X9AweV9YvoafbAD5ZsFdKN9BvSDVwGvPh+AUIrn7lYwy1S7IHmtFin75LLfX1m0D2tHu8Q==}
+ stylelint@16.10.0:
+ resolution: {integrity: sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ==}
engines: {node: '>=18.12.0'}
hasBin: true
+ stylis@4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
+
supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -8382,14 +8376,17 @@ packages:
resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
engines: {node: '>=12'}
- supports-hyperlinks@3.0.0:
- resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==}
+ supports-hyperlinks@3.1.0:
+ resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
engines: {node: '>=14.18'}
supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
+ svg-parser@2.0.4:
+ resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
+
svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
@@ -8398,6 +8395,11 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
+ svgo@3.3.2:
+ resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -8409,16 +8411,8 @@ packages:
resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
engines: {node: '>=10.0.0'}
- tar-fs@2.1.1:
- resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
-
- tar-stream@2.2.0:
- resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
- engines: {node: '>=6'}
-
- tar@6.2.0:
- resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
- engines: {node: '>=10'}
+ tar-mini@0.2.0:
+ resolution: {integrity: sha512-+qfUHz700DWnRutdUsxRRVZ38G1Qr27OetwaMYTdg8hcPxf46U0S1Zf76dQMWRBmusOt2ZCK5kbIaiLkoGO7WQ==}
tar@6.2.1:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
@@ -8431,14 +8425,6 @@ packages:
resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==}
engines: {node: '>=14.16'}
- temp@0.8.4:
- resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
- engines: {node: '>=6.0.0'}
-
- tempy@3.1.0:
- resolution: {integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==}
- engines: {node: '>=14.16'}
-
terser@5.19.0:
resolution: {integrity: sha512-JpcpGOQLOXm2jsomozdMDpd5f8ZHh1rR48OFgWUH3QsyZcfPgv2qDCYbcDEAYNd4OZRj2bWYKpwdll/udZCk/Q==}
engines: {node: '>=10'}
@@ -8455,9 +8441,6 @@ packages:
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- through2@2.0.5:
- resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
-
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
@@ -8467,13 +8450,17 @@ packages:
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- tinyspy@2.2.1:
- resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ tinyglobby@0.2.9:
+ resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
+ engines: {node: '>=12.0.0'}
+
+ tinyrainbow@1.2.0:
+ resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
engines: {node: '>=14.0.0'}
- tmp@0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
+ tinyspy@3.0.2:
+ resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
+ engines: {node: '>=14.0.0'}
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
@@ -8486,9 +8473,6 @@ packages:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
- tocbot@4.23.0:
- resolution: {integrity: sha512-5DWuSZXsqG894mkGb8ZsQt9myyQyVxE50AiGRZ0obV0BVUTVkaZmc9jbgpknaAAPUm4FIrzGkEseD6FuQJYJDQ==}
-
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
@@ -8497,17 +8481,25 @@ packages:
resolution: {integrity: sha512-0h7Cvo8trUcv6sZPyA+iNHsFEwIhN4FhXtYqgndHQNYub+dTDW8ZCQURBNDNa0PvJ8Xg2wqG1V/5WSwV0l6yOw==}
hasBin: true
+ totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+
tough-cookie@4.1.3:
resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
engines: {node: '>=6'}
- tr46@0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
-
tr46@3.0.0:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
+ treeverse@3.0.0:
+ resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ trim-lines@3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
+
trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
@@ -8525,6 +8517,16 @@ packages:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
+ tsconfck@2.1.2:
+ resolution: {integrity: sha512-ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg==}
+ engines: {node: ^14.13.1 || ^16 || >=18}
+ hasBin: true
+ peerDependencies:
+ typescript: ^4.3.5 || ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
@@ -8532,11 +8534,13 @@ packages:
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
engines: {node: '>=6'}
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ tslib@2.7.0:
+ resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+ tsx@4.19.1:
+ resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
tuf-js@1.1.7:
resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==}
@@ -8586,6 +8590,10 @@ packages:
resolution: {integrity: sha512-Gur3yQGM9qiLNs0KPP7LPgeRbio2QTt4xXouobMCarR0/wyW3F+F/+OWwshg3NG0Adon7uQfSZBpB46NfhoF1A==}
engines: {node: '>=14.16'}
+ type-fest@4.26.1:
+ resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
+ engines: {node: '>=16'}
+
type-fest@4.8.2:
resolution: {integrity: sha512-mcvrCjixA5166hSrUoJgGb9gBQN4loMYyj9zxuMs/66ibHNEFd5JXMw37YVDx58L4/QID9jIzdTBB4mDwDJ6KQ==}
engines: {node: '>=16'}
@@ -8594,26 +8602,14 @@ packages:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- typed-array-buffer@1.0.0:
- resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
- engines: {node: '>= 0.4'}
-
typed-array-buffer@1.0.2:
resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.0:
- resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
- engines: {node: '>= 0.4'}
-
typed-array-byte-length@1.0.1:
resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.0:
- resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
- engines: {node: '>= 0.4'}
-
typed-array-byte-offset@1.0.2:
resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
engines: {node: '>= 0.4'}
@@ -8621,10 +8617,6 @@ packages:
typed-array-length@1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- typed-array-length@1.0.5:
- resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==}
- engines: {node: '>= 0.4'}
-
typed-array-length@1.0.6:
resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
@@ -8640,6 +8632,11 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
@@ -8654,6 +8651,13 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@6.19.8:
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+
+ undici@6.20.1:
+ resolution: {integrity: sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==}
+ engines: {node: '>=18.17'}
+
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -8705,6 +8709,9 @@ packages:
unist-util-position-from-estree@2.0.0:
resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
+ unist-util-position@5.0.0:
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
+
unist-util-remove-position@5.0.0:
resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
@@ -8720,12 +8727,8 @@ packages:
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- universal-user-agent@6.0.1:
- resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
-
- universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
+ universal-user-agent@7.0.2:
+ resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
@@ -8750,8 +8753,8 @@ packages:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.0.13:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -8775,26 +8778,6 @@ packages:
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
- use-callback-ref@1.3.2:
- resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sidecar@1.1.2:
- resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -8822,6 +8805,14 @@ packages:
resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
engines: {node: '>=10.12.0'}
+ valibot@0.42.1:
+ resolution: {integrity: sha512-3keXV29Ar5b//Hqi4MbSdV7lfVp6zuYLZuA9V1PvQUsXqogr+u5lvLPLk3A4f74VUXDnf/JfWMN6sB+koJ/FFw==}
+ peerDependencies:
+ typescript: '>=5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
@@ -8848,6 +8839,24 @@ packages:
vfile@6.0.1:
resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
+ vike@0.4.199:
+ resolution: {integrity: sha512-SOLv0cqThcH9Fux1j7Bfw/AsrUsUw9obB2EMIbWeA+HoChUC6dI0QK/t8ZU4V3ARDVo7qBnLxZCqkFnYeA4Hrg==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+ peerDependencies:
+ react-streaming: '>=0.3.42'
+ vite: '>=5.1.0'
+ peerDependenciesMeta:
+ react-streaming:
+ optional: true
+
+ vite-imagetools@7.0.4:
+ resolution: {integrity: sha512-C9C7b2p/8/TCN2g26tE9haoer2i8K4x0v2RXUiHsIjiz221vQuKItCQ+VyiVCsUMPXfJC/tlZsmCZVBz5jh7uA==}
+ engines: {node: '>=18.0.0'}
+
+ vite-plugin-compression2@1.3.0:
+ resolution: {integrity: sha512-/cYzISoYOo/SwPUBReS1E02a8eNTpQm8+lQUBj5NNGxuq4iZ3JOfWExUlobhVhPMJuejD7dipT+cMLbaWsMbdw==}
+
vite-plugin-runtime-config@1.0.2:
resolution: {integrity: sha512-UkZUqKDd88MsTq4TNmY7PdOavaNZGIc5UqiDN4hNI5CbBefGomPRU+ZShDuXVFIY795ynMPo9L+96lmMb+UJfA==}
peerDependencies:
@@ -8857,8 +8866,49 @@ packages:
vitest:
optional: true
- vite@5.3.1:
- resolution: {integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==}
+ vite-plugin-svgr@4.2.0:
+ resolution: {integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==}
+ peerDependencies:
+ vite: ^2.6.0 || 3 || 4 || 5
+
+ vite-tsconfig-paths@4.2.1:
+ resolution: {integrity: sha512-GNUI6ZgPqT3oervkvzU+qtys83+75N/OuDaQl7HmOqFTb0pjZsuARrRipsyJhJ3enqV8beI1xhGbToR4o78nSQ==}
+ peerDependencies:
+ vite: '*'
+ peerDependenciesMeta:
+ vite:
+ optional: true
+
+ vite@5.3.5:
+ resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
+ vite@5.4.8:
+ resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -8866,6 +8916,7 @@ packages:
less: '*'
lightningcss: ^1.21.0
sass: '*'
+ sass-embedded: '*'
stylus: '*'
sugarss: '*'
terser: ^5.4.0
@@ -8878,6 +8929,8 @@ packages:
optional: true
sass:
optional: true
+ sass-embedded:
+ optional: true
stylus:
optional: true
sugarss:
@@ -8910,10 +8963,6 @@ packages:
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
- watchpack@2.4.0:
- resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
- engines: {node: '>=10.13.0'}
-
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
@@ -8921,9 +8970,6 @@ packages:
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
- webidl-conversions@3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
-
webidl-conversions@7.0.0:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
@@ -8947,9 +8993,6 @@ packages:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
- whatwg-url@5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
-
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
@@ -8967,14 +9010,6 @@ packages:
resolution: {integrity: sha512-uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.13:
- resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
- engines: {node: '>= 0.4'}
-
- which-typed-array@1.1.14:
- resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==}
- engines: {node: '>= 0.4'}
-
which-typed-array@1.1.15:
resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
engines: {node: '>= 0.4'}
@@ -9035,9 +9070,6 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- write-file-atomic@2.4.3:
- resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
-
write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
@@ -9049,12 +9081,12 @@ packages:
resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- write-json-file@5.0.0:
- resolution: {integrity: sha512-ddSsCLa4aQ3kI21BthINo4q905/wfhvQ3JL3774AcRjBaiQmfn5v4rw77jQ7T6CmAit9VOQO+FsLyPkwxoB1fw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ write-json-file@6.0.0:
+ resolution: {integrity: sha512-MNHcU3f9WxnNyR6MxsYSj64Jz0+dwIpisWKWq9gqLj/GwmA9INg3BZ3vt70/HB3GEwrnDQWr4RPrywnhNzmUFA==}
+ engines: {node: '>=18'}
- write-package@7.0.1:
- resolution: {integrity: sha512-S7c5F2mpb5o+9pS1UfO3jcQb0OR25L7ZJT64cv3K0TkGh1VxJb+PNnL8b46KSJ6tmxIbA0xgHnrtBdVGeHmJ0A==}
+ write-package@7.1.0:
+ resolution: {integrity: sha512-DqUx8GI3r9BFWwU2DPKddL1E7xWfbFED82mLVhGXKlFEPe8IkBftzO7WfNwHtk7oGDHDeuH/o8VMpzzfMwmLUA==}
engines: {node: '>=18'}
ws@8.13.0:
@@ -9101,8 +9133,8 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.4.5:
- resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==}
+ yaml@2.5.1:
+ resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
engines: {node: '>= 14'}
hasBin: true
@@ -9132,6 +9164,17 @@ packages:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
engines: {node: '>=12.20'}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
+ engines: {node: '>=12.20'}
+
+ yoctocolors-cjs@2.1.2:
+ resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
+ engines: {node: '>=18'}
+
+ zod@3.22.4:
+ resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
+
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -9146,174 +9189,116 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@aw-web-design/x-default-browser@1.4.126':
- dependencies:
- default-browser-id: 3.0.0
-
- '@babel/code-frame@7.24.2':
- dependencies:
- '@babel/highlight': 7.24.2
- picocolors: 1.0.0
-
- '@babel/code-frame@7.24.7':
+ '@babel/code-frame@7.25.7':
dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.0.1
-
- '@babel/compat-data@7.24.4': {}
+ '@babel/highlight': 7.25.7
+ picocolors: 1.1.0
- '@babel/compat-data@7.24.7': {}
+ '@babel/compat-data@7.25.8': {}
- '@babel/core@7.24.7':
+ '@babel/core@7.25.8':
dependencies:
'@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helpers': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helpers': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
convert-source-map: 2.0.0
- debug: 4.3.4
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.24.5':
- dependencies:
- '@babel/types': 7.24.7
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
- '@babel/generator@7.24.7':
+ '@babel/generator@7.25.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.22.5':
+ '@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
- '@babel/helper-annotate-as-pure@7.24.7':
+ '@babel/helper-annotate-as-pure@7.25.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-compilation-targets@7.23.6':
- dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
- lru-cache: 5.1.1
- semver: 6.3.1
-
- '@babel/helper-compilation-targets@7.24.7':
+ '@babel/helper-compilation-targets@7.25.7':
dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- browserslist: 4.23.0
+ '@babel/compat-data': 7.25.8
+ '@babel/helper-validator-option': 7.25.7
+ browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.5
- semver: 6.3.1
-
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-member-expression-to-functions': 7.25.7
+ '@babel/helper-optimise-call-expression': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/traverse': 7.25.7
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.7)':
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ regexpu-core: 6.1.1
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.7)':
+ '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.7
- debug: 4.3.4
+ '@babel/core': 7.25.8
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-environment-visitor@7.22.20': {}
-
- '@babel/helper-environment-visitor@7.24.7':
- dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-function-name@7.23.0':
- dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.5
-
- '@babel/helper-function-name@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.7
-
- '@babel/helper-hoist-variables@7.22.5':
- dependencies:
- '@babel/types': 7.24.5
-
- '@babel/helper-hoist-variables@7.24.7':
- dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-member-expression-to-functions@7.24.5':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.8)':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ debug: 4.3.7
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-member-expression-to-functions@7.24.7':
+ '@babel/helper-member-expression-to-functions@7.25.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -9321,906 +9306,733 @@ snapshots:
dependencies:
'@babel/types': 7.22.5
- '@babel/helper-module-imports@7.24.3':
- dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.25.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.24.5
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.7
-
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.22.5':
- dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-optimise-call-expression@7.24.7':
+ '@babel/helper-optimise-call-expression@7.25.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
- '@babel/helper-plugin-utils@7.24.7': {}
+ '@babel/helper-plugin-utils@7.25.7': {}
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-wrap-function': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-wrap-function': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.7)':
+ '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.24.5
- '@babel/helper-optimise-call-expression': 7.22.5
-
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-member-expression-to-functions': 7.25.7
+ '@babel/helper-optimise-call-expression': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.24.5':
- dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-simple-access@7.24.7':
+ '@babel/helper-simple-access@7.25.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-split-export-declaration@7.24.5':
- dependencies:
- '@babel/types': 7.24.5
-
- '@babel/helper-split-export-declaration@7.24.7':
- dependencies:
- '@babel/types': 7.24.7
-
'@babel/helper-string-parser@7.22.5': {}
- '@babel/helper-string-parser@7.24.1': {}
-
- '@babel/helper-string-parser@7.24.7': {}
-
- '@babel/helper-validator-identifier@7.22.20': {}
+ '@babel/helper-string-parser@7.25.7': {}
'@babel/helper-validator-identifier@7.22.5': {}
- '@babel/helper-validator-identifier@7.24.5': {}
+ '@babel/helper-validator-identifier@7.25.7': {}
- '@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-validator-option@7.25.7': {}
- '@babel/helper-validator-option@7.23.5': {}
-
- '@babel/helper-validator-option@7.24.7': {}
-
- '@babel/helper-wrap-function@7.24.7':
+ '@babel/helper-wrap-function@7.25.7':
dependencies:
- '@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.7
-
- '@babel/highlight@7.24.2':
+ '@babel/helpers@7.25.7':
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.0.1
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
- '@babel/highlight@7.24.7':
+ '@babel/highlight@7.25.7':
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.25.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
-
- '@babel/parser@7.24.5':
- dependencies:
- '@babel/types': 7.24.5
+ picocolors: 1.1.0
- '@babel/parser@7.24.7':
+ '@babel/parser@7.25.8':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.25.8)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-async-generator-functions@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8)
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.7)':
+ '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-class-static-block@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
+ '@babel/traverse': 7.25.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/template': 7.25.7
- '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-dynamic-import@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.24.7)':
+ '@babel/plugin-transform-export-namespace-from@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/traverse': 7.25.7
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-json-strings@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.5
-
- '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.7)':
+ '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-numeric-separator@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-object-rest-spread@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
-
- '@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.7)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-optional-chaining@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.7)':
+ '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/types': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.7)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.25.8)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.8)
+ babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.25.8)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
-
- '@babel/preset-env@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.7)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.7)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.7)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.7)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.7)
- core-js-compat: 3.36.1
+ '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/preset-env@7.25.8(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/compat-data': 7.25.8
+ '@babel/core': 7.25.8
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.8)
+ '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-async-generator-functions': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-class-static-block': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-dynamic-import': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-export-namespace-from': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-json-strings': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.25.8)
+ '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.8)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.8)
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.25.8)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.8)
+ babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.25.8)
+ core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.23.3(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.24.7)
-
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/types': 7.25.8
esutils: 2.0.3
- '@babel/preset-react@7.24.7(@babel/core@7.24.7)':
+ '@babel/preset-react@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)':
+ '@babel/preset-typescript@7.25.7(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.22.15(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- clone-deep: 4.0.1
- find-cache-dir: 2.1.0
- make-dir: 2.1.0
- pirates: 4.0.6
- source-map-support: 0.5.21
-
'@babel/regjsgen@0.8.0': {}
- '@babel/runtime@7.24.7':
+ '@babel/runtime@7.25.7':
dependencies:
regenerator-runtime: 0.14.0
- '@babel/template@7.24.0':
+ '@babel/template@7.25.7':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
-
- '@babel/template@7.24.7':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
-
- '@babel/traverse@7.24.5':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/code-frame': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
- '@babel/traverse@7.24.7':
+ '@babel/traverse@7.25.7':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
- debug: 4.3.4
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -10231,197 +10043,335 @@ snapshots:
'@babel/helper-validator-identifier': 7.22.5
to-fast-properties: 2.0.0
- '@babel/types@7.24.5':
- dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.24.5
- to-fast-properties: 2.0.0
-
- '@babel/types@7.24.7':
+ '@babel/types@7.25.8':
dependencies:
- '@babel/helper-string-parser': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-string-parser': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
'@base2/pretty-print-object@1.0.1': {}
'@bcoe/v8-coverage@0.2.3': {}
- '@colors/colors@1.5.0':
- optional: true
+ '@brillout/import@0.2.3': {}
+
+ '@brillout/json-serializer@0.5.13': {}
+
+ '@brillout/picocolors@1.0.15': {}
+
+ '@brillout/require-shim@0.1.2': {}
+
+ '@brillout/vite-plugin-server-entry@0.4.13':
+ dependencies:
+ '@brillout/import': 0.2.3
+
+ '@builder.io/qwik-city@1.9.1(@types/node@20.14.11)(rollup@4.24.0)(sass@1.79.5)(terser@5.19.0)(typescript@5.4.5)':
+ dependencies:
+ '@mdx-js/mdx': 3.0.1
+ '@types/mdx': 2.0.5
+ source-map: 0.7.4
+ svgo: 3.3.2
+ undici: 6.20.1
+ valibot: 0.42.1(typescript@5.4.5)
+ vfile: 6.0.1
+ vite: 5.4.8(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)
+ vite-imagetools: 7.0.4(rollup@4.24.0)
+ zod: 3.22.4
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - rollup
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - typescript
+
+ '@builder.io/qwik-react@0.5.0(@builder.io/qwik@1.9.1(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0))(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@builder.io/qwik': 1.9.1(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)
+ '@types/react': 18.3.11
+ '@types/react-dom': 18.3.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@builder.io/qwik@1.9.1(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)':
+ dependencies:
+ csstype: 3.1.2
+ vite: 5.4.8(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - terser
+
+ '@colors/colors@1.5.0':
+ optional: true
+
+ '@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.2
+
+ '@csstools/css-tokenizer@3.0.2': {}
+
+ '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.2(@csstools/css-tokenizer@3.0.2)
+ '@csstools/css-tokenizer': 3.0.2
+
+ '@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)':
+ dependencies:
+ postcss-selector-parser: 6.1.2
+
+ '@dual-bundle/import-meta-resolve@4.1.0': {}
+
+ '@emnapi/runtime@1.3.1':
+ dependencies:
+ tslib: 2.7.0
+ optional: true
+
+ '@emotion/babel-plugin@11.12.0':
+ dependencies:
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/runtime': 7.25.7
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/serialize': 1.3.2
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/cache@11.13.1':
+ dependencies:
+ '@emotion/memoize': 0.9.0
+ '@emotion/sheet': 1.4.0
+ '@emotion/utils': 1.4.1
+ '@emotion/weak-memoize': 0.4.0
+ stylis: 4.2.0
+
+ '@emotion/hash@0.9.2': {}
- '@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1)':
+ '@emotion/is-prop-valid@1.3.1':
dependencies:
- '@csstools/css-tokenizer': 2.3.1
+ '@emotion/memoize': 0.9.0
- '@csstools/css-tokenizer@2.3.1': {}
+ '@emotion/memoize@0.9.0': {}
- '@csstools/media-query-list-parser@2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)':
+ '@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
- '@csstools/css-tokenizer': 2.3.1
+ '@babel/runtime': 7.25.7
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/cache': 11.13.1
+ '@emotion/serialize': 1.3.2
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0)
+ '@emotion/utils': 1.4.1
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.3.11
+ transitivePeerDependencies:
+ - supports-color
- '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.0)':
+ '@emotion/serialize@1.3.2':
dependencies:
- postcss-selector-parser: 6.1.0
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/unitless': 0.10.0
+ '@emotion/utils': 1.4.1
+ csstype: 3.1.2
- '@discoveryjs/json-ext@0.5.7': {}
+ '@emotion/sheet@1.4.0': {}
- '@dual-bundle/import-meta-resolve@4.1.0': {}
+ '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/is-prop-valid': 1.3.1
+ '@emotion/react': 11.13.3(@types/react@18.3.11)(react@18.2.0)
+ '@emotion/serialize': 1.3.2
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0)
+ '@emotion/utils': 1.4.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.3.11
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)':
+ '@emotion/unitless@0.10.0': {}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.2.0)':
dependencies:
- react: 18.3.1
+ react: 18.2.0
- '@esbuild/aix-ppc64@0.20.2':
- optional: true
+ '@emotion/utils@1.4.1': {}
+
+ '@emotion/weak-memoize@0.4.0': {}
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.20.2':
+ '@esbuild/aix-ppc64@0.23.1':
optional: true
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm@0.20.2':
+ '@esbuild/android-arm64@0.23.1':
optional: true
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-x64@0.20.2':
+ '@esbuild/android-arm@0.23.1':
optional: true
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.20.2':
+ '@esbuild/android-x64@0.23.1':
optional: true
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.20.2':
+ '@esbuild/darwin-arm64@0.23.1':
optional: true
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.20.2':
+ '@esbuild/darwin-x64@0.23.1':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.20.2':
+ '@esbuild/freebsd-arm64@0.23.1':
optional: true
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.20.2':
+ '@esbuild/freebsd-x64@0.23.1':
optional: true
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm@0.20.2':
+ '@esbuild/linux-arm64@0.23.1':
optional: true
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.20.2':
+ '@esbuild/linux-arm@0.23.1':
optional: true
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.20.2':
+ '@esbuild/linux-ia32@0.23.1':
optional: true
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.20.2':
+ '@esbuild/linux-loong64@0.23.1':
optional: true
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.20.2':
+ '@esbuild/linux-mips64el@0.23.1':
optional: true
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.20.2':
+ '@esbuild/linux-ppc64@0.23.1':
optional: true
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.20.2':
+ '@esbuild/linux-riscv64@0.23.1':
optional: true
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-x64@0.20.2':
+ '@esbuild/linux-s390x@0.23.1':
optional: true
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.20.2':
+ '@esbuild/linux-x64@0.23.1':
optional: true
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.20.2':
+ '@esbuild/netbsd-x64@0.23.1':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.23.1':
optional: true
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.20.2':
+ '@esbuild/openbsd-x64@0.23.1':
optional: true
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.20.2':
+ '@esbuild/sunos-x64@0.23.1':
optional: true
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.20.2':
+ '@esbuild/win32-arm64@0.23.1':
optional: true
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-x64@0.20.2':
+ '@esbuild/win32-ia32@0.23.1':
optional: true
'@esbuild/win32-x64@0.21.5':
optional: true
+ '@esbuild/win32-x64@0.23.1':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
dependencies:
eslint: 8.57.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint-community/regexpp@4.11.1': {}
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.7
espree: 9.6.1
globals: 13.20.0
ignore: 5.3.1
@@ -10434,25 +10384,14 @@ snapshots:
'@eslint/js@8.57.0': {}
- '@fal-works/esbuild-plugin-global-externals@2.1.2': {}
-
- '@fontsource/fira-sans@5.0.20': {}
-
- '@fontsource/oswald@5.0.20': {}
-
- '@fullhuman/postcss-purgecss@6.0.0(postcss@8.4.38)':
- dependencies:
- postcss: 8.4.38
- purgecss: 6.0.0
+ '@fontsource/fira-sans@5.1.0': {}
- '@gemeente-denhaag/sidenav@0.1.0-alpha.227(react@18.3.1)':
- dependencies:
- react: 18.3.1
+ '@fontsource/oswald@5.1.0': {}
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.2
- debug: 4.3.4
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -10463,7 +10402,125 @@ snapshots:
'@hutson/parse-repository-url@5.0.0': {}
- '@inquirer/figures@1.0.3': {}
+ '@img/sharp-darwin-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-darwin-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-arm@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
+
+ '@img/sharp-linux-s390x@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-wasm32@0.33.5':
+ dependencies:
+ '@emnapi/runtime': 1.3.1
+ optional: true
+
+ '@img/sharp-win32-ia32@0.33.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.33.5':
+ optional: true
+
+ '@inquirer/core@10.0.0(@types/node@20.16.11)':
+ dependencies:
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@20.16.11)
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/expand@4.0.0(@types/node@20.16.11)':
+ dependencies:
+ '@inquirer/core': 10.0.0(@types/node@20.16.11)
+ '@inquirer/type': 3.0.0(@types/node@20.16.11)
+ yoctocolors-cjs: 2.1.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/figures@1.0.7': {}
+
+ '@inquirer/input@4.0.0(@types/node@20.16.11)':
+ dependencies:
+ '@inquirer/core': 10.0.0(@types/node@20.16.11)
+ '@inquirer/type': 3.0.0(@types/node@20.16.11)
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/select@4.0.0(@types/node@20.16.11)':
+ dependencies:
+ '@inquirer/core': 10.0.0(@types/node@20.16.11)
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@20.16.11)
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/type@3.0.0(@types/node@20.16.11)':
+ dependencies:
+ '@types/node': 20.16.11
'@isaacs/cliui@8.0.2':
dependencies:
@@ -10474,6 +10531,8 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@isaacs/string-locale-compare@1.1.0': {}
+
'@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
@@ -10487,7 +10546,7 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -10500,14 +10559,14 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.8.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.14.2)
+ jest-config: 29.7.0(@types/node@20.16.11)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -10532,7 +10591,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -10550,7 +10609,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -10572,7 +10631,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.22
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -10619,7 +10678,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.18
babel-plugin-istanbul: 6.1.1
@@ -10630,7 +10689,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -10642,19 +10701,19 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/yargs': 17.0.24
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))':
dependencies:
glob: 7.2.3
glob-promise: 4.2.2(glob@7.2.3)
magic-string: 0.27.0
- react-docgen-typescript: 2.2.2(typescript@5.4.5)
- vite: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ react-docgen-typescript: 2.2.2(typescript@5.6.3)
+ vite: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
'@jridgewell/gen-mapping@0.3.5':
dependencies:
@@ -10690,160 +10749,181 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.15
- '@lerna-lite/cli@3.5.1(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(@lerna-lite/version@3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5)':
+ '@lerna-lite/cli@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/version@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
- '@lerna-lite/init': 3.5.1(typescript@5.4.5)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/init': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/npmlog': 3.9.3
dedent: 1.5.3
dotenv: 16.4.5
- import-local: 3.1.0
+ import-local: 3.2.0
load-json-file: 7.0.1
- npmlog: 7.0.1
yargs: 17.7.2
optionalDependencies:
- '@lerna-lite/publish': 3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5)
- '@lerna-lite/run': 3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5)
- '@lerna-lite/version': 3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5)
+ '@lerna-lite/publish': 3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/run': 3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/version': 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
transitivePeerDependencies:
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/core@3.5.1(typescript@5.4.5)':
+ '@lerna-lite/core@3.9.3(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
+ '@inquirer/expand': 4.0.0(@types/node@20.16.11)
+ '@inquirer/input': 4.0.0(@types/node@20.16.11)
+ '@inquirer/select': 4.0.0(@types/node@20.16.11)
+ '@lerna-lite/npmlog': 3.9.3
'@npmcli/run-script': 8.1.0
- chalk: 5.3.0
clone-deep: 4.0.1
config-chain: 1.1.13
- cosmiconfig: 9.0.0(typescript@5.4.5)
+ cosmiconfig: 9.0.0(typescript@5.6.3)
dedent: 1.5.3
execa: 8.0.1
fs-extra: 11.2.0
glob-parent: 6.0.2
- globby: 14.0.1
- inquirer: 9.2.23
is-ci: 3.0.1
json5: 2.2.3
load-json-file: 7.0.1
- minimatch: 9.0.4
- npm-package-arg: 11.0.2
- npmlog: 7.0.1
+ minimatch: 9.0.5
+ npm-package-arg: 11.0.3
p-map: 7.0.2
p-queue: 8.0.1
resolve-from: 5.0.0
- semver: 7.6.2
+ semver: 7.6.3
slash: 5.1.0
strong-log-transformer: 2.1.0
+ tinyglobby: 0.2.9
+ tinyrainbow: 1.2.0
write-file-atomic: 5.0.1
- write-json-file: 5.0.0
- write-package: 7.0.1
+ write-json-file: 6.0.0
+ write-package: 7.1.0
transitivePeerDependencies:
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/filter-packages@3.5.1(typescript@5.4.5)':
+ '@lerna-lite/filter-packages@3.9.3(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/npmlog': 3.9.3
multimatch: 7.0.0
- npmlog: 7.0.1
transitivePeerDependencies:
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/init@3.5.1(typescript@5.4.5)':
+ '@lerna-lite/init@3.9.3(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
fs-extra: 11.2.0
p-map: 7.0.2
- write-json-file: 5.0.0
+ write-json-file: 6.0.0
transitivePeerDependencies:
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/profiler@3.5.1(typescript@5.4.5)':
+ '@lerna-lite/npmlog@3.9.3':
+ dependencies:
+ aproba: 2.0.0
+ color-support: 1.1.3
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ set-blocking: 2.0.0
+ signal-exit: 4.1.0
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+ wide-align: 1.1.5
+
+ '@lerna-lite/profiler@3.9.3(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/npmlog': 3.9.3
fs-extra: 11.2.0
- npmlog: 7.0.1
upath: 2.0.1
transitivePeerDependencies:
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5)':
+ '@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/cli': 3.5.1(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(@lerna-lite/version@3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5)
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
- '@lerna-lite/version': 3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5)
- byte-size: 8.1.1
- chalk: 5.3.0
+ '@lerna-lite/cli': 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/version@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/npmlog': 3.9.3
+ '@lerna-lite/version': 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
+ '@npmcli/arborist': 7.5.4
+ '@npmcli/package-json': 5.2.1
+ byte-size: 9.0.0
columnify: 1.6.0
fs-extra: 11.2.0
- glob: 10.4.1
has-unicode: 2.0.1
libnpmaccess: 8.0.6
libnpmpublish: 9.0.9
normalize-path: 3.0.0
- npm-package-arg: 11.0.2
- npm-packlist: 5.1.3
- npm-registry-fetch: 17.0.1
- npmlog: 7.0.1
+ npm-package-arg: 11.0.3
+ npm-packlist: 8.0.2
+ npm-registry-fetch: 17.1.0
p-map: 7.0.2
p-pipe: 4.0.0
pacote: 18.0.6
- pify: 6.1.0
- read-package-json: 7.0.1
- semver: 7.6.2
- ssri: 10.0.6
+ semver: 7.6.3
+ ssri: 11.0.0
tar: 6.2.1
temp-dir: 3.0.0
+ tinyglobby: 0.2.9
+ tinyrainbow: 1.2.0
transitivePeerDependencies:
- '@lerna-lite/exec'
- '@lerna-lite/list'
- '@lerna-lite/run'
- '@lerna-lite/watch'
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5)':
+ '@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/cli': 3.5.1(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(@lerna-lite/version@3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5)
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
- '@lerna-lite/filter-packages': 3.5.1(typescript@5.4.5)
- '@lerna-lite/profiler': 3.5.1(typescript@5.4.5)
- chalk: 5.3.0
+ '@lerna-lite/cli': 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/version@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/filter-packages': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/npmlog': 3.9.3
+ '@lerna-lite/profiler': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
fs-extra: 11.2.0
- npmlog: 7.0.1
p-map: 7.0.2
+ tinyrainbow: 1.2.0
transitivePeerDependencies:
- '@lerna-lite/exec'
- '@lerna-lite/list'
- '@lerna-lite/publish'
- '@lerna-lite/version'
- '@lerna-lite/watch'
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@lerna-lite/version@3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5)':
+ '@lerna-lite/version@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/cli': 3.5.1(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(@lerna-lite/version@3.5.2(@lerna-lite/publish@3.5.2(@lerna-lite/run@3.5.1)(typescript@5.4.5))(@lerna-lite/run@3.5.1(@lerna-lite/publish@3.5.2)(@lerna-lite/version@3.5.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5)
- '@lerna-lite/core': 3.5.1(typescript@5.4.5)
+ '@lerna-lite/cli': 3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/version@3.9.3(@lerna-lite/publish@3.9.3(@lerna-lite/run@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@lerna-lite/run@3.9.3(@lerna-lite/publish@3.9.3)(@lerna-lite/version@3.9.3)(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3))(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/core': 3.9.3(@types/node@20.16.11)(typescript@5.6.3)
+ '@lerna-lite/npmlog': 3.9.3
'@octokit/plugin-enterprise-rest': 6.0.1
- '@octokit/rest': 20.1.1
- chalk: 5.3.0
+ '@octokit/rest': 21.0.2
conventional-changelog-angular: 7.0.0
conventional-changelog-core: 7.0.0
conventional-changelog-writer: 7.0.1
@@ -10852,80 +10932,198 @@ snapshots:
dedent: 1.5.3
fs-extra: 11.2.0
get-stream: 9.0.1
- git-url-parse: 14.0.0
+ git-url-parse: 15.0.0
graceful-fs: 4.2.11
is-stream: 4.0.1
load-json-file: 7.0.1
make-dir: 5.0.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
new-github-release-url: 2.0.0
node-fetch: 3.3.2
- npm-package-arg: 11.0.2
- npmlog: 7.0.1
- p-limit: 5.0.0
+ npm-package-arg: 11.0.3
+ p-limit: 6.1.0
p-map: 7.0.2
p-pipe: 4.0.0
p-reduce: 3.0.0
pify: 6.1.0
- semver: 7.6.2
+ semver: 7.6.3
slash: 5.1.0
temp-dir: 3.0.0
- uuid: 9.0.1
- write-json-file: 5.0.0
+ tinyrainbow: 1.2.0
+ uuid: 10.0.0
+ write-json-file: 6.0.0
transitivePeerDependencies:
- '@lerna-lite/exec'
- '@lerna-lite/list'
- '@lerna-lite/publish'
- '@lerna-lite/run'
- '@lerna-lite/watch'
+ - '@types/node'
- babel-plugin-macros
- bluebird
- supports-color
- typescript
- '@ljharb/through@2.3.13':
+ '@mdx-js/mdx@3.0.1':
dependencies:
- call-bind: 1.0.7
+ '@types/estree': 1.0.6
+ '@types/estree-jsx': 1.0.0
+ '@types/hast': 3.0.4
+ '@types/mdx': 2.0.5
+ collapse-white-space: 2.1.0
+ devlop: 1.1.0
+ estree-util-build-jsx: 3.0.1
+ estree-util-is-identifier-name: 3.0.0
+ estree-util-to-js: 2.0.0
+ estree-walker: 3.0.3
+ hast-util-to-estree: 3.1.0
+ hast-util-to-jsx-runtime: 2.3.1
+ markdown-extensions: 2.0.0
+ periscopic: 3.1.0
+ remark-mdx: 3.0.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ source-map: 0.7.4
+ unified: 11.0.4
+ unist-util-position-from-estree: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.1
+ transitivePeerDependencies:
+ - supports-color
- '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@mdx-js/react@3.0.1(@types/react@18.3.11)(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.5
- '@types/react': 18.3.3
+ '@types/react': 18.3.11
react: 18.3.1
- '@ndelangen/get-tarball@3.0.9':
+ '@mdx-js/rollup@3.0.1(rollup@4.24.0)':
+ dependencies:
+ '@mdx-js/mdx': 3.0.1
+ '@rollup/pluginutils': 5.0.2(rollup@4.24.0)
+ rollup: 4.24.0
+ source-map: 0.7.4
+ vfile: 6.0.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@mui/core-downloads-tracker@5.16.7': {}
+
+ '@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@mui/core-downloads-tracker': 5.16.7
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
+ '@mui/types': 7.2.18(@types/react@18.3.11)
+ '@mui/utils': 5.16.6(@types/react@18.3.11)(react@18.2.0)
+ '@popperjs/core': 2.11.8
+ '@types/react-transition-group': 4.4.11
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-is: 18.3.1
+ react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ optionalDependencies:
+ '@emotion/react': 11.13.3(@types/react@18.3.11)(react@18.2.0)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
+ '@types/react': 18.3.11
+
+ '@mui/private-theming@5.16.6(@types/react@18.3.11)(react@18.2.0)':
dependencies:
- gunzip-maybe: 1.4.2
- pump: 3.0.0
- tar-fs: 2.1.1
+ '@babel/runtime': 7.25.7
+ '@mui/utils': 5.16.6(@types/react@18.3.11)(react@18.2.0)
+ prop-types: 15.8.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.3.11
+
+ '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@emotion/cache': 11.13.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.2.0
+ optionalDependencies:
+ '@emotion/react': 11.13.3(@types/react@18.3.11)(react@18.2.0)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
+
+ '@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@mui/private-theming': 5.16.6(@types/react@18.3.11)(react@18.2.0)
+ '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(react@18.2.0)
+ '@mui/types': 7.2.18(@types/react@18.3.11)
+ '@mui/utils': 5.16.6(@types/react@18.3.11)(react@18.2.0)
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.2.0
+ optionalDependencies:
+ '@emotion/react': 11.13.3(@types/react@18.3.11)(react@18.2.0)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
+ '@types/react': 18.3.11
+
+ '@mui/types@7.2.18(@types/react@18.3.11)':
+ optionalDependencies:
+ '@types/react': 18.3.11
+
+ '@mui/utils@5.16.6(@types/react@18.3.11)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@mui/types': 7.2.18(@types/react@18.3.11)
+ '@types/prop-types': 15.7.13
+ clsx: 2.1.1
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-is: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.11
+
+ '@mui/x-data-grid@6.20.4(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.7
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0))(@types/react@18.3.11)(react@18.2.0)
+ '@mui/utils': 5.16.6(@types/react@18.3.11)(react@18.2.0)
+ clsx: 2.1.1
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ reselect: 4.1.8
+ transitivePeerDependencies:
+ - '@types/react'
- '@next/env@14.2.4': {}
+ '@next/env@14.2.15': {}
- '@next/swc-darwin-arm64@14.2.4':
+ '@next/swc-darwin-arm64@14.2.15':
optional: true
- '@next/swc-darwin-x64@14.2.4':
+ '@next/swc-darwin-x64@14.2.15':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.4':
+ '@next/swc-linux-arm64-gnu@14.2.15':
optional: true
- '@next/swc-linux-arm64-musl@14.2.4':
+ '@next/swc-linux-arm64-musl@14.2.15':
optional: true
- '@next/swc-linux-x64-gnu@14.2.4':
+ '@next/swc-linux-x64-gnu@14.2.15':
optional: true
- '@next/swc-linux-x64-musl@14.2.4':
+ '@next/swc-linux-x64-musl@14.2.15':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.4':
+ '@next/swc-win32-arm64-msvc@14.2.15':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.4':
+ '@next/swc-win32-ia32-msvc@14.2.15':
optional: true
- '@next/swc-win32-x64-msvc@14.2.4':
+ '@next/swc-win32-x64-msvc@14.2.15':
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -10945,11 +11143,52 @@ snapshots:
agent-base: 7.1.0
http-proxy-agent: 7.0.0
https-proxy-agent: 7.0.2
- lru-cache: 10.2.0
+ lru-cache: 10.4.3
socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
+ '@npmcli/arborist@7.5.4':
+ dependencies:
+ '@isaacs/string-locale-compare': 1.1.0
+ '@npmcli/fs': 3.1.1
+ '@npmcli/installed-package-contents': 2.1.0
+ '@npmcli/map-workspaces': 3.0.4
+ '@npmcli/metavuln-calculator': 7.1.1
+ '@npmcli/name-from-folder': 2.0.0
+ '@npmcli/node-gyp': 3.0.0
+ '@npmcli/package-json': 5.2.1
+ '@npmcli/query': 3.1.0
+ '@npmcli/redact': 2.0.0
+ '@npmcli/run-script': 8.1.0
+ bin-links: 4.0.4
+ cacache: 18.0.4
+ common-ancestor-path: 1.0.1
+ hosted-git-info: 7.0.2
+ json-parse-even-better-errors: 3.0.2
+ json-stringify-nice: 1.1.4
+ lru-cache: 10.4.3
+ minimatch: 9.0.4
+ nopt: 7.2.1
+ npm-install-checks: 6.3.0
+ npm-package-arg: 11.0.3
+ npm-pick-manifest: 9.1.0
+ npm-registry-fetch: 17.1.0
+ pacote: 18.0.6
+ parse-conflict-json: 3.0.1
+ proc-log: 4.2.0
+ proggy: 2.0.0
+ promise-all-reject-late: 1.0.1
+ promise-call-limit: 3.0.2
+ read-package-json-fast: 3.0.2
+ semver: 7.6.3
+ ssri: 10.0.6
+ treeverse: 3.0.0
+ walk-up-path: 3.0.1
+ transitivePeerDependencies:
+ - bluebird
+ - supports-color
+
'@npmcli/config@8.1.0':
dependencies:
'@npmcli/map-workspaces': 3.0.4
@@ -10958,12 +11197,16 @@ snapshots:
nopt: 7.2.0
proc-log: 3.0.0
read-package-json-fast: 3.0.2
- semver: 7.6.2
+ semver: 7.6.3
walk-up-path: 3.0.1
'@npmcli/fs@3.1.0':
dependencies:
- semver: 7.6.2
+ semver: 7.6.3
+
+ '@npmcli/fs@3.1.1':
+ dependencies:
+ semver: 7.6.3
'@npmcli/git@4.1.0':
dependencies:
@@ -10973,7 +11216,7 @@ snapshots:
proc-log: 3.0.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.6.2
+ semver: 7.6.3
which: 3.0.1
transitivePeerDependencies:
- bluebird
@@ -10981,12 +11224,12 @@ snapshots:
'@npmcli/git@5.0.3':
dependencies:
'@npmcli/promise-spawn': 7.0.0
- lru-cache: 10.2.0
+ lru-cache: 10.4.3
npm-pick-manifest: 9.0.0
proc-log: 3.0.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.6.2
+ semver: 7.6.3
which: 4.0.0
transitivePeerDependencies:
- bluebird
@@ -10996,26 +11239,54 @@ snapshots:
npm-bundled: 3.0.0
npm-normalize-package-bin: 3.0.1
+ '@npmcli/installed-package-contents@2.1.0':
+ dependencies:
+ npm-bundled: 3.0.0
+ npm-normalize-package-bin: 3.0.1
+
'@npmcli/map-workspaces@3.0.4':
dependencies:
'@npmcli/name-from-folder': 2.0.0
glob: 10.4.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
read-package-json-fast: 3.0.2
+ '@npmcli/metavuln-calculator@7.1.1':
+ dependencies:
+ cacache: 18.0.4
+ json-parse-even-better-errors: 3.0.2
+ pacote: 18.0.6
+ proc-log: 4.2.0
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - bluebird
+ - supports-color
+
'@npmcli/name-from-folder@2.0.0': {}
'@npmcli/node-gyp@3.0.0': {}
'@npmcli/package-json@5.1.0':
+ dependencies:
+ '@npmcli/git': 5.0.3
+ glob: 10.4.1
+ hosted-git-info: 7.0.1
+ json-parse-even-better-errors: 3.0.2
+ normalize-package-data: 6.0.1
+ proc-log: 4.2.0
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - bluebird
+
+ '@npmcli/package-json@5.2.1':
dependencies:
'@npmcli/git': 5.0.3
glob: 10.4.1
hosted-git-info: 7.0.1
json-parse-even-better-errors: 3.0.0
- normalize-package-data: 6.0.0
+ normalize-package-data: 6.0.1
proc-log: 4.2.0
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- bluebird
@@ -11027,6 +11298,10 @@ snapshots:
dependencies:
which: 4.0.0
+ '@npmcli/query@3.1.0':
+ dependencies:
+ postcss-selector-parser: 6.1.2
+
'@npmcli/redact@2.0.0': {}
'@npmcli/run-script@6.0.2':
@@ -11051,352 +11326,247 @@ snapshots:
- bluebird
- supports-color
- '@octokit/auth-token@4.0.0': {}
+ '@octokit/auth-token@5.1.1': {}
- '@octokit/core@5.0.2':
+ '@octokit/core@6.1.2':
dependencies:
- '@octokit/auth-token': 4.0.0
- '@octokit/graphql': 7.0.2
- '@octokit/request': 8.1.6
- '@octokit/request-error': 5.0.1
- '@octokit/types': 12.3.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.1
+ '@octokit/auth-token': 5.1.1
+ '@octokit/graphql': 8.1.1
+ '@octokit/request': 9.1.3
+ '@octokit/request-error': 6.1.5
+ '@octokit/types': 13.5.0
+ before-after-hook: 3.0.2
+ universal-user-agent: 7.0.2
- '@octokit/endpoint@9.0.4':
+ '@octokit/endpoint@10.1.1':
dependencies:
- '@octokit/types': 12.3.0
- universal-user-agent: 6.0.1
+ '@octokit/types': 13.5.0
+ universal-user-agent: 7.0.2
- '@octokit/graphql@7.0.2':
+ '@octokit/graphql@8.1.1':
dependencies:
- '@octokit/request': 8.1.6
- '@octokit/types': 12.3.0
- universal-user-agent: 6.0.1
-
- '@octokit/openapi-types@19.1.0': {}
+ '@octokit/request': 9.1.3
+ '@octokit/types': 13.5.0
+ universal-user-agent: 7.0.2
'@octokit/openapi-types@22.2.0': {}
'@octokit/plugin-enterprise-rest@6.0.1': {}
- '@octokit/plugin-paginate-rest@11.3.1(@octokit/core@5.0.2)':
+ '@octokit/plugin-paginate-rest@11.3.1(@octokit/core@6.1.2)':
dependencies:
- '@octokit/core': 5.0.2
+ '@octokit/core': 6.1.2
'@octokit/types': 13.5.0
- '@octokit/plugin-request-log@4.0.0(@octokit/core@5.0.2)':
+ '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.2)':
dependencies:
- '@octokit/core': 5.0.2
+ '@octokit/core': 6.1.2
- '@octokit/plugin-rest-endpoint-methods@13.2.2(@octokit/core@5.0.2)':
+ '@octokit/plugin-rest-endpoint-methods@13.2.2(@octokit/core@6.1.2)':
dependencies:
- '@octokit/core': 5.0.2
+ '@octokit/core': 6.1.2
'@octokit/types': 13.5.0
- '@octokit/request-error@5.0.1':
- dependencies:
- '@octokit/types': 12.3.0
- deprecation: 2.3.1
- once: 1.4.0
-
- '@octokit/request@8.1.6':
+ '@octokit/request-error@6.1.5':
dependencies:
- '@octokit/endpoint': 9.0.4
- '@octokit/request-error': 5.0.1
- '@octokit/types': 12.3.0
- universal-user-agent: 6.0.1
+ '@octokit/types': 13.5.0
- '@octokit/rest@20.1.1':
+ '@octokit/request@9.1.3':
dependencies:
- '@octokit/core': 5.0.2
- '@octokit/plugin-paginate-rest': 11.3.1(@octokit/core@5.0.2)
- '@octokit/plugin-request-log': 4.0.0(@octokit/core@5.0.2)
- '@octokit/plugin-rest-endpoint-methods': 13.2.2(@octokit/core@5.0.2)
+ '@octokit/endpoint': 10.1.1
+ '@octokit/request-error': 6.1.5
+ '@octokit/types': 13.5.0
+ universal-user-agent: 7.0.2
- '@octokit/types@12.3.0':
+ '@octokit/rest@21.0.2':
dependencies:
- '@octokit/openapi-types': 19.1.0
+ '@octokit/core': 6.1.2
+ '@octokit/plugin-paginate-rest': 11.3.1(@octokit/core@6.1.2)
+ '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.2)
+ '@octokit/plugin-rest-endpoint-methods': 13.2.2(@octokit/core@6.1.2)
'@octokit/types@13.5.0':
dependencies:
'@octokit/openapi-types': 22.2.0
- '@pkgjs/parseargs@0.11.0':
+ '@parcel/watcher-android-arm64@2.4.1':
optional: true
- '@pkgr/core@0.1.0': {}
-
- '@pnpm/config.env-replace@1.1.0': {}
+ '@parcel/watcher-darwin-arm64@2.4.1':
+ optional: true
- '@pnpm/network.ca-file@1.0.2':
- dependencies:
- graceful-fs: 4.2.10
+ '@parcel/watcher-darwin-x64@2.4.1':
+ optional: true
- '@pnpm/npm-conf@2.2.2':
- dependencies:
- '@pnpm/config.env-replace': 1.1.0
- '@pnpm/network.ca-file': 1.0.2
- config-chain: 1.1.13
+ '@parcel/watcher-freebsd-x64@2.4.1':
+ optional: true
- '@radix-ui/primitive@1.0.1':
- dependencies:
- '@babel/runtime': 7.24.7
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
+ optional: true
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ optional: true
- '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
-
- '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- aria-hidden: 1.2.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.3
- '@types/react-dom': 18.3.0
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
+ optional: true
- '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.3
- '@types/react-dom': 18.3.0
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
+ optional: true
- '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ optional: true
- '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.3
- '@types/react-dom': 18.3.0
+ '@parcel/watcher-win32-arm64@2.4.1':
+ optional: true
- '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@parcel/watcher-win32-ia32@2.4.1':
+ optional: true
- '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.3
- '@types/react-dom': 18.3.0
+ '@parcel/watcher-win32-x64@2.4.1':
+ optional: true
- '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@parcel/watcher@2.4.1':
dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ node-addon-api: 7.1.1
optionalDependencies:
- '@types/react': 18.3.3
- '@types/react-dom': 18.3.0
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
- '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.3
- '@types/react-dom': 18.3.0
+ '@pkgjs/parseargs@0.11.0':
+ optional: true
- '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@pkgr/core@0.1.0': {}
- '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@pnpm/config.env-replace@1.1.0': {}
- '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@pnpm/network.ca-file@1.0.2':
dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ graceful-fs: 4.2.10
- '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1)':
+ '@pnpm/npm-conf@2.2.2':
dependencies:
- '@babel/runtime': 7.24.7
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@pnpm/config.env-replace': 1.1.0
+ '@pnpm/network.ca-file': 1.0.2
+ config-chain: 1.1.13
- '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@babel/runtime': 7.24.7
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.3
+ '@polka/url@1.0.0-next.28': {}
- '@rollup/plugin-babel@6.0.4(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@4.18.0)':
+ '@popperjs/core@2.11.8': {}
+
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.25.8)(@types/babel__core@7.20.5)(rollup@4.24.0)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@babel/helper-module-imports': 7.22.5
- '@rollup/pluginutils': 5.0.2(rollup@4.18.0)
+ '@rollup/pluginutils': 5.0.2(rollup@4.24.0)
optionalDependencies:
'@types/babel__core': 7.20.5
- rollup: 4.18.0
+ rollup: 4.24.0
- '@rollup/plugin-commonjs@25.0.8(rollup@4.18.0)':
+ '@rollup/plugin-commonjs@25.0.8(rollup@4.24.0)':
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@4.18.0)
+ '@rollup/pluginutils': 5.0.2(rollup@4.24.0)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
magic-string: 0.30.5
optionalDependencies:
- rollup: 4.18.0
+ rollup: 4.24.0
- '@rollup/plugin-node-resolve@15.2.3(rollup@4.18.0)':
+ '@rollup/plugin-node-resolve@15.3.0(rollup@4.24.0)':
dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@4.18.0)
+ '@rollup/pluginutils': 5.0.2(rollup@4.24.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
- is-builtin-module: 3.2.1
is-module: 1.0.0
- resolve: 1.22.2
- optionalDependencies:
- rollup: 4.18.0
-
- '@rollup/plugin-replace@5.0.7(rollup@3.29.4)':
- dependencies:
- '@rollup/pluginutils': 5.0.2(rollup@3.29.4)
- magic-string: 0.30.5
+ resolve: 1.22.8
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.24.0
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.0.2(rollup@3.29.4)':
+ '@rollup/pluginutils@5.0.2(rollup@4.24.0)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 3.29.4
+ rollup: 4.24.0
- '@rollup/pluginutils@5.0.2(rollup@4.18.0)':
+ '@rollup/pluginutils@5.1.2(rollup@4.24.0)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.18.0
+ rollup: 4.24.0
- '@rollup/rollup-android-arm-eabi@4.18.0':
+ '@rollup/rollup-android-arm-eabi@4.24.0':
optional: true
- '@rollup/rollup-android-arm64@4.18.0':
+ '@rollup/rollup-android-arm64@4.24.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.18.0':
+ '@rollup/rollup-darwin-arm64@4.24.0':
optional: true
- '@rollup/rollup-darwin-x64@4.18.0':
+ '@rollup/rollup-darwin-x64@4.24.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.18.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.24.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.18.0':
+ '@rollup/rollup-linux-arm64-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.18.0':
+ '@rollup/rollup-linux-arm64-musl@4.24.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.18.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.18.0':
+ '@rollup/rollup-linux-s390x-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.18.0':
+ '@rollup/rollup-linux-x64-gnu@4.24.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.18.0':
+ '@rollup/rollup-linux-x64-musl@4.24.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.18.0':
+ '@rollup/rollup-win32-arm64-msvc@4.24.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.18.0':
+ '@rollup/rollup-win32-ia32-msvc@4.24.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.18.0':
+ '@rollup/rollup-win32-x64-msvc@4.24.0':
optional: true
+ '@rtsao/scc@1.1.0': {}
+
'@sec-ant/readable-stream@0.4.1': {}
'@sigstore/bundle@2.2.0':
@@ -11442,8 +11612,6 @@ snapshots:
'@sindresorhus/is@5.4.1': {}
- '@sindresorhus/merge-streams@2.3.0': {}
-
'@sinonjs/commons@3.0.0':
dependencies:
type-detect: 4.0.8
@@ -11454,594 +11622,370 @@ snapshots:
'@stencil/core@4.18.3': {}
- '@storybook/addon-a11y@8.1.9':
+ '@storybook/addon-a11y@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/addon-highlight': 8.1.9
+ '@storybook/addon-highlight': 8.3.5(storybook@8.3.5)
axe-core: 4.7.2
+ storybook: 8.3.5
- '@storybook/addon-actions@8.1.9':
+ '@storybook/addon-actions@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/core-events': 8.1.9
'@storybook/global': 5.0.0
'@types/uuid': 9.0.7
dequal: 2.0.3
polished: 4.2.2
+ storybook: 8.3.5
uuid: 9.0.1
- '@storybook/addon-docs@8.1.9(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.3.2)':
+ '@storybook/addon-docs@8.3.5(storybook@8.3.5)':
dependencies:
- '@babel/core': 7.24.7
- '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1)
- '@storybook/blocks': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/client-logger': 8.1.9
- '@storybook/components': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/csf-plugin': 8.1.9
- '@storybook/csf-tools': 8.1.9
+ '@mdx-js/react': 3.0.1(@types/react@18.3.11)(react@18.3.1)
+ '@storybook/blocks': 8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)
+ '@storybook/csf-plugin': 8.3.5(storybook@8.3.5)
'@storybook/global': 5.0.0
- '@storybook/node-logger': 8.1.9
- '@storybook/preview-api': 8.1.9
- '@storybook/react-dom-shim': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/theming': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/types': 8.1.9
- '@types/react': 18.3.3
+ '@storybook/react-dom-shim': 8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)
+ '@types/react': 18.3.11
fs-extra: 11.2.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
rehype-external-links: 3.0.0
rehype-slug: 6.0.0
+ storybook: 8.3.5
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@types/react-dom'
- - encoding
- - prettier
- - supports-color
- '@storybook/addon-highlight@8.1.9':
+ '@storybook/addon-highlight@8.3.5(storybook@8.3.5)':
dependencies:
'@storybook/global': 5.0.0
+ storybook: 8.3.5
- '@storybook/addon-interactions@8.1.9(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))':
+ '@storybook/addon-interactions@8.3.5(storybook@8.3.5)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.1.9
- '@storybook/test': 8.1.9(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))
- '@storybook/types': 8.1.9
+ '@storybook/instrumenter': 8.3.5(storybook@8.3.5)
+ '@storybook/test': 8.3.5(storybook@8.3.5)
polished: 4.2.2
+ storybook: 8.3.5
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@jest/globals'
- - '@types/bun'
- - '@types/jest'
- - jest
- - vitest
- '@storybook/addon-links@8.1.9(react@18.3.1)':
+ '@storybook/addon-links@8.3.5(react@18.3.1)(storybook@8.3.5)':
dependencies:
- '@storybook/csf': 0.1.7
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
+ storybook: 8.3.5
ts-dedent: 2.2.0
optionalDependencies:
react: 18.3.1
- '@storybook/addon-viewport@8.1.9':
+ '@storybook/addon-viewport@8.3.5(storybook@8.3.5)':
dependencies:
memoizerific: 1.11.3
+ storybook: 8.3.5
- '@storybook/blocks@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/blocks@8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)':
dependencies:
- '@storybook/channels': 8.1.9
- '@storybook/client-logger': 8.1.9
- '@storybook/components': 8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/core-events': 8.1.9
- '@storybook/csf': 0.1.7
- '@storybook/docs-tools': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
+ '@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/preview-api': 8.1.9
- '@storybook/theming': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/types': 8.1.9
+ '@storybook/icons': 1.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/lodash': 4.14.195
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.3.2(react@18.3.1)
+ markdown-to-jsx: 7.5.0(react@18.3.1)
memoizerific: 1.11.3
polished: 4.2.2
react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ storybook: 8.3.5
telejson: 7.2.0
- tocbot: 4.23.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- - encoding
- - prettier
- - supports-color
- '@storybook/builder-manager@8.1.9(encoding@0.1.13)(prettier@3.3.2)':
+ '@storybook/builder-vite@8.3.5(storybook@8.3.5)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))':
dependencies:
- '@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/manager': 8.1.9
- '@storybook/node-logger': 8.1.9
- '@types/ejs': 3.1.2
- '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2)
- browser-assert: 1.2.1
- ejs: 3.1.10
- esbuild: 0.20.2
- esbuild-plugin-alias: 0.2.1
- express: 4.18.2
- fs-extra: 11.2.0
- process: 0.11.10
- util: 0.12.5
- transitivePeerDependencies:
- - encoding
- - prettier
- - supports-color
-
- '@storybook/builder-vite@8.1.9(encoding@0.1.13)(prettier@3.3.2)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))':
- dependencies:
- '@storybook/channels': 8.1.9
- '@storybook/client-logger': 8.1.9
- '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/core-events': 8.1.9
- '@storybook/csf-plugin': 8.1.9
- '@storybook/node-logger': 8.1.9
- '@storybook/preview': 8.1.9
- '@storybook/preview-api': 8.1.9
- '@storybook/types': 8.1.9
+ '@storybook/csf-plugin': 8.3.5(storybook@8.3.5)
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 1.5.2
- express: 4.18.2
+ express: 4.21.1
find-cache-dir: 3.3.2
fs-extra: 11.2.0
magic-string: 0.30.5
+ storybook: 8.3.5
ts-dedent: 2.2.0
- vite: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ vite: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - encoding
- - prettier
- - supports-color
-
- '@storybook/channels@8.1.9':
- dependencies:
- '@storybook/client-logger': 8.1.9
- '@storybook/core-events': 8.1.9
- '@storybook/global': 5.0.0
- telejson: 7.2.0
- tiny-invariant: 1.3.3
-
- '@storybook/cli@8.1.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/types': 7.24.5
- '@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 8.1.9
- '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/core-events': 8.1.9
- '@storybook/core-server': 8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/csf-tools': 8.1.9
- '@storybook/node-logger': 8.1.9
- '@storybook/telemetry': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/types': 8.1.9
- '@types/semver': 7.5.8
- '@yarnpkg/fslib': 2.10.3
- '@yarnpkg/libzip': 2.3.0
- chalk: 4.1.2
- commander: 6.2.1
- cross-spawn: 7.0.3
- detect-indent: 6.1.0
- envinfo: 7.10.0
- execa: 5.1.1
- find-up: 5.0.0
- fs-extra: 11.2.0
- get-npm-tarball-url: 2.0.3
- giget: 1.1.2
- globby: 14.0.1
- jscodeshift: 0.15.1(@babel/preset-env@7.24.7(@babel/core@7.24.7))
- leven: 3.1.0
- ora: 5.4.1
- prettier: 3.3.2
- prompts: 2.4.2
- read-pkg-up: 7.0.1
- semver: 7.6.2
- strip-json-comments: 3.1.1
- tempy: 3.1.0
- tiny-invariant: 1.3.3
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@babel/preset-env'
- - bufferutil
- - encoding
- - react
- - react-dom
- - supports-color
- - utf-8-validate
-
- '@storybook/client-logger@8.1.9':
- dependencies:
- '@storybook/global': 5.0.0
-
- '@storybook/codemod@8.1.9':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
- '@babel/types': 7.24.5
- '@storybook/csf': 0.1.7
- '@storybook/csf-tools': 8.1.9
- '@storybook/node-logger': 8.1.9
- '@storybook/types': 8.1.9
- '@types/cross-spawn': 6.0.6
- cross-spawn: 7.0.3
- globby: 14.0.1
- jscodeshift: 0.15.1(@babel/preset-env@7.24.7(@babel/core@7.24.7))
- lodash: 4.17.21
- prettier: 3.3.2
- recast: 0.23.6
- tiny-invariant: 1.3.3
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@storybook/components@8.1.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
- '@storybook/client-logger': 8.1.9
- '@storybook/csf': 0.1.7
- '@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/theming': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/types': 8.1.9
- memoizerific: 1.11.3
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- util-deprecate: 1.0.2
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
-
- '@storybook/core-common@8.1.9(encoding@0.1.13)(prettier@3.3.2)':
+ '@storybook/components@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/core-events': 8.1.9
- '@storybook/csf-tools': 8.1.9
- '@storybook/node-logger': 8.1.9
- '@storybook/types': 8.1.9
- '@yarnpkg/fslib': 2.10.3
- '@yarnpkg/libzip': 2.3.0
- chalk: 4.1.2
- cross-spawn: 7.0.3
- esbuild: 0.20.2
- esbuild-register: 3.5.0(esbuild@0.20.2)
- execa: 5.1.1
- file-system-cache: 2.3.0
- find-cache-dir: 3.3.2
- find-up: 5.0.0
- fs-extra: 11.2.0
- glob: 10.4.1
- handlebars: 4.7.7
- lazy-universal-dotenv: 4.0.0
- node-fetch: 2.6.12(encoding@0.1.13)
- picomatch: 2.3.1
- pkg-dir: 5.0.0
- prettier-fallback: prettier@3.3.2
- pretty-hrtime: 1.0.3
- resolve-from: 5.0.0
- semver: 7.6.2
- tempy: 3.1.0
- tiny-invariant: 1.3.3
- ts-dedent: 2.2.0
- util: 0.12.5
- optionalDependencies:
- prettier: 3.3.2
- transitivePeerDependencies:
- - encoding
- - supports-color
+ storybook: 8.3.5
- '@storybook/core-events@8.1.9':
+ '@storybook/core@8.3.5':
dependencies:
- '@storybook/csf': 0.1.7
- ts-dedent: 2.2.0
-
- '@storybook/core-server@8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@aw-web-design/x-default-browser': 1.4.126
- '@babel/core': 7.24.7
- '@babel/parser': 7.24.5
- '@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/channels': 8.1.9
- '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/core-events': 8.1.9
- '@storybook/csf': 0.1.7
- '@storybook/csf-tools': 8.1.9
- '@storybook/docs-mdx': 3.1.0-next.0
- '@storybook/global': 5.0.0
- '@storybook/manager': 8.1.9
- '@storybook/manager-api': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/node-logger': 8.1.9
- '@storybook/preview-api': 8.1.9
- '@storybook/telemetry': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/types': 8.1.9
- '@types/detect-port': 1.3.3
- '@types/diff': 5.2.1
- '@types/node': 18.18.14
- '@types/pretty-hrtime': 1.0.1
- '@types/semver': 7.5.8
+ '@storybook/csf': 0.1.11
+ '@types/express': 4.17.21
better-opn: 3.0.2
- chalk: 4.1.2
- cli-table3: 0.6.3
- compression: 1.7.4
- detect-port: 1.5.1
- diff: 5.2.0
- express: 4.18.2
- fs-extra: 11.2.0
- globby: 14.0.1
- lodash: 4.17.21
- open: 8.4.2
- pretty-hrtime: 1.0.3
- prompts: 2.4.2
- read-pkg-up: 7.0.1
+ browser-assert: 1.2.1
+ esbuild: 0.21.5
+ esbuild-register: 3.5.0(esbuild@0.21.5)
+ express: 4.21.1
+ jsdoc-type-pratt-parser: 4.1.0
+ process: 0.11.10
+ recast: 0.23.6
semver: 7.6.2
- telejson: 7.2.0
- tiny-invariant: 1.3.3
- ts-dedent: 2.2.0
util: 0.12.5
- util-deprecate: 1.0.2
- watchpack: 2.4.0
ws: 8.13.0
transitivePeerDependencies:
- bufferutil
- - encoding
- - prettier
- - react
- - react-dom
- supports-color
- utf-8-validate
- '@storybook/csf-plugin@8.1.9':
+ '@storybook/csf-plugin@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/csf-tools': 8.1.9
+ storybook: 8.3.5
unplugin: 1.5.1
- transitivePeerDependencies:
- - supports-color
-
- '@storybook/csf-tools@8.1.9':
- dependencies:
- '@babel/generator': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
- '@storybook/csf': 0.1.7
- '@storybook/types': 8.1.9
- fs-extra: 11.2.0
- recast: 0.23.6
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - supports-color
- '@storybook/csf@0.1.7':
+ '@storybook/csf@0.1.11':
dependencies:
type-fest: 2.19.0
- '@storybook/docs-mdx@3.1.0-next.0': {}
-
- '@storybook/docs-tools@8.1.9(encoding@0.1.13)(prettier@3.3.2)':
- dependencies:
- '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/core-events': 8.1.9
- '@storybook/preview-api': 8.1.9
- '@storybook/types': 8.1.9
- '@types/doctrine': 0.0.3
- assert: 2.1.0
- doctrine: 3.0.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - encoding
- - prettier
- - supports-color
-
'@storybook/global@5.0.0': {}
- '@storybook/icons@1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/icons@1.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@storybook/instrumenter@8.1.9':
+ '@storybook/instrumenter@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/channels': 8.1.9
- '@storybook/client-logger': 8.1.9
- '@storybook/core-events': 8.1.9
'@storybook/global': 5.0.0
- '@storybook/preview-api': 8.1.9
- '@vitest/utils': 1.5.2
+ '@vitest/utils': 2.1.2
+ storybook: 8.3.5
util: 0.12.5
- '@storybook/manager-api@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/manager-api@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/channels': 8.1.9
- '@storybook/client-logger': 8.1.9
- '@storybook/core-events': 8.1.9
- '@storybook/csf': 0.1.7
- '@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/router': 8.1.9
- '@storybook/theming': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/types': 8.1.9
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- store2: 2.14.2
- telejson: 7.2.0
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - react
- - react-dom
-
- '@storybook/manager@8.1.9': {}
+ storybook: 8.3.5
- '@storybook/node-logger@8.1.9': {}
-
- '@storybook/preview-api@8.1.9':
+ '@storybook/preview-api@8.3.5(storybook@8.3.5)':
dependencies:
- '@storybook/channels': 8.1.9
- '@storybook/client-logger': 8.1.9
- '@storybook/core-events': 8.1.9
- '@storybook/csf': 0.1.7
- '@storybook/global': 5.0.0
- '@storybook/types': 8.1.9
- '@types/qs': 6.9.7
- dequal: 2.0.3
- lodash: 4.17.21
- memoizerific: 1.11.3
- qs: 6.11.2
- tiny-invariant: 1.3.3
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
+ storybook: 8.3.5
- '@storybook/preview@8.1.9': {}
-
- '@storybook/react-dom-shim@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/react-dom-shim@8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)':
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ storybook: 8.3.5
- '@storybook/react-vite@8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))':
+ '@storybook/react-vite@8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))
- '@rollup/pluginutils': 5.0.2(rollup@3.29.4)
- '@storybook/builder-vite': 8.1.9(encoding@0.1.13)(prettier@3.3.2)(typescript@5.4.5)(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))
- '@storybook/node-logger': 8.1.9
- '@storybook/react': 8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
- '@storybook/types': 8.1.9
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))
+ '@rollup/pluginutils': 5.0.2(rollup@4.24.0)
+ '@storybook/builder-vite': 8.3.5(storybook@8.3.5)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))
+ '@storybook/react': 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)
find-up: 5.0.0
magic-string: 0.30.5
react: 18.3.1
react-docgen: 7.0.1
react-dom: 18.3.1(react@18.3.1)
resolve: 1.22.8
+ storybook: 8.3.5
tsconfig-paths: 4.2.0
- vite: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ vite: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
transitivePeerDependencies:
- '@preact/preset-vite'
- - encoding
- - prettier
+ - '@storybook/test'
- rollup
- supports-color
- typescript
- vite-plugin-glimmerx
- '@storybook/react@8.1.9(encoding@0.1.13)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)':
+ '@storybook/react@8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)':
dependencies:
- '@storybook/client-logger': 8.1.9
- '@storybook/docs-tools': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
+ '@storybook/components': 8.3.5(storybook@8.3.5)
'@storybook/global': 5.0.0
- '@storybook/preview-api': 8.1.9
- '@storybook/react-dom-shim': 8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/types': 8.1.9
+ '@storybook/manager-api': 8.3.5(storybook@8.3.5)
+ '@storybook/preview-api': 8.3.5(storybook@8.3.5)
+ '@storybook/react-dom-shim': 8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)
+ '@storybook/theming': 8.3.5(storybook@8.3.5)
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.18.14
+ '@types/node': 22.7.5
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
escodegen: 2.1.0
html-tags: 3.3.1
- lodash: 4.17.21
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
semver: 7.6.2
+ storybook: 8.3.5
ts-dedent: 2.2.0
type-fest: 2.19.0
util-deprecate: 1.0.2
optionalDependencies:
- typescript: 5.4.5
+ '@storybook/test': 8.3.5(storybook@8.3.5)
+ typescript: 5.6.3
+
+ '@storybook/test@8.3.5(storybook@8.3.5)':
+ dependencies:
+ '@storybook/csf': 0.1.11
+ '@storybook/global': 5.0.0
+ '@storybook/instrumenter': 8.3.5(storybook@8.3.5)
+ '@testing-library/dom': 10.4.0
+ '@testing-library/jest-dom': 6.5.0
+ '@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0)
+ '@vitest/expect': 2.0.5
+ '@vitest/spy': 2.0.5
+ storybook: 8.3.5
+ util: 0.12.5
+
+ '@storybook/theming@8.3.5(storybook@8.3.5)':
+ dependencies:
+ storybook: 8.3.5
+
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+
+ '@svgr/babel-preset@8.1.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.25.8)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.25.8)
+
+ '@svgr/core@8.1.0(typescript@5.6.3)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
+ camelcase: 6.3.0
+ cosmiconfig: 8.3.6(typescript@5.6.3)
+ snake-case: 3.0.4
transitivePeerDependencies:
- - encoding
- - prettier
- supports-color
+ - typescript
- '@storybook/router@8.1.9':
+ '@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@storybook/client-logger': 8.1.9
- memoizerific: 1.11.3
- qs: 6.11.2
+ '@babel/types': 7.25.8
+ entities: 4.5.0
- '@storybook/telemetry@8.1.9(encoding@0.1.13)(prettier@3.3.2)':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))':
dependencies:
- '@storybook/client-logger': 8.1.9
- '@storybook/core-common': 8.1.9(encoding@0.1.13)(prettier@3.3.2)
- '@storybook/csf-tools': 8.1.9
- chalk: 4.1.2
- detect-package-manager: 2.0.1
- fetch-retry: 5.0.6
- fs-extra: 11.2.0
- read-pkg-up: 7.0.1
+ '@babel/core': 7.25.8
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.25.8)
+ '@svgr/core': 8.1.0(typescript@5.6.3)
+ '@svgr/hast-util-to-babel-ast': 8.0.0
+ svg-parser: 2.0.4
transitivePeerDependencies:
- - encoding
- - prettier
- supports-color
- '@storybook/test@8.1.9(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))':
- dependencies:
- '@storybook/client-logger': 8.1.9
- '@storybook/core-events': 8.1.9
- '@storybook/instrumenter': 8.1.9
- '@storybook/preview-api': 8.1.9
- '@testing-library/dom': 9.3.4
- '@testing-library/jest-dom': 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))
- '@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
- '@vitest/expect': 1.3.1
- '@vitest/spy': 1.5.2
- util: 0.12.5
- transitivePeerDependencies:
- - '@jest/globals'
- - '@types/bun'
- - '@types/jest'
- - jest
- - vitest
+ '@swc/core-darwin-arm64@1.7.36':
+ optional: true
- '@storybook/theming@8.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1)
- '@storybook/client-logger': 8.1.9
- '@storybook/global': 5.0.0
- memoizerific: 1.11.3
- optionalDependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@swc/core-darwin-x64@1.7.36':
+ optional: true
+
+ '@swc/core-linux-arm-gnueabihf@1.7.36':
+ optional: true
+
+ '@swc/core-linux-arm64-gnu@1.7.36':
+ optional: true
+
+ '@swc/core-linux-arm64-musl@1.7.36':
+ optional: true
+
+ '@swc/core-linux-x64-gnu@1.7.36':
+ optional: true
+
+ '@swc/core-linux-x64-musl@1.7.36':
+ optional: true
+
+ '@swc/core-win32-arm64-msvc@1.7.36':
+ optional: true
- '@storybook/types@8.1.9':
+ '@swc/core-win32-ia32-msvc@1.7.36':
+ optional: true
+
+ '@swc/core-win32-x64-msvc@1.7.36':
+ optional: true
+
+ '@swc/core@1.7.36(@swc/helpers@0.5.5)':
dependencies:
- '@storybook/channels': 8.1.9
- '@types/express': 4.17.17
- file-system-cache: 2.3.0
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.13
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.7.36
+ '@swc/core-darwin-x64': 1.7.36
+ '@swc/core-linux-arm-gnueabihf': 1.7.36
+ '@swc/core-linux-arm64-gnu': 1.7.36
+ '@swc/core-linux-arm64-musl': 1.7.36
+ '@swc/core-linux-x64-gnu': 1.7.36
+ '@swc/core-linux-x64-musl': 1.7.36
+ '@swc/core-win32-arm64-msvc': 1.7.36
+ '@swc/core-win32-ia32-msvc': 1.7.36
+ '@swc/core-win32-x64-msvc': 1.7.36
+ '@swc/helpers': 0.5.5
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
- tslib: 2.6.3
+ tslib: 2.7.0
+
+ '@swc/types@0.1.13':
+ dependencies:
+ '@swc/counter': 0.1.3
'@szmarczak/http-timer@5.0.1':
dependencies:
defer-to-connect: 2.0.1
- '@testing-library/dom@10.1.0':
+ '@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.7
+ '@babel/code-frame': 7.25.7
+ '@babel/runtime': 7.25.7
'@types/aria-query': 5.0.1
aria-query: 5.3.0
chalk: 4.1.2
@@ -12049,49 +11993,29 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/dom@9.3.4':
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/runtime': 7.24.7
- '@types/aria-query': 5.0.1
- aria-query: 5.1.3
- chalk: 4.1.2
- dom-accessibility-api: 0.5.16
- lz-string: 1.5.0
- pretty-format: 27.5.1
-
- '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.2))':
+ '@testing-library/jest-dom@6.5.0':
dependencies:
'@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.24.7
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
lodash: 4.17.21
redent: 3.0.0
- optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.12
- jest: 29.7.0(@types/node@20.14.2)
- '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@15.0.7(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.7
- '@testing-library/dom': 10.1.0
- '@types/react-dom': 18.3.0
+ '@babel/runtime': 7.25.7
+ '@testing-library/dom': 10.4.0
+ '@types/react-dom': 18.3.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
-
- '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)':
- dependencies:
- '@testing-library/dom': 10.1.0
+ '@types/react': 18.3.11
- '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)':
+ '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
dependencies:
- '@testing-library/dom': 9.3.4
+ '@testing-library/dom': 10.4.0
'@tootallnate/once@2.0.0': {}
@@ -12104,91 +12028,82 @@ snapshots:
'@tufjs/models@1.0.4':
dependencies:
'@tufjs/canonical-json': 1.0.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
'@tufjs/models@2.0.0':
dependencies:
'@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
'@types/acorn@4.0.6':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/aria-query@5.0.1': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.20.1
'@types/babel__generator@7.6.4':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.8
'@types/babel__template@7.4.1':
dependencies:
- '@babel/parser': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@types/babel__traverse@7.20.1':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.25.8
'@types/body-parser@1.19.2':
dependencies:
'@types/connect': 3.4.35
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/concat-stream@2.0.0':
dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/connect@3.4.35':
dependencies:
- '@types/node': 20.14.2
-
- '@types/cross-spawn@6.0.6':
- dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/debug@4.1.8':
dependencies:
'@types/ms': 0.7.31
- '@types/detect-port@1.3.3': {}
-
- '@types/diff@5.2.1': {}
-
- '@types/doctrine@0.0.3': {}
-
'@types/doctrine@0.0.9': {}
- '@types/ejs@3.1.2': {}
-
- '@types/emscripten@1.39.10': {}
-
'@types/escodegen@0.0.6': {}
+ '@types/eslint@8.56.10':
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+
'@types/estree-jsx@1.0.0':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/estree@0.0.51': {}
- '@types/estree@1.0.5': {}
+ '@types/estree@1.0.6': {}
'@types/express-serve-static-core@4.17.35':
dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
'@types/send': 0.17.1
- '@types/express@4.17.17':
+ '@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.2
'@types/express-serve-static-core': 4.17.35
@@ -12197,18 +12112,14 @@ snapshots:
'@types/find-cache-dir@3.2.1': {}
- '@types/fs-extra@8.1.5':
- dependencies:
- '@types/node': 20.14.2
-
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/graceful-fs@4.1.6':
dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/hast@2.3.10':
dependencies:
@@ -12216,7 +12127,7 @@ snapshots:
'@types/hast@3.0.4':
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 3.0.2
'@types/http-cache-semantics@4.0.1': {}
@@ -12234,17 +12145,19 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.0
- '@types/jest@29.5.12':
+ '@types/jest@29.5.13':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
'@types/jsdom@20.0.1':
dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/tough-cookie': 4.0.2
parse5: 7.1.2
+ '@types/json-schema@7.0.15': {}
+
'@types/json5@0.0.29': {}
'@types/lodash@4.14.195': {}
@@ -12255,7 +12168,7 @@ snapshots:
'@types/mdast@4.0.3':
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 3.0.2
'@types/mdx@2.0.5': {}
@@ -12269,25 +12182,25 @@ snapshots:
'@types/ms@0.7.31': {}
- '@types/node@18.18.14':
+ '@types/node@20.14.11':
dependencies:
undici-types: 5.26.5
- '@types/node@20.10.1':
+ '@types/node@20.16.11':
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.19.8
- '@types/node@20.14.2':
+ '@types/node@22.7.5':
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.19.8
'@types/normalize-package-data@2.4.1': {}
'@types/normalize-package-data@2.4.4': {}
- '@types/parse5@6.0.3': {}
+ '@types/parse-json@4.0.2': {}
- '@types/pretty-hrtime@1.0.1': {}
+ '@types/prop-types@15.7.13': {}
'@types/prop-types@15.7.5': {}
@@ -12295,11 +12208,15 @@ snapshots:
'@types/range-parser@1.2.4': {}
- '@types/react-dom@18.3.0':
+ '@types/react-dom@18.3.1':
+ dependencies:
+ '@types/react': 18.3.11
+
+ '@types/react-transition-group@4.4.11':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.11
- '@types/react@18.3.3':
+ '@types/react@18.3.11':
dependencies:
'@types/prop-types': 15.7.5
csstype: 3.1.2
@@ -12308,18 +12225,16 @@ snapshots:
'@types/semver-utils@1.1.3': {}
- '@types/semver@7.5.8': {}
-
'@types/send@0.17.1':
dependencies:
'@types/mime': 1.3.2
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/serve-static@1.15.2':
dependencies:
'@types/http-errors': 2.0.1
'@types/mime': 3.0.1
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/stack-utils@2.0.1': {}
@@ -12327,7 +12242,7 @@ snapshots:
'@types/testing-library__jest-dom@5.14.9':
dependencies:
- '@types/jest': 29.5.12
+ '@types/jest': 29.5.13
'@types/tough-cookie@4.0.2': {}
@@ -12345,14 +12260,14 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.0
- '@typescript-eslint/eslint-plugin@7.13.0(@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/eslint-plugin@7.16.1(@typescript-eslint/parser@7.16.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.13.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/scope-manager': 7.13.0
- '@typescript-eslint/type-utils': 7.13.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.13.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.13.0
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 7.16.1(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.16.1
+ '@typescript-eslint/type-utils': 7.16.1(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.16.1(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.16.1
eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.1
@@ -12363,29 +12278,65 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 7.13.0
- '@typescript-eslint/types': 7.13.0
- '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.13.0
- debug: 4.3.4
+ '@eslint-community/regexpp': 4.11.1
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ eslint: 8.57.0
+ graphemer: 1.4.0
+ ignore: 5.3.1
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@7.16.1(eslint@8.57.0)(typescript@5.4.5)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.16.1
+ '@typescript-eslint/types': 7.16.1
+ '@typescript-eslint/typescript-estree': 7.16.1(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.16.1
+ debug: 4.3.7
eslint: 8.57.0
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.13.0':
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.4
+ eslint: 8.57.0
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/scope-manager@7.16.1':
dependencies:
- '@typescript-eslint/types': 7.13.0
- '@typescript-eslint/visitor-keys': 7.13.0
+ '@typescript-eslint/types': 7.16.1
+ '@typescript-eslint/visitor-keys': 7.16.1
- '@typescript-eslint/type-utils@7.13.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/scope-manager@7.18.0':
dependencies:
- '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5)
- '@typescript-eslint/utils': 7.13.0(eslint@8.57.0)(typescript@5.4.5)
- debug: 4.3.4
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+
+ '@typescript-eslint/type-utils@7.16.1(eslint@8.57.0)(typescript@5.4.5)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.16.1(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.16.1(eslint@8.57.0)(typescript@5.4.5)
+ debug: 4.3.7
eslint: 8.57.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
@@ -12393,42 +12344,94 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@7.13.0': {}
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.0)(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ debug: 4.3.7
+ eslint: 8.57.0
+ ts-api-utils: 1.3.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/types@7.16.1': {}
- '@typescript-eslint/typescript-estree@7.13.0(typescript@5.4.5)':
+ '@typescript-eslint/types@7.18.0': {}
+
+ '@typescript-eslint/typescript-estree@7.16.1(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 7.13.0
- '@typescript-eslint/visitor-keys': 7.13.0
- debug: 4.3.4
+ '@typescript-eslint/types': 7.16.1
+ '@typescript-eslint/visitor-keys': 7.16.1
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.4
- semver: 7.6.2
+ minimatch: 9.0.5
+ semver: 7.6.3
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.13.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.7
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.4
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@7.16.1(eslint@8.57.0)(typescript@5.4.5)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@typescript-eslint/scope-manager': 7.16.1
+ '@typescript-eslint/types': 7.16.1
+ '@typescript-eslint/typescript-estree': 7.16.1(typescript@5.4.5)
+ eslint: 8.57.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@typescript-eslint/scope-manager': 7.13.0
- '@typescript-eslint/types': 7.13.0
- '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@7.13.0':
+ '@typescript-eslint/visitor-keys@7.16.1':
+ dependencies:
+ '@typescript-eslint/types': 7.16.1
+ eslint-visitor-keys: 3.4.3
+
+ '@typescript-eslint/visitor-keys@7.18.0':
dependencies:
- '@typescript-eslint/types': 7.13.0
+ '@typescript-eslint/types': 7.18.0
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@utrecht/component-library-css@3.2.0': {}
+ '@utrecht/component-library-css@6.1.0': {}
+
+ '@utrecht/component-library-react@3.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ clsx: 1.2.1
+ lodash.chunk: 4.2.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
'@utrecht/component-library-react@3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -12437,89 +12440,71 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@utrecht/web-component-library-react@2.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@utrecht/web-component-library-react@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@utrecht/web-component-library-stencil': 2.0.0
+ '@utrecht/web-component-library-stencil': 2.1.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@utrecht/web-component-library-stencil@2.0.0':
+ '@utrecht/web-component-library-stencil@2.1.0':
dependencies:
'@stencil/core': 4.18.3
- '@vitejs/plugin-react@4.3.1(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0))':
+ '@vitejs/plugin-react-swc@3.7.1(@swc/helpers@0.5.5)(vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0))':
dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.7)
+ '@swc/core': 1.7.36(@swc/helpers@0.5.5)
+ vite: 5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0)
+ transitivePeerDependencies:
+ - '@swc/helpers'
+
+ '@vitejs/plugin-react@4.3.2(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0))':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.8)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ vite: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@1.3.1':
+ '@vitest/expect@2.0.5':
dependencies:
- '@vitest/spy': 1.3.1
- '@vitest/utils': 1.3.1
- chai: 4.4.1
+ '@vitest/spy': 2.0.5
+ '@vitest/utils': 2.0.5
+ chai: 5.1.1
+ tinyrainbow: 1.2.0
- '@vitest/spy@1.3.1':
+ '@vitest/pretty-format@2.0.5':
dependencies:
- tinyspy: 2.2.1
+ tinyrainbow: 1.2.0
- '@vitest/spy@1.5.2':
+ '@vitest/pretty-format@2.1.2':
dependencies:
- tinyspy: 2.2.1
+ tinyrainbow: 1.2.0
- '@vitest/utils@1.3.1':
+ '@vitest/spy@2.0.5':
dependencies:
- diff-sequences: 29.6.3
- estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
+ tinyspy: 3.0.2
- '@vitest/utils@1.5.2':
+ '@vitest/utils@2.0.5':
dependencies:
- diff-sequences: 29.6.3
+ '@vitest/pretty-format': 2.0.5
estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
+ loupe: 3.1.2
+ tinyrainbow: 1.2.0
- '@web/parse5-utils@2.1.0':
+ '@vitest/utils@2.1.2':
dependencies:
- '@types/parse5': 6.0.3
- parse5: 6.0.1
+ '@vitest/pretty-format': 2.1.2
+ loupe: 3.1.2
+ tinyrainbow: 1.2.0
- '@web/rollup-plugin-html@2.3.0':
+ '@whitespace/storybook-addon-html@6.1.1(prettier@3.3.3)(react-syntax-highlighter@15.5.0(react@18.3.1))':
dependencies:
- '@web/parse5-utils': 2.1.0
- glob: 10.4.1
- html-minifier-terser: 7.2.0
- lightningcss: 1.25.1
- parse5: 6.0.1
- picomatch: 2.3.1
-
- '@whitespace/storybook-addon-html@6.1.1(prettier@3.3.2)(react-syntax-highlighter@15.5.0(react@18.3.1))':
- dependencies:
- prettier: 3.3.2
+ prettier: 3.3.3
react-syntax-highlighter: 15.5.0(react@18.3.1)
- '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.20.2)':
- dependencies:
- esbuild: 0.20.2
- tslib: 2.6.3
-
- '@yarnpkg/fslib@2.10.3':
- dependencies:
- '@yarnpkg/libzip': 2.3.0
- tslib: 1.14.1
-
- '@yarnpkg/libzip@2.3.0':
- dependencies:
- '@types/emscripten': 1.39.10
- tslib: 1.14.1
-
JSONStream@1.3.5:
dependencies:
jsonparse: 1.3.1
@@ -12531,10 +12516,6 @@ snapshots:
abbrev@2.0.0: {}
- abort-controller@3.0.0:
- dependencies:
- event-target-shim: 5.0.1
-
accepts@1.3.8:
dependencies:
mime-types: 2.1.35
@@ -12542,20 +12523,16 @@ snapshots:
acorn-globals@7.0.1:
dependencies:
- acorn: 8.10.0
+ acorn: 8.12.1
acorn-walk: 8.2.0
acorn-jsx@5.3.2(acorn@7.4.1):
dependencies:
acorn: 7.4.1
- acorn-jsx@5.3.2(acorn@8.11.2):
+ acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
- acorn: 8.11.2
-
- acorn-jsx@5.3.2(acorn@8.11.3):
- dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-walk@7.2.0: {}
@@ -12563,31 +12540,25 @@ snapshots:
acorn@7.4.1: {}
- acorn@8.10.0: {}
-
- acorn@8.11.2: {}
-
- acorn@8.11.3: {}
+ acorn@8.12.1: {}
add-stream@1.0.0: {}
- address@1.2.2: {}
-
agent-base@6.0.2:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
agent-base@7.1.0:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
agentkeepalive@4.3.0:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
depd: 2.0.0
humanize-ms: 1.2.1
transitivePeerDependencies:
@@ -12624,9 +12595,9 @@ snapshots:
dependencies:
type-fest: 0.21.3
- ansi-escapes@6.2.0:
+ ansi-escapes@7.0.0:
dependencies:
- type-fest: 3.13.0
+ environment: 1.1.0
ansi-regex@4.1.1: {}
@@ -12651,8 +12622,6 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.1
- app-root-dir@1.0.2: {}
-
aproba@2.0.0: {}
are-we-there-yet@3.0.1:
@@ -12660,32 +12629,19 @@ snapshots:
delegates: 1.0.0
readable-stream: 3.6.2
- are-we-there-yet@4.0.0:
- dependencies:
- delegates: 1.0.0
- readable-stream: 4.4.2
-
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
argparse@2.0.1: {}
- aria-hidden@1.2.4:
- dependencies:
- tslib: 2.6.3
-
- aria-query@5.1.3:
- dependencies:
- deep-equal: 2.2.2
-
aria-query@5.3.0:
dependencies:
dequal: 2.0.3
array-buffer-byte-length@1.0.0:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-array-buffer: 3.0.2
array-buffer-byte-length@1.0.1:
@@ -12699,14 +12655,6 @@ snapshots:
array-ify@1.0.0: {}
- array-includes@3.1.7:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-string: 1.0.7
-
array-includes@3.1.8:
dependencies:
call-bind: 1.0.7
@@ -12729,53 +12677,37 @@ snapshots:
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
- array.prototype.findlastindex@1.2.3:
+ array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.2
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.0
+ es-abstract: 1.23.3
+ es-shim-unscopables: 1.0.2
array.prototype.flatmap@1.3.2:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.0
-
- array.prototype.toreversed@1.1.2:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
- array.prototype.tosorted@1.1.3:
+ array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-shim-unscopables: 1.0.2
- arraybuffer.prototype.slice@1.0.2:
- dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.5
- define-properties: 1.2.0
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-array-buffer: 3.0.2
- is-shared-array-buffer: 1.0.2
-
arraybuffer.prototype.slice@1.0.3:
dependencies:
array-buffer-byte-length: 1.0.1
@@ -12789,28 +12721,20 @@ snapshots:
arrify@1.0.1: {}
- assert@2.1.0:
- dependencies:
- call-bind: 1.0.7
- is-nan: 1.3.2
- object-is: 1.1.5
- object.assign: 4.1.5
- util: 0.12.5
-
- assertion-error@1.1.0: {}
+ assertion-error@2.0.1: {}
ast-types@0.16.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
astral-regex@2.0.0: {}
+ astring@1.9.0: {}
+
async@2.6.4:
dependencies:
lodash: 4.17.21
- async@3.2.4: {}
-
asynckit@0.4.0: {}
available-typed-arrays@1.0.5: {}
@@ -12821,17 +12745,13 @@ snapshots:
axe-core@4.7.2: {}
- babel-core@7.0.0-bridge.0(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
-
- babel-jest@29.7.0(@babel/core@7.24.7):
+ babel-jest@29.7.0(@babel/core@7.25.8):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.24.7)
+ babel-preset-jest: 29.6.3(@babel/core@7.25.8)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12840,7 +12760,7 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -12850,56 +12770,62 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.1
- babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.7):
+ babel-plugin-macros@3.1.0:
+ dependencies:
+ '@babel/runtime': 7.25.7
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
+
+ babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.25.8):
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/core': 7.24.7
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.7)
+ '@babel/compat-data': 7.25.8
+ '@babel/core': 7.25.8
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.25.8)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.8):
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.7)
- core-js-compat: 3.36.1
+ '@babel/core': 7.25.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
+ core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.7):
+ babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.25.8):
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.25.8)
transitivePeerDependencies:
- supports-color
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.7)
-
- babel-preset-jest@29.6.3(@babel/core@7.24.7):
- dependencies:
- '@babel/core': 7.24.7
+ babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.8):
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.8)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.8)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.8)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.8)
+
+ babel-preset-jest@29.6.3(@babel/core@7.25.8):
+ dependencies:
+ '@babel/core': 7.25.8
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8)
bail@2.0.2: {}
@@ -12907,29 +12833,26 @@ snapshots:
balanced-match@2.0.0: {}
- base64-js@1.5.1: {}
-
basic-auth@2.0.1:
dependencies:
safe-buffer: 5.1.2
- before-after-hook@2.2.3: {}
+ before-after-hook@3.0.2: {}
better-opn@3.0.2:
dependencies:
open: 8.4.2
- big-integer@1.6.51: {}
+ bin-links@4.0.4:
+ dependencies:
+ cmd-shim: 6.0.3
+ npm-normalize-package-bin: 3.0.1
+ read-cmd-shim: 4.0.0
+ write-file-atomic: 5.0.1
binary-extensions@2.2.0: {}
- bl@4.1.0:
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
-
- body-parser@1.20.1:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -12939,8 +12862,8 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.1
+ qs: 6.13.0
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
@@ -12970,10 +12893,6 @@ snapshots:
widest-line: 4.0.1
wrap-ansi: 8.1.0
- bplist-parser@0.2.0:
- dependencies:
- big-integer: 1.6.51
-
brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
@@ -12983,10 +12902,6 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
- dependencies:
- fill-range: 7.1.1
-
braces@3.0.3:
dependencies:
fill-range: 7.1.1
@@ -12997,16 +12912,12 @@ snapshots:
browser-assert@1.2.1: {}
- browserify-zlib@0.1.4:
- dependencies:
- pako: 0.2.9
-
- browserslist@4.23.0:
+ browserslist@4.24.0:
dependencies:
- caniuse-lite: 1.0.30001608
- electron-to-chromium: 1.4.731
- node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ caniuse-lite: 1.0.30001668
+ electron-to-chromium: 1.5.36
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.0)
bser@2.1.1:
dependencies:
@@ -13014,32 +12925,20 @@ snapshots:
buffer-from@1.1.2: {}
- buffer@5.7.1:
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
-
- buffer@6.0.3:
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
-
- builtin-modules@3.3.0: {}
-
builtins@5.0.1:
dependencies:
- semver: 7.6.2
+ semver: 7.6.3
busboy@1.6.0:
dependencies:
streamsearch: 1.1.0
- byte-size@8.1.1: {}
-
- bytes@3.0.0: {}
+ byte-size@9.0.0: {}
bytes@3.1.2: {}
+ cac@6.7.14: {}
+
cacache@17.1.3:
dependencies:
'@npmcli/fs': 3.1.0
@@ -13051,8 +12950,8 @@ snapshots:
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 4.0.0
- ssri: 10.0.5
- tar: 6.2.0
+ ssri: 10.0.6
+ tar: 6.2.1
unique-filename: 3.0.0
cacache@18.0.1:
@@ -13060,7 +12959,22 @@ snapshots:
'@npmcli/fs': 3.1.0
fs-minipass: 3.0.2
glob: 10.4.1
- lru-cache: 10.2.0
+ lru-cache: 10.4.3
+ minipass: 7.1.2
+ minipass-collect: 2.0.1
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ p-map: 4.0.0
+ ssri: 10.0.6
+ tar: 6.2.1
+ unique-filename: 3.0.0
+
+ cacache@18.0.4:
+ dependencies:
+ '@npmcli/fs': 3.1.1
+ fs-minipass: 3.0.2
+ glob: 10.4.1
+ lru-cache: 10.4.3
minipass: 7.1.2
minipass-collect: 2.0.1
minipass-flush: 1.0.5
@@ -13083,15 +12997,9 @@ snapshots:
responselike: 3.0.0
call-bind@1.0.2:
- dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.1
-
- call-bind@1.0.5:
dependencies:
function-bind: 1.1.2
- get-intrinsic: 1.2.2
- set-function-length: 1.1.1
+ get-intrinsic: 1.2.4
call-bind@1.0.7:
dependencies:
@@ -13106,7 +13014,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.3
+ tslib: 2.7.0
camelcase-keys@6.2.2:
dependencies:
@@ -13122,30 +13030,28 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001608
+ browserslist: 4.24.0
+ caniuse-lite: 1.0.30001668
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001608: {}
+ caniuse-lite@1.0.30001668: {}
capital-case@1.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
upper-case-first: 2.0.2
ccount@2.0.1: {}
- chai@4.4.1:
+ chai@5.1.1:
dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.3
- deep-eql: 4.1.3
- get-func-name: 2.0.2
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.0.8
+ assertion-error: 2.0.1
+ check-error: 2.1.1
+ deep-eql: 5.0.2
+ loupe: 3.1.2
+ pathval: 2.0.0
chalk@2.4.2:
dependencies:
@@ -13178,7 +13084,7 @@ snapshots:
path-case: 3.0.4
sentence-case: 3.0.4
snake-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
char-regex@1.0.2: {}
@@ -13196,11 +13102,7 @@ snapshots:
character-reference-invalid@2.0.1: {}
- chardet@0.7.0: {}
-
- check-error@1.0.3:
- dependencies:
- get-func-name: 2.0.2
+ check-error@2.1.1: {}
chokidar-cli@3.0.0:
dependencies:
@@ -13212,7 +13114,7 @@ snapshots:
chokidar@3.5.3:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
@@ -13221,7 +13123,9 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chownr@1.1.4: {}
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.2
chownr@2.0.0: {}
@@ -13231,25 +13135,15 @@ snapshots:
cjs-module-lexer@1.2.3: {}
- clean-css@5.3.3:
- dependencies:
- source-map: 0.6.1
-
clean-stack@2.2.0: {}
cli-boxes@2.2.1: {}
cli-boxes@3.0.0: {}
- cli-cursor@3.1.0:
- dependencies:
- restore-cursor: 3.1.0
-
- cli-cursor@4.0.0:
+ cli-cursor@5.0.0:
dependencies:
- restore-cursor: 4.0.0
-
- cli-spinners@2.9.0: {}
+ restore-cursor: 5.1.0
cli-table3@0.6.3:
dependencies:
@@ -13260,7 +13154,7 @@ snapshots:
cli-truncate@4.0.0:
dependencies:
slice-ansi: 5.0.0
- string-width: 7.0.0
+ string-width: 7.2.0
cli-width@4.1.0: {}
@@ -13290,8 +13184,12 @@ snapshots:
clsx@2.1.1: {}
+ cmd-shim@6.0.3: {}
+
co@4.6.0: {}
+ collapse-white-space@2.1.0: {}
+
collect-v8-coverage@1.0.2: {}
color-convert@1.9.3:
@@ -13306,11 +13204,19 @@ snapshots:
color-name@1.1.4: {}
+ color-string@1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+
color-support@1.1.3: {}
- colord@2.9.3: {}
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
- colorette@1.4.0: {}
+ colord@2.9.3: {}
colorette@2.0.20: {}
@@ -13327,18 +13233,20 @@ snapshots:
comma-separated-tokens@1.0.8: {}
+ comma-separated-tokens@2.0.3: {}
+
commander@10.0.1: {}
commander@12.1.0: {}
commander@2.20.3: {}
- commander@6.2.1: {}
-
commander@7.2.0: {}
commander@8.3.0: {}
+ common-ancestor-path@1.0.1: {}
+
commondir@1.0.1: {}
compare-func@2.0.0:
@@ -13346,22 +13254,6 @@ snapshots:
array-ify: 1.0.0
dot-prop: 5.3.0
- compressible@2.0.18:
- dependencies:
- mime-db: 1.52.0
-
- compression@1.7.4:
- dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
- compressible: 2.0.18
- debug: 2.6.9
- on-headers: 1.0.2
- safe-buffer: 5.1.2
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
concat-map@0.0.1: {}
concat-stream@2.0.0:
@@ -13393,7 +13285,7 @@ snapshots:
constant-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
upper-case: 2.0.2
content-disposition@0.5.4:
@@ -13415,7 +13307,7 @@ snapshots:
git-raw-commits: 4.0.0
git-semver-tags: 7.0.1
hosted-git-info: 7.0.1
- normalize-package-data: 6.0.0
+ normalize-package-data: 6.0.1
read-pkg: 8.1.0
read-pkg-up: 10.1.0
@@ -13427,7 +13319,7 @@ snapshots:
handlebars: 4.7.7
json-stringify-safe: 5.0.1
meow: 12.1.1
- semver: 7.6.2
+ semver: 7.6.3
split2: 4.2.0
conventional-commits-filter@4.0.0: {}
@@ -13454,41 +13346,47 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie@0.5.0: {}
+ cookie@0.7.1: {}
- core-js-compat@3.36.1:
+ core-js-compat@3.38.1:
dependencies:
- browserslist: 4.23.0
-
- core-util-is@1.0.3: {}
+ browserslist: 4.24.0
corser@2.0.1: {}
- cosmiconfig@8.3.6(typescript@5.4.5):
+ cosmiconfig@7.1.0:
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+
+ cosmiconfig@8.3.6(typescript@5.6.3):
dependencies:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
- cosmiconfig@9.0.0(typescript@5.4.5):
+ cosmiconfig@9.0.0(typescript@5.6.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
- create-jest@29.7.0(@types/node@20.14.2):
+ create-jest@29.7.0(@types/node@22.7.5):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.14.2)
+ jest-config: 29.7.0(@types/node@22.7.5)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -13497,6 +13395,10 @@ snapshots:
- supports-color
- ts-node
+ cross-env@7.0.3:
+ dependencies:
+ cross-spawn: 7.0.3
+
cross-spawn@6.0.5:
dependencies:
nice-try: 1.0.5
@@ -13515,11 +13417,11 @@ snapshots:
dependencies:
type-fest: 1.4.0
- css-declaration-sorter@6.4.1(postcss@8.4.38):
+ css-declaration-sorter@6.4.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- css-functions-list@3.2.2: {}
+ css-functions-list@3.2.3: {}
css-select@4.3.0:
dependencies:
@@ -13529,15 +13431,33 @@ snapshots:
domutils: 2.8.0
nth-check: 2.1.1
+ css-select@5.1.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ nth-check: 2.1.1
+
css-tree@1.1.3:
dependencies:
mdn-data: 2.0.14
source-map: 0.6.1
+ css-tree@2.2.1:
+ dependencies:
+ mdn-data: 2.0.28
+ source-map-js: 1.2.1
+
css-tree@2.3.1:
dependencies:
mdn-data: 2.0.30
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
+
+ css-tree@3.0.0:
+ dependencies:
+ mdn-data: 2.10.0
+ source-map-js: 1.2.1
css-what@6.1.0: {}
@@ -13545,54 +13465,58 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@5.2.14(postcss@8.4.38):
- dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.38)
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-calc: 8.2.4(postcss@8.4.38)
- postcss-colormin: 5.3.1(postcss@8.4.38)
- postcss-convert-values: 5.1.3(postcss@8.4.38)
- postcss-discard-comments: 5.1.2(postcss@8.4.38)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
- postcss-discard-empty: 5.1.1(postcss@8.4.38)
- postcss-discard-overridden: 5.1.0(postcss@8.4.38)
- postcss-merge-longhand: 5.1.7(postcss@8.4.38)
- postcss-merge-rules: 5.1.4(postcss@8.4.38)
- postcss-minify-font-values: 5.1.0(postcss@8.4.38)
- postcss-minify-gradients: 5.1.1(postcss@8.4.38)
- postcss-minify-params: 5.1.4(postcss@8.4.38)
- postcss-minify-selectors: 5.2.1(postcss@8.4.38)
- postcss-normalize-charset: 5.1.0(postcss@8.4.38)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.38)
- postcss-normalize-positions: 5.1.1(postcss@8.4.38)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38)
- postcss-normalize-string: 5.1.0(postcss@8.4.38)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.38)
- postcss-normalize-url: 5.1.0(postcss@8.4.38)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.38)
- postcss-ordered-values: 5.1.3(postcss@8.4.38)
- postcss-reduce-initial: 5.1.2(postcss@8.4.38)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.38)
- postcss-svgo: 5.1.0(postcss@8.4.38)
- postcss-unique-selectors: 5.1.1(postcss@8.4.38)
-
- cssnano-utils@3.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
- cssnano@5.1.15(postcss@8.4.38):
- dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.38)
+ cssnano-preset-default@5.2.14(postcss@8.4.47):
+ dependencies:
+ css-declaration-sorter: 6.4.1(postcss@8.4.47)
+ cssnano-utils: 3.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-calc: 8.2.4(postcss@8.4.47)
+ postcss-colormin: 5.3.1(postcss@8.4.47)
+ postcss-convert-values: 5.1.3(postcss@8.4.47)
+ postcss-discard-comments: 5.1.2(postcss@8.4.47)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.47)
+ postcss-discard-empty: 5.1.1(postcss@8.4.47)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.47)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.47)
+ postcss-merge-rules: 5.1.4(postcss@8.4.47)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.47)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.47)
+ postcss-minify-params: 5.1.4(postcss@8.4.47)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.47)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.47)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.47)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.47)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.47)
+ postcss-normalize-string: 5.1.0(postcss@8.4.47)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.47)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.47)
+ postcss-normalize-url: 5.1.0(postcss@8.4.47)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.47)
+ postcss-ordered-values: 5.1.3(postcss@8.4.47)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.47)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.47)
+ postcss-svgo: 5.1.0(postcss@8.4.47)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.47)
+
+ cssnano-utils@3.1.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+
+ cssnano@5.1.15(postcss@8.4.47):
+ dependencies:
+ cssnano-preset-default: 5.2.14(postcss@8.4.47)
lilconfig: 2.1.0
- postcss: 8.4.38
+ postcss: 8.4.47
yaml: 1.10.2
csso@4.2.0:
dependencies:
css-tree: 1.1.3
+ csso@5.0.5:
+ dependencies:
+ css-tree: 2.2.1
+
cssom@0.3.8: {}
cssom@0.5.0: {}
@@ -13603,6 +13527,8 @@ snapshots:
csstype@3.1.2: {}
+ csstype@3.1.3: {}
+
dargs@8.1.0: {}
data-uri-to-buffer@4.0.1: {}
@@ -13643,6 +13569,10 @@ snapshots:
dependencies:
ms: 2.1.2
+ debug@4.3.7:
+ dependencies:
+ ms: 2.1.3
+
decamelize-keys@1.1.1:
dependencies:
decamelize: 1.2.0
@@ -13662,56 +13592,22 @@ snapshots:
dedent@1.5.3: {}
- deep-eql@4.1.3:
- dependencies:
- type-detect: 4.0.8
-
- deep-equal@2.2.2:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- isarray: 2.0.5
- object-is: 1.1.5
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.14
+ deep-eql@5.0.2: {}
deep-extend@0.6.0: {}
deep-is@0.1.4: {}
- deepmerge-ts@5.1.0: {}
+ deepmerge-ts@7.1.3: {}
deepmerge@4.3.1: {}
- default-browser-id@3.0.0:
- dependencies:
- bplist-parser: 0.2.0
- untildify: 4.0.0
-
defaults@1.0.4:
dependencies:
clone: 1.0.4
defer-to-connect@2.0.1: {}
- define-data-property@1.1.1:
- dependencies:
- get-intrinsic: 1.2.1
- gopd: 1.0.1
- has-property-descriptors: 1.0.0
-
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
@@ -13722,49 +13618,32 @@ snapshots:
define-properties@1.2.0:
dependencies:
- has-property-descriptors: 1.0.0
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
define-properties@1.2.1:
dependencies:
- define-data-property: 1.1.1
- has-property-descriptors: 1.0.0
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
- defu@6.1.2: {}
-
delayed-stream@1.0.0: {}
delegates@1.0.0: {}
depd@2.0.0: {}
- deprecation@2.3.1: {}
-
dequal@2.0.3: {}
destroy@1.2.0: {}
- detect-indent@6.1.0: {}
-
detect-indent@7.0.1: {}
detect-libc@1.0.3: {}
- detect-newline@3.1.0: {}
-
- detect-node-es@1.1.0: {}
-
- detect-package-manager@2.0.1:
- dependencies:
- execa: 5.1.1
+ detect-libc@2.0.3: {}
- detect-port@1.5.1:
- dependencies:
- address: 1.2.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
+ detect-newline@3.1.0: {}
devlop@1.1.0:
dependencies:
@@ -13772,8 +13651,6 @@ snapshots:
diff-sequences@29.6.3: {}
- diff@5.1.0: {}
-
diff@5.2.0: {}
dir-glob@3.0.1:
@@ -13792,12 +13669,23 @@ snapshots:
dom-accessibility-api@0.6.3: {}
+ dom-helpers@5.2.1:
+ dependencies:
+ '@babel/runtime': 7.25.7
+ csstype: 3.1.3
+
dom-serializer@1.4.1:
dependencies:
domelementtype: 2.3.0
domhandler: 4.3.1
entities: 2.2.0
+ dom-serializer@2.0.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.5.0
+
domelementtype@2.3.0: {}
domexception@4.0.0:
@@ -13808,16 +13696,26 @@ snapshots:
dependencies:
domelementtype: 2.3.0
+ domhandler@5.0.3:
+ dependencies:
+ domelementtype: 2.3.0
+
domutils@2.8.0:
dependencies:
dom-serializer: 1.4.1
domelementtype: 2.3.0
domhandler: 4.3.1
+ domutils@3.1.0:
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
dot-prop@5.3.0:
dependencies:
@@ -13827,30 +13725,17 @@ snapshots:
dependencies:
is-obj: 2.0.0
- dotenv-expand@10.0.0: {}
-
dotenv@16.4.5: {}
duplexer@0.1.1: {}
duplexer@0.1.2: {}
- duplexify@3.7.1:
- dependencies:
- end-of-stream: 1.4.4
- inherits: 2.0.4
- readable-stream: 2.3.8
- stream-shift: 1.0.1
-
eastasianwidth@0.2.0: {}
ee-first@1.1.1: {}
- ejs@3.1.10:
- dependencies:
- jake: 10.8.7
-
- electron-to-chromium@1.4.731: {}
+ electron-to-chromium@1.5.36: {}
emittery@0.13.1: {}
@@ -13864,22 +13749,20 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
optional: true
- end-of-stream@1.4.4:
- dependencies:
- once: 1.4.0
-
entities@2.2.0: {}
entities@4.5.0: {}
env-paths@2.2.1: {}
- envinfo@7.10.0: {}
+ environment@1.1.0: {}
err-code@2.0.3: {}
@@ -13891,17 +13774,17 @@ snapshots:
dependencies:
array-buffer-byte-length: 1.0.0
available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ call-bind: 1.0.7
es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
function.prototype.name: 1.1.5
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
has: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.5
is-array-buffer: 3.0.2
@@ -13912,7 +13795,7 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.10
is-weakref: 1.0.2
- object-inspect: 1.12.3
+ object-inspect: 1.13.1
object-keys: 1.1.1
object.assign: 4.1.4
regexp.prototype.flags: 1.5.0
@@ -13924,92 +13807,6 @@ snapshots:
unbox-primitive: 1.0.2
which-typed-array: 1.1.10
- es-abstract@1.22.3:
- dependencies:
- array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.2
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- es-set-tostringtag: 2.0.1
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.2
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
- internal-slot: 1.0.5
- is-array-buffer: 3.0.2
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.12
- is-weakref: 1.0.2
- object-inspect: 1.13.1
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.1
- safe-array-concat: 1.0.1
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.0
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.13
-
- es-abstract@1.22.5:
- 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
- es-define-property: 1.0.0
- es-errors: 1.3.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.1
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
- is-callable: 1.2.7
- 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.0
- safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
- 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.5
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.14
-
es-abstract@1.23.3:
dependencies:
array-buffer-byte-length: 1.0.1
@@ -14065,18 +13862,6 @@ snapshots:
es-errors@1.3.0: {}
- es-get-iterator@1.1.3:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- 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:
dependencies:
call-bind: 1.0.7
@@ -14102,7 +13887,7 @@ snapshots:
es-set-tostringtag@2.0.1:
dependencies:
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
has: 1.0.3
has-tostringtag: 1.0.0
@@ -14110,15 +13895,11 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
has-tostringtag: 1.0.2
- hasown: 2.0.1
-
- es-shim-unscopables@1.0.0:
- dependencies:
- has: 1.0.3
+ hasown: 2.0.2
es-shim-unscopables@1.0.2:
dependencies:
- hasown: 2.0.1
+ hasown: 2.0.2
es-to-primitive@1.2.1:
dependencies:
@@ -14126,41 +13907,13 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- esbuild-plugin-alias@0.2.1: {}
-
- esbuild-register@3.5.0(esbuild@0.20.2):
+ esbuild-register@3.5.0(esbuild@0.21.5):
dependencies:
- debug: 4.3.4
- esbuild: 0.20.2
+ debug: 4.3.7
+ esbuild: 0.21.5
transitivePeerDependencies:
- supports-color
- esbuild@0.20.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
- '@esbuild/linux-riscv64': 0.20.2
- '@esbuild/linux-s390x': 0.20.2
- '@esbuild/linux-x64': 0.20.2
- '@esbuild/netbsd-x64': 0.20.2
- '@esbuild/openbsd-x64': 0.20.2
- '@esbuild/sunos-x64': 0.20.2
- '@esbuild/win32-arm64': 0.20.2
- '@esbuild/win32-ia32': 0.20.2
- '@esbuild/win32-x64': 0.20.2
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -14187,8 +13940,37 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
+ esbuild@0.23.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.23.1
+ '@esbuild/android-arm': 0.23.1
+ '@esbuild/android-arm64': 0.23.1
+ '@esbuild/android-x64': 0.23.1
+ '@esbuild/darwin-arm64': 0.23.1
+ '@esbuild/darwin-x64': 0.23.1
+ '@esbuild/freebsd-arm64': 0.23.1
+ '@esbuild/freebsd-x64': 0.23.1
+ '@esbuild/linux-arm': 0.23.1
+ '@esbuild/linux-arm64': 0.23.1
+ '@esbuild/linux-ia32': 0.23.1
+ '@esbuild/linux-loong64': 0.23.1
+ '@esbuild/linux-mips64el': 0.23.1
+ '@esbuild/linux-ppc64': 0.23.1
+ '@esbuild/linux-riscv64': 0.23.1
+ '@esbuild/linux-s390x': 0.23.1
+ '@esbuild/linux-x64': 0.23.1
+ '@esbuild/netbsd-x64': 0.23.1
+ '@esbuild/openbsd-arm64': 0.23.1
+ '@esbuild/openbsd-x64': 0.23.1
+ '@esbuild/sunos-x64': 0.23.1
+ '@esbuild/win32-arm64': 0.23.1
+ '@esbuild/win32-ia32': 0.23.1
+ '@esbuild/win32-x64': 0.23.1
+
escalade@3.1.1: {}
+ escalade@3.2.0: {}
+
escape-goat@4.0.0: {}
escape-html@1.0.3: {}
@@ -14214,15 +13996,15 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
eslint-mdx@3.1.5(eslint@8.57.0):
dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint: 8.57.0
espree: 9.6.1
estree-util-visit: 2.0.0
@@ -14230,7 +14012,7 @@ snapshots:
remark-parse: 11.0.0
remark-stringify: 11.0.0
synckit: 0.9.0
- tslib: 2.6.3
+ tslib: 2.7.0
unified: 11.0.4
unified-engine: 11.2.0
unist-util-visit: 5.0.0
@@ -14239,38 +14021,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.0(@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.13.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0):
dependencies:
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.13.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
- hasown: 2.0.0
- is-core-module: 2.13.1
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ hasown: 2.0.2
+ is-core-module: 2.15.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
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
semver: 6.3.1
+ string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.13.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -14296,33 +14080,46 @@ snapshots:
remark-mdx: 3.0.0
remark-parse: 11.0.0
remark-stringify: 11.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
unified: 11.0.4
vfile: 6.0.1
transitivePeerDependencies:
- supports-color
- eslint-plugin-react@7.34.2(eslint@8.57.0):
+ eslint-plugin-qwik@1.9.1(eslint@8.57.0):
+ dependencies:
+ eslint: 8.57.0
+ jsx-ast-utils: 3.3.5
+
+ eslint-plugin-react-hooks@5.0.0(eslint@8.57.0):
+ dependencies:
+ eslint: 8.57.0
+
+ eslint-plugin-react-refresh@0.4.13(eslint@8.57.0):
+ dependencies:
+ eslint: 8.57.0
+
+ eslint-plugin-react@7.37.1(eslint@8.57.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
- array.prototype.toreversed: 1.1.2
- array.prototype.tosorted: 1.1.3
+ array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
eslint: 8.57.0
estraverse: 5.3.0
+ hasown: 2.0.2
jsx-ast-utils: 3.3.4
minimatch: 3.1.2
object.entries: 1.1.8
object.fromentries: 2.0.8
- object.hasown: 1.1.4
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@7.2.2:
dependencies:
@@ -14334,7 +14131,7 @@ snapshots:
eslint@8.57.0:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.10.0
+ '@eslint-community/regexpp': 4.11.1
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.0
'@humanwhocodes/config-array': 0.11.14
@@ -14344,7 +14141,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.7
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -14358,7 +14155,7 @@ snapshots:
glob-parent: 6.0.2
globals: 13.20.0
graphemer: 1.4.0
- ignore: 5.3.0
+ ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -14376,8 +14173,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.11.2
- acorn-jsx: 5.3.2(acorn@8.11.2)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -14392,8 +14189,25 @@ snapshots:
estraverse@5.3.0: {}
+ estree-util-attach-comments@3.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+
+ estree-util-build-jsx@3.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ estree-walker: 3.0.3
+
estree-util-is-identifier-name@3.0.0: {}
+ estree-util-to-js@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.0
+ astring: 1.9.0
+ source-map: 0.7.4
+
estree-util-visit@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.0
@@ -14405,20 +14219,16 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
esutils@2.0.3: {}
etag@1.8.1: {}
- event-target-shim@5.0.1: {}
-
eventemitter3@4.0.7: {}
eventemitter3@5.0.1: {}
- events@3.3.0: {}
-
execa@5.1.1:
dependencies:
cross-spawn: 7.0.3
@@ -14455,34 +14265,34 @@ snapshots:
exponential-backoff@3.1.1: {}
- express@4.18.2:
+ express@4.21.1:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.1
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -14493,12 +14303,6 @@ snapshots:
extend@3.0.2: {}
- external-editor@3.1.0:
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
-
fast-deep-equal@3.1.3: {}
fast-glob@3.3.2:
@@ -14507,7 +14311,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -14529,40 +14333,33 @@ snapshots:
dependencies:
bser: 2.1.1
+ fdir@6.4.0(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
web-streams-polyfill: 3.2.1
- fetch-retry@5.0.6: {}
-
file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
- file-entry-cache@9.0.0:
+ file-entry-cache@9.1.0:
dependencies:
flat-cache: 5.0.0
- file-system-cache@2.3.0:
- dependencies:
- fs-extra: 11.1.1
- ramda: 0.29.0
-
- filelist@1.0.4:
- dependencies:
- minimatch: 5.1.6
-
filesize@6.4.0: {}
fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -14571,18 +14368,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- find-cache-dir@2.1.0:
- dependencies:
- commondir: 1.0.1
- make-dir: 2.1.0
- pkg-dir: 3.0.0
-
find-cache-dir@3.3.2:
dependencies:
commondir: 1.0.1
make-dir: 3.1.0
pkg-dir: 4.2.0
+ find-root@1.1.0: {}
+
find-up@3.0.0:
dependencies:
locate-path: 3.0.0
@@ -14604,7 +14397,7 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.1
keyv: 4.5.4
rimraf: 3.0.2
@@ -14613,12 +14406,8 @@ snapshots:
flatted: 3.3.1
keyv: 4.5.4
- flatted@3.2.9: {}
-
flatted@3.3.1: {}
- flow-parser@0.212.0: {}
-
follow-redirects@1.15.6: {}
for-each@0.3.3:
@@ -14628,7 +14417,7 @@ snapshots:
foreground-child@3.1.1:
dependencies:
cross-spawn: 7.0.3
- signal-exit: 4.0.2
+ signal-exit: 4.1.0
form-data-encoder@2.1.4: {}
@@ -14650,32 +14439,18 @@ snapshots:
fresh@0.5.2: {}
- fs-constants@1.0.0: {}
-
fs-extra@10.1.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
- fs-extra@11.1.1:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
-
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
- fs-extra@8.1.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
-
fs-minipass@2.1.0:
dependencies:
minipass: 3.3.6
@@ -14689,8 +14464,6 @@ snapshots:
fsevents@2.3.3:
optional: true
- function-bind@1.1.1: {}
-
function-bind@1.1.2: {}
function.prototype.name@1.1.5:
@@ -14702,9 +14475,9 @@ snapshots:
function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.0
- es-abstract: 1.22.3
+ call-bind: 1.0.7
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
functions-have-names: 1.2.3
functions-have-names@1.2.3: {}
@@ -14720,42 +14493,15 @@ snapshots:
strip-ansi: 6.0.1
wide-align: 1.1.5
- gauge@5.0.1:
- dependencies:
- aproba: 2.0.0
- color-support: 1.1.3
- console-control-strings: 1.1.0
- has-unicode: 2.0.1
- signal-exit: 4.1.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wide-align: 1.1.5
-
generic-names@4.0.0:
dependencies:
loader-utils: 3.2.1
gensync@1.0.0-beta.2: {}
- get-caller-file@2.0.5: {}
-
- get-east-asian-width@1.2.0: {}
-
- get-func-name@2.0.2: {}
-
- get-intrinsic@1.2.1:
- dependencies:
- function-bind: 1.1.1
- has: 1.0.3
- has-proto: 1.0.1
- has-symbols: 1.0.3
+ get-caller-file@2.0.5: {}
- get-intrinsic@1.2.2:
- dependencies:
- function-bind: 1.1.2
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
+ get-east-asian-width@1.2.0: {}
get-intrinsic@1.2.4:
dependencies:
@@ -14763,11 +14509,7 @@ snapshots:
function-bind: 1.1.2
has-proto: 1.0.3
has-symbols: 1.0.3
- hasown: 2.0.1
-
- get-nonce@1.0.1: {}
-
- get-npm-tarball-url@2.0.3: {}
+ hasown: 2.0.2
get-package-type@0.1.0: {}
@@ -14786,8 +14528,8 @@ snapshots:
get-symbol-description@1.0.0:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
get-symbol-description@1.0.2:
dependencies:
@@ -14795,17 +14537,9 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.2.4
- giget@1.1.2:
+ get-tsconfig@4.8.1:
dependencies:
- colorette: 2.0.20
- defu: 6.1.2
- https-proxy-agent: 5.0.1
- mri: 1.2.0
- node-fetch-native: 1.2.0
- pathe: 1.1.1
- tar: 6.2.1
- transitivePeerDependencies:
- - supports-color
+ resolve-pkg-maps: 1.0.0
git-raw-commits@4.0.0:
dependencies:
@@ -14816,14 +14550,14 @@ snapshots:
git-semver-tags@7.0.1:
dependencies:
meow: 12.1.1
- semver: 7.6.2
+ semver: 7.6.3
git-up@7.0.0:
dependencies:
is-ssh: 1.4.0
parse-url: 8.1.0
- git-url-parse@14.0.0:
+ git-url-parse@15.0.0:
dependencies:
git-up: 7.0.0
@@ -14842,32 +14576,23 @@ snapshots:
'@types/glob': 7.2.0
glob: 7.2.3
- glob-to-regexp@0.4.1: {}
-
- glob@10.3.10:
- dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.3
- minipass: 7.0.4
- path-scurry: 1.10.1
-
- glob@10.3.12:
- dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.4
- minipass: 7.0.4
- path-scurry: 1.10.2
-
glob@10.4.1:
dependencies:
foreground-child: 3.1.1
jackspeak: 3.4.0
- minimatch: 9.0.4
+ minimatch: 9.0.5
minipass: 7.1.2
path-scurry: 1.11.1
+ glob@11.0.0:
+ dependencies:
+ foreground-child: 3.1.1
+ jackspeak: 4.0.2
+ minimatch: 10.0.1
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 2.0.0
+
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -14909,17 +14634,6 @@ snapshots:
dependencies:
define-properties: 1.2.0
- globby@10.0.1:
- dependencies:
- '@types/glob': 7.2.0
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- glob: 7.2.3
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 3.0.0
-
globby@11.1.0:
dependencies:
array-union: 2.1.0
@@ -14929,20 +14643,13 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@14.0.1:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.2
- ignore: 5.3.1
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
-
globjoin@0.1.4: {}
+ globrex@0.1.2: {}
+
gopd@1.0.1:
dependencies:
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
got@12.6.1:
dependencies:
@@ -14964,15 +14671,6 @@ snapshots:
graphemer@1.4.0: {}
- gunzip-maybe@1.4.2:
- dependencies:
- browserify-zlib: 0.1.4
- is-deflate: 1.0.0
- is-gzip: 1.0.0
- peek-stream: 1.1.3
- pumpify: 1.5.1
- through2: 2.0.5
-
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
@@ -14994,16 +14692,10 @@ snapshots:
has-flag@4.0.0: {}
- has-property-descriptors@1.0.0:
- dependencies:
- get-intrinsic: 1.2.1
-
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.0
- has-proto@1.0.1: {}
-
has-proto@1.0.3: {}
has-symbols@1.0.3: {}
@@ -15021,14 +14713,6 @@ snapshots:
has-yarn@3.0.0: {}
has@1.0.3:
- dependencies:
- function-bind: 1.1.1
-
- hasown@2.0.0:
- dependencies:
- function-bind: 1.1.2
-
- hasown@2.0.1:
dependencies:
function-bind: 1.1.2
@@ -15046,10 +14730,55 @@ snapshots:
hast-util-parse-selector@2.2.5: {}
+ hast-util-to-estree@3.1.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/estree-jsx': 1.0.0
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-attach-comments: 3.0.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.0.0
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 0.4.4
+ unist-util-position: 5.0.0
+ zwitch: 2.0.4
+ transitivePeerDependencies:
+ - supports-color
+
+ hast-util-to-jsx-runtime@2.3.1:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.0.0
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 1.0.8
+ unist-util-position: 5.0.0
+ vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+
hast-util-to-string@3.0.0:
dependencies:
'@types/hast': 3.0.4
+ hast-util-whitespace@3.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+
hastscript@6.0.0:
dependencies:
'@types/hast': 2.3.10
@@ -15063,10 +14792,14 @@ snapshots:
header-case@2.0.4:
dependencies:
capital-case: 1.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
highlight.js@10.7.3: {}
+ hoist-non-react-statics@3.3.2:
+ dependencies:
+ react-is: 16.13.1
+
hosted-git-info@2.8.9: {}
hosted-git-info@4.1.0:
@@ -15083,7 +14816,11 @@ snapshots:
hosted-git-info@7.0.1:
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.4.3
+
+ hosted-git-info@7.0.2:
+ dependencies:
+ lru-cache: 10.4.3
html-encoding-sniffer@3.0.0:
dependencies:
@@ -15091,16 +14828,6 @@ snapshots:
html-escaper@2.0.2: {}
- html-minifier-terser@7.2.0:
- dependencies:
- camel-case: 4.1.2
- clean-css: 5.3.3
- commander: 10.0.1
- entities: 4.5.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 5.19.0
-
html-tags@3.3.1: {}
http-cache-semantics@4.1.1: {}
@@ -15117,14 +14844,14 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
http-proxy-agent@7.0.0:
dependencies:
agent-base: 7.1.0
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -15163,14 +14890,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.0
- debug: 4.3.4
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -15182,7 +14909,7 @@ snapshots:
dependencies:
ms: 2.1.3
- husky@9.0.11: {}
+ husky@9.1.6: {}
iconv-lite@0.4.24:
dependencies:
@@ -15194,24 +14921,22 @@ snapshots:
icss-replace-symbols@1.1.0: {}
- icss-utils@5.1.0(postcss@8.4.38):
+ icss-utils@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
-
- ieee754@1.2.1: {}
-
- ignore-walk@5.0.1:
- dependencies:
- minimatch: 5.1.6
+ postcss: 8.4.47
ignore-walk@6.0.4:
dependencies:
- minimatch: 9.0.4
+ minimatch: 9.0.5
ignore@5.3.0: {}
ignore@5.3.1: {}
+ ignore@6.0.2: {}
+
+ imagetools-core@7.0.1: {}
+
immutable@4.3.1: {}
import-cwd@3.0.0:
@@ -15234,6 +14959,11 @@ snapshots:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
+ import-local@3.2.0:
+ dependencies:
+ pkg-dir: 4.2.0
+ resolve-cwd: 3.0.0
+
import-meta-resolve@4.0.0: {}
imurmurhash@0.1.4: {}
@@ -15255,41 +14985,23 @@ snapshots:
ini@4.1.1: {}
- inquirer@9.2.23:
- dependencies:
- '@inquirer/figures': 1.0.3
- '@ljharb/through': 2.3.13
- ansi-escapes: 4.3.2
- chalk: 5.3.0
- cli-cursor: 3.1.0
- cli-width: 4.1.0
- external-editor: 3.1.0
- lodash: 4.17.21
- mute-stream: 1.0.0
- ora: 5.4.1
- run-async: 3.0.0
- rxjs: 7.8.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 6.2.0
+ inline-style-parser@0.1.1: {}
+
+ inline-style-parser@0.2.4: {}
install@0.13.0: {}
internal-slot@1.0.5:
dependencies:
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
has: 1.0.3
side-channel: 1.0.6
internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
- hasown: 2.0.1
- side-channel: 1.0.4
-
- invariant@2.2.4:
- dependencies:
- loose-envify: 1.4.0
+ hasown: 2.0.2
+ side-channel: 1.0.6
ip@2.0.1: {}
@@ -15320,8 +15032,8 @@ snapshots:
is-array-buffer@3.0.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-typed-array: 1.1.10
is-array-buffer@3.0.4:
@@ -15331,6 +15043,8 @@ snapshots:
is-arrayish@0.2.1: {}
+ is-arrayish@0.3.2: {}
+
is-async-function@2.0.0:
dependencies:
has-tostringtag: 1.0.2
@@ -15346,11 +15060,7 @@ snapshots:
is-boolean-object@1.1.2:
dependencies:
call-bind: 1.0.7
- has-tostringtag: 1.0.0
-
- is-builtin-module@3.2.1:
- dependencies:
- builtin-modules: 3.3.0
+ has-tostringtag: 1.0.2
is-callable@1.2.7: {}
@@ -15358,13 +15068,9 @@ snapshots:
dependencies:
ci-info: 3.8.0
- is-core-module@2.12.1:
- dependencies:
- has: 1.0.3
-
- is-core-module@2.13.1:
+ is-core-module@2.15.1:
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.2
is-data-view@1.0.1:
dependencies:
@@ -15378,8 +15084,6 @@ snapshots:
is-decimal@2.0.1: {}
- is-deflate@1.0.0: {}
-
is-docker@2.2.1: {}
is-empty@1.2.0: {}
@@ -15410,8 +15114,6 @@ snapshots:
dependencies:
is-extglob: 2.1.1
- is-gzip@1.0.0: {}
-
is-hexadecimal@1.0.4: {}
is-hexadecimal@2.0.1: {}
@@ -15421,19 +15123,12 @@ snapshots:
global-dirs: 3.0.1
is-path-inside: 3.0.3
- is-interactive@1.0.0: {}
-
is-lambda@1.0.1: {}
is-map@2.0.2: {}
is-module@1.0.0: {}
- is-nan@1.3.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
-
is-negative-zero@2.0.2: {}
is-negative-zero@2.0.3: {}
@@ -15442,7 +15137,7 @@ snapshots:
is-number-object@1.0.7:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -15460,26 +15155,28 @@ snapshots:
dependencies:
isobject: 3.0.1
- is-plain-object@3.0.1: {}
-
is-plain-object@5.0.0: {}
is-potential-custom-element-name@1.0.1: {}
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
+
+ is-reference@3.0.2:
+ dependencies:
+ '@types/estree': 1.0.6
is-regex@1.1.4:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-tostringtag: 1.0.0
is-set@2.0.2: {}
is-shared-array-buffer@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-shared-array-buffer@1.0.3:
dependencies:
@@ -15515,13 +15212,9 @@ snapshots:
gopd: 1.0.1
has-tostringtag: 1.0.0
- is-typed-array@1.1.12:
- dependencies:
- which-typed-array: 1.1.13
-
is-typed-array@1.1.13:
dependencies:
- which-typed-array: 1.1.14
+ which-typed-array: 1.1.15
is-typedarray@1.0.0: {}
@@ -15531,7 +15224,7 @@ snapshots:
is-weakref@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-weakset@2.0.2:
dependencies:
@@ -15544,8 +15237,6 @@ snapshots:
is-yarn-global@0.4.1: {}
- isarray@1.0.0: {}
-
isarray@2.0.5: {}
isexe@2.0.0: {}
@@ -15558,8 +15249,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.24.7
- '@babel/parser': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/parser': 7.25.8
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -15568,11 +15259,11 @@ snapshots:
istanbul-lib-instrument@6.0.1:
dependencies:
- '@babel/core': 7.24.7
- '@babel/parser': 7.24.7
+ '@babel/core': 7.25.8
+ '@babel/parser': 7.25.8
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
@@ -15584,7 +15275,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.0
source-map: 0.6.1
transitivePeerDependencies:
@@ -15601,13 +15292,7 @@ snapshots:
get-intrinsic: 1.2.4
has-symbols: 1.0.3
reflect.getprototypeof: 1.0.4
- set-function-name: 2.0.1
-
- jackspeak@2.3.6:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
+ set-function-name: 2.0.2
jackspeak@3.4.0:
dependencies:
@@ -15615,12 +15300,9 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jake@10.8.7:
+ jackspeak@4.0.2:
dependencies:
- async: 3.2.4
- chalk: 4.1.2
- filelist: 1.0.4
- minimatch: 3.1.2
+ '@isaacs/cliui': 8.0.2
jest-changed-files@29.7.0:
dependencies:
@@ -15634,7 +15316,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -15654,16 +15336,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@20.14.2):
+ jest-cli@29.7.0(@types/node@22.7.5):
dependencies:
'@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.14.2)
+ create-jest: 29.7.0(@types/node@22.7.5)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.14.2)
+ jest-config: 29.7.0(@types/node@22.7.5)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -15673,12 +15355,42 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@20.14.2):
+ jest-config@29.7.0(@types/node@20.16.11):
+ dependencies:
+ '@babel/core': 7.25.8
+ '@jest/test-sequencer': 29.7.0
+ '@jest/types': 29.6.3
+ babel-jest: 29.7.0(@babel/core@7.25.8)
+ chalk: 4.1.2
+ ci-info: 3.8.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-circus: 29.7.0
+ jest-environment-node: 29.7.0
+ jest-get-type: 29.6.3
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-runner: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ micromatch: 4.0.8
+ parse-json: 5.2.0
+ pretty-format: 29.7.0
+ slash: 3.0.0
+ strip-json-comments: 3.1.1
+ optionalDependencies:
+ '@types/node': 20.16.11
+ transitivePeerDependencies:
+ - babel-plugin-macros
+ - supports-color
+
+ jest-config@29.7.0(@types/node@22.7.5):
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.7)
+ babel-jest: 29.7.0(@babel/core@7.25.8)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.1
@@ -15692,13 +15404,13 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 20.14.2
+ '@types/node': 22.7.5
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -15728,7 +15440,7 @@ snapshots:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 20.10.1
+ '@types/node': 20.16.11
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -15742,7 +15454,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -15752,14 +15464,14 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.6
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
@@ -15778,12 +15490,12 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -15791,7 +15503,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -15826,7 +15538,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -15854,7 +15566,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -15874,15 +15586,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.24.7
- '@babel/generator': 7.24.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.7)
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.7)
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.8
+ '@babel/generator': 7.25.7
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.25.8)
+ '@babel/types': 7.25.8
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -15893,14 +15605,14 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
chalk: 4.1.2
ci-info: 3.8.0
graceful-fs: 4.2.11
@@ -15919,7 +15631,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -15928,17 +15640,17 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@20.14.2):
+ jest@29.7.0(@types/node@22.7.5):
dependencies:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@20.14.2)
+ jest-cli: 29.7.0(@types/node@22.7.5)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -15958,37 +15670,12 @@ snapshots:
dependencies:
argparse: 2.0.1
- jscodeshift@0.15.1(@babel/preset-env@7.24.7(@babel/core@7.24.7)):
- dependencies:
- '@babel/core': 7.24.7
- '@babel/parser': 7.24.5
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.7)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.7)
- '@babel/preset-flow': 7.23.3(@babel/core@7.24.7)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7)
- '@babel/register': 7.22.15(@babel/core@7.24.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.7)
- chalk: 4.1.2
- flow-parser: 0.212.0
- graceful-fs: 4.2.11
- micromatch: 4.0.7
- neo-async: 2.6.2
- node-dir: 0.1.17
- recast: 0.23.6
- temp: 0.8.4
- write-file-atomic: 2.4.3
- optionalDependencies:
- '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
- transitivePeerDependencies:
- - supports-color
+ jsdoc-type-pratt-parser@4.1.0: {}
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.10.0
+ acorn: 8.12.1
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -16020,7 +15707,7 @@ snapshots:
jsesc@0.5.0: {}
- jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
json-buffer@3.0.1: {}
@@ -16030,6 +15717,8 @@ snapshots:
json-parse-even-better-errors@3.0.0: {}
+ json-parse-even-better-errors@3.0.2: {}
+
json-parse-helpfulerror@1.0.3:
dependencies:
jju: 1.4.0
@@ -16040,6 +15729,8 @@ snapshots:
json-stable-stringify-without-jsonify@1.0.1: {}
+ json-stringify-nice@1.1.4: {}
+
json-stringify-safe@5.0.1: {}
json5@1.0.2:
@@ -16050,11 +15741,7 @@ snapshots:
jsonc-parser@3.2.0: {}
- jsonc-parser@3.2.1: {}
-
- jsonfile@4.0.0:
- optionalDependencies:
- graceful-fs: 4.2.11
+ jsonc-parser@3.3.1: {}
jsonfile@6.1.0:
dependencies:
@@ -16075,6 +15762,17 @@ snapshots:
object.assign: 4.1.5
object.values: 1.2.0
+ jsx-ast-utils@3.3.5:
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
+
+ just-diff-apply@5.5.0: {}
+
+ just-diff@6.0.2: {}
+
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
@@ -16087,18 +15785,12 @@ snapshots:
known-css-properties@0.29.0: {}
- known-css-properties@0.31.0: {}
+ known-css-properties@0.34.0: {}
latest-version@7.0.0:
dependencies:
package-json: 8.1.1
- lazy-universal-dotenv@4.0.0:
- dependencies:
- app-root-dir: 1.0.2
- dotenv: 16.4.5
- dotenv-expand: 10.0.0
-
leven@3.1.0: {}
levn@0.4.1:
@@ -16106,66 +15798,25 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- libnpmaccess@8.0.6:
- dependencies:
- npm-package-arg: 11.0.2
- npm-registry-fetch: 17.0.1
- transitivePeerDependencies:
- - supports-color
-
- libnpmpublish@9.0.9:
- dependencies:
- ci-info: 4.0.0
- normalize-package-data: 6.0.1
- npm-package-arg: 11.0.2
- npm-registry-fetch: 17.0.1
- proc-log: 4.2.0
- semver: 7.6.2
- sigstore: 2.2.2
- ssri: 10.0.6
- transitivePeerDependencies:
- - supports-color
-
- lightningcss-darwin-arm64@1.25.1:
- optional: true
-
- lightningcss-darwin-x64@1.25.1:
- optional: true
-
- lightningcss-freebsd-x64@1.25.1:
- optional: true
-
- lightningcss-linux-arm-gnueabihf@1.25.1:
- optional: true
-
- lightningcss-linux-arm64-gnu@1.25.1:
- optional: true
-
- lightningcss-linux-arm64-musl@1.25.1:
- optional: true
-
- lightningcss-linux-x64-gnu@1.25.1:
- optional: true
-
- lightningcss-linux-x64-musl@1.25.1:
- optional: true
-
- lightningcss-win32-x64-msvc@1.25.1:
- optional: true
+ libnpmaccess@8.0.6:
+ dependencies:
+ npm-package-arg: 11.0.3
+ npm-registry-fetch: 17.1.0
+ transitivePeerDependencies:
+ - supports-color
- lightningcss@1.25.1:
+ libnpmpublish@9.0.9:
dependencies:
- detect-libc: 1.0.3
- optionalDependencies:
- lightningcss-darwin-arm64: 1.25.1
- lightningcss-darwin-x64: 1.25.1
- lightningcss-freebsd-x64: 1.25.1
- lightningcss-linux-arm-gnueabihf: 1.25.1
- lightningcss-linux-arm64-gnu: 1.25.1
- lightningcss-linux-arm64-musl: 1.25.1
- lightningcss-linux-x64-gnu: 1.25.1
- lightningcss-linux-x64-musl: 1.25.1
- lightningcss-win32-x64-msvc: 1.25.1
+ ci-info: 4.0.0
+ normalize-package-data: 6.0.1
+ npm-package-arg: 11.0.3
+ npm-registry-fetch: 17.1.0
+ proc-log: 4.2.0
+ semver: 7.6.3
+ sigstore: 2.2.2
+ ssri: 10.0.6
+ transitivePeerDependencies:
+ - supports-color
lilconfig@2.1.0: {}
@@ -16179,27 +15830,27 @@ snapshots:
dependencies:
uc.micro: 2.1.0
- lint-staged@15.2.7:
+ lint-staged@15.2.10:
dependencies:
chalk: 5.3.0
commander: 12.1.0
- debug: 4.3.4
+ debug: 4.3.7
execa: 8.0.1
lilconfig: 3.1.2
- listr2: 8.2.1
- micromatch: 4.0.7
+ listr2: 8.2.5
+ micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.4.5
+ yaml: 2.5.1
transitivePeerDependencies:
- supports-color
- listr2@8.2.1:
+ listr2@8.2.5:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
eventemitter3: 5.0.1
- log-update: 6.0.0
+ log-update: 6.1.0
rfdc: 1.4.1
wrap-ansi: 9.0.0
@@ -16259,10 +15910,10 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- log-update@6.0.0:
+ log-update@6.1.0:
dependencies:
- ansi-escapes: 6.2.0
- cli-cursor: 4.0.0
+ ansi-escapes: 7.0.0
+ cli-cursor: 5.0.0
slice-ansi: 7.1.0
strip-ansi: 7.1.0
wrap-ansi: 9.0.0
@@ -16273,13 +15924,11 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@2.3.7:
- dependencies:
- get-func-name: 2.0.2
+ loupe@3.1.2: {}
lower-case@2.0.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
lowercase-keys@3.0.0: {}
@@ -16288,7 +15937,9 @@ snapshots:
fault: 1.0.4
highlight.js: 10.7.3
- lru-cache@10.2.0: {}
+ lru-cache@10.4.3: {}
+
+ lru-cache@11.0.1: {}
lru-cache@5.1.1:
dependencies:
@@ -16314,11 +15965,6 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
- make-dir@2.1.0:
- dependencies:
- pify: 4.0.1
- semver: 5.7.2
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
@@ -16341,7 +15987,7 @@ snapshots:
negotiator: 0.6.3
promise-retry: 2.0.1
socks-proxy-agent: 7.0.0
- ssri: 10.0.5
+ ssri: 10.0.6
transitivePeerDependencies:
- supports-color
@@ -16351,7 +15997,7 @@ snapshots:
cacache: 18.0.1
http-cache-semantics: 4.1.1
is-lambda: 1.0.1
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-fetch: 3.0.3
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -16371,6 +16017,8 @@ snapshots:
map-or-similar@1.5.0: {}
+ markdown-extensions@2.0.0: {}
+
markdown-it@14.1.0:
dependencies:
argparse: 2.0.1
@@ -16380,30 +16028,30 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
- markdown-to-jsx@7.3.2(react@18.3.1):
+ markdown-to-jsx@7.5.0(react@18.3.1):
dependencies:
react: 18.3.1
- markdownlint-cli@0.41.0:
+ markdownlint-cli@0.42.0:
dependencies:
commander: 12.1.0
get-stdin: 9.0.0
- glob: 10.4.1
- ignore: 5.3.1
+ glob: 11.0.0
+ ignore: 6.0.2
js-yaml: 4.1.0
- jsonc-parser: 3.2.1
+ jsonc-parser: 3.3.1
jsonpointer: 5.0.1
- markdownlint: 0.34.0
- minimatch: 9.0.4
+ markdownlint: 0.35.0
+ minimatch: 10.0.1
run-con: 1.3.2
- smol-toml: 1.2.1
+ smol-toml: 1.3.0
- markdownlint-micromark@0.1.9: {}
+ markdownlint-micromark@0.1.10: {}
- markdownlint@0.34.0:
+ markdownlint@0.35.0:
dependencies:
markdown-it: 14.1.0
- markdownlint-micromark: 0.1.9
+ markdownlint-micromark: 0.1.10
mathml-tag-names@2.1.3: {}
@@ -16489,6 +16137,18 @@ snapshots:
'@types/mdast': 4.0.3
unist-util-is: 6.0.0
+ mdast-util-to-hast@13.2.0:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.3
+ '@ungap/structured-clone': 1.2.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.1
+
mdast-util-to-markdown@2.1.0:
dependencies:
'@types/mdast': 4.0.3
@@ -16508,8 +16168,12 @@ snapshots:
mdn-data@2.0.14: {}
+ mdn-data@2.0.28: {}
+
mdn-data@2.0.30: {}
+ mdn-data@2.10.0: {}
+
mdurl@2.0.0: {}
media-typer@0.3.0: {}
@@ -16539,7 +16203,7 @@ snapshots:
type-fest: 0.18.1
yargs-parser: 20.2.9
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -16568,7 +16232,7 @@ snapshots:
micromark-extension-mdx-expression@3.0.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-factory-mdx-expression: 2.0.1
micromark-factory-space: 2.0.0
@@ -16580,7 +16244,7 @@ snapshots:
micromark-extension-mdx-jsx@3.0.0:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
micromark-factory-mdx-expression: 2.0.1
@@ -16596,7 +16260,7 @@ snapshots:
micromark-extension-mdxjs-esm@3.0.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
micromark-util-character: 2.1.0
@@ -16608,8 +16272,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.0
micromark-extension-mdx-md: 2.0.0
@@ -16632,7 +16296,7 @@ snapshots:
micromark-factory-mdx-expression@2.0.1:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
devlop: 1.1.0
micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
@@ -16696,7 +16360,7 @@ snapshots:
micromark-util-events-to-acorn@2.0.2:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/unist': 3.0.2
devlop: 1.1.0
estree-util-visit: 2.0.0
@@ -16733,7 +16397,7 @@ snapshots:
micromark@2.11.4:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -16741,7 +16405,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.8
- debug: 4.3.4
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
@@ -16765,7 +16429,7 @@ snapshots:
braces: 3.0.3
picomatch: 2.3.1
- micromatch@4.0.7:
+ micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
@@ -16782,12 +16446,18 @@ snapshots:
mimic-fn@4.0.0: {}
+ mimic-function@5.0.1: {}
+
mimic-response@3.1.0: {}
mimic-response@4.0.0: {}
min-indent@1.0.1: {}
+ minimatch@10.0.1:
+ dependencies:
+ brace-expansion: 2.0.1
+
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
@@ -16796,11 +16466,11 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.3:
+ minimatch@9.0.4:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.4:
+ minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -16853,8 +16523,6 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.0.4: {}
-
minipass@7.1.2: {}
minizlib@2.1.2:
@@ -16862,8 +16530,6 @@ snapshots:
minipass: 3.3.6
yallist: 4.0.0
- mkdirp-classic@0.5.3: {}
-
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
@@ -16872,6 +16538,8 @@ snapshots:
mri@1.2.0: {}
+ mrmime@2.0.0: {}
+
ms@2.0.0: {}
ms@2.1.2: {}
@@ -16882,9 +16550,9 @@ snapshots:
dependencies:
array-differ: 4.0.0
array-union: 3.0.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
- mute-stream@1.0.0: {}
+ mute-stream@2.0.0: {}
nanoid@3.3.7: {}
@@ -16898,28 +16566,28 @@ snapshots:
dependencies:
type-fest: 2.19.0
- next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.5):
+ next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.79.5):
dependencies:
- '@next/env': 14.2.4
+ '@next/env': 14.2.15
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001608
+ caniuse-lite: 1.0.30001668
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.24.7)(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.25.8)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.4
- '@next/swc-darwin-x64': 14.2.4
- '@next/swc-linux-arm64-gnu': 14.2.4
- '@next/swc-linux-arm64-musl': 14.2.4
- '@next/swc-linux-x64-gnu': 14.2.4
- '@next/swc-linux-x64-musl': 14.2.4
- '@next/swc-win32-arm64-msvc': 14.2.4
- '@next/swc-win32-ia32-msvc': 14.2.4
- '@next/swc-win32-x64-msvc': 14.2.4
- sass: 1.77.5
+ '@next/swc-darwin-arm64': 14.2.15
+ '@next/swc-darwin-x64': 14.2.15
+ '@next/swc-linux-arm64-gnu': 14.2.15
+ '@next/swc-linux-arm64-musl': 14.2.15
+ '@next/swc-linux-x64-gnu': 14.2.15
+ '@next/swc-linux-x64-musl': 14.2.15
+ '@next/swc-win32-arm64-msvc': 14.2.15
+ '@next/swc-win32-ia32-msvc': 14.2.15
+ '@next/swc-win32-x64-msvc': 14.2.15
+ sass: 1.79.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -16929,22 +16597,12 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.3
+ tslib: 2.7.0
- node-dir@0.1.17:
- dependencies:
- minimatch: 3.1.2
+ node-addon-api@7.1.1: {}
node-domexception@1.0.0: {}
- node-fetch-native@1.2.0: {}
-
- node-fetch@2.6.12(encoding@0.1.13):
- dependencies:
- whatwg-url: 5.0.0
- optionalDependencies:
- encoding: 0.1.13
-
node-fetch@3.3.2:
dependencies:
data-uri-to-buffer: 4.0.1
@@ -16960,7 +16618,7 @@ snapshots:
make-fetch-happen: 13.0.0
nopt: 7.2.0
proc-log: 3.0.0
- semver: 7.6.2
+ semver: 7.6.3
tar: 6.2.1
which: 4.0.0
transitivePeerDependencies:
@@ -16976,15 +16634,15 @@ snapshots:
nopt: 6.0.0
npmlog: 6.0.2
rimraf: 3.0.2
- semver: 7.6.2
- tar: 6.2.0
+ semver: 7.6.3
+ tar: 6.2.1
which: 2.0.2
transitivePeerDependencies:
- supports-color
node-int64@0.4.0: {}
- node-releases@2.0.14: {}
+ node-releases@2.0.18: {}
nopt@6.0.0:
dependencies:
@@ -16994,6 +16652,10 @@ snapshots:
dependencies:
abbrev: 2.0.0
+ nopt@7.2.1:
+ dependencies:
+ abbrev: 2.0.0
+
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
@@ -17004,29 +16666,22 @@ snapshots:
normalize-package-data@3.0.3:
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.13.1
- semver: 7.6.2
+ is-core-module: 2.15.1
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-package-data@5.0.0:
dependencies:
hosted-git-info: 6.1.1
- is-core-module: 2.13.1
- semver: 7.6.2
- validate-npm-package-license: 3.0.4
-
- normalize-package-data@6.0.0:
- dependencies:
- hosted-git-info: 7.0.1
- is-core-module: 2.13.1
- semver: 7.6.2
+ is-core-module: 2.15.1
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-package-data@6.0.1:
dependencies:
hosted-git-info: 7.0.1
- is-core-module: 2.13.1
- semver: 7.6.2
+ is-core-module: 2.15.1
+ semver: 7.6.3
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -17035,10 +16690,6 @@ snapshots:
normalize-url@8.0.0: {}
- npm-bundled@2.0.1:
- dependencies:
- npm-normalize-package-bin: 2.0.0
-
npm-bundled@3.0.0:
dependencies:
npm-normalize-package-bin: 3.0.1
@@ -17069,7 +16720,7 @@ snapshots:
prompts-ncu: 3.0.0
rc-config-loader: 4.1.3
remote-git-tags: 3.0.0
- rimraf: 5.0.7
+ rimraf: 5.0.10
semver: 7.6.0
semver-utils: 1.1.4
source-map-support: 0.5.21
@@ -17084,9 +16735,7 @@ snapshots:
npm-install-checks@6.3.0:
dependencies:
- semver: 7.6.2
-
- npm-normalize-package-bin@2.0.0: {}
+ semver: 7.6.3
npm-normalize-package-bin@3.0.1: {}
@@ -17094,22 +16743,22 @@ snapshots:
dependencies:
hosted-git-info: 6.1.1
proc-log: 3.0.0
- semver: 7.6.2
+ semver: 7.6.3
validate-npm-package-name: 5.0.0
- npm-package-arg@11.0.2:
+ npm-package-arg@11.0.3:
dependencies:
hosted-git-info: 7.0.1
proc-log: 4.2.0
- semver: 7.6.2
+ semver: 7.6.3
validate-npm-package-name: 5.0.0
- npm-package-json-lint@7.1.0(typescript@5.4.5):
+ npm-package-json-lint@7.1.0(typescript@5.6.3):
dependencies:
ajv: 6.12.6
ajv-errors: 1.0.1(ajv@6.12.6)
chalk: 4.1.2
- cosmiconfig: 8.3.6(typescript@5.4.5)
+ cosmiconfig: 8.3.6(typescript@5.6.3)
debug: 4.3.4
globby: 11.1.0
ignore: 5.3.0
@@ -17127,13 +16776,6 @@ snapshots:
- supports-color
- typescript
- npm-packlist@5.1.3:
- dependencies:
- glob: 8.1.0
- ignore-walk: 5.0.1
- npm-bundled: 2.0.1
- npm-normalize-package-bin: 2.0.0
-
npm-packlist@7.0.4:
dependencies:
ignore-walk: 6.0.4
@@ -17147,14 +16789,21 @@ snapshots:
npm-install-checks: 6.3.0
npm-normalize-package-bin: 3.0.1
npm-package-arg: 10.1.0
- semver: 7.6.2
+ semver: 7.6.3
npm-pick-manifest@9.0.0:
dependencies:
npm-install-checks: 6.3.0
npm-normalize-package-bin: 3.0.1
- npm-package-arg: 11.0.2
- semver: 7.6.2
+ npm-package-arg: 11.0.3
+ semver: 7.6.3
+
+ npm-pick-manifest@9.1.0:
+ dependencies:
+ npm-install-checks: 6.3.0
+ npm-normalize-package-bin: 3.0.1
+ npm-package-arg: 11.0.3
+ semver: 7.6.3
npm-registry-fetch@14.0.5:
dependencies:
@@ -17168,15 +16817,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- npm-registry-fetch@17.0.1:
+ npm-registry-fetch@17.1.0:
dependencies:
'@npmcli/redact': 2.0.0
+ jsonparse: 1.3.1
make-fetch-happen: 13.0.0
- minipass: 7.0.4
+ minipass: 7.1.2
minipass-fetch: 3.0.3
- minipass-json-stream: 1.0.1
minizlib: 2.1.2
- npm-package-arg: 11.0.2
+ npm-package-arg: 11.0.3
proc-log: 4.2.0
transitivePeerDependencies:
- supports-color
@@ -17201,7 +16850,7 @@ snapshots:
dependencies:
path-key: 4.0.0
- npm@10.8.1: {}
+ npm@10.9.0: {}
npmlog@6.0.2:
dependencies:
@@ -17210,13 +16859,6 @@ snapshots:
gauge: 4.0.4
set-blocking: 2.0.0
- npmlog@7.0.1:
- dependencies:
- are-we-there-yet: 4.0.0
- console-control-strings: 1.1.0
- gauge: 5.0.1
- set-blocking: 2.0.0
-
npx@10.2.2: {}
nth-check@2.1.1:
@@ -17227,20 +16869,13 @@ snapshots:
object-assign@4.1.1: {}
- object-inspect@1.12.3: {}
-
object-inspect@1.13.1: {}
- object-is@1.1.5:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
-
object-keys@1.1.1: {}
object.assign@4.1.4:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
has-symbols: 1.0.3
object-keys: 1.1.1
@@ -17258,12 +16893,6 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.0.0
- object.fromentries@2.0.7:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
-
object.fromentries@2.0.8:
dependencies:
call-bind: 1.0.7
@@ -17271,24 +16900,11 @@ snapshots:
es-abstract: 1.23.3
es-object-atoms: 1.0.0
- object.groupby@1.0.1:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
-
- object.hasown@1.1.4:
+ object.groupby@1.0.3:
dependencies:
+ call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
- es-object-atoms: 1.0.0
-
- object.values@1.1.7:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
object.values@1.2.0:
dependencies:
@@ -17300,8 +16916,6 @@ snapshots:
dependencies:
ee-first: 1.1.1
- on-headers@1.0.2: {}
-
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -17314,6 +16928,10 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ onetime@7.0.0:
+ dependencies:
+ mimic-function: 5.0.1
+
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -17331,20 +16949,6 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- ora@5.4.1:
- dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-spinners: 2.9.0
- is-interactive: 1.0.0
- is-unicode-supported: 0.1.0
- log-symbols: 4.1.0
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
-
- os-tmpdir@1.0.2: {}
-
p-cancelable@3.0.0: {}
p-finally@1.0.0: {}
@@ -17361,9 +16965,9 @@ snapshots:
dependencies:
yocto-queue: 1.0.0
- p-limit@5.0.0:
+ p-limit@6.1.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@3.0.0:
dependencies:
@@ -17409,12 +17013,14 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.1: {}
+
package-json@8.1.1:
dependencies:
got: 12.6.1
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.6.2
+ semver: 7.6.3
pacote@15.1.1:
dependencies:
@@ -17434,8 +17040,8 @@ snapshots:
read-package-json: 6.0.4
read-package-json-fast: 3.0.2
sigstore: 1.7.0
- ssri: 10.0.5
- tar: 6.2.0
+ ssri: 10.0.6
+ tar: 6.2.1
transitivePeerDependencies:
- bluebird
- supports-color
@@ -17458,7 +17064,7 @@ snapshots:
read-package-json: 6.0.4
read-package-json-fast: 3.0.2
sigstore: 1.7.0
- ssri: 10.0.5
+ ssri: 10.0.6
tar: 6.2.1
transitivePeerDependencies:
- bluebird
@@ -17468,16 +17074,16 @@ snapshots:
dependencies:
'@npmcli/git': 5.0.3
'@npmcli/installed-package-contents': 2.0.2
- '@npmcli/package-json': 5.1.0
+ '@npmcli/package-json': 5.2.1
'@npmcli/promise-spawn': 7.0.0
'@npmcli/run-script': 8.1.0
cacache: 18.0.1
fs-minipass: 3.0.2
- minipass: 7.0.4
- npm-package-arg: 11.0.2
+ minipass: 7.1.2
+ npm-package-arg: 11.0.3
npm-packlist: 8.0.2
npm-pick-manifest: 9.0.0
- npm-registry-fetch: 17.0.1
+ npm-registry-fetch: 17.1.0
proc-log: 4.2.0
promise-retry: 2.0.1
sigstore: 2.2.2
@@ -17487,17 +17093,21 @@ snapshots:
- bluebird
- supports-color
- pako@0.2.9: {}
-
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
+ parse-conflict-json@3.0.1:
+ dependencies:
+ json-parse-even-better-errors: 3.0.2
+ just-diff: 6.0.2
+ just-diff-apply: 5.5.0
+
parse-entities@2.0.0:
dependencies:
character-entities: 1.2.4
@@ -17527,24 +17137,24 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@7.1.1:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
error-ex: 1.3.2
- json-parse-even-better-errors: 3.0.0
+ json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.3
type-fest: 3.13.0
parse-json@8.1.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
index-to-position: 0.1.2
- type-fest: 4.8.2
+ type-fest: 4.26.1
parse-path@7.0.0:
dependencies:
@@ -17554,8 +17164,6 @@ snapshots:
dependencies:
parse-path: 7.0.0
- parse5@6.0.1: {}
-
parse5@7.1.2:
dependencies:
entities: 4.5.0
@@ -17565,12 +17173,12 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
path-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
path-exists@3.0.0: {}
@@ -17588,22 +17196,17 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@1.10.1:
+ path-scurry@1.11.1:
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.4.3
minipass: 7.1.2
- path-scurry@1.10.2:
+ path-scurry@2.0.0:
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 11.0.1
minipass: 7.1.2
- path-scurry@1.11.1:
- dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.4
-
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.10: {}
path-type@3.0.0:
dependencies:
@@ -17611,57 +17214,43 @@ snapshots:
path-type@4.0.0: {}
- path-type@5.0.0: {}
+ pathval@2.0.0: {}
- pathe@1.1.1: {}
-
- pathval@1.1.1: {}
-
- peek-stream@1.1.3:
+ periscopic@3.1.0:
dependencies:
- buffer-from: 1.1.2
- duplexify: 3.7.1
- through2: 2.0.5
-
- picocolors@1.0.0: {}
+ '@types/estree': 1.0.6
+ estree-walker: 3.0.3
+ is-reference: 3.0.2
- picocolors@1.0.1: {}
+ picocolors@1.1.0: {}
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pidtree@0.3.1: {}
pidtree@0.6.0: {}
pify@3.0.0: {}
- pify@4.0.1: {}
-
pify@5.0.0: {}
pify@6.1.0: {}
pirates@4.0.6: {}
- pkg-dir@3.0.0:
- dependencies:
- find-up: 3.0.0
-
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
- pkg-dir@5.0.0:
- dependencies:
- find-up: 5.0.0
-
plur@4.0.0:
dependencies:
irregular-plurals: 3.5.0
polished@4.2.2:
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.25.7
portfinder@1.0.32:
dependencies:
@@ -17673,236 +17262,240 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-calc@8.2.4(postcss@8.4.38):
+ postcss-calc@8.2.4(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@5.3.1(postcss@8.4.38):
+ postcss-colormin@5.3.1(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-convert-values@5.1.3(postcss@8.4.38):
+ postcss-convert-values@5.1.3(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
- postcss: 8.4.38
+ browserslist: 4.24.0
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-discard-comments@5.1.2(postcss@8.4.38):
+ postcss-discard-comments@5.1.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-discard-duplicates@5.1.0(postcss@8.4.38):
+ postcss-discard-duplicates@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-discard-duplicates@7.0.0(postcss@8.4.38):
+ postcss-discard-duplicates@7.0.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-discard-empty@5.1.1(postcss@8.4.38):
+ postcss-discard-empty@5.1.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-discard-overridden@5.1.0(postcss@8.4.38):
+ postcss-discard-overridden@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-load-config@3.1.4(postcss@8.4.38):
+ postcss-load-config@3.1.4(postcss@8.4.47):
dependencies:
lilconfig: 2.1.0
yaml: 1.10.2
optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-media-query-parser@0.2.3: {}
- postcss-merge-longhand@5.1.7(postcss@8.4.38):
+ postcss-merge-longhand@5.1.7(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.38)
+ stylehacks: 5.1.1(postcss@8.4.47)
- postcss-merge-rules@5.1.4(postcss@8.4.38):
+ postcss-merge-rules@5.1.4(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ cssnano-utils: 3.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-minify-font-values@5.1.0(postcss@8.4.38):
+ postcss-minify-font-values@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-gradients@5.1.1(postcss@8.4.38):
+ postcss-minify-gradients@5.1.1(postcss@8.4.47):
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-params@5.1.4(postcss@8.4.38):
+ postcss-minify-params@5.1.4(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ browserslist: 4.24.0
+ cssnano-utils: 3.1.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-minify-selectors@5.2.1(postcss@8.4.38):
+ postcss-minify-selectors@5.2.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
+ postcss-modules-extract-imports@3.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-modules-local-by-default@4.0.3(postcss@8.4.38):
+ postcss-modules-local-by-default@4.0.3(postcss@8.4.47):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.0.0(postcss@8.4.38):
+ postcss-modules-scope@3.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-modules-values@4.0.0(postcss@8.4.38):
+ postcss-modules-values@4.0.0(postcss@8.4.47):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
- postcss-modules@4.3.1(postcss@8.4.38):
+ postcss-modules@4.3.1(postcss@8.4.47):
dependencies:
generic-names: 4.0.0
icss-replace-symbols: 1.1.0
lodash.camelcase: 4.3.0
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.38)
- postcss-modules-scope: 3.0.0(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.47)
+ postcss-modules-scope: 3.0.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
string-hash: 1.1.3
- postcss-normalize-charset@5.1.0(postcss@8.4.38):
+ postcss-normalize-charset@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-normalize-display-values@5.1.0(postcss@8.4.38):
+ postcss-normalize-display-values@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-positions@5.1.1(postcss@8.4.38):
+ postcss-normalize-positions@5.1.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@5.1.1(postcss@8.4.38):
+ postcss-normalize-repeat-style@5.1.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-string@5.1.0(postcss@8.4.38):
+ postcss-normalize-string@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@5.1.0(postcss@8.4.38):
+ postcss-normalize-timing-functions@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@5.1.1(postcss@8.4.38):
+ postcss-normalize-unicode@5.1.1(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
- postcss: 8.4.38
+ browserslist: 4.24.0
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-url@5.1.0(postcss@8.4.38):
+ postcss-normalize-url@5.1.0(postcss@8.4.47):
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@5.1.1(postcss@8.4.38):
+ postcss-normalize-whitespace@5.1.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-ordered-values@5.1.3(postcss@8.4.38):
+ postcss-ordered-values@5.1.3(postcss@8.4.47):
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-reduce-initial@5.1.2(postcss@8.4.38):
+ postcss-reduce-initial@5.1.2(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.0
caniuse-api: 3.0.0
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-reduce-transforms@5.1.0(postcss@8.4.38):
+ postcss-reduce-transforms@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-resolve-nested-selector@0.1.1: {}
- postcss-safe-parser@7.0.0(postcss@8.4.38):
+ postcss-resolve-nested-selector@0.1.6: {}
+
+ postcss-safe-parser@7.0.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-scss@4.0.9(postcss@8.4.38):
+ postcss-scss@4.0.9(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-selector-parser@6.1.0:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-sorting@8.0.2(postcss@8.4.38):
+ postcss-sorting@8.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- postcss-svgo@5.1.0(postcss@8.4.38):
+ postcss-svgo@5.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
svgo: 2.8.0
- postcss-unique-selectors@5.1.1(postcss@8.4.38):
+ postcss-unique-selectors@5.1.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
- postcss@8.4.38:
+ postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
+
+ precompress@12.0.5: {}
prelude-ls@1.2.1: {}
- prettier@3.3.2: {}
+ prettier@3.3.3: {}
pretty-format@27.5.1:
dependencies:
@@ -17916,8 +17509,6 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.2.0
- pretty-hrtime@1.0.3: {}
-
prismjs@1.27.0: {}
prismjs@1.29.0: {}
@@ -17926,12 +17517,16 @@ snapshots:
proc-log@4.2.0: {}
- process-nextick-args@2.0.1: {}
-
process@0.11.10: {}
+ proggy@2.0.0: {}
+
progress@2.0.3: {}
+ promise-all-reject-late@1.0.1: {}
+
+ promise-call-limit@3.0.2: {}
+
promise-inflight@1.0.1: {}
promise-retry@2.0.1:
@@ -17961,6 +17556,8 @@ snapshots:
dependencies:
xtend: 4.0.2
+ property-information@6.5.0: {}
+
proto-list@1.2.4: {}
protocols@2.0.1: {}
@@ -17972,22 +17569,6 @@ snapshots:
psl@1.9.0: {}
- pump@2.0.1:
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
-
- pump@3.0.0:
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
-
- pumpify@1.5.1:
- dependencies:
- duplexify: 3.7.1
- inherits: 2.0.4
- pump: 2.0.1
-
punycode.js@2.3.1: {}
punycode@2.3.0: {}
@@ -18002,16 +17583,16 @@ snapshots:
dependencies:
commander: 12.1.0
glob: 10.4.1
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- qs@6.11.0:
+ qs@6.11.2:
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.0.6
- qs@6.11.2:
+ qs@6.13.0:
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.0.6
querystringify@2.2.0: {}
@@ -18021,11 +17602,9 @@ snapshots:
quick-lru@5.1.1: {}
- ramda@0.29.0: {}
-
range-parser@1.2.1: {}
- raw-body@2.5.1:
+ raw-body@2.5.2:
dependencies:
bytes: 3.1.2
http-errors: 2.0.0
@@ -18034,7 +17613,7 @@ snapshots:
rc-config-loader@4.1.3:
dependencies:
- debug: 4.3.4
+ debug: 4.3.7
js-yaml: 4.1.0
json5: 2.2.3
require-from-string: 2.0.2
@@ -18053,15 +17632,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-docgen-typescript@2.2.2(typescript@5.4.5):
+ react-docgen-typescript@2.2.2(typescript@5.6.3):
dependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
react-docgen@7.0.1:
dependencies:
- '@babel/core': 7.24.7
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/core': 7.25.8
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.1
'@types/doctrine': 0.0.9
@@ -18072,6 +17651,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ react-dom@18.2.0(react@18.2.0):
+ dependencies:
+ loose-envify: 1.4.0
+ react: 18.2.0
+ scheduler: 0.23.2
+
react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
@@ -18094,68 +17679,50 @@ snapshots:
react-is@18.2.0: {}
- react-refresh@0.14.2: {}
-
- react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1):
- dependencies:
- react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.3
- optionalDependencies:
- '@types/react': 18.3.3
-
- react-remove-scroll@2.5.5(@types/react@18.3.3)(react@18.3.1):
- dependencies:
- react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.3
+ react-is@18.3.1: {}
- react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1):
- dependencies:
- get-nonce: 1.0.1
- invariant: 2.2.4
- react: 18.3.1
- tslib: 2.6.3
- optionalDependencies:
- '@types/react': 18.3.3
+ react-refresh@0.14.2: {}
react-syntax-highlighter@15.5.0(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.25.7
highlight.js: 10.7.3
lowlight: 1.20.0
prismjs: 1.29.0
react: 18.3.1
refractor: 3.6.0
+ react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@babel/runtime': 7.25.7
+ dom-helpers: 5.2.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ react@18.2.0:
+ dependencies:
+ loose-envify: 1.4.0
+
react@18.3.1:
dependencies:
loose-envify: 1.4.0
+ read-cmd-shim@4.0.0: {}
+
read-package-json-fast@3.0.2:
dependencies:
- json-parse-even-better-errors: 3.0.0
+ json-parse-even-better-errors: 3.0.2
npm-normalize-package-bin: 3.0.1
read-package-json@6.0.4:
dependencies:
glob: 10.4.1
- json-parse-even-better-errors: 3.0.0
+ json-parse-even-better-errors: 3.0.2
normalize-package-data: 5.0.0
npm-normalize-package-bin: 3.0.1
- read-package-json@7.0.1:
- dependencies:
- glob: 10.4.1
- json-parse-even-better-errors: 3.0.0
- normalize-package-data: 6.0.0
- npm-normalize-package-bin: 3.0.1
-
read-pkg-up@10.1.0:
dependencies:
find-up: 6.3.0
@@ -18184,53 +17751,37 @@ snapshots:
read-pkg@8.1.0:
dependencies:
'@types/normalize-package-data': 2.4.4
- normalize-package-data: 6.0.0
+ normalize-package-data: 6.0.1
parse-json: 7.1.1
type-fest: 4.8.2
read-pkg@9.0.1:
dependencies:
'@types/normalize-package-data': 2.4.4
- normalize-package-data: 6.0.0
+ normalize-package-data: 6.0.1
parse-json: 8.1.0
- type-fest: 4.8.2
+ type-fest: 4.26.1
unicorn-magic: 0.1.0
- readable-stream@2.3.8:
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
-
readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- readable-stream@4.4.2:
- dependencies:
- abort-controller: 3.0.0
- buffer: 6.0.3
- events: 3.3.0
- process: 0.11.10
- string_decoder: 1.3.0
-
readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.2: {}
+
recast@0.23.6:
dependencies:
ast-types: 0.16.1
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.6.3
+ tslib: 2.7.0
redent@3.0.0:
dependencies:
@@ -18256,13 +17807,17 @@ snapshots:
dependencies:
regenerate: 1.4.2
+ regenerate-unicode-properties@10.2.0:
+ dependencies:
+ regenerate: 1.4.2
+
regenerate@1.4.2: {}
regenerator-runtime@0.14.0: {}
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.25.7
regexp.prototype.flags@1.5.0:
dependencies:
@@ -18270,12 +17825,6 @@ snapshots:
define-properties: 1.2.0
functions-have-names: 1.2.3
- regexp.prototype.flags@1.5.1:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.0
- set-function-name: 2.0.1
-
regexp.prototype.flags@1.5.2:
dependencies:
call-bind: 1.0.7
@@ -18292,6 +17841,15 @@ snapshots:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
+ regexpu-core@6.1.1:
+ dependencies:
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.11.1
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
+
registry-auth-token@5.0.2:
dependencies:
'@pnpm/npm-conf': 2.2.2
@@ -18300,6 +17858,12 @@ snapshots:
dependencies:
rc: 1.2.8
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.11.1:
+ dependencies:
+ jsesc: 3.0.2
+
regjsparser@0.9.1:
dependencies:
jsesc: 0.5.0
@@ -18321,8 +17885,6 @@ snapshots:
hast-util-to-string: 3.0.0
unist-util-visit: 5.0.0
- relateurl@0.2.7: {}
-
remark-mdx@3.0.0:
dependencies:
mdast-util-mdx: 3.0.0
@@ -18339,6 +17901,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-rehype@11.1.1:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.3
+ mdast-util-to-hast: 13.2.0
+ unified: 11.0.4
+ vfile: 6.0.1
+
remark-stringify@11.0.0:
dependencies:
'@types/mdast': 4.0.3
@@ -18355,6 +17925,8 @@ snapshots:
requires-port@1.0.0: {}
+ reselect@4.1.8: {}
+
resolve-alpn@1.2.1: {}
resolve-cwd@3.0.0:
@@ -18365,23 +17937,19 @@ snapshots:
resolve-from@5.0.0: {}
- resolve.exports@2.0.2: {}
+ resolve-pkg-maps@1.0.0: {}
- resolve@1.22.2:
- dependencies:
- is-core-module: 2.12.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
+ resolve.exports@2.0.2: {}
resolve@1.22.8:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -18389,15 +17957,10 @@ snapshots:
dependencies:
lowercase-keys: 3.0.0
- restore-cursor@3.1.0:
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
-
- restore-cursor@4.0.0:
+ restore-cursor@5.1.0:
dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
+ onetime: 7.0.0
+ signal-exit: 4.1.0
retry@0.12.0: {}
@@ -18405,29 +17968,17 @@ snapshots:
rfdc@1.4.1: {}
- rimraf@2.6.3:
- dependencies:
- glob: 7.2.3
-
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rimraf@5.0.7:
- dependencies:
- glob: 10.3.12
-
- rollup-plugin-copy@3.5.0:
+ rimraf@5.0.10:
dependencies:
- '@types/fs-extra': 8.1.5
- colorette: 1.4.0
- fs-extra: 8.1.0
- globby: 10.0.1
- is-plain-object: 3.0.1
+ glob: 10.4.1
rollup-plugin-filesize@10.0.0:
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.25.7
boxen: 5.1.2
brotli-size: 4.0.0
colors: 1.4.0
@@ -18445,29 +17996,29 @@ snapshots:
magic-string: 0.25.9
rollup-pluginutils: 2.8.2
- rollup-plugin-node-externals@7.1.2(rollup@4.18.0):
+ rollup-plugin-node-externals@7.1.3(rollup@4.24.0):
dependencies:
- rollup: 4.18.0
+ rollup: 4.24.0
rollup-plugin-node-polyfills@0.2.1:
dependencies:
rollup-plugin-inject: 3.0.2
- rollup-plugin-peer-deps-external@2.2.4(rollup@4.18.0):
+ rollup-plugin-peer-deps-external@2.2.4(rollup@4.24.0):
dependencies:
- rollup: 4.18.0
+ rollup: 4.24.0
- rollup-plugin-postcss@4.0.2(postcss@8.4.38):
+ rollup-plugin-postcss@4.0.2(postcss@8.4.47):
dependencies:
chalk: 4.1.2
concat-with-sourcemaps: 1.1.0
- cssnano: 5.1.15(postcss@8.4.38)
+ cssnano: 5.1.15(postcss@8.4.47)
import-cwd: 3.0.0
p-queue: 6.6.2
pify: 5.0.0
- postcss: 8.4.38
- postcss-load-config: 3.1.4(postcss@8.4.38)
- postcss-modules: 4.3.1(postcss@8.4.38)
+ postcss: 8.4.47
+ postcss-load-config: 3.1.4(postcss@8.4.47)
+ postcss-modules: 4.3.1(postcss@8.4.47)
promise.series: 0.2.0
resolve: 1.22.8
rollup-pluginutils: 2.8.2
@@ -18476,48 +18027,42 @@ snapshots:
transitivePeerDependencies:
- ts-node
- rollup-plugin-typescript2@0.36.0(rollup@4.18.0)(typescript@5.4.5):
+ rollup-plugin-typescript2@0.36.0(rollup@4.24.0)(typescript@5.6.3):
dependencies:
'@rollup/pluginutils': 4.2.1
find-cache-dir: 3.3.2
fs-extra: 10.1.0
- rollup: 4.18.0
+ rollup: 4.24.0
semver: 7.5.4
- tslib: 2.6.3
- typescript: 5.4.5
+ tslib: 2.7.0
+ typescript: 5.6.3
rollup-pluginutils@2.8.2:
dependencies:
estree-walker: 0.6.1
- rollup@3.29.4:
- optionalDependencies:
- fsevents: 2.3.3
-
- rollup@4.18.0:
+ rollup@4.24.0:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.18.0
- '@rollup/rollup-android-arm64': 4.18.0
- '@rollup/rollup-darwin-arm64': 4.18.0
- '@rollup/rollup-darwin-x64': 4.18.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.18.0
- '@rollup/rollup-linux-arm-musleabihf': 4.18.0
- '@rollup/rollup-linux-arm64-gnu': 4.18.0
- '@rollup/rollup-linux-arm64-musl': 4.18.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
- '@rollup/rollup-linux-riscv64-gnu': 4.18.0
- '@rollup/rollup-linux-s390x-gnu': 4.18.0
- '@rollup/rollup-linux-x64-gnu': 4.18.0
- '@rollup/rollup-linux-x64-musl': 4.18.0
- '@rollup/rollup-win32-arm64-msvc': 4.18.0
- '@rollup/rollup-win32-ia32-msvc': 4.18.0
- '@rollup/rollup-win32-x64-msvc': 4.18.0
+ '@rollup/rollup-android-arm-eabi': 4.24.0
+ '@rollup/rollup-android-arm64': 4.24.0
+ '@rollup/rollup-darwin-arm64': 4.24.0
+ '@rollup/rollup-darwin-x64': 4.24.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.0
+ '@rollup/rollup-linux-arm64-gnu': 4.24.0
+ '@rollup/rollup-linux-arm64-musl': 4.24.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.0
+ '@rollup/rollup-linux-s390x-gnu': 4.24.0
+ '@rollup/rollup-linux-x64-gnu': 4.24.0
+ '@rollup/rollup-linux-x64-musl': 4.24.0
+ '@rollup/rollup-win32-arm64-msvc': 4.24.0
+ '@rollup/rollup-win32-ia32-msvc': 4.24.0
+ '@rollup/rollup-win32-x64-msvc': 4.24.0
fsevents: 2.3.3
- run-async@3.0.0: {}
-
run-con@1.3.2:
dependencies:
deep-extend: 0.6.0
@@ -18529,28 +18074,10 @@ snapshots:
dependencies:
queue-microtask: 1.2.3
- rxjs@7.8.1:
- dependencies:
- tslib: 2.6.3
-
sade@1.8.1:
dependencies:
mri: 1.2.0
- safe-array-concat@1.0.1:
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- has-symbols: 1.0.3
- isarray: 2.0.5
-
- safe-array-concat@1.1.0:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- isarray: 2.0.5
-
safe-array-concat@1.1.2:
dependencies:
call-bind: 1.0.7
@@ -18566,8 +18093,8 @@ snapshots:
safe-regex-test@1.0.0:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-regex: 1.1.4
safe-regex-test@1.0.3:
@@ -18578,11 +18105,12 @@ snapshots:
safer-buffer@2.1.2: {}
- sass@1.77.5:
+ sass@1.79.5:
dependencies:
- chokidar: 3.5.3
+ '@parcel/watcher': 2.4.1
+ chokidar: 4.0.1
immutable: 4.3.1
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
saxes@6.0.0:
dependencies:
@@ -18596,7 +18124,7 @@ snapshots:
semver-diff@4.0.0:
dependencies:
- semver: 7.6.2
+ semver: 7.6.3
semver-utils@1.1.4: {}
@@ -18614,7 +18142,9 @@ snapshots:
semver@7.6.2: {}
- send@0.18.0:
+ semver@7.6.3: {}
+
+ send@0.19.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -18635,27 +18165,20 @@ snapshots:
sentence-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
upper-case-first: 2.0.2
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
set-blocking@2.0.0: {}
- set-function-length@1.1.1:
- dependencies:
- define-data-property: 1.1.1
- get-intrinsic: 1.2.2
- gopd: 1.0.1
- has-property-descriptors: 1.0.0
-
set-function-length@1.2.1:
dependencies:
define-data-property: 1.1.4
@@ -18665,12 +18188,6 @@ snapshots:
gopd: 1.0.1
has-property-descriptors: 1.0.2
- set-function-name@2.0.1:
- dependencies:
- define-data-property: 1.1.1
- functions-have-names: 1.2.3
- has-property-descriptors: 1.0.0
-
set-function-name@2.0.2:
dependencies:
define-data-property: 1.1.4
@@ -18684,6 +18201,32 @@ snapshots:
dependencies:
kind-of: 6.0.3
+ sharp@0.33.5:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.6.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
+
shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
@@ -18698,12 +18241,6 @@ snapshots:
shell-quote@1.8.1: {}
- side-channel@1.0.4:
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- object-inspect: 1.12.3
-
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
@@ -18713,8 +18250,6 @@ snapshots:
signal-exit@3.0.7: {}
- signal-exit@4.0.2: {}
-
signal-exit@4.1.0: {}
sigstore@1.7.0:
@@ -18736,6 +18271,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ simple-swizzle@0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+
+ sirv@2.0.4:
+ dependencies:
+ '@polka/url': 1.0.0-next.28
+ mrmime: 2.0.0
+ totalist: 3.0.1
+
sisteransi@1.0.5: {}
slash@3.0.0: {}
@@ -18760,17 +18305,17 @@ snapshots:
smart-buffer@4.2.0: {}
- smol-toml@1.2.1: {}
+ smol-toml@1.3.0: {}
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
socks-proxy-agent@7.0.0:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.7
socks: 2.7.1
transitivePeerDependencies:
- supports-color
@@ -18778,7 +18323,7 @@ snapshots:
socks-proxy-agent@8.0.2:
dependencies:
agent-base: 7.1.0
- debug: 4.3.4
+ debug: 4.3.7
socks: 2.7.1
transitivePeerDependencies:
- supports-color
@@ -18792,7 +18337,7 @@ snapshots:
dependencies:
is-plain-obj: 4.1.0
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-support@0.5.13:
dependencies:
@@ -18804,8 +18349,12 @@ snapshots:
buffer-from: 1.1.2
source-map: 0.6.1
+ source-map@0.5.7: {}
+
source-map@0.6.1: {}
+ source-map@0.7.4: {}
+
sourcemap-codec@1.4.8: {}
space-separated-tokens@1.1.5: {}
@@ -18834,13 +18383,13 @@ snapshots:
sprintf-js@1.0.3: {}
- ssri@10.0.5:
+ ssri@10.0.6:
dependencies:
minipass: 7.1.2
- ssri@10.0.6:
+ ssri@11.0.0:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.2
stable@0.1.8: {}
@@ -18850,26 +18399,14 @@ snapshots:
statuses@2.0.1: {}
- stop-iteration-iterator@1.0.0:
- dependencies:
- internal-slot: 1.0.7
-
- store2@2.14.2: {}
-
- storybook@8.1.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ storybook@8.3.5:
dependencies:
- '@storybook/cli': 8.1.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/core': 8.3.5
transitivePeerDependencies:
- - '@babel/preset-env'
- bufferutil
- - encoding
- - react
- - react-dom
- supports-color
- utf-8-validate
- stream-shift@1.0.1: {}
-
streamsearch@1.1.0: {}
string-argv@0.3.2: {}
@@ -18905,7 +18442,7 @@ snapshots:
emoji-regex: 10.3.0
strip-ansi: 7.1.0
- string-width@7.0.0:
+ string-width@7.2.0:
dependencies:
emoji-regex: 10.3.0
get-east-asian-width: 1.2.0
@@ -18932,18 +18469,17 @@ snapshots:
define-properties: 1.2.0
es-abstract: 1.21.2
+ string.prototype.repeat@1.0.0:
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.23.3
+
string.prototype.trim@1.2.7:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.21.2
- string.prototype.trim@1.2.8:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.0
- es-abstract: 1.22.3
-
string.prototype.trim@1.2.9:
dependencies:
call-bind: 1.0.7
@@ -18957,12 +18493,6 @@ snapshots:
define-properties: 1.2.0
es-abstract: 1.21.2
- string.prototype.trimend@1.0.7:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.0
- es-abstract: 1.22.3
-
string.prototype.trimend@1.0.8:
dependencies:
call-bind: 1.0.7
@@ -18975,22 +18505,12 @@ snapshots:
define-properties: 1.2.0
es-abstract: 1.21.2
- string.prototype.trimstart@1.0.7:
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.0
- es-abstract: 1.22.3
-
string.prototype.trimstart@1.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
- string_decoder@1.1.1:
- dependencies:
- safe-buffer: 5.1.2
-
string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
@@ -19046,7 +18566,7 @@ snapshots:
change-case: 4.1.2
commander: 8.3.0
fs-extra: 10.1.0
- glob: 10.3.10
+ glob: 10.4.1
json5: 2.2.3
jsonc-parser: 3.2.0
lodash: 4.17.21
@@ -19054,98 +18574,105 @@ snapshots:
style-inject@0.3.0: {}
- styled-jsx@5.1.1(@babel/core@7.24.7)(react@18.3.1):
+ style-to-object@0.4.4:
+ dependencies:
+ inline-style-parser: 0.1.1
+
+ style-to-object@1.0.8:
+ dependencies:
+ inline-style-parser: 0.2.4
+
+ styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
- stylehacks@5.1.1(postcss@8.4.38):
+ stylehacks@5.1.1(postcss@8.4.47):
dependencies:
- browserslist: 4.23.0
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ browserslist: 4.24.0
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- stylelint-config-recommended-scss@14.0.0(postcss@8.4.38)(stylelint@16.6.1(typescript@5.4.5)):
+ stylelint-config-recommended-scss@14.0.0(postcss@8.4.47)(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- postcss-scss: 4.0.9(postcss@8.4.38)
- stylelint: 16.6.1(typescript@5.4.5)
- stylelint-config-recommended: 14.0.0(stylelint@16.6.1(typescript@5.4.5))
- stylelint-scss: 6.0.0(stylelint@16.6.1(typescript@5.4.5))
+ postcss-scss: 4.0.9(postcss@8.4.47)
+ stylelint: 16.10.0(typescript@5.6.3)
+ stylelint-config-recommended: 14.0.0(stylelint@16.10.0(typescript@5.6.3))
+ stylelint-scss: 6.0.0(stylelint@16.10.0(typescript@5.6.3))
optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- stylelint-config-recommended@14.0.0(stylelint@16.6.1(typescript@5.4.5)):
+ stylelint-config-recommended@14.0.0(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- stylelint: 16.6.1(typescript@5.4.5)
+ stylelint: 16.10.0(typescript@5.6.3)
- stylelint-config-standard-scss@13.1.0(postcss@8.4.38)(stylelint@16.6.1(typescript@5.4.5)):
+ stylelint-config-standard-scss@13.1.0(postcss@8.4.47)(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- stylelint: 16.6.1(typescript@5.4.5)
- stylelint-config-recommended-scss: 14.0.0(postcss@8.4.38)(stylelint@16.6.1(typescript@5.4.5))
- stylelint-config-standard: 36.0.0(stylelint@16.6.1(typescript@5.4.5))
+ stylelint: 16.10.0(typescript@5.6.3)
+ stylelint-config-recommended-scss: 14.0.0(postcss@8.4.47)(stylelint@16.10.0(typescript@5.6.3))
+ stylelint-config-standard: 36.0.0(stylelint@16.10.0(typescript@5.6.3))
optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
- stylelint-config-standard@36.0.0(stylelint@16.6.1(typescript@5.4.5)):
+ stylelint-config-standard@36.0.0(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- stylelint: 16.6.1(typescript@5.4.5)
- stylelint-config-recommended: 14.0.0(stylelint@16.6.1(typescript@5.4.5))
+ stylelint: 16.10.0(typescript@5.6.3)
+ stylelint-config-recommended: 14.0.0(stylelint@16.10.0(typescript@5.6.3))
- stylelint-order@6.0.4(stylelint@16.6.1(typescript@5.4.5)):
+ stylelint-order@6.0.4(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- postcss: 8.4.38
- postcss-sorting: 8.0.2(postcss@8.4.38)
- stylelint: 16.6.1(typescript@5.4.5)
+ postcss: 8.4.47
+ postcss-sorting: 8.0.2(postcss@8.4.47)
+ stylelint: 16.10.0(typescript@5.6.3)
- stylelint-scss@6.0.0(stylelint@16.6.1(typescript@5.4.5)):
+ stylelint-scss@6.0.0(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
known-css-properties: 0.29.0
postcss-media-query-parser: 0.2.3
postcss-resolve-nested-selector: 0.1.1
- postcss-selector-parser: 6.1.0
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- stylelint: 16.6.1(typescript@5.4.5)
+ stylelint: 16.10.0(typescript@5.6.3)
- stylelint@16.6.1(typescript@5.4.5):
+ stylelint@16.10.0(typescript@5.6.3):
dependencies:
- '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
- '@csstools/css-tokenizer': 2.3.1
- '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)
- '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.0)
+ '@csstools/css-parser-algorithms': 3.0.2(@csstools/css-tokenizer@3.0.2)
+ '@csstools/css-tokenizer': 3.0.2
+ '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)
+ '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
'@dual-bundle/import-meta-resolve': 4.1.0
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 9.0.0(typescript@5.4.5)
- css-functions-list: 3.2.2
- css-tree: 2.3.1
- debug: 4.3.4
+ cosmiconfig: 9.0.0(typescript@5.6.3)
+ css-functions-list: 3.2.3
+ css-tree: 3.0.0
+ debug: 4.3.7
fast-glob: 3.3.2
fastest-levenshtein: 1.0.16
- file-entry-cache: 9.0.0
+ file-entry-cache: 9.1.0
global-modules: 2.0.0
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 5.3.1
+ ignore: 6.0.2
imurmurhash: 0.1.4
is-plain-object: 5.0.0
- known-css-properties: 0.31.0
+ known-css-properties: 0.34.0
mathml-tag-names: 2.1.3
meow: 13.2.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.38
- postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 7.0.0(postcss@8.4.38)
- postcss-selector-parser: 6.1.0
+ picocolors: 1.1.0
+ postcss: 8.4.47
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 7.0.1(postcss@8.4.47)
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
- strip-ansi: 7.1.0
- supports-hyperlinks: 3.0.0
+ supports-hyperlinks: 3.1.0
svg-tags: 1.0.0
table: 6.8.2
write-file-atomic: 5.0.1
@@ -19153,6 +18680,8 @@ snapshots:
- supports-color
- typescript
+ stylis@4.2.0: {}
+
supports-color@5.5.0:
dependencies:
has-flag: 3.0.0
@@ -19167,13 +18696,15 @@ snapshots:
supports-color@9.4.0: {}
- supports-hyperlinks@3.0.0:
+ supports-hyperlinks@3.1.0:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
supports-preserve-symlinks-flag@1.0.0: {}
+ svg-parser@2.0.4: {}
+
svg-tags@1.0.0: {}
svgo@2.8.0:
@@ -19183,15 +18714,25 @@ snapshots:
css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
stable: 0.1.8
+ svgo@3.3.2:
+ dependencies:
+ '@trysound/sax': 0.2.0
+ commander: 7.2.0
+ css-select: 5.1.0
+ css-tree: 2.3.1
+ css-what: 6.1.0
+ csso: 5.0.5
+ picocolors: 1.1.0
+
symbol-tree@3.2.4: {}
synckit@0.9.0:
dependencies:
'@pkgr/core': 0.1.0
- tslib: 2.6.3
+ tslib: 2.7.0
table@6.8.2:
dependencies:
@@ -19201,29 +18742,7 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- tar-fs@2.1.1:
- dependencies:
- chownr: 1.1.4
- mkdirp-classic: 0.5.3
- pump: 3.0.0
- tar-stream: 2.2.0
-
- tar-stream@2.2.0:
- dependencies:
- bl: 4.1.0
- end-of-stream: 1.4.4
- fs-constants: 1.0.0
- inherits: 2.0.4
- readable-stream: 3.6.2
-
- tar@6.2.0:
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
+ tar-mini@0.2.0: {}
tar@6.2.1:
dependencies:
@@ -19240,21 +18759,10 @@ snapshots:
temp-dir@3.0.0: {}
- temp@0.8.4:
- dependencies:
- rimraf: 2.6.3
-
- tempy@3.1.0:
- dependencies:
- is-stream: 3.0.0
- temp-dir: 3.0.0
- type-fest: 2.19.0
- unique-string: 3.0.0
-
terser@5.19.0:
dependencies:
'@jridgewell/source-map': 0.3.5
- acorn: 8.11.3
+ acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -19268,22 +18776,20 @@ snapshots:
text-table@0.2.0: {}
- through2@2.0.5:
- dependencies:
- readable-stream: 2.3.8
- xtend: 4.0.2
-
through@2.3.8: {}
tiny-invariant@1.3.3: {}
tinycolor2@1.6.0: {}
- tinyspy@2.2.1: {}
-
- tmp@0.0.33:
+ tinyglobby@0.2.9:
dependencies:
- os-tmpdir: 1.0.2
+ fdir: 6.4.0(picomatch@4.0.2)
+ picomatch: 4.0.2
+
+ tinyrainbow@1.2.0: {}
+
+ tinyspy@3.0.2: {}
tmpl@1.0.5: {}
@@ -19293,14 +18799,14 @@ snapshots:
dependencies:
is-number: 7.0.0
- tocbot@4.23.0: {}
-
toidentifier@1.0.1: {}
token-transformer@0.0.33:
dependencies:
yargs: 17.7.2
+ totalist@3.0.1: {}
+
tough-cookie@4.1.3:
dependencies:
psl: 1.9.0
@@ -19308,12 +18814,14 @@ snapshots:
universalify: 0.2.0
url-parse: 1.5.10
- tr46@0.0.3: {}
-
tr46@3.0.0:
dependencies:
punycode: 2.3.0
+ treeverse@3.0.0: {}
+
+ trim-lines@3.0.1: {}
+
trim-newlines@3.0.1: {}
trough@2.1.0: {}
@@ -19322,8 +18830,16 @@ snapshots:
dependencies:
typescript: 5.4.5
+ ts-api-utils@1.3.0(typescript@5.6.3):
+ dependencies:
+ typescript: 5.6.3
+
ts-dedent@2.2.0: {}
+ tsconfck@2.1.2(typescript@5.4.5):
+ optionalDependencies:
+ typescript: 5.4.5
+
tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
@@ -19337,14 +18853,19 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tslib@1.14.1: {}
+ tslib@2.7.0: {}
- tslib@2.6.3: {}
+ tsx@4.19.1:
+ dependencies:
+ esbuild: 0.23.1
+ get-tsconfig: 4.8.1
+ optionalDependencies:
+ fsevents: 2.3.3
tuf-js@1.1.7:
dependencies:
'@tufjs/models': 1.0.4
- debug: 4.3.4
+ debug: 4.3.7
make-fetch-happen: 11.1.1
transitivePeerDependencies:
- supports-color
@@ -19352,7 +18873,7 @@ snapshots:
tuf-js@2.2.0:
dependencies:
'@tufjs/models': 2.0.0
- debug: 4.3.4
+ debug: 4.3.7
make-fetch-happen: 13.0.0
transitivePeerDependencies:
- supports-color
@@ -19379,6 +18900,8 @@ snapshots:
type-fest@3.13.0: {}
+ type-fest@4.26.1: {}
+
type-fest@4.8.2: {}
type-is@1.6.18:
@@ -19386,25 +18909,12 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.35
- typed-array-buffer@1.0.0:
- dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
-
typed-array-buffer@1.0.2:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
is-typed-array: 1.1.13
- typed-array-byte-length@1.0.0:
- dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
-
typed-array-byte-length@1.0.1:
dependencies:
call-bind: 1.0.7
@@ -19413,14 +18923,6 @@ snapshots:
has-proto: 1.0.3
is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.0:
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
-
typed-array-byte-offset@1.0.2:
dependencies:
available-typed-arrays: 1.0.7
@@ -19431,19 +18933,10 @@ snapshots:
is-typed-array: 1.1.13
typed-array-length@1.0.4:
- dependencies:
- call-bind: 1.0.2
- for-each: 0.3.3
- is-typed-array: 1.1.10
-
- typed-array-length@1.0.5:
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
+ is-typed-array: 1.1.10
typed-array-length@1.0.6:
dependencies:
@@ -19462,6 +18955,8 @@ snapshots:
typescript@5.4.5: {}
+ typescript@5.6.3: {}
+
uc.micro@2.1.0: {}
uglify-js@3.17.4:
@@ -19469,13 +18964,17 @@ snapshots:
unbox-primitive@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
undici-types@5.26.5: {}
+ undici-types@6.19.8: {}
+
+ undici@6.20.1: {}
+
unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
@@ -19494,11 +18993,11 @@ snapshots:
'@types/concat-stream': 2.0.0
'@types/debug': 4.1.8
'@types/is-empty': 1.2.1
- '@types/node': 20.14.2
+ '@types/node': 20.16.11
'@types/unist': 3.0.2
'@ungap/structured-clone': 1.2.0
concat-stream: 2.0.0
- debug: 4.3.4
+ debug: 4.3.7
glob: 10.4.1
ignore: 5.3.1
is-empty: 1.2.0
@@ -19511,7 +19010,7 @@ snapshots:
vfile-message: 4.0.2
vfile-reporter: 8.1.0
vfile-statistics: 3.0.0
- yaml: 2.4.5
+ yaml: 2.5.1
transitivePeerDependencies:
- supports-color
@@ -19553,6 +19052,10 @@ snapshots:
dependencies:
'@types/unist': 3.0.2
+ unist-util-position@5.0.0:
+ dependencies:
+ '@types/unist': 3.0.2
+
unist-util-remove-position@5.0.0:
dependencies:
'@types/unist': 3.0.2
@@ -19577,9 +19080,7 @@ snapshots:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- universal-user-agent@6.0.1: {}
-
- universalify@0.1.2: {}
+ universal-user-agent@7.0.2: {}
universalify@0.2.0: {}
@@ -19589,7 +19090,7 @@ snapshots:
unplugin@1.5.1:
dependencies:
- acorn: 8.11.3
+ acorn: 8.12.1
chokidar: 3.5.3
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
@@ -19598,11 +19099,11 @@ snapshots:
upath@2.0.1: {}
- update-browserslist-db@1.0.13(browserslist@4.23.0):
+ update-browserslist-db@1.1.1(browserslist@4.24.0):
dependencies:
- browserslist: 4.23.0
- escalade: 3.1.1
- picocolors: 1.0.1
+ browserslist: 4.24.0
+ escalade: 3.2.0
+ picocolors: 1.1.0
update-notifier@6.0.2:
dependencies:
@@ -19617,17 +19118,17 @@ snapshots:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.6.2
+ semver: 7.6.3
semver-diff: 4.0.0
xdg-basedir: 5.1.0
upper-case-first@2.0.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
upper-case@2.0.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
uri-js@4.4.1:
dependencies:
@@ -19640,21 +19141,6 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1):
- dependencies:
- react: 18.3.1
- tslib: 2.6.3
- optionalDependencies:
- '@types/react': 18.3.3
-
- use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1):
- dependencies:
- detect-node-es: 1.1.0
- react: 18.3.1
- tslib: 2.6.3
- optionalDependencies:
- '@types/react': 18.3.3
-
util-deprecate@1.0.2: {}
util@0.12.5:
@@ -19663,7 +19149,7 @@ snapshots:
is-arguments: 1.1.1
is-generator-function: 1.0.10
is-typed-array: 1.1.13
- which-typed-array: 1.1.14
+ which-typed-array: 1.1.15
utils-merge@1.0.1: {}
@@ -19674,7 +19160,7 @@ snapshots:
uvu@0.5.6:
dependencies:
dequal: 2.0.3
- diff: 5.1.0
+ diff: 5.2.0
kleur: 4.1.5
sade: 1.8.1
@@ -19684,6 +19170,10 @@ snapshots:
'@types/istanbul-lib-coverage': 2.0.4
convert-source-map: 1.9.0
+ valibot@0.42.1(typescript@5.4.5):
+ optionalDependencies:
+ typescript: 5.4.5
+
validate-npm-package-license@3.0.4:
dependencies:
spdx-correct: 3.2.0
@@ -19727,21 +19217,107 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-plugin-runtime-config@1.0.2(vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)):
+ vike@0.4.199(vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0)):
+ dependencies:
+ '@brillout/import': 0.2.3
+ '@brillout/json-serializer': 0.5.13
+ '@brillout/picocolors': 1.0.15
+ '@brillout/require-shim': 0.1.2
+ '@brillout/vite-plugin-server-entry': 0.4.13
+ acorn: 8.12.1
+ cac: 6.7.14
+ es-module-lexer: 1.5.2
+ esbuild: 0.21.5
+ fast-glob: 3.3.2
+ semver: 7.6.3
+ sirv: 2.0.4
+ source-map-support: 0.5.21
+ vite: 5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0)
+
+ vite-imagetools@7.0.4(rollup@4.24.0):
+ dependencies:
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ imagetools-core: 7.0.1
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - rollup
+
+ vite-plugin-compression2@1.3.0(rollup@4.24.0):
+ dependencies:
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ tar-mini: 0.2.0
+ transitivePeerDependencies:
+ - rollup
+
+ vite-plugin-runtime-config@1.0.2(vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)):
dependencies:
lodash: 4.17.21
- vite: 5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0)
+ vite: 5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0)
+
+ vite-plugin-svgr@4.2.0(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0)):
+ dependencies:
+ '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@svgr/core': 8.1.0(typescript@5.6.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3))
+ vite: 5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ - typescript
+
+ vite-tsconfig-paths@4.2.1(typescript@5.4.5)(vite@5.3.5(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)):
+ dependencies:
+ debug: 4.3.7
+ globrex: 0.1.2
+ tsconfck: 2.1.2(typescript@5.4.5)
+ optionalDependencies:
+ vite: 5.3.5(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ vite@5.3.5(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.47
+ rollup: 4.24.0
+ optionalDependencies:
+ '@types/node': 20.14.11
+ fsevents: 2.3.3
+ sass: 1.79.5
+ terser: 5.19.0
+
+ vite@5.4.8(@types/node@20.14.11)(sass@1.79.5)(terser@5.19.0):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.47
+ rollup: 4.24.0
+ optionalDependencies:
+ '@types/node': 20.14.11
+ fsevents: 2.3.3
+ sass: 1.79.5
+ terser: 5.19.0
+
+ vite@5.4.8(@types/node@20.16.11)(sass@1.79.5)(terser@5.19.0):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.47
+ rollup: 4.24.0
+ optionalDependencies:
+ '@types/node': 20.16.11
+ fsevents: 2.3.3
+ sass: 1.79.5
+ terser: 5.19.0
- vite@5.3.1(@types/node@20.14.2)(lightningcss@1.25.1)(sass@1.77.5)(terser@5.19.0):
+ vite@5.4.8(@types/node@22.7.5)(sass@1.79.5)(terser@5.19.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.38
- rollup: 4.18.0
+ postcss: 8.4.47
+ rollup: 4.24.0
optionalDependencies:
- '@types/node': 20.14.2
+ '@types/node': 22.7.5
fsevents: 2.3.3
- lightningcss: 1.25.1
- sass: 1.77.5
+ sass: 1.79.5
terser: 5.19.0
vscode-json-languageservice@4.2.1:
@@ -19770,19 +19346,12 @@ snapshots:
dependencies:
makeerror: 1.0.12
- watchpack@2.4.0:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
web-streams-polyfill@3.2.1: {}
- webidl-conversions@3.0.1: {}
-
webidl-conversions@7.0.0: {}
webpack-sources@3.2.3: {}
@@ -19800,11 +19369,6 @@ snapshots:
tr46: 3.0.0
webidl-conversions: 7.0.0
- whatwg-url@5.0.0:
- dependencies:
- tr46: 0.0.3
- webidl-conversions: 3.0.1
-
which-boxed-primitive@1.0.2:
dependencies:
is-bigint: 1.0.4
@@ -19826,7 +19390,7 @@ snapshots:
isarray: 2.0.5
which-boxed-primitive: 1.0.2
which-collection: 1.0.1
- which-typed-array: 1.1.14
+ which-typed-array: 1.1.15
which-collection@1.0.1:
dependencies:
@@ -19846,22 +19410,6 @@ snapshots:
has-tostringtag: 1.0.0
is-typed-array: 1.1.10
- which-typed-array@1.1.13:
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
-
- which-typed-array@1.1.14:
- 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-typed-array@1.1.15:
dependencies:
available-typed-arrays: 1.0.7
@@ -19927,17 +19475,11 @@ snapshots:
wrap-ansi@9.0.0:
dependencies:
ansi-styles: 6.2.1
- string-width: 7.0.0
+ string-width: 7.2.0
strip-ansi: 7.1.0
wrappy@1.0.2: {}
- write-file-atomic@2.4.3:
- dependencies:
- graceful-fs: 4.2.11
- imurmurhash: 0.1.4
- signal-exit: 3.0.7
-
write-file-atomic@3.0.3:
dependencies:
imurmurhash: 0.1.4
@@ -19955,20 +19497,20 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 4.1.0
- write-json-file@5.0.0:
+ write-json-file@6.0.0:
dependencies:
detect-indent: 7.0.1
is-plain-obj: 4.1.0
sort-keys: 5.0.0
- write-file-atomic: 3.0.3
+ write-file-atomic: 5.0.1
- write-package@7.0.1:
+ write-package@7.1.0:
dependencies:
- deepmerge-ts: 5.1.0
+ deepmerge-ts: 7.1.3
read-pkg: 9.0.1
sort-keys: 5.0.0
- type-fest: 4.8.2
- write-json-file: 5.0.0
+ type-fest: 4.26.1
+ write-json-file: 6.0.0
ws@8.13.0: {}
@@ -19990,7 +19532,7 @@ snapshots:
yaml@1.10.2: {}
- yaml@2.4.5: {}
+ yaml@2.5.1: {}
yargs-parser@13.1.2:
dependencies:
@@ -20028,4 +19570,10 @@ snapshots:
yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
+
+ yoctocolors-cjs@2.1.2: {}
+
+ zod@3.22.4: {}
+
zwitch@2.0.4: {}
diff --git a/proprietary/design-tokens/package.json b/proprietary/design-tokens/package.json
index 7c5d4b2f..2796b0ca 100644
--- a/proprietary/design-tokens/package.json
+++ b/proprietary/design-tokens/package.json
@@ -26,7 +26,7 @@
"devDependencies": {
"chokidar-cli": "3.0.0",
"npm-run-all": "4.1.5",
- "rimraf": "5.0.7",
+ "rimraf": "5.0.10",
"style-dictionary": "3.9.2",
"token-transformer": "0.0.33"
}
diff --git a/proprietary/font/package.json b/proprietary/font/package.json
index 83166eb5..2c618e5d 100644
--- a/proprietary/font/package.json
+++ b/proprietary/font/package.json
@@ -20,9 +20,9 @@
"url": "git@github.com:frameless/website.git"
},
"dependencies": {
- "@fontsource/fira-sans": "5.0.20"
+ "@fontsource/fira-sans": "5.1.0"
},
"devDependencies": {
- "@fontsource/oswald": "5.0.20"
+ "@fontsource/oswald": "5.1.0"
}
}
diff --git a/proprietary/font/src/index.scss b/proprietary/font/src/index.css
similarity index 100%
rename from proprietary/font/src/index.scss
rename to proprietary/font/src/index.css
diff --git a/tsconfig.json b/tsconfig.json
index a33e67c3..7c46882e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -19,7 +19,7 @@
"sourceMap": true,
"strict": true,
"target": "es2020",
- "jsx": "react"
+ "jsx": "react-jsx"
},
"exclude": ["**/node_modules/*"]
}