feat: impl intl
This commit is contained in:
parent
35636f7c00
commit
2f1a31a9e4
@ -1,23 +1,21 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="showInvitation" class="universal-card information invited my-4">
|
<div v-if="showInvitation" class="universal-card information invited my-4">
|
||||||
<h2>Invitation to join project</h2>
|
<h2>{{ getFormattedMessage(messages.invitationTitle) }}</h2>
|
||||||
<p v-if="currentMember?.project_role">
|
<p v-if="currentMember?.project_role">
|
||||||
You've been invited be a member of this project with the role of '{{
|
{{ formatMessage(messages.invitationWithRole, { role: currentMember.project_role }) }}
|
||||||
currentMember.project_role
|
|
||||||
}}'.
|
|
||||||
</p>
|
</p>
|
||||||
<p v-else>You've been invited to join this project. Please accept or decline the invitation.</p>
|
<p v-else>{{ getFormattedMessage(messages.invitationNoRole) }}</p>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<ButtonStyled color="brand">
|
<ButtonStyled color="brand">
|
||||||
<button class="brand-button" @click="acceptInvite()">
|
<button class="brand-button" @click="acceptInvite()">
|
||||||
<CheckIcon />
|
<CheckIcon />
|
||||||
Accept
|
{{ getFormattedMessage(messages.accept) }}
|
||||||
</button>
|
</button>
|
||||||
</ButtonStyled>
|
</ButtonStyled>
|
||||||
<ButtonStyled color="red">
|
<ButtonStyled color="red">
|
||||||
<button @click="declineInvite">
|
<button @click="declineInvite">
|
||||||
<XIcon />
|
<XIcon />
|
||||||
Decline
|
{{ getFormattedMessage(messages.decline) }}
|
||||||
</button>
|
</button>
|
||||||
</ButtonStyled>
|
</ButtonStyled>
|
||||||
</div>
|
</div>
|
||||||
@ -32,7 +30,7 @@
|
|||||||
>
|
>
|
||||||
<div class="flex max-w-full flex-wrap items-center gap-x-6 gap-y-4">
|
<div class="flex max-w-full flex-wrap items-center gap-x-6 gap-y-4">
|
||||||
<div class="flex flex-auto flex-wrap items-center gap-x-6 gap-y-4">
|
<div class="flex flex-auto flex-wrap items-center gap-x-6 gap-y-4">
|
||||||
<h2 class="my-0 mr-auto">Publishing checklist</h2>
|
<h2 class="my-0 mr-auto">{{ getFormattedMessage(messages.publishingChecklist) }}</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<ButtonStyled circular>
|
<ButtonStyled circular>
|
||||||
@ -56,9 +54,9 @@
|
|||||||
]"
|
]"
|
||||||
:aria-label="getStatusTooltip(nag.status)"
|
:aria-label="getStatusTooltip(nag.status)"
|
||||||
/>
|
/>
|
||||||
{{ nag.title }}
|
{{ getFormattedMessage(nag.title) }}
|
||||||
</span>
|
</span>
|
||||||
{{ nag.description(nagContext) }}
|
{{ getNagDescription(nag) }}
|
||||||
<NuxtLink
|
<NuxtLink
|
||||||
v-if="nag.link && shouldShowLink(nag)"
|
v-if="nag.link && shouldShowLink(nag)"
|
||||||
:to="`/${project.project_type}/${project.slug ? project.slug : project.id}/${
|
:to="`/${project.project_type}/${project.slug ? project.slug : project.id}/${
|
||||||
@ -66,7 +64,7 @@
|
|||||||
}`"
|
}`"
|
||||||
class="goto-link"
|
class="goto-link"
|
||||||
>
|
>
|
||||||
{{ nag.link.title }}
|
{{ getFormattedMessage(nag.link.title) }}
|
||||||
<ChevronRightIcon aria-hidden="true" class="featured-header-chevron" />
|
<ChevronRightIcon aria-hidden="true" class="featured-header-chevron" />
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
<ButtonStyled
|
<ButtonStyled
|
||||||
@ -77,13 +75,11 @@
|
|||||||
<button
|
<button
|
||||||
:disabled="!canSubmitForReview"
|
:disabled="!canSubmitForReview"
|
||||||
v-tooltip="
|
v-tooltip="
|
||||||
!canSubmitForReview
|
!canSubmitForReview ? getFormattedMessage(messages.submitChecklistTooltip) : undefined
|
||||||
? 'You must complete the required steps in the publishing checklist!'
|
|
||||||
: undefined
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<SendIcon />
|
<SendIcon />
|
||||||
Submit for review
|
{{ getFormattedMessage(messages.submitForReview) }}
|
||||||
</button>
|
</button>
|
||||||
</ButtonStyled>
|
</ButtonStyled>
|
||||||
</div>
|
</div>
|
||||||
@ -106,6 +102,7 @@ import {
|
|||||||
import { acceptTeamInvite, removeTeamMember } from "~/helpers/teams.js";
|
import { acceptTeamInvite, removeTeamMember } from "~/helpers/teams.js";
|
||||||
import { nags } from "@modrinth/moderation";
|
import { nags } from "@modrinth/moderation";
|
||||||
import { ButtonStyled } from "@modrinth/ui";
|
import { ButtonStyled } from "@modrinth/ui";
|
||||||
|
import { useVIntl, defineMessages, type MessageDescriptor } from "@vintl/vintl";
|
||||||
import type { Nag, NagContext, NagStatus } from "@modrinth/moderation";
|
import type { Nag, NagContext, NagStatus } from "@modrinth/moderation";
|
||||||
import type { Project, User, Version } from "@modrinth/utils";
|
import type { Project, User, Version } from "@modrinth/utils";
|
||||||
import type { Component } from "vue";
|
import type { Component } from "vue";
|
||||||
@ -141,6 +138,112 @@ interface Props {
|
|||||||
updateMembers?: () => void | Promise<void>;
|
updateMembers?: () => void | Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const messages = defineMessages({
|
||||||
|
invitationTitle: {
|
||||||
|
id: "project-member-header.invitation-title",
|
||||||
|
defaultMessage: "Invitation to join project",
|
||||||
|
},
|
||||||
|
invitationWithRole: {
|
||||||
|
id: "project-member-header.invitation-with-role",
|
||||||
|
defaultMessage: "You've been invited be a member of this project with the role of '{role}'.",
|
||||||
|
},
|
||||||
|
invitationNoRole: {
|
||||||
|
id: "project-member-header.invitation-no-role",
|
||||||
|
defaultMessage:
|
||||||
|
"You've been invited to join this project. Please accept or decline the invitation.",
|
||||||
|
},
|
||||||
|
accept: {
|
||||||
|
id: "project-member-header.accept",
|
||||||
|
defaultMessage: "Accept",
|
||||||
|
},
|
||||||
|
decline: {
|
||||||
|
id: "project-member-header.decline",
|
||||||
|
defaultMessage: "Decline",
|
||||||
|
},
|
||||||
|
publishingChecklist: {
|
||||||
|
id: "project-member-header.publishing-checklist",
|
||||||
|
defaultMessage: "Publishing checklist",
|
||||||
|
},
|
||||||
|
submitForReview: {
|
||||||
|
id: "project-member-header.submit-for-review",
|
||||||
|
defaultMessage: "Submit for review",
|
||||||
|
},
|
||||||
|
submitForReviewDesc: {
|
||||||
|
id: "project-member-header.submit-for-review-desc",
|
||||||
|
defaultMessage:
|
||||||
|
"Your project is only viewable by members of the project. It must be reviewed by moderators in order to be published.",
|
||||||
|
},
|
||||||
|
resubmitForReview: {
|
||||||
|
id: "project-member-header.resubmit-for-review",
|
||||||
|
defaultMessage: "Resubmit for review",
|
||||||
|
},
|
||||||
|
resubmitForReviewDesc: {
|
||||||
|
id: "project-member-header.resubmit-for-review-desc",
|
||||||
|
defaultMessage:
|
||||||
|
"Your project has been {status} by Modrinth's staff. In most cases, you can resubmit for review after addressing the staff's message.",
|
||||||
|
},
|
||||||
|
visitModerationPage: {
|
||||||
|
id: "project-member-header.visit-moderation-page",
|
||||||
|
defaultMessage: "Visit moderation page",
|
||||||
|
},
|
||||||
|
submitChecklistTooltip: {
|
||||||
|
id: "project-member-header.submit-checklist-tooltip",
|
||||||
|
defaultMessage: "You must complete the required steps in the publishing checklist!",
|
||||||
|
},
|
||||||
|
successJoin: {
|
||||||
|
id: "project-member-header.success-join",
|
||||||
|
defaultMessage: "You have joined the project team",
|
||||||
|
},
|
||||||
|
errorJoin: {
|
||||||
|
id: "project-member-header.error-join",
|
||||||
|
defaultMessage: "Failed to accept team invitation",
|
||||||
|
},
|
||||||
|
successDecline: {
|
||||||
|
id: "project-member-header.success-decline",
|
||||||
|
defaultMessage: "You have declined the team invitation",
|
||||||
|
},
|
||||||
|
errorDecline: {
|
||||||
|
id: "project-member-header.error-decline",
|
||||||
|
defaultMessage: "Failed to decline team invitation",
|
||||||
|
},
|
||||||
|
success: {
|
||||||
|
id: "project-member-header.success",
|
||||||
|
defaultMessage: "Success",
|
||||||
|
},
|
||||||
|
error: {
|
||||||
|
id: "project-member-header.error",
|
||||||
|
defaultMessage: "Error",
|
||||||
|
},
|
||||||
|
required: {
|
||||||
|
id: "project-member-header.required",
|
||||||
|
defaultMessage: "Required",
|
||||||
|
},
|
||||||
|
warning: {
|
||||||
|
id: "project-member-header.warning",
|
||||||
|
defaultMessage: "Warning",
|
||||||
|
},
|
||||||
|
suggestion: {
|
||||||
|
id: "project-member-header.suggestion",
|
||||||
|
defaultMessage: "Suggestion",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { formatMessage } = useVIntl();
|
||||||
|
|
||||||
|
function getNagDescription(nag: Nag): string {
|
||||||
|
if (typeof nag.description === "function") {
|
||||||
|
return nag.description(nagContext.value);
|
||||||
|
}
|
||||||
|
return formatMessage(nag.description);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFormattedMessage(message: string | MessageDescriptor): string {
|
||||||
|
if (typeof message === "string") {
|
||||||
|
return message;
|
||||||
|
}
|
||||||
|
return formatMessage(message);
|
||||||
|
}
|
||||||
|
|
||||||
const props = withDefaults(defineProps<Props>(), {
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
versions: () => [],
|
versions: () => [],
|
||||||
currentMember: null,
|
currentMember: null,
|
||||||
@ -195,9 +298,8 @@ const visibleNags = computed<Nag[]>(() => {
|
|||||||
if (props.project.status === "draft") {
|
if (props.project.status === "draft") {
|
||||||
finalNags.push({
|
finalNags.push({
|
||||||
id: "submit-for-review",
|
id: "submit-for-review",
|
||||||
title: "Submit for review",
|
title: messages.submitForReview,
|
||||||
description: () =>
|
description: () => formatMessage(messages.submitForReviewDesc),
|
||||||
"Your project is only viewable by members of the project. It must be reviewed by moderators in order to be published.",
|
|
||||||
status: "special-submit-action",
|
status: "special-submit-action",
|
||||||
shouldShow: (ctx) => ctx.project.status === "draft",
|
shouldShow: (ctx) => ctx.project.status === "draft",
|
||||||
});
|
});
|
||||||
@ -206,14 +308,14 @@ const visibleNags = computed<Nag[]>(() => {
|
|||||||
if (props.tags.rejectedStatuses.includes(props.project.status)) {
|
if (props.tags.rejectedStatuses.includes(props.project.status)) {
|
||||||
finalNags.push({
|
finalNags.push({
|
||||||
id: "resubmit-for-review",
|
id: "resubmit-for-review",
|
||||||
title: "Resubmit for review",
|
title: messages.resubmitForReview,
|
||||||
description: (ctx) =>
|
description: (ctx) =>
|
||||||
`Your project has been ${ctx.project.status} by Modrinth's staff. In most cases, you can resubmit for review after addressing the staff's message.`,
|
formatMessage(messages.resubmitForReviewDesc, { status: ctx.project.status }),
|
||||||
status: "special-submit-action",
|
status: "special-submit-action",
|
||||||
shouldShow: (ctx) => ctx.tags.rejectedStatuses.includes(ctx.project.status),
|
shouldShow: (ctx) => ctx.tags.rejectedStatuses.includes(ctx.project.status),
|
||||||
link: {
|
link: {
|
||||||
path: "moderation",
|
path: "moderation",
|
||||||
title: "Visit moderation page",
|
title: messages.visitModerationPage,
|
||||||
shouldShow: () => props.routeName !== "type-id-moderation",
|
shouldShow: () => props.routeName !== "type-id-moderation",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@ -244,13 +346,13 @@ function getDefaultIcon(status: NagStatus): Component {
|
|||||||
function getStatusTooltip(status: NagStatus): string {
|
function getStatusTooltip(status: NagStatus): string {
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case "required":
|
case "required":
|
||||||
return "Required";
|
return formatMessage(messages.required);
|
||||||
case "warning":
|
case "warning":
|
||||||
return "Warning";
|
return formatMessage(messages.warning);
|
||||||
case "suggestion":
|
case "suggestion":
|
||||||
return "Suggestion";
|
return formatMessage(messages.suggestion);
|
||||||
default:
|
default:
|
||||||
return "Required";
|
return formatMessage(messages.required);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -293,15 +395,15 @@ async function acceptInvite(): Promise<void> {
|
|||||||
await updateMembers();
|
await updateMembers();
|
||||||
addNotification({
|
addNotification({
|
||||||
group: "main",
|
group: "main",
|
||||||
title: "Success",
|
title: formatMessage(messages.success),
|
||||||
text: "You have joined the project team",
|
text: formatMessage(messages.successJoin),
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
addNotification({
|
addNotification({
|
||||||
group: "main",
|
group: "main",
|
||||||
title: "Error",
|
title: formatMessage(messages.error),
|
||||||
text: "Failed to accept team invitation",
|
text: formatMessage(messages.errorJoin),
|
||||||
type: "error",
|
type: "error",
|
||||||
});
|
});
|
||||||
} finally {
|
} finally {
|
||||||
@ -316,15 +418,15 @@ async function declineInvite(): Promise<void> {
|
|||||||
await updateMembers();
|
await updateMembers();
|
||||||
addNotification({
|
addNotification({
|
||||||
group: "main",
|
group: "main",
|
||||||
title: "Success",
|
title: formatMessage(messages.success),
|
||||||
text: "You have declined the team invitation",
|
text: formatMessage(messages.successDecline),
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
addNotification({
|
addNotification({
|
||||||
group: "main",
|
group: "main",
|
||||||
title: "Error",
|
title: formatMessage(messages.error),
|
||||||
text: "Failed to decline team invitation",
|
text: formatMessage(messages.errorDecline),
|
||||||
type: "error",
|
type: "error",
|
||||||
});
|
});
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
@ -533,6 +533,69 @@
|
|||||||
"profile.user-id": {
|
"profile.user-id": {
|
||||||
"message": "User ID: {id}"
|
"message": "User ID: {id}"
|
||||||
},
|
},
|
||||||
|
"project-member-header.accept": {
|
||||||
|
"message": "Accept"
|
||||||
|
},
|
||||||
|
"project-member-header.decline": {
|
||||||
|
"message": "Decline"
|
||||||
|
},
|
||||||
|
"project-member-header.error": {
|
||||||
|
"message": "Error"
|
||||||
|
},
|
||||||
|
"project-member-header.error-decline": {
|
||||||
|
"message": "Failed to decline team invitation"
|
||||||
|
},
|
||||||
|
"project-member-header.error-join": {
|
||||||
|
"message": "Failed to accept team invitation"
|
||||||
|
},
|
||||||
|
"project-member-header.invitation-no-role": {
|
||||||
|
"message": "You've been invited to join this project. Please accept or decline the invitation."
|
||||||
|
},
|
||||||
|
"project-member-header.invitation-title": {
|
||||||
|
"message": "Invitation to join project"
|
||||||
|
},
|
||||||
|
"project-member-header.invitation-with-role": {
|
||||||
|
"message": "You've been invited be a member of this project with the role of '{role}'."
|
||||||
|
},
|
||||||
|
"project-member-header.publishing-checklist": {
|
||||||
|
"message": "Publishing checklist"
|
||||||
|
},
|
||||||
|
"project-member-header.required": {
|
||||||
|
"message": "Required"
|
||||||
|
},
|
||||||
|
"project-member-header.resubmit-for-review": {
|
||||||
|
"message": "Resubmit for review"
|
||||||
|
},
|
||||||
|
"project-member-header.resubmit-for-review-desc": {
|
||||||
|
"message": "Your project has been {status} by Modrinth's staff. In most cases, you can resubmit for review after addressing the staff's message."
|
||||||
|
},
|
||||||
|
"project-member-header.submit-checklist-tooltip": {
|
||||||
|
"message": "You must complete the required steps in the publishing checklist!"
|
||||||
|
},
|
||||||
|
"project-member-header.submit-for-review": {
|
||||||
|
"message": "Submit for review"
|
||||||
|
},
|
||||||
|
"project-member-header.submit-for-review-desc": {
|
||||||
|
"message": "Your project is only viewable by members of the project. It must be reviewed by moderators in order to be published."
|
||||||
|
},
|
||||||
|
"project-member-header.success": {
|
||||||
|
"message": "Success"
|
||||||
|
},
|
||||||
|
"project-member-header.success-decline": {
|
||||||
|
"message": "You have declined the team invitation"
|
||||||
|
},
|
||||||
|
"project-member-header.success-join": {
|
||||||
|
"message": "You have joined the project team"
|
||||||
|
},
|
||||||
|
"project-member-header.suggestion": {
|
||||||
|
"message": "Suggestion"
|
||||||
|
},
|
||||||
|
"project-member-header.visit-moderation-page": {
|
||||||
|
"message": "Visit moderation page"
|
||||||
|
},
|
||||||
|
"project-member-header.warning": {
|
||||||
|
"message": "Warning"
|
||||||
|
},
|
||||||
"project-type.collection.plural": {
|
"project-type.collection.plural": {
|
||||||
"message": "Collections"
|
"message": "Collections"
|
||||||
},
|
},
|
||||||
|
|||||||
140
pnpm-lock.yaml
generated
140
pnpm-lock.yaml
generated
@ -581,7 +581,7 @@ importers:
|
|||||||
version: 7.3.1
|
version: 7.3.1
|
||||||
'@vintl/unplugin':
|
'@vintl/unplugin':
|
||||||
specifier: ^1.5.1
|
specifier: ^1.5.1
|
||||||
version: 1.5.2(@vue/compiler-core@3.5.13)(rollup@3.29.4)(vite@4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.42.0))(vue@3.5.13(typescript@5.5.4))(webpack@5.92.1)
|
version: 1.5.2(@vue/compiler-core@3.5.13)(rollup@3.29.4)(vite@4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.43.1))(vue@3.5.13(typescript@5.5.4))(webpack@5.92.1)
|
||||||
'@vintl/vintl':
|
'@vintl/vintl':
|
||||||
specifier: ^4.4.1
|
specifier: ^4.4.1
|
||||||
version: 4.4.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4))
|
version: 4.4.1(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4))
|
||||||
@ -1844,6 +1844,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
|
'@jridgewell/gen-mapping@0.3.12':
|
||||||
|
resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
|
||||||
|
|
||||||
'@jridgewell/gen-mapping@0.3.5':
|
'@jridgewell/gen-mapping@0.3.5':
|
||||||
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
@ -1856,15 +1859,24 @@ packages:
|
|||||||
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
|
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
|
|
||||||
|
'@jridgewell/source-map@0.3.10':
|
||||||
|
resolution: {integrity: sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==}
|
||||||
|
|
||||||
'@jridgewell/source-map@0.3.6':
|
'@jridgewell/source-map@0.3.6':
|
||||||
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
|
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
|
||||||
|
|
||||||
'@jridgewell/sourcemap-codec@1.5.0':
|
'@jridgewell/sourcemap-codec@1.5.0':
|
||||||
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
||||||
|
|
||||||
|
'@jridgewell/sourcemap-codec@1.5.4':
|
||||||
|
resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
|
||||||
|
|
||||||
'@jridgewell/trace-mapping@0.3.25':
|
'@jridgewell/trace-mapping@0.3.25':
|
||||||
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
||||||
|
|
||||||
|
'@jridgewell/trace-mapping@0.3.29':
|
||||||
|
resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
|
||||||
|
|
||||||
'@jsdevtools/ono@7.1.3':
|
'@jsdevtools/ono@7.1.3':
|
||||||
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
|
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
|
||||||
|
|
||||||
@ -3496,8 +3508,8 @@ packages:
|
|||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
browserslist@4.25.0:
|
browserslist@4.25.1:
|
||||||
resolution: {integrity: sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==}
|
resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
|
||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
@ -3530,8 +3542,8 @@ packages:
|
|||||||
magicast:
|
magicast:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
c12@3.0.4:
|
c12@3.1.0:
|
||||||
resolution: {integrity: sha512-t5FaZTYbbCtvxuZq9xxIruYydrAGsJ+8UdP0pZzMiK2xl/gNiSOy0OxhLzHUEEb0m1QXYqfzfvyIFEmz/g9lqg==}
|
resolution: {integrity: sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
magicast: ^0.3.5
|
magicast: ^0.3.5
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
@ -3583,8 +3595,8 @@ packages:
|
|||||||
caniuse-lite@1.0.30001687:
|
caniuse-lite@1.0.30001687:
|
||||||
resolution: {integrity: sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==}
|
resolution: {integrity: sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001723:
|
caniuse-lite@1.0.30001727:
|
||||||
resolution: {integrity: sha512-1R/elMjtehrFejxwmexeXAtae5UO9iSyFn6G/I806CYC/BLyyBk1EPhrKBkWhy6wM6Xnm47dSJQec+tLJ39WHw==}
|
resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==}
|
||||||
|
|
||||||
ccount@2.0.1:
|
ccount@2.0.1:
|
||||||
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
||||||
@ -4147,8 +4159,8 @@ packages:
|
|||||||
ee-first@1.1.1:
|
ee-first@1.1.1:
|
||||||
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
||||||
|
|
||||||
electron-to-chromium@1.5.167:
|
electron-to-chromium@1.5.182:
|
||||||
resolution: {integrity: sha512-LxcRvnYO5ez2bMOFpbuuVuAI5QNeY1ncVytE/KXaL6ZNfzX1yPlAO0nSOyIHx2fVAuUprMqPs/TdVhUFZy7SIQ==}
|
resolution: {integrity: sha512-Lv65Btwv9W4J9pyODI6EWpdnhfvrve/us5h1WspW8B2Fb0366REPtY3hX7ounk1CkV/TBjWCEvCBBbYbmV0qCA==}
|
||||||
|
|
||||||
electron-to-chromium@1.5.71:
|
electron-to-chromium@1.5.71:
|
||||||
resolution: {integrity: sha512-dB68l59BI75W1BUGVTAEJy45CEVuEGy9qPVVQ8pnHyHMn36PLPPoE1mjLH+lo9rKulO3HC2OhbACI/8tCqJBcA==}
|
resolution: {integrity: sha512-dB68l59BI75W1BUGVTAEJy45CEVuEGy9qPVVQ8pnHyHMn36PLPPoE1mjLH+lo9rKulO3HC2OhbACI/8tCqJBcA==}
|
||||||
@ -4183,8 +4195,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
|
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
|
|
||||||
enhanced-resolve@5.18.1:
|
enhanced-resolve@5.18.2:
|
||||||
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
|
resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
|
|
||||||
entities@2.2.0:
|
entities@2.2.0:
|
||||||
@ -6388,8 +6400,8 @@ packages:
|
|||||||
pkg-types@1.3.1:
|
pkg-types@1.3.1:
|
||||||
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
||||||
|
|
||||||
pkg-types@2.1.1:
|
pkg-types@2.2.0:
|
||||||
resolution: {integrity: sha512-eY0QFb6eSwc9+0d/5D2lFFUq+A3n3QNGSy/X2Nvp+6MfzGw2u6EbA7S80actgjY1lkvvI0pqB+a4hioMh443Ew==}
|
resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==}
|
||||||
|
|
||||||
pluralize@8.0.0:
|
pluralize@8.0.0:
|
||||||
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
|
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
|
||||||
@ -6606,8 +6618,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
|
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
|
||||||
engines: {node: ^10 || ^12 || >=14}
|
engines: {node: ^10 || ^12 || >=14}
|
||||||
|
|
||||||
postcss@8.5.5:
|
postcss@8.5.6:
|
||||||
resolution: {integrity: sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg==}
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
||||||
engines: {node: ^10 || ^12 || >=14}
|
engines: {node: ^10 || ^12 || >=14}
|
||||||
|
|
||||||
posthog-js@1.158.2:
|
posthog-js@1.158.2:
|
||||||
@ -7486,6 +7498,11 @@ packages:
|
|||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
terser@5.43.1:
|
||||||
|
resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
text-decoder@1.1.0:
|
text-decoder@1.1.0:
|
||||||
resolution: {integrity: sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==}
|
resolution: {integrity: sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==}
|
||||||
|
|
||||||
@ -8348,8 +8365,8 @@ packages:
|
|||||||
webidl-conversions@3.0.1:
|
webidl-conversions@3.0.1:
|
||||||
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
|
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
|
||||||
|
|
||||||
webpack-sources@3.3.2:
|
webpack-sources@3.3.3:
|
||||||
resolution: {integrity: sha512-ykKKus8lqlgXX/1WjudpIEjqsafjOTcOJqxnAbMLAu/KCsDCJ6GBtvscewvTkrn24HsnvFwrSCbenFrhtcCsAA==}
|
resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
|
|
||||||
webpack-virtual-modules@0.6.2:
|
webpack-virtual-modules@0.6.2:
|
||||||
@ -9632,6 +9649,12 @@ snapshots:
|
|||||||
wrap-ansi: 8.1.0
|
wrap-ansi: 8.1.0
|
||||||
wrap-ansi-cjs: wrap-ansi@7.0.0
|
wrap-ansi-cjs: wrap-ansi@7.0.0
|
||||||
|
|
||||||
|
'@jridgewell/gen-mapping@0.3.12':
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/sourcemap-codec': 1.5.4
|
||||||
|
'@jridgewell/trace-mapping': 0.3.29
|
||||||
|
optional: true
|
||||||
|
|
||||||
'@jridgewell/gen-mapping@0.3.5':
|
'@jridgewell/gen-mapping@0.3.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/set-array': 1.2.1
|
'@jridgewell/set-array': 1.2.1
|
||||||
@ -9642,6 +9665,12 @@ snapshots:
|
|||||||
|
|
||||||
'@jridgewell/set-array@1.2.1': {}
|
'@jridgewell/set-array@1.2.1': {}
|
||||||
|
|
||||||
|
'@jridgewell/source-map@0.3.10':
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/gen-mapping': 0.3.12
|
||||||
|
'@jridgewell/trace-mapping': 0.3.29
|
||||||
|
optional: true
|
||||||
|
|
||||||
'@jridgewell/source-map@0.3.6':
|
'@jridgewell/source-map@0.3.6':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/gen-mapping': 0.3.5
|
'@jridgewell/gen-mapping': 0.3.5
|
||||||
@ -9649,11 +9678,20 @@ snapshots:
|
|||||||
|
|
||||||
'@jridgewell/sourcemap-codec@1.5.0': {}
|
'@jridgewell/sourcemap-codec@1.5.0': {}
|
||||||
|
|
||||||
|
'@jridgewell/sourcemap-codec@1.5.4':
|
||||||
|
optional: true
|
||||||
|
|
||||||
'@jridgewell/trace-mapping@0.3.25':
|
'@jridgewell/trace-mapping@0.3.25':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/resolve-uri': 3.1.2
|
'@jridgewell/resolve-uri': 3.1.2
|
||||||
'@jridgewell/sourcemap-codec': 1.5.0
|
'@jridgewell/sourcemap-codec': 1.5.0
|
||||||
|
|
||||||
|
'@jridgewell/trace-mapping@0.3.29':
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/resolve-uri': 3.1.2
|
||||||
|
'@jridgewell/sourcemap-codec': 1.5.4
|
||||||
|
optional: true
|
||||||
|
|
||||||
'@jsdevtools/ono@7.1.3': {}
|
'@jsdevtools/ono@7.1.3': {}
|
||||||
|
|
||||||
'@kwsites/file-exists@1.1.1':
|
'@kwsites/file-exists@1.1.1':
|
||||||
@ -9901,7 +9939,7 @@ snapshots:
|
|||||||
|
|
||||||
'@nuxt/kit@3.17.5(magicast@0.3.5)':
|
'@nuxt/kit@3.17.5(magicast@0.3.5)':
|
||||||
dependencies:
|
dependencies:
|
||||||
c12: 3.0.4(magicast@0.3.5)
|
c12: 3.1.0(magicast@0.3.5)
|
||||||
consola: 3.4.2
|
consola: 3.4.2
|
||||||
defu: 6.1.4
|
defu: 6.1.4
|
||||||
destr: 2.0.5
|
destr: 2.0.5
|
||||||
@ -9914,7 +9952,7 @@ snapshots:
|
|||||||
mlly: 1.7.4
|
mlly: 1.7.4
|
||||||
ohash: 2.0.11
|
ohash: 2.0.11
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
pkg-types: 2.1.1
|
pkg-types: 2.2.0
|
||||||
scule: 1.3.0
|
scule: 1.3.0
|
||||||
semver: 7.7.2
|
semver: 7.7.2
|
||||||
std-env: 3.9.0
|
std-env: 3.9.0
|
||||||
@ -11112,7 +11150,7 @@ snapshots:
|
|||||||
- vue
|
- vue
|
||||||
- webpack
|
- webpack
|
||||||
|
|
||||||
'@vintl/unplugin@1.5.2(@vue/compiler-core@3.5.13)(rollup@3.29.4)(vite@4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.42.0))(vue@3.5.13(typescript@5.5.4))(webpack@5.92.1)':
|
'@vintl/unplugin@1.5.2(@vue/compiler-core@3.5.13)(rollup@3.29.4)(vite@4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.43.1))(vue@3.5.13(typescript@5.5.4))(webpack@5.92.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@formatjs/cli-lib': 6.4.2(@vue/compiler-core@3.5.13)(vue@3.5.13(typescript@5.5.4))
|
'@formatjs/cli-lib': 6.4.2(@vue/compiler-core@3.5.13)(vue@3.5.13(typescript@5.5.4))
|
||||||
'@formatjs/icu-messageformat-parser': 2.7.8
|
'@formatjs/icu-messageformat-parser': 2.7.8
|
||||||
@ -11123,7 +11161,7 @@ snapshots:
|
|||||||
unplugin: 1.16.0
|
unplugin: 1.16.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
rollup: 3.29.4
|
rollup: 3.29.4
|
||||||
vite: 4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.42.0)
|
vite: 4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.43.1)
|
||||||
webpack: 5.92.1
|
webpack: 5.92.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@glimmer/env'
|
- '@glimmer/env'
|
||||||
@ -11984,12 +12022,12 @@ snapshots:
|
|||||||
node-releases: 2.0.18
|
node-releases: 2.0.18
|
||||||
update-browserslist-db: 1.1.1(browserslist@4.24.2)
|
update-browserslist-db: 1.1.1(browserslist@4.24.2)
|
||||||
|
|
||||||
browserslist@4.25.0:
|
browserslist@4.25.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
caniuse-lite: 1.0.30001723
|
caniuse-lite: 1.0.30001727
|
||||||
electron-to-chromium: 1.5.167
|
electron-to-chromium: 1.5.182
|
||||||
node-releases: 2.0.19
|
node-releases: 2.0.19
|
||||||
update-browserslist-db: 1.1.3(browserslist@4.25.0)
|
update-browserslist-db: 1.1.3(browserslist@4.25.1)
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
buffer-crc32@1.0.0: {}
|
buffer-crc32@1.0.0: {}
|
||||||
@ -12028,7 +12066,7 @@ snapshots:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
magicast: 0.3.5
|
magicast: 0.3.5
|
||||||
|
|
||||||
c12@3.0.4(magicast@0.3.5):
|
c12@3.1.0(magicast@0.3.5):
|
||||||
dependencies:
|
dependencies:
|
||||||
chokidar: 4.0.3
|
chokidar: 4.0.3
|
||||||
confbox: 0.2.2
|
confbox: 0.2.2
|
||||||
@ -12040,7 +12078,7 @@ snapshots:
|
|||||||
ohash: 2.0.11
|
ohash: 2.0.11
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
perfect-debounce: 1.0.0
|
perfect-debounce: 1.0.0
|
||||||
pkg-types: 2.1.1
|
pkg-types: 2.2.0
|
||||||
rc9: 2.1.2
|
rc9: 2.1.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
magicast: 0.3.5
|
magicast: 0.3.5
|
||||||
@ -12092,7 +12130,7 @@ snapshots:
|
|||||||
|
|
||||||
caniuse-lite@1.0.30001687: {}
|
caniuse-lite@1.0.30001687: {}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001723:
|
caniuse-lite@1.0.30001727:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
ccount@2.0.1: {}
|
ccount@2.0.1: {}
|
||||||
@ -12564,7 +12602,7 @@ snapshots:
|
|||||||
|
|
||||||
ee-first@1.1.1: {}
|
ee-first@1.1.1: {}
|
||||||
|
|
||||||
electron-to-chromium@1.5.167:
|
electron-to-chromium@1.5.182:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
electron-to-chromium@1.5.71: {}
|
electron-to-chromium@1.5.71: {}
|
||||||
@ -12595,7 +12633,7 @@ snapshots:
|
|||||||
graceful-fs: 4.2.11
|
graceful-fs: 4.2.11
|
||||||
tapable: 2.2.1
|
tapable: 2.2.1
|
||||||
|
|
||||||
enhanced-resolve@5.18.1:
|
enhanced-resolve@5.18.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
graceful-fs: 4.2.11
|
graceful-fs: 4.2.11
|
||||||
tapable: 2.2.2
|
tapable: 2.2.2
|
||||||
@ -14302,7 +14340,7 @@ snapshots:
|
|||||||
|
|
||||||
jest-worker@27.5.1:
|
jest-worker@27.5.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 20.14.11
|
'@types/node': 22.4.1
|
||||||
merge-stream: 2.0.0
|
merge-stream: 2.0.0
|
||||||
supports-color: 8.1.1
|
supports-color: 8.1.1
|
||||||
optional: true
|
optional: true
|
||||||
@ -14475,7 +14513,7 @@ snapshots:
|
|||||||
local-pkg@1.1.1:
|
local-pkg@1.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
mlly: 1.7.4
|
mlly: 1.7.4
|
||||||
pkg-types: 2.1.1
|
pkg-types: 2.2.0
|
||||||
quansync: 0.2.10
|
quansync: 0.2.10
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@ -15472,7 +15510,7 @@ snapshots:
|
|||||||
citty: 0.1.6
|
citty: 0.1.6
|
||||||
consola: 3.4.2
|
consola: 3.4.2
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
pkg-types: 2.1.1
|
pkg-types: 2.2.0
|
||||||
tinyexec: 0.3.2
|
tinyexec: 0.3.2
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@ -15760,7 +15798,7 @@ snapshots:
|
|||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
pkg-types@2.1.1:
|
pkg-types@2.2.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
confbox: 0.2.2
|
confbox: 0.2.2
|
||||||
exsolve: 1.0.7
|
exsolve: 1.0.7
|
||||||
@ -15963,7 +16001,7 @@ snapshots:
|
|||||||
picocolors: 1.1.1
|
picocolors: 1.1.1
|
||||||
source-map-js: 1.2.1
|
source-map-js: 1.2.1
|
||||||
|
|
||||||
postcss@8.5.5:
|
postcss@8.5.6:
|
||||||
dependencies:
|
dependencies:
|
||||||
nanoid: 3.3.11
|
nanoid: 3.3.11
|
||||||
picocolors: 1.1.1
|
picocolors: 1.1.1
|
||||||
@ -17016,11 +17054,11 @@ snapshots:
|
|||||||
|
|
||||||
terser-webpack-plugin@5.3.14(webpack@5.92.1):
|
terser-webpack-plugin@5.3.14(webpack@5.92.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/trace-mapping': 0.3.25
|
'@jridgewell/trace-mapping': 0.3.29
|
||||||
jest-worker: 27.5.1
|
jest-worker: 27.5.1
|
||||||
schema-utils: 4.3.2
|
schema-utils: 4.3.2
|
||||||
serialize-javascript: 6.0.2
|
serialize-javascript: 6.0.2
|
||||||
terser: 5.42.0
|
terser: 5.43.1
|
||||||
webpack: 5.92.1
|
webpack: 5.92.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@ -17031,6 +17069,14 @@ snapshots:
|
|||||||
commander: 2.20.3
|
commander: 2.20.3
|
||||||
source-map-support: 0.5.21
|
source-map-support: 0.5.21
|
||||||
|
|
||||||
|
terser@5.43.1:
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/source-map': 0.3.10
|
||||||
|
acorn: 8.15.0
|
||||||
|
commander: 2.20.3
|
||||||
|
source-map-support: 0.5.21
|
||||||
|
optional: true
|
||||||
|
|
||||||
text-decoder@1.1.0:
|
text-decoder@1.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
b4a: 1.6.6
|
b4a: 1.6.6
|
||||||
@ -17306,7 +17352,7 @@ snapshots:
|
|||||||
mlly: 1.7.4
|
mlly: 1.7.4
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
picomatch: 4.0.2
|
picomatch: 4.0.2
|
||||||
pkg-types: 2.1.1
|
pkg-types: 2.2.0
|
||||||
scule: 1.3.0
|
scule: 1.3.0
|
||||||
strip-literal: 3.0.0
|
strip-literal: 3.0.0
|
||||||
tinyglobby: 0.2.14
|
tinyglobby: 0.2.14
|
||||||
@ -17477,9 +17523,9 @@ snapshots:
|
|||||||
escalade: 3.2.0
|
escalade: 3.2.0
|
||||||
picocolors: 1.1.1
|
picocolors: 1.1.1
|
||||||
|
|
||||||
update-browserslist-db@1.1.3(browserslist@4.25.0):
|
update-browserslist-db@1.1.3(browserslist@4.25.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: 4.25.0
|
browserslist: 4.25.1
|
||||||
escalade: 3.2.0
|
escalade: 3.2.0
|
||||||
picocolors: 1.1.1
|
picocolors: 1.1.1
|
||||||
optional: true
|
optional: true
|
||||||
@ -17601,16 +17647,16 @@ snapshots:
|
|||||||
svgo: 3.3.2
|
svgo: 3.3.2
|
||||||
vue: 3.5.13(typescript@5.5.4)
|
vue: 3.5.13(typescript@5.5.4)
|
||||||
|
|
||||||
vite@4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.42.0):
|
vite@4.5.3(@types/node@22.4.1)(sass@1.77.6)(terser@5.43.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild: 0.18.20
|
esbuild: 0.18.20
|
||||||
postcss: 8.5.5
|
postcss: 8.5.6
|
||||||
rollup: 3.29.4
|
rollup: 3.29.4
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@types/node': 22.4.1
|
'@types/node': 22.4.1
|
||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
sass: 1.77.6
|
sass: 1.77.6
|
||||||
terser: 5.42.0
|
terser: 5.43.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
vite@5.4.11(@types/node@20.14.11)(sass@1.77.6)(terser@5.42.0):
|
vite@5.4.11(@types/node@20.14.11)(sass@1.77.6)(terser@5.42.0):
|
||||||
@ -17886,7 +17932,7 @@ snapshots:
|
|||||||
|
|
||||||
webidl-conversions@3.0.1: {}
|
webidl-conversions@3.0.1: {}
|
||||||
|
|
||||||
webpack-sources@3.3.2:
|
webpack-sources@3.3.3:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
webpack-virtual-modules@0.6.2: {}
|
webpack-virtual-modules@0.6.2: {}
|
||||||
@ -17900,9 +17946,9 @@ snapshots:
|
|||||||
'@webassemblyjs/wasm-parser': 1.14.1
|
'@webassemblyjs/wasm-parser': 1.14.1
|
||||||
acorn: 8.15.0
|
acorn: 8.15.0
|
||||||
acorn-import-attributes: 1.9.5(acorn@8.15.0)
|
acorn-import-attributes: 1.9.5(acorn@8.15.0)
|
||||||
browserslist: 4.25.0
|
browserslist: 4.25.1
|
||||||
chrome-trace-event: 1.0.4
|
chrome-trace-event: 1.0.4
|
||||||
enhanced-resolve: 5.18.1
|
enhanced-resolve: 5.18.2
|
||||||
es-module-lexer: 1.7.0
|
es-module-lexer: 1.7.0
|
||||||
eslint-scope: 5.1.1
|
eslint-scope: 5.1.1
|
||||||
events: 3.3.0
|
events: 3.3.0
|
||||||
@ -17916,7 +17962,7 @@ snapshots:
|
|||||||
tapable: 2.2.2
|
tapable: 2.2.2
|
||||||
terser-webpack-plugin: 5.3.14(webpack@5.92.1)
|
terser-webpack-plugin: 5.3.14(webpack@5.92.1)
|
||||||
watchpack: 2.4.4
|
watchpack: 2.4.4
|
||||||
webpack-sources: 3.3.2
|
webpack-sources: 3.3.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@swc/core'
|
- '@swc/core'
|
||||||
- esbuild
|
- esbuild
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user