From a32def20860aea9bc5a16a126464c13a75148be5 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Tue, 14 Jan 2025 09:45:57 +0100 Subject: [PATCH] fixes #2151, apply secure cookie session only if using SSL (https) --- .eslintrc.json | 1 + apps/artboard/src/pages/builder.tsx | 8 +- apps/artboard/src/pages/preview.tsx | 4 +- apps/artboard/src/store/artboard.ts | 2 +- apps/artboard/src/templates/azurill.tsx | 8 +- apps/artboard/src/templates/bronzor.tsx | 8 +- apps/artboard/src/templates/chikorita.tsx | 8 +- apps/artboard/src/templates/ditto.tsx | 8 +- apps/artboard/src/templates/gengar.tsx | 8 +- apps/artboard/src/templates/glalie.tsx | 8 +- apps/artboard/src/templates/index.tsx | 2 +- apps/artboard/src/templates/kakuna.tsx | 8 +- apps/artboard/src/templates/leafish.tsx | 8 +- apps/artboard/src/templates/nosepass.tsx | 8 +- apps/artboard/src/templates/onyx.tsx | 8 +- apps/artboard/src/templates/pikachu.tsx | 8 +- apps/artboard/src/templates/rhyhorn.tsx | 8 +- apps/artboard/src/types/template.ts | 2 +- apps/client/src/components/theme-switch.tsx | 3 +- apps/client/src/constants/parallax-tilt.ts | 2 +- apps/client/src/constants/query-keys.ts | 2 +- apps/client/src/hooks/use-toast.ts | 2 +- apps/client/src/libs/axios.ts | 3 +- .../client/src/pages/auth/backup-otp/page.tsx | 2 +- .../src/pages/auth/forgot-password/page.tsx | 2 +- apps/client/src/pages/auth/login/page.tsx | 2 +- apps/client/src/pages/auth/register/page.tsx | 2 +- .../src/pages/auth/reset-password/page.tsx | 2 +- .../client/src/pages/auth/verify-otp/page.tsx | 2 +- apps/client/src/pages/builder/page.tsx | 5 +- .../builder/sidebars/left/dialogs/awards.tsx | 2 +- .../sidebars/left/dialogs/certifications.tsx | 2 +- .../sidebars/left/dialogs/custom-section.tsx | 5 +- .../sidebars/left/dialogs/education.tsx | 2 +- .../sidebars/left/dialogs/experience.tsx | 2 +- .../sidebars/left/dialogs/interests.tsx | 2 +- .../sidebars/left/dialogs/languages.tsx | 2 +- .../sidebars/left/dialogs/profiles.tsx | 2 +- .../sidebars/left/dialogs/projects.tsx | 2 +- .../sidebars/left/dialogs/publications.tsx | 2 +- .../sidebars/left/dialogs/references.tsx | 2 +- .../builder/sidebars/left/dialogs/skills.tsx | 2 +- .../sidebars/left/dialogs/volunteer.tsx | 2 +- .../src/pages/builder/sidebars/left/index.tsx | 2 +- .../sidebars/left/sections/custom/section.tsx | 2 +- .../left/sections/picture/options.tsx | 11 +- .../left/sections/shared/section-base.tsx | 4 +- .../left/sections/shared/section-dialog.tsx | 7 +- .../left/sections/shared/section-icon.tsx | 8 +- .../left/sections/shared/section-options.tsx | 3 +- .../left/sections/shared/url-input.tsx | 3 +- .../sidebars/right/sections/layout.tsx | 13 +- .../sidebars/right/sections/typography.tsx | 3 +- .../sidebars/right/shared/section-icon.tsx | 5 +- .../dashboard/resumes/_dialogs/import.tsx | 6 +- .../pages/dashboard/resumes/_dialogs/lock.tsx | 2 +- .../dashboard/resumes/_dialogs/resume.tsx | 3 +- .../_layouts/grid/_components/resume-card.tsx | 2 +- .../_layouts/list/_components/create-item.tsx | 2 +- .../_layouts/list/_components/resume-item.tsx | 2 +- .../dashboard/settings/_sections/account.tsx | 3 +- apps/client/src/pages/public/page.tsx | 5 +- apps/client/src/router/loaders/auth.ts | 6 +- .../email-verification/resend-verify-email.ts | 4 +- .../auth/email-verification/verify-email.ts | 4 +- apps/client/src/services/auth/login.ts | 4 +- .../auth/password-recovery/forgot-password.ts | 4 +- .../auth/password-recovery/reset-password.ts | 4 +- apps/client/src/services/auth/providers.ts | 2 +- apps/client/src/services/auth/refresh.ts | 4 +- apps/client/src/services/auth/register.ts | 4 +- .../two-factor-authentication/backup-otp.tsx | 4 +- .../auth/two-factor-authentication/disable.ts | 4 +- .../auth/two-factor-authentication/enable.ts | 4 +- .../auth/two-factor-authentication/setup.ts | 4 +- .../two-factor-authentication/verify-otp.tsx | 4 +- .../src/services/auth/update-password.ts | 4 +- apps/client/src/services/feature/flags.ts | 2 +- .../src/services/resume/contributors.ts | 2 +- apps/client/src/services/resume/create.ts | 4 +- apps/client/src/services/resume/delete.ts | 4 +- apps/client/src/services/resume/import.ts | 4 +- apps/client/src/services/resume/lock.ts | 2 +- apps/client/src/services/resume/preview.ts | 2 +- apps/client/src/services/resume/print.tsx | 2 +- apps/client/src/services/resume/resume.ts | 2 +- apps/client/src/services/resume/resumes.ts | 4 +- apps/client/src/services/resume/statistics.ts | 2 +- .../client/src/services/resume/translation.ts | 2 +- apps/client/src/services/resume/update.tsx | 4 +- .../src/services/storage/upload-image.ts | 2 +- apps/client/src/services/user/delete-user.ts | 4 +- apps/client/src/services/user/update-user.ts | 4 +- apps/client/src/services/user/user.ts | 4 +- apps/client/src/stores/auth.ts | 2 +- apps/client/src/stores/dialog.ts | 2 +- apps/client/src/stores/resume.ts | 8 +- apps/server/src/auth/utils/cookie.ts | 2 +- apps/server/src/main.ts | 22 +- .../src/resume/decorators/resume.decorator.ts | 5 +- apps/server/src/types/express.d.ts | 2 +- .../src/user/decorators/user.decorator.ts | 5 +- libs/hooks/src/hooks/use-form-field.ts | 3 +- libs/parser/src/interfaces/parser.ts | 6 +- libs/parser/src/json-resume/index.ts | 9 +- libs/parser/src/linkedin/index.ts | 10 +- libs/parser/src/reactive-resume-v3/index.ts | 10 +- libs/parser/src/reactive-resume/index.ts | 9 +- libs/schema/src/sample.ts | 2 +- libs/schema/src/sections/index.ts | 2 +- libs/ui/src/components/alert-dialog.tsx | 2 +- libs/ui/src/components/badge-input.tsx | 6 +- libs/ui/src/components/command.tsx | 2 +- libs/ui/src/components/form.tsx | 5 +- libs/ui/src/components/rich-input.tsx | 3 +- libs/ui/src/components/toggle-group.tsx | 2 +- libs/utils/src/namespaces/array.ts | 2 +- libs/utils/src/namespaces/csv.ts | 2 +- libs/utils/src/namespaces/string.ts | 2 +- libs/utils/src/namespaces/style.ts | 3 +- package.json | 14 +- pnpm-lock.yaml | 879 ++++++++++-------- 122 files changed, 721 insertions(+), 669 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 67f3211c..f1102db1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -78,6 +78,7 @@ "@typescript-eslint/no-misused-promises": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-member-access": "off", + "@typescript-eslint/consistent-type-imports": "error", "@typescript-eslint/restrict-template-expressions": "off", "@typescript-eslint/no-redundant-type-constituents": "off", "@typescript-eslint/consistent-type-definitions": ["error", "type"], diff --git a/apps/artboard/src/pages/builder.tsx b/apps/artboard/src/pages/builder.tsx index 0bfd77fb..bdcd1483 100644 --- a/apps/artboard/src/pages/builder.tsx +++ b/apps/artboard/src/pages/builder.tsx @@ -1,8 +1,10 @@ -import { SectionKey } from "@reactive-resume/schema"; -import { pageSizeMap, Template } from "@reactive-resume/utils"; +import type { SectionKey } from "@reactive-resume/schema"; +import type { Template } from "@reactive-resume/utils"; +import { pageSizeMap } from "@reactive-resume/utils"; import { AnimatePresence, motion } from "framer-motion"; import { useEffect, useMemo, useRef, useState } from "react"; -import { ReactZoomPanPinchRef, TransformComponent, TransformWrapper } from "react-zoom-pan-pinch"; +import type { ReactZoomPanPinchRef } from "react-zoom-pan-pinch"; +import { TransformComponent, TransformWrapper } from "react-zoom-pan-pinch"; import { MM_TO_PX, Page } from "../components/page"; import { useArtboardStore } from "../store/artboard"; diff --git a/apps/artboard/src/pages/preview.tsx b/apps/artboard/src/pages/preview.tsx index 05ba4c60..3ab7de70 100644 --- a/apps/artboard/src/pages/preview.tsx +++ b/apps/artboard/src/pages/preview.tsx @@ -1,5 +1,5 @@ -import { SectionKey } from "@reactive-resume/schema"; -import { Template } from "@reactive-resume/utils"; +import type { SectionKey } from "@reactive-resume/schema"; +import type { Template } from "@reactive-resume/utils"; import { useMemo } from "react"; import { Page } from "../components/page"; diff --git a/apps/artboard/src/store/artboard.ts b/apps/artboard/src/store/artboard.ts index 4f514b43..d1c622a3 100644 --- a/apps/artboard/src/store/artboard.ts +++ b/apps/artboard/src/store/artboard.ts @@ -1,4 +1,4 @@ -import { ResumeData } from "@reactive-resume/schema"; +import type { ResumeData } from "@reactive-resume/schema"; import { create } from "zustand"; export type ArtboardStore = { diff --git a/apps/artboard/src/templates/azurill.tsx b/apps/artboard/src/templates/azurill.tsx index b72f7ca1..416e4f2d 100644 --- a/apps/artboard/src/templates/azurill.tsx +++ b/apps/artboard/src/templates/azurill.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl, linearTransform } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; @@ -24,7 +22,7 @@ import React, { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/bronzor.tsx b/apps/artboard/src/templates/bronzor.tsx index 6a6739f0..8472eacd 100644 --- a/apps/artboard/src/templates/bronzor.tsx +++ b/apps/artboard/src/templates/bronzor.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/chikorita.tsx b/apps/artboard/src/templates/chikorita.tsx index 1cf4b83c..13594019 100644 --- a/apps/artboard/src/templates/chikorita.tsx +++ b/apps/artboard/src/templates/chikorita.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/ditto.tsx b/apps/artboard/src/templates/ditto.tsx index e7f6fea3..65c812ee 100644 --- a/apps/artboard/src/templates/ditto.tsx +++ b/apps/artboard/src/templates/ditto.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/gengar.tsx b/apps/artboard/src/templates/gengar.tsx index 78588cca..38468cca 100644 --- a/apps/artboard/src/templates/gengar.tsx +++ b/apps/artboard/src/templates/gengar.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/glalie.tsx b/apps/artboard/src/templates/glalie.tsx index cd145b17..05ddadee 100644 --- a/apps/artboard/src/templates/glalie.tsx +++ b/apps/artboard/src/templates/glalie.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, hexToRgb, isEmptyString, isUrl, linearTransform } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/index.tsx b/apps/artboard/src/templates/index.tsx index 7f3da173..b8d19116 100644 --- a/apps/artboard/src/templates/index.tsx +++ b/apps/artboard/src/templates/index.tsx @@ -1,4 +1,4 @@ -import { Template } from "@reactive-resume/utils"; +import type { Template } from "@reactive-resume/utils"; import { Azurill } from "./azurill"; import { Bronzor } from "./bronzor"; diff --git a/apps/artboard/src/templates/kakuna.tsx b/apps/artboard/src/templates/kakuna.tsx index 27e5dc61..09e133b8 100644 --- a/apps/artboard/src/templates/kakuna.tsx +++ b/apps/artboard/src/templates/kakuna.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Project, @@ -14,8 +12,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; @@ -23,7 +21,7 @@ import React, { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/leafish.tsx b/apps/artboard/src/templates/leafish.tsx index c26207a1..837885f5 100644 --- a/apps/artboard/src/templates/leafish.tsx +++ b/apps/artboard/src/templates/leafish.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Project, @@ -14,8 +12,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, hexToRgb, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; @@ -23,7 +21,7 @@ import React, { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/nosepass.tsx b/apps/artboard/src/templates/nosepass.tsx index ccae30a7..7670d3e8 100644 --- a/apps/artboard/src/templates/nosepass.tsx +++ b/apps/artboard/src/templates/nosepass.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/onyx.tsx b/apps/artboard/src/templates/onyx.tsx index f47fe112..0bf7aca5 100644 --- a/apps/artboard/src/templates/onyx.tsx +++ b/apps/artboard/src/templates/onyx.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Project, @@ -14,8 +12,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import React, { Fragment } from "react"; @@ -23,7 +21,7 @@ import React, { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/pikachu.tsx b/apps/artboard/src/templates/pikachu.tsx index 7eb96441..48e10d7a 100644 --- a/apps/artboard/src/templates/pikachu.tsx +++ b/apps/artboard/src/templates/pikachu.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/templates/rhyhorn.tsx b/apps/artboard/src/templates/rhyhorn.tsx index 6777a64a..0429ea4b 100644 --- a/apps/artboard/src/templates/rhyhorn.tsx +++ b/apps/artboard/src/templates/rhyhorn.tsx @@ -1,10 +1,8 @@ -import { +import type { Award, Certification, CustomSection, CustomSectionGroup, - Education, - Experience, Interest, Language, Profile, @@ -15,8 +13,8 @@ import { SectionWithItem, Skill, URL, - Volunteer, } from "@reactive-resume/schema"; +import { Education, Experience, Volunteer } from "@reactive-resume/schema"; import { cn, isEmptyString, isUrl } from "@reactive-resume/utils"; import get from "lodash.get"; import { Fragment } from "react"; @@ -24,7 +22,7 @@ import { Fragment } from "react"; import { BrandIcon } from "../components/brand-icon"; import { Picture } from "../components/picture"; import { useArtboardStore } from "../store/artboard"; -import { TemplateProps } from "../types/template"; +import type { TemplateProps } from "../types/template"; const Header = () => { const basics = useArtboardStore((state) => state.resume.basics); diff --git a/apps/artboard/src/types/template.ts b/apps/artboard/src/types/template.ts index d0fbbafd..b442fb12 100644 --- a/apps/artboard/src/types/template.ts +++ b/apps/artboard/src/types/template.ts @@ -1,4 +1,4 @@ -import { SectionKey } from "@reactive-resume/schema"; +import type { SectionKey } from "@reactive-resume/schema"; export type TemplateProps = { columns: SectionKey[][]; diff --git a/apps/client/src/components/theme-switch.tsx b/apps/client/src/components/theme-switch.tsx index c23d6655..a5e923bf 100644 --- a/apps/client/src/components/theme-switch.tsx +++ b/apps/client/src/components/theme-switch.tsx @@ -1,7 +1,8 @@ import { CloudSun, Moon, Sun } from "@phosphor-icons/react"; import { useTheme } from "@reactive-resume/hooks"; import { Button } from "@reactive-resume/ui"; -import { motion, Variants } from "framer-motion"; +import type { Variants } from "framer-motion"; +import { motion } from "framer-motion"; import { useMemo } from "react"; type Props = { diff --git a/apps/client/src/constants/parallax-tilt.ts b/apps/client/src/constants/parallax-tilt.ts index 301a5006..37f8fd6e 100644 --- a/apps/client/src/constants/parallax-tilt.ts +++ b/apps/client/src/constants/parallax-tilt.ts @@ -1,4 +1,4 @@ -import { ReactParallaxTiltProps } from "react-parallax-tilt"; +import type { ReactParallaxTiltProps } from "react-parallax-tilt"; export const defaultTiltProps: ReactParallaxTiltProps = { scale: 1.05, diff --git a/apps/client/src/constants/query-keys.ts b/apps/client/src/constants/query-keys.ts index 2edf97cc..43aeab42 100644 --- a/apps/client/src/constants/query-keys.ts +++ b/apps/client/src/constants/query-keys.ts @@ -1,4 +1,4 @@ -import { QueryKey } from "@tanstack/react-query"; +import type { QueryKey } from "@tanstack/react-query"; export const USER_KEY: QueryKey = ["user"]; export const AUTH_PROVIDERS_KEY: QueryKey = ["auth", "providers"]; diff --git a/apps/client/src/hooks/use-toast.ts b/apps/client/src/hooks/use-toast.ts index abcc6d92..f727181f 100644 --- a/apps/client/src/hooks/use-toast.ts +++ b/apps/client/src/hooks/use-toast.ts @@ -1,5 +1,5 @@ import { createId } from "@paralleldrive/cuid2"; -import { ToastActionElement, ToastProps } from "@reactive-resume/ui"; +import type { ToastActionElement, ToastProps } from "@reactive-resume/ui"; import { useEffect, useState } from "react"; const TOAST_LIMIT = 1; diff --git a/apps/client/src/libs/axios.ts b/apps/client/src/libs/axios.ts index 7fb7d225..7434ead9 100644 --- a/apps/client/src/libs/axios.ts +++ b/apps/client/src/libs/axios.ts @@ -1,5 +1,6 @@ import { t } from "@lingui/macro"; -import { deepSearchAndParseDates, ErrorMessage } from "@reactive-resume/utils"; +import type { ErrorMessage } from "@reactive-resume/utils"; +import { deepSearchAndParseDates } from "@reactive-resume/utils"; import _axios from "axios"; import createAuthRefreshInterceptor from "axios-auth-refresh"; import { redirect } from "react-router"; diff --git a/apps/client/src/pages/auth/backup-otp/page.tsx b/apps/client/src/pages/auth/backup-otp/page.tsx index 200d6743..05d64d65 100644 --- a/apps/client/src/pages/auth/backup-otp/page.tsx +++ b/apps/client/src/pages/auth/backup-otp/page.tsx @@ -17,7 +17,7 @@ import { useRef } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; import { useNavigate } from "react-router"; -import { z } from "zod"; +import type { z } from "zod"; import { useBackupOtp } from "@/client/services/auth"; diff --git a/apps/client/src/pages/auth/forgot-password/page.tsx b/apps/client/src/pages/auth/forgot-password/page.tsx index 1bc11fd2..292e82ad 100644 --- a/apps/client/src/pages/auth/forgot-password/page.tsx +++ b/apps/client/src/pages/auth/forgot-password/page.tsx @@ -18,7 +18,7 @@ import { useState } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; import { useNavigate } from "react-router"; -import { z } from "zod"; +import type { z } from "zod"; import { useForgotPassword } from "@/client/services/auth"; diff --git a/apps/client/src/pages/auth/login/page.tsx b/apps/client/src/pages/auth/login/page.tsx index 4204a888..922e28ee 100644 --- a/apps/client/src/pages/auth/login/page.tsx +++ b/apps/client/src/pages/auth/login/page.tsx @@ -21,7 +21,7 @@ import { useRef } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; import { Link } from "react-router"; -import { z } from "zod"; +import type { z } from "zod"; import { useLogin } from "@/client/services/auth"; import { useFeatureFlags } from "@/client/services/feature"; diff --git a/apps/client/src/pages/auth/register/page.tsx b/apps/client/src/pages/auth/register/page.tsx index 64451676..98301e3f 100644 --- a/apps/client/src/pages/auth/register/page.tsx +++ b/apps/client/src/pages/auth/register/page.tsx @@ -21,7 +21,7 @@ import { useRef } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; import { Link, useNavigate } from "react-router"; -import { z } from "zod"; +import type { z } from "zod"; import { useRegister } from "@/client/services/auth"; import { useFeatureFlags } from "@/client/services/feature"; diff --git a/apps/client/src/pages/auth/reset-password/page.tsx b/apps/client/src/pages/auth/reset-password/page.tsx index ee868b4a..67f9ba6d 100644 --- a/apps/client/src/pages/auth/reset-password/page.tsx +++ b/apps/client/src/pages/auth/reset-password/page.tsx @@ -17,7 +17,7 @@ import { useEffect, useRef } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; import { useNavigate, useSearchParams } from "react-router"; -import { z } from "zod"; +import type { z } from "zod"; import { useResetPassword } from "@/client/services/auth"; diff --git a/apps/client/src/pages/auth/verify-otp/page.tsx b/apps/client/src/pages/auth/verify-otp/page.tsx index 5f01e498..d9bf6a4a 100644 --- a/apps/client/src/pages/auth/verify-otp/page.tsx +++ b/apps/client/src/pages/auth/verify-otp/page.tsx @@ -17,7 +17,7 @@ import { useRef } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; import { Link, useNavigate } from "react-router"; -import { z } from "zod"; +import type { z } from "zod"; import { useVerifyOtp } from "@/client/services/auth"; diff --git a/apps/client/src/pages/builder/page.tsx b/apps/client/src/pages/builder/page.tsx index babae226..0d00afe8 100644 --- a/apps/client/src/pages/builder/page.tsx +++ b/apps/client/src/pages/builder/page.tsx @@ -1,8 +1,9 @@ import { t } from "@lingui/macro"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { useCallback, useEffect } from "react"; import { Helmet } from "react-helmet-async"; -import { LoaderFunction, redirect } from "react-router"; +import type { LoaderFunction } from "react-router"; +import { redirect } from "react-router"; import { queryClient } from "@/client/libs/query-client"; import { findResumeById } from "@/client/services/resume"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx index 04973795..fdd12c31 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx index 93c30e28..cd51f45b 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx index e47fc459..849158dd 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx @@ -1,7 +1,8 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { t } from "@lingui/macro"; import { X } from "@phosphor-icons/react"; -import { CustomSection, customSectionSchema, defaultCustomSection } from "@reactive-resume/schema"; +import type { CustomSection } from "@reactive-resume/schema"; +import { customSectionSchema, defaultCustomSection } from "@reactive-resume/schema"; import { Badge, BadgeInput, @@ -17,7 +18,7 @@ import { import { AnimatePresence, motion } from "framer-motion"; import { useState } from "react"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; import { useDialog } from "@/client/stores/dialog"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx index 85550053..b2580435 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx index ec522b95..9477d7ee 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx index b61dc045..fe741b80 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx @@ -16,7 +16,7 @@ import { import { AnimatePresence, motion } from "framer-motion"; import { useState } from "react"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { SectionDialog } from "../sections/shared/section-dialog"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx index 5176ad33..5135676a 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx @@ -11,7 +11,7 @@ import { Slider, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { SectionDialog } from "../sections/shared/section-dialog"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx index ebbd6f3e..2fb968db 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx @@ -12,7 +12,7 @@ import { Input, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { BrandIcon } from "@/client/components/brand-icon"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx index 923aa226..d4f6aed5 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx @@ -17,7 +17,7 @@ import { import { AnimatePresence, motion } from "framer-motion"; import { useState } from "react"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx index c1c1651a..e3d0a7a1 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx index 617e58a9..687655d2 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx index cda2e5eb..aec541eb 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx @@ -17,7 +17,7 @@ import { import { AnimatePresence, motion } from "framer-motion"; import { useState } from "react"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { SectionDialog } from "../sections/shared/section-dialog"; diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx index 4bfa244a..b2c69ffb 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx @@ -11,7 +11,7 @@ import { RichInput, } from "@reactive-resume/ui"; import { useForm } from "react-hook-form"; -import { z } from "zod"; +import type { z } from "zod"; import { AiActions } from "@/client/components/ai-actions"; diff --git a/apps/client/src/pages/builder/sidebars/left/index.tsx b/apps/client/src/pages/builder/sidebars/left/index.tsx index 9262b1b4..81c277d3 100644 --- a/apps/client/src/pages/builder/sidebars/left/index.tsx +++ b/apps/client/src/pages/builder/sidebars/left/index.tsx @@ -1,6 +1,6 @@ import { t } from "@lingui/macro"; import { Plus, PlusCircle } from "@phosphor-icons/react"; -import { +import type { Award, Certification, CustomSection, diff --git a/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx b/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx index edba64c8..c092645b 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx @@ -1,7 +1,7 @@ import { t, Trans } from "@lingui/macro"; import { createId } from "@paralleldrive/cuid2"; import { DotsSixVertical, Envelope, Plus, X } from "@phosphor-icons/react"; -import { CustomField as ICustomField } from "@reactive-resume/schema"; +import type { CustomField as ICustomField } from "@reactive-resume/schema"; import { Button, Input, diff --git a/apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx b/apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx index 356f00cf..d8d6a3a6 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx @@ -1,13 +1,6 @@ import { t } from "@lingui/macro"; -import { - AspectRatio, - Checkbox, - Input, - Label, - ToggleGroup, - ToggleGroupItem, - Tooltip, -} from "@reactive-resume/ui"; +import type { AspectRatio } from "@reactive-resume/ui"; +import { Checkbox, Input, Label, ToggleGroup, ToggleGroupItem, Tooltip } from "@reactive-resume/ui"; import { useMemo } from "react"; import { useResumeStore } from "@/client/stores/resume"; diff --git a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx index 7d016854..9bbbbf0a 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-base.tsx @@ -1,7 +1,7 @@ +import type { DragEndEvent } from "@dnd-kit/core"; import { closestCenter, DndContext, - DragEndEvent, KeyboardSensor, PointerSensor, useSensor, @@ -16,7 +16,7 @@ import { } from "@dnd-kit/sortable"; import { t } from "@lingui/macro"; import { Plus } from "@phosphor-icons/react"; -import { SectionItem, SectionKey, SectionWithItem } from "@reactive-resume/schema"; +import type { SectionItem, SectionKey, SectionWithItem } from "@reactive-resume/schema"; import { Button } from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; import { AnimatePresence, motion } from "framer-motion"; diff --git a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx index 5d610bd7..dada721a 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx @@ -2,7 +2,7 @@ import { t } from "@lingui/macro"; import { createId } from "@paralleldrive/cuid2"; import { CopySimple, PencilSimple, Plus } from "@phosphor-icons/react"; import { VisuallyHidden } from "@radix-ui/react-visually-hidden"; -import { SectionItem, SectionWithItem } from "@reactive-resume/schema"; +import type { SectionItem, SectionWithItem } from "@reactive-resume/schema"; import { AlertDialog, AlertDialogAction, @@ -25,9 +25,10 @@ import { import { produce } from "immer"; import get from "lodash.get"; import { useEffect } from "react"; -import { UseFormReturn } from "react-hook-form"; +import type { UseFormReturn } from "react-hook-form"; -import { DialogName, useDialog } from "@/client/stores/dialog"; +import type { DialogName } from "@/client/stores/dialog"; +import { useDialog } from "@/client/stores/dialog"; import { useResumeStore } from "@/client/stores/resume"; type Props = { diff --git a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-icon.tsx b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-icon.tsx index 67f44b07..ef3aa483 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-icon.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-icon.tsx @@ -1,3 +1,4 @@ +import type { IconProps } from "@phosphor-icons/react"; import { Article, Books, @@ -7,7 +8,6 @@ import { GameController, GraduationCap, HandHeart, - IconProps, Medal, PuzzlePiece, ShareNetwork, @@ -15,8 +15,10 @@ import { User, Users, } from "@phosphor-icons/react"; -import { defaultSection, SectionKey, SectionWithItem } from "@reactive-resume/schema"; -import { Button, ButtonProps, Tooltip } from "@reactive-resume/ui"; +import type { SectionKey, SectionWithItem } from "@reactive-resume/schema"; +import { defaultSection } from "@reactive-resume/schema"; +import type { ButtonProps } from "@reactive-resume/ui"; +import { Button, Tooltip } from "@reactive-resume/ui"; import get from "lodash.get"; import { useResumeStore } from "@/client/stores/resume"; diff --git a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx index ee2c9476..dc605205 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx @@ -10,7 +10,8 @@ import { Plus, TrashSimple, } from "@phosphor-icons/react"; -import { defaultSections, SectionKey, SectionWithItem } from "@reactive-resume/schema"; +import type { SectionKey, SectionWithItem } from "@reactive-resume/schema"; +import { defaultSections } from "@reactive-resume/schema"; import { Button, DropdownMenu, diff --git a/apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx b/apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx index 3980223a..70661d0b 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx @@ -1,6 +1,7 @@ import { t } from "@lingui/macro"; import { Tag } from "@phosphor-icons/react"; -import { URL, urlSchema } from "@reactive-resume/schema"; +import type { URL } from "@reactive-resume/schema"; +import { urlSchema } from "@reactive-resume/schema"; import { Button, Input, diff --git a/apps/client/src/pages/builder/sidebars/right/sections/layout.tsx b/apps/client/src/pages/builder/sidebars/right/sections/layout.tsx index 29cc69d5..f29f68c9 100644 --- a/apps/client/src/pages/builder/sidebars/right/sections/layout.tsx +++ b/apps/client/src/pages/builder/sidebars/right/sections/layout.tsx @@ -1,10 +1,8 @@ +import type { DragEndEvent, DragOverEvent, DragStartEvent } from "@dnd-kit/core"; import { closestCenter, DndContext, - DragEndEvent, - DragOverEvent, DragOverlay, - DragStartEvent, KeyboardSensor, PointerSensor, useDroppable, @@ -22,13 +20,8 @@ import { t } from "@lingui/macro"; import { ArrowCounterClockwise, DotsSixVertical, Plus, TrashSimple } from "@phosphor-icons/react"; import { defaultMetadata } from "@reactive-resume/schema"; import { Button, Portal, Tooltip } from "@reactive-resume/ui"; -import { - cn, - LayoutLocator, - moveItemInLayout, - parseLayoutLocator, - SortablePayload, -} from "@reactive-resume/utils"; +import type { LayoutLocator, SortablePayload } from "@reactive-resume/utils"; +import { cn, moveItemInLayout, parseLayoutLocator } from "@reactive-resume/utils"; import get from "lodash.get"; import { useState } from "react"; diff --git a/apps/client/src/pages/builder/sidebars/right/sections/typography.tsx b/apps/client/src/pages/builder/sidebars/right/sections/typography.tsx index 21273e47..60d013ae 100644 --- a/apps/client/src/pages/builder/sidebars/right/sections/typography.tsx +++ b/apps/client/src/pages/builder/sidebars/right/sections/typography.tsx @@ -1,7 +1,8 @@ /* eslint-disable lingui/no-unlocalized-strings */ import { t } from "@lingui/macro"; -import { Button, Combobox, ComboboxOption, Label, Slider, Switch } from "@reactive-resume/ui"; +import type { ComboboxOption } from "@reactive-resume/ui"; +import { Button, Combobox, Label, Slider, Switch } from "@reactive-resume/ui"; import { cn, fonts } from "@reactive-resume/utils"; import { useCallback, useEffect, useState } from "react"; import webfontloader from "webfontloader"; diff --git a/apps/client/src/pages/builder/sidebars/right/shared/section-icon.tsx b/apps/client/src/pages/builder/sidebars/right/shared/section-icon.tsx index 38b7b8a1..9acd6e8d 100644 --- a/apps/client/src/pages/builder/sidebars/right/shared/section-icon.tsx +++ b/apps/client/src/pages/builder/sidebars/right/shared/section-icon.tsx @@ -1,8 +1,8 @@ +import type { IconProps } from "@phosphor-icons/react"; import { Code, DiamondsFour, DownloadSimple, - IconProps, Info, Layout, Note, @@ -13,7 +13,8 @@ import { Translate, TrendUp, } from "@phosphor-icons/react"; -import { Button, ButtonProps, Tooltip } from "@reactive-resume/ui"; +import type { ButtonProps } from "@reactive-resume/ui"; +import { Button, Tooltip } from "@reactive-resume/ui"; export type MetadataKey = | "template" diff --git a/apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx b/apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx index 74992bbc..d6f1d77c 100644 --- a/apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx +++ b/apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx @@ -1,16 +1,14 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { t } from "@lingui/macro"; import { Check, DownloadSimple } from "@phosphor-icons/react"; +import type { JsonResume, LinkedIn, ReactiveResumeV3 } from "@reactive-resume/parser"; import { - JsonResume, JsonResumeParser, - LinkedIn, LinkedInParser, ReactiveResumeParser, - ReactiveResumeV3, ReactiveResumeV3Parser, } from "@reactive-resume/parser"; -import { ResumeData } from "@reactive-resume/schema"; +import type { ResumeData } from "@reactive-resume/schema"; import { Button, Dialog, diff --git a/apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx b/apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx index c608e707..113baf7d 100644 --- a/apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx +++ b/apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx @@ -1,5 +1,5 @@ import { t } from "@lingui/macro"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { AlertDialog, AlertDialogAction, diff --git a/apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx b/apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx index 2621e11f..6faa4749 100644 --- a/apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx +++ b/apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx @@ -1,7 +1,8 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { t } from "@lingui/macro"; import { CaretDown, Flask, MagicWand, Plus } from "@phosphor-icons/react"; -import { createResumeSchema, ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; +import { createResumeSchema } from "@reactive-resume/dto"; import { idSchema, sampleResume } from "@reactive-resume/schema"; import { AlertDialog, diff --git a/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx b/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx index e33835bc..fab3ebe7 100644 --- a/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx +++ b/apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx @@ -7,7 +7,7 @@ import { PencilSimple, TrashSimple, } from "@phosphor-icons/react"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { DropdownMenu, DropdownMenuContent, diff --git a/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx b/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx index 57fb8f26..d60b7976 100644 --- a/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx +++ b/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx @@ -1,6 +1,6 @@ import { t } from "@lingui/macro"; import { Plus } from "@phosphor-icons/react"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { KeyboardShortcut } from "@reactive-resume/ui"; import { useDialog } from "@/client/stores/dialog"; diff --git a/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx b/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx index aa11d032..d38c7392 100644 --- a/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx +++ b/apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx @@ -8,7 +8,7 @@ import { PencilSimple, TrashSimple, } from "@phosphor-icons/react"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { Button, ContextMenu, diff --git a/apps/client/src/pages/dashboard/settings/_sections/account.tsx b/apps/client/src/pages/dashboard/settings/_sections/account.tsx index 6e904964..dae3ff28 100644 --- a/apps/client/src/pages/dashboard/settings/_sections/account.tsx +++ b/apps/client/src/pages/dashboard/settings/_sections/account.tsx @@ -1,7 +1,8 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { t } from "@lingui/macro"; import { Check, UploadSimple, Warning } from "@phosphor-icons/react"; -import { UpdateUserDto, updateUserSchema } from "@reactive-resume/dto"; +import type { UpdateUserDto } from "@reactive-resume/dto"; +import { updateUserSchema } from "@reactive-resume/dto"; import { Button, buttonVariants, diff --git a/apps/client/src/pages/public/page.tsx b/apps/client/src/pages/public/page.tsx index b1f08b76..d0027d86 100644 --- a/apps/client/src/pages/public/page.tsx +++ b/apps/client/src/pages/public/page.tsx @@ -1,11 +1,12 @@ import { t } from "@lingui/macro"; import { CircleNotch, FilePdf } from "@phosphor-icons/react"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { Button } from "@reactive-resume/ui"; import { pageSizeMap } from "@reactive-resume/utils"; import { useCallback, useEffect, useRef } from "react"; import { Helmet } from "react-helmet-async"; -import { Link, LoaderFunction, redirect, useLoaderData } from "react-router"; +import type { LoaderFunction } from "react-router"; +import { Link, redirect, useLoaderData } from "react-router"; import { Icon } from "@/client/components/icon"; import { ThemeSwitch } from "@/client/components/theme-switch"; diff --git a/apps/client/src/router/loaders/auth.ts b/apps/client/src/router/loaders/auth.ts index 021a83b5..aef3cf09 100644 --- a/apps/client/src/router/loaders/auth.ts +++ b/apps/client/src/router/loaders/auth.ts @@ -1,5 +1,7 @@ -import { authResponseSchema, UserDto } from "@reactive-resume/dto"; -import { LoaderFunction, redirect } from "react-router"; +import type { UserDto } from "@reactive-resume/dto"; +import { authResponseSchema } from "@reactive-resume/dto"; +import type { LoaderFunction } from "react-router"; +import { redirect } from "react-router"; import { USER_KEY } from "@/client/constants/query-keys"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/auth/email-verification/resend-verify-email.ts b/apps/client/src/services/auth/email-verification/resend-verify-email.ts index 9e562f26..9b274de2 100644 --- a/apps/client/src/services/auth/email-verification/resend-verify-email.ts +++ b/apps/client/src/services/auth/email-verification/resend-verify-email.ts @@ -1,6 +1,6 @@ -import { MessageDto } from "@reactive-resume/dto"; +import type { MessageDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/email-verification/verify-email.ts b/apps/client/src/services/auth/email-verification/verify-email.ts index 4d4429a0..d15e08b2 100644 --- a/apps/client/src/services/auth/email-verification/verify-email.ts +++ b/apps/client/src/services/auth/email-verification/verify-email.ts @@ -1,6 +1,6 @@ -import { MessageDto } from "@reactive-resume/dto"; +import type { MessageDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/login.ts b/apps/client/src/services/auth/login.ts index 41c90ee2..2d5e08c6 100644 --- a/apps/client/src/services/auth/login.ts +++ b/apps/client/src/services/auth/login.ts @@ -1,6 +1,6 @@ -import { AuthResponseDto, LoginDto } from "@reactive-resume/dto"; +import type { AuthResponseDto, LoginDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { useNavigate } from "react-router"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/password-recovery/forgot-password.ts b/apps/client/src/services/auth/password-recovery/forgot-password.ts index 76e9b405..1ef72b71 100644 --- a/apps/client/src/services/auth/password-recovery/forgot-password.ts +++ b/apps/client/src/services/auth/password-recovery/forgot-password.ts @@ -1,6 +1,6 @@ -import { ForgotPasswordDto } from "@reactive-resume/dto"; +import type { ForgotPasswordDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/password-recovery/reset-password.ts b/apps/client/src/services/auth/password-recovery/reset-password.ts index afb5fcb8..f1935cf0 100644 --- a/apps/client/src/services/auth/password-recovery/reset-password.ts +++ b/apps/client/src/services/auth/password-recovery/reset-password.ts @@ -1,6 +1,6 @@ -import { ResetPasswordDto } from "@reactive-resume/dto"; +import type { ResetPasswordDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/providers.ts b/apps/client/src/services/auth/providers.ts index 70ce68a7..f8219490 100644 --- a/apps/client/src/services/auth/providers.ts +++ b/apps/client/src/services/auth/providers.ts @@ -1,4 +1,4 @@ -import { AuthProvidersDto } from "@reactive-resume/dto"; +import type { AuthProvidersDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; import { AUTH_PROVIDERS_KEY } from "@/client/constants/query-keys"; diff --git a/apps/client/src/services/auth/refresh.ts b/apps/client/src/services/auth/refresh.ts index d255a577..51cceaa9 100644 --- a/apps/client/src/services/auth/refresh.ts +++ b/apps/client/src/services/auth/refresh.ts @@ -1,5 +1,5 @@ -import { MessageDto } from "@reactive-resume/dto"; -import { AxiosInstance, AxiosResponse } from "axios"; +import type { MessageDto } from "@reactive-resume/dto"; +import type { AxiosInstance, AxiosResponse } from "axios"; export const refreshToken = async (axios: AxiosInstance) => { const response = await axios.post>("/auth/refresh"); diff --git a/apps/client/src/services/auth/register.ts b/apps/client/src/services/auth/register.ts index 8a9569b6..f37d9fce 100644 --- a/apps/client/src/services/auth/register.ts +++ b/apps/client/src/services/auth/register.ts @@ -1,6 +1,6 @@ -import { AuthResponseDto, RegisterDto } from "@reactive-resume/dto"; +import type { AuthResponseDto, RegisterDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/auth/two-factor-authentication/backup-otp.tsx b/apps/client/src/services/auth/two-factor-authentication/backup-otp.tsx index ec88cdbd..15ce43e0 100644 --- a/apps/client/src/services/auth/two-factor-authentication/backup-otp.tsx +++ b/apps/client/src/services/auth/two-factor-authentication/backup-otp.tsx @@ -1,6 +1,6 @@ -import { AuthResponseDto, TwoFactorBackupDto } from "@reactive-resume/dto"; +import type { AuthResponseDto, TwoFactorBackupDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/auth/two-factor-authentication/disable.ts b/apps/client/src/services/auth/two-factor-authentication/disable.ts index 198ee15e..526cd2c9 100644 --- a/apps/client/src/services/auth/two-factor-authentication/disable.ts +++ b/apps/client/src/services/auth/two-factor-authentication/disable.ts @@ -1,6 +1,6 @@ -import { MessageDto } from "@reactive-resume/dto"; +import type { MessageDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/two-factor-authentication/enable.ts b/apps/client/src/services/auth/two-factor-authentication/enable.ts index aa9fbf1f..4ae56a4f 100644 --- a/apps/client/src/services/auth/two-factor-authentication/enable.ts +++ b/apps/client/src/services/auth/two-factor-authentication/enable.ts @@ -1,6 +1,6 @@ -import { BackupCodesDto, TwoFactorDto } from "@reactive-resume/dto"; +import type { BackupCodesDto, TwoFactorDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/two-factor-authentication/setup.ts b/apps/client/src/services/auth/two-factor-authentication/setup.ts index 9a441767..8ebfada9 100644 --- a/apps/client/src/services/auth/two-factor-authentication/setup.ts +++ b/apps/client/src/services/auth/two-factor-authentication/setup.ts @@ -1,6 +1,6 @@ -import { MessageDto } from "@reactive-resume/dto"; +import type { MessageDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/auth/two-factor-authentication/verify-otp.tsx b/apps/client/src/services/auth/two-factor-authentication/verify-otp.tsx index 798d547c..37fb0d64 100644 --- a/apps/client/src/services/auth/two-factor-authentication/verify-otp.tsx +++ b/apps/client/src/services/auth/two-factor-authentication/verify-otp.tsx @@ -1,6 +1,6 @@ -import { AuthResponseDto, TwoFactorDto } from "@reactive-resume/dto"; +import type { AuthResponseDto, TwoFactorDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/auth/update-password.ts b/apps/client/src/services/auth/update-password.ts index 25364be7..cfe281a2 100644 --- a/apps/client/src/services/auth/update-password.ts +++ b/apps/client/src/services/auth/update-password.ts @@ -1,6 +1,6 @@ -import { MessageDto, UpdatePasswordDto } from "@reactive-resume/dto"; +import type { MessageDto, UpdatePasswordDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/feature/flags.ts b/apps/client/src/services/feature/flags.ts index 7d7de4f0..cca61a67 100644 --- a/apps/client/src/services/feature/flags.ts +++ b/apps/client/src/services/feature/flags.ts @@ -1,4 +1,4 @@ -import { FeatureDto } from "@reactive-resume/dto"; +import type { FeatureDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/resume/contributors.ts b/apps/client/src/services/resume/contributors.ts index 2186d853..0dee44ee 100644 --- a/apps/client/src/services/resume/contributors.ts +++ b/apps/client/src/services/resume/contributors.ts @@ -1,4 +1,4 @@ -import { ContributorDto } from "@reactive-resume/dto"; +import type { ContributorDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/resume/create.ts b/apps/client/src/services/resume/create.ts index bb8268df..9a5463c4 100644 --- a/apps/client/src/services/resume/create.ts +++ b/apps/client/src/services/resume/create.ts @@ -1,6 +1,6 @@ -import { CreateResumeDto, ResumeDto } from "@reactive-resume/dto"; +import type { CreateResumeDto, ResumeDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/resume/delete.ts b/apps/client/src/services/resume/delete.ts index 3af0f1ea..554f7b85 100644 --- a/apps/client/src/services/resume/delete.ts +++ b/apps/client/src/services/resume/delete.ts @@ -1,6 +1,6 @@ -import { DeleteResumeDto, ResumeDto } from "@reactive-resume/dto"; +import type { DeleteResumeDto, ResumeDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/resume/import.ts b/apps/client/src/services/resume/import.ts index 4cb82540..d3d1c537 100644 --- a/apps/client/src/services/resume/import.ts +++ b/apps/client/src/services/resume/import.ts @@ -1,6 +1,6 @@ -import { ImportResumeDto, ResumeDto } from "@reactive-resume/dto"; +import type { ImportResumeDto, ResumeDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/resume/lock.ts b/apps/client/src/services/resume/lock.ts index a03941cd..46637993 100644 --- a/apps/client/src/services/resume/lock.ts +++ b/apps/client/src/services/resume/lock.ts @@ -1,4 +1,4 @@ -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/resume/preview.ts b/apps/client/src/services/resume/preview.ts index 8cacb5eb..3fff4539 100644 --- a/apps/client/src/services/resume/preview.ts +++ b/apps/client/src/services/resume/preview.ts @@ -1,4 +1,4 @@ -import { UrlDto } from "@reactive-resume/dto"; +import type { UrlDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; import { RESUME_PREVIEW_KEY } from "@/client/constants/query-keys"; diff --git a/apps/client/src/services/resume/print.tsx b/apps/client/src/services/resume/print.tsx index bf2e6ea7..5c443476 100644 --- a/apps/client/src/services/resume/print.tsx +++ b/apps/client/src/services/resume/print.tsx @@ -1,5 +1,5 @@ import { t } from "@lingui/macro"; -import { UrlDto } from "@reactive-resume/dto"; +import type { UrlDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; import { toast } from "@/client/hooks/use-toast"; diff --git a/apps/client/src/services/resume/resume.ts b/apps/client/src/services/resume/resume.ts index e6da813d..201fd133 100644 --- a/apps/client/src/services/resume/resume.ts +++ b/apps/client/src/services/resume/resume.ts @@ -1,4 +1,4 @@ -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/resume/resumes.ts b/apps/client/src/services/resume/resumes.ts index 5dd9dac8..bf973af8 100644 --- a/apps/client/src/services/resume/resumes.ts +++ b/apps/client/src/services/resume/resumes.ts @@ -1,6 +1,6 @@ -import { ResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { RESUMES_KEY } from "@/client/constants/query-keys"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/resume/statistics.ts b/apps/client/src/services/resume/statistics.ts index 7dc3f829..c4ac944b 100644 --- a/apps/client/src/services/resume/statistics.ts +++ b/apps/client/src/services/resume/statistics.ts @@ -1,4 +1,4 @@ -import { StatisticsDto } from "@reactive-resume/dto"; +import type { StatisticsDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; import { RESUME_KEY } from "@/client/constants/query-keys"; diff --git a/apps/client/src/services/resume/translation.ts b/apps/client/src/services/resume/translation.ts index 39efcf91..1bb350ae 100644 --- a/apps/client/src/services/resume/translation.ts +++ b/apps/client/src/services/resume/translation.ts @@ -1,4 +1,4 @@ -import { Language } from "@reactive-resume/utils"; +import type { Language } from "@reactive-resume/utils"; import { useQuery } from "@tanstack/react-query"; import { LANGUAGES_KEY } from "@/client/constants/query-keys"; diff --git a/apps/client/src/services/resume/update.tsx b/apps/client/src/services/resume/update.tsx index 1d181962..e0258bf5 100644 --- a/apps/client/src/services/resume/update.tsx +++ b/apps/client/src/services/resume/update.tsx @@ -1,6 +1,6 @@ -import { ResumeDto, UpdateResumeDto } from "@reactive-resume/dto"; +import type { ResumeDto, UpdateResumeDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import debounce from "lodash.debounce"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/storage/upload-image.ts b/apps/client/src/services/storage/upload-image.ts index 0e8b9fa7..e5fecf00 100644 --- a/apps/client/src/services/storage/upload-image.ts +++ b/apps/client/src/services/storage/upload-image.ts @@ -1,5 +1,5 @@ import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/services/user/delete-user.ts b/apps/client/src/services/user/delete-user.ts index 53fd7f1e..cba8c170 100644 --- a/apps/client/src/services/user/delete-user.ts +++ b/apps/client/src/services/user/delete-user.ts @@ -1,6 +1,6 @@ -import { MessageDto } from "@reactive-resume/dto"; +import type { MessageDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/user/update-user.ts b/apps/client/src/services/user/update-user.ts index c81fa014..a7be00e5 100644 --- a/apps/client/src/services/user/update-user.ts +++ b/apps/client/src/services/user/update-user.ts @@ -1,6 +1,6 @@ -import { UpdateUserDto, UserDto } from "@reactive-resume/dto"; +import type { UpdateUserDto, UserDto } from "@reactive-resume/dto"; import { useMutation } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { axios } from "@/client/libs/axios"; import { queryClient } from "@/client/libs/query-client"; diff --git a/apps/client/src/services/user/user.ts b/apps/client/src/services/user/user.ts index f45bf23b..d70f5343 100644 --- a/apps/client/src/services/user/user.ts +++ b/apps/client/src/services/user/user.ts @@ -1,6 +1,6 @@ -import { UserDto } from "@reactive-resume/dto"; +import type { UserDto } from "@reactive-resume/dto"; import { useQuery } from "@tanstack/react-query"; -import { AxiosResponse } from "axios"; +import type { AxiosResponse } from "axios"; import { useEffect } from "react"; import { axios } from "@/client/libs/axios"; diff --git a/apps/client/src/stores/auth.ts b/apps/client/src/stores/auth.ts index 1974ddf4..f6ea34a2 100644 --- a/apps/client/src/stores/auth.ts +++ b/apps/client/src/stores/auth.ts @@ -1,4 +1,4 @@ -import { UserDto } from "@reactive-resume/dto"; +import type { UserDto } from "@reactive-resume/dto"; import { create } from "zustand"; import { persist } from "zustand/middleware"; diff --git a/apps/client/src/stores/dialog.ts b/apps/client/src/stores/dialog.ts index 3bb10a00..3bfff5e5 100644 --- a/apps/client/src/stores/dialog.ts +++ b/apps/client/src/stores/dialog.ts @@ -1,4 +1,4 @@ -import { SectionKey } from "@reactive-resume/schema"; +import type { SectionKey } from "@reactive-resume/schema"; import { create } from "zustand"; export type DialogName = "resume" | "lock" | "import" | "two-factor" | SectionKey; diff --git a/apps/client/src/stores/resume.ts b/apps/client/src/stores/resume.ts index 1dfc1a91..74fc0df8 100644 --- a/apps/client/src/stores/resume.ts +++ b/apps/client/src/stores/resume.ts @@ -1,10 +1,12 @@ import { t } from "@lingui/macro"; import { createId } from "@paralleldrive/cuid2"; -import { ResumeDto } from "@reactive-resume/dto"; -import { CustomSectionGroup, defaultSection, SectionKey } from "@reactive-resume/schema"; +import type { ResumeDto } from "@reactive-resume/dto"; +import type { CustomSectionGroup, SectionKey } from "@reactive-resume/schema"; +import { defaultSection } from "@reactive-resume/schema"; import { removeItemInLayout } from "@reactive-resume/utils"; import _set from "lodash.set"; -import { temporal, TemporalState } from "zundo"; +import type { TemporalState } from "zundo"; +import { temporal } from "zundo"; import { create } from "zustand"; import { devtools } from "zustand/middleware"; import { immer } from "zustand/middleware/immer"; diff --git a/apps/server/src/auth/utils/cookie.ts b/apps/server/src/auth/utils/cookie.ts index 5cc522a2..1bb2ecb8 100644 --- a/apps/server/src/auth/utils/cookie.ts +++ b/apps/server/src/auth/utils/cookie.ts @@ -1,4 +1,4 @@ -import { CookieOptions } from "express"; +import type { CookieOptions } from "express"; export const getCookieOptions = (grantType: "access" | "refresh"): CookieOptions => { // Options For Access Token diff --git a/apps/server/src/main.ts b/apps/server/src/main.ts index cc063926..2896e216 100644 --- a/apps/server/src/main.ts +++ b/apps/server/src/main.ts @@ -1,7 +1,7 @@ import { Logger } from "@nestjs/common"; import { ConfigService } from "@nestjs/config"; import { NestFactory } from "@nestjs/core"; -import { NestExpressApplication } from "@nestjs/platform-express"; +import type { NestExpressApplication } from "@nestjs/platform-express"; import { DocumentBuilder, SwaggerModule } from "@nestjs/swagger"; import cookieParser from "cookie-parser"; import session from "express-session"; @@ -9,7 +9,7 @@ import helmet from "helmet"; import { patchNestJsSwagger } from "nestjs-zod"; import { AppModule } from "./app.module"; -import { Config } from "./config/schema"; +import type { Config } from "./config/schema"; patchNestJsSwagger(); @@ -17,8 +17,13 @@ async function bootstrap() { const app = await NestFactory.create(AppModule, { logger: process.env.NODE_ENV === "development" ? ["debug"] : ["error", "warn", "log"], }); + const configService = app.get(ConfigService); + const accessTokenSecret = configService.getOrThrow("ACCESS_TOKEN_SECRET"); + const publicUrl = configService.getOrThrow("PUBLIC_URL"); + const isHTTPS = publicUrl.startsWith("https://") ?? false; + // Cookie Parser app.use(cookieParser()); @@ -27,21 +32,16 @@ async function bootstrap() { session({ resave: false, saveUninitialized: false, - secret: configService.getOrThrow("ACCESS_TOKEN_SECRET"), - cookie: { httpOnly: true, secure: process.env.NODE_ENV === "production" }, + secret: accessTokenSecret, + cookie: { httpOnly: true, secure: isHTTPS }, }), ); // CORS - app.enableCors({ - credentials: true, - origin: process.env.NODE_ENV === "production", - }); + app.enableCors({ credentials: true, origin: isHTTPS }); // Helmet - enabled only in production - if (process.env.NODE_ENV === "production") { - app.use(helmet({ contentSecurityPolicy: false })); - } + if (isHTTPS) app.use(helmet({ contentSecurityPolicy: false })); // Global Prefix const globalPrefix = "api"; diff --git a/apps/server/src/resume/decorators/resume.decorator.ts b/apps/server/src/resume/decorators/resume.decorator.ts index 32ef573d..17410465 100644 --- a/apps/server/src/resume/decorators/resume.decorator.ts +++ b/apps/server/src/resume/decorators/resume.decorator.ts @@ -1,5 +1,6 @@ -import { createParamDecorator, ExecutionContext } from "@nestjs/common"; -import { ResumeDto } from "@reactive-resume/dto"; +import type { ExecutionContext } from "@nestjs/common"; +import { createParamDecorator } from "@nestjs/common"; +import type { ResumeDto } from "@reactive-resume/dto"; export const Resume = createParamDecorator( (data: keyof ResumeDto | undefined, ctx: ExecutionContext) => { diff --git a/apps/server/src/types/express.d.ts b/apps/server/src/types/express.d.ts index 9f8df6bb..331aba32 100644 --- a/apps/server/src/types/express.d.ts +++ b/apps/server/src/types/express.d.ts @@ -1,4 +1,4 @@ -import { Resume, User as PrismaUser } from "@prisma/client"; +import type { Resume, User as PrismaUser } from "@prisma/client"; declare global { namespace Express { diff --git a/apps/server/src/user/decorators/user.decorator.ts b/apps/server/src/user/decorators/user.decorator.ts index 1c875d1c..b970b70e 100644 --- a/apps/server/src/user/decorators/user.decorator.ts +++ b/apps/server/src/user/decorators/user.decorator.ts @@ -1,5 +1,6 @@ -import { createParamDecorator, ExecutionContext } from "@nestjs/common"; -import { UserWithSecrets } from "@reactive-resume/dto"; +import type { ExecutionContext } from "@nestjs/common"; +import { createParamDecorator } from "@nestjs/common"; +import type { UserWithSecrets } from "@reactive-resume/dto"; export const User = createParamDecorator( (data: keyof UserWithSecrets | undefined, ctx: ExecutionContext) => { diff --git a/libs/hooks/src/hooks/use-form-field.ts b/libs/hooks/src/hooks/use-form-field.ts index 3806ec85..a64615ca 100644 --- a/libs/hooks/src/hooks/use-form-field.ts +++ b/libs/hooks/src/hooks/use-form-field.ts @@ -1,5 +1,6 @@ import { createContext, useContext } from "react"; -import { FieldPath, FieldValues, useFormContext } from "react-hook-form"; +import type { FieldPath, FieldValues } from "react-hook-form"; +import { useFormContext } from "react-hook-form"; type FormFieldContextValue< TFieldValues extends FieldValues = FieldValues, diff --git a/libs/parser/src/interfaces/parser.ts b/libs/parser/src/interfaces/parser.ts index 685cd12b..172065c0 100644 --- a/libs/parser/src/interfaces/parser.ts +++ b/libs/parser/src/interfaces/parser.ts @@ -1,6 +1,6 @@ -import { ResumeData } from "@reactive-resume/schema"; -import { ZodDto } from "nestjs-zod/dto"; -import { Schema } from "zod"; +import type { ResumeData } from "@reactive-resume/schema"; +import type { ZodDto } from "nestjs-zod/dto"; +import type { Schema } from "zod"; export type Parser = { schema?: Schema; diff --git a/libs/parser/src/json-resume/index.ts b/libs/parser/src/json-resume/index.ts index 9b8abea7..7580259c 100644 --- a/libs/parser/src/json-resume/index.ts +++ b/libs/parser/src/json-resume/index.ts @@ -13,11 +13,12 @@ import { defaultSkill, defaultVolunteer, } from "@reactive-resume/schema"; -import { Json } from "@reactive-resume/utils"; -import { Schema } from "zod"; +import type { Json } from "@reactive-resume/utils"; +import type { Schema } from "zod"; -import { Parser } from "../interfaces/parser"; -import { JsonResume, jsonResumeSchema } from "./schema"; +import type { Parser } from "../interfaces/parser"; +import type { JsonResume } from "./schema"; +import { jsonResumeSchema } from "./schema"; export * from "./schema"; diff --git a/libs/parser/src/linkedin/index.ts b/libs/parser/src/linkedin/index.ts index 2142f1ae..9d56d6a7 100644 --- a/libs/parser/src/linkedin/index.ts +++ b/libs/parser/src/linkedin/index.ts @@ -10,12 +10,14 @@ import { defaultSkill, resumeDataSchema, } from "@reactive-resume/schema"; -import { extractUrl, Json, parseArrayLikeCSVEntry, parseCSV } from "@reactive-resume/utils"; +import type { Json } from "@reactive-resume/utils"; +import { extractUrl, parseArrayLikeCSVEntry, parseCSV } from "@reactive-resume/utils"; import * as JSZip from "jszip"; -import { Schema } from "zod"; +import type { Schema } from "zod"; -import { Parser } from "../interfaces/parser"; -import { LinkedIn, linkedInSchema } from "./schema"; +import type { Parser } from "../interfaces/parser"; +import type { LinkedIn } from "./schema"; +import { linkedInSchema } from "./schema"; export * from "./schema"; diff --git a/libs/parser/src/reactive-resume-v3/index.ts b/libs/parser/src/reactive-resume-v3/index.ts index 58c823d6..8149ef2d 100644 --- a/libs/parser/src/reactive-resume-v3/index.ts +++ b/libs/parser/src/reactive-resume-v3/index.ts @@ -15,11 +15,13 @@ import { defaultSkill, defaultVolunteer, } from "@reactive-resume/schema"; -import { isUrl, Json } from "@reactive-resume/utils"; -import { Schema } from "zod"; +import type { Json } from "@reactive-resume/utils"; +import { isUrl } from "@reactive-resume/utils"; +import type { Schema } from "zod"; -import { Parser } from "../interfaces/parser"; -import { ReactiveResumeV3, reactiveResumeV3Schema } from "./schema"; +import type { Parser } from "../interfaces/parser"; +import type { ReactiveResumeV3 } from "./schema"; +import { reactiveResumeV3Schema } from "./schema"; export * from "./schema"; diff --git a/libs/parser/src/reactive-resume/index.ts b/libs/parser/src/reactive-resume/index.ts index b7e39794..3d03911d 100644 --- a/libs/parser/src/reactive-resume/index.ts +++ b/libs/parser/src/reactive-resume/index.ts @@ -1,8 +1,9 @@ -import { ResumeData, resumeDataSchema } from "@reactive-resume/schema"; -import { Json } from "@reactive-resume/utils"; -import { Schema } from "zod"; +import type { ResumeData } from "@reactive-resume/schema"; +import { resumeDataSchema } from "@reactive-resume/schema"; +import type { Json } from "@reactive-resume/utils"; +import type { Schema } from "zod"; -import { Parser } from "../interfaces/parser"; +import type { Parser } from "../interfaces/parser"; export class ReactiveResumeParser implements Parser { schema: Schema; diff --git a/libs/schema/src/sample.ts b/libs/schema/src/sample.ts index 8ce89dbe..ac6c3e86 100644 --- a/libs/schema/src/sample.ts +++ b/libs/schema/src/sample.ts @@ -1,4 +1,4 @@ -import { ResumeData } from "./index"; +import type { ResumeData } from "./index"; export const sampleResume: ResumeData = { basics: { diff --git a/libs/schema/src/sections/index.ts b/libs/schema/src/sections/index.ts index 121b216c..0fb8ae84 100644 --- a/libs/schema/src/sections/index.ts +++ b/libs/schema/src/sections/index.ts @@ -1,6 +1,6 @@ import { z } from "zod"; -import { FilterKeys } from "../shared"; +import type { FilterKeys } from "../shared"; import { idSchema } from "../shared"; import { awardSchema } from "./award"; import { certificationSchema } from "./certification"; diff --git a/libs/ui/src/components/alert-dialog.tsx b/libs/ui/src/components/alert-dialog.tsx index 4e43275f..e17ddb99 100644 --- a/libs/ui/src/components/alert-dialog.tsx +++ b/libs/ui/src/components/alert-dialog.tsx @@ -3,7 +3,7 @@ import { cn } from "@reactive-resume/utils"; import { forwardRef } from "react"; import { buttonVariants } from "../variants/button"; -import { ButtonProps } from "./button"; +import type { ButtonProps } from "./button"; export const AlertDialog = AlertDialogPrimitive.Root; diff --git a/libs/ui/src/components/badge-input.tsx b/libs/ui/src/components/badge-input.tsx index 3164ef40..bad47a9e 100644 --- a/libs/ui/src/components/badge-input.tsx +++ b/libs/ui/src/components/badge-input.tsx @@ -1,6 +1,8 @@ -import { Dispatch, forwardRef, SetStateAction, useCallback, useEffect, useState } from "react"; +import type { Dispatch, SetStateAction } from "react"; +import { forwardRef, useCallback, useEffect, useState } from "react"; -import { Input, InputProps } from "./input"; +import type { InputProps } from "./input"; +import { Input } from "./input"; type BadgeInputProps = Omit & { value: string[]; diff --git a/libs/ui/src/components/command.tsx b/libs/ui/src/components/command.tsx index 0111092a..d929c07a 100644 --- a/libs/ui/src/components/command.tsx +++ b/libs/ui/src/components/command.tsx @@ -1,5 +1,5 @@ import { MagnifyingGlass } from "@phosphor-icons/react"; -import { DialogProps } from "@radix-ui/react-dialog"; +import type { DialogProps } from "@radix-ui/react-dialog"; import { cn } from "@reactive-resume/utils"; import { Command as CommandPrimitive } from "cmdk"; import { forwardRef } from "react"; diff --git a/libs/ui/src/components/form.tsx b/libs/ui/src/components/form.tsx index 6b1c83b9..3f7d07f4 100644 --- a/libs/ui/src/components/form.tsx +++ b/libs/ui/src/components/form.tsx @@ -1,9 +1,10 @@ -import * as LabelPrimitive from "@radix-ui/react-label"; +import type * as LabelPrimitive from "@radix-ui/react-label"; import { Slot } from "@radix-ui/react-slot"; import { FormFieldContext, FormItemContext, useFormField } from "@reactive-resume/hooks"; import { cn } from "@reactive-resume/utils"; import { forwardRef, useId } from "react"; -import { Controller, ControllerProps, FieldPath, FieldValues } from "react-hook-form"; +import type { ControllerProps, FieldPath, FieldValues } from "react-hook-form"; +import { Controller } from "react-hook-form"; import { Label } from "./label"; diff --git a/libs/ui/src/components/rich-input.tsx b/libs/ui/src/components/rich-input.tsx index c5cf7a79..368df862 100644 --- a/libs/ui/src/components/rich-input.tsx +++ b/libs/ui/src/components/rich-input.tsx @@ -33,7 +33,8 @@ import { Image } from "@tiptap/extension-image"; import { Link } from "@tiptap/extension-link"; import { TextAlign } from "@tiptap/extension-text-align"; import { Underline } from "@tiptap/extension-underline"; -import { Editor, EditorContent, EditorContentProps, useEditor } from "@tiptap/react"; +import type { Editor, EditorContentProps } from "@tiptap/react"; +import { EditorContent, useEditor } from "@tiptap/react"; import { StarterKit } from "@tiptap/starter-kit"; import { forwardRef, useCallback } from "react"; import { useForm } from "react-hook-form"; diff --git a/libs/ui/src/components/toggle-group.tsx b/libs/ui/src/components/toggle-group.tsx index b7115aa9..fa46ac42 100644 --- a/libs/ui/src/components/toggle-group.tsx +++ b/libs/ui/src/components/toggle-group.tsx @@ -1,6 +1,6 @@ import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"; import { cn } from "@reactive-resume/utils"; -import { VariantProps } from "class-variance-authority"; +import type { VariantProps } from "class-variance-authority"; import { forwardRef } from "react"; import { toggleVariants } from "../variants/toggle"; diff --git a/libs/utils/src/namespaces/array.ts b/libs/utils/src/namespaces/array.ts index 62816476..abd62881 100644 --- a/libs/utils/src/namespaces/array.ts +++ b/libs/utils/src/namespaces/array.ts @@ -1,4 +1,4 @@ -import { LayoutLocator } from "./types"; +import type { LayoutLocator } from "./types"; // Function to find a specific item in a layout export const findItemInLayout = (item: string, layout: string[][][]): LayoutLocator | null => { diff --git a/libs/utils/src/namespaces/csv.ts b/libs/utils/src/namespaces/csv.ts index 9280fc7d..664bdd10 100644 --- a/libs/utils/src/namespaces/csv.ts +++ b/libs/utils/src/namespaces/csv.ts @@ -1,6 +1,6 @@ import Papa from "papaparse"; -import { Json } from "./types"; +import type { Json } from "./types"; export const parseCSV = async (string: string) => { return new Promise((resolve, reject) => { diff --git a/libs/utils/src/namespaces/string.ts b/libs/utils/src/namespaces/string.ts index d88d7087..73399634 100644 --- a/libs/utils/src/namespaces/string.ts +++ b/libs/utils/src/namespaces/string.ts @@ -1,6 +1,6 @@ import { adjectives, animals, uniqueNamesGenerator } from "unique-names-generator"; -import { LayoutLocator, SortablePayload } from "./types"; +import type { LayoutLocator, SortablePayload } from "./types"; export const getInitials = (name: string) => { // eslint-disable-next-line unicorn/better-regex diff --git a/libs/utils/src/namespaces/style.ts b/libs/utils/src/namespaces/style.ts index 2da9c7c2..a098c653 100644 --- a/libs/utils/src/namespaces/style.ts +++ b/libs/utils/src/namespaces/style.ts @@ -1,4 +1,5 @@ -import { ClassValue, clsx } from "clsx"; +import type { ClassValue } from "clsx"; +import { clsx } from "clsx"; import { twMerge } from "tailwind-merge"; export const breakpoints = { diff --git a/package.json b/package.json index 53eb859a..e5e035a1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@reactive-resume/source", "description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.", - "version": "4.3.7", + "version": "4.3.8", "license": "MIT", "private": true, "author": { @@ -69,7 +69,7 @@ "@types/lodash.get": "^4.4.9", "@types/lodash.set": "^4.3.9", "@types/multer": "^1.4.12", - "@types/node": "^22.10.5", + "@types/node": "^22.10.6", "@types/nodemailer": "^6.4.17", "@types/papaparse": "^5.3.15", "@types/passport": "^1.0.17", @@ -83,8 +83,8 @@ "@types/react-is": "^18.3.1", "@types/retry": "^0.12.5", "@types/webfontloader": "^1.6.38", - "@typescript-eslint/eslint-plugin": "^8.19.1", - "@typescript-eslint/parser": "^8.19.1", + "@typescript-eslint/eslint-plugin": "^8.20.0", + "@typescript-eslint/parser": "^8.20.0", "@vitejs/plugin-react": "^4.3.4", "@vitejs/plugin-react-swc": "^3.7.2", "@vitest/coverage-v8": "^2.1.8", @@ -107,7 +107,7 @@ "jest-environment-node": "^29.7.0", "jsdom": "^25.0.1", "nx": "^19.8.14", - "postcss": "^8.4.49", + "postcss": "^8.5.0", "postcss-import": "^16.1.0", "postcss-nested": "^6.2.0", "prettier": "^3.4.2", @@ -195,7 +195,7 @@ "deepmerge": "^4.3.1", "express-session": "^1.18.1", "file-saver": "^2.0.5", - "framer-motion": "^11.17.0", + "framer-motion": "^11.17.1", "fuzzy": "^0.1.3", "helmet": "^7.2.0", "immer": "^10.1.1", @@ -248,7 +248,7 @@ "zundo": "^2.3.0", "zustand": "^4.5.6" }, - "packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a", + "packageManager": "pnpm@9.15.4", "engines": { "node": ">=20.13.1" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2c547805..85d5d165 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -228,8 +228,8 @@ importers: specifier: ^2.0.5 version: 2.0.5 framer-motion: - specifier: ^11.17.0 - version: 11.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^11.17.1 + version: 11.17.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) fuzzy: specifier: ^0.1.3 version: 0.1.3 @@ -401,7 +401,7 @@ importers: version: 4.1.0(@lingui/macro@4.14.1(@lingui/react@4.14.1(react@18.3.1))(babel-plugin-macros@3.1.0)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)) '@lingui/vite-plugin': specifier: ^4.14.1 - version: 4.14.1(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) + version: 4.14.1(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) '@nestjs/schematics': specifier: ^10.2.3 version: 10.2.3(chokidar@3.6.0)(typescript@5.7.3) @@ -410,34 +410,34 @@ importers: version: 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(@nestjs/platform-express@10.4.15) '@nx/eslint': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) '@nx/eslint-plugin': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@nx/jest': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@nx/js': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@nx/nest': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@nx/node': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@nx/react': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) '@nx/vite': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8) '@nx/web': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@nx/webpack': specifier: ^19.8.14 - version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3)) + version: 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3)) '@nx/workspace': specifier: ^19.8.14 version: 19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)) @@ -452,13 +452,13 @@ importers: version: 1.10.7(@swc/helpers@0.5.15) '@tailwindcss/container-queries': specifier: ^0.1.1 - version: 0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))) + version: 0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))) '@tailwindcss/forms': specifier: ^0.5.10 - version: 0.5.10(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))) + version: 0.5.10(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))) + version: 0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))) '@tanstack/eslint-plugin-query': specifier: ^5.62.16 version: 5.62.16(eslint@8.57.0)(typescript@5.7.3) @@ -502,8 +502,8 @@ importers: specifier: ^1.4.12 version: 1.4.12 '@types/node': - specifier: ^22.10.5 - version: 22.10.5 + specifier: ^22.10.6 + version: 22.10.6 '@types/nodemailer': specifier: ^6.4.17 version: 6.4.17 @@ -544,17 +544,17 @@ importers: specifier: ^1.6.38 version: 1.6.38 '@typescript-eslint/eslint-plugin': - specifier: ^8.19.1 - version: 8.19.1(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3) + specifier: ^8.20.0 + version: 8.20.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3) '@typescript-eslint/parser': - specifier: ^8.19.1 - version: 8.19.1(eslint@8.57.0)(typescript@5.7.3) + specifier: ^8.20.0 + version: 8.20.0(eslint@8.57.0)(typescript@5.7.3) '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.3.4(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) + version: 4.3.4(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) '@vitejs/plugin-react-swc': specifier: ^3.7.2 - version: 3.7.2(@swc/helpers@0.5.15)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) + version: 3.7.2(@swc/helpers@0.5.15)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) '@vitest/coverage-v8': specifier: ^2.1.8 version: 2.1.8(vitest@2.1.8) @@ -563,7 +563,7 @@ importers: version: 2.1.8(vitest@2.1.8) autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.4.49) + version: 10.4.20(postcss@8.5.0) babel-plugin-macros: specifier: ^3.1.0 version: 3.1.0 @@ -575,7 +575,7 @@ importers: version: 9.1.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0) + version: 2.31.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0) eslint-plugin-jsx-a11y: specifier: ^6.10.2 version: 6.10.2(eslint@8.57.0) @@ -596,16 +596,16 @@ importers: version: 12.1.1(eslint@8.57.0) eslint-plugin-tailwindcss: specifier: ^3.17.5 - version: 3.17.5(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))) + version: 3.17.5(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))) eslint-plugin-unicorn: specifier: ^55.0.0 version: 55.0.0(eslint@8.57.0) eslint-plugin-unused-imports: specifier: ^3.2.0 - version: 3.2.0(@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0) + version: 3.2.0(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + version: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) jest-environment-node: specifier: ^29.7.0 version: 29.7.0 @@ -616,14 +616,14 @@ importers: specifier: ^19.8.14 version: 19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)) postcss: - specifier: ^8.4.49 - version: 8.4.49 + specifier: ^8.5.0 + version: 8.5.0 postcss-import: specifier: ^16.1.0 - version: 16.1.0(postcss@8.4.49) + version: 16.1.0(postcss@8.5.0) postcss-nested: specifier: ^6.2.0 - version: 6.2.0(postcss@8.4.49) + version: 6.2.0(postcss@8.5.0) prettier: specifier: ^3.4.2 version: 3.4.2 @@ -632,28 +632,28 @@ importers: version: 0.6.9(prettier@3.4.2) tailwindcss: specifier: ^3.4.17 - version: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + version: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))) + version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))) ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)))(typescript@5.7.3) + version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)))(typescript@5.7.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3) + version: 10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3) typescript: specifier: ^5.7.3 version: 5.7.3 vite: specifier: ^5.4.11 - version: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + version: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) vite-plugin-dts: specifier: ^4.5.0 - version: 4.5.0(@types/node@22.10.5)(rollup@4.30.1)(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) + version: 4.5.0(@types/node@22.10.6)(rollup@4.30.1)(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) vitest: specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.5)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + version: 2.1.8(@types/node@22.10.6)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) packages: @@ -4384,8 +4384,8 @@ packages: '@types/node@18.19.22': resolution: {integrity: sha512-p3pDIfuMg/aXBmhkyanPshdfJuX5c5+bQjYLIikPLXAUycEogij/c50n/C+8XOA5L93cU4ZRXtn+dNQGi0IZqQ==} - '@types/node@22.10.5': - resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==} + '@types/node@22.10.6': + resolution: {integrity: sha512-qNiuwC4ZDAUNcY47xgaSuS92cjf8JbSUoaKS77bmLG1rU7MlATVSiw/IlrjtIyyskXBZ8KkNfjK/P5na7rgXbQ==} '@types/nodemailer@6.4.17': resolution: {integrity: sha512-I9CCaIp6DTldEg7vyUTZi8+9Vo0hi1/T8gv3C89yk1rSAAzoKQ8H8ki/jBYJSFoH/BisgLP8tkZMlQ91CIquww==} @@ -4506,16 +4506,16 @@ packages: '@types/yauzl@2.10.3': resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - '@typescript-eslint/eslint-plugin@8.19.1': - resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==} + '@typescript-eslint/eslint-plugin@8.20.0': + resolution: {integrity: sha512-naduuphVw5StFfqp4Gq4WhIBE2gN1GEmMUExpJYknZJdRnc+2gDzB8Z3+5+/Kv33hPQRDGzQO/0opHE72lZZ6A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/parser@8.19.1': - resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==} + '@typescript-eslint/parser@8.20.0': + resolution: {integrity: sha512-gKXG7A5HMyjDIedBi6bUrDcun8GIjnI8qOwVLiY3rx6T/sHP/19XLJOnIq/FgQvWLHja5JN/LSE7eklNBr612g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4525,12 +4525,16 @@ packages: resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/scope-manager@8.20.0': + resolution: {integrity: sha512-J7+VkpeGzhOt3FeG1+SzhiMj9NzGD/M6KoGn9f4dbz3YzK9hvbhVTmLj/HiTp9DazIzJ8B4XcM80LrR9Dm1rJw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/scope-manager@8.3.0': resolution: {integrity: sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.19.1': - resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==} + '@typescript-eslint/type-utils@8.20.0': + resolution: {integrity: sha512-bPC+j71GGvA7rVNAHAtOjbVXbLN5PkwqMvy1cwGeaxUoRQXVuKCebRoLzm+IPW/NtFFpstn1ummSIasD5t60GA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4549,6 +4553,10 @@ packages: resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/types@8.20.0': + resolution: {integrity: sha512-cqaMiY72CkP+2xZRrFt3ExRBu0WmVitN/rYPZErA80mHjHx/Svgp8yfbzkJmDoQ/whcytOPO9/IZXnOc+wigRA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/types@8.3.0': resolution: {integrity: sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4559,6 +4567,12 @@ packages: peerDependencies: typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/typescript-estree@8.20.0': + resolution: {integrity: sha512-Y7ncuy78bJqHI35NwzWol8E0X7XkRVS4K4P4TCyzWkOJih5NDvtoRDW4Ba9YJJoB2igm9yXDdYI/+fkiiAxPzA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/typescript-estree@8.3.0': resolution: {integrity: sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4575,6 +4589,13 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/utils@8.20.0': + resolution: {integrity: sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/utils@8.3.0': resolution: {integrity: sha512-F77WwqxIi/qGkIGOGXNBLV7nykwfjLsdauRB/DOFPdv6LTF3BHHkBpq81/b5iMPSF055oO2BiivDJV4ChvNtXA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4585,6 +4606,10 @@ packages: resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.20.0': + resolution: {integrity: sha512-v/BpkeeYAsPkKCkR8BDwcno0llhzWVqPOamQrAEMdpZav2Y9OVjd9dwJyBLJWwf335B5DmlifECIkZRJCaGaHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.3.0': resolution: {integrity: sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -6760,8 +6785,8 @@ packages: fraction.js@4.3.7: resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - framer-motion@11.17.0: - resolution: {integrity: sha512-uTNLH9JPMD3ad14WBt3KYRTR+If4tGPLgKTKTIIPaEBMkvazs6EkWNcmCh65qA/tyinOqIbQiuCorXX0qQsNoQ==} + framer-motion@11.17.1: + resolution: {integrity: sha512-w6hMreGHgLk2M4Wso955zgG6y7xx0sNBs2pKh9RAyoi9cUuhsh3ry8lArbBCs42wpe5zfeC14SI5EdpV/ucOEA==} peerDependencies: '@emotion/is-prop-valid': '*' react: ^18.0.0 || ^19.0.0 @@ -9022,9 +9047,6 @@ packages: resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} engines: {node: '>=4'} - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - picocolors@1.0.1: resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} @@ -9334,8 +9356,8 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + postcss@8.5.0: + resolution: {integrity: sha512-27VKOqrYfPncKA2NrFOVhP5MGAfHKLYn/Q0mz9cNQyRAKYi3VNHwYU2qKKqPCqgBmeeJ0uAFB56NumXZ5ZReXg==} engines: {node: ^10 || ^12 || >=14} postgres-array@2.0.0: @@ -11829,7 +11851,7 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.0 + picocolors: 1.1.1 '@babel/parser@7.26.5': dependencies: @@ -12951,27 +12973,27 @@ snapshots: '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + jest-config: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -12996,7 +13018,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -13014,7 +13036,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 22.10.5 + '@types/node': 22.10.6 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -13036,7 +13058,7 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.10.5 + '@types/node': 22.10.6 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -13106,7 +13128,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/yargs': 17.0.32 chalk: 4.1.2 @@ -13249,11 +13271,11 @@ snapshots: optionalDependencies: '@swc/core': 1.10.7(@swc/helpers@0.5.15) - '@lingui/vite-plugin@4.14.1(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': + '@lingui/vite-plugin@4.14.1(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': dependencies: '@lingui/cli': 4.14.1(typescript@5.7.3) '@lingui/conf': 4.14.1(typescript@5.7.3) - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - supports-color - typescript @@ -13264,23 +13286,23 @@ snapshots: dependencies: moo: 0.5.2 - '@microsoft/api-extractor-model@7.30.2(@types/node@22.10.5)': + '@microsoft/api-extractor-model@7.30.2(@types/node@22.10.6)': dependencies: '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.10.2(@types/node@22.10.5) + '@rushstack/node-core-library': 5.10.2(@types/node@22.10.6) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.49.1(@types/node@22.10.5)': + '@microsoft/api-extractor@7.49.1(@types/node@22.10.6)': dependencies: - '@microsoft/api-extractor-model': 7.30.2(@types/node@22.10.5) + '@microsoft/api-extractor-model': 7.30.2(@types/node@22.10.6) '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.10.2(@types/node@22.10.5) + '@rushstack/node-core-library': 5.10.2(@types/node@22.10.6) '@rushstack/rig-package': 0.5.3 - '@rushstack/terminal': 0.14.5(@types/node@22.10.5) - '@rushstack/ts-command-line': 4.23.3(@types/node@22.10.5) + '@rushstack/terminal': 0.14.5(@types/node@22.10.6) + '@rushstack/ts-command-line': 4.23.3(@types/node@22.10.6) lodash: 4.17.21 minimatch: 3.0.8 resolve: 1.22.10 @@ -13640,9 +13662,9 @@ snapshots: transitivePeerDependencies: - nx - '@nrwl/eslint-plugin-nx@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': + '@nrwl/eslint-plugin-nx@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': dependencies: - '@nx/eslint-plugin': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/eslint-plugin': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13658,9 +13680,9 @@ snapshots: - typescript - verdaccio - '@nrwl/jest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3)': + '@nrwl/jest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3)': dependencies: - '@nx/jest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nx/jest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13676,9 +13698,9 @@ snapshots: - typescript - verdaccio - '@nrwl/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5)': + '@nrwl/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5)': dependencies: - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13691,9 +13713,9 @@ snapshots: - typescript - verdaccio - '@nrwl/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': + '@nrwl/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': dependencies: - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13706,9 +13728,9 @@ snapshots: - typescript - verdaccio - '@nrwl/nest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3)': + '@nrwl/nest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3)': dependencies: - '@nx/nest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nx/nest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13727,9 +13749,9 @@ snapshots: - typescript - verdaccio - '@nrwl/node@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3)': + '@nrwl/node@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3)': dependencies: - '@nx/node': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nx/node': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13747,9 +13769,9 @@ snapshots: - typescript - verdaccio - '@nrwl/react@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)))': + '@nrwl/react@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)))': dependencies: - '@nx/react': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nx/react': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13779,9 +13801,9 @@ snapshots: - '@swc/core' - debug - '@nrwl/vite@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8)': + '@nrwl/vite@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8)': dependencies: - '@nx/vite': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8) + '@nx/vite': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13796,9 +13818,9 @@ snapshots: - vite - vitest - '@nrwl/web@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': + '@nrwl/web@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': dependencies: - '@nx/web': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/web': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13811,9 +13833,9 @@ snapshots: - typescript - verdaccio - '@nrwl/webpack@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3))': + '@nrwl/webpack@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3))': dependencies: - '@nx/webpack': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3)) + '@nx/webpack': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3)) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -13874,13 +13896,13 @@ snapshots: tslib: 2.8.1 yargs-parser: 21.1.1 - '@nx/eslint-plugin@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': + '@nx/eslint-plugin@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': dependencies: '@eslint/compat': 1.2.5(eslint@8.57.0) - '@nrwl/eslint-plugin-nx': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nrwl/eslint-plugin-nx': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) - '@typescript-eslint/parser': 8.19.1(eslint@8.57.0)(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@typescript-eslint/parser': 8.20.0(eslint@8.57.0)(typescript@5.7.3) '@typescript-eslint/type-utils': 8.3.0(eslint@8.57.0)(typescript@5.7.3) '@typescript-eslint/utils': 8.3.0(eslint@8.57.0)(typescript@5.7.3) chalk: 4.1.2 @@ -13904,11 +13926,11 @@ snapshots: - typescript - verdaccio - '@nx/eslint@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))': + '@nx/eslint@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))': dependencies: '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5) - '@nx/linter': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5) + '@nx/linter': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) eslint: 8.57.0 semver: 7.6.3 tslib: 2.8.1 @@ -13926,17 +13948,17 @@ snapshots: - supports-color - verdaccio - '@nx/jest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3)': + '@nx/jest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3)': dependencies: '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 - '@nrwl/jest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nrwl/jest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.7.3) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + jest-config: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) jest-resolve: 29.7.0 jest-util: 29.7.0 minimatch: 9.0.3 @@ -13959,7 +13981,7 @@ snapshots: - typescript - verdaccio - '@nx/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5)': + '@nx/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5)': dependencies: '@babel/core': 7.26.0 '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.26.0) @@ -13968,7 +13990,7 @@ snapshots: '@babel/preset-env': 7.24.0(@babel/core@7.26.0) '@babel/preset-typescript': 7.23.3(@babel/core@7.26.0) '@babel/runtime': 7.26.0 - '@nrwl/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5) + '@nrwl/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.4.5) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) '@nx/workspace': 19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)) babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0) @@ -13988,7 +14010,7 @@ snapshots: ora: 5.3.0 semver: 7.6.3 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.4.5) + ts-node: 10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.4.5) tsconfig-paths: 4.2.0 tslib: 2.8.1 transitivePeerDependencies: @@ -14002,7 +14024,7 @@ snapshots: - supports-color - typescript - '@nx/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': + '@nx/js@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': dependencies: '@babel/core': 7.26.0 '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.26.0) @@ -14011,7 +14033,7 @@ snapshots: '@babel/preset-env': 7.24.0(@babel/core@7.26.0) '@babel/preset-typescript': 7.23.3(@babel/core@7.26.0) '@babel/runtime': 7.26.0 - '@nrwl/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nrwl/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) '@nx/workspace': 19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)) babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0) @@ -14031,7 +14053,7 @@ snapshots: ora: 5.3.0 semver: 7.6.3 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3) + ts-node: 10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3) tsconfig-paths: 4.2.0 tslib: 2.8.1 transitivePeerDependencies: @@ -14045,9 +14067,9 @@ snapshots: - supports-color - typescript - '@nx/linter@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))': + '@nx/linter@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))': dependencies: - '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -14061,14 +14083,14 @@ snapshots: - supports-color - verdaccio - '@nx/nest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3)': + '@nx/nest@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3)': dependencies: '@nestjs/schematics': 9.2.0(chokidar@3.6.0)(typescript@5.7.3) - '@nrwl/nest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nrwl/nest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) - '@nx/node': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/node': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.7.3) tslib: 2.8.1 transitivePeerDependencies: @@ -14089,13 +14111,13 @@ snapshots: - typescript - verdaccio - '@nx/node@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3)': + '@nx/node@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3)': dependencies: - '@nrwl/node': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) + '@nrwl/node': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/jest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))(typescript@5.7.3) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nx/jest': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) tslib: 2.8.1 transitivePeerDependencies: - '@babel/traverse' @@ -14144,14 +14166,14 @@ snapshots: '@nx/nx-win32-x64-msvc@19.8.14': optional: true - '@nx/react@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)))': + '@nx/react@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)))': dependencies: '@module-federation/enhanced': 0.6.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nrwl/react': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nrwl/react': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) - '@nx/web': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/eslint': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/web': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.7.3) '@svgr/webpack': 8.1.0(typescript@5.7.3) express: 4.19.2 @@ -14180,18 +14202,18 @@ snapshots: - vue-tsc - webpack - '@nx/vite@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8)': + '@nx/vite@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8)': dependencies: - '@nrwl/vite': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8) + '@nrwl/vite': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))(vitest@2.1.8) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.7.3) '@swc/helpers': 0.5.15 enquirer: 2.3.6 minimatch: 9.0.3 tsconfig-paths: 4.2.0 - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) - vitest: 2.1.8(@types/node@22.10.5)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vitest: 2.1.8(@types/node@22.10.6)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -14204,11 +14226,11 @@ snapshots: - typescript - verdaccio - '@nx/web@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': + '@nx/web@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3)': dependencies: - '@nrwl/web': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nrwl/web': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) detect-port: 1.5.1 http-server: 14.1.1 picocolors: 1.1.1 @@ -14225,17 +14247,17 @@ snapshots: - typescript - verdaccio - '@nx/webpack@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3))': + '@nx/webpack@19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3))': dependencies: '@babel/core': 7.26.0 '@module-federation/enhanced': 0.6.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-tsc@2.0.29(typescript@5.7.3))(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) '@module-federation/sdk': 0.6.16 - '@nrwl/webpack': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3)) + '@nrwl/webpack': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.3)(vue-template-compiler@2.7.16)(vue-tsc@2.0.29(typescript@5.7.3)) '@nx/devkit': 19.8.14(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))) - '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) + '@nx/js': 19.8.14(@babel/traverse@7.26.5)(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(nx@19.8.14(@swc-node/register@1.10.9(@swc/core@1.10.7(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.3))(@swc/core@1.10.7(@swc/helpers@0.5.15)))(typescript@5.7.3) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.7.3) ajv: 8.13.0 - autoprefixer: 10.4.20(postcss@8.4.49) + autoprefixer: 10.4.20(postcss@8.5.0) babel-loader: 9.1.3(@babel/core@7.26.0)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) browserslist: 4.24.4 chalk: 4.1.2 @@ -14251,9 +14273,9 @@ snapshots: loader-utils: 2.0.4 mini-css-extract-plugin: 2.4.7(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) parse5: 4.0.0 - postcss: 8.4.49 - postcss-import: 14.1.0(postcss@8.4.49) - postcss-loader: 6.2.1(postcss@8.4.49)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) + postcss: 8.5.0 + postcss-import: 14.1.0(postcss@8.5.0) + postcss-loader: 6.2.1(postcss@8.5.0)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) rxjs: 7.8.1 sass: 1.71.1 sass-loader: 12.6.0(sass@1.71.1)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))) @@ -15355,7 +15377,7 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@rushstack/node-core-library@5.10.2(@types/node@22.10.5)': + '@rushstack/node-core-library@5.10.2(@types/node@22.10.6)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -15366,23 +15388,23 @@ snapshots: resolve: 1.22.10 semver: 7.5.4 optionalDependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@rushstack/rig-package@0.5.3': dependencies: resolve: 1.22.10 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.14.5(@types/node@22.10.5)': + '@rushstack/terminal@0.14.5(@types/node@22.10.6)': dependencies: - '@rushstack/node-core-library': 5.10.2(@types/node@22.10.5) + '@rushstack/node-core-library': 5.10.2(@types/node@22.10.6) supports-color: 8.1.1 optionalDependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 - '@rushstack/ts-command-line@4.23.3(@types/node@22.10.5)': + '@rushstack/ts-command-line@4.23.3(@types/node@22.10.6)': dependencies: - '@rushstack/terminal': 0.14.5(@types/node@22.10.5) + '@rushstack/terminal': 0.14.5(@types/node@22.10.6) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -15673,22 +15695,22 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)))': + '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)))': dependencies: - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) - '@tailwindcss/forms@0.5.10(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)))': + '@tailwindcss/forms@0.5.10(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)))': dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) - '@tailwindcss/typography@0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)))': + '@tailwindcss/typography@0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)))': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) '@tanstack/eslint-plugin-query@5.62.16(eslint@8.57.0)(typescript@5.7.3)': dependencies: @@ -15922,7 +15944,7 @@ snapshots: '@types/accepts@1.3.7': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/argparse@1.0.38': {} @@ -15958,31 +15980,31 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/bonjour@3.5.13': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/responselike': 1.0.3 '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.17.43 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/connect@3.4.36': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/connect@3.4.38': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/content-disposition@0.5.8': {} @@ -15997,7 +16019,7 @@ snapshots: '@types/connect': 3.4.38 '@types/express': 4.17.21 '@types/keygrip': 1.0.6 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/ejs@3.1.5': optional: true @@ -16016,7 +16038,7 @@ snapshots: '@types/express-serve-static-core@4.17.43': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/qs': 6.9.12 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -16036,7 +16058,7 @@ snapshots: '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/http-assert@1.5.6': {} @@ -16046,7 +16068,7 @@ snapshots: '@types/http-proxy@1.17.15': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/istanbul-lib-coverage@2.0.6': {} @@ -16069,17 +16091,17 @@ snapshots: '@types/jsonwebtoken@9.0.5': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/jsonwebtoken@9.0.6': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/keygrip@1.0.6': {} '@types/keyv@3.1.4': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/koa-compose@3.2.8': dependencies: @@ -16094,7 +16116,7 @@ snapshots: '@types/http-errors': 2.0.4 '@types/keygrip': 1.0.6 '@types/koa-compose': 3.2.8 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/koa__router@12.0.3': dependencies: @@ -16141,38 +16163,38 @@ snapshots: '@types/mysql@2.15.22': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/node-fetch@2.6.11': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 form-data: 4.0.0 '@types/node-forge@1.3.11': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/node@18.19.22': dependencies: undici-types: 5.26.5 - '@types/node@22.10.5': + '@types/node@22.10.6': dependencies: undici-types: 6.20.0 '@types/nodemailer@6.4.17': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/normalize-package-data@2.4.4': {} '@types/oauth@0.9.4': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/papaparse@5.3.15': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/parse-json@4.0.2': {} @@ -16227,7 +16249,7 @@ snapshots: '@types/pg@8.6.1': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 pg-protocol: 1.7.0 pg-types: 2.2.0 @@ -16257,7 +16279,7 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/retry@0.12.2': {} @@ -16268,7 +16290,7 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/serve-index@1.9.4': dependencies: @@ -16278,13 +16300,13 @@ snapshots: dependencies: '@types/http-errors': 2.0.4 '@types/mime': 3.0.4 - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/shimmer@1.2.0': {} '@types/sockjs@0.3.36': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/stack-utils@2.0.3': {} @@ -16294,7 +16316,7 @@ snapshots: '@types/ws@8.5.10': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@types/yargs-parser@21.0.3': {} @@ -16304,17 +16326,17 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 optional: true - '@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3)': + '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 8.19.1(eslint@8.57.0)(typescript@5.7.3) - '@typescript-eslint/scope-manager': 8.19.1 - '@typescript-eslint/type-utils': 8.19.1(eslint@8.57.0)(typescript@5.7.3) - '@typescript-eslint/utils': 8.19.1(eslint@8.57.0)(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.19.1 + '@typescript-eslint/parser': 8.20.0(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.20.0 + '@typescript-eslint/type-utils': 8.20.0(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/utils': 8.20.0(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.20.0 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -16324,12 +16346,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3)': + '@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.19.1 - '@typescript-eslint/types': 8.19.1 - '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.19.1 + '@typescript-eslint/scope-manager': 8.20.0 + '@typescript-eslint/types': 8.20.0 + '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.20.0 debug: 4.4.0 eslint: 8.57.0 typescript: 5.7.3 @@ -16341,15 +16363,20 @@ snapshots: '@typescript-eslint/types': 8.19.1 '@typescript-eslint/visitor-keys': 8.19.1 + '@typescript-eslint/scope-manager@8.20.0': + dependencies: + '@typescript-eslint/types': 8.20.0 + '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/scope-manager@8.3.0': dependencies: '@typescript-eslint/types': 8.3.0 '@typescript-eslint/visitor-keys': 8.3.0 - '@typescript-eslint/type-utils@8.19.1(eslint@8.57.0)(typescript@5.7.3)': + '@typescript-eslint/type-utils@8.20.0(eslint@8.57.0)(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.3) - '@typescript-eslint/utils': 8.19.1(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) + '@typescript-eslint/utils': 8.20.0(eslint@8.57.0)(typescript@5.7.3) debug: 4.4.0 eslint: 8.57.0 ts-api-utils: 2.0.0(typescript@5.7.3) @@ -16371,6 +16398,8 @@ snapshots: '@typescript-eslint/types@8.19.1': {} + '@typescript-eslint/types@8.20.0': {} + '@typescript-eslint/types@8.3.0': {} '@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.3)': @@ -16387,6 +16416,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.20.0(typescript@5.7.3)': + dependencies: + '@typescript-eslint/types': 8.20.0 + '@typescript-eslint/visitor-keys': 8.20.0 + debug: 4.4.0 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.4 + semver: 7.6.3 + ts-api-utils: 2.0.0(typescript@5.7.3) + typescript: 5.7.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/typescript-estree@8.3.0(typescript@5.7.3)': dependencies: '@typescript-eslint/types': 8.3.0 @@ -16413,6 +16456,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/utils@8.20.0(eslint@8.57.0)(typescript@5.7.3)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/scope-manager': 8.20.0 + '@typescript-eslint/types': 8.20.0 + '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) + eslint: 8.57.0 + typescript: 5.7.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.3.0(eslint@8.57.0)(typescript@5.7.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) @@ -16429,6 +16483,11 @@ snapshots: '@typescript-eslint/types': 8.19.1 eslint-visitor-keys: 4.2.0 + '@typescript-eslint/visitor-keys@8.20.0': + dependencies: + '@typescript-eslint/types': 8.20.0 + eslint-visitor-keys: 4.2.0 + '@typescript-eslint/visitor-keys@8.3.0': dependencies: '@typescript-eslint/types': 8.3.0 @@ -16436,21 +16495,21 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-react-swc@3.7.2(@swc/helpers@0.5.15)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': + '@vitejs/plugin-react-swc@3.7.2(@swc/helpers@0.5.15)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': dependencies: '@swc/core': 1.10.7(@swc/helpers@0.5.15) - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - '@swc/helpers' - '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': + '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - supports-color @@ -16468,7 +16527,7 @@ snapshots: std-env: 3.8.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.5)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vitest: 2.1.8(@types/node@22.10.6)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - supports-color @@ -16479,13 +16538,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': + '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1))': dependencies: '@vitest/spy': 2.1.8 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) '@vitest/pretty-format@2.1.8': dependencies: @@ -16515,7 +16574,7 @@ snapshots: sirv: 3.0.0 tinyglobby: 0.2.10 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.5)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vitest: 2.1.8(@types/node@22.10.6)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) '@vitest/utils@2.1.8': dependencies: @@ -16541,7 +16600,7 @@ snapshots: '@vue/shared': 3.5.13 entities: 4.5.0 estree-walker: 2.0.2 - source-map-js: 1.2.0 + source-map-js: 1.2.1 '@vue/compiler-dom@3.5.13': dependencies: @@ -16972,14 +17031,14 @@ snapshots: at-least-node@1.0.0: {} - autoprefixer@10.4.20(postcss@8.4.49): + autoprefixer@10.4.20(postcss@8.5.0): dependencies: browserslist: 4.23.3 caniuse-lite: 1.0.30001651 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.1 - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.7: @@ -17745,13 +17804,13 @@ snapshots: optionalDependencies: typescript: 5.7.3 - create-jest@29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)): + create-jest@29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)): 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@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + jest-config: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -17794,18 +17853,18 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - css-declaration-sorter@7.1.1(postcss@8.4.49): + css-declaration-sorter@7.1.1(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 css-loader@6.10.0(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))): dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.49) - postcss-modules-local-by-default: 4.0.4(postcss@8.4.49) - postcss-modules-scope: 3.1.1(postcss@8.4.49) - postcss-modules-values: 4.0.0(postcss@8.4.49) + icss-utils: 5.1.0(postcss@8.5.0) + postcss: 8.5.0 + postcss-modules-extract-imports: 3.0.0(postcss@8.5.0) + postcss-modules-local-by-default: 4.0.4(postcss@8.5.0) + postcss-modules-scope: 3.1.1(postcss@8.5.0) + postcss-modules-values: 4.0.0(postcss@8.5.0) postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: @@ -17814,9 +17873,9 @@ snapshots: css-minimizer-webpack-plugin@5.0.1(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))): dependencies: '@jridgewell/trace-mapping': 0.3.25 - cssnano: 6.1.0(postcss@8.4.49) + cssnano: 6.1.0(postcss@8.5.0) jest-worker: 29.7.0 - postcss: 8.4.49 + postcss: 8.5.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 webpack: 5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)) @@ -17832,60 +17891,60 @@ snapshots: css-tree@2.2.1: dependencies: mdn-data: 2.0.28 - source-map-js: 1.2.0 + 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-what@6.1.0: {} cssesc@3.0.0: {} - cssnano-preset-default@6.1.0(postcss@8.4.49): + cssnano-preset-default@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 - css-declaration-sorter: 7.1.1(postcss@8.4.49) - cssnano-utils: 4.0.2(postcss@8.4.49) - postcss: 8.4.49 - postcss-calc: 9.0.1(postcss@8.4.49) - postcss-colormin: 6.1.0(postcss@8.4.49) - postcss-convert-values: 6.1.0(postcss@8.4.49) - postcss-discard-comments: 6.0.2(postcss@8.4.49) - postcss-discard-duplicates: 6.0.3(postcss@8.4.49) - postcss-discard-empty: 6.0.3(postcss@8.4.49) - postcss-discard-overridden: 6.0.2(postcss@8.4.49) - postcss-merge-longhand: 6.0.4(postcss@8.4.49) - postcss-merge-rules: 6.1.0(postcss@8.4.49) - postcss-minify-font-values: 6.0.3(postcss@8.4.49) - postcss-minify-gradients: 6.0.3(postcss@8.4.49) - postcss-minify-params: 6.1.0(postcss@8.4.49) - postcss-minify-selectors: 6.0.3(postcss@8.4.49) - postcss-normalize-charset: 6.0.2(postcss@8.4.49) - postcss-normalize-display-values: 6.0.2(postcss@8.4.49) - postcss-normalize-positions: 6.0.2(postcss@8.4.49) - postcss-normalize-repeat-style: 6.0.2(postcss@8.4.49) - postcss-normalize-string: 6.0.2(postcss@8.4.49) - postcss-normalize-timing-functions: 6.0.2(postcss@8.4.49) - postcss-normalize-unicode: 6.1.0(postcss@8.4.49) - postcss-normalize-url: 6.0.2(postcss@8.4.49) - postcss-normalize-whitespace: 6.0.2(postcss@8.4.49) - postcss-ordered-values: 6.0.2(postcss@8.4.49) - postcss-reduce-initial: 6.1.0(postcss@8.4.49) - postcss-reduce-transforms: 6.0.2(postcss@8.4.49) - postcss-svgo: 6.0.3(postcss@8.4.49) - postcss-unique-selectors: 6.0.3(postcss@8.4.49) + css-declaration-sorter: 7.1.1(postcss@8.5.0) + cssnano-utils: 4.0.2(postcss@8.5.0) + postcss: 8.5.0 + postcss-calc: 9.0.1(postcss@8.5.0) + postcss-colormin: 6.1.0(postcss@8.5.0) + postcss-convert-values: 6.1.0(postcss@8.5.0) + postcss-discard-comments: 6.0.2(postcss@8.5.0) + postcss-discard-duplicates: 6.0.3(postcss@8.5.0) + postcss-discard-empty: 6.0.3(postcss@8.5.0) + postcss-discard-overridden: 6.0.2(postcss@8.5.0) + postcss-merge-longhand: 6.0.4(postcss@8.5.0) + postcss-merge-rules: 6.1.0(postcss@8.5.0) + postcss-minify-font-values: 6.0.3(postcss@8.5.0) + postcss-minify-gradients: 6.0.3(postcss@8.5.0) + postcss-minify-params: 6.1.0(postcss@8.5.0) + postcss-minify-selectors: 6.0.3(postcss@8.5.0) + postcss-normalize-charset: 6.0.2(postcss@8.5.0) + postcss-normalize-display-values: 6.0.2(postcss@8.5.0) + postcss-normalize-positions: 6.0.2(postcss@8.5.0) + postcss-normalize-repeat-style: 6.0.2(postcss@8.5.0) + postcss-normalize-string: 6.0.2(postcss@8.5.0) + postcss-normalize-timing-functions: 6.0.2(postcss@8.5.0) + postcss-normalize-unicode: 6.1.0(postcss@8.5.0) + postcss-normalize-url: 6.0.2(postcss@8.5.0) + postcss-normalize-whitespace: 6.0.2(postcss@8.5.0) + postcss-ordered-values: 6.0.2(postcss@8.5.0) + postcss-reduce-initial: 6.1.0(postcss@8.5.0) + postcss-reduce-transforms: 6.0.2(postcss@8.5.0) + postcss-svgo: 6.0.3(postcss@8.5.0) + postcss-unique-selectors: 6.0.3(postcss@8.5.0) - cssnano-utils@4.0.2(postcss@8.4.49): + cssnano-utils@4.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - cssnano@6.1.0(postcss@8.4.49): + cssnano@6.1.0(postcss@8.5.0): dependencies: - cssnano-preset-default: 6.1.0(postcss@8.4.49) + cssnano-preset-default: 6.1.0(postcss@8.5.0) lilconfig: 3.1.1 - postcss: 8.4.49 + postcss: 8.5.0 csso@5.0.5: dependencies: @@ -18488,17 +18547,17 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.19.1(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/parser': 8.20.0(eslint@8.57.0)(typescript@5.7.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -18509,7 +18568,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -18521,7 +18580,7 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.19.1(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/parser': 8.20.0(eslint@8.57.0)(typescript@5.7.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -18595,11 +18654,11 @@ snapshots: dependencies: eslint: 8.57.0 - eslint-plugin-tailwindcss@3.17.5(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))): + eslint-plugin-tailwindcss@3.17.5(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))): dependencies: fast-glob: 3.3.2 - postcss: 8.4.49 - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + postcss: 8.5.0 + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) eslint-plugin-unicorn@55.0.0(eslint@8.57.0): dependencies: @@ -18621,12 +18680,12 @@ snapshots: semver: 7.6.2 strip-indent: 3.0.0 - eslint-plugin-unused-imports@3.2.0(@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0): + eslint-plugin-unused-imports@3.2.0(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0): dependencies: eslint: 8.57.0 eslint-rule-composer: 0.3.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3) + '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@8.57.0)(typescript@5.7.3))(eslint@8.57.0)(typescript@5.7.3) eslint-rule-composer@0.3.0: {} @@ -19131,7 +19190,7 @@ snapshots: fraction.js@4.3.7: {} - framer-motion@11.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + framer-motion@11.17.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: motion-dom: 11.16.4 motion-utils: 11.16.0 @@ -19641,9 +19700,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.4.49): + icss-utils@5.1.0(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 identity-obj-proxy@3.0.0: dependencies: @@ -20093,7 +20152,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1(babel-plugin-macros@3.1.0) @@ -20113,16 +20172,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)): + jest-cli@29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + create-jest: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + jest-config: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -20132,7 +20191,7 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)): + jest-config@29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -20157,8 +20216,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.10.5 - ts-node: 10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3) + '@types/node': 22.10.6 + ts-node: 10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -20187,7 +20246,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -20197,7 +20256,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 22.10.5 + '@types/node': 22.10.6 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -20236,7 +20295,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -20271,7 +20330,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -20299,7 +20358,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -20345,7 +20404,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -20364,7 +20423,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.10.5 + '@types/node': 22.10.6 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -20373,23 +20432,23 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)): + jest@29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + jest-cli: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -22062,8 +22121,6 @@ snapshots: postgres-date: 1.0.7 postgres-interval: 1.2.0 - picocolors@1.0.0: {} - picocolors@1.0.1: {} picocolors@1.1.1: {} @@ -22117,208 +22174,208 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-calc@9.0.1(postcss@8.4.49): + postcss-calc@9.0.1(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-colormin@6.1.0(postcss@8.4.49): + postcss-colormin@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-convert-values@6.1.0(postcss@8.4.49): + postcss-convert-values@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-discard-comments@6.0.2(postcss@8.4.49): + postcss-discard-comments@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - postcss-discard-duplicates@6.0.3(postcss@8.4.49): + postcss-discard-duplicates@6.0.3(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - postcss-discard-empty@6.0.3(postcss@8.4.49): + postcss-discard-empty@6.0.3(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - postcss-discard-overridden@6.0.2(postcss@8.4.49): + postcss-discard-overridden@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - postcss-import@14.1.0(postcss@8.4.49): + postcss-import@14.1.0(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.10 - postcss-import@15.1.0(postcss@8.4.49): + postcss-import@15.1.0(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.10 - postcss-import@16.1.0(postcss@8.4.49): + postcss-import@16.1.0(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.4.49): + postcss-js@4.0.1(postcss@8.5.0): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.49 + postcss: 8.5.0 - postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)): + postcss-load-config@4.0.2(postcss@8.5.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)): dependencies: lilconfig: 3.1.3 yaml: 2.4.1 optionalDependencies: - postcss: 8.4.49 - ts-node: 10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3) + postcss: 8.5.0 + ts-node: 10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3) - postcss-loader@6.2.1(postcss@8.4.49)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))): + postcss-loader@6.2.1(postcss@8.5.0)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 - postcss: 8.4.49 + postcss: 8.5.0 semver: 7.6.3 webpack: 5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)) - postcss-merge-longhand@6.0.4(postcss@8.4.49): + postcss-merge-longhand@6.0.4(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - stylehacks: 6.1.0(postcss@8.4.49) + stylehacks: 6.1.0(postcss@8.5.0) - postcss-merge-rules@6.1.0(postcss@8.4.49): + postcss-merge-rules@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 caniuse-api: 3.0.0 - cssnano-utils: 4.0.2(postcss@8.4.49) - postcss: 8.4.49 + cssnano-utils: 4.0.2(postcss@8.5.0) + postcss: 8.5.0 postcss-selector-parser: 6.1.2 - postcss-minify-font-values@6.0.3(postcss@8.4.49): + postcss-minify-font-values@6.0.3(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-minify-gradients@6.0.3(postcss@8.4.49): + postcss-minify-gradients@6.0.3(postcss@8.5.0): dependencies: colord: 2.9.3 - cssnano-utils: 4.0.2(postcss@8.4.49) - postcss: 8.4.49 + cssnano-utils: 4.0.2(postcss@8.5.0) + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-minify-params@6.1.0(postcss@8.4.49): + postcss-minify-params@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 - cssnano-utils: 4.0.2(postcss@8.4.49) - postcss: 8.4.49 + cssnano-utils: 4.0.2(postcss@8.5.0) + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-minify-selectors@6.0.3(postcss@8.4.49): + postcss-minify-selectors@6.0.3(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-selector-parser: 6.1.2 - postcss-modules-extract-imports@3.0.0(postcss@8.4.49): + postcss-modules-extract-imports@3.0.0(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - postcss-modules-local-by-default@4.0.4(postcss@8.4.49): + postcss-modules-local-by-default@4.0.4(postcss@8.5.0): dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 + icss-utils: 5.1.0(postcss@8.5.0) + postcss: 8.5.0 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.1.1(postcss@8.4.49): + postcss-modules-scope@3.1.1(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-selector-parser: 6.1.2 - postcss-modules-values@4.0.0(postcss@8.4.49): + postcss-modules-values@4.0.0(postcss@8.5.0): dependencies: - icss-utils: 5.1.0(postcss@8.4.49) - postcss: 8.4.49 + icss-utils: 5.1.0(postcss@8.5.0) + postcss: 8.5.0 - postcss-nested@6.2.0(postcss@8.4.49): + postcss-nested@6.2.0(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-selector-parser: 6.1.2 - postcss-normalize-charset@6.0.2(postcss@8.4.49): + postcss-normalize-charset@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 - postcss-normalize-display-values@6.0.2(postcss@8.4.49): + postcss-normalize-display-values@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-positions@6.0.2(postcss@8.4.49): + postcss-normalize-positions@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@6.0.2(postcss@8.4.49): + postcss-normalize-repeat-style@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-string@6.0.2(postcss@8.4.49): + postcss-normalize-string@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@6.0.2(postcss@8.4.49): + postcss-normalize-timing-functions@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@6.1.0(postcss@8.4.49): + postcss-normalize-unicode@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-url@6.0.2(postcss@8.4.49): + postcss-normalize-url@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@6.0.2(postcss@8.4.49): + postcss-normalize-whitespace@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-ordered-values@6.0.2(postcss@8.4.49): + postcss-ordered-values@6.0.2(postcss@8.5.0): dependencies: - cssnano-utils: 4.0.2(postcss@8.4.49) - postcss: 8.4.49 + cssnano-utils: 4.0.2(postcss@8.5.0) + postcss: 8.5.0 postcss-value-parser: 4.2.0 - postcss-reduce-initial@6.1.0(postcss@8.4.49): + postcss-reduce-initial@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 caniuse-api: 3.0.0 - postcss: 8.4.49 + postcss: 8.5.0 - postcss-reduce-transforms@6.0.2(postcss@8.4.49): + postcss-reduce-transforms@6.0.2(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 postcss-selector-parser@6.0.10: @@ -22331,20 +22388,20 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@6.0.3(postcss@8.4.49): + postcss-svgo@6.0.3(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-value-parser: 4.2.0 svgo: 3.2.0 - postcss-unique-selectors@6.0.3(postcss@8.4.49): + postcss-unique-selectors@6.0.3(postcss@8.5.0): dependencies: - postcss: 8.4.49 + postcss: 8.5.0 postcss-selector-parser: 6.1.2 postcss-value-parser@4.2.0: {} - postcss@8.4.49: + postcss@8.5.0: dependencies: nanoid: 3.3.8 picocolors: 1.1.1 @@ -23686,10 +23743,10 @@ snapshots: dependencies: webpack: 5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)) - stylehacks@6.1.0(postcss@8.4.49): + stylehacks@6.1.0(postcss@8.5.0): dependencies: browserslist: 4.24.4 - postcss: 8.4.49 + postcss: 8.5.0 postcss-selector-parser: 6.1.2 stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15))): @@ -23772,11 +23829,11 @@ snapshots: tailwind-merge@2.6.0: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3))): dependencies: - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) - tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)): + tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -23792,11 +23849,11 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.1.1 - postcss: 8.4.49 - postcss-import: 15.1.0(postcss@8.4.49) - postcss-js: 4.0.1(postcss@8.4.49) - postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) - postcss-nested: 6.2.0(postcss@8.4.49) + postcss: 8.5.0 + postcss-import: 15.1.0(postcss@8.5.0) + postcss-js: 4.0.1(postcss@8.5.0) + postcss-load-config: 4.0.2(postcss@8.5.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) + postcss-nested: 6.2.0(postcss@8.5.0) postcss-selector-parser: 6.1.2 resolve: 1.22.10 sucrase: 3.35.0 @@ -23965,12 +24022,12 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)))(typescript@5.7.3): + ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)))(typescript@5.7.3): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@22.10.5)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3)) + jest: 29.7.0(@types/node@22.10.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -23994,14 +24051,14 @@ snapshots: typescript: 5.7.3 webpack: 5.97.1(@swc/core@1.10.7(@swc/helpers@0.5.15)) - ts-node@10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.4.5): + ts-node@10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.10.5 + '@types/node': 22.10.6 acorn: 8.14.0 acorn-walk: 8.3.2 arg: 4.1.3 @@ -24014,14 +24071,14 @@ snapshots: optionalDependencies: '@swc/core': 1.10.7(@swc/helpers@0.5.15) - ts-node@10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3): + ts-node@10.9.1(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.10.5 + '@types/node': 22.10.6 acorn: 8.14.0 acorn-walk: 8.3.2 arg: 4.1.3 @@ -24034,14 +24091,14 @@ snapshots: optionalDependencies: '@swc/core': 1.10.7(@swc/helpers@0.5.15) - ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.5)(typescript@5.7.3): + ts-node@10.9.2(@swc/core@1.10.7(@swc/helpers@0.5.15))(@types/node@22.10.6)(typescript@5.7.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 22.10.5 + '@types/node': 22.10.6 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -24251,7 +24308,7 @@ snapshots: dependencies: browserslist: 4.23.3 escalade: 3.1.2 - picocolors: 1.0.1 + picocolors: 1.1.1 update-browserslist-db@1.1.2(browserslist@4.24.4): dependencies: @@ -24344,13 +24401,13 @@ snapshots: vary@1.1.2: {} - vite-node@2.1.8(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1): + vite-node@2.1.8(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 pathe: 1.1.2 - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - '@types/node' - less @@ -24362,9 +24419,9 @@ snapshots: - supports-color - terser - vite-plugin-dts@4.5.0(@types/node@22.10.5)(rollup@4.30.1)(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)): + vite-plugin-dts@4.5.0(@types/node@22.10.6)(rollup@4.30.1)(typescript@5.7.3)(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)): dependencies: - '@microsoft/api-extractor': 7.49.1(@types/node@22.10.5) + '@microsoft/api-extractor': 7.49.1(@types/node@22.10.6) '@rollup/pluginutils': 5.1.4(rollup@4.30.1) '@volar/typescript': 2.4.11 '@vue/language-core': 2.2.0(typescript@5.7.3) @@ -24375,29 +24432,29 @@ snapshots: magic-string: 0.30.17 typescript: 5.7.3 optionalDependencies: - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1): + vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1): dependencies: esbuild: 0.21.5 - postcss: 8.4.49 + postcss: 8.5.0 rollup: 4.30.1 optionalDependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 fsevents: 2.3.3 less: 4.1.3 sass: 1.71.1 stylus: 0.64.0 terser: 5.29.1 - vitest@2.1.8(@types/node@22.10.5)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1): + vitest@2.1.8(@types/node@22.10.6)(@vitest/ui@2.1.8)(jsdom@25.0.1)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1): dependencies: '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) + '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1)) '@vitest/pretty-format': 2.1.8 '@vitest/runner': 2.1.8 '@vitest/snapshot': 2.1.8 @@ -24413,11 +24470,11 @@ snapshots: tinyexec: 0.3.2 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) - vite-node: 2.1.8(@types/node@22.10.5)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite: 5.4.11(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) + vite-node: 2.1.8(@types/node@22.10.6)(less@4.1.3)(sass@1.71.1)(stylus@0.64.0)(terser@5.29.1) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.10.5 + '@types/node': 22.10.6 '@vitest/ui': 2.1.8(vitest@2.1.8) jsdom: 25.0.1 transitivePeerDependencies: