-
-
-
+
+
+
+
+
+
+
+
+
+ Invia Ricevi
+
+
+
+
+
+ Stat
+
+
+
+
+
+ Circuiti
+
+
+
+
+
+ Impostazioni
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ circuit.balance }} RIS
+
+
+
+
+
+
+ Esplora altri circuiti
+
+
+
+
+
Statistiche {{ selectedCircuit?.name }}
+
+
+
+ {{ currentCircuitData.totalTransactions }}
+ Transazioni
+
+
+
+ {{ currentCircuitData.uniqueMembers }}
+ Membri coinvolti
+
+
+
+ {{ currentCircuitData.sentCount }}
+ Inviate
+
+
+
+ {{ currentCircuitData.receivedCount }}
+ Ricevute
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tx.type === 'sent' ? 'Inviato a' : 'Ricevuto da' }}
+ {{ tx.otherUser }}
+
+
+ {{ tx.time }}
+ •
+ {{ tx.circuitName }}
+
+
+ {{ tx.description }}
+
+
+
+
+
+ {{ tx.type === 'sent' ? '-' : '+' }}{{ tx.amount }}
+
+
RIS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Nessuna transazione ancora
+
Inizia a scambiare RIS
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tx.userInitial }}
+
+
+ {{ tx.description }}
+ {{ tx.time }}
+
+
+ {{ tx.amount > 0 ? '+' : '' }}{{ tx.amount }}
+
+
+
+
+
+
+
+
+
+ {{ tx.fromInitial }}
+
+
+
+ {{ tx.toInitial }}
+
+
+
+ {{ tx.fromName }} → {{ tx.toName }}
+ {{ tx.time }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Fiducia concessa:
+ {{ circuit.fido || 0 }} RIS
+
+
+
+
+ Saldo minimo:
+ {{ circuit.minBalance || 0 }} RIS
+
+
+
+
+ Tipo:
+ {{
+ circuit.isNational ? 'Nazionale' : 'Provinciale'
+ }}
+
+
+
+
+ Membri totali:
+ {{ circuit.members || 0 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Nessun contatto trovato
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Scegli da chi vuoi ricevere RIS. Il mittente dovrà confermare la
+ transazione.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Nessun contatto trovato
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Da:
+ {{ selectedSender?.name }}
+
+
+ Circuito:
+ {{ receiveCircuit?.name }}
+
+
+ Saldo attuale:
+ {{ receiveCircuit?.balance }} RIS
+
+
+
+
+
+ RIS
+
+
+
+
+
+
+ Nuovo saldo:
+ {{ newReceiveBalance }} RIS
+
+
+
+
+ Il mittente riceverà una notifica per confermare l'invio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/testpao/testpao.ts b/src/components/testpao/testpao.ts
index d13aa625..7fd94c8a 100755
--- a/src/components/testpao/testpao.ts
+++ b/src/components/testpao/testpao.ts
@@ -1,7 +1,7 @@
import {
defineComponent,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
import { FormNewsletter } from '../FormNewsletter'
import { Logo } from '../logo'
import { useI18n } from 'vue-i18n'
diff --git a/src/css/app.scss b/src/css/app.scss
index 4f56bea9..f3c24125 100755
--- a/src/css/app.scss
+++ b/src/css/app.scss
@@ -1,6 +1,3 @@
-@use "sass:color";
-
-@import 'variables.scss';
/* blocco scroll orizzontale a ogni livello “pagina” */
html,
@@ -2986,407 +2983,6 @@ body.body--dark {
flex-wrap: nowrap !important;
}
-/// ========================================
-// GUIDA RISO COMPLETA
-// ========================================
-
-// Animazione floating
-@keyframes float {
-
- 0%,
- 100% {
- transform: translateY(0px) rotate(0deg);
- }
-
- 50% {
- transform: translateY(-20px) rotate(5deg);
- }
-}
-
-// Header principale
-.header {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 60px 40px;
- border-radius: 20px;
- margin-bottom: 40px;
- box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
- text-align: center;
- position: relative;
- overflow: hidden;
-
- @media (max-width: 768px) {
- padding: 16px 10px;
- margin-bottom: 10px;
- }
-
- &::before {
- content: '🌾';
- position: absolute;
- font-size: 200px;
- opacity: 0.1;
- top: -50px;
- right: -50px;
- animation: float 6s ease-in-out infinite;
- }
-
- h1 {
- font-size: 3em !important;
- margin-bottom: 10px !important;
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
- color: white !important;
- position: relative;
-
- @media (max-width: 768px) {
- font-size: 2em !important;
- }
- }
-
- .subtitle {
- font-size: 1.3em;
- opacity: 0.95;
- position: relative;
-
- @media (max-width: 768px) {
- font-size: 1.1em;
- }
- }
-}
-
-// Sezioni contenuto
-.section {
- background: white;
- padding: 40px;
- margin-bottom: 30px;
- border-radius: 15px;
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
- transition: transform 0.3s ease, box-shadow 0.3s ease;
-
- &:hover {
- transform: translateY(-5px);
- box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
- }
-
- p {
- margin-bottom: 15px;
- text-align: justify;
- }
-
- @media (max-width: 768px) {
- padding: 8px;
- margin-bottom: 8px;
- }
-}
-
-// Header delle sezioni
-.section-header {
- display: flex;
- align-items: center;
- margin-bottom: 25px;
- padding-bottom: 15px;
- border-bottom: 3px solid #667eea;
-}
-
-.section-icon {
- font-size: 2.5em;
- margin-right: 15px;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- background-clip: text;
-}
-
-.section-title {
- font-size: 1.8em !important;
- color: #667eea !important;
- font-weight: 700 !important;
- margin: 0 !important;
-
- @media (max-width: 768px) {
- font-size: 1.4em !important;
- }
-}
-
-.section-subtitle {
- font-size: 1.4em !important;
- color: #764ba2 !important;
- margin-bottom: 15px;
- font-weight: 600;
-}
-
-// Box evidenziato (rosa)
-.highlight-box {
- background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
- color: white;
- padding: 30px;
- border-radius: 15px;
- margin: 30px 0;
- box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
-
- @media (max-width: 768px) {
- padding: 6px 8px;
- margin: 6px 0;
- }
-
- h3 {
- font-size: 1.6em;
- margin-bottom: 15px;
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
- color: white !important;
- }
-
- p {
- font-size: 1.1em;
- line-height: 1.8;
- color: white !important;
- }
-}
-
-// Box sogno (azzurro/rosa)
-.dream-box {
- background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
- padding: 30px;
- border-radius: 15px;
- margin: 25px 0;
- border-left: 5px solid #667eea;
-
- @media (max-width: 768px) {
- padding: 6px 8px;
- margin: 6px 0;
- }
-
- h3 {
- color: #667eea !important;
- font-size: 1.5em;
- margin-bottom: 15px;
- }
-
- p {
- line-height: 1.7;
- }
-}
-
-// Lista facilitatori
-.facilitator-list {
- background: #f8f9fa;
- padding: 25px;
- border-radius: 10px;
- margin: 20px 0;
-
- @media (max-width: 768px) {
- padding: 8px;
- margin: 0;
- }
-
- h4 {
- color: #764ba2 !important;
- margin-bottom: 15px;
- line-height: 1.5rem;
- font-size: 1.2em;
-
- @media (max-width: 768px) {
- margin-bottom: 8px;
- }
- }
-
- ul {
- list-style: none;
- padding-left: 0;
- }
-
- li {
- padding: 10px 0 10px 35px;
- position: relative;
- border-bottom: 1px solid #e0e0e0;
-
- &:last-child {
- border-bottom: none;
- }
-
- &::before {
- content: '✓';
- position: absolute;
- left: 5px;
- color: #667eea;
- font-weight: bold;
- font-size: 1.2em;
- width: auto;
- margin-left: 0;
- }
- }
-
- p {
- margin-top: 15px;
- font-style: italic;
- color: #764ba2;
- }
-}
-
-// Box informazioni (arancione)
-.info-box {
- background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
- padding: 25px;
- border-radius: 10px;
- margin: 20px 0;
- box-shadow: 0 5px 15px rgba(252, 182, 159, 0.3);
-
- @media (max-width: 768px) {
- padding: 8px;
- margin: 4px 0;
- }
-
- h4 {
- color: #d63031 !important;
- margin-bottom: 12px;
- font-size: 1.3em;
- }
-
- ul {
- margin-top: 10px;
- list-style-position: inside;
- }
-}
-
-// Sezione link (azzurro)
-.links-section {
- background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
- color: white;
- padding: 35px;
- border-radius: 15px;
- margin-top: 30px;
- box-shadow: 0 15px 35px rgba(79, 172, 254, 0.3);
-
- @media (max-width: 768px) {
- padding: 8px;
- margin-top: 10px;
- }
-
- h3 {
- font-size: 1.8em;
- margin-bottom: 20px;
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
- color: white !important;
- }
-}
-
-.link-item {
- background: rgba(255, 255, 255, 0.2);
- padding: 15px 20px;
- margin: 15px 0;
- border-radius: 10px;
- backdrop-filter: blur(10px);
- transition: all 0.3s ease;
- cursor: pointer;
-
- @media (max-width: 768px) {
- padding: 6px 8px;
- margin: 6px 0;
- }
-
- &:hover {
- background: rgba(255, 255, 255, 0.3);
- transform: translateX(10px);
- }
-
- a {
- color: white !important;
- text-decoration: none;
- font-size: 1.1em;
- font-weight: 500;
- display: flex;
- align-items: center;
-
- &::before {
- content: '→';
- margin-right: 10px;
- font-size: 1.3em;
- }
- }
-}
-
-// Call to action (viola)
-.cta-box {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 30px;
- border-radius: 15px;
- text-align: center;
- margin: 30px 0;
- box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
-
- @media (max-width: 768px) {
- padding: 6px 8px;
- margin: 6px 0;
- }
-
- h3 {
- font-size: 1.7em;
- margin-bottom: 15px;
- color: white !important;
- }
-
- p {
- font-size: 1.2em;
- line-height: 1.8;
- color: white !important;
- }
-}
-
-// Container generale
-.container_guida {
- max-width: 1000px;
- margin: 0 auto;
- padding: 20px;
-
- @media (max-width: 768px) {
- padding: 10px;
- }
-}
-
-.modern-chip {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- font-weight: 500;
- padding: 8px 16px;
- border-radius: 20px;
- box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
- cursor: pointer;
- transition: all 0.3s ease;
- position: relative;
- overflow: hidden;
-
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: -100%;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
- transition: left 0.5s ease;
- }
-
- &:hover {
- transform: translateY(-2px);
- box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
-
- &::before {
- left: 100%;
- }
- }
-
- &:active {
- transform: translateY(0);
- }
-
- // Mobile: più compatto
- @media (max-width: 599px) {
- padding: 8px 16px;
- font-size: 1rem;
- border-radius: 16px;
- }
-}
-
// ==========================================
// AGGIUNTE STILE RISO - Da inserire in fondo a app.scss
// ==========================================
diff --git a/src/css/quasar.variables.scss b/src/css/quasar.variables.scss
index dd1fb01f..58b89ca3 100755
--- a/src/css/quasar.variables.scss
+++ b/src/css/quasar.variables.scss
@@ -22,3 +22,5 @@ $positive : #21BA45;
$negative : #C10015;
$info : #31CCEC;
$warning : #F2C037;
+
+
diff --git a/src/css/variables.scss b/src/css/variables.scss
index 87883972..4c01d71b 100755
--- a/src/css/variables.scss
+++ b/src/css/variables.scss
@@ -42,6 +42,30 @@ $brown1: #D99E7E;
green3: $green3;
}
+$s-xs: 4px;
+$s-sm: 8px;
+$s-md: 12px;
+$s-lg: 16px;
+$s-xl: 20px;
+
+$r-sm: 8px;
+$r-md: 12px;
+$r-lg: 16px;
+$r-xl: 20px;
+
+// Gradienti
+$gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
+$gradient-blue: linear-gradient(135deg, #3889da 0%, #4e57a7 100%);
+$gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
+$gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
+$gradient-info: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
+$gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
+$gradient-indigo: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
+$gradient-red: linear-gradient(135deg, #f56565 0%, #ed64a6 100%);
+$gradient-lime: linear-gradient(135deg, #84cc16 0%, #10b981 100%);
+$gradient-teal: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
+
+
// ==========================================
// SCALA GRIGI - Stile RISO pulito
// ==========================================
diff --git a/src/db/static_data.ts b/src/db/static_data.ts
index dceac267..4791ad4f 100755
--- a/src/db/static_data.ts
+++ b/src/db/static_data.ts
@@ -38,7 +38,7 @@ const firstPage = {
path: '/',
materialIcon: 'home',
name: 'pages.home',
- component: () => import('@src/root/mainview/mainview.vue'),
+ component: () => import('@/root/mainview/mainview.vue'),
reqauth: false,
inmenu: true,
infooter: true,
@@ -53,7 +53,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/',
materialIcon: 'home',
name: 'pages.home',
- component: () => import('@src/root/mainview/mainview.vue'),
+ component: () => import('@/root/mainview/mainview.vue'),
reqauth: false,
inmenu: true,
infooter: true,
@@ -64,7 +64,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/test',
materialIcon: 'fas fa-test',
name: 'mypages.test',
- component: () => import('@src/views/testServer/testServer.vue'),
+ component: () => import('@/views/testServer/testServer.vue'),
inmenu: false,
infooter: false,
},
@@ -74,7 +74,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/testweb',
materialIcon: 'fas fa-test',
name: 'mypages.testweb',
- component: () => import('@src/pages/TestWeb.vue'),
+ component: () => import('@/pages/TestWeb.vue'),
inmenu: false,
infooter: false,
},
@@ -84,7 +84,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/goods',
materialIcon: 'fas fa-tshirt',
name: 'mypages.goods',
- component: () => import('@src/root/goods/goods.vue'),
+ component: () => import('@/root/goods/goods.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -95,7 +95,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/services',
materialIcon: 'fas fa-house-user',
name: 'mypages.services',
- component: () => import('@src/root/services/services.vue'),
+ component: () => import('@/root/services/services.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -106,7 +106,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/activities',
materialIcon: 'fas fa-house-user',
name: 'mypages.activities',
- component: () => import('@src/root/activities/activities.vue'),
+ component: () => import('@/root/activities/activities.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -117,7 +117,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/provapao',
materialIcon: 'fas fa-house-user',
name: 'mypages.provapao',
- component: () => import('@src/root/provapao/provapao.vue'),
+ component: () => import('@/root/provapao/provapao.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -128,18 +128,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/hosps',
materialIcon: 'fas fa-bed',
name: 'mypages.hosp',
- component: () => import('@src/root/hosp/hosp.vue'),
- meta: { requiresAuth: true },
- inmenu: true,
- infooter: true,
- },
- {
- active: site.confpages && site.confpages.enableCircuits,
- order: 16,
- path: '/circuits',
- materialIcon: 'fas fa-coins',
- name: 'mypages.circuits',
- component: () => import('@src/views/user/mycircuits/mycircuits.vue'),
+ component: () => import('@/root/hosp/hosp.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -150,7 +139,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/events',
materialIcon: 'fas fa-bullhorn',
name: 'mypages.events',
- component: () => import('@src/root/eventi/eventi.vue'),
+ component: () => import('@/root/eventi/eventi.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -161,7 +150,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/install_site',
materialIcon: 'fas fa-user',
name: 'pages.install_site',
- component: () => import('@src/views/admin/install_site/install_site.vue'),
+ component: () => import('@/views/admin/install_site/install_site.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -172,7 +161,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/installaapp',
materialIcon: 'fas fa-user',
name: 'pages.installaApp',
- component: () => import('@src/views/admin/installaApp/installaApp.vue'),
+ component: () => import('@/views/admin/installaApp/installaApp.vue'),
meta: { },
inmenu: false,
infooter: false,
@@ -183,7 +172,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/myprofile',
materialIcon: 'fas fa-user',
name: 'pages.profile',
- component: () => import('@src/views/user/myprofile/myprofile.vue'),
+ component: () => import('@/views/user/myprofile/myprofile.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -205,7 +194,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/friends',
materialIcon: 'fas fa-user-friends',
name: 'mypages.iscritti',
- component: () => import('@src/views/user/myfriends/myfriends.vue'),
+ component: () => import('@/views/user/myfriends/myfriends.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -216,7 +205,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/groups',
materialIcon: 'fas fa-users',
name: 'mypages.groups',
- component: () => import('@src/views/user/mygroups/mygroups.vue'),
+ component: () => import('@/views/user/mygroups/mygroups.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: false,
@@ -227,7 +216,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/grp/:groupname',
materialIcon: 'fas fa-user',
name: 'proj.group2',
- component: () => import('@src/views/user/mygroup/mygroup.vue'),
+ component: () => import('@/views/user/mygroup/mygroup.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -238,7 +227,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/circuit/:path',
materialIcon: 'fas fa-user',
name: 'proj.circuit2',
- component: () => import('@src/views/user/mycircuit/mycircuit.vue'),
+ component: () => import('@/views/user/mycircuit/mycircuit.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -257,7 +246,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/mypage/:idBacheca',
materialIcon: 'fas fa-user',
name: 'pages.mypage2',
- component: () => import('@src/views/user/mypagebacheca/mypagebacheca.vue'),
+ component: () => import('@/views/user/mypagebacheca/mypagebacheca.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -268,7 +257,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/myservice/:idSkill',
materialIcon: '',
name: 'pages.myservice2',
- component: () => import('@src/views/user/myservice/myservice.vue'),
+ component: () => import('@/views/user/myservice/myservice.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -279,7 +268,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/myhosps/:idHosp',
materialIcon: '',
name: 'pages.myhosps2',
- component: () => import('@src/views/user/mypagehosp/mypagehosp.vue'),
+ component: () => import('@/views/user/mypagehosp/mypagehosp.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -290,7 +279,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/mygood/:idGood',
materialIcon: '',
name: 'pages.mygood2',
- component: () => import('@src/views/user/mypagegood/mypagegood.vue'),
+ component: () => import('@/views/user/mypagegood/mypagegood.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -301,7 +290,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/sostieniilprogetto',
materialIcon: 'fas fa-hand-holding-heart',
name: 'pages.fundraising',
- component: () => import('@src/root/fundraising/fundraising.vue'),
+ component: () => import('@/root/fundraising/fundraising.vue'),
inmenu: false,
infooter: false,
},
@@ -311,7 +300,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/calendario-eventi',
materialIcon: 'event',
name: 'ris.calendario_eventi_riso',
- component: () => import('@src/root/calendarioeventi/calendarioeventi.vue'),
+ component: () => import('@/root/calendarioeventi/calendarioeventi.vue'),
extraclass: 'isCalendar',
inmenu: false,
infooter: false
diff --git a/src/globalroutines/index.ts b/src/globalroutines/index.ts
index 2adcaea1..f3862008 100755
--- a/src/globalroutines/index.ts
+++ b/src/globalroutines/index.ts
@@ -3,7 +3,7 @@
import indexdb from './indexdb'
-import { idbKeyval as storage } from '@src/js/storage'
+import { idbKeyval as storage } from '@/js/storage'
export default async (cmd: string, table: string, data: any = null, id: any = '') => {
// const globalStore = useGlobalStore()
diff --git a/src/globalroutines/indexdb.ts b/src/globalroutines/indexdb.ts
index 427a4b48..04c2efa6 100755
--- a/src/globalroutines/indexdb.ts
+++ b/src/globalroutines/indexdb.ts
@@ -1,6 +1,6 @@
import { costanti } from '@costanti'
-import type { ICfgData } from '@src/model'
-import { toolsext } from '@src/store/Modules/toolsext'
+import type { ICfgData } from '@/model'
+import { toolsext } from '@/store/Modules/toolsext'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
import { idbKeyval as storage } from '../js/storage.js'
diff --git a/src/globalroutines/util.ts b/src/globalroutines/util.ts
index ebea8759..3fb737c0 100755
--- a/src/globalroutines/util.ts
+++ b/src/globalroutines/util.ts
@@ -1,5 +1,5 @@
-import { toolsext } from '@src/store/Modules/toolsext'
-import { tools } from '@src/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { tools } from '@/store/Modules/tools'
import messages from '../statics/i18n'
function translate(params: any) {
diff --git a/src/layouts/menuone/menuOne.ts b/src/layouts/menuone/menuOne.ts
index 94510d36..31a31f58 100755
--- a/src/layouts/menuone/menuOne.ts
+++ b/src/layouts/menuone/menuOne.ts
@@ -1,9 +1,9 @@
-import type { IListRoutes } from '@src/model';
+import type { IListRoutes } from '@/model';
import { useGlobalStore } from '@store/globalStore';
import { tools } from '@tools';
import { computed, defineComponent, ref, watch } from 'vue';
import { useRoute } from 'vue-router';
-import { static_data } from '@src/db/static_data';
+import { static_data } from '@/db/static_data';
import { useUserStore } from '@store/UserStore';
import { CMenuItem } from '../../components/CMenuItem';
diff --git a/src/layouts/toolbar/coinsPopover/coinsPopover.ts b/src/layouts/toolbar/coinsPopover/coinsPopover.ts
index 136d9949..1c7e2a99 100755
--- a/src/layouts/toolbar/coinsPopover/coinsPopover.ts
+++ b/src/layouts/toolbar/coinsPopover/coinsPopover.ts
@@ -8,20 +8,20 @@ import {
import { date } from 'quasar'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
import { useRouter } from 'vue-router'
import MixinUsers from '../../../mixins/mixin-users'
import { useNotifStore } from '@store/NotifStore'
import { useUserStore } from '@store/UserStore'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CMyFieldRec } from '@src/components/CMyFieldRec'
-import { CTimeAgo } from '@src/components/CTimeAgo'
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { CMyCircuits } from '@src/components/CMyCircuits'
-import { CFinder } from '@src/components/CFinder'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CMyFieldRec } from '@/components/CMyFieldRec'
+import { CTimeAgo } from '@/components/CTimeAgo'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { CMyCircuits } from '@/components/CMyCircuits'
+import { CFinder } from '@/components/CFinder'
+import { shared_consts } from '@/common/shared_vuejs'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
diff --git a/src/layouts/toolbar/messagePopover/messagePopover.ts b/src/layouts/toolbar/messagePopover/messagePopover.ts
index bef3e238..cba68740 100755
--- a/src/layouts/toolbar/messagePopover/messagePopover.ts
+++ b/src/layouts/toolbar/messagePopover/messagePopover.ts
@@ -5,7 +5,7 @@ import type {
} from '@model'
import './messagePopover.scss'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
import { useRouter } from 'vue-router'
import MixinUsers from '../../../mixins/mixin-users'
diff --git a/src/layouts/toolbar/notifPopover/notifPopover.ts b/src/layouts/toolbar/notifPopover/notifPopover.ts
index 28e4b99c..7598f646 100755
--- a/src/layouts/toolbar/notifPopover/notifPopover.ts
+++ b/src/layouts/toolbar/notifPopover/notifPopover.ts
@@ -8,7 +8,7 @@ import {
import { date } from 'quasar'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
import { useRouter } from 'vue-router'
import MixinUsers from '../../../mixins/mixin-users'
@@ -16,11 +16,11 @@ import { useNotifStore } from '@store/NotifStore'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CTimeAgo } from '@src/components/CTimeAgo'
-import { CMyFieldRec } from '@src/components/CMyFieldRec'
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CTimeAgo } from '@/components/CTimeAgo'
+import { CMyFieldRec } from '@/components/CMyFieldRec'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { shared_consts } from '@/common/shared_vuejs'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
diff --git a/src/mixins/mixin-base.ts b/src/mixins/mixin-base.ts
index ba21803e..9916b404 100755
--- a/src/mixins/mixin-base.ts
+++ b/src/mixins/mixin-base.ts
@@ -1,4 +1,4 @@
-import { toolsext } from '@src/store/Modules/toolsext';
+import { toolsext } from '@/store/Modules/toolsext';
import { i18n } from 'src/boot/i18n'; // Importa l'istanza di i18n configurata in Quasar
diff --git a/src/mixins/mixin-events.ts b/src/mixins/mixin-events.ts
index 074b09cd..fe23cb7c 100755
--- a/src/mixins/mixin-events.ts
+++ b/src/mixins/mixin-events.ts
@@ -5,7 +5,7 @@ import type { IEvents } from '@model';
import { IDataPass } from '@model'
import { tools } from '../store/Modules/tools'
import { costanti } from '@costanti'
-import translate from '@src/globalroutines/util'
+import translate from '@/globalroutines/util'
import { useCalendarStore } from '@store/CalendarStore'
import { useI18n } from 'vue-i18n'
diff --git a/src/mixins/mixin-users.ts b/src/mixins/mixin-users.ts
index f0cfb853..3115911a 100755
--- a/src/mixins/mixin-users.ts
+++ b/src/mixins/mixin-users.ts
@@ -1,11 +1,11 @@
-import type { IMessage, INotif } from '@src/model'
+import type { IMessage, INotif } from '@/model'
import { useUserStore } from '@store/UserStore'
import { useNotifStore } from '@store/NotifStore'
import { useGlobalStore } from '@store/globalStore'
import { useProducts } from '@store/Products'
import { serv_constants } from '@store/Modules/serv_constants'
import { tools } from '@tools'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
// You can declare a mixin as the same style as components.
export default function () {
diff --git a/src/model/BookingStore.ts b/src/model/BookingStore.ts
index 7d5c52ba..1a81c847 100755
--- a/src/model/BookingStore.ts
+++ b/src/model/BookingStore.ts
@@ -1,4 +1,4 @@
-import type { IEvents } from '@src/model/Calendar'
+import type { IEvents } from '@/model/Calendar'
export interface IBookingState {
bookinglist: IEvents[]
diff --git a/src/model/Calendar.ts b/src/model/Calendar.ts
index 980e0e9b..599f9596 100755
--- a/src/model/Calendar.ts
+++ b/src/model/Calendar.ts
@@ -1,4 +1,4 @@
-import type { IInternalPage, IMyPage, IOperators } from '@src/model/GlobalStore'
+import type { IInternalPage, IMyPage, IOperators } from '@/model/GlobalStore'
export interface IEvents {
_id?: any
diff --git a/src/model/Estimate.ts b/src/model/Estimate.ts
index 60cadc4d..7fb86f16 100755
--- a/src/model/Estimate.ts
+++ b/src/model/Estimate.ts
@@ -1,5 +1,5 @@
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
export interface IEstimate {
id?: number
diff --git a/src/model/GlobalStore.ts b/src/model/GlobalStore.ts
index 738cbb32..ed23a8a1 100755
--- a/src/model/GlobalStore.ts
+++ b/src/model/GlobalStore.ts
@@ -1,14 +1,14 @@
-import type { IAction } from '@src/model/Projects'
-import type { IAdmin, IFriends, IGroupShort, IMyGroup, IPaymentType } from '@src/model/UserStore'
+import type { IAction } from '@/model/Projects'
+import type { IAdmin, IFriends, IGroupShort, IMyGroup, IPaymentType } from '@/model/UserStore'
import type {
IDepartment, IQueryAI, IProducer, IShareWithUs, IStorehouse, IProvider, IScontistica, ICategory, IGasordine, ICatProd, ISubCatProd, ICatAI,
IProduct
-} from '@src/model/Products';
+} from '@/model/Products';
import {
IProductInfo
-} from '@src/model/Products'
+} from '@/model/Products'
-import type { IUserFields, IUserProfile } from '@src/model/UserStore'
+import type { IUserFields, IUserProfile } from '@/model/UserStore'
export interface IPost {
title: string
diff --git a/src/model/MessageStore.ts b/src/model/MessageStore.ts
index b407f419..c6c19bed 100755
--- a/src/model/MessageStore.ts
+++ b/src/model/MessageStore.ts
@@ -1,5 +1,5 @@
import type { EState } from './Calendar'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export interface IMessagePage {
show: boolean
diff --git a/src/model/Todos.ts b/src/model/Todos.ts
index d99b7812..4b5ac218 100755
--- a/src/model/Todos.ts
+++ b/src/model/Todos.ts
@@ -1,4 +1,4 @@
-import { IAction } from '@src/model/Projects'
+import { IAction } from '@/model/Projects'
export interface ITodo {
_id?: any,
diff --git a/src/model/UserStore.ts b/src/model/UserStore.ts
index 89b94e2a..1b5b50ea 100755
--- a/src/model/UserStore.ts
+++ b/src/model/UserStore.ts
@@ -1,5 +1,5 @@
import type { IToken } from '@model/other'
-import type { ICart, IOrderCart, IShareWithUs } from '@src/model/Products'
+import type { ICart, IOrderCart, IShareWithUs } from '@/model/Products'
import type { IAccount, ICatGrp, ICircuit, IImgGallery, IMovement, IMyCircuit } from '@model/GlobalStore';
import { IGallery } from '@model/GlobalStore'
import type { IBookedEvent } from './Calendar'
diff --git a/src/model/session.ts b/src/model/session.ts
index 0d5237c8..f8164dc6 100755
--- a/src/model/session.ts
+++ b/src/model/session.ts
@@ -1,4 +1,4 @@
-import type { IUserState } from '@src/model/UserStore'
+import type { IUserState } from '@/model/UserStore'
export interface SessionState {
redirectUri: string | null,
diff --git a/src/model/signup-option.ts b/src/model/signup-option.ts
index 08f28cf4..f01d3eb9 100755
--- a/src/model/signup-option.ts
+++ b/src/model/signup-option.ts
@@ -1,4 +1,4 @@
-import type { IUserProfile } from '@src/model/UserStore'
+import type { IUserProfile } from '@/model/UserStore'
import { ILabelValue } from '@model/Calendar'
import { IValue } from '@model/Calendar'
diff --git a/src/pages/Index.vue b/src/pages/Index.vue
index 987dcaf4..4bff79c7 100644
--- a/src/pages/Index.vue
+++ b/src/pages/Index.vue
@@ -11,7 +11,7 @@
diff --git a/src/root/activities/activities.ts b/src/root/activities/activities.ts
index ec3b8e19..cfabff3f 100755
--- a/src/root/activities/activities.ts
+++ b/src/root/activities/activities.ts
@@ -2,27 +2,27 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { CDashboard } from '@src/components/CDashboard'
-import { CTitlePage } from '@src/components/CTitlePage'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
-import { LandingFooter } from '@src/components/LandingFooter'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { CDashboard } from '@/components/CDashboard'
+import { CTitlePage } from '@/components/CTitlePage'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
+import { LandingFooter } from '@/components/LandingFooter'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
import { costanti } from '@costanti'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Activities',
diff --git a/src/root/calendarioeventi/calendarioeventi.ts b/src/root/calendarioeventi/calendarioeventi.ts
index 88e5920b..e3fea672 100755
--- a/src/root/calendarioeventi/calendarioeventi.ts
+++ b/src/root/calendarioeventi/calendarioeventi.ts
@@ -1,8 +1,8 @@
import { defineComponent } from 'vue'
-import { CEventsCalendar } from '@src/components/CEventsCalendar'
-import { CMyPage } from '@src/components/CMyPage'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
-import MixinBase from '@src/mixins/mixin-base'
+import { CEventsCalendar } from '@/components/CEventsCalendar'
+import { CMyPage } from '@/components/CMyPage'
+import MixinMetaTags from '@/mixins/mixin-metatags'
+import MixinBase from '@/mixins/mixin-base'
export default defineComponent({
name: 'Calendarioeventi',
diff --git a/src/root/eventi/eventi.ts b/src/root/eventi/eventi.ts
index d0905234..474269df 100755
--- a/src/root/eventi/eventi.ts
+++ b/src/root/eventi/eventi.ts
@@ -2,23 +2,23 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { LandingFooter } from '@src/components/LandingFooter'
-import { CDashboard } from '@src/components/CDashboard'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
-import { CTitlePage } from '@src/components/CTitlePage'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { LandingFooter } from '@/components/LandingFooter'
+import { CDashboard } from '@/components/CDashboard'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
+import { CTitlePage } from '@/components/CTitlePage'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
+import { shared_consts } from '@/common/shared_vuejs'
import { colmyBachecas } from '@store/Modules/fieldsTable'
diff --git a/src/root/evento/evento.ts b/src/root/evento/evento.ts
index 412204fe..410c75d4 100755
--- a/src/root/evento/evento.ts
+++ b/src/root/evento/evento.ts
@@ -5,20 +5,20 @@ import { tools } from '../../store/Modules/tools'
import { CImgText } from '../../components/CImgText/index'
-import MixinOperator from '@src/mixins/mixin-operator'
+import MixinOperator from '@/mixins/mixin-operator'
import MixinEvents from '../../mixins/mixin-events'
-import type { IEvents } from '@src/model'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import type { IEvents } from '@/model'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
import { Logo } from '../../components/logo/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CMyAvatar } from '@src/components/CMyAvatar'
-import { CEventsCalendar } from '@src/components/CEventsCalendar'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CMyAvatar } from '@/components/CMyAvatar'
+import { CEventsCalendar } from '@/components/CEventsCalendar'
import { useRoute } from 'vue-router'
import { useCalendarStore } from '@store/CalendarStore'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
diff --git a/src/root/fundraising/fundraising.ts b/src/root/fundraising/fundraising.ts
index fb2818f6..cd6c327b 100755
--- a/src/root/fundraising/fundraising.ts
+++ b/src/root/fundraising/fundraising.ts
@@ -4,9 +4,9 @@ import {
defineComponent, ref, onBeforeUnmount, onMounted,
} from 'vue'
import { useRouter } from 'vue-router'
-import { CFundRaising } from '@src/components/CFundRaising'
-import { LandingFooter } from '@src/components'
-import { tools } from '@src/store/Modules/tools'
+import { CFundRaising } from '@/components/CFundRaising'
+import { LandingFooter } from '@/components'
+import { tools } from '@/store/Modules/tools'
export default defineComponent({
name: 'FundRaising',
diff --git a/src/root/goods/goods.ts b/src/root/goods/goods.ts
index e2b4e28c..a2db3bd9 100755
--- a/src/root/goods/goods.ts
+++ b/src/root/goods/goods.ts
@@ -2,27 +2,27 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { CDashboard } from '@src/components/CDashboard'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CTitlePage } from '@src/components/CTitlePage'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
-import { LandingFooter } from '@src/components/LandingFooter'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { CDashboard } from '@/components/CDashboard'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CTitlePage } from '@/components/CTitlePage'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
+import { LandingFooter } from '@/components/LandingFooter'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Goods',
diff --git a/src/root/home/home.ts b/src/root/home/home.ts
index b8ab48cc..96afd921 100755
--- a/src/root/home/home.ts
+++ b/src/root/home/home.ts
@@ -4,13 +4,13 @@ import { useGlobalStore } from '@store/globalStore'
import { useRoute } from 'vue-router'
import { useUserStore } from '@store/UserStore'
-import { tools } from '@src/store/Modules/tools'
-import { static_data } from '@src/db/static_data'
-import { toolsext } from '@src/store/Modules/toolsext'
+import { tools } from '@/store/Modules/tools'
+import { static_data } from '@/db/static_data'
+import { toolsext } from '@/store/Modules/toolsext'
-import { CMyPageElem } from '@src/components/CMyPageElem'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { CMyPageElem } from '@/components/CMyPageElem'
+import MixinBase from '@/mixins/mixin-base'
+import MixinMetaTags from '@/mixins/mixin-metatags'
import { useMeta } from 'quasar'
import { useI18n } from 'vue-i18n'
diff --git a/src/root/hosp/hosp.ts b/src/root/hosp/hosp.ts
index 1dc535b3..2599f5ac 100755
--- a/src/root/hosp/hosp.ts
+++ b/src/root/hosp/hosp.ts
@@ -2,28 +2,28 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { LandingFooter } from '@src/components/LandingFooter'
-import { CDashboard } from '@src/components/CDashboard'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { LandingFooter } from '@/components/LandingFooter'
+import { CDashboard } from '@/components/CDashboard'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CTitlePage } from '@src/components/CTitlePage'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CTitlePage } from '@/components/CTitlePage'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
import { colmyHosp } from '@store/Modules/fieldsTable'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'hosp',
diff --git a/src/root/mainview/mainview.ts b/src/root/mainview/mainview.ts
index f2a3a24a..72580c37 100755
--- a/src/root/mainview/mainview.ts
+++ b/src/root/mainview/mainview.ts
@@ -2,29 +2,29 @@ import {
defineComponent, ref, computed, onMounted
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { CSkill } from '@src/components/CSkill'
-import { CMainView } from '@src/components/CMainView'
-import { CDashboard } from '@src/components/CDashboard'
-import { LandingFooter } from '@src/components/LandingFooter'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CStatusReg } from '@src/components/CStatusReg'
-import { CCopyBtn } from '@src/components/CCopyBtn'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CEventsCalendar } from '@src/components/CEventsCalendar'
+import { tools } from '@/store/Modules/tools'
+import { CSkill } from '@/components/CSkill'
+import { CMainView } from '@/components/CMainView'
+import { CDashboard } from '@/components/CDashboard'
+import { LandingFooter } from '@/components/LandingFooter'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CStatusReg } from '@/components/CStatusReg'
+import { CCopyBtn } from '@/components/CCopyBtn'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CEventsCalendar } from '@/components/CEventsCalendar'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
import { useNotifStore } from '@store/NotifStore'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
-import { CMyPageElem } from '@src/components/CMyPageElem'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
+import { CMyPageElem } from '@/components/CMyPageElem'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { CPresentazione } from '@src/components'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
+import { shared_consts } from '@/common/shared_vuejs'
+import { CPresentazione } from '@/components'
+import MixinMetaTags from '@/mixins/mixin-metatags'
import { useI18n } from 'vue-i18n'
export default defineComponent({
name: 'mainview',
diff --git a/src/root/maps/maps.ts.off b/src/root/maps/maps.ts.off
index 980a8cfd..08d9e695 100755
--- a/src/root/maps/maps.ts.off
+++ b/src/root/maps/maps.ts.off
@@ -16,7 +16,7 @@ declare module '@vue-leaflet/vue-leaflet' {
import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
export default defineComponent({
diff --git a/src/root/mobility/mobility.ts b/src/root/mobility/mobility.ts
index 5a6c6efd..43bc2099 100755
--- a/src/root/mobility/mobility.ts
+++ b/src/root/mobility/mobility.ts
@@ -2,20 +2,20 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { CDashboard } from '@src/components/CDashboard'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
+import { tools } from '@/store/Modules/tools'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { CDashboard } from '@/components/CDashboard'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
export default defineComponent({
diff --git a/src/root/mypage/mypage.ts b/src/root/mypage/mypage.ts
index d821dc44..087bd72b 100755
--- a/src/root/mypage/mypage.ts
+++ b/src/root/mypage/mypage.ts
@@ -2,8 +2,8 @@ import { defineComponent, ref, onMounted, watch, computed } from 'vue'
import { useGlobalStore } from '@store/globalStore'
import { useRoute } from 'vue-router'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
-import { CMyPageElem } from '@src/components/CMyPageElem'
+import MixinMetaTags from '@/mixins/mixin-metatags'
+import { CMyPageElem } from '@/components/CMyPageElem'
export default defineComponent({
name: 'Mypage',
diff --git a/src/root/policy/policy.ts b/src/root/policy/policy.ts
index 6f4d107b..84958023 100755
--- a/src/root/policy/policy.ts
+++ b/src/root/policy/policy.ts
@@ -1,8 +1,8 @@
import { defineComponent, computed } from 'vue'
import { PagePolicy } from '../../components/PagePolicy'
-import { useUserStore } from '@src/store/UserStore'
-import { useGlobalStore } from '@src/store/globalStore'
+import { useUserStore } from '@/store/UserStore'
+import { useGlobalStore } from '@/store/globalStore'
export default defineComponent({
diff --git a/src/root/presentazione/presentazione.ts b/src/root/presentazione/presentazione.ts
index de2c519a..22a1e5af 100755
--- a/src/root/presentazione/presentazione.ts
+++ b/src/root/presentazione/presentazione.ts
@@ -4,8 +4,8 @@ import {
defineComponent, ref, onBeforeUnmount, onMounted,
} from 'vue'
import { useRouter } from 'vue-router'
-import { CPresentazione } from '@src/components'
-import { tools } from '@src/store/Modules/tools'
+import { CPresentazione } from '@/components'
+import { tools } from '@/store/Modules/tools'
export default defineComponent({
name: 'Presentazione',
diff --git a/src/root/provapao/provapao.ts b/src/root/provapao/provapao.ts
index b81ae85f..8be701f8 100755
--- a/src/root/provapao/provapao.ts
+++ b/src/root/provapao/provapao.ts
@@ -2,22 +2,22 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { CDashboard } from '@src/components/CDashboard'
-import { CTitlePage } from '@src/components/CTitlePage'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
-import { LandingFooter } from '@src/components/LandingFooter'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { CDashboard } from '@/components/CDashboard'
+import { CTitlePage } from '@/components/CTitlePage'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
+import { LandingFooter } from '@/components/LandingFooter'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
import { costanti } from '@costanti'
export default defineComponent({
diff --git a/src/root/scuola/scuola.ts b/src/root/scuola/scuola.ts
index 2f18ed2a..6c9e8356 100755
--- a/src/root/scuola/scuola.ts
+++ b/src/root/scuola/scuola.ts
@@ -2,20 +2,20 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { CSkill } from '@src/components/CSkill'
-import { CFinder } from '@src/components/CFinder'
-import { CDashboard } from '@src/components/CDashboard'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
+import { tools } from '@/store/Modules/tools'
+import { CSkill } from '@/components/CSkill'
+import { CFinder } from '@/components/CFinder'
+import { CDashboard } from '@/components/CDashboard'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
export default defineComponent({
diff --git a/src/root/services/services.ts b/src/root/services/services.ts
index d489cd09..a12fe17b 100755
--- a/src/root/services/services.ts
+++ b/src/root/services/services.ts
@@ -2,26 +2,26 @@ import {
defineComponent, ref, computed,
} from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
-import { CFinder } from '@src/components/CFinder'
-import { CDashboard } from '@src/components/CDashboard'
-import { CTitlePage } from '@src/components/CTitlePage'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
-// import { CMapsEsempio } from '@src/components/CMapsEsempio'
-import { CVerifyEmail } from '@src/components/CVerifyEmail'
-import { CVerifyTelegram } from '@src/components/CVerifyTelegram'
-import { LandingFooter } from '@src/components/LandingFooter'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
+import { CFinder } from '@/components/CFinder'
+import { CDashboard } from '@/components/CDashboard'
+import { CTitlePage } from '@/components/CTitlePage'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
+// import { CMapsEsempio } from '@/components/CMapsEsempio'
+import { CVerifyEmail } from '@/components/CVerifyEmail'
+import { CVerifyTelegram } from '@/components/CVerifyTelegram'
+import { LandingFooter } from '@/components/LandingFooter'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
-import { static_data } from '@src/db/static_data'
-import MixinBase from '@src/mixins/mixin-base'
-import MixinUsers from '@src/mixins/mixin-users'
+import { static_data } from '@/db/static_data'
+import MixinBase from '@/mixins/mixin-base'
+import MixinUsers from '@/mixins/mixin-users'
import { costanti } from '@costanti'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Services',
diff --git a/src/rootgen/admin/accountsList/accountsList.ts b/src/rootgen/admin/accountsList/accountsList.ts
index 573c4cb8..a0c6cd15 100755
--- a/src/rootgen/admin/accountsList/accountsList.ts
+++ b/src/rootgen/admin/accountsList/accountsList.ts
@@ -1,12 +1,12 @@
import { defineComponent, onMounted, ref } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
-import { fieldsTable } from '@src/store/Modules/fieldsTable'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { fieldsTable } from '@/store/Modules/fieldsTable'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'accountsList',
diff --git a/src/rootgen/admin/bot/bot.ts b/src/rootgen/admin/bot/bot.ts
index 65838231..4746e7b4 100755
--- a/src/rootgen/admin/bot/bot.ts
+++ b/src/rootgen/admin/bot/bot.ts
@@ -1,15 +1,15 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colmybot } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colmybot } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
import type { IMyBot } from 'model'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'Bot',
diff --git a/src/rootgen/admin/catAI/catAI.ts b/src/rootgen/admin/catAI/catAI.ts
index a604e726..2a9359ca 100755
--- a/src/rootgen/admin/catAI/catAI.ts
+++ b/src/rootgen/admin/catAI/catAI.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableCatAI } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableCatAI } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'CatAIPage',
diff --git a/src/rootgen/admin/categories/categories.ts b/src/rootgen/admin/categories/categories.ts
index 601a6552..fe1e1268 100755
--- a/src/rootgen/admin/categories/categories.ts
+++ b/src/rootgen/admin/categories/categories.ts
@@ -1,13 +1,13 @@
-import { colTablecategories } from '@src/store/Modules/fieldsTable'
+import { colTablecategories } from '@/store/Modules/fieldsTable'
import { CImgText } from '../../../components/CImgText/index'
import { defineComponent } from 'vue'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
import MixinMetaTags from '../../../mixins/mixin-metatags'
diff --git a/src/rootgen/admin/catprods/catprods.ts b/src/rootgen/admin/catprods/catprods.ts
index 38ef8ef4..4d03ef72 100755
--- a/src/rootgen/admin/catprods/catprods.ts
+++ b/src/rootgen/admin/catprods/catprods.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableCatProd } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableCatProd } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'CatProdPage',
diff --git a/src/rootgen/admin/circuitsList/circuitsList.ts b/src/rootgen/admin/circuitsList/circuitsList.ts
index 3ed048f6..4a9c9a17 100755
--- a/src/rootgen/admin/circuitsList/circuitsList.ts
+++ b/src/rootgen/admin/circuitsList/circuitsList.ts
@@ -1,12 +1,12 @@
import { defineComponent, onMounted, ref } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
-import { fieldsTable } from '@src/store/Modules/fieldsTable'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { fieldsTable } from '@/store/Modules/fieldsTable'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'circuitsList',
diff --git a/src/rootgen/admin/collane/collane.ts b/src/rootgen/admin/collane/collane.ts
index ae25a175..859eab8b 100755
--- a/src/rootgen/admin/collane/collane.ts
+++ b/src/rootgen/admin/collane/collane.ts
@@ -1,13 +1,13 @@
-import { colTableCollane } from '@src/store/Modules/fieldsTable'
+import { colTableCollane } from '@/store/Modules/fieldsTable'
import { CImgText } from '../../../components/CImgText/index'
import { defineComponent } from 'vue'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
import MixinMetaTags from '../../../mixins/mixin-metatags'
diff --git a/src/rootgen/admin/confsite/confsite.ts b/src/rootgen/admin/confsite/confsite.ts
index e0a0e35a..78d2226b 100755
--- a/src/rootgen/admin/confsite/confsite.ts
+++ b/src/rootgen/admin/confsite/confsite.ts
@@ -1,18 +1,18 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CMyFieldRec } from '@src/components/CMyFieldRec'
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CMyFieldRec } from '@/components/CMyFieldRec'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
-import { toolsext } from '@src/store/Modules/toolsext'
+import { toolsext } from '@/store/Modules/toolsext'
import { useGlobalStore } from '@store/globalStore'
import { costanti } from '@costanti'
-import { tools } from '@src/store/Modules/tools'
-import type { ISites } from '@src/model'
+import { tools } from '@/store/Modules/tools'
+import type { ISites } from '@/model'
export default defineComponent({
name: 'Confsite',
diff --git a/src/rootgen/admin/convertPDF/convertPDF.ts b/src/rootgen/admin/convertPDF/convertPDF.ts
index 904ddee8..9130abb3 100755
--- a/src/rootgen/admin/convertPDF/convertPDF.ts
+++ b/src/rootgen/admin/convertPDF/convertPDF.ts
@@ -1,7 +1,7 @@
import { CMyPage } from '../../../components/CMyPage/index'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { tools } from '@src/store/Modules/tools'
+import { shared_consts } from '@/common/shared_vuejs'
+import { tools } from '@/store/Modules/tools'
import axios from 'axios'
@@ -13,7 +13,7 @@ import { useQuasar } from 'quasar'
import { IParamsQuery } from 'model'
import { toolsext } from '@store/Modules/toolsext'
import { StringDecoder } from 'string_decoder'
-import { GlobalConfig } from '@src/common'
+import { GlobalConfig } from '@/common'
export default defineComponent({
name: 'convertPDF',
diff --git a/src/rootgen/admin/departments/departments.ts b/src/rootgen/admin/departments/departments.ts
index a188d266..52d3ba6a 100755
--- a/src/rootgen/admin/departments/departments.ts
+++ b/src/rootgen/admin/departments/departments.ts
@@ -1,13 +1,13 @@
-import { colTabledepartments } from '@src/store/Modules/fieldsTable'
+import { colTabledepartments } from '@/store/Modules/fieldsTable'
import { CImgText } from '../../../components/CImgText/index'
import { defineComponent } from 'vue'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
import MixinMetaTags from '../../../mixins/mixin-metatags'
diff --git a/src/rootgen/admin/disciplines/disciplines.ts b/src/rootgen/admin/disciplines/disciplines.ts
index 889f780e..bb303c97 100755
--- a/src/rootgen/admin/disciplines/disciplines.ts
+++ b/src/rootgen/admin/disciplines/disciplines.ts
@@ -1,14 +1,14 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colmypage } from '@src/store/Modules/fieldsTable'
+import { colmypage } from '@/store/Modules/fieldsTable'
import { fieldsTable } from '@store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'Disciplines',
diff --git a/src/rootgen/admin/editElems/editElems.ts b/src/rootgen/admin/editElems/editElems.ts
index 9da90df5..a6f66683 100755
--- a/src/rootgen/admin/editElems/editElems.ts
+++ b/src/rootgen/admin/editElems/editElems.ts
@@ -1,19 +1,19 @@
import { defineComponent, ref, onMounted, computed, watch } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colmyelems } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colmyelems } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
import { tools } from '@tools'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
import { IMyPage } from 'model'
import { useGlobalStore } from '@store/globalStore'
-import objectId from '@src/js/objectId'
+import objectId from '@/js/objectId'
export default defineComponent({
name: 'editElems',
diff --git a/src/rootgen/admin/editpages/editpages.ts b/src/rootgen/admin/editpages/editpages.ts
index 8506de35..2da009a9 100644
--- a/src/rootgen/admin/editpages/editpages.ts
+++ b/src/rootgen/admin/editpages/editpages.ts
@@ -3,7 +3,7 @@ import { useQuasar } from 'quasar';
import { storeToRefs } from 'pinia';
import { IMyPage } from 'app/src/model';
import { useGlobalStore } from 'app/src/store';
-import { PagesConfigurator } from '@src/components/PagesConfigurator';
+import { PagesConfigurator } from '@/components/PagesConfigurator';
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
diff --git a/src/rootgen/admin/eventlist/eventlist.ts b/src/rootgen/admin/eventlist/eventlist.ts
index 42635967..4cc1d472 100755
--- a/src/rootgen/admin/eventlist/eventlist.ts
+++ b/src/rootgen/admin/eventlist/eventlist.ts
@@ -1,11 +1,11 @@
import { defineComponent, onMounted, ref } from 'vue'
-import { tools } from '@src/store/Modules/tools'
-import { func_tools } from '@src/store/Modules/toolsext'
+import { tools } from '@/store/Modules/tools'
+import { func_tools } from '@/store/Modules/toolsext'
import { CTitle } from '../../../components/CTitle/index'
import { CMyPage } from '../../../components/CMyPage/index'
import type {
IEvents
-} from '@src/model';
+} from '@/model';
import {
IBookedEvent,
ICalendarState,
@@ -14,18 +14,18 @@ import {
IUserState,
IUserFields,
IParamDialog
-} from '@src/model'
-import { lists } from '@src/store/Modules/lists'
+} from '@/model'
+import { lists } from '@/store/Modules/lists'
-import MixinUsers from '@src/mixins/mixin-users'
-import MixinOperator from '@src/mixins/mixin-operator'
-import MixinEvents from '@src/mixins/mixin-events'
+import MixinUsers from '@/mixins/mixin-users'
+import MixinOperator from '@/mixins/mixin-operator'
+import MixinEvents from '@/mixins/mixin-events'
import { useRoute } from 'vue-router'
import { useCalendarStore } from '@store/CalendarStore'
import { useUserStore } from '@store/UserStore'
import { useQuasar } from 'quasar'
import { useI18n } from 'vue-i18n'
-import translate from '@src/globalroutines/util'
+import translate from '@/globalroutines/util'
export default defineComponent({
name: 'Eventlist',
diff --git a/src/rootgen/admin/gallery/gallery.ts b/src/rootgen/admin/gallery/gallery.ts
index 88f3778d..13b08817 100755
--- a/src/rootgen/admin/gallery/gallery.ts
+++ b/src/rootgen/admin/gallery/gallery.ts
@@ -1,12 +1,12 @@
import { defineComponent, ref, computed } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colgallery } from '@src/store/Modules/fieldsTable'
+import { colgallery } from '@/store/Modules/fieldsTable'
export default defineComponent({
name: 'Gallery',
diff --git a/src/rootgen/admin/gasordini/gasordini.ts b/src/rootgen/admin/gasordini/gasordini.ts
index a4f44ee6..babe8cc5 100755
--- a/src/rootgen/admin/gasordini/gasordini.ts
+++ b/src/rootgen/admin/gasordini/gasordini.ts
@@ -1,5 +1,5 @@
-import { colTableGasordine } from '@src/store/Modules/fieldsTable'
+import { colTableGasordine } from '@/store/Modules/fieldsTable'
import { CImgText } from '../../../components/CImgText/index'
diff --git a/src/rootgen/admin/groups/groups.ts b/src/rootgen/admin/groups/groups.ts
index f5ad85b2..fc8d91f9 100755
--- a/src/rootgen/admin/groups/groups.ts
+++ b/src/rootgen/admin/groups/groups.ts
@@ -1,12 +1,12 @@
import { defineComponent, ref, computed } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTablegroups } from '@src/store/Modules/fieldsTable'
+import { colTablegroups } from '@/store/Modules/fieldsTable'
import { tools } from '@tools'
export default defineComponent({
diff --git a/src/rootgen/admin/importaprodotti/importaprodotti.ts b/src/rootgen/admin/importaprodotti/importaprodotti.ts
index ecd9928c..e5edc5b2 100755
--- a/src/rootgen/admin/importaprodotti/importaprodotti.ts
+++ b/src/rootgen/admin/importaprodotti/importaprodotti.ts
@@ -1,7 +1,7 @@
import { CMyPage } from '../../../components/CMyPage/index'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { tools } from '@src/store/Modules/tools'
+import { shared_consts } from '@/common/shared_vuejs'
+import { tools } from '@/store/Modules/tools'
import { defineComponent, ref, onMounted } from 'vue'
import { useI18n } from 'vue-i18n'
diff --git a/src/rootgen/admin/importdata/importdata.ts b/src/rootgen/admin/importdata/importdata.ts
index 533901f5..7ad9a212 100755
--- a/src/rootgen/admin/importdata/importdata.ts
+++ b/src/rootgen/admin/importdata/importdata.ts
@@ -1,7 +1,7 @@
import { CMyPage } from '../../../components/CMyPage/index'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { tools } from '@src/store/Modules/tools'
+import { shared_consts } from '@/common/shared_vuejs'
+import { tools } from '@/store/Modules/tools'
import { defineComponent, ref, onMounted } from 'vue'
import { useI18n } from 'vue-i18n'
diff --git a/src/rootgen/admin/lista_cron/lista_cron.ts b/src/rootgen/admin/lista_cron/lista_cron.ts
index 188a764b..243f18d4 100755
--- a/src/rootgen/admin/lista_cron/lista_cron.ts
+++ b/src/rootgen/admin/lista_cron/lista_cron.ts
@@ -1,19 +1,19 @@
import { defineComponent, ref, onMounted, computed, watch } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colcrons } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colcrons } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
import { tools } from '@tools'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
import { IMyPage } from 'model'
import { useGlobalStore } from '@store/globalStore'
-import objectId from '@src/js/objectId'
+import objectId from '@/js/objectId'
export default defineComponent({
name: 'ListaCron',
diff --git a/src/rootgen/admin/movsList/movsList.ts b/src/rootgen/admin/movsList/movsList.ts
index 004a0d50..eba7efe0 100755
--- a/src/rootgen/admin/movsList/movsList.ts
+++ b/src/rootgen/admin/movsList/movsList.ts
@@ -1,12 +1,12 @@
import { defineComponent, onMounted, ref } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
-import { fieldsTable } from '@src/store/Modules/fieldsTable'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { fieldsTable } from '@/store/Modules/fieldsTable'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'movsList',
diff --git a/src/rootgen/admin/msg_template/msg_template.ts b/src/rootgen/admin/msg_template/msg_template.ts
index 09eef560..27b1df73 100755
--- a/src/rootgen/admin/msg_template/msg_template.ts
+++ b/src/rootgen/admin/msg_template/msg_template.ts
@@ -1,14 +1,14 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colmsg_templates } from '@src/store/Modules/fieldsTable'
+import { colmsg_templates } from '@/store/Modules/fieldsTable'
import { useGlobalStore } from '@store/globalStore'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'Msgtemplate',
diff --git a/src/rootgen/admin/newsletter/newsletter.ts b/src/rootgen/admin/newsletter/newsletter.ts
index 511147ff..7ab4075c 100755
--- a/src/rootgen/admin/newsletter/newsletter.ts
+++ b/src/rootgen/admin/newsletter/newsletter.ts
@@ -1,7 +1,7 @@
import { defineComponent, ref, onMounted, watch, computed } from 'vue'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
import {
colnewstosent,
coltemplemail,
@@ -9,17 +9,17 @@ import {
colmailinglist,
colmsg_templates, fieldsTable,
coldestnewsletter
-} from '@src/store/Modules/fieldsTable'
-import type { INewsState } from '@src/model/index';
-import { DefaultNewsState } from '@src/model/index'
+} from '@/store/Modules/fieldsTable'
+import type { INewsState } from '@/model/index';
+import { DefaultNewsState } from '@/model/index'
import translate from '../../../globalroutines/util'
import { CTitle } from '../../../components/CTitle'
import { CMyPage } from '../../../components/CMyPage'
import MixinBase from '../../../mixins/mixin-base'
import { useGlobalStore } from '@store/globalStore'
-import { CGridTableRec } from '@src/components/CGridTableRec'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
+import { CGridTableRec } from '@/components/CGridTableRec'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
import { useRoute } from 'vue-router'
import { useQuasar } from 'quasar'
import { useI18n } from 'vue-i18n'
diff --git a/src/rootgen/admin/operators/operators.ts b/src/rootgen/admin/operators/operators.ts
index fe3248fc..26348459 100755
--- a/src/rootgen/admin/operators/operators.ts
+++ b/src/rootgen/admin/operators/operators.ts
@@ -1,14 +1,14 @@
import { defineComponent, ref, onMounted } from 'vue'
-import { CImgText } from '@src/components/CImgText'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CImgText } from '@/components/CImgText'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colmypage } from '@src/store/Modules/fieldsTable'
+import { colmypage } from '@/store/Modules/fieldsTable'
import { fieldsTable } from '@store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'Operators',
diff --git a/src/rootgen/admin/orders/orders.ts b/src/rootgen/admin/orders/orders.ts
index 53a2d91c..110c257d 100755
--- a/src/rootgen/admin/orders/orders.ts
+++ b/src/rootgen/admin/orders/orders.ts
@@ -1,13 +1,13 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { getcolorderscart } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { getcolorderscart } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'OrdersPage',
diff --git a/src/rootgen/admin/pages/pages.ts b/src/rootgen/admin/pages/pages.ts
index 82f4a969..2f82fc62 100755
--- a/src/rootgen/admin/pages/pages.ts
+++ b/src/rootgen/admin/pages/pages.ts
@@ -1,13 +1,13 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colmypage } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colmypage } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'Pages',
diff --git a/src/rootgen/admin/producer/producer.ts b/src/rootgen/admin/producer/producer.ts
index 3a0a5c62..371b1810 100755
--- a/src/rootgen/admin/producer/producer.ts
+++ b/src/rootgen/admin/producer/producer.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableProducer } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableProducer } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'ProducerPage',
diff --git a/src/rootgen/admin/products/products.ts b/src/rootgen/admin/products/products.ts
index 3c50430a..273b5060 100755
--- a/src/rootgen/admin/products/products.ts
+++ b/src/rootgen/admin/products/products.ts
@@ -1,14 +1,14 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableProducts } from '@src/store/Modules/fieldsTable'
-import { colTableProdShort } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableProducts } from '@/store/Modules/fieldsTable'
+import { colTableProdShort } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'ProductsPage',
diff --git a/src/rootgen/admin/providers/providers.ts b/src/rootgen/admin/providers/providers.ts
index e9b222cf..3f5b1a14 100755
--- a/src/rootgen/admin/providers/providers.ts
+++ b/src/rootgen/admin/providers/providers.ts
@@ -1,5 +1,5 @@
-import { colTableProviders } from '@src/store/Modules/fieldsTable'
+import { colTableProviders } from '@/store/Modules/fieldsTable'
import { CImgText } from '../../../components/CImgText/index'
diff --git a/src/rootgen/admin/queryAI/queryAI.ts b/src/rootgen/admin/queryAI/queryAI.ts
index f855c29f..f5c4b019 100755
--- a/src/rootgen/admin/queryAI/queryAI.ts
+++ b/src/rootgen/admin/queryAI/queryAI.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableQueryAI } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableQueryAI } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'CatAIPage',
diff --git a/src/rootgen/admin/sendpushnotif/sendpushnotif.ts b/src/rootgen/admin/sendpushnotif/sendpushnotif.ts
index eb83b892..5e1a4584 100755
--- a/src/rootgen/admin/sendpushnotif/sendpushnotif.ts
+++ b/src/rootgen/admin/sendpushnotif/sendpushnotif.ts
@@ -1,8 +1,8 @@
import { CMyPage } from '../../../components/CMyPage/index'
import { CMyEditor } from '../../../components/CMyEditor/index'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { tools } from '@src/store/Modules/tools'
+import { shared_consts } from '@/common/shared_vuejs'
+import { tools } from '@/store/Modules/tools'
import { defineComponent, ref, onMounted, watch } from 'vue'
import { useI18n } from 'vue-i18n'
diff --git a/src/rootgen/admin/settings/settings.ts b/src/rootgen/admin/settings/settings.ts
index 8d5662e2..9c25206e 100755
--- a/src/rootgen/admin/settings/settings.ts
+++ b/src/rootgen/admin/settings/settings.ts
@@ -1,19 +1,19 @@
import { defineComponent, ref, onMounted } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
-import { CMyFieldRec } from '@src/components/CMyFieldRec'
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
+import { CMyFieldRec } from '@/components/CMyFieldRec'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
import { useGlobalStore } from '@store/globalStore'
import { costanti } from '@costanti'
-import { tools } from '@src/store/Modules/tools'
+import { tools } from '@/store/Modules/tools'
-import { colTableProducer } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableProducer } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'settings',
diff --git a/src/rootgen/admin/sharewithus/sharewithus.ts b/src/rootgen/admin/sharewithus/sharewithus.ts
index 5336c9f6..a6eb23aa 100755
--- a/src/rootgen/admin/sharewithus/sharewithus.ts
+++ b/src/rootgen/admin/sharewithus/sharewithus.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableShareWithUs } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableShareWithUs } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'ShareWithUsPage',
diff --git a/src/rootgen/admin/sites/sites.ts b/src/rootgen/admin/sites/sites.ts
index 5a83b970..fa1c2d69 100755
--- a/src/rootgen/admin/sites/sites.ts
+++ b/src/rootgen/admin/sites/sites.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableSites } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableSites } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'SitesPage',
diff --git a/src/rootgen/admin/storehouses/storehouses.ts b/src/rootgen/admin/storehouses/storehouses.ts
index 0b2d81dd..2dff732b 100755
--- a/src/rootgen/admin/storehouses/storehouses.ts
+++ b/src/rootgen/admin/storehouses/storehouses.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableStorehouse } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableStorehouse } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'StorehousePage',
diff --git a/src/rootgen/admin/subcatprods/subcatprods.ts b/src/rootgen/admin/subcatprods/subcatprods.ts
index 1f554738..d3fdfa9f 100755
--- a/src/rootgen/admin/subcatprods/subcatprods.ts
+++ b/src/rootgen/admin/subcatprods/subcatprods.ts
@@ -1,12 +1,12 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { colTableSubCatProd } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { colTableSubCatProd } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'SubCatProdPage',
diff --git a/src/rootgen/admin/tablesList/tablesList.ts b/src/rootgen/admin/tablesList/tablesList.ts
index 0cac52c0..08cc0bce 100755
--- a/src/rootgen/admin/tablesList/tablesList.ts
+++ b/src/rootgen/admin/tablesList/tablesList.ts
@@ -1,13 +1,13 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { func } from '@src/store/Modules/fieldsTable'
-import MixinMetaTags from '@src/mixins/mixin-metatags'
+import { func } from '@/store/Modules/fieldsTable'
+import MixinMetaTags from '@/mixins/mixin-metatags'
export default defineComponent({
name: 'TablesList',
diff --git a/src/rootgen/admin/uploader/uploader.ts b/src/rootgen/admin/uploader/uploader.ts
index a3bf36d4..ef783aa0 100755
--- a/src/rootgen/admin/uploader/uploader.ts
+++ b/src/rootgen/admin/uploader/uploader.ts
@@ -1,10 +1,10 @@
import { defineComponent } from 'vue'
import { CImgText } from '../../../components/CImgText/index'
-import { CCard } from '@src/components/CCard'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CCard } from '@/components/CCard'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
diff --git a/src/rootgen/admin/userPanel/userPanel.ts b/src/rootgen/admin/userPanel/userPanel.ts
index c699fd3d..d6f406ad 100755
--- a/src/rootgen/admin/userPanel/userPanel.ts
+++ b/src/rootgen/admin/userPanel/userPanel.ts
@@ -1,15 +1,15 @@
import { defineComponent, onMounted, ref } from 'vue'
import { computed } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CCopyBtn } from '@src/components/CCopyBtn'
-import { CKeyAndValue } from '@src/components/CKeyAndValue'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CCopyBtn } from '@/components/CCopyBtn'
+import { CKeyAndValue } from '@/components/CKeyAndValue'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
-import { fieldsTable } from '@src/store/Modules/fieldsTable'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { fieldsTable } from '@/store/Modules/fieldsTable'
+import { shared_consts } from '@/common/shared_vuejs'
import { DefaultProfile, useUserStore } from '@store/UserStore'
import { costanti } from '@costanti'
import { useQuasar } from 'quasar'
@@ -17,7 +17,7 @@ import { useNotifStore } from '@store/NotifStore'
import type { INotif } from 'model'
import type { IUserFields } from '@model/UserStore'
import { useI18n } from 'vue-i18n'
-import MixinUsers from '@src/mixins/mixin-users'
+import MixinUsers from '@/mixins/mixin-users'
export default defineComponent({
name: 'userPanel',
diff --git a/src/rootgen/admin/usersList/usersList.ts b/src/rootgen/admin/usersList/usersList.ts
index bc9367e1..2d4ebe77 100755
--- a/src/rootgen/admin/usersList/usersList.ts
+++ b/src/rootgen/admin/usersList/usersList.ts
@@ -1,12 +1,12 @@
import { defineComponent, onMounted, ref } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
-import { fieldsTable } from '@src/store/Modules/fieldsTable'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { fieldsTable } from '@/store/Modules/fieldsTable'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'UsersList',
diff --git a/src/rootgen/admin/zoomList/zoomList.ts b/src/rootgen/admin/zoomList/zoomList.ts
index c6ac1a9e..43e40033 100755
--- a/src/rootgen/admin/zoomList/zoomList.ts
+++ b/src/rootgen/admin/zoomList/zoomList.ts
@@ -1,9 +1,9 @@
import { defineComponent } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyPage } from '@/components/CMyPage'
+import { CGridTableRec } from '@/components/CGridTableRec'
-import { fieldsTable } from '@src/store/Modules/fieldsTable'
+import { fieldsTable } from '@/store/Modules/fieldsTable'
export default defineComponent({
name: 'ZoomList',
diff --git a/src/rootgen/operators/operators.ts b/src/rootgen/operators/operators.ts
index e656641c..2293fe2a 100755
--- a/src/rootgen/operators/operators.ts
+++ b/src/rootgen/operators/operators.ts
@@ -1,8 +1,8 @@
import { defineComponent, ref, onMounted } from 'vue'
-import { CMyPage } from '@src/components/CMyPage'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { COperators } from '@src/components/COperators'
+import { CMyPage } from '@/components/CMyPage'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { COperators } from '@/components/COperators'
import { fieldsTable } from '@store/Modules/fieldsTable'
import MixinOperator from '../../mixins/mixin-operator'
diff --git a/src/router/permission.ts b/src/router/permission.ts
index 309d0976..84f4a2f2 100644
--- a/src/router/permission.ts
+++ b/src/router/permission.ts
@@ -1,5 +1,5 @@
import { useGlobalStore } from '@store/globalStore'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
import { useProgressBar } from '@store/Modules/ProgressBar'
import { tools } from '@tools'
import { useUserStore } from '@store/UserStore'
diff --git a/src/router/route-config.ts b/src/router/route-config.ts
index 2bf59dc3..5543e73c 100755
--- a/src/router/route-config.ts
+++ b/src/router/route-config.ts
@@ -1,4 +1,4 @@
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
import type { RouteRecordRaw } from 'vue-router'
import { tools } from '@tools'
import { useGlobalStore } from '@store/globalStore'
diff --git a/src/router/routesAI.ts b/src/router/routesAI.ts
index 64c3cf10..35696cc8 100644
--- a/src/router/routesAI.ts
+++ b/src/router/routesAI.ts
@@ -1,4 +1,4 @@
-import type { IListRoutes, ISites } from '@src/model'
+import type { IListRoutes, ISites } from '@/model'
function getRoutesAI(site: ISites) {
@@ -9,7 +9,7 @@ function getRoutesAI(site: ISites) {
path: '/ai',
materialIcon: 'fas fa-book',
name: 'mypages.aitools',
- component: () => import('@src/views/toolsAI/main/main.vue'),
+ component: () => import('@/views/toolsAI/main/main.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -24,7 +24,7 @@ function getRoutesAI(site: ISites) {
path: '/admin/ai/catAI',
materialIcon: 'fas fa-file-alt',
name: 'mypages.catAI',
- component: () => import('@src/rootgen/admin/catAI/catAI.vue'),
+ component: () => import('@/rootgen/admin/catAI/catAI.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -38,7 +38,7 @@ function getRoutesAI(site: ISites) {
path: '/admin/ai/queryAI',
materialIcon: 'fas fa-file-alt',
name: 'mypages.queryAI',
- component: () => import('@src/rootgen/admin/queryAI/queryAI.vue'),
+ component: () => import('@/rootgen/admin/queryAI/queryAI.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
diff --git a/src/router/routesAdmin.ts b/src/router/routesAdmin.ts
index 298a3c45..1db5d1ad 100644
--- a/src/router/routesAdmin.ts
+++ b/src/router/routesAdmin.ts
@@ -1,4 +1,4 @@
-import type { IListRoutes, ISites } from '@src/model'
+import type { IListRoutes, ISites } from '@/model'
import { only } from 'node:test'
function getRoutesAd(site: ISites) {
@@ -10,7 +10,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/sites',
materialIcon: 'event_seat',
name: 'pages.Sites',
- component: () => import('@src/rootgen/admin/sites/sites.vue'),
+ component: () => import('@/rootgen/admin/sites/sites.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -23,7 +23,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/cfgserv',
materialIcon: 'event_seat',
name: 'pages.Admin',
- component: () => import('@src/views/admin/cfgServer/cfgServer.vue'),
+ component: () => import('@/views/admin/cfgServer/cfgServer.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -36,7 +36,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/dbop',
materialIcon: 'event_seat',
name: 'pages.dbop',
- component: () => import('@src/views/admin/dbop/dbop.vue'),
+ component: () => import('@/views/admin/dbop/dbop.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -49,7 +49,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/dbopmacro',
materialIcon: 'event_seat',
name: 'pages.dbopmacro',
- component: () => import('@src/views/admin/dbopmacro/dbopmacro.vue'),
+ component: () => import('@/views/admin/dbopmacro/dbopmacro.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -62,7 +62,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/server',
materialIcon: 'event_seat',
name: 'otherpages.server',
- component: () => import('@src/views/admin/server/server.vue'),
+ component: () => import('@/views/admin/server/server.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -75,7 +75,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/importfile',
materialIcon: 'event_seat',
name: 'otherpages.manage.importfile',
- component: () => import('@src/rootgen/admin/importdata/importdata.vue'),
+ component: () => import('@/rootgen/admin/importdata/importdata.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -88,7 +88,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/convertPDF',
materialIcon: 'event_seat',
name: 'otherpages.manage.convertPDF',
- component: () => import('@src/rootgen/admin/convertPDF/convertPDF.vue'),
+ component: () => import('@/rootgen/admin/convertPDF/convertPDF.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -104,63 +104,63 @@ function getRoutesAd(site: ISites) {
active: true,
order: 10,
name: 'newsletter.template', path: '/admin/newsletter/templemail', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 10,
name: 'newsletter.destnewsletter', path: '/admin/newsletter/destnewsletter', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 20,
name: 'newsletter.sendemail', path: '/admin/newsletter/newnewsletter', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 30,
name: 'newsletter.check', path: '/admin/newsletter/check', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 40,
name: 'newsletter.sent', path: '/admin/newsletter/newslist', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 50,
name: 'newsletter.mailinglist', path: '/admin/newsletter/mailinglist', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 60,
name: 'newsletter.settings', path: '/admin/newsletter/settings', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 70,
name: 'newsletter.serversettings', path: '/admin/newsletter/main_settings', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
},
{
active: true,
order: 80,
name: 'newsletter.others', path: '/admin/newsletter/events', materialIcon: 'fas fa-users',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: true, submenu: true, level_parent: 0.5, level_child: 0.5, onlyManager: true, noroute: true
}
]
@@ -172,7 +172,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/ris/circuitslist',
materialIcon: 'fas fa-coins',
name: 'otherpages.admin.circuitslist',
- component: () => import('@src/rootgen/admin/circuitsList/circuitsList.vue'),
+ component: () => import('@/rootgen/admin/circuitsList/circuitsList.vue'),
inmenu: true,
submenu: true,
level_parent: 0.5,
@@ -186,7 +186,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/ris/accountslist',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.accountslist',
- component: () => import('@src/rootgen/admin/accountsList/accountsList.vue'),
+ component: () => import('@/rootgen/admin/accountsList/accountsList.vue'),
inmenu: true,
submenu: true,
level_parent: 0.5,
@@ -200,7 +200,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/ris/movslist',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.movslist',
- component: () => import('@src/rootgen/admin/movsList/movsList.vue'),
+ component: () => import('@/rootgen/admin/movsList/movsList.vue'),
inmenu: true,
submenu: true,
level_parent: 0.5,
@@ -218,7 +218,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/usereventlist',
materialIcon: 'edit',
name: 'otherpages.admin.usereventlist',
- component: () => import('@src/rootgen/admin/eventlist/eventlist.vue'),
+ component: () => import('@/rootgen/admin/eventlist/eventlist.vue'),
inmenu: site.confpages && site.confpages?.bookingEvents,
submenu: site.confpages && site.confpages?.bookingEvents,
level_parent: 0,
@@ -234,7 +234,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/userlist',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.userlist',
- component: () => import('@src/rootgen/admin/usersList/usersList.vue'),
+ component: () => import('@/rootgen/admin/usersList/usersList.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -248,7 +248,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/userpanel',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.userpanel',
- component: () => import('@src/rootgen/admin/userPanel/userPanel.vue'),
+ component: () => import('@/rootgen/admin/userPanel/userPanel.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -263,7 +263,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/iscritticonacreis',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.iscritticonacreis',
- component: () => import('@src/rootgen/admin/iscritticonacreis/iscritticonacreis.vue'),
+ component: () => import('@/rootgen/admin/iscritticonacreis/iscritticonacreis.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -279,7 +279,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/zoomlist',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.zoomlist',
- component: () => import('@src/rootgen/admin/zoomList/zoomList.vue'),
+ component: () => import('@/rootgen/admin/zoomList/zoomList.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -293,7 +293,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/tableslist',
materialIcon: 'fas fa-users',
name: 'otherpages.admin.tableslist',
- component: () => import('@src/rootgen/admin/tablesList/tablesList.vue'),
+ component: () => import('@/rootgen/admin/tablesList/tablesList.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -307,7 +307,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/pages',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.pages',
- component: () => import('@src/rootgen/admin/pages/pages.vue'),
+ component: () => import('@/rootgen/admin/pages/pages.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -321,7 +321,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/editpages',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.editpages',
- component: () => import('@src/rootgen/admin/editpages/editpages.vue'),
+ component: () => import('@/rootgen/admin/editpages/editpages.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -335,7 +335,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/home',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.elems',
- component: () => import('@src/rootgen/admin/editElems/editElems.vue'),
+ component: () => import('@/rootgen/admin/editElems/editElems.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -348,7 +348,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/lista_crons',
materialIcon: 'fas fa-clock',
name: 'otherpages.admin.lista_cron',
- component: () => import('@src/rootgen/admin/lista_cron/lista_cron.vue'),
+ component: () => import('@/rootgen/admin/lista_cron/lista_cron.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -361,7 +361,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/bot',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.bot',
- component: () => import('@src/rootgen/admin/bot/bot.vue'),
+ component: () => import('@/rootgen/admin/bot/bot.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -374,7 +374,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/confsite',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.confsite',
- component: () => import('@src/rootgen/admin/confsite/confsite.vue'),
+ component: () => import('@/rootgen/admin/confsite/confsite.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -388,7 +388,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/msg_template',
materialIcon: 'fas fa-file-alt',
name: 'msgs.messages',
- component: () => import('@src/rootgen/admin/msg_template/msg_template.vue'),
+ component: () => import('@/rootgen/admin/msg_template/msg_template.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -403,7 +403,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/sendpushnotif',
materialIcon: 'event_seat',
name: 'otherpages.manage.sendpushnotif',
- component: () => import('@src/rootgen/admin/sendpushnotif/sendpushnotif.vue'),
+ component: () => import('@/rootgen/admin/sendpushnotif/sendpushnotif.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -417,7 +417,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/gallery',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.gallery',
- component: () => import('@src/rootgen/admin/gallery/gallery.vue'),
+ component: () => import('@/rootgen/admin/gallery/gallery.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -431,7 +431,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/media',
materialIcon: 'fas fa-file-alt',
name: 'otherpages.admin.media',
- component: () => import('@src/rootgen/admin/uploader/uploader.vue'),
+ component: () => import('@/rootgen/admin/uploader/uploader.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -480,7 +480,7 @@ function getRoutesAd(site: ISites) {
path: '/my/:username',
materialIcon: 'fas fa-user',
name: 'pages.profile2',
- component: () => import('@src/views/user/myprofile/myprofile.vue'),
+ component: () => import('@/views/user/myprofile/myprofile.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -491,7 +491,7 @@ function getRoutesAd(site: ISites) {
path: '/skills/:username',
materialIcon: 'fas fa-user',
name: 'otherpages.myactivities',
- component: () => import('@src/views/user/myactivities/myactivities.vue'),
+ component: () => import('@/views/user/myactivities/myactivities.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -502,7 +502,7 @@ function getRoutesAd(site: ISites) {
path: '/attivita/:username',
materialIcon: 'fas fa-user',
name: 'mypages.attivita',
- component: () => import('@src/views/user/myprofile/myprofile.vue'),
+ component: () => import('@/views/user/myprofile/myprofile.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -514,7 +514,7 @@ function getRoutesAd(site: ISites) {
path: '/notifs',
materialIcon: 'fas fa-user',
name: 'pages.notifs',
- component: () => import('@src/views/user/usernotifs/usernotifs.vue'),
+ component: () => import('@/views/user/usernotifs/usernotifs.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -525,7 +525,7 @@ function getRoutesAd(site: ISites) {
path: '/unsubscribe',
materialIcon: 'fas fa-envelope',
name: 'pages.unsubscribe',
- component: () => import('@src/views/email/unsubscribe/unsubscribe.vue'),
+ component: () => import('@/views/email/unsubscribe/unsubscribe.vue'),
inmenu: false,
infooter: false,
},
@@ -535,7 +535,7 @@ function getRoutesAd(site: ISites) {
path: '/unsubscribe_user',
materialIcon: 'fas fa-envelope',
name: 'pages.unsubscribe_user',
- component: () => import('@src/views/unsubscribe_user/unsubscribe_user.vue'),
+ component: () => import('@/views/unsubscribe_user/unsubscribe_user.vue'),
inmenu: false,
infooter: false,
},
@@ -545,7 +545,7 @@ function getRoutesAd(site: ISites) {
path: '/provapao',
materialIcon: 'fas fa-house-user',
name: 'mypages.provapao',
- component: () => import('@src/root/provapao/provapao.vue'),
+ component: () => import('@/root/provapao/provapao.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -556,7 +556,7 @@ function getRoutesAd(site: ISites) {
path: '/testlocal',
materialIcon: 'fas fa-test',
name: 'mypages.TestLocal',
- component: () => import('@src/views/test/test.vue'),
+ component: () => import('@/views/test/test.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -567,18 +567,7 @@ function getRoutesAd(site: ISites) {
path: '/provaris1',
materialIcon: 'fas fa-test',
name: 'mypages.provaris1',
- component: () => import('@src/pages/provaris1.vue'),
- meta: { },
- inmenu: false,
- infooter: false,
- },
- {
- active: true,
- order: 400,
- path: '/provaris2',
- materialIcon: 'fas fa-test',
- name: 'mypages.provaris2',
- component: () => import('@src/pages/provaris2.vue'),
+ component: () => import('@/pages/provaris1.vue'),
meta: { },
inmenu: false,
infooter: false,
@@ -589,7 +578,7 @@ function getRoutesAd(site: ISites) {
path: '/provaris3',
materialIcon: 'fas fa-test',
name: 'mypages.provaris3',
- component: () => import('@src/pages/provaris3.vue'),
+ component: () => import('@/pages/provaris3.vue'),
meta: { },
inmenu: false,
infooter: false,
@@ -630,7 +619,7 @@ function getRoutesAd(site: ISites) {
path: '/policy',
materialIcon: 'fas fa-user',
name: 'pages.policy',
- component: () => import('@src/root/policy/policy.vue'),
+ component: () => import('@/root/policy/policy.vue'),
inmenu: false,
infooter: true
},
@@ -650,7 +639,7 @@ function getRoutesAd(site: ISites) {
path: '/signup',
materialIcon: 'how_to_reg',
name: 'pages.SignUp5',
- component: () => import('@src/views/login/signup_noteleg/signup_noteleg.vue'),
+ component: () => import('@/views/login/signup_noteleg/signup_noteleg.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -661,7 +650,7 @@ function getRoutesAd(site: ISites) {
path: '/registrati',
materialIcon: 'how_to_reg',
name: 'pages.SignUp7',
- component: () => import('@src/views/login/signup_noteleg/signup_noteleg.vue'),
+ component: () => import('@/views/login/signup_noteleg/signup_noteleg.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -672,7 +661,7 @@ function getRoutesAd(site: ISites) {
path: '/signup/:invited',
materialIcon: 'how_to_reg',
name: 'pages.SignUp2',
- component: () => import('@src/views/login/signup/signup.vue'),
+ component: () => import('@/views/login/signup/signup.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -683,7 +672,7 @@ function getRoutesAd(site: ISites) {
path: '/registrati/:invited',
materialIcon: 'how_to_reg',
name: 'pages.SignUp6',
- component: () => import('@src/views/login/signup/signup.vue'),
+ component: () => import('@/views/login/signup/signup.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -694,7 +683,7 @@ function getRoutesAd(site: ISites) {
path: '/invitetoreg/:tok',
materialIcon: 'how_to_reg',
name: 'pages.InvitoReg',
- component: () => import('@src/views/login/invitoreg/invitoreg.vue'),
+ component: () => import('@/views/login/invitoreg/invitoreg.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -705,7 +694,7 @@ function getRoutesAd(site: ISites) {
path: '/ammetti/:token/:username',
materialIcon: 'how_to_reg',
name: 'pages.Ammetti',
- component: () => import('@src/views/login/ammetti/ammetti.vue'),
+ component: () => import('@/views/login/ammetti/ammetti.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -716,7 +705,7 @@ function getRoutesAd(site: ISites) {
path: '/abcirc/:cmd/:token/:username/:username_action',
materialIcon: 'how_to_reg',
name: 'pages.AbilitaCircuito',
- component: () => import('@src/views/login/abilitacircuito/abilitacircuito.vue'),
+ component: () => import('@/views/login/abilitacircuito/abilitacircuito.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -727,7 +716,7 @@ function getRoutesAd(site: ISites) {
path: '/signup/:invited/:regexpire',
materialIcon: 'how_to_reg',
name: 'pages.SignUp3',
- component: () => import('@src/views/login/signup/signup.vue'),
+ component: () => import('@/views/login/signup/signup.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -738,7 +727,7 @@ function getRoutesAd(site: ISites) {
path: '/signup_collettivo/:invited/:username_default/:name_default',
materialIcon: 'how_to_reg',
name: 'pages.SignUpCollettivo',
- component: () => import('@src/views/login/signup_collettivo/signup_collettivo.vue'),
+ component: () => import('@/views/login/signup_collettivo/signup_collettivo.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -749,7 +738,7 @@ function getRoutesAd(site: ISites) {
path: '/signup_collettivo',
materialIcon: 'how_to_reg',
name: 'pages.SignUpCollettivo2',
- component: () => import('@src/views/login/signup_collettivo/signup_collettivo.vue'),
+ component: () => import('@/views/login/signup_collettivo/signup_collettivo.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -760,7 +749,7 @@ function getRoutesAd(site: ISites) {
path: '/signup/:invited/:usernameteleg/:idteleg/:regexpire',
materialIcon: 'how_to_reg',
name: 'pages.SignUp',
- component: () => import('@src/views/login/signup/signup.vue'),
+ component: () => import('@/views/login/signup/signup.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -771,7 +760,7 @@ function getRoutesAd(site: ISites) {
path: '/registrati/:invited/:usernameteleg/:idteleg/:regexpire',
materialIcon: 'how_to_reg',
name: 'pages.SignUp11',
- component: () => import('@src/views/login/signup/signup.vue'),
+ component: () => import('@/views/login/signup/signup.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -782,7 +771,7 @@ function getRoutesAd(site: ISites) {
path: '/registrati/:invited/:usernameteleg/:idteleg',
materialIcon: 'how_to_reg',
name: 'pages.SignUp4',
- component: () => import('@src/views/login/signup/signup.vue'),
+ component: () => import('@/views/login/signup/signup.vue'),
inmenu: false,
infooter: false,
separator: false
@@ -793,7 +782,7 @@ function getRoutesAd(site: ISites) {
path: '/regok',
materialIcon: 'how_to_reg',
name: 'pages.regok',
- component: () => import('@src/views/login/regok/regok.vue'),
+ component: () => import('@/views/login/regok/regok.vue'),
inmenu: false,
infooter: false,
separator: false,
@@ -804,7 +793,7 @@ function getRoutesAd(site: ISites) {
path: '/signin',
materialIcon: 'account_circle',
name: 'pages.SignIn',
- component: () => import('@src/views/login/signin_noreg/signin_noreg.vue'),
+ component: () => import('@/views/login/signin_noreg/signin_noreg.vue'),
inmenu: true,
infooter: true
},
@@ -814,28 +803,28 @@ function getRoutesAd(site: ISites) {
order: 1000,
path: '/vreg',
name: 'pages.vreg',
- component: () => import('@src/views/login/vreg/vreg.vue')
+ component: () => import('@/views/login/vreg/vreg.vue')
},
{
active: true,
order: 1000,
path: '/requestresetpwd',
name: 'pages.requestresetpwd',
- component: () => import('@src/views/requestresetpwd/requestresetpwd.vue')
+ component: () => import('@/views/requestresetpwd/requestresetpwd.vue')
},
{
active: true,
order: 1000,
path: '/updatepassword',
name: 'pages.updatepassword',
- component: () => import('@src/views/updatepassword/updatepassword.vue')
+ component: () => import('@/views/updatepassword/updatepassword.vue')
},
{
active: true,
order: 1000,
path: '/offline',
name: 'Offline',
- component: () => import('@src/views/offline/offline.vue')
+ component: () => import('@/views/offline/offline.vue')
},
{
active: true,
@@ -851,7 +840,7 @@ function getRoutesAd(site: ISites) {
path: '/calendario-eventi',
materialIcon: 'event',
name: 'ris.calendario_eventi_riso',
- component: () => import('@src/root/calendarioeventi/calendarioeventi.vue'),
+ component: () => import('@/root/calendarioeventi/calendarioeventi.vue'),
extraclass: 'isCalendar',
inmenu: true,
infooter: true
@@ -864,7 +853,7 @@ function getRoutesAd(site: ISites) {
path: '/admin/newsletter/:idparam',
materialIcon: 'event',
name: 'pages.newsletter.menu',
- component: () => import('@src/rootgen/admin/newsletter/newsletter.vue'),
+ component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
inmenu: false,
infooter: false,
onlyAdmin: true
@@ -875,7 +864,7 @@ function getRoutesAd(site: ISites) {
path: '/event/:typol/:eventid',
materialIcon: 'event',
name: 'pages.evento',
- component: () => import('@src/root/evento/evento.vue'),
+ component: () => import('@/root/evento/evento.vue'),
inmenu: false,
infooter: false
},
@@ -885,7 +874,7 @@ function getRoutesAd(site: ISites) {
path: '/event/:typol',
materialIcon: 'event',
name: 'pages.eventodef',
- component: () => import('@src/root/evento/evento.vue'),
+ component: () => import('@/root/evento/evento.vue'),
inmenu: false,
infooter: false
},
diff --git a/src/router/routesECommerce.ts b/src/router/routesECommerce.ts
index 1ebf80f8..db843ece 100644
--- a/src/router/routesECommerce.ts
+++ b/src/router/routesECommerce.ts
@@ -1,5 +1,5 @@
-import type { IListRoutes, ISites } from '@src/model'
-import { tools } from '@src/store/Modules/tools'
+import type { IListRoutes, ISites } from '@/model'
+import { tools } from '@/store/Modules/tools'
function getRoutesEcomm(site: ISites) {
@@ -10,7 +10,7 @@ function getRoutesEcomm(site: ISites) {
path: '/products',
materialIcon: 'fas fa-list-ul',
name: 'mypages.productslist',
- component: () => import('@src/views/ecommerce/productsList/productsList.vue'),
+ component: () => import('@/views/ecommerce/productsList/productsList.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -22,7 +22,7 @@ function getRoutesEcomm(site: ISites) {
path: '/checkout',
materialIcon: 'fas fa-shopping-cart',
name: 'mypages.checkout',
- component: () => import('@src/views/ecommerce/checkOut/checkOut.vue'),
+ component: () => import('@/views/ecommerce/checkOut/checkOut.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -34,7 +34,7 @@ function getRoutesEcomm(site: ISites) {
path: '/orderinfo',
materialIcon: 'fas fa-file-alt',
name: 'mypages.orderinfo',
- component: () => import('@src/views/ecommerce/orderInfo/orderInfo.vue'),
+ component: () => import('@/views/ecommerce/orderInfo/orderInfo.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -46,7 +46,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/orders',
materialIcon: 'fas fa-file-alt',
name: 'mypages.orders',
- component: () => import('@src/rootgen/admin/orders/orders.vue'),
+ component: () => import('@/rootgen/admin/orders/orders.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -62,7 +62,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/products',
materialIcon: 'fas fa-lemon',
name: 'mypages.listinoprodotti',
- component: () => import('@src/rootgen/admin/products/products.vue'),
+ component: () => import('@/rootgen/admin/products/products.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -76,7 +76,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/gasordini',
materialIcon: 'fas fa-file-alt',
name: 'mypages.gestoreordinigas',
- component: () => import('@src/rootgen/admin/gasordini/gasordini.vue'),
+ component: () => import('@/rootgen/admin/gasordini/gasordini.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -90,7 +90,7 @@ function getRoutesEcomm(site: ISites) {
path: '/products/importa',
materialIcon: 'fas fa-upload',
name: 'otherpages.manage.importaprodotti',
- component: () => import('@src/rootgen/admin/importaprodotti/importaprodotti.vue'),
+ component: () => import('@/rootgen/admin/importaprodotti/importaprodotti.vue'),
level_parent: 0.0,
level_child: 0.5,
inmenu: true,
@@ -103,7 +103,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/gestoreordini',
materialIcon: 'fas fa-chart-pie',
name: 'mypages.totaliordini',
- component: () => import('@src/views/admin/gestoreordini/gestoreordini.vue'),
+ component: () => import('@/views/admin/gestoreordini/gestoreordini.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -117,7 +117,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/producers',
materialIcon: 'fas fa-tractor',
name: 'mypages.producer',
- component: () => import('@src/rootgen/admin/producer/producer.vue'),
+ component: () => import('@/rootgen/admin/producer/producer.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -131,7 +131,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/storehouses',
materialIcon: 'fas fa-store',
name: 'mypages.storehouses',
- component: () => import('@src/rootgen/admin/storehouses/storehouses.vue'),
+ component: () => import('@/rootgen/admin/storehouses/storehouses.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -145,7 +145,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/providers',
materialIcon: 'fas fa-box-open',
name: 'mypages.providers',
- component: () => import('@src/rootgen/admin/providers/providers.vue'),
+ component: () => import('@/rootgen/admin/providers/providers.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -159,7 +159,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/scontistica',
materialIcon: 'fas fa-gift',
name: 'mypages.scontisticas',
- component: () => import('@src/rootgen/admin/scontistica/scontistica.vue'),
+ component: () => import('@/rootgen/admin/scontistica/scontistica.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -173,7 +173,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/departments',
materialIcon: 'fas fa-building',
name: 'mypages.departments',
- component: () => import('@src/rootgen/admin/departments/departments.vue'),
+ component: () => import('@/rootgen/admin/departments/departments.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -187,7 +187,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/orders',
materialIcon: 'fas fa-file-alt',
name: 'mypages.orders',
- component: () => import('@src/rootgen/admin/orders/orders.vue'),
+ component: () => import('@/rootgen/admin/orders/orders.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -201,7 +201,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/catprods',
materialIcon: 'fas fa-th-list',
name: 'mypages.catprods',
- component: () => import('@src/rootgen/admin/catprods/catprods.vue'),
+ component: () => import('@/rootgen/admin/catprods/catprods.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -215,7 +215,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/collane',
materialIcon: 'fas fa-book-open',
name: 'mypages.collane',
- component: () => import('@src/rootgen/admin/collane/collane.vue'),
+ component: () => import('@/rootgen/admin/collane/collane.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -229,7 +229,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/cash',
materialIcon: 'fas fa-cash-register',
name: 'mypages.cash',
- component: () => import('@src/views/ecommerce/cash/cash.vue'),
+ component: () => import('@/views/ecommerce/cash/cash.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -243,7 +243,7 @@ function getRoutesEcomm(site: ISites) {
path: '/admin/ecommerce/settings',
materialIcon: 'fas fa-cogs',
name: 'ecomm.settings',
- component: () => import('@src/rootgen/admin/settings/settings.vue'),
+ component: () => import('@/rootgen/admin/settings/settings.vue'),
inmenu: true,
submenu: true,
level_parent: 0,
@@ -300,7 +300,7 @@ function getRoutesEcomm(site: ISites) {
path: '/catalogo/:idprod/:cosa',
materialIcon: 'event',
name: 'otherpages.catalogo',
- component: () => import('@src/views/ecommerce/catalogoInfo/catalogoInfo.vue'),
+ component: () => import('@/views/ecommerce/catalogoInfo/catalogoInfo.vue'),
inmenu: false,
infooter: false
},
@@ -310,7 +310,7 @@ function getRoutesEcomm(site: ISites) {
path: '/orderscart/:idorderscart',
materialIcon: 'event',
name: 'otherpages.orderscart',
- component: () => import('@src/views/ecommerce/orderscart/orderscart.vue'),
+ component: () => import('@/views/ecommerce/orderscart/orderscart.vue'),
inmenu: false,
infooter: false
},
diff --git a/src/statics/i18n.js b/src/statics/i18n.js
index 7be9fc96..c2bb8b25 100644
--- a/src/statics/i18n.js
+++ b/src/statics/i18n.js
@@ -1,10 +1,10 @@
-import msg_it from '@src/statics/lang/it'
-import msg_es from '@src/statics/lang/es'
-import msg_si from '@src/statics/lang/si'
-import msg_enUs from '@src/statics/lang/enUs'
-import msg_fr from '@src/statics/lang/fr'
-import msg_de from '@src/statics/lang/de'
-import msg_pt from '@src/statics/lang/pt'
+import msg_it from '@/statics/lang/it'
+import msg_es from '@/statics/lang/es'
+import msg_si from '@/statics/lang/si'
+import msg_enUs from '@/statics/lang/enUs'
+import msg_fr from '@/statics/lang/fr'
+import msg_de from '@/statics/lang/de'
+import msg_pt from '@/statics/lang/pt'
import msg_website_de from '../db/lang/ws_de';
import msg_website_enUs from '../db/lang/ws_enUs';
diff --git a/src/statics/lang/it.js b/src/statics/lang/it.js
index a9e75166..ea70f0fc 100755
--- a/src/statics/lang/it.js
+++ b/src/statics/lang/it.js
@@ -1582,6 +1582,7 @@ const msg_it = {
contocomunitario: 'Conto Comunitario',
comunitario: 'Comunitario',
conticollettivi: 'Organizzazioni',
+ conticollettivi_short: 'Organizzaz.',
contideigruppi: 'Conti delle Organizzazioni',
listaconticollettivi: 'Lista Organizzazioni',
qta_remaining_to_send: 'Quantità massima inviabile {maxqta} {symbol}',
diff --git a/src/store/Api/Inst-Pao.ts b/src/store/Api/Inst-Pao.ts
index 7c3dffec..187b1a6d 100755
--- a/src/store/Api/Inst-Pao.ts
+++ b/src/store/Api/Inst-Pao.ts
@@ -2,7 +2,7 @@ import axios, {
AxiosInstance, AxiosPromise, AxiosResponse, AxiosInterceptorManager,
} from 'axios'
import { Api } from '@api'
-import type * as Types from '@src/store/Api/ApiTypes'
+import type * as Types from '@/store/Api/ApiTypes'
// Funzione che smista la richiesta in base al metodo
diff --git a/src/store/Api/Instance.ts b/src/store/Api/Instance.ts
index 3413a06c..b84fbb3c 100755
--- a/src/store/Api/Instance.ts
+++ b/src/store/Api/Instance.ts
@@ -2,11 +2,11 @@ import type { AxiosRequestConfig, AxiosInstance, AxiosResponse } from 'axios';
import axios from 'axios';
// import LoginModule from '../Modules/Auth/LoginStore'
-import { toolsext } from '@src/store/Modules/toolsext';
-import { serv_constants } from '@src/store/Modules/serv_constants';
+import { toolsext } from '@/store/Modules/toolsext';
+import { serv_constants } from '@/store/Modules/serv_constants';
import { useGlobalStore } from '@store/globalStore';
import { useUserStore } from '@store/UserStore';
-import { tools } from '@src/store/Modules/tools';
+import { tools } from '@/store/Modules/tools';
import * as Types from './ApiTypes';
import type { Observable } from 'rxjs';
diff --git a/src/store/Api/index.ts b/src/store/Api/index.ts
index 7d911a0d..e2089315 100755
--- a/src/store/Api/index.ts
+++ b/src/store/Api/index.ts
@@ -7,14 +7,14 @@ import axios from 'axios';
export { addAuthHeaders, API_URL } from './Instance';
// import {AlgoliaSearch} from './AlgoliaController'
import Paths from '@paths';
-import { tools } from '@src/store/Modules/tools';
-import { toolsext } from '@src/store/Modules/toolsext';
+import { tools } from '@/store/Modules/tools';
+import { toolsext } from '@/store/Modules/toolsext';
-import { serv_constants } from '@src/store/Modules/serv_constants';
+import { serv_constants } from '@/store/Modules/serv_constants';
-import type * as Types from '@src/store/Api/ApiTypes';
-import { costanti } from '@src/store/Modules/costanti';
-import * as ApiTables from '@src/store/Modules/ApiTables';
+import type * as Types from '@/store/Api/ApiTypes';
+import { costanti } from '@/store/Modules/costanti';
+import * as ApiTables from '@/store/Modules/ApiTables';
import sendRequest from './Inst-Pao';
import Request from './Instance';
import globalroutines from '../../globalroutines/index';
diff --git a/src/store/CatalogStore.ts b/src/store/CatalogStore.ts
index 9384387d..61bec934 100755
--- a/src/store/CatalogStore.ts
+++ b/src/store/CatalogStore.ts
@@ -1,6 +1,6 @@
import { defineStore } from 'pinia';
-import type { ICatalogState } from '@src/model';
+import type { ICatalogState } from '@/model';
import {
IAccount,
ICircuit,
@@ -10,21 +10,21 @@ import {
IMyCircuit,
IMyGroup,
IUserFields,
-} from '@src/model';
+} from '@/model';
import { tools } from '@tools';
-import translate from '@src/globalroutines/util';
+import translate from '@/globalroutines/util';
import { useProducts } from 'app/src/store/Products';
import { useUserStore } from 'app/src/store/UserStore';
-import * as Types from '@src/store/Api/ApiTypes';
+import * as Types from '@/store/Api/ApiTypes';
import { useGlobalStore } from '@store/globalStore';
import { serv_constants } from '@store/Modules/serv_constants';
import { Api } from '@api';
import { toolsext } from '@store/Modules/toolsext';
-import { static_data } from '@src/db/static_data';
+import { static_data } from '@/db/static_data';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
import { costanti } from '@costanti';
import globalroutines from '../globalroutines/index';
diff --git a/src/store/CircuitStore.ts b/src/store/CircuitStore.ts
index 38cdc917..5140c50f 100755
--- a/src/store/CircuitStore.ts
+++ b/src/store/CircuitStore.ts
@@ -9,21 +9,21 @@ import type {
IMyGroup,
IUserFields,
IUserProfile,
-} from '@src/model';
-import { IGlobalState } from '@src/model';
+} from '@/model';
+import { IGlobalState } from '@/model';
import { tools } from '@tools';
-import translate from '@src/globalroutines/util';
+import translate from '@/globalroutines/util';
-import * as Types from '@src/store/Api/ApiTypes';
+import * as Types from '@/store/Api/ApiTypes';
import { useGlobalStore } from '@store/globalStore';
import { serv_constants } from '@store/Modules/serv_constants';
import { Api } from '@api';
import { toolsext } from '@store/Modules/toolsext';
-import { static_data } from '@src/db/static_data';
+import { static_data } from '@/db/static_data';
import { useUserStore } from '@store/UserStore';
import { useNotifStore } from '@store/NotifStore';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
import { costanti } from '@costanti';
import globalroutines from '../globalroutines/index';
@@ -334,6 +334,42 @@ export const useCircuitStore = defineStore('CircuitStore', {
return false;
},
+ updateListCircuit(visu: number) {
+ const userStore = useUserStore();
+
+ let arr: any[] = [];
+ try {
+ if (visu === costanti.CIRCUITS) {
+ arr = this.listcircuits;
+ } else if (visu === costanti.MY_CIRCUITS) {
+ arr = this.listcircuits.filter(
+ (circ: any) =>
+ userStore.my.profile.mycircuits.findIndex(
+ (rec: any) => circ.name === rec.circuitname
+ ) >= 0
+ );
+ } else if (visu === costanti.ASK_SENT_CIRCUIT) {
+ arr = userStore.my.profile.asked_circuits;
+ }
+ } catch (e) {
+ arr = [];
+ }
+
+ if (visu === costanti.MY_CIRCUITS) {
+ const arrtoinsert: any = this.listcircuits.filter(
+ (circ: any) => circ.isCircItalia
+ );
+ for (const rec of arrtoinsert) {
+ if (arr.findIndex((myrec) => myrec._id === rec._id) < 0) {
+ // Se non c'è il circuito Nazionale, glielo aggiungo
+ arr.push(rec);
+ }
+ }
+ }
+
+ return arr;
+ },
+
getAccountByCircuitId(circuitId: string): any {
/*if (this.listaccounts) {
return this.listaccounts.find((rec: IAccount) => rec.circuitId === circuitId)
diff --git a/src/store/MessageStore.ts b/src/store/MessageStore.ts
index 5bd0bec0..aeb9c603 100755
--- a/src/store/MessageStore.ts
+++ b/src/store/MessageStore.ts
@@ -5,9 +5,9 @@ import { serv_constants } from './Modules/serv_constants';
import type { IMessage, IMessageState, IMsgUsers } from '../model';
import { StatusMessage } from '../model';
-import { tools } from '@src/store/Modules/tools';
-import { MsgDefault } from '@src/model';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { tools } from '@/store/Modules/tools';
+import { MsgDefault } from '@/model';
+import { shared_consts } from '@/common/shared_vuejs';
import { useUserStore } from '@store/UserStore';
export const useMessageStore = defineStore('MessageStore', {
diff --git a/src/store/Modules/ApiTables.ts b/src/store/Modules/ApiTables.ts
index 748ffa5d..8833f31c 100755
--- a/src/store/Modules/ApiTables.ts
+++ b/src/store/Modules/ApiTables.ts
@@ -1,7 +1,7 @@
import { Api } from '@api'
-import type { ITodo } from '@src/model'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
+import type { ITodo } from '@/model'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
import { useUserStore } from '@store/UserStore'
import { serv_constants } from '@store/Modules/serv_constants'
import { costanti } from '@store/Modules/costanti'
diff --git a/src/store/Modules/costanti.ts b/src/store/Modules/costanti.ts
index 050d9c84..9f75c601 100755
--- a/src/store/Modules/costanti.ts
+++ b/src/store/Modules/costanti.ts
@@ -1,4 +1,4 @@
-import { GROUPSCMD } from "@src/common/shared_nodejs"
+import { GROUPSCMD } from "@/common/shared_nodejs"
export interface IMainCard {
visible: boolean
diff --git a/src/store/Modules/fieldsTable.ts b/src/store/Modules/fieldsTable.ts
index eda4ade8..c3040962 100755
--- a/src/store/Modules/fieldsTable.ts
+++ b/src/store/Modules/fieldsTable.ts
@@ -3,7 +3,7 @@ import { useUserStore } from '@store/UserStore';
import { lists } from './lists';
import { costanti } from './costanti';
import { useGlobalStore } from '@store/globalStore';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
function getTabSector() {
return 'sectors';
diff --git a/src/store/Modules/tools.ts b/src/store/Modules/tools.ts
index 7ca82b14..5095d07f 100644
--- a/src/store/Modules/tools.ts
+++ b/src/store/Modules/tools.ts
@@ -2,7 +2,7 @@ import { i18n } from 'src/boot/i18n'; // Importa l'istanza di i18n configurata i
import { translation } from '@store/Modules/translation';
-// import languages from '@src/db/lang/languages';
+// import languages from '@/db/lang/languages';
import type {
IColGridTable,
@@ -51,7 +51,7 @@ import type {
} from '@model';
import { Privacy, TipoVisu } from '@model';
-import MixinBase from '@src/mixins/mixin-base';
+import MixinBase from '@/mixins/mixin-base';
import { fieldsTable } from '@store/Modules/fieldsTable';
@@ -69,15 +69,15 @@ import {
const { getScrollTarget, setVerticalScrollPosition } = scroll;
import { func_tools, toolsext } from '@store/Modules/toolsext';
-import { preloadedimages, static_data } from '@src/db/static_data';
+import { preloadedimages, static_data } from '@/db/static_data';
import { useGlobalStore } from '@store/globalStore';
import globalroutines from '../../globalroutines/index';
-import { RouteNames } from '@src/router/route-names';
-import messages from '@src/statics/i18n';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { RouteNames } from '@/router/route-names';
+import messages from '@/statics/i18n';
+import { shared_consts } from '@/common/shared_vuejs';
import * as ApiTables from '@store/Modules/ApiTables';
-import translate from '@src/globalroutines/util';
+import translate from '@/globalroutines/util';
import { serv_constants } from '@store/Modules/serv_constants';
import { useProjectStore } from '@store/Projects';
import { useTodoStore } from '@store/Todos';
@@ -87,7 +87,7 @@ import { useCalendarStore } from '@store/CalendarStore';
import type { Router } from 'vue-router';
import type { AxiosResponse } from 'axios';
import { default as Axios } from 'axios';
-import { PayloadMessageTypes } from '@src/common';
+import { PayloadMessageTypes } from '@/common';
import { useNotifStore } from '@store/NotifStore';
import { useProducts } from '../Products';
@@ -11443,10 +11443,12 @@ export const tools = {
let str = this.converteSpaziMultipliIn1solo(htmlText);
- if (customCss) {
+ let strstyle = customCss ? this.converteSpaziMultipliIn1solo(customCss) : '';
+
+ if (strstyle) {
str = `
${str}
`;
diff --git a/src/store/Modules/toolsext.ts b/src/store/Modules/toolsext.ts
index 3b253df2..ba859470 100755
--- a/src/store/Modules/toolsext.ts
+++ b/src/store/Modules/toolsext.ts
@@ -1,7 +1,7 @@
import { date, useQuasar } from 'quasar'
import { useUserStore } from '@store/UserStore'
// import { useGlobalStore } from '@store/globalStore'
-import { static_data } from '@src/db/static_data'
+import { static_data } from '@/db/static_data'
import { useGlobalStore } from '@store/globalStore'
import { useTodoStore } from '@store/Todos'
import type { Router } from 'vue-router'
diff --git a/src/store/NotifStore.ts b/src/store/NotifStore.ts
index 89633e25..aac6c196 100755
--- a/src/store/NotifStore.ts
+++ b/src/store/NotifStore.ts
@@ -4,9 +4,9 @@ import { Api } from '@api'
import { serv_constants } from './Modules/serv_constants'
import type { INotif, INotifState } from '../model'
-import { tools } from '@src/store/Modules/tools'
-import { NotifDefault } from '@src/model'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { tools } from '@/store/Modules/tools'
+import { NotifDefault } from '@/model'
+import { shared_consts } from '@/common/shared_vuejs'
import { useUserStore } from '@store/UserStore'
export const useNotifStore = defineStore('NotifStore', {
diff --git a/src/store/Products.ts b/src/store/Products.ts
index 5d504021..bdfb8bee 100755
--- a/src/store/Products.ts
+++ b/src/store/Products.ts
@@ -27,10 +27,10 @@ import type {
} from 'model';
import { Api } from '@api';
-import { serv_constants } from '@src/store/Modules/serv_constants';
-import * as Types from '@src/store/Api/ApiTypes';
-import { static_data } from '@src/db/static_data';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { serv_constants } from '@/store/Modules/serv_constants';
+import * as Types from '@/store/Api/ApiTypes';
+import { static_data } from '@/db/static_data';
+import { shared_consts } from '@/common/shared_vuejs';
import { tools } from '@store/Modules/tools';
import { defineStore } from 'pinia';
import { useUserStore } from '@store/UserStore';
@@ -38,10 +38,10 @@ import { toolsext } from '@store/Modules/toolsext';
import { useGlobalStore } from './globalStore';
import { ref, reactive } from 'vue';
-import objectId from '@src/js/objectId';
+import objectId from '@/js/objectId';
import { costanti } from '@costanti';
-import translate from '@src/globalroutines/util';
+import translate from '@/globalroutines/util';
import { useCatalogStore } from './CatalogStore';
function getRecordOrdersCartEmpty(): IOrderCart {
diff --git a/src/store/Projects.ts b/src/store/Projects.ts
index 010fe2df..ba9fb87b 100755
--- a/src/store/Projects.ts
+++ b/src/store/Projects.ts
@@ -1,19 +1,19 @@
import { defineStore } from 'pinia'
import type { IProject, IProjectsState, IDrag, IMenuList, IAction } from 'model'
-import { Privacy, TipoVisu } from '@src/model'
+import { Privacy, TipoVisu } from '@/model'
import { Api } from '@api'
import { tools } from './Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
+import { toolsext } from '@/store/Modules/toolsext'
import { lists } from './Modules/lists'
import * as ApiTables from './Modules/ApiTables'
import globalroutines from './../globalroutines/index'
-import objectId from '@src/js/objectId'
-import { costanti } from '@src/store/Modules/costanti'
-import { RouteNames } from '@src/router/route-names'
-import * as Types from '@src/store/Api/ApiTypes'
-import { serv_constants } from '@src/store/Modules/serv_constants'
-import { static_data } from '@src/db/static_data'
+import objectId from '@/js/objectId'
+import { costanti } from '@/store/Modules/costanti'
+import { RouteNames } from '@/router/route-names'
+import * as Types from '@/store/Api/ApiTypes'
+import { serv_constants } from '@/store/Modules/serv_constants'
+import { static_data } from '@/db/static_data'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
diff --git a/src/store/Todos.ts b/src/store/Todos.ts
index d12d0b6a..a0e62cbc 100755
--- a/src/store/Todos.ts
+++ b/src/store/Todos.ts
@@ -11,11 +11,11 @@ import { tools } from '@tools'
import { lists } from './Modules/lists'
import * as ApiTables from './Modules/ApiTables'
import globalroutines from './../globalroutines/index'
-import { serv_constants } from '@src/store/Modules/serv_constants'
-import objectId from '@src/js/objectId'
-import { costanti } from '@src/store/Modules/costanti'
-import * as Types from '@src/store/Api/ApiTypes'
-import { static_data } from '@src/db/static_data'
+import { serv_constants } from '@/store/Modules/serv_constants'
+import objectId from '@/js/objectId'
+import { costanti } from '@/store/Modules/costanti'
+import * as Types from '@/store/Api/ApiTypes'
+import { static_data } from '@/db/static_data'
import { defineStore } from 'pinia'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
diff --git a/src/store/UserStore.ts b/src/store/UserStore.ts
index 8945ad82..355db69f 100755
--- a/src/store/UserStore.ts
+++ b/src/store/UserStore.ts
@@ -15,28 +15,28 @@ import type {
ISignupIscrizioneConacreisOptions,
IMovQuery,
IGroup,
-} from '@src/model';
-import { IFriends, ISettings } from '@src/model';
+} from '@/model';
+import { IFriends, ISettings } from '@/model';
import { tools } from '@tools';
-import translate from '@src/globalroutines/util';
+import translate from '@/globalroutines/util';
import type { IAbilitaCirc, IAmmetti, ILinkReg, IToken } from '@model/other';
import { ICallResult, IResult } from '@model/other';
-import objectId from '@src/js/objectId';
+import objectId from '@/js/objectId';
-import type * as Types from '@src/store/Api/ApiTypes';
+import type * as Types from '@/store/Api/ApiTypes';
import { useGlobalStore } from '@store/globalStore';
import { serv_constants } from '@store/Modules/serv_constants';
import { Api } from '@api';
import { toolsext } from '@store/Modules/toolsext';
-import { static_data } from '@src/db/static_data';
+import { static_data } from '@/db/static_data';
import bcrypt from 'bcryptjs';
import { useTodoStore } from '@store/Todos';
import type { Router } from 'vue-router';
import { useProjectStore } from '@store/Projects';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
import { costanti } from '@costanti';
import type { IReaction, IGroupShort, IMyGroup } from '@model/UserStore';
import {
diff --git a/src/store/globalStore.ts b/src/store/globalStore.ts
index 68e777aa..7cb2ec49 100644
--- a/src/store/globalStore.ts
+++ b/src/store/globalStore.ts
@@ -25,32 +25,32 @@ import type {
INewCatalog,
} from '@model';
import { ICity, IMySkill, ISites, IMyScheda } from '@model';
-import { static_data } from '@src/db/static_data';
-import * as Types from '@src/store/Api/ApiTypes';
+import { static_data } from '@/db/static_data';
+import * as Types from '@/store/Api/ApiTypes';
import { useUserStore } from '@store/UserStore';
import { serv_constants } from '@store/Modules/serv_constants';
-import * as ApiTables from '@src/store/Modules/ApiTables';
+import * as ApiTables from '@/store/Modules/ApiTables';
import type { Router } from 'vue-router';
import { useRouter } from 'vue-router';
-import { cfgrouter } from '@src/router/route-config';
+import { cfgrouter } from '@/router/route-config';
import { Api } from '@api';
import { toolsext } from '@store/Modules/toolsext';
import { costanti } from '@costanti';
import { fieldsTable } from '@store/Modules/fieldsTable';
import { tools } from '@tools';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
import globalroutines from '../globalroutines/index';
import { useCalendarStore } from '@store/CalendarStore';
-import urlBase64ToUint8Array from '@src/js/utility';
-import translate from '@src/globalroutines/util';
+import urlBase64ToUint8Array from '@/js/utility';
+import translate from '@/globalroutines/util';
import { useTodoStore } from '@store/Todos';
import { useMessageStore } from './MessageStore';
import { useNotifStore } from '@store/NotifStore';
import { useCircuitStore } from '@store/CircuitStore';
-import { routesAdmin } from '@src/router/routesAdmin';
-import { routesECommerce } from '@src/router/routesECommerce';
-import { routesAI } from '@src/router/routesAI';
-import LandingFooter from '@src/components/LandingFooter/LandingFooter';
+import { routesAdmin } from '@/router/routesAdmin';
+import { routesECommerce } from '@/router/routesECommerce';
+import { routesAI } from '@/router/routesAI';
+import LandingFooter from '@/components/LandingFooter/LandingFooter';
import { useProducts } from '@store/Products';
import { useCatalogStore } from './CatalogStore';
@@ -812,7 +812,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
subtitle: page.subtitle,
materialIcon: page.icon,
iconsize: page.iconsize,
- component: () => import('@src/root/mypage/mypage.vue'),
+ component: () => import('@/root/mypage/mypage.vue'),
inmenu: page.inmenu,
onlySocioResidente: page.only_residenti,
onlyConsiglio: page.only_consiglio,
@@ -843,7 +843,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
path: '/:catchAll(.*)*',
materialIcon: 'fas fa-calendar-plus',
name: 'otherpages.error404def',
- component: () => import('@src/root/My404page/My404page.vue'),
+ component: () => import('@/root/My404page/My404page.vue'),
inmenu: false,
infooter: false,
};
@@ -854,7 +854,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
path: '/sito_offline',
materialIcon: 'home',
name: 'otherpages.sito_offline',
- component: () => import('@src/rootgen/sito_offline/sito_offline.vue'),
+ component: () => import('@/rootgen/sito_offline/sito_offline.vue'),
inmenu: false,
infooter: false,
};
@@ -2329,7 +2329,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
// NUOVI METODI PER SYNC
// ============================================
async loadSyncTablesFromCache() {
- const SyncService = (await import('@src/services/SyncService')).default;
+ const SyncService = (await import('@/services/SyncService')).default;
// Carica da cache locale (veloce, mostra subito)
this.resps = (await SyncService.loadFromCache('resps')) || [];
@@ -2349,7 +2349,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
},
async syncTablesInBackground(syncTables: any) {
- const SyncService = (await import('@src/services/SyncService')).default;
+ const SyncService = (await import('@/services/SyncService')).default;
const idapp = tools.getEnv('VITE_APP_ID');
console.log('🔄 Sync in background:', syncTables);
diff --git a/src/stores/useInvitaAmicoStore.ts b/src/stores/useInvitaAmicoStore.ts
index 967ed531..f449410a 100644
--- a/src/stores/useInvitaAmicoStore.ts
+++ b/src/stores/useInvitaAmicoStore.ts
@@ -11,7 +11,7 @@ import type {
import { useUserStore } from '../store/index.js';
import { Api } from '../store/Api/index.js';
import { tools } from '@tools';
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
/**
* Store Pinia per la gestione degli inviti amici
diff --git a/src/validation/complexity.ts b/src/validation/complexity.ts
index 6ea902f5..2ac9c6d2 100755
--- a/src/validation/complexity.ts
+++ b/src/validation/complexity.ts
@@ -1,4 +1,4 @@
-import { Patterns } from '@src/common'
+import { Patterns } from '@/common'
import { tools } from '../store/Modules/tools'
export function complexity(password: string) {
diff --git a/src/views/admin/TableOnlyView/tableOnlyView.ts b/src/views/admin/TableOnlyView/tableOnlyView.ts
index 52cab5ef..1f995c60 100755
--- a/src/views/admin/TableOnlyView/tableOnlyView.ts
+++ b/src/views/admin/TableOnlyView/tableOnlyView.ts
@@ -1,5 +1,5 @@
import { defineComponent, onMounted, ref } from 'vue'
-import { CTitleBanner } from '@src/components/CTitleBanner'
+import { CTitleBanner } from '@/components/CTitleBanner'
import { useGlobalStore } from '@store/globalStore'
interface IPagination {
diff --git a/src/views/admin/dbop/dbop.ts b/src/views/admin/dbop/dbop.ts
index 885a8552..40e66655 100755
--- a/src/views/admin/dbop/dbop.ts
+++ b/src/views/admin/dbop/dbop.ts
@@ -10,8 +10,8 @@ import { useGlobalStore } from '@store/globalStore'
import { useCircuitStore } from '@store/CircuitStore'
import { tools } from '@tools'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-import type { IOptQueryGM } from '@src/model'
+import { shared_consts } from '@/common/shared_vuejs'
+import type { IOptQueryGM } from '@/model'
export default defineComponent({
name: 'Dbop',
diff --git a/src/views/admin/dbopmacro/dbopmacro.ts b/src/views/admin/dbopmacro/dbopmacro.ts
index 469d3d14..c64386b1 100755
--- a/src/views/admin/dbopmacro/dbopmacro.ts
+++ b/src/views/admin/dbopmacro/dbopmacro.ts
@@ -10,8 +10,8 @@ import { useGlobalStore } from '@store/globalStore'
import { useCircuitStore } from '@store/CircuitStore'
import { tools } from '@tools'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-import type { IOptQueryGM } from '@src/model'
+import { shared_consts } from '@/common/shared_vuejs'
+import type { IOptQueryGM } from '@/model'
export default defineComponent({
name: 'dbopmacro',
diff --git a/src/views/admin/extralist/extralist.ts b/src/views/admin/extralist/extralist.ts
index 92ae2ab3..99442407 100755
--- a/src/views/admin/extralist/extralist.ts
+++ b/src/views/admin/extralist/extralist.ts
@@ -1,6 +1,6 @@
import { defineComponent, PropType, ref } from 'vue'
import { useQuasar } from 'quasar'
-import { CTitleBanner } from '@src/components/CTitleBanner'
+import { CTitleBanner } from '@/components/CTitleBanner'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
import { tools } from '@tools'
diff --git a/src/views/admin/gestoreordini/gestoreordini.ts b/src/views/admin/gestoreordini/gestoreordini.ts
index ddc15f2a..ebfa861c 100755
--- a/src/views/admin/gestoreordini/gestoreordini.ts
+++ b/src/views/admin/gestoreordini/gestoreordini.ts
@@ -8,15 +8,15 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-// import MixinBase from '@src/mixins/mixin-base'
+import { shared_consts } from '@/common/shared_vuejs'
+// import MixinBase from '@/mixins/mixin-base'
import { serv_constants } from '@store/Modules/serv_constants'
import { fieldsTable } from '@store/Modules/fieldsTable'
import { CSingleCart } from '../../../components/CSingleCart'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { ICart, IOrder, IOrderCart } from '@src/model'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { ICart, IOrder, IOrderCart } from '@/model'
export default defineComponent({
name: 'gestoreordini',
diff --git a/src/views/admin/install_site/install_site.ts b/src/views/admin/install_site/install_site.ts
index 6c676587..ac5fb46e 100755
--- a/src/views/admin/install_site/install_site.ts
+++ b/src/views/admin/install_site/install_site.ts
@@ -7,7 +7,7 @@ import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { useRouter } from 'vue-router'
import useVuelidate from '@vuelidate/core'
-import { validations } from '@src/views/admin/install_site/install_site-validate'
+import { validations } from '@/views/admin/install_site/install_site-validate'
import { tools } from '@tools'
export default defineComponent({
diff --git a/src/views/admin/installaApp/installaApp.ts b/src/views/admin/installaApp/installaApp.ts
index 80f097ab..36958273 100755
--- a/src/views/admin/installaApp/installaApp.ts
+++ b/src/views/admin/installaApp/installaApp.ts
@@ -5,10 +5,10 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CCheckAppRunning } from '@src/components/CCheckAppRunning'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CCheckAppRunning } from '@/components/CCheckAppRunning'
export default defineComponent({
name: 'installaApp',
diff --git a/src/views/admin/server/server.ts b/src/views/admin/server/server.ts
index 452a93c3..aba848d5 100755
--- a/src/views/admin/server/server.ts
+++ b/src/views/admin/server/server.ts
@@ -10,7 +10,7 @@ import { useGlobalStore } from '@store/globalStore'
import { useCircuitStore } from '@store/CircuitStore'
import { tools } from '@tools'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
diff --git a/src/views/admin/servermysql/servermysql.ts b/src/views/admin/servermysql/servermysql.ts
index def63dec..b03f23b7 100755
--- a/src/views/admin/servermysql/servermysql.ts
+++ b/src/views/admin/servermysql/servermysql.ts
@@ -10,7 +10,7 @@ import { useGlobalStore } from '@store/globalStore'
import { useCircuitStore } from '@store/CircuitStore'
import { tools } from '@tools'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
diff --git a/src/views/ecommerce/cartList/cartList.ts b/src/views/ecommerce/cartList/cartList.ts
index f6ea6c45..9f7e1a90 100755
--- a/src/views/ecommerce/cartList/cartList.ts
+++ b/src/views/ecommerce/cartList/cartList.ts
@@ -9,7 +9,7 @@ import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { CProductCard } from '@src/components/CProductCard'
+import { CProductCard } from '@/components/CProductCard'
export default defineComponent({
name: 'CartList',
diff --git a/src/views/ecommerce/cash/cash.ts b/src/views/ecommerce/cash/cash.ts
index 103c5cc3..ffdb7339 100755
--- a/src/views/ecommerce/cash/cash.ts
+++ b/src/views/ecommerce/cash/cash.ts
@@ -9,10 +9,10 @@ import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { CProductCard } from '@src/components/CProductCard'
-import { CSelectUserActive } from '@src/components/CSelectUserActive'
-import type { IProduct } from '@src/model'
+import { shared_consts } from '@/common/shared_vuejs'
+import { CProductCard } from '@/components/CProductCard'
+import { CSelectUserActive } from '@/components/CSelectUserActive'
+import type { IProduct } from '@/model'
export default defineComponent({
diff --git a/src/views/ecommerce/catalogo/catalogo.ts b/src/views/ecommerce/catalogo/catalogo.ts
index 86c2c3fb..4c9777eb 100755
--- a/src/views/ecommerce/catalogo/catalogo.ts
+++ b/src/views/ecommerce/catalogo/catalogo.ts
@@ -19,18 +19,18 @@ import { toolsext } from '@store/Modules/toolsext';
import { useQuasar } from 'quasar';
import { costanti } from '@costanti';
-import { shared_consts } from '@src/common/shared_vuejs';
-import { CProductCard } from '@src/components/CProductCard';
+import { shared_consts } from '@/common/shared_vuejs';
+import { CProductCard } from '@/components/CProductCard';
-import { CMyDialog } from '@src/components/CMyDialog';
-import { CTitleBanner } from '@src/components/CTitleBanner';
-import { CMySelect } from '@src/components/CMySelect';
-import { CBorders } from '@src/components/CBorders';
-import { CMyValueDb } from '@src/components/CMyValueDb';
-import { CProductTable } from '@src/components/CProductTable';
-import { CSearchProduct } from '@src/components/CSearchProduct';
-import { CContainerCatalogoCard } from '@src/components/CContainerCatalogoCard';
-import { CSelectUserActive } from '@src/components/CSelectUserActive';
+import { CMyDialog } from '@/components/CMyDialog';
+import { CTitleBanner } from '@/components/CTitleBanner';
+import { CMySelect } from '@/components/CMySelect';
+import { CBorders } from '@/components/CBorders';
+import { CMyValueDb } from '@/components/CMyValueDb';
+import { CProductTable } from '@/components/CProductTable';
+import { CSearchProduct } from '@/components/CSearchProduct';
+import { CContainerCatalogoCard } from '@/components/CContainerCatalogoCard';
+import { CSelectUserActive } from '@/components/CSelectUserActive';
import type {
IOptCatalogo,
@@ -51,7 +51,7 @@ import type {
import { IMyPage } from 'model';
import { fieldsTable } from '@store/Modules/fieldsTable';
-import { useCatalogStore } from '@src/store/CatalogStore';
+import { useCatalogStore } from '@/store/CatalogStore';
export default defineComponent({
name: 'Catalogo',
diff --git a/src/views/ecommerce/catalogoInfo/catalogoInfo.ts b/src/views/ecommerce/catalogoInfo/catalogoInfo.ts
index fc9ba091..637cad43 100755
--- a/src/views/ecommerce/catalogoInfo/catalogoInfo.ts
+++ b/src/views/ecommerce/catalogoInfo/catalogoInfo.ts
@@ -9,9 +9,9 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-// import MixinBase from '@src/mixins/mixin-base'
-import { CCatalogoCard } from '@src/components/CCatalogoCard'
+import { shared_consts } from '@/common/shared_vuejs'
+// import MixinBase from '@/mixins/mixin-base'
+import { CCatalogoCard } from '@/components/CCatalogoCard'
export default defineComponent({
diff --git a/src/views/ecommerce/checkOut/checkOut.ts b/src/views/ecommerce/checkOut/checkOut.ts
index ae55eb14..da0bac3c 100755
--- a/src/views/ecommerce/checkOut/checkOut.ts
+++ b/src/views/ecommerce/checkOut/checkOut.ts
@@ -8,13 +8,13 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { ICart, IOrder, IOrderCart, IProduct, IShareWithUs } from '@src/model/Products'
+import { ICart, IOrder, IOrderCart, IProduct, IShareWithUs } from '@/model/Products'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
import { CSingleCart } from '../../../components/CSingleCart'
import { CCart } from '../../../components/CCart'
-import { CTitleBanner } from '@src/components/CTitleBanner'
+import { CTitleBanner } from '@/components/CTitleBanner'
export default defineComponent({
name: 'checkOut',
diff --git a/src/views/ecommerce/orderInfo/orderInfo.ts b/src/views/ecommerce/orderInfo/orderInfo.ts
index 0dc5a7d5..ce430920 100755
--- a/src/views/ecommerce/orderInfo/orderInfo.ts
+++ b/src/views/ecommerce/orderInfo/orderInfo.ts
@@ -8,8 +8,8 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar, exportFile } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-// import MixinBase from '@src/mixins/mixin-base'
+import { shared_consts } from '@/common/shared_vuejs'
+// import MixinBase from '@/mixins/mixin-base'
import { serv_constants } from '@store/Modules/serv_constants'
import { fieldsTable } from '@store/Modules/fieldsTable'
import { CSingleCart } from '../../../components/CSingleCart'
@@ -17,8 +17,8 @@ import { CMyDialog } from '../../../components/CMyDialog'
import { COrdersCart } from '../../../components/COrdersCart'
import { CTitleBanner } from '../../../components/CTitleBanner'
import { CMyFieldDb } from '../../../components/CMyFieldDb'
-import type { ISingleProductOrdered } from '@src/model'
-import type { IOrderCart } from '@src/model'
+import type { ISingleProductOrdered } from '@/model'
+import type { IOrderCart } from '@/model'
export default defineComponent({
name: 'OrderInfo',
diff --git a/src/views/ecommerce/orderscart/orderscart.ts b/src/views/ecommerce/orderscart/orderscart.ts
index 4b48f260..5f0c1e51 100755
--- a/src/views/ecommerce/orderscart/orderscart.ts
+++ b/src/views/ecommerce/orderscart/orderscart.ts
@@ -9,10 +9,10 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-// import MixinBase from '@src/mixins/mixin-base'
-import { CProductCard } from '@src/components/CProductCard'
-import { COrdersCart } from '@src/components/COrdersCart'
+import { shared_consts } from '@/common/shared_vuejs'
+// import MixinBase from '@/mixins/mixin-base'
+import { CProductCard } from '@/components/CProductCard'
+import { COrdersCart } from '@/components/COrdersCart'
export default defineComponent({
diff --git a/src/views/ecommerce/productView/productView.ts b/src/views/ecommerce/productView/productView.ts
index 2cb03d0f..8b5e24dc 100755
--- a/src/views/ecommerce/productView/productView.ts
+++ b/src/views/ecommerce/productView/productView.ts
@@ -9,9 +9,9 @@ import { useI18n } from 'vue-i18n'
import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-// import MixinBase from '@src/mixins/mixin-base'
-import { CProductCard } from '@src/components/CProductCard'
+import { shared_consts } from '@/common/shared_vuejs'
+// import MixinBase from '@/mixins/mixin-base'
+import { CProductCard } from '@/components/CProductCard'
export default defineComponent({
diff --git a/src/views/ecommerce/productsList/productsList.ts b/src/views/ecommerce/productsList/productsList.ts
index 6b597419..3a215a13 100755
--- a/src/views/ecommerce/productsList/productsList.ts
+++ b/src/views/ecommerce/productsList/productsList.ts
@@ -9,10 +9,10 @@ import { toolsext } from '@store/Modules/toolsext';
import { useQuasar } from 'quasar';
import { costanti } from '@costanti';
-import { shared_consts } from '@src/common/shared_vuejs';
-import { CProductCard } from '@src/components/CProductCard';
-import { CSelectUserActive } from '@src/components/CSelectUserActive';
-import type { IProduct } from '@src/model';
+import { shared_consts } from '@/common/shared_vuejs';
+import { CProductCard } from '@/components/CProductCard';
+import { CSelectUserActive } from '@/components/CSelectUserActive';
+import type { IProduct } from '@/model';
export default defineComponent({
name: 'ProductsList',
diff --git a/src/views/ecommerce/raccoltacataloghi/raccoltacataloghi.ts b/src/views/ecommerce/raccoltacataloghi/raccoltacataloghi.ts
index 3d1de208..afc8c95a 100755
--- a/src/views/ecommerce/raccoltacataloghi/raccoltacataloghi.ts
+++ b/src/views/ecommerce/raccoltacataloghi/raccoltacataloghi.ts
@@ -18,16 +18,16 @@ import { toolsext } from '@store/Modules/toolsext';
import { useQuasar } from 'quasar';
import { costanti } from '@costanti';
-import { shared_consts } from '@src/common/shared_vuejs';
-import { CProductCard } from '@src/components/CProductCard';
+import { shared_consts } from '@/common/shared_vuejs';
+import { CProductCard } from '@/components/CProductCard';
-import { CMyDialog } from '@src/components/CMyDialog';
-import { CMySelect } from '@src/components/CMySelect';
-import { CMyValueDb } from '@src/components/CMyValueDb';
-import { CProductTable } from '@src/components/CProductTable';
-import { CSearchProduct } from '@src/components/CSearchProduct';
-import { CContainerCatalogoCard } from '@src/components/CContainerCatalogoCard';
-import { CSelectUserActive } from '@src/components/CSelectUserActive';
+import { CMyDialog } from '@/components/CMyDialog';
+import { CMySelect } from '@/components/CMySelect';
+import { CMyValueDb } from '@/components/CMyValueDb';
+import { CProductTable } from '@/components/CProductTable';
+import { CSearchProduct } from '@/components/CSearchProduct';
+import { CContainerCatalogoCard } from '@/components/CContainerCatalogoCard';
+import { CSelectUserActive } from '@/components/CSelectUserActive';
import type {
IOptCatalogo,
@@ -47,7 +47,7 @@ import type {
import { IMyPage } from 'model';
import { fieldsTable } from '@store/Modules/fieldsTable';
-import { useCatalogStore } from '@src/store/CatalogStore';
+import { useCatalogStore } from '@/store/CatalogStore';
export default defineComponent({
name: 'RaccoltaCataloghi',
diff --git a/src/views/login/iscrizioneconacreis/iscrizioneconacreis.ts b/src/views/login/iscrizioneconacreis/iscrizioneconacreis.ts
index 6d51a230..b3b5badd 100755
--- a/src/views/login/iscrizioneconacreis/iscrizioneconacreis.ts
+++ b/src/views/login/iscrizioneconacreis/iscrizioneconacreis.ts
@@ -7,7 +7,7 @@ import { useQuasar } from 'quasar'
import { CMyPage } from '../../../components/CMyPage'
import { LandingFooter } from '../../../components/LandingFooter'
import { CTitleBanner } from '../../../components/CTitleBanner'
-import { CSignUpIscrizioneConacreis } from '@src/components/CSignUpIscrizioneConacreis'
+import { CSignUpIscrizioneConacreis } from '@/components/CSignUpIscrizioneConacreis'
export default defineComponent({
name: 'Iscrizioneconacreis',
diff --git a/src/views/login/regok/regok.ts b/src/views/login/regok/regok.ts
index f835f2ef..596ceb2a 100755
--- a/src/views/login/regok/regok.ts
+++ b/src/views/login/regok/regok.ts
@@ -1,8 +1,8 @@
import { defineComponent } from 'vue';
-import { LandingFooter } from '@src/components/LandingFooter';
+import { LandingFooter } from '@/components/LandingFooter';
import { useUserStore } from '@store/UserStore';
-import MixinUsers from '@src/mixins/mixin-users';
+import MixinUsers from '@/mixins/mixin-users';
import { useI18n } from 'vue-i18n';
import { tools } from '@tools';
diff --git a/src/views/login/signin/signin.ts b/src/views/login/signin/signin.ts
index 9f31557c..4c8c7c87 100755
--- a/src/views/login/signin/signin.ts
+++ b/src/views/login/signin/signin.ts
@@ -1,6 +1,6 @@
import { defineComponent } from 'vue'
-import { CSigninNoreg } from '@src/components/CSigninNoreg'
+import { CSigninNoreg } from '@/components/CSigninNoreg'
export default defineComponent({
name: 'Signin',
diff --git a/src/views/login/signin_noreg/signin_noreg.ts b/src/views/login/signin_noreg/signin_noreg.ts
index 96725688..e638261c 100755
--- a/src/views/login/signin_noreg/signin_noreg.ts
+++ b/src/views/login/signin_noreg/signin_noreg.ts
@@ -1,6 +1,6 @@
import { defineComponent } from 'vue'
-import { CSigninNoreg } from '@src/components/CSigninNoreg'
+import { CSigninNoreg } from '@/components/CSigninNoreg'
export default defineComponent({
name: 'SigninNoreg',
diff --git a/src/views/pages/estimate/estimate.ts b/src/views/pages/estimate/estimate.ts
index aad31653..6ad840de 100755
--- a/src/views/pages/estimate/estimate.ts
+++ b/src/views/pages/estimate/estimate.ts
@@ -3,8 +3,8 @@ import { useI18n } from 'vue-i18n'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
import { useQuasar } from 'quasar'
-import type { IEstimate } from '@src/model'
-import { tools } from '@src/store/Modules/tools'
+import type { IEstimate } from '@/model'
+import { tools } from '@/store/Modules/tools'
export default defineComponent({
name: 'EstimateMy',
diff --git a/src/views/projects/proj-list/proj-list.ts.off b/src/views/projects/proj-list/proj-list.ts.off
index 3b85c6a4..df5aca4c 100755
--- a/src/views/projects/proj-list/proj-list.ts.off
+++ b/src/views/projects/proj-list/proj-list.ts.off
@@ -9,7 +9,7 @@ import { SingleProject } from '../../../components/projects/SingleProject/index'
import { CTodo } from '../../../components/todos/CTodo'
import { tools } from '@tools'
-import { toolsext } from '@src/store/Modules/toolsext'
+import { toolsext } from '@/store/Modules/toolsext'
import { lists } from '@store/Modules/lists'
import * as ApiTables from '../../../store/Modules/ApiTables'
@@ -18,16 +18,16 @@ import { CProgress } from '../../../components/CProgress'
import { CDate } from '../../../components/CDate'
import { CMyFieldDb } from '../../../components/CMyFieldDb'
import { CHours } from '../../../components/CHours'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { colTableHours } from '@src/store/Modules/fieldsTable'
-import { costanti } from '@src/store/Modules/costanti'
+import { shared_consts } from '@/common/shared_vuejs'
+import { colTableHours } from '@/store/Modules/fieldsTable'
+import { costanti } from '@/store/Modules/costanti'
import { defineComponent, ref, computed, watch, onMounted, onBeforeUnmount } from 'vue'
import { useI18n } from 'vue-i18n'
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
import { useQuasar } from 'quasar'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { useRoute, useRouter } from 'vue-router'
import { useProjectStore } from '@store/Projects'
import { useTodoStore } from '@store/Todos'
diff --git a/src/views/requestresetpwd/requestresetpwd.ts b/src/views/requestresetpwd/requestresetpwd.ts
index 83c6effa..5c33597c 100755
--- a/src/views/requestresetpwd/requestresetpwd.ts
+++ b/src/views/requestresetpwd/requestresetpwd.ts
@@ -10,7 +10,7 @@ import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
import { useQuasar } from 'quasar'
import useVuelidate from '@vuelidate/core'
-import { validations } from '@src/views/requestresetpwd/request-resetpwd-validate'
+import { validations } from '@/views/requestresetpwd/request-resetpwd-validate'
import { useRouter } from 'vue-router'
diff --git a/src/views/test/test.ts b/src/views/test/test.ts
index 335648d4..3eaddb91 100755
--- a/src/views/test/test.ts
+++ b/src/views/test/test.ts
@@ -1,7 +1,7 @@
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CProfile } from '@src/components/CProfile'
-import { CSkill } from '@src/components/CSkill'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CProfile } from '@/components/CProfile'
+import { CSkill } from '@/components/CSkill'
import { tools } from '@tools'
import { defineComponent, onMounted, ref } from 'vue'
import { useUserStore } from '@store/UserStore'
diff --git a/src/views/todo-list/todo-list.ts.off b/src/views/todo-list/todo-list.ts.off
index f2f492aa..95bb3be8 100755
--- a/src/views/todo-list/todo-list.ts.off
+++ b/src/views/todo-list/todo-list.ts.off
@@ -1,8 +1,8 @@
import Vue from 'vue'
import { Component, Watch } from 'vue-property-decorator'
-import { CTodo } from '@src/components/todos/CTodo'
-import { tools } from '@src/store/Modules/tools'
-import { toolsext } from '@src/store/Modules/toolsext'
+import { CTodo } from '@/components/todos/CTodo'
+import { tools } from '@/store/Modules/tools'
+import { toolsext } from '@/store/Modules/toolsext'
@Component({
components: { CTodo },
diff --git a/src/views/toolsAI/main/main.ts b/src/views/toolsAI/main/main.ts
index e7b1ddb5..1cda775d 100755
--- a/src/views/toolsAI/main/main.ts
+++ b/src/views/toolsAI/main/main.ts
@@ -9,9 +9,9 @@ import { toolsext } from '@store/Modules/toolsext'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { CAITools } from '@src/components/CAITools'
-import type { IProduct } from '@src/model'
+import { shared_consts } from '@/common/shared_vuejs'
+import { CAITools } from '@/components/CAITools'
+import type { IProduct } from '@/model'
export default defineComponent({
name: 'ToolsAIMain',
diff --git a/src/views/user/myactivities/myactivities.ts b/src/views/user/myactivities/myactivities.ts
index ac6101bc..0841e738 100755
--- a/src/views/user/myactivities/myactivities.ts
+++ b/src/views/user/myactivities/myactivities.ts
@@ -1,4 +1,4 @@
-import { CMyActivities } from '@src/components/CMyActivities'
+import { CMyActivities } from '@/components/CMyActivities'
import { tools } from '@tools'
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
diff --git a/src/views/user/mycircuit/mycircuit.ts b/src/views/user/mycircuit/mycircuit.ts
index 1a086812..968695fb 100755
--- a/src/views/user/mycircuit/mycircuit.ts
+++ b/src/views/user/mycircuit/mycircuit.ts
@@ -1,18 +1,18 @@
-import { CGridTableRec } from '@src/components/CGridTableRec';
-import { CMyFriends } from '@src/components/CMyFriends';
-import { CMyUser } from '@src/components/CMyUser';
-import { CTitleBanner } from '@src/components/CTitleBanner';
-import { CProfile } from '@src/components/CProfile';
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged';
-import { CMyFieldRec } from '@src/components/CMyFieldRec';
-import { CCurrencyValue } from '@src/components/CCurrencyValue';
-import { CSaldo } from '@src/components/CSaldo';
-import { CSendCoins } from '@src/components/CSendCoins';
-import { CUserNonVerif } from '@src/components/CUserNonVerif';
-import { CTitleSec } from '@src/components/CTitleSec';
-import { CSkill } from '@src/components/CSkill';
-import { CFinder } from '@src/components/CFinder';
-import { CDateTime } from '@src/components/CDateTime';
+import { CGridTableRec } from '@/components/CGridTableRec';
+import { CMyFriends } from '@/components/CMyFriends';
+import { CMyUser } from '@/components/CMyUser';
+import { CTitleBanner } from '@/components/CTitleBanner';
+import { CProfile } from '@/components/CProfile';
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged';
+import { CMyFieldRec } from '@/components/CMyFieldRec';
+import { CCurrencyValue } from '@/components/CCurrencyValue';
+import { CSaldo } from '@/components/CSaldo';
+import { CSendCoins } from '@/components/CSendCoins';
+import { CUserNonVerif } from '@/components/CUserNonVerif';
+import { CTitleSec } from '@/components/CTitleSec';
+import { CSkill } from '@/components/CSkill';
+import { CFinder } from '@/components/CFinder';
+import { CDateTime } from '@/components/CDateTime';
import { tools } from '@tools';
import { computed, defineComponent, onMounted, ref, watch } from 'vue';
import { useUserStore } from '@store/UserStore';
@@ -21,11 +21,11 @@ import { useGlobalStore } from '@store/globalStore';
import { useI18n } from 'vue-i18n';
import { toolsext } from '@store/Modules/toolsext';
import { useQuasar } from 'quasar';
-import { CNotifAtTop } from '@src/components/CNotifAtTop';
+import { CNotifAtTop } from '@/components/CNotifAtTop';
import { costanti } from '@costanti';
import type { ICity, IFriends, ICircuit, ISearchList, IAccount, IMyGroup } from 'model';
import { IUserFields } from 'model';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
import {
colmyUserPeople,
colmyUserPeopleSaldi,
diff --git a/src/views/user/mycircuit/mycircuit.vue b/src/views/user/mycircuit/mycircuit.vue
index a94313e3..7c0d221e 100755
--- a/src/views/user/mycircuit/mycircuit.vue
+++ b/src/views/user/mycircuit/mycircuit.vue
@@ -556,7 +556,7 @@
>
diff --git a/src/views/user/mycircuits/mycircuits.ts b/src/views/user/mycircuits/mycircuits.ts
index b02b40e2..c38bdc40 100755
--- a/src/views/user/mycircuits/mycircuits.ts
+++ b/src/views/user/mycircuits/mycircuits.ts
@@ -1,8 +1,8 @@
-import { CMyCircuits } from '@src/components/CMyCircuits'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
-import { CFinder } from '@src/components/CFinder'
-import { CGridTableRec } from '@src/components/CGridTableRec'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
+import { CMyCircuits } from '@/components/CMyCircuits'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
+import { CFinder } from '@/components/CFinder'
+import { CGridTableRec } from '@/components/CGridTableRec'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
import { tools } from '@tools'
import { toolsext } from '@store/Modules/toolsext'
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
@@ -12,7 +12,7 @@ import { useGlobalStore } from '@store/globalStore'
import { useI18n } from 'vue-i18n'
import { colmyUserCircuit } from '@store/Modules/fieldsTable'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'mycircuits',
diff --git a/src/views/user/mycircuits/mycircuits.vue b/src/views/user/mycircuits/mycircuits.vue
index fc3c189c..ff1fa18a 100755
--- a/src/views/user/mycircuits/mycircuits.vue
+++ b/src/views/user/mycircuits/mycircuits.vue
@@ -1,16 +1,28 @@
-
+
-
+
-
diff --git a/src/views/user/myfriends/myfriends.ts b/src/views/user/myfriends/myfriends.ts
index bf986360..8db4a28d 100755
--- a/src/views/user/myfriends/myfriends.ts
+++ b/src/views/user/myfriends/myfriends.ts
@@ -1,5 +1,5 @@
-import { CMyFriends } from '@src/components/CMyFriends'
-import { CGridTableRec } from '@src/components/CGridTableRec'
+import { CMyFriends } from '@/components/CMyFriends'
+import { CGridTableRec } from '@/components/CGridTableRec'
import { tools } from '@tools'
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
import { useUserStore } from '@store/UserStore'
@@ -9,7 +9,7 @@ import { useI18n } from 'vue-i18n'
import { colmyUserPeople } from '@store/Modules/fieldsTable'
import type { ISearchList } from 'model'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
import { toolsext } from '@store/Modules/toolsext'
export default defineComponent({
diff --git a/src/views/user/mygroup/mygroup.ts b/src/views/user/mygroup/mygroup.ts
index 2fb8bd6d..61d3b4fd 100755
--- a/src/views/user/mygroup/mygroup.ts
+++ b/src/views/user/mygroup/mygroup.ts
@@ -1,16 +1,16 @@
-import { CGridTableRec } from '@src/components/CGridTableRec';
-import { CMyFriends } from '@src/components/CMyFriends';
-import { CMyUser } from '@src/components/CMyUser';
-import { CNotifAtTop } from '@src/components/CNotifAtTop';
-import { CTitleBanner } from '@src/components/CTitleBanner';
-import { CProfile } from '@src/components/CProfile';
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged';
-import { CMyFieldRec } from '@src/components/CMyFieldRec';
-import { CSkill } from '@src/components/CSkill';
-import { CMyCircuit } from '@src/components/CMyCircuit';
-import { CDateTime } from '@src/components/CDateTime';
-import { CInfoAccount } from '@src/components/CInfoAccount';
-import { CSendCoins } from '@src/components/CSendCoins';
+import { CGridTableRec } from '@/components/CGridTableRec';
+import { CMyFriends } from '@/components/CMyFriends';
+import { CMyUser } from '@/components/CMyUser';
+import { CNotifAtTop } from '@/components/CNotifAtTop';
+import { CTitleBanner } from '@/components/CTitleBanner';
+import { CProfile } from '@/components/CProfile';
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged';
+import { CMyFieldRec } from '@/components/CMyFieldRec';
+import { CSkill } from '@/components/CSkill';
+import { CMyCircuit } from '@/components/CMyCircuit';
+import { CDateTime } from '@/components/CDateTime';
+import { CInfoAccount } from '@/components/CInfoAccount';
+import { CSendCoins } from '@/components/CSendCoins';
import { tools } from '@tools';
import { computed, defineComponent, onMounted, ref, watch } from 'vue';
import { useUserStore } from '@store/UserStore';
@@ -22,7 +22,7 @@ import { useQuasar } from 'quasar';
import { costanti } from '@costanti';
import type { ICircuit, ICity, IFriends, IMyCircuit, IMyGroup, ISearchList } from 'model';
import { IUserFields } from 'model';
-import { shared_consts } from '@src/common/shared_vuejs';
+import { shared_consts } from '@/common/shared_vuejs';
import {
colmyUserPeople,
colmyUserGroup,
@@ -30,7 +30,7 @@ import {
colmyMovement,
} from '@store/Modules/fieldsTable';
import { useNotifStore } from '@store/NotifStore';
-import { useCircuitStore } from '@src/store/CircuitStore';
+import { useCircuitStore } from '@/store/CircuitStore';
export default defineComponent({
name: 'mygroup',
diff --git a/src/views/user/mygroups/mygroups.ts b/src/views/user/mygroups/mygroups.ts
index 2012dd6a..904e1cef 100755
--- a/src/views/user/mygroups/mygroups.ts
+++ b/src/views/user/mygroups/mygroups.ts
@@ -1,18 +1,18 @@
-import { CMyGroups } from '@src/components/CMyGroups'
-import { CFinder } from '@src/components/CFinder'
-import { CGridTableRec } from '@src/components/CGridTableRec'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
+import { CMyGroups } from '@/components/CMyGroups'
+import { CFinder } from '@/components/CFinder'
+import { CGridTableRec } from '@/components/CGridTableRec'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
import { tools } from '@tools'
import { toolsext } from '@store/Modules/toolsext'
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
import { useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { useGlobalStore } from '@store/globalStore'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
import { useI18n } from 'vue-i18n'
import { colmyUserGroup } from '@store/Modules/fieldsTable'
import { costanti } from '@costanti'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'mygroups',
diff --git a/src/views/user/mypagebacheca/mypagebacheca.ts b/src/views/user/mypagebacheca/mypagebacheca.ts
index 69b8c662..82adaf15 100755
--- a/src/views/user/mypagebacheca/mypagebacheca.ts
+++ b/src/views/user/mypagebacheca/mypagebacheca.ts
@@ -3,11 +3,11 @@ import { useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
-import { CMyCardPopup } from '@src/components/CMyCardPopup'
-import { CMyCardService } from '@src/components/CMyCardService'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { CMyPage } from '@src/components/CMyPage'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CMyCardPopup } from '@/components/CMyCardPopup'
+import { CMyCardService } from '@/components/CMyCardService'
+import { shared_consts } from '@/common/shared_vuejs'
+import { CMyPage } from '@/components/CMyPage'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
import { toolsext } from '@store/Modules/toolsext'
import { tools } from '@tools'
diff --git a/src/views/user/mypagegood/mypagegood.ts b/src/views/user/mypagegood/mypagegood.ts
index d1853796..cd0f8579 100755
--- a/src/views/user/mypagegood/mypagegood.ts
+++ b/src/views/user/mypagegood/mypagegood.ts
@@ -3,12 +3,12 @@ import { useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
-import { CMyCardService } from '@src/components/CMyCardService'
-import { CMyPage } from '@src/components/CMyPage'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CMyCardService } from '@/components/CMyCardService'
+import { CMyPage } from '@/components/CMyPage'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
import { toolsext } from '@store/Modules/toolsext'
import { tools } from '@tools'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
diff --git a/src/views/user/mypagehosp/mypagehosp.ts b/src/views/user/mypagehosp/mypagehosp.ts
index 3b6a8e24..168e0aa9 100755
--- a/src/views/user/mypagehosp/mypagehosp.ts
+++ b/src/views/user/mypagehosp/mypagehosp.ts
@@ -3,12 +3,12 @@ import { useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
-import { CMyCardService } from '@src/components/CMyCardService'
-import { CMyPage } from '@src/components/CMyPage'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CMyCardService } from '@/components/CMyCardService'
+import { CMyPage } from '@/components/CMyPage'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
import { toolsext } from '@store/Modules/toolsext'
import { tools } from '@tools'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'mypagehosp',
diff --git a/src/views/user/myprofile/myprofile.scss b/src/views/user/myprofile/myprofile.scss
index dc3020ad..ab12e0ae 100755
--- a/src/views/user/myprofile/myprofile.scss
+++ b/src/views/user/myprofile/myprofile.scss
@@ -20,3 +20,7 @@
box-shadow: 0 0 0 1px #4A89F3;
text-shadow: .05rem .05rem .15rem #878787;
}
+
+.pag-profilo{
+ background-color: #e9e8e8;
+}
\ No newline at end of file
diff --git a/src/views/user/myprofile/myprofile.ts b/src/views/user/myprofile/myprofile.ts
index 5de9e0ae..d9a34538 100755
--- a/src/views/user/myprofile/myprofile.ts
+++ b/src/views/user/myprofile/myprofile.ts
@@ -1,22 +1,23 @@
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { CMyFieldRec } from '@src/components/CMyFieldRec'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CProfile } from '@src/components/CProfile'
-import { CLabel } from '@src/components/CLabel'
-import { CCopyBtn } from '@src/components/CCopyBtn'
-import { CSkill } from '@src/components/CSkill'
-import { CDateTime } from '@src/components/CDateTime'
-import { CMyGroup } from '@src/components/CMyGroup'
-import { CUserNote } from '@src/components/CUserNote'
-import { CMyCircuit } from '@src/components/CMyCircuit'
-import { CNotifAtTop } from '@src/components/CNotifAtTop'
-import { CMyActivities } from '@src/components/CMyActivities'
-import { CSendCoins } from '@src/components/CSendCoins'
-import { CContactUser } from '@src/components/CContactUser'
-import { CTimeAgo } from '@src/components/CTimeAgo'
-import { CMyUser } from '@src/components/CMyUser'
-import { CUserNonVerif } from '@src/components/CUserNonVerif'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { CMyFieldRec } from '@/components/CMyFieldRec'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CProfile } from '@/components/CProfile'
+import { CLabel } from '@/components/CLabel'
+import { CCopyBtn } from '@/components/CCopyBtn'
+import { CSkill } from '@/components/CSkill'
+import { CDateTime } from '@/components/CDateTime'
+import { CMyGroup } from '@/components/CMyGroup'
+import { CUserNote } from '@/components/CUserNote'
+import { CMyCircuit } from '@/components/CMyCircuit'
+import { CNotifAtTop } from '@/components/CNotifAtTop'
+import { CMyActivities } from '@/components/CMyActivities'
+import { CSendCoins } from '@/components/CSendCoins'
+import { CContactUser } from '@/components/CContactUser'
+import { CTimeAgo } from '@/components/CTimeAgo'
+import { CMyUser } from '@/components/CMyUser'
+import { CUserNonVerif } from '@/components/CUserNonVerif'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
+import CPageUserNotFound from '@/components/CPageUserNotFound/CPageUserNotFound.vue'
import { tools } from '@tools'
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
import { useUserStore } from '@store/UserStore'
@@ -28,11 +29,11 @@ import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
import type { IMyCircuit, IMyGroup, IUserFields } from 'model';
import { ICircuit, IFriends } from 'model'
-import { shared_consts } from '@src/common/shared_vuejs'
-import { static_data } from '@src/db/static_data'
+import { shared_consts } from '@/common/shared_vuejs'
+import { static_data } from '@/db/static_data'
import { fieldsTable } from '@store/Modules/fieldsTable'
import { useNotifStore } from '@store/NotifStore'
-import MixinUsers from '@src/mixins/mixin-users'
+import MixinUsers from '@/mixins/mixin-users'
export default defineComponent({
@@ -40,7 +41,7 @@ export default defineComponent({
components: {
CProfile, CTitleBanner, CMyFieldDb, CSkill, CDateTime, CCopyBtn, CUserNonVerif, CMyFieldRec, CMyUser,
CMyGroup, CLabel, CMyCircuit, CSendCoins, CNotifAtTop,
- CCheckIfIsLogged, CTimeAgo, CContactUser, CMyActivities, CUserNote,
+ CCheckIfIsLogged, CTimeAgo, CContactUser, CMyActivities, CUserNote, CPageUserNotFound,
},
props: {},
setup() {
diff --git a/src/views/user/myprofile/myprofile.vue b/src/views/user/myprofile/myprofile.vue
index 70337218..96d47193 100755
--- a/src/views/user/myprofile/myprofile.vue
+++ b/src/views/user/myprofile/myprofile.vue
@@ -1,5 +1,5 @@
-
+
getImgUser(): {{ getImgUser() }}
Logged: {{ tools.isLogged() }} -
UserOk: {{ tools.isUserOk() }} -
@@ -138,9 +138,9 @@
-
+
-
+
-
Utente {{ username }} non trovato
- ({{ filtroutente }})
+
diff --git a/src/views/user/myservice/myservice.ts b/src/views/user/myservice/myservice.ts
index 28c5ce9a..7313574b 100755
--- a/src/views/user/myservice/myservice.ts
+++ b/src/views/user/myservice/myservice.ts
@@ -1,11 +1,11 @@
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CProfile } from '@src/components/CProfile'
-import { CDateTime } from '@src/components/CDateTime'
-import { CMyPage } from '@src/components/CMyPage'
-import { CMyCardPopup } from '@src/components/CMyCardPopup'
-import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
-import { CMyCardService } from '@src/components/CMyCardService'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CProfile } from '@/components/CProfile'
+import { CDateTime } from '@/components/CDateTime'
+import { CMyPage } from '@/components/CMyPage'
+import { CMyCardPopup } from '@/components/CMyCardPopup'
+import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
+import { CMyCardService } from '@/components/CMyCardService'
import { tools } from '@tools'
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
import { useUserStore } from '@store/UserStore'
@@ -17,7 +17,7 @@ import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
import type { IMySkill } from 'model';
import { IUserFields } from 'model'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
import { fieldsTable } from '@store/Modules/fieldsTable'
import { colCitys } from '@store/Modules/fieldsTable'
diff --git a/src/views/user/profile/profile.ts b/src/views/user/profile/profile.ts
index d911ff90..852e9352 100755
--- a/src/views/user/profile/profile.ts
+++ b/src/views/user/profile/profile.ts
@@ -1,6 +1,6 @@
-import { CMyFieldDb } from '@src/components/CMyFieldDb'
-import { CTitleBanner } from '@src/components/CTitleBanner'
-import { CProfile } from '@src/components/CProfile'
+import { CMyFieldDb } from '@/components/CMyFieldDb'
+import { CTitleBanner } from '@/components/CTitleBanner'
+import { CProfile } from '@/components/CProfile'
import { tools } from '@tools'
import { defineComponent } from 'vue'
import { useUserStore } from '@store/UserStore'
diff --git a/src/views/user/usernotifs/usernotifs.ts b/src/views/user/usernotifs/usernotifs.ts
index d6a65e36..dbeb4446 100755
--- a/src/views/user/usernotifs/usernotifs.ts
+++ b/src/views/user/usernotifs/usernotifs.ts
@@ -3,12 +3,12 @@ import { useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
-import { CMyCardPopup } from '@src/components/CMyCardPopup'
-import { CMyPage } from '@src/components/CMyPage'
-import { CNotifSettings } from '@src/components/CNotifSettings'
+import { CMyCardPopup } from '@/components/CMyCardPopup'
+import { CMyPage } from '@/components/CMyPage'
+import { CNotifSettings } from '@/components/CNotifSettings'
import { toolsext } from '@store/Modules/toolsext'
import { tools } from '@tools'
-import { shared_consts } from '@src/common/shared_vuejs'
+import { shared_consts } from '@/common/shared_vuejs'
export default defineComponent({
name: 'usernotifs',
diff --git a/tsconfig.json b/tsconfig.json
index 288a2ab7..2a642b05 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -79,7 +79,7 @@
"@views": [
"src/views/*"
],
- "@src/*": [
+ "@/*": [
"src/*"
],
"@css": [
diff --git a/yarn.lock b/yarn.lock
index 180631b1..bf2431d6 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -28,7 +28,7 @@
js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/code-frame@^7.12.13", "@babel/code-frame@^7.27.1":
+"@babel/code-frame@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
@@ -278,6 +278,11 @@
resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz"
integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
+"@babel/helper-validator-identifier@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
+ integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
+
"@babel/helper-validator-option@^7.25.9":
version "7.25.9"
resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz"
@@ -327,12 +332,12 @@
dependencies:
"@babel/types" "^7.27.3"
-"@babel/parser@^7.28.3":
- version "7.28.3"
- resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.28.3.tgz"
- integrity sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==
+"@babel/parser@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
+ integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==
dependencies:
- "@babel/types" "^7.28.2"
+ "@babel/types" "^7.28.5"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9":
version "7.25.9"
@@ -983,7 +988,7 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.21.0", "@babel/runtime@^7.26.0", "@babel/runtime@^7.8.4":
+"@babel/runtime@^7.11.2", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4":
version "7.26.9"
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz"
integrity sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==
@@ -1050,13 +1055,13 @@
"@babel/helper-string-parser" "^7.27.1"
"@babel/helper-validator-identifier" "^7.27.1"
-"@babel/types@^7.28.2":
- version "7.28.2"
- resolved "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz"
- integrity sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==
+"@babel/types@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
+ integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==
dependencies:
"@babel/helper-string-parser" "^7.27.1"
- "@babel/helper-validator-identifier" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.28.5"
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
@@ -1068,10 +1073,10 @@
resolved "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.2.3.tgz"
integrity sha512-tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg==
-"@cubejs-client/core@^1.3.21":
- version "1.3.62"
- resolved "https://registry.yarnpkg.com/@cubejs-client/core/-/core-1.3.62.tgz#fed97251b64c13ad8a07244152cceec5980770e5"
- integrity sha512-WouLLlo1LGy/SdBelUrq1FYjIIXxCDRODmmtsxnKDDSem/j3b72lkf86cOxCwWTrTOoqFaEaSnk6hCUfnq/B1A==
+"@cubejs-client/core@^1.5.11":
+ version "1.5.11"
+ resolved "https://registry.yarnpkg.com/@cubejs-client/core/-/core-1.5.11.tgz#fcba254d307cf17e129afb2c2a04fa35f30f681e"
+ integrity sha512-jtU3ZUlDgIlryIVuG0a5J/+YF1N3OKA2yTEU7r0XEK1jZeF7aaYAaWQYfgotgVsqd7678xjjZRjrFzSxOxbr9g==
dependencies:
core-js "^3.6.5"
cross-fetch "^3.0.2"
@@ -1122,126 +1127,256 @@
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz#499600c5e1757a524990d5d92601f0ac3ce87f64"
integrity sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==
+"@esbuild/aix-ppc64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz#80fcbe36130e58b7670511e888b8e88a259ed76c"
+ integrity sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==
+
"@esbuild/android-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz#b9b8231561a1dfb94eb31f4ee056b92a985c324f"
integrity sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==
+"@esbuild/android-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz#8aa4965f8d0a7982dc21734bf6601323a66da752"
+ integrity sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==
+
"@esbuild/android-arm@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.0.tgz#ca6e7888942505f13e88ac9f5f7d2a72f9facd2b"
integrity sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==
+"@esbuild/android-arm@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz#300712101f7f50f1d2627a162e6e09b109b6767a"
+ integrity sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==
+
"@esbuild/android-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.0.tgz#e765ea753bac442dfc9cb53652ce8bd39d33e163"
integrity sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==
+"@esbuild/android-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz#87dfb27161202bdc958ef48bb61b09c758faee16"
+ integrity sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==
+
"@esbuild/darwin-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz"
integrity sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==
+"@esbuild/darwin-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz#79197898ec1ff745d21c071e1c7cc3c802f0c1fd"
+ integrity sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==
+
"@esbuild/darwin-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz#91979d98d30ba6e7d69b22c617cc82bdad60e47a"
integrity sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==
+"@esbuild/darwin-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz#146400a8562133f45c4d2eadcf37ddd09718079e"
+ integrity sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==
+
"@esbuild/freebsd-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz#b97e97073310736b430a07b099d837084b85e9ce"
integrity sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==
+"@esbuild/freebsd-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz#1c5f9ba7206e158fd2b24c59fa2d2c8bb47ca0fe"
+ integrity sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==
+
"@esbuild/freebsd-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz#f3b694d0da61d9910ec7deff794d444cfbf3b6e7"
integrity sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==
+"@esbuild/freebsd-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz#ea631f4a36beaac4b9279fa0fcc6ca29eaeeb2b3"
+ integrity sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==
+
"@esbuild/linux-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz#f921f699f162f332036d5657cad9036f7a993f73"
integrity sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==
+"@esbuild/linux-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz#e1066bce58394f1b1141deec8557a5f0a22f5977"
+ integrity sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==
+
"@esbuild/linux-arm@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz#cc49305b3c6da317c900688995a4050e6cc91ca3"
integrity sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==
+"@esbuild/linux-arm@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz#452cd66b20932d08bdc53a8b61c0e30baf4348b9"
+ integrity sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==
+
"@esbuild/linux-ia32@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz#3e0736fcfab16cff042dec806247e2c76e109e19"
integrity sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==
+"@esbuild/linux-ia32@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz#b24f8acc45bcf54192c7f2f3be1b53e6551eafe0"
+ integrity sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==
+
"@esbuild/linux-loong64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz#ea2bf730883cddb9dfb85124232b5a875b8020c7"
integrity sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==
+"@esbuild/linux-loong64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz#f9cfffa7fc8322571fbc4c8b3268caf15bd81ad0"
+ integrity sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==
+
"@esbuild/linux-mips64el@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz#4cababb14eede09248980a2d2d8b966464294ff1"
integrity sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==
+"@esbuild/linux-mips64el@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz#575a14bd74644ffab891adc7d7e60d275296f2cd"
+ integrity sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==
+
"@esbuild/linux-ppc64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz#8860a4609914c065373a77242e985179658e1951"
integrity sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==
+"@esbuild/linux-ppc64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz#75b99c70a95fbd5f7739d7692befe60601591869"
+ integrity sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==
+
"@esbuild/linux-riscv64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz#baf26e20bb2d38cfb86ee282dff840c04f4ed987"
integrity sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==
+"@esbuild/linux-riscv64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz#2e3259440321a44e79ddf7535c325057da875cd6"
+ integrity sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==
+
"@esbuild/linux-s390x@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz#8323afc0d6cb1b6dc6e9fd21efd9e1542c3640a4"
integrity sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==
+"@esbuild/linux-s390x@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz#17676cabbfe5928da5b2a0d6df5d58cd08db2663"
+ integrity sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==
+
"@esbuild/linux-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz#08fcf60cb400ed2382e9f8e0f5590bac8810469a"
integrity sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==
+"@esbuild/linux-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz#0583775685ca82066d04c3507f09524d3cd7a306"
+ integrity sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==
+
"@esbuild/netbsd-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz#935c6c74e20f7224918fbe2e6c6fe865b6c6ea5b"
integrity sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==
+"@esbuild/netbsd-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz#f04c4049cb2e252fe96b16fed90f70746b13f4a4"
+ integrity sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==
+
"@esbuild/netbsd-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz#414677cef66d16c5a4d210751eb2881bb9c1b62b"
integrity sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==
+"@esbuild/netbsd-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz#77da0d0a0d826d7c921eea3d40292548b258a076"
+ integrity sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==
+
"@esbuild/openbsd-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz#8fd55a4d08d25cdc572844f13c88d678c84d13f7"
integrity sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==
+"@esbuild/openbsd-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz#6296f5867aedef28a81b22ab2009c786a952dccd"
+ integrity sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==
+
"@esbuild/openbsd-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz#0c48ddb1494bbc2d6bcbaa1429a7f465fa1dedde"
integrity sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==
+"@esbuild/openbsd-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz#f8d23303360e27b16cf065b23bbff43c14142679"
+ integrity sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==
+
+"@esbuild/openharmony-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz#49e0b768744a3924be0d7fd97dd6ce9b2923d88d"
+ integrity sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==
+
"@esbuild/sunos-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz#86ff9075d77962b60dd26203d7352f92684c8c92"
integrity sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==
+"@esbuild/sunos-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz#a6ed7d6778d67e528c81fb165b23f4911b9b13d6"
+ integrity sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==
+
"@esbuild/win32-arm64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz#849c62327c3229467f5b5cd681bf50588442e96c"
integrity sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==
+"@esbuild/win32-arm64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz#9ac14c378e1b653af17d08e7d3ce34caef587323"
+ integrity sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==
+
"@esbuild/win32-ia32@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz#f62eb480cd7cca088cb65bb46a6db25b725dc079"
integrity sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==
+"@esbuild/win32-ia32@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz#918942dcbbb35cc14fca39afb91b5e6a3d127267"
+ integrity sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==
+
"@esbuild/win32-x64@0.25.0":
version "0.25.0"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz#c8e119a30a7c8d60b9d2e22d2073722dde3b710b"
integrity sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==
+"@esbuild/win32-x64@0.25.12":
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz#9bdad8176be7811ad148d1f8772359041f46c6c5"
+ integrity sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==
+
"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
version "4.4.1"
resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz"
@@ -1297,10 +1432,10 @@
resolved "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz"
integrity sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==
-"@eslint/js@^9.28.0":
- version "9.34.0"
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.34.0.tgz#fc423168b9d10e08dea9088d083788ec6442996b"
- integrity sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==
+"@eslint/js@^9.39.1":
+ version "9.39.1"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.39.1.tgz#0dd59c3a9f40e3f1882975c321470969243e0164"
+ integrity sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==
"@eslint/object-schema@^2.1.6":
version "2.1.6"
@@ -1348,19 +1483,19 @@
resolved "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.10.tgz"
integrity sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==
-"@intlify/bundle-utils@^10.0.1":
- version "10.0.1"
- resolved "https://registry.npmjs.org/@intlify/bundle-utils/-/bundle-utils-10.0.1.tgz"
- integrity sha512-WkaXfSevtpgtUR4t8K2M6lbR7g03mtOxFeh+vXp5KExvPqS12ppaRj1QxzwRuRI5VUto54A22BjKoBMLyHILWQ==
+"@intlify/bundle-utils@11.0.1":
+ version "11.0.1"
+ resolved "https://registry.yarnpkg.com/@intlify/bundle-utils/-/bundle-utils-11.0.1.tgz#7abdc2e7b9f18d3cddcfac5e3077ee005ca56028"
+ integrity sha512-5l10G5wE2cQRsZMS9y0oSFMOLW5IG/SgbkIUltqnwF1EMRrRbUAHFiPabXdGTHeexCsMTcxj/1w9i0rzjJU9IQ==
dependencies:
- "@intlify/message-compiler" "^11.1.2"
- "@intlify/shared" "^11.1.2"
+ "@intlify/message-compiler" "^11.1.10"
+ "@intlify/shared" "^11.1.10"
acorn "^8.8.2"
+ esbuild "^0.25.4"
escodegen "^2.1.0"
estree-walker "^2.0.2"
jsonc-eslint-parser "^2.3.0"
- mlly "^1.2.0"
- source-map-js "^1.0.1"
+ source-map-js "^1.0.2"
yaml-eslint-parser "^1.2.2"
"@intlify/core-base@10.0.8":
@@ -1371,13 +1506,13 @@
"@intlify/message-compiler" "10.0.8"
"@intlify/shared" "10.0.8"
-"@intlify/core-base@11.1.11":
- version "11.1.11"
- resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-11.1.11.tgz"
- integrity sha512-1Z0N8jTfkcD2Luq9HNZt+GmjpFe4/4PpZF3AOzoO1u5PTtSuXZcfhwBatywbfE2ieB/B5QHIoOFmCXY2jqVKEQ==
+"@intlify/core-base@11.2.2":
+ version "11.2.2"
+ resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-11.2.2.tgz#499a9a9ca8b0430df936fa59fe7791f863d06212"
+ integrity sha512-0mCTBOLKIqFUP3BzwuFW23hYEl9g/wby6uY//AC5hTgQfTsM2srCYF2/hYGp+a5DZ/HIFIgKkLJMzXTt30r0JQ==
dependencies:
- "@intlify/message-compiler" "11.1.11"
- "@intlify/shared" "11.1.11"
+ "@intlify/message-compiler" "11.2.2"
+ "@intlify/shared" "11.2.2"
"@intlify/message-compiler@10.0.8":
version "10.0.8"
@@ -1387,20 +1522,12 @@
"@intlify/shared" "10.0.8"
source-map-js "^1.0.2"
-"@intlify/message-compiler@11.1.11":
- version "11.1.11"
- resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-11.1.11.tgz"
- integrity sha512-7PC6neomoc/z7a8JRjPBbu0T2TzR2MQuY5kn2e049MP7+o32Ve7O8husylkA7K9fQRe4iNXZWTPnDJ6vZdtS1Q==
+"@intlify/message-compiler@11.2.2", "@intlify/message-compiler@^11.1.10":
+ version "11.2.2"
+ resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-11.2.2.tgz#519b495ec165ae3ee3dc09dd698c7f77cf319633"
+ integrity sha512-XS2p8Ff5JxWsKhgfld4/MRQzZRQ85drMMPhb7Co6Be4ZOgqJX1DzcZt0IFgGTycgqL8rkYNwgnD443Q+TapOoA==
dependencies:
- "@intlify/shared" "11.1.11"
- source-map-js "^1.0.2"
-
-"@intlify/message-compiler@^11.1.2":
- version "11.1.2"
- resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-11.1.2.tgz"
- integrity sha512-T/xbNDzi+Yv0Qn2Dfz2CWCAJiwNgU5d95EhhAEf4YmOgjCKktpfpiUSmLcBvK1CtLpPQ85AMMQk/2NCcXnNj1g==
- dependencies:
- "@intlify/shared" "11.1.2"
+ "@intlify/shared" "11.2.2"
source-map-js "^1.0.2"
"@intlify/shared@10.0.8", "@intlify/shared@^10.0.0":
@@ -1408,37 +1535,29 @@
resolved "https://registry.npmjs.org/@intlify/shared/-/shared-10.0.8.tgz"
integrity sha512-BcmHpb5bQyeVNrptC3UhzpBZB/YHHDoEREOUERrmF2BRxsyOEuRrq+Z96C/D4+2KJb8kuHiouzAei7BXlG0YYw==
-"@intlify/shared@11.1.11":
- version "11.1.11"
- resolved "https://registry.npmjs.org/@intlify/shared/-/shared-11.1.11.tgz"
- integrity sha512-RIBFTIqxZSsxUqlcyoR7iiC632bq7kkOwYvZlvcVObHfrF4NhuKc4FKvu8iPCrEO+e3XsY7/UVpfgzg+M7ETzA==
+"@intlify/shared@11.2.2", "@intlify/shared@^11.1.10":
+ version "11.2.2"
+ resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-11.2.2.tgz#a97e53b376e4f9d27f0f7b0d66beb81ccf7aadb4"
+ integrity sha512-OtCmyFpSXxNu/oET/aN6HtPCbZ01btXVd0f3w00YsHOb13Kverk1jzA2k47pAekM55qbUw421fvPF1yxZ+gicw==
-"@intlify/shared@11.1.2", "@intlify/shared@^11.1.2":
- version "11.1.2"
- resolved "https://registry.npmjs.org/@intlify/shared/-/shared-11.1.2.tgz"
- integrity sha512-dF2iMMy8P9uKVHV/20LA1ulFLL+MKSbfMiixSmn6fpwqzvix38OIc7ebgnFbBqElvghZCW9ACtzKTGKsTGTWGA==
-
-"@intlify/unplugin-vue-i18n@^6.0.8":
- version "6.0.8"
- resolved "https://registry.npmjs.org/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-6.0.8.tgz"
- integrity sha512-Vvm3KhjE6TIBVUQAk37rBiaYy2M5OcWH0ZcI1XKEsOTeN1o0bErk+zeuXmcrcMc/73YggfI8RoxOUz9EB/69JQ==
+"@intlify/unplugin-vue-i18n@^11.0.1":
+ version "11.0.1"
+ resolved "https://registry.yarnpkg.com/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-11.0.1.tgz#d16a00635b5bb5ae9e90b1ef54bb68c328bb9fab"
+ integrity sha512-nH5NJdNjy/lO6Ne8LDtZzv4SbpVsMhPE+LbvBDmMeIeJDiino8sOJN2QB3MXzTliYTnqe3aB9Fw5+LJ/XVaXCg==
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
- "@intlify/bundle-utils" "^10.0.1"
- "@intlify/shared" "^11.1.2"
+ "@intlify/bundle-utils" "11.0.1"
+ "@intlify/shared" "^11.1.10"
"@intlify/vue-i18n-extensions" "^8.0.0"
"@rollup/pluginutils" "^5.1.0"
"@typescript-eslint/scope-manager" "^8.13.0"
"@typescript-eslint/typescript-estree" "^8.13.0"
debug "^4.3.3"
fast-glob "^3.2.12"
- js-yaml "^4.1.0"
- json5 "^2.2.3"
- pathe "^1.0.0"
+ pathe "^2.0.3"
picocolors "^1.0.0"
- source-map-js "^1.0.2"
- unplugin "^1.1.0"
- vue "^3.4"
+ unplugin "^2.3.4"
+ vue "^3.5.14"
"@intlify/vue-i18n-extensions@^8.0.0":
version "8.0.0"
@@ -1450,6 +1569,18 @@
"@vue/compiler-dom" "^3.2.45"
vue-i18n "^10.0.0"
+"@isaacs/balanced-match@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz#3081dadbc3460661b751e7591d7faea5df39dd29"
+ integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==
+
+"@isaacs/brace-expansion@^5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz#4b3dabab7d8e75a429414a96bd67bf4c1d13e0f3"
+ integrity sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==
+ dependencies:
+ "@isaacs/balanced-match" "^4.0.1"
+
"@isaacs/cliui@^8.0.2":
version "8.0.2"
resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"
@@ -1478,50 +1609,50 @@
resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
-"@jest/console@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/console/-/console-30.1.2.tgz"
- integrity sha512-BGMAxj8VRmoD0MoA/jo9alMXSRoqW8KPeqOfEo1ncxnRLatTBCpRoOwlwlEMdudp68Q6WSGwYrrLtTGOh8fLzw==
+"@jest/console@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-30.2.0.tgz#c52fcd5b58fdd2e8eb66b2fd8ae56f2f64d05b28"
+ integrity sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==
dependencies:
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@types/node" "*"
chalk "^4.1.2"
- jest-message-util "30.1.0"
- jest-util "30.0.5"
+ jest-message-util "30.2.0"
+ jest-util "30.2.0"
slash "^3.0.0"
-"@jest/core@30.1.3":
- version "30.1.3"
- resolved "https://registry.npmjs.org/@jest/core/-/core-30.1.3.tgz"
- integrity sha512-LIQz7NEDDO1+eyOA2ZmkiAyYvZuo6s1UxD/e2IHldR6D7UYogVq3arTmli07MkENLq6/3JEQjp0mA8rrHHJ8KQ==
+"@jest/core@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/core/-/core-30.2.0.tgz#813d59faa5abd5510964a8b3a7b17cc77b775275"
+ integrity sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==
dependencies:
- "@jest/console" "30.1.2"
+ "@jest/console" "30.2.0"
"@jest/pattern" "30.0.1"
- "@jest/reporters" "30.1.3"
- "@jest/test-result" "30.1.3"
- "@jest/transform" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/reporters" "30.2.0"
+ "@jest/test-result" "30.2.0"
+ "@jest/transform" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
ansi-escapes "^4.3.2"
chalk "^4.1.2"
ci-info "^4.2.0"
exit-x "^0.2.2"
graceful-fs "^4.2.11"
- jest-changed-files "30.0.5"
- jest-config "30.1.3"
- jest-haste-map "30.1.0"
- jest-message-util "30.1.0"
+ jest-changed-files "30.2.0"
+ jest-config "30.2.0"
+ jest-haste-map "30.2.0"
+ jest-message-util "30.2.0"
jest-regex-util "30.0.1"
- jest-resolve "30.1.3"
- jest-resolve-dependencies "30.1.3"
- jest-runner "30.1.3"
- jest-runtime "30.1.3"
- jest-snapshot "30.1.2"
- jest-util "30.0.5"
- jest-validate "30.1.0"
- jest-watcher "30.1.3"
+ jest-resolve "30.2.0"
+ jest-resolve-dependencies "30.2.0"
+ jest-runner "30.2.0"
+ jest-runtime "30.2.0"
+ jest-snapshot "30.2.0"
+ jest-util "30.2.0"
+ jest-validate "30.2.0"
+ jest-watcher "30.2.0"
micromatch "^4.0.8"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
slash "^3.0.0"
"@jest/diff-sequences@30.0.1":
@@ -1529,64 +1660,57 @@
resolved "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz"
integrity sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==
-"@jest/environment@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/environment/-/environment-30.1.2.tgz"
- integrity sha512-N8t1Ytw4/mr9uN28OnVf0SYE2dGhaIxOVYcwsf9IInBKjvofAjbFRvedvBBlyTYk2knbJTiEjEJ2PyyDIBnd9w==
+"@jest/environment@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-30.2.0.tgz#1e673cdb8b93ded707cf6631b8353011460831fa"
+ integrity sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==
dependencies:
- "@jest/fake-timers" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/fake-timers" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
- jest-mock "30.0.5"
+ jest-mock "30.2.0"
-"@jest/expect-utils@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.1.2.tgz"
- integrity sha512-HXy1qT/bfdjCv7iC336ExbqqYtZvljrV8odNdso7dWK9bSeHtLlvwWWC3YSybSPL03Gg5rug6WLCZAZFH72m0A==
+"@jest/expect-utils@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-30.2.0.tgz#4f95413d4748454fdb17404bf1141827d15e6011"
+ integrity sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==
dependencies:
"@jest/get-type" "30.1.0"
-"@jest/expect-utils@^29.7.0":
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6"
- integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==
+"@jest/expect@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-30.2.0.tgz#9a5968499bb8add2bbb09136f69f7df5ddbf3185"
+ integrity sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==
dependencies:
- jest-get-type "^29.6.3"
+ expect "30.2.0"
+ jest-snapshot "30.2.0"
-"@jest/expect@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/expect/-/expect-30.1.2.tgz"
- integrity sha512-tyaIExOwQRCxPCGNC05lIjWJztDwk2gPDNSDGg1zitXJJ8dC3++G/CRjE5mb2wQsf89+lsgAgqxxNpDLiCViTA==
+"@jest/fake-timers@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-30.2.0.tgz#0941ddc28a339b9819542495b5408622dc9e94ec"
+ integrity sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==
dependencies:
- expect "30.1.2"
- jest-snapshot "30.1.2"
-
-"@jest/fake-timers@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-30.1.2.tgz"
- integrity sha512-Beljfv9AYkr9K+ETX9tvV61rJTY706BhBUtiaepQHeEGfe0DbpvUA5Z3fomwc5Xkhns6NWrcFDZn+72fLieUnA==
- dependencies:
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@sinonjs/fake-timers" "^13.0.0"
"@types/node" "*"
- jest-message-util "30.1.0"
- jest-mock "30.0.5"
- jest-util "30.0.5"
+ jest-message-util "30.2.0"
+ jest-mock "30.2.0"
+ jest-util "30.2.0"
"@jest/get-type@30.1.0":
version "30.1.0"
resolved "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz"
integrity sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==
-"@jest/globals@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/globals/-/globals-30.1.2.tgz"
- integrity sha512-teNTPZ8yZe3ahbYnvnVRDeOjr+3pu2uiAtNtrEsiMjVPPj+cXd5E/fr8BL7v/T7F31vYdEHrI5cC/2OoO/vM9A==
+"@jest/globals@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-30.2.0.tgz#2f4b696d5862664b89c4ee2e49ae24d2bb7e0988"
+ integrity sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==
dependencies:
- "@jest/environment" "30.1.2"
- "@jest/expect" "30.1.2"
- "@jest/types" "30.0.5"
- jest-mock "30.0.5"
+ "@jest/environment" "30.2.0"
+ "@jest/expect" "30.2.0"
+ "@jest/types" "30.2.0"
+ jest-mock "30.2.0"
"@jest/pattern@30.0.1":
version "30.0.1"
@@ -1596,16 +1720,16 @@
"@types/node" "*"
jest-regex-util "30.0.1"
-"@jest/reporters@30.1.3":
- version "30.1.3"
- resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-30.1.3.tgz"
- integrity sha512-VWEQmJWfXMOrzdFEOyGjUEOuVXllgZsoPtEHZzfdNz18RmzJ5nlR6kp8hDdY8dDS1yGOXAY7DHT+AOHIPSBV0w==
+"@jest/reporters@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-30.2.0.tgz#a36b28fcbaf0c4595250b108e6f20e363348fd91"
+ integrity sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "30.1.2"
- "@jest/test-result" "30.1.3"
- "@jest/transform" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/console" "30.2.0"
+ "@jest/test-result" "30.2.0"
+ "@jest/transform" "30.2.0"
+ "@jest/types" "30.2.0"
"@jridgewell/trace-mapping" "^0.3.25"
"@types/node" "*"
chalk "^4.1.2"
@@ -1618,9 +1742,9 @@
istanbul-lib-report "^3.0.0"
istanbul-lib-source-maps "^5.0.0"
istanbul-reports "^3.1.3"
- jest-message-util "30.1.0"
- jest-util "30.0.5"
- jest-worker "30.1.0"
+ jest-message-util "30.2.0"
+ jest-util "30.2.0"
+ jest-worker "30.2.0"
slash "^3.0.0"
string-length "^4.0.2"
v8-to-istanbul "^9.0.1"
@@ -1632,19 +1756,12 @@
dependencies:
"@sinclair/typebox" "^0.34.0"
-"@jest/schemas@^29.6.3":
- version "29.6.3"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03"
- integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==
+"@jest/snapshot-utils@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/snapshot-utils/-/snapshot-utils-30.2.0.tgz#387858eb90c2f98f67bff327435a532ac5309fbe"
+ integrity sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==
dependencies:
- "@sinclair/typebox" "^0.27.8"
-
-"@jest/snapshot-utils@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/snapshot-utils/-/snapshot-utils-30.1.2.tgz"
- integrity sha512-vHoMTpimcPSR7OxS2S0V1Cpg8eKDRxucHjoWl5u4RQcnxqQrV3avETiFpl8etn4dqxEGarBeHbIBety/f8mLXw==
- dependencies:
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
chalk "^4.1.2"
graceful-fs "^4.2.11"
natural-compare "^1.4.0"
@@ -1658,51 +1775,51 @@
callsites "^3.1.0"
graceful-fs "^4.2.11"
-"@jest/test-result@30.1.3":
- version "30.1.3"
- resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-30.1.3.tgz"
- integrity sha512-P9IV8T24D43cNRANPPokn7tZh0FAFnYS2HIfi5vK18CjRkTDR9Y3e1BoEcAJnl4ghZZF4Ecda4M/k41QkvurEQ==
+"@jest/test-result@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-30.2.0.tgz#9c0124377fb7996cdffb86eda3dbc56eacab363d"
+ integrity sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==
dependencies:
- "@jest/console" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/console" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/istanbul-lib-coverage" "^2.0.6"
collect-v8-coverage "^1.0.2"
-"@jest/test-sequencer@30.1.3":
- version "30.1.3"
- resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-30.1.3.tgz"
- integrity sha512-82J+hzC0qeQIiiZDThh+YUadvshdBswi5nuyXlEmXzrhw5ZQSRHeQ5LpVMD/xc8B3wPePvs6VMzHnntxL+4E3w==
+"@jest/test-sequencer@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-30.2.0.tgz#bf0066bc72e176d58f5dfa7f212b6e7eee44f221"
+ integrity sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==
dependencies:
- "@jest/test-result" "30.1.3"
+ "@jest/test-result" "30.2.0"
graceful-fs "^4.2.11"
- jest-haste-map "30.1.0"
+ jest-haste-map "30.2.0"
slash "^3.0.0"
-"@jest/transform@30.1.2":
- version "30.1.2"
- resolved "https://registry.npmjs.org/@jest/transform/-/transform-30.1.2.tgz"
- integrity sha512-UYYFGifSgfjujf1Cbd3iU/IQoSd6uwsj8XHj5DSDf5ERDcWMdJOPTkHWXj4U+Z/uMagyOQZ6Vne8C4nRIrCxqA==
+"@jest/transform@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-30.2.0.tgz#54bef1a4510dcbd58d5d4de4fe2980a63077ef2a"
+ integrity sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==
dependencies:
"@babel/core" "^7.27.4"
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@jridgewell/trace-mapping" "^0.3.25"
- babel-plugin-istanbul "^7.0.0"
+ babel-plugin-istanbul "^7.0.1"
chalk "^4.1.2"
convert-source-map "^2.0.0"
fast-json-stable-stringify "^2.1.0"
graceful-fs "^4.2.11"
- jest-haste-map "30.1.0"
+ jest-haste-map "30.2.0"
jest-regex-util "30.0.1"
- jest-util "30.0.5"
+ jest-util "30.2.0"
micromatch "^4.0.8"
pirates "^4.0.7"
slash "^3.0.0"
write-file-atomic "^5.0.1"
-"@jest/types@30.0.5":
- version "30.0.5"
- resolved "https://registry.npmjs.org/@jest/types/-/types-30.0.5.tgz"
- integrity sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==
+"@jest/types@30.2.0":
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-30.2.0.tgz#1c678a7924b8f59eafd4c77d56b6d0ba976d62b8"
+ integrity sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==
dependencies:
"@jest/pattern" "30.0.1"
"@jest/schemas" "30.0.5"
@@ -1712,18 +1829,6 @@
"@types/yargs" "^17.0.33"
chalk "^4.1.2"
-"@jest/types@^29.6.3":
- version "29.6.3"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59"
- integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==
- dependencies:
- "@jest/schemas" "^29.6.3"
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^3.0.0"
- "@types/node" "*"
- "@types/yargs" "^17.0.8"
- chalk "^4.0.0"
-
"@jridgewell/gen-mapping@^0.3.5":
version "0.3.8"
resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz"
@@ -1733,6 +1838,14 @@
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.24"
+"@jridgewell/remapping@^2.3.5":
+ version "2.3.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz#375c476d1972947851ba1e15ae8f123047445aa1"
+ integrity sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.5"
+ "@jridgewell/trace-mapping" "^0.3.24"
+
"@jridgewell/resolve-uri@^3.1.0":
version "3.1.2"
resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz"
@@ -1895,101 +2008,101 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@parcel/bundler-default@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.15.4.tgz"
- integrity sha512-4vkaZuwGqL8L7NqEgjRznz9/QoeVKk0Z6z2nzfpdnSWA4xX3moUj+JeoqGUbyFGuPzfCma4SA4+txnQbKu0edQ==
+"@parcel/bundler-default@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/bundler-default/-/bundler-default-2.16.1.tgz#0a9b8698c798e5a461a649f5f1b6147cf6eebbe9"
+ integrity sha512-ruy+Yt96Jre2+5PSE4qcH7ETarIuQ+OIY8hejOQ53inVgu9QlvBJf/L2PhNkumHN2zA6m5f0m/MhB+amaee5ew==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/graph" "3.5.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/graph" "3.6.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/cache@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/cache/-/cache-2.15.4.tgz"
- integrity sha512-x/QgMuVvXQV6uNhIF+6kz6SzhVVkwf6WPSVG/xQvGMEiBabForDVYIhIEuN3RzUXCU352CGM6d8TtLLg61W1fw==
+"@parcel/cache@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/cache/-/cache-2.16.1.tgz#f3cb7d43855ead91d739408bc0f4b97902cd3c53"
+ integrity sha512-qDlHQQ7RDfSi5MBnuFGCfQYiQQomsA5aZLntO5MCRD62VnMf9qz/RrCqpGFGOooljMoUaeVl0Q8ARvorRJJi8w==
dependencies:
- "@parcel/fs" "2.15.4"
- "@parcel/logger" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/fs" "2.16.1"
+ "@parcel/logger" "2.16.1"
+ "@parcel/utils" "2.16.1"
lmdb "2.8.5"
-"@parcel/codeframe@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.15.4.tgz"
- integrity sha512-ErAPEQaJIpB+ocNZ3rl8AEK6piA7JBInwZLNU0eHMthm01Ssb10JkpAadyn1w9IVfCey+kqQcEeWv47Yh6mL1Q==
+"@parcel/codeframe@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/codeframe/-/codeframe-2.16.1.tgz#1a57337f6d13a4c85a980fa4f467bd7b919627ca"
+ integrity sha512-KLy9Fvf37SX6/wek2SUPw8A/W0kChcNXPUNeCIYWUFI4USAZ5KvesXS5RHUnrJTaR0XzD0Qia+MFJPgp6kuazQ==
dependencies:
chalk "^4.1.2"
-"@parcel/compressor-raw@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.15.4.tgz"
- integrity sha512-gECePZxVXBwyo0DYbAq4V4SimVzHaJ3p8QOgFIfOqNmlEBbhLf3QSjArFPJNKiHZaJuclh4a+IShFBN+u6tXXw==
+"@parcel/compressor-raw@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/compressor-raw/-/compressor-raw-2.16.1.tgz#810f907e11477e6b2e2a044838fd2e5d43f85fc9"
+ integrity sha512-44sHWuEyGwUvs2bG1t/hsBP0lR06HO2btrXhkUGL+HX6D8cZrkZfSBFnUrGYZURYRybyx8qkhcogf5SU5rbwAQ==
dependencies:
- "@parcel/plugin" "2.15.4"
+ "@parcel/plugin" "2.16.1"
-"@parcel/config-default@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.15.4.tgz"
- integrity sha512-chUE4NpcSXpMfTcSmgl4Q78zH+ZFe0qdgZLBtF4EH2QQakW7wAXAYRxS2/P3xFkUj0/51sExhbCFWgulrlGDPw==
+"@parcel/config-default@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/config-default/-/config-default-2.16.1.tgz#3f7f45e33fd7fc13524fda8d732900e3d7b9ef99"
+ integrity sha512-jBgbHW73MrEdiKH6LISLw5TZ2oVvyLm3GaYzwNkcRTUtSh6aRVjxvCWePdxy41dcwnMC/ABLsamtN4wokAKKSQ==
dependencies:
- "@parcel/bundler-default" "2.15.4"
- "@parcel/compressor-raw" "2.15.4"
- "@parcel/namer-default" "2.15.4"
- "@parcel/optimizer-css" "2.15.4"
- "@parcel/optimizer-html" "2.15.4"
- "@parcel/optimizer-image" "2.15.4"
- "@parcel/optimizer-svg" "2.15.4"
- "@parcel/optimizer-swc" "2.15.4"
- "@parcel/packager-css" "2.15.4"
- "@parcel/packager-html" "2.15.4"
- "@parcel/packager-js" "2.15.4"
- "@parcel/packager-raw" "2.15.4"
- "@parcel/packager-svg" "2.15.4"
- "@parcel/packager-wasm" "2.15.4"
- "@parcel/reporter-dev-server" "2.15.4"
- "@parcel/resolver-default" "2.15.4"
- "@parcel/runtime-browser-hmr" "2.15.4"
- "@parcel/runtime-js" "2.15.4"
- "@parcel/runtime-rsc" "2.15.4"
- "@parcel/runtime-service-worker" "2.15.4"
- "@parcel/transformer-babel" "2.15.4"
- "@parcel/transformer-css" "2.15.4"
- "@parcel/transformer-html" "2.15.4"
- "@parcel/transformer-image" "2.15.4"
- "@parcel/transformer-js" "2.15.4"
- "@parcel/transformer-json" "2.15.4"
- "@parcel/transformer-node" "2.15.4"
- "@parcel/transformer-postcss" "2.15.4"
- "@parcel/transformer-posthtml" "2.15.4"
- "@parcel/transformer-raw" "2.15.4"
- "@parcel/transformer-react-refresh-wrap" "2.15.4"
- "@parcel/transformer-svg" "2.15.4"
+ "@parcel/bundler-default" "2.16.1"
+ "@parcel/compressor-raw" "2.16.1"
+ "@parcel/namer-default" "2.16.1"
+ "@parcel/optimizer-css" "2.16.1"
+ "@parcel/optimizer-html" "2.16.1"
+ "@parcel/optimizer-image" "2.16.1"
+ "@parcel/optimizer-svg" "2.16.1"
+ "@parcel/optimizer-swc" "2.16.1"
+ "@parcel/packager-css" "2.16.1"
+ "@parcel/packager-html" "2.16.1"
+ "@parcel/packager-js" "2.16.1"
+ "@parcel/packager-raw" "2.16.1"
+ "@parcel/packager-svg" "2.16.1"
+ "@parcel/packager-wasm" "2.16.1"
+ "@parcel/reporter-dev-server" "2.16.1"
+ "@parcel/resolver-default" "2.16.1"
+ "@parcel/runtime-browser-hmr" "2.16.1"
+ "@parcel/runtime-js" "2.16.1"
+ "@parcel/runtime-rsc" "2.16.1"
+ "@parcel/runtime-service-worker" "2.16.1"
+ "@parcel/transformer-babel" "2.16.1"
+ "@parcel/transformer-css" "2.16.1"
+ "@parcel/transformer-html" "2.16.1"
+ "@parcel/transformer-image" "2.16.1"
+ "@parcel/transformer-js" "2.16.1"
+ "@parcel/transformer-json" "2.16.1"
+ "@parcel/transformer-node" "2.16.1"
+ "@parcel/transformer-postcss" "2.16.1"
+ "@parcel/transformer-posthtml" "2.16.1"
+ "@parcel/transformer-raw" "2.16.1"
+ "@parcel/transformer-react-refresh-wrap" "2.16.1"
+ "@parcel/transformer-svg" "2.16.1"
-"@parcel/core@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/core/-/core-2.15.4.tgz"
- integrity sha512-+TXxTm58lFwXXObFAEclwKX1p1AdixcD+M7T4NeFIQzQ4F20Vr+6oybCSqW1exNA3uHqVDDFLx7TT78seVjvkg==
+"@parcel/core@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/core/-/core-2.16.1.tgz#b8f481cc2a6089cf27157519d997eb696983a476"
+ integrity sha512-tza8oKYaPopGBwroGJKv7BrTg1lxTycS7SANIizxMB9FxDsAkq4vPny5/KHpFBcW3UTCGBvvNAG1oaVzeWF5Pg==
dependencies:
"@mischnic/json-sourcemap" "^0.1.1"
- "@parcel/cache" "2.15.4"
- "@parcel/diagnostic" "2.15.4"
- "@parcel/events" "2.15.4"
- "@parcel/feature-flags" "2.15.4"
- "@parcel/fs" "2.15.4"
- "@parcel/graph" "3.5.4"
- "@parcel/logger" "2.15.4"
- "@parcel/package-manager" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/profiler" "2.15.4"
- "@parcel/rust" "2.15.4"
+ "@parcel/cache" "2.16.1"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/events" "2.16.1"
+ "@parcel/feature-flags" "2.16.1"
+ "@parcel/fs" "2.16.1"
+ "@parcel/graph" "3.6.1"
+ "@parcel/logger" "2.16.1"
+ "@parcel/package-manager" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/profiler" "2.16.1"
+ "@parcel/rust" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/types" "2.15.4"
- "@parcel/utils" "2.15.4"
- "@parcel/workers" "2.15.4"
+ "@parcel/types" "2.16.1"
+ "@parcel/utils" "2.16.1"
+ "@parcel/workers" "2.16.1"
base-x "^3.0.11"
browserslist "^4.24.5"
clone "^2.1.2"
@@ -2000,361 +2113,361 @@
nullthrows "^1.1.1"
semver "^7.7.1"
-"@parcel/diagnostic@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.15.4.tgz"
- integrity sha512-8MAqefwzBKceNN3364OLm+p4HRD7AfimfFW3MntLxPB6bnelc9UBg5c9zEm34zYEctbmky8gqYgAUSDjqYC5Hw==
+"@parcel/diagnostic@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/diagnostic/-/diagnostic-2.16.1.tgz#3cf61235c81e2a9dc08d1cce113a1ece6948bbb8"
+ integrity sha512-PJl7/QGsPboAMVFZId31iGMMY70AllZNOtYka9rTZRjTiBhZw4VrAG/RdqqKzjVuL6fZhurmfcwWzj+3gx8ccg==
dependencies:
"@mischnic/json-sourcemap" "^0.1.1"
nullthrows "^1.1.1"
-"@parcel/error-overlay@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/error-overlay/-/error-overlay-2.15.4.tgz"
- integrity sha512-xxeaWm8fV8Z4uGy/c09mOvmFSHBOgF1gCMQwLCwZvfMLqIWkdZaUQ2cRhWZIS6pOXaRVC7YpcXzk2DOiSUNSbQ==
+"@parcel/error-overlay@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/error-overlay/-/error-overlay-2.16.1.tgz#b5ba014b44f787ff0934433e3ad718bb5604ed34"
+ integrity sha512-9vZq5ijoAn+JjodXc5FNy6ZQ2qpqSAaKDs+wCi4JrZMJJx7+dXZ31xtbpmP2SzG2Wppf8KhS/dOGmtQh65jT8Q==
-"@parcel/events@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/events/-/events-2.15.4.tgz"
- integrity sha512-SBq4zstaFr7XQaXNaQmUuVh1swCUHrhtPCOSofvkJoQGhjsuhQlh4t0NmUikyKNdj7C1j40xCS1kGHuUO29b0g==
+"@parcel/events@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/events/-/events-2.16.1.tgz#bdaa4cb7986fb0c5d11f43659a67ae53417107a3"
+ integrity sha512-+U7Trb2W8fm8w/OjwQpWN/Tepiwim/YNXuyPrhikFnsrg6QDdDTD/8/km4ah8Bzr0u4hIrn1k32InwDMCF5sig==
-"@parcel/feature-flags@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/feature-flags/-/feature-flags-2.15.4.tgz"
- integrity sha512-DJqZVtbfjWJseM0gk7yyDkAuOhP7/FVwZ/YVqjozIqXBhmQm07xctiqNQyZX2vBbQsxmVbjpqyq+DOj45WPEzQ==
+"@parcel/feature-flags@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/feature-flags/-/feature-flags-2.16.1.tgz#cc612a38e309428440556c0d89fee98ac66c2c70"
+ integrity sha512-MY/z4gKZWk0MKvP+gpU42kiE9W4f9NM1fSCa1OcdqF7IUJDDM41CDJ9rbwSQrroDddIViaNzsLo7aSYVI/C7aA==
-"@parcel/fs@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/fs/-/fs-2.15.4.tgz"
- integrity sha512-5cahD2ByQaSi+YN0aDvrMWXZvs3mP7C5ey8zcDTDn7JxJa51sMqOQcdU3VUTzQFtAPeRM2KxUkxLhBBXgQqHZA==
+"@parcel/fs@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/fs/-/fs-2.16.1.tgz#1c06334446f88b606725b1622a03da8a9b530068"
+ integrity sha512-/akyrCaurd8rfgXuT6tDAK6I1JfW56TFJmzfIwuFSPbRy3YVu4JKN1g2PShpOLPdnqfWZNCcsd+yuuMFVhA2HA==
dependencies:
- "@parcel/feature-flags" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/types-internal" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/feature-flags" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/types-internal" "2.16.1"
+ "@parcel/utils" "2.16.1"
"@parcel/watcher" "^2.0.7"
- "@parcel/workers" "2.15.4"
+ "@parcel/workers" "2.16.1"
-"@parcel/graph@3.5.4":
- version "3.5.4"
- resolved "https://registry.npmjs.org/@parcel/graph/-/graph-3.5.4.tgz"
- integrity sha512-uF7kyQXWK2fQZvG5eE0N3avYGLQE5Q0vyJsyypNcFW3kXNnrkZCUtbG7urmdae9mmZ2jXIVN4q4Bhd9pefGj9A==
+"@parcel/graph@3.6.1":
+ version "3.6.1"
+ resolved "https://registry.yarnpkg.com/@parcel/graph/-/graph-3.6.1.tgz#18809db9be4b7f42b31da574e8f54d71e892342f"
+ integrity sha512-82sjbjrSPK5BXH0tb65tQl/qvo/b2vsyA5F6z3SaQ/c3A5bmv5RxTvse1AgOb0St0lZ7ALaZibj1qZFBUyjdqw==
dependencies:
- "@parcel/feature-flags" "2.15.4"
+ "@parcel/feature-flags" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/logger@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/logger/-/logger-2.15.4.tgz"
- integrity sha512-rQ7F5+FMQ7t+w5NGFRT8CWHhym0aunduufCjlafvRzUSKEN/5/nwTfCe9I5QsthGlXJWs+ZTy4zQ+wLtZQRBKQ==
+"@parcel/logger@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-2.16.1.tgz#50deb7ce82306ec7eff902836c9d0ae85c522d85"
+ integrity sha512-w9Qpp5S79fqn6nh/VqVYG4kCbIeW45zdPvYJMFgE90zhBRLrOnqw06cRZQdKj24C7/kdqOFFbrJ3B5uTsYeS0w==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/events" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/events" "2.16.1"
-"@parcel/markdown-ansi@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.15.4.tgz"
- integrity sha512-u5Lwcr4ZVBSLFbKYht+mJqJ3ZMXvJdmDMU5eDtrIEKPpu9LrIDdPpDEXBoyO6pDsoV/2AqyXUUMzBRyCatkkoQ==
+"@parcel/markdown-ansi@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/markdown-ansi/-/markdown-ansi-2.16.1.tgz#f749775d13878a7833dfcee02fc7e6007ec9717f"
+ integrity sha512-4Qww9KkGrVrY/JyD2NtrdUmyufKOqGg3t6hkE4UqQBPb+GZd+TQi6i1mjWvOE6r9AF53x5PAZZ13f/HfllU2qA==
dependencies:
chalk "^4.1.2"
-"@parcel/namer-default@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.15.4.tgz"
- integrity sha512-EXsoQ1S+5ZIfy8431E7F0vVS7bfH5JpZ+vFVcUpArJDkhmMG7T/eP6Kp9CXHLJmn7ki1x7iIVytrja0XXRQWBQ==
+"@parcel/namer-default@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/namer-default/-/namer-default-2.16.1.tgz#870456f0bf0836ac52a83ca08ba63c2a340125e3"
+ integrity sha512-vs4djcAt3HoQri6g8itdCzFTiFXwcVNfFDqa9By1pTdq/aKWapJWZaes2KCf2ey2FoEafS0tOIA90n124PM00A==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/node-resolver-core@3.6.4":
- version "3.6.4"
- resolved "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-3.6.4.tgz"
- integrity sha512-g3+usMnr7pfRqbMAksOpNA7GJk7HUNW1Wxx7Shhp4w0K9JUdVrd2LRKwZxbqL7H9NqWtVvUOT9cZbMlDR6bO1w==
+"@parcel/node-resolver-core@3.7.1":
+ version "3.7.1"
+ resolved "https://registry.yarnpkg.com/@parcel/node-resolver-core/-/node-resolver-core-3.7.1.tgz#52c13402b997c1037cfe9810162c5cb28c2c0346"
+ integrity sha512-xY+mzz1a5L22HvwkCHtt1fRZa8pD8znXLB8NLnqdu/xa7FGwWNgA2ukFPSlNGwwI5aw3jQylERP8Mr6/qLsefQ==
dependencies:
"@mischnic/json-sourcemap" "^0.1.1"
- "@parcel/diagnostic" "2.15.4"
- "@parcel/fs" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/fs" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
nullthrows "^1.1.1"
semver "^7.7.1"
-"@parcel/optimizer-css@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.15.4.tgz"
- integrity sha512-KQLuqwcvVFTNFtM+bzfvQivwunmhVAngmR4NiI8zQaykidYH28V8YkVAQmpbLbgoGad/UgG7grb0UshvnrQHpw==
+"@parcel/optimizer-css@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/optimizer-css/-/optimizer-css-2.16.1.tgz#819da57cbf6df3d6e81dadd790064c455902adff"
+ integrity sha512-MIbeqxqcbtGksiNzIvFeMU++gsBl8MafQRghQxsB1kAMl49i+Cnj/Kp3qKkHd+Bb2XXlx7TagGtXCnCrtxdJjw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
+ "@parcel/utils" "2.16.1"
browserslist "^4.24.5"
lightningcss "^1.30.1"
nullthrows "^1.1.1"
-"@parcel/optimizer-html@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/optimizer-html/-/optimizer-html-2.15.4.tgz"
- integrity sha512-gBvt6RdDVMyO1Flvdtc8DxpxLgIXhaKuVXEjHdAP7sEW0SMdSd6r/tl6Plmcszig7sDwhDf6IsQOIvbzGHYZZg==
+"@parcel/optimizer-html@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/optimizer-html/-/optimizer-html-2.16.1.tgz#dfce11c6a6e34438ed2ca1c411b87391d58785bc"
+ integrity sha512-AwrecuOOuWqlon+rWJsQuXyJ70ivTbjm505NTBKoQYdVeEbO6pZYYeuF8ZKh0Qq+zOCy47397RgEuiuwLf9t2g==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
-"@parcel/optimizer-image@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.15.4.tgz"
- integrity sha512-M8fo7eEL6JRcmLhSX9pUUGU4MPrPrE9cMNcwIt3DQLnSvQ+sshhUDa6t9hKWeHHhs16BHvxrvksN2TIbkgHODQ==
+"@parcel/optimizer-image@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/optimizer-image/-/optimizer-image-2.16.1.tgz#37ca92c4de90148c63671eca731e641ce832e8c7"
+ integrity sha512-vlQW0DJQ0XTmM/rNwJUuLbTeB31CwyH2yb2RMZfByAGGodpy2vxt51NS/KyV1mNcJRBtW2Li+XVzYSb14dF5Bw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
- "@parcel/workers" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
+ "@parcel/workers" "2.16.1"
-"@parcel/optimizer-svg@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/optimizer-svg/-/optimizer-svg-2.15.4.tgz"
- integrity sha512-pPdjRaLPqjAEROXIHLc6JWLLki56alhuUNbalhLqBCgktZrrq2dGCjBEVgxqRczc9D+ePCX/e/xci4tC0Tkcbg==
+"@parcel/optimizer-svg@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/optimizer-svg/-/optimizer-svg-2.16.1.tgz#c660c9c36b58c3d0d8d92df1b325899441935883"
+ integrity sha512-dpAlCrbITPQr5RpuSjr91pfkQumxOzyiaRM39kMwjsTrYa2/F/JCoPKJZMSMyODvB9MZAz2qfGkWbj/Xb+a1NQ==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
-"@parcel/optimizer-swc@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/optimizer-swc/-/optimizer-swc-2.15.4.tgz"
- integrity sha512-2m5cYESVCq6AGx252eSTArZ1Oc1Ve4GBGL7NhvgbNqOthyXlc2qAed6rCkARrBd8pfEl5+2XHeK1ijDAZdIZ/A==
+"@parcel/optimizer-swc@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/optimizer-swc/-/optimizer-swc-2.16.1.tgz#39a7269c0363e1d590165d1af747f1ebe126abcc"
+ integrity sha512-mZtrISSio541K4IH0cT90c143YOvAhOs04RrBGs12WjtHOVTASt0V3gVhstP4W3HvtVNbkJ4mAtUiuC7xtuHJw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
+ "@parcel/utils" "2.16.1"
"@swc/core" "^1.11.24"
nullthrows "^1.1.1"
-"@parcel/package-manager@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.15.4.tgz"
- integrity sha512-KZONBcEJ24moQdrpU0zJh9CYk3KKbpB5RUM70utAORem1yQKms+0Y4YED3njq6nZzbgwUN/Csc+powUHLZStvg==
+"@parcel/package-manager@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/package-manager/-/package-manager-2.16.1.tgz#8eaaaf36ed468d8ac0f74f580b19e4339ae4dac4"
+ integrity sha512-HDMT0+L7kMBG+YgkxaNv/1nobFRgygte9e0QuYiSVMngdbYvXw9Yy8tEDeWEAOKWs0rGtPXJD6k9gP8/Aa3VQw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/fs" "2.15.4"
- "@parcel/logger" "2.15.4"
- "@parcel/node-resolver-core" "3.6.4"
- "@parcel/types" "2.15.4"
- "@parcel/utils" "2.15.4"
- "@parcel/workers" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/fs" "2.16.1"
+ "@parcel/logger" "2.16.1"
+ "@parcel/node-resolver-core" "3.7.1"
+ "@parcel/types" "2.16.1"
+ "@parcel/utils" "2.16.1"
+ "@parcel/workers" "2.16.1"
"@swc/core" "^1.11.24"
semver "^7.7.1"
-"@parcel/packager-css@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.15.4.tgz"
- integrity sha512-bzSaNf+I5lmJFu95wSG2k7pGwjCDesZsV6Y9sozIL2LoSxqvkGhm/ABXAa3Ed7dLe3tSAEBzJcyqShQgLzSzuw==
+"@parcel/packager-css@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/packager-css/-/packager-css-2.16.1.tgz#bbfa053d0d75a1e9754389cc532ae5c839a13fe7"
+ integrity sha512-N4Ex89dqoprdDoSusM2qveQcpl9zdaQmZtW81xIMFK5+ruaBcKy6Rzyao8LWnbg4wfeNVE0zVkZEq7k3oxbCBA==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
+ "@parcel/utils" "2.16.1"
lightningcss "^1.30.1"
nullthrows "^1.1.1"
-"@parcel/packager-html@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.15.4.tgz"
- integrity sha512-Uayux6A2Anm66Kmq22QhD0TuVp9LiRCMuPUzBd6n4ekNlG0Lzm6K3/okMkPG65nKbNjq5qcPscFWlDxggvjt2g==
+"@parcel/packager-html@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/packager-html/-/packager-html-2.16.1.tgz#c0c53d5ebd50cc565675835d8476becc05d307ae"
+ integrity sha512-QleJQl63DC2AaIQ2rHS3d46zhGrIoxBz1QKDfgYoG+YxpG8nAKFgI3YBCMNwUYU4pVpNWxmLP/MRKNz9hVxL9Q==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/types" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/types" "2.16.1"
+ "@parcel/utils" "2.16.1"
-"@parcel/packager-js@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.15.4.tgz"
- integrity sha512-96bqhs1jyd28CfWQD+Yn8rSsd1ar7voHWyBtMLimsK+bDJIzL26Z7jWyRDwXRuLErYC01EoXRIRctxtmeRVJ2Q==
+"@parcel/packager-js@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/packager-js/-/packager-js-2.16.1.tgz#e57d2e12b4cf7f9ddea067bd6e40a38890634d10"
+ integrity sha512-jTxUhGVqZdierdjeGCJiuVBSBU8iVqp3A0BT/RCpcB0YYY3dymDHTQrAFw8h2kJ0ZcfQEr6BeFIU4RBTuM1xow==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/types" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/types" "2.16.1"
+ "@parcel/utils" "2.16.1"
globals "^13.24.0"
nullthrows "^1.1.1"
-"@parcel/packager-raw@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.15.4.tgz"
- integrity sha512-CaSpDt5jjcO0SYCtsDhw6yfTDQuDFQ875H42W/ftvSQL7RfLRljPthnbdcy9chvKBbvRBQF+0z8Sxwehrd5hsA==
+"@parcel/packager-raw@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/packager-raw/-/packager-raw-2.16.1.tgz#c742671b90d7b97ca32ca471df957fc2ec7e71ba"
+ integrity sha512-EYTGl4uKGu0HVFlCZtUcwo+aNr8/9BiXZyY1crd4SRF1cioKYpgLZKv31z1uNiaDrTxIRH8hWNnjPWAxj382NA==
dependencies:
- "@parcel/plugin" "2.15.4"
+ "@parcel/plugin" "2.16.1"
-"@parcel/packager-svg@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.15.4.tgz"
- integrity sha512-qHsyOgnzoA2XGMLIYUnX79XAaV327VTWQvIzju/OmOjcff4o3uiEcNL8w9k3p2w2oPXOLoQ0THMiivoUQSM8GQ==
+"@parcel/packager-svg@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/packager-svg/-/packager-svg-2.16.1.tgz#d22814cb949e84572c305adc52a95d36f853960f"
+ integrity sha512-DQJtFyjurSDu135vvDd0DDFjyaTS8eX9Gl8wS33fPh31PgeqbSYGSe6vtlIw5NHWSTgqvxGmwAf1HYY9WgEGTw==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/types" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/types" "2.16.1"
+ "@parcel/utils" "2.16.1"
-"@parcel/packager-wasm@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/packager-wasm/-/packager-wasm-2.15.4.tgz"
- integrity sha512-YPVij7zrBchtXr/y29P4uh3C/+19PMhhLibYF/8oMJKkFkeU3Uv00/XLm915vdBPrIPjgw0YuIfLzUKip1uGtg==
+"@parcel/packager-wasm@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/packager-wasm/-/packager-wasm-2.16.1.tgz#bafe7bd3fe719dfd4f79bb1027cf9f52b2ab161c"
+ integrity sha512-Do/5Cr4yckpWqeQyhiPqwDbbg+nwj20BGIP9edYIL9XAmCh8ARBwntFWmcSpeNdGp+DSJKQ28SgWCT/5cyyoig==
dependencies:
- "@parcel/plugin" "2.15.4"
+ "@parcel/plugin" "2.16.1"
-"@parcel/plugin@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.15.4.tgz"
- integrity sha512-XVehjmzk8ZDOFf/BXo26L76ZqCGNKIQcN2ngxAnq0KRY/WFanL8yLaL0qQq+c9whlu09hkGz1CuhFBLAIjJMYQ==
+"@parcel/plugin@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/plugin/-/plugin-2.16.1.tgz#5c8969ea2a11aff4a99160f34d523e485399b76f"
+ integrity sha512-/5hdgMFjd4pRZelfzWVAEWEH51qCHGB6I3z4mV3i8Teh0zsOgoHJrn1t+sVYkhKPDOMs16XAkx2iCMvEcktDrA==
dependencies:
- "@parcel/types" "2.15.4"
+ "@parcel/types" "2.16.1"
-"@parcel/profiler@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/profiler/-/profiler-2.15.4.tgz"
- integrity sha512-ezVZlttUmQ1MQD5e8yVb07vSGYEFOB59Y/jaxL9mGSLZkVhMIIHe/7SuA+4qVAH8dlg6bslXRqlsunLMPEgPsg==
+"@parcel/profiler@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/profiler/-/profiler-2.16.1.tgz#7eb26dde61b0938e9effaaa06e830abb6d798449"
+ integrity sha512-9VKswpixK5CggxqoEoThiusnRbqU48QIWwmGQhaTV9iBYi9m/LhEYUoTa8K/KQ70yJknghMMNc1JfAvt2bfh5w==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/events" "2.15.4"
- "@parcel/types-internal" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/events" "2.16.1"
+ "@parcel/types-internal" "2.16.1"
chrome-trace-event "^1.0.2"
-"@parcel/reporter-cli@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.15.4.tgz"
- integrity sha512-us0HIwuJqpSguf+yi4n8foabVs26JGvRB/eSOf0KkRldxFciYLn4NJ8rt3Xm1zvxlDiSkD4v2n77u+ouIZ+AEQ==
+"@parcel/reporter-cli@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/reporter-cli/-/reporter-cli-2.16.1.tgz#742345d27f880894703a3984ea74adc550e86663"
+ integrity sha512-+P4Nvg5a2GnOpsIf93U75JjPgltrAmGTCVyRpbeBo45uFBvHGKPX5O7Vn7rl1wWunNobOAxn6F9JxPCApcw79A==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/types" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/types" "2.16.1"
+ "@parcel/utils" "2.16.1"
chalk "^4.1.2"
term-size "^2.2.1"
-"@parcel/reporter-dev-server@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.15.4.tgz"
- integrity sha512-uCNeDyArNNXI9YThlxyTx7+5ZSxlewyUdyrLdDZCqvn8s1xNB9W8sUNVps7mJZQSc+2ZRk3wyDemURD67uJk/A==
+"@parcel/reporter-dev-server@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/reporter-dev-server/-/reporter-dev-server-2.16.1.tgz#6af88161a2d610d27d0e84f1495caba0bac742ee"
+ integrity sha512-xTVhfnt3Se5BTLC/Dp4pBmytqdZcVyqDExJ39N9mi76/CW0XNDcMqRFACxQltu/ahxmUYYyFtpiXis5Daf9xzQ==
dependencies:
- "@parcel/codeframe" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/codeframe" "2.16.1"
+ "@parcel/plugin" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
+ "@parcel/utils" "2.16.1"
-"@parcel/reporter-tracer@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/reporter-tracer/-/reporter-tracer-2.15.4.tgz"
- integrity sha512-9W1xsb/FtobCQ4z847nI6hFDaTZHLeThv/z05EF77R30RX2k+unG9ac5NQB1v4KLx09Bhfre32+sjYNReWxWlg==
+"@parcel/reporter-tracer@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/reporter-tracer/-/reporter-tracer-2.16.1.tgz#df2399594524fa78cc440d16b22bac2511d3ec69"
+ integrity sha512-MDDzZx5j0yer+jTP/gBEPiMDzOAeKy7I0pLyPuntwKWnAiaG+TRaQPp8xXQhW6ZxIQIqsHkfUJoTksuFTla+tA==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
chrome-trace-event "^1.0.3"
nullthrows "^1.1.1"
-"@parcel/resolver-default@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.15.4.tgz"
- integrity sha512-4uKo3FFnubtIc4rM9jZiQQXpa1slawyRy5btJEfTFvbcnz0dm3WThLrsPDMfmPwNr9F/n5x8yzDLI6/fZ/elgA==
+"@parcel/resolver-default@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/resolver-default/-/resolver-default-2.16.1.tgz#3c6580edff4d67e17ba071ebd276582263486f09"
+ integrity sha512-UmnZClD4nWusNTpfC7WaNUfPNnNbjgrIR1l3kOAU+X/b/HJWczzMNIZGTw3rypV0df6XpQlrUrHc85NJ6aRlLA==
dependencies:
- "@parcel/node-resolver-core" "3.6.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/node-resolver-core" "3.7.1"
+ "@parcel/plugin" "2.16.1"
-"@parcel/runtime-browser-hmr@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.15.4.tgz"
- integrity sha512-KRGzbxDUOQUkrJKxxY0WyU7oVaa9TvWTRlpuGJXzQJs/hw8vkAAoAm8+ptpypvBC8LnxFHzGbSyHPfL8C8MQOw==
+"@parcel/runtime-browser-hmr@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.16.1.tgz#b0b4b7abec70a466e2e0fd870e21552e2bea4369"
+ integrity sha512-W8Os+1ORHLJmzX+av76DQkyX4RLndhhB4u1o43P55UfAaV3URcc2I0tNQ/wZKA7qU2DhcdoXijMok7VRUfS0jw==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
-"@parcel/runtime-js@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.15.4.tgz"
- integrity sha512-zNRK+693CMkYiA0ckjPOmz+JVHD9bVzp27itcMyuDH6l/Or8m09RgCC4DIdIxBqiplsDSe39DwEc5X7b0vvcjw==
+"@parcel/runtime-js@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/runtime-js/-/runtime-js-2.16.1.tgz#013d9458c47503f402ecf78033785d430f6671ae"
+ integrity sha512-Ck7DJw1QmeYiQ17z0Q3mtDl6fH1VPrORmygb2CYcGAIOfIbvXV74vRss1NqpScU8QTjN0qpL4Ve8txwoISgIAg==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/runtime-rsc@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/runtime-rsc/-/runtime-rsc-2.15.4.tgz"
- integrity sha512-yHc4HEwzCQYLqa6Q1WtZ8xJeaDAk0p2i0b3ABq2I+izmRjer4jertlsEwh9mf9Z1eUGtJobdGYzl8Ai1VfhC3g==
+"@parcel/runtime-rsc@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/runtime-rsc/-/runtime-rsc-2.16.1.tgz#4a0f95483863e09d7ce2faa46e91970d46e7f7b6"
+ integrity sha512-waNc2gBWxfaUcvPtPAtjWwRLYLuMPHyu+JMgHV7txsv3JZnPNieUvTPbqeARbpsVpk2xTgFnAGS3HBfw5QW/Eg==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/runtime-service-worker@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.15.4.tgz"
- integrity sha512-NGq/wS34GIVzo2ZURBjCqgHV+PU7eTcngCzmmk/wrCEeWnr13ld+CAIxVZoqyNJwYsF6VQanrjSM2/LhCXEdyA==
+"@parcel/runtime-service-worker@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/runtime-service-worker/-/runtime-service-worker-2.16.1.tgz#6b30b32d9a26f03efcd8509f23aa50cda4b9e5ee"
+ integrity sha512-YiM/SS8rk/sBFdA8YFxlviO5FhAjzjBVAzzlnNG0qe3xLmqBfzHzW+RNf0/KblWRhxHCwmUDmzgE2ybaDeL3Lw==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/rust-darwin-arm64@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/rust-darwin-arm64/-/rust-darwin-arm64-2.15.4.tgz"
- integrity sha512-cEpNDeEtvM5Nhj0QLN95QbcZ9yY6Z5W3+2OeHvnojEAP8Rp1XGzqVTTZdlyKyN1KTiyfzIOiQJCiEcr+kMc5Nw==
+"@parcel/rust-darwin-arm64@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-darwin-arm64/-/rust-darwin-arm64-2.16.1.tgz#9172c03d5f9fe08a8457d1646e11cd3119b96d3e"
+ integrity sha512-6J1pnznHYzH1TOQbDZmbGa6bXNW+KXbD+XIihvQOid42DLGJNXRmwMmCU3en/759lF/pfmzmR7sm6wPKaKGfbg==
-"@parcel/rust-darwin-x64@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-darwin-x64/-/rust-darwin-x64-2.15.4.tgz#1556299e41cd3bd67391c613a892f0f5812a454a"
- integrity sha512-jL9i13sXKeBXXz8Z3BNYoScPOi+ljBA0ubAE3PN5DCoAA6wS4/FsAiRSIUw+3uxqASBD7+JvaT5sDUga1Xft5g==
+"@parcel/rust-darwin-x64@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-darwin-x64/-/rust-darwin-x64-2.16.1.tgz#eedfe6cc7692c9308501ee78a1b532bacd44f910"
+ integrity sha512-NDZpxleSeJ0yPx4OobDcj+z5x6RzsWmuA1RXBDuCKhf2kyXKP3+kfmrQew/7Q0r9uKA5pqCIw0W4eFqy4IoqIA==
-"@parcel/rust-linux-arm-gnueabihf@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-linux-arm-gnueabihf/-/rust-linux-arm-gnueabihf-2.15.4.tgz#514e3c7ae6b1eaca91a345ef5c705e95458f41ea"
- integrity sha512-c8HpVdDugCutlMILoOlkTioih9HGJpQrzS2G3cg/O1a5ZTacooGf3eGJGoh6dUBEv9WEaEb6zsTRwFv2BgtZcA==
+"@parcel/rust-linux-arm-gnueabihf@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-linux-arm-gnueabihf/-/rust-linux-arm-gnueabihf-2.16.1.tgz#d396feb7c000d6f2311520641fb4c98e9eb31230"
+ integrity sha512-xLLcbMP38ya8/z5esp3ypN2htxO9AsY4uQqF2rigIUZ2abQwL4MPKxfVZtrExWdcrcWiFUbiwn3+GKu/0M9Yow==
-"@parcel/rust-linux-arm64-gnu@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-linux-arm64-gnu/-/rust-linux-arm64-gnu-2.15.4.tgz#78aaf9aa9be92a764eb76d013c580679eb12b44e"
- integrity sha512-Wcfs/JY4FnuLxQaU+VX2rI4j376Qo2LkZmq4zp9frnsajaAqmloVQfnbUkdnQPEL4I38eHXerzBX3LoXSxnZKA==
+"@parcel/rust-linux-arm64-gnu@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-linux-arm64-gnu/-/rust-linux-arm64-gnu-2.16.1.tgz#7c80b7c283fafbcdfeb905e9ab5042415ad02fe4"
+ integrity sha512-asZlimUq1wBmj2PDcoBSKD1SJvcLf1mXTcYGojOsA3dqkOOz7fGz7oubqZYn6IM+02cUDO4ekH+YBV6Eo7XlTg==
-"@parcel/rust-linux-arm64-musl@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-linux-arm64-musl/-/rust-linux-arm64-musl-2.15.4.tgz#c6d2cde97139d5329288cb44325534fe12a66659"
- integrity sha512-xf9HxosEn3dU5M0zDSXqBaG8rEjLThRdTYqpkxHW/qQGzy0Se+/ntg8PeDHsSG5E9OK8xrcKH46Lhaw0QBF/Zw==
+"@parcel/rust-linux-arm64-musl@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-linux-arm64-musl/-/rust-linux-arm64-musl-2.16.1.tgz#84a2af035b9ac7230ce01d470a6ba4914690fab7"
+ integrity sha512-japSgrHYDD+uNHQ8TEdEhpiWu0zWMVBE48W3HJ5FKkwUOY51whZa8w0lhYW88ykUDYtEEd1ipvflv0fSDFY1jw==
-"@parcel/rust-linux-x64-gnu@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-linux-x64-gnu/-/rust-linux-x64-gnu-2.15.4.tgz#476cbb6544117abca7e6f1b3c84737f2ad7182b4"
- integrity sha512-RigXVCFj6h0AXmkuxU61rfgYuW+PXBR6qSkR2I20yKnAXoMfxLaZy9YJ3sAPMEjT9zXgzGAX+3syItMF+bRjaw==
+"@parcel/rust-linux-x64-gnu@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-linux-x64-gnu/-/rust-linux-x64-gnu-2.16.1.tgz#f0a57da43b1129e8d4410c9b6e4322073b5170f5"
+ integrity sha512-A2LHDou7QDsKn3qlE+DHTBFqnjk0Hy1dhVEJgPgvW4N0XMa4x2JEcnLI9oFZ4KDXyMLGs0H6/smZ88zSdFoF3w==
-"@parcel/rust-linux-x64-musl@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-linux-x64-musl/-/rust-linux-x64-musl-2.15.4.tgz#76b62af4f6d7539f2d6dcaf0e0b84e76065116e2"
- integrity sha512-tHlRgonSr5ca8OvhbGzZUggCgCOirRz5dHhPSCm4ajMxeDMamwprq6lKy0sCNTXht4TXIEyugBcfEuRKEeVIBw==
+"@parcel/rust-linux-x64-musl@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-linux-x64-musl/-/rust-linux-x64-musl-2.16.1.tgz#1377c1295719212e949d56bdf20482b6c9084e72"
+ integrity sha512-C+WgGbmIV1XxXUgNJdXpfZazqizYBvy7aesh8Z74QrlY99an/puQufd4kSbvwySN5iMGPSpN0VlyAUjDZLv9rQ==
-"@parcel/rust-win32-x64-msvc@2.15.4":
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/@parcel/rust-win32-x64-msvc/-/rust-win32-x64-msvc-2.15.4.tgz#f64fade58dffe390754acc641a1a65950104a22e"
- integrity sha512-YsX6vMl/bfyxqZSN7yiaZQKLoJKELSZYcvg8gIv4CF1xkaTdmfr6gvq2iCyoV+bwrodNohN4Xfl8r7Wniu1/UA==
+"@parcel/rust-win32-x64-msvc@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust-win32-x64-msvc/-/rust-win32-x64-msvc-2.16.1.tgz#645868a6e6698addffc6fec2bf281c268f7876ec"
+ integrity sha512-m8LoaBJfw5nv/4elM/jNNhWL5/HqBHNQnrbnN89e8sxn4L/zv9bPoXqHOuZglXwyB5velw1MGonX9Be/aK00ag==
-"@parcel/rust@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/rust/-/rust-2.15.4.tgz"
- integrity sha512-OxOux8z8YEYg23+15uMmYaloFp3x1RwcliBay6HqxUW7RTmtI1/z+xd8AtienCckACD60gvDGy04LjgbEGdJVg==
+"@parcel/rust@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/rust/-/rust-2.16.1.tgz#1d41bbd3afdbc2c3801c1fef8638569b155bfa50"
+ integrity sha512-lQkf14MLKZSY/P8j1lrOgFvMCt95dO+VdXIIM2aHjbxnzYSIGgHIt2XDVtKULE+DexaYZbleA0tTnX8AABUIyQ==
optionalDependencies:
- "@parcel/rust-darwin-arm64" "2.15.4"
- "@parcel/rust-darwin-x64" "2.15.4"
- "@parcel/rust-linux-arm-gnueabihf" "2.15.4"
- "@parcel/rust-linux-arm64-gnu" "2.15.4"
- "@parcel/rust-linux-arm64-musl" "2.15.4"
- "@parcel/rust-linux-x64-gnu" "2.15.4"
- "@parcel/rust-linux-x64-musl" "2.15.4"
- "@parcel/rust-win32-x64-msvc" "2.15.4"
+ "@parcel/rust-darwin-arm64" "2.16.1"
+ "@parcel/rust-darwin-x64" "2.16.1"
+ "@parcel/rust-linux-arm-gnueabihf" "2.16.1"
+ "@parcel/rust-linux-arm64-gnu" "2.16.1"
+ "@parcel/rust-linux-arm64-musl" "2.16.1"
+ "@parcel/rust-linux-x64-gnu" "2.16.1"
+ "@parcel/rust-linux-x64-musl" "2.16.1"
+ "@parcel/rust-win32-x64-msvc" "2.16.1"
"@parcel/source-map@^2.1.1":
version "2.1.1"
@@ -2363,160 +2476,160 @@
dependencies:
detect-libc "^1.0.3"
-"@parcel/transformer-babel@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.15.4.tgz"
- integrity sha512-rb4nqZcTLkLD3nvuYJ9wwNb8x6cajBK2l6csdYMLEI4516SkIzkO/gs2cZ9M5q+CMhxAqpdEnrwektbOtQQasg==
+"@parcel/transformer-babel@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-babel/-/transformer-babel-2.16.1.tgz#5d740a43a52896122552af3cf30b6f2c450a3da0"
+ integrity sha512-/wjA5RaptiRMp+IxYOMiGlKDaymiEpwMJOPFvW0kDjvhrl40SqGfP4GgY3jV3N2GdC5jBpesDvo2RYd4/xaT9g==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
+ "@parcel/utils" "2.16.1"
browserslist "^4.24.5"
json5 "^2.2.3"
nullthrows "^1.1.1"
semver "^7.7.1"
-"@parcel/transformer-css@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.15.4.tgz"
- integrity sha512-6tVwSJsOssXgcB5XMAQGsexAffoBEi8GVql3YQqzI1EwVYs9zr+B5mfbesb4aWcegR02w99NHJYFP9CrOr3SWw==
+"@parcel/transformer-css@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-css/-/transformer-css-2.16.1.tgz#4e879fb517bdf411e06b8a7b94dbe813edbc0348"
+ integrity sha512-4lcrJFE1EdZ2z0Px0ynH+Eajg1vIoZzdqqz2x3UgWrkYVM4WHpZe/w7r2OCafyuobhJR4XYKTqxIYdHo4xWpiw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
+ "@parcel/utils" "2.16.1"
browserslist "^4.24.5"
lightningcss "^1.30.1"
nullthrows "^1.1.1"
-"@parcel/transformer-html@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.15.4.tgz"
- integrity sha512-gzYPbbyEuV8nzPojw86eD5Kf93AYUWcY8lu33gu0XHROJH7mq5MAwPwtb/U+EfpeCd0/oKbLzA2mkQksM1NncQ==
+"@parcel/transformer-html@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-html/-/transformer-html-2.16.1.tgz#34e9293629f4ffb7403d312309d58c0c78f479d0"
+ integrity sha512-9OP4f5JSKeDMP1LGJx4BMcMTqiF+uc+3Sum4zrlMBN6EuhYlj02IpcsHMWxZuY0uow/nnwY+aB3X83Bk3AFC1Q==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
-"@parcel/transformer-image@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.15.4.tgz"
- integrity sha512-KOVwj2gKjUybuzHwarC/YVqRf3r2BD4/2ysckozj6DIji/bq3fd2rE9yqxWXO+zt918PsOSTzMKwRnaseaXLKQ==
+"@parcel/transformer-image@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-image/-/transformer-image-2.16.1.tgz#7997db173c01bea847ead8e3289a3de4d874b9c8"
+ integrity sha512-VyV8LMIK+7jtELpHky9MhD1hZl6YQ9F7LWIsPhrJ938HJEDwEQbZmiAJmMY9IV5kBOhhF3eGXSr/uSFA/F+Wcw==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
- "@parcel/workers" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
+ "@parcel/workers" "2.16.1"
nullthrows "^1.1.1"
-"@parcel/transformer-js@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.15.4.tgz"
- integrity sha512-HX76PalPjqCLmXJnuSeMr2km8WlnUsW8oaRZ6FuZtSo9QD8BqIcwKGxSbIy9JHkObBgmrMOVpGtYrJM4/BlYbg==
+"@parcel/transformer-js@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-js/-/transformer-js-2.16.1.tgz#827dffb9ebaddeef45b5684d52ab0461959fa077"
+ integrity sha512-GPQ3X9UqrlLDBg06u7rG+IZNT9Kl+7+6gY7qJkrw4If1JnmW5O+xVR8zHe/P+6BvxJnOg0iFqzUueZacYHmHzw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
"@parcel/source-map" "^2.1.1"
- "@parcel/utils" "2.15.4"
- "@parcel/workers" "2.15.4"
+ "@parcel/utils" "2.16.1"
+ "@parcel/workers" "2.16.1"
"@swc/helpers" "^0.5.0"
browserslist "^4.24.5"
nullthrows "^1.1.1"
regenerator-runtime "^0.14.1"
semver "^7.7.1"
-"@parcel/transformer-json@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.15.4.tgz"
- integrity sha512-1ASeOSH3gPeaXyy/TZ7ce2TOfJ3ZeK5SBnDs+MM8LFcQsTwdRJKjX/4Qq9RgtMRryYAGHgMa09Gvp9FuFRyd+w==
+"@parcel/transformer-json@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-json/-/transformer-json-2.16.1.tgz#6bf0dec136259eae9d295ebb0455363e4561e4ca"
+ integrity sha512-LdRdPZiBPvSKHr0KeDnLpGxqPen1OV3nvkrjZex28TluaiHFLPOCC4AQOcJ4xhDNPCzt1bONjJ6QhkYjfogNqw==
dependencies:
- "@parcel/plugin" "2.15.4"
+ "@parcel/plugin" "2.16.1"
json5 "^2.2.3"
-"@parcel/transformer-node@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-node/-/transformer-node-2.15.4.tgz"
- integrity sha512-zV5jvZA971eQMcFtaWZkW1UfAH/G6XVM/87oJ2B4ip9o9aKUWIl296rrfg2xWxUQyPhy11B17CJ6b8NgieqqrQ==
+"@parcel/transformer-node@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-node/-/transformer-node-2.16.1.tgz#3f9dd0e8140f4e6a6c3327fbc888ea28aa61c52e"
+ integrity sha512-gclbMgvT8jNyTMFb5PeH0wni8N66dGMWgy381HZrRbkcb4KAw+PGLznrDng72Qyo/OxvEwK/IVkACz6EVoBygA==
dependencies:
- "@parcel/plugin" "2.15.4"
+ "@parcel/plugin" "2.16.1"
-"@parcel/transformer-postcss@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.15.4.tgz"
- integrity sha512-cNueSpOj3ulmMX85xr9clh/t0+mzVE+Q3H7Cf/OammqUkG/xjmilq4q7ZTgQFyUtUdWpE9LWWHojbJuz6k2Ulw==
+"@parcel/transformer-postcss@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-postcss/-/transformer-postcss-2.16.1.tgz#0c0285ee4ed733a57aee1e2bd7a19d892cdde502"
+ integrity sha512-fw252N0Lx3sZ2+XwiwhAD1350k5wx0Ez4c83wm8cVMsMSV4qW5LHFmfh2+2iHYxbUj0vqCPCmo1hoiNvmixqKg==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
+ "@parcel/utils" "2.16.1"
clone "^2.1.2"
nullthrows "^1.1.1"
postcss-value-parser "^4.2.0"
semver "^7.7.1"
-"@parcel/transformer-posthtml@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.15.4.tgz"
- integrity sha512-dETI+CeKMwu5Dpvu8BrQtex6nwzbNWKQkXseiM5x6+Wf3j9RD2NVpAMBRMjLkw1XlC9Whz1egxLSgKlMKbjg0w==
+"@parcel/transformer-posthtml@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-posthtml/-/transformer-posthtml-2.16.1.tgz#22db08ea572f96c09a7b7e2fc2ce43dd26d4505d"
+ integrity sha512-QUdA4Q3nw2WPPkFeVzvTxq4tOkAxOmm1miP8FjXTeM6kOoYI296HIhqqMhiXj6BZ4J+zc/J+WpUCkYFDfEWScA==
dependencies:
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
-"@parcel/transformer-raw@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.15.4.tgz"
- integrity sha512-pY2j09UCW2v1fwQtVLlCztSdPOxhq0YcWmTHCk/mRp8zuUR+eyHgsz48FrUxRF7cr/EBjc0zlFcregRMRcaTMg==
+"@parcel/transformer-raw@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-raw/-/transformer-raw-2.16.1.tgz#5ea80a1902dcffb120a3b3f621bfc87f5e034e44"
+ integrity sha512-wiNtbiXsXpdHNO1hGqTQNYQKKuwGcfz7pL/3Em+ucyqeaURXhRQVs5QIwCGIvHiVlS/5OrxPoVWSNA6d0oicAg==
dependencies:
- "@parcel/plugin" "2.15.4"
+ "@parcel/plugin" "2.16.1"
-"@parcel/transformer-react-refresh-wrap@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.15.4.tgz"
- integrity sha512-MgoQrV8+BVjrczAns5ZZbTERGB3/U4MaCBmbg3CuiTiIyS8IJQnGi+OhYRdKAB4NlsgpMZ5T2JrRbQUIm9MM8Q==
+"@parcel/transformer-react-refresh-wrap@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.16.1.tgz#c6bf40d4dbea76fc017ff5d7dd7794a1bbea331c"
+ integrity sha512-mUIA80/KtT3lz1Zep0t5VDqndSg0pqnkVdpBAn3QUABtT/2KR6Kr6YxFsxGAAN0BZ+Xnx92uPmQjhlkviVAk6g==
dependencies:
- "@parcel/error-overlay" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/error-overlay" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/utils" "2.16.1"
react-refresh "^0.16.0"
-"@parcel/transformer-svg@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.15.4.tgz"
- integrity sha512-Q22e0VRbx62VXFlvJWIlc8ihlLaPQgtnAZz5E1/+ojiNb+k0PmIRjNJclVWPF6IdCsLO5tnGfUOaXe2OnZz28Q==
+"@parcel/transformer-svg@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/transformer-svg/-/transformer-svg-2.16.1.tgz#a9681211769770a3ae51b05e46c26ecb1ce58969"
+ integrity sha512-OBB0kDjDAAgNzcVqxo/igd+iQL3EDbo8C36JzvH07zR72OXErAdJhTdgtfRq4fqFtMyLyBLT/s3Z37c1GzLoCQ==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/plugin" "2.15.4"
- "@parcel/rust" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/plugin" "2.16.1"
+ "@parcel/rust" "2.16.1"
-"@parcel/types-internal@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/types-internal/-/types-internal-2.15.4.tgz"
- integrity sha512-kl5QEZ8PTWRvMkwmk7IG3VpP/5/MSGwt9Nrj9ctXLdZkDdXZpK7IbXAthLQ4zrByMaqZULL2IyDuBqBgfuAqlQ==
+"@parcel/types-internal@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/types-internal/-/types-internal-2.16.1.tgz#fe8115356d95259fd951ba08e1a3c37e2cbb96c1"
+ integrity sha512-HVCHm0uFyJMsu30bAfm/pd0RNsXRWX0mUXaDHzGJRZ2Yer53JA6elRwkgrPz1KosBA+OuNU/G8atXfCxPMXdKw==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/feature-flags" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/feature-flags" "2.16.1"
"@parcel/source-map" "^2.1.1"
utility-types "^3.11.0"
-"@parcel/types@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/types/-/types-2.15.4.tgz"
- integrity sha512-fS3UMMinLtzn/NTSx/qx38saBgRniylldh0XZEUcGeME4D2Llu/QlLv+YZ/LJqrFci3fPRM+YAn2K+JT/u+/0w==
+"@parcel/types@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/types/-/types-2.16.1.tgz#22844b16080515cfea3e6f2cd7849db8cb6d3d44"
+ integrity sha512-RFeomuzV/0Ze0jyzzx0u/eB4bXX6ISxrARA3k/3c7MQ+jaoY67+ELd8FwPV6ZmLqvvYIFdGiCZl6ascCABKwgg==
dependencies:
- "@parcel/types-internal" "2.15.4"
- "@parcel/workers" "2.15.4"
+ "@parcel/types-internal" "2.16.1"
+ "@parcel/workers" "2.16.1"
-"@parcel/utils@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/utils/-/utils-2.15.4.tgz"
- integrity sha512-29m09sfPx0GHnmy1kkZ5XezprepdFGKKKUEJkyiYA4ERf55jjdnU2/GP4sWlZXxjh2Y+JFoCAFlCamEClq/8eA==
+"@parcel/utils@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/utils/-/utils-2.16.1.tgz#c47161198cdb9bf4fef1e2f21d274032c089a67c"
+ integrity sha512-aoY6SCfAY7X6L39PFOsWNNcAobmJr4AJEgco+PJ2UAPFiHhkBZfUofXCwna5GHH5uqXZx6u3rAHiCUrM3bEDXg==
dependencies:
- "@parcel/codeframe" "2.15.4"
- "@parcel/diagnostic" "2.15.4"
- "@parcel/logger" "2.15.4"
- "@parcel/markdown-ansi" "2.15.4"
- "@parcel/rust" "2.15.4"
+ "@parcel/codeframe" "2.16.1"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/logger" "2.16.1"
+ "@parcel/markdown-ansi" "2.16.1"
+ "@parcel/rust" "2.16.1"
"@parcel/source-map" "^2.1.1"
chalk "^4.1.2"
nullthrows "^1.1.1"
@@ -2610,16 +2723,16 @@
"@parcel/watcher-win32-ia32" "2.5.1"
"@parcel/watcher-win32-x64" "2.5.1"
-"@parcel/workers@2.15.4":
- version "2.15.4"
- resolved "https://registry.npmjs.org/@parcel/workers/-/workers-2.15.4.tgz"
- integrity sha512-wZ/5/mfjs5aeqhXY0c6fwuaBFeNpOXoOq2CKPSMDXt+GX2u/9/1bpVxN9XeGTAJO+ZD++CLq0hyzTnIHy58nyw==
+"@parcel/workers@2.16.1":
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/@parcel/workers/-/workers-2.16.1.tgz#8a289d4c864c9a17b8e17dce650bdcbd4f14a025"
+ integrity sha512-yEUAjBrSgo5MYAAQbncYbw1m9WrNiJs+xKdfdHNUrOHlT7G+v62HJAZJWJsvyGQBE2nchSO+bEPgv+kxAF8mIA==
dependencies:
- "@parcel/diagnostic" "2.15.4"
- "@parcel/logger" "2.15.4"
- "@parcel/profiler" "2.15.4"
- "@parcel/types-internal" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/logger" "2.16.1"
+ "@parcel/profiler" "2.16.1"
+ "@parcel/types-internal" "2.16.1"
+ "@parcel/utils" "2.16.1"
nullthrows "^1.1.1"
"@pkgjs/parseargs@^0.11.0":
@@ -2637,10 +2750,10 @@
resolved "https://registry.npmjs.org/@pkgr/core/-/core-0.2.7.tgz"
integrity sha512-YLT9Zo3oNPJoBjBc4q8G2mjU4tqIbf5CEOORbUUr48dCD9q3umJ3IPlVqOqDakPfd2HuwccBaqlGhN4Gmr5OWg==
-"@quasar/app-vite@^2.2.1":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@quasar/app-vite/-/app-vite-2.3.0.tgz#c6b91cb3fb18896570289dee4b1bc139dfde2c3f"
- integrity sha512-AHMRa5cdZ/TmV9mJ0jg/fbTMaMtFDfxvOjuPHL75AH6cZHECkXZ7ndTdVM0mU3i6lYwWf8Rx5OEi/PCwAMYJng==
+"@quasar/app-vite@^2.4.0":
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/@quasar/app-vite/-/app-vite-2.4.0.tgz#04640f5657c317100857fec251f5cfa7a701b09b"
+ integrity sha512-nfdcfERQ1bdUFsgXfYexgUAGBrsRHuzlik5p58cKGpYXiwUZZN6mJhN8VxU/zGT0GYHHiNIZlb67N+R52NYd6Q==
dependencies:
"@quasar/render-ssr-error" "^1.0.3"
"@quasar/ssl-certificate" "^1.0.0"
@@ -2649,7 +2762,7 @@
"@types/compression" "^1.7.5"
"@types/cordova" "^11.0.3"
"@types/express" "^4.17.21"
- "@vitejs/plugin-vue" "^5.1.4"
+ "@vitejs/plugin-vue" "^6.0.1"
archiver "^7.0.1"
chokidar "^3.6.0"
ci-info "^4.0.0"
@@ -2677,7 +2790,7 @@
serialize-javascript "^6.0.2"
tinyglobby "^0.2.10"
ts-essentials "^9.4.2"
- vite "^6.1.0"
+ vite "^7.0.3"
webpack-merge "^6.0.1"
"@quasar/extras@^1.17.0":
@@ -2710,6 +2823,11 @@
resolved "https://registry.npmjs.org/@quasar/vite-plugin/-/vite-plugin-1.10.0.tgz"
integrity sha512-4PJoTclz4ZjAfyqe0+hlkKcFJt0e2NX3Ac3hy8ILqUPdtZ24nCo5/xEHvTxZGBQMKRPwwePbO8CVs4n9EKJEug==
+"@rolldown/pluginutils@1.0.0-beta.50":
+ version "1.0.0-beta.50"
+ resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.50.tgz#a12f07e9095b8901debcc17d98b4350f0cc64633"
+ integrity sha512-5e76wQiQVeL1ICOZVUg4LSOVYg9jyhGCin+icYozhsUzM+fHE7kddi1bdiE0jwVqTfkjba3jUFbEkoC9WkdvyA==
+
"@rollup/plugin-babel@^5.2.0":
version "5.3.1"
resolved "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz"
@@ -2764,116 +2882,121 @@
estree-walker "^2.0.2"
picomatch "^4.0.2"
-"@rollup/rollup-android-arm-eabi@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz#731df27dfdb77189547bcef96ada7bf166bbb2fb"
- integrity sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==
+"@rollup/rollup-android-arm-eabi@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz#7e478b66180c5330429dd161bf84dad66b59c8eb"
+ integrity sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==
-"@rollup/rollup-android-arm64@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz#4bea6db78e1f6927405df7fe0faf2f5095e01343"
- integrity sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==
+"@rollup/rollup-android-arm64@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz#2b025510c53a5e3962d3edade91fba9368c9d71c"
+ integrity sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==
-"@rollup/rollup-darwin-arm64@4.34.8":
- version "4.34.8"
- resolved "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz"
- integrity sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==
+"@rollup/rollup-darwin-arm64@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz#3577c38af68ccf34c03e84f476bfd526abca10a0"
+ integrity sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==
-"@rollup/rollup-darwin-x64@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz#c572c024b57ee8ddd1b0851703ace9eb6cc0dd82"
- integrity sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==
+"@rollup/rollup-darwin-x64@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz#2bf5f2520a1f3b551723d274b9669ba5b75ed69c"
+ integrity sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==
-"@rollup/rollup-freebsd-arm64@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz#cf74f8113b5a83098a5c026c165742277cbfb88b"
- integrity sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==
+"@rollup/rollup-freebsd-arm64@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz#4bb9cc80252564c158efc0710153c71633f1927c"
+ integrity sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==
-"@rollup/rollup-freebsd-x64@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz#39561f3a2f201a4ad6a01425b1ff5928154ecd7c"
- integrity sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==
+"@rollup/rollup-freebsd-x64@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz#2301289094d49415a380cf942219ae9d8b127440"
+ integrity sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==
-"@rollup/rollup-linux-arm-gnueabihf@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz#980d6061e373bfdaeb67925c46d2f8f9b3de537f"
- integrity sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==
+"@rollup/rollup-linux-arm-gnueabihf@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz#1d03d776f2065e09fc141df7d143476e94acca88"
+ integrity sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==
-"@rollup/rollup-linux-arm-musleabihf@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz#f91a90f30dc00d5a64ac2d9bbedc829cd3cfaa78"
- integrity sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==
+"@rollup/rollup-linux-arm-musleabihf@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz#8623de0e040b2fd52a541c602688228f51f96701"
+ integrity sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==
-"@rollup/rollup-linux-arm64-gnu@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz#fac700fa5c38bc13a0d5d34463133093da4c92a0"
- integrity sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==
+"@rollup/rollup-linux-arm64-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz#ce2d1999bc166277935dde0301cde3dd0417fb6e"
+ integrity sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==
-"@rollup/rollup-linux-arm64-musl@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz#f50ecccf8c78841ff6df1706bc4782d7f62bf9c3"
- integrity sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==
+"@rollup/rollup-linux-arm64-musl@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz#88c2523778444da952651a2219026416564a4899"
+ integrity sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==
-"@rollup/rollup-linux-loongarch64-gnu@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz#5869dc0b28242da6553e2b52af41374f4038cd6e"
- integrity sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==
+"@rollup/rollup-linux-loong64-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz#578ca2220a200ac4226c536c10c8cc6e4f276714"
+ integrity sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==
-"@rollup/rollup-linux-powerpc64le-gnu@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz#5cdd9f851ce1bea33d6844a69f9574de335f20b1"
- integrity sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==
+"@rollup/rollup-linux-ppc64-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz#aa338d3effd4168a20a5023834a74ba2c3081293"
+ integrity sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==
-"@rollup/rollup-linux-riscv64-gnu@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz#ef5dc37f4388f5253f0def43e1440ec012af204d"
- integrity sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==
+"@rollup/rollup-linux-riscv64-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz#16ba582f9f6cff58119aa242782209b1557a1508"
+ integrity sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==
-"@rollup/rollup-linux-s390x-gnu@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz#7dbc3ccbcbcfb3e65be74538dfb6e8dd16178fde"
- integrity sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==
+"@rollup/rollup-linux-riscv64-musl@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz#e404a77ebd6378483888b8064c703adb011340ab"
+ integrity sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==
-"@rollup/rollup-linux-x64-gnu@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz#5783fc0adcab7dc069692056e8ca8d83709855ce"
- integrity sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==
+"@rollup/rollup-linux-s390x-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz#92ad52d306227c56bec43d96ad2164495437ffe6"
+ integrity sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==
-"@rollup/rollup-linux-x64-musl@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz#00b6c29b298197a384e3c659910b47943003a678"
- integrity sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==
+"@rollup/rollup-linux-x64-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz#fd0dea3bb9aa07e7083579f25e1c2285a46cb9fa"
+ integrity sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==
-"@rollup/rollup-win32-arm64-msvc@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz#cbfee01f1fe73791c35191a05397838520ca3cdd"
- integrity sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==
+"@rollup/rollup-linux-x64-musl@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz#37a3efb09f18d555f8afc490e1f0444885de8951"
+ integrity sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==
-"@rollup/rollup-win32-ia32-msvc@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz#95cdbdff48fe6c948abcf6a1d500b2bd5ce33f62"
- integrity sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==
+"@rollup/rollup-openharmony-arm64@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz#c489bec9f4f8320d42c9b324cca220c90091c1f7"
+ integrity sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==
-"@rollup/rollup-win32-x64-msvc@4.34.8":
- version "4.34.8"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz#4cdb2cfae69cdb7b1a3cc58778e820408075e928"
- integrity sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==
+"@rollup/rollup-win32-arm64-msvc@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz#152832b5f79dc22d1606fac3db946283601b7080"
+ integrity sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==
+
+"@rollup/rollup-win32-ia32-msvc@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz#54d91b2bb3bf3e9f30d32b72065a4e52b3a172a5"
+ integrity sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==
+
+"@rollup/rollup-win32-x64-gnu@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz#df9df03e61a003873efec8decd2034e7f135c71e"
+ integrity sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==
+
+"@rollup/rollup-win32-x64-msvc@4.53.3":
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz#38ae84f4c04226c1d56a3b17296ef1e0460ecdfe"
+ integrity sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==
"@rtsao/scc@^1.1.0":
version "1.1.0"
resolved "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz"
integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==
-"@sec-ant/readable-stream@^0.4.1":
- version "0.4.1"
- resolved "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz"
- integrity sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==
-
-"@sinclair/typebox@^0.27.8":
- version "0.27.8"
- resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
- integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
-
"@sinclair/typebox@^0.34.0":
version "0.34.33"
resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.33.tgz"
@@ -2884,11 +3007,6 @@
resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz"
integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==
-"@sindresorhus/merge-streams@^4.0.0":
- version "4.0.0"
- resolved "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz"
- integrity sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==
-
"@sinonjs/commons@^3.0.1":
version "3.0.1"
resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz"
@@ -3137,7 +3255,12 @@
resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
-"@types/estree@1.0.6", "@types/estree@^1.0.0", "@types/estree@^1.0.6":
+"@types/estree@1.0.8":
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e"
+ integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
+
+"@types/estree@^1.0.0", "@types/estree@^1.0.6":
version "1.0.6"
resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz"
integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
@@ -3226,7 +3349,7 @@
dependencies:
"@types/node" "*"
-"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1", "@types/istanbul-lib-coverage@^2.0.6":
+"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.1", "@types/istanbul-lib-coverage@^2.0.6":
version "2.0.6"
resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz"
integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==
@@ -3238,20 +3361,20 @@
dependencies:
"@types/istanbul-lib-coverage" "*"
-"@types/istanbul-reports@^3.0.0", "@types/istanbul-reports@^3.0.4":
+"@types/istanbul-reports@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54"
integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==
dependencies:
"@types/istanbul-lib-report" "*"
-"@types/jest@^29.5.14":
- version "29.5.14"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.14.tgz#2b910912fa1d6856cadcd0c1f95af7df1d6049e5"
- integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==
+"@types/jest@^30.0.0":
+ version "30.0.0"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-30.0.0.tgz#5e85ae568006712e4ad66f25433e9bdac8801f1d"
+ integrity sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==
dependencies:
- expect "^29.0.0"
- pretty-format "^29.0.0"
+ expect "^30.0.0"
+ pretty-format "^30.0.0"
"@types/js-cookie@^3.0.6":
version "3.0.6"
@@ -3282,10 +3405,10 @@
dependencies:
"@types/node" "*"
-"@types/leaflet@^1.9.18":
- version "1.9.20"
- resolved "https://registry.yarnpkg.com/@types/leaflet/-/leaflet-1.9.20.tgz#a7feef4b0a4b36335dfc98456e76c0a86ab8462c"
- integrity sha512-rooalPMlk61LCaLOvBF2VIf9M47HgMQqi5xQ9QRi7c8PkdIe0WrIi5IxXUXQjAdL0c+vcQ01mYWbthzmp9GHWw==
+"@types/leaflet@^1.9.21":
+ version "1.9.21"
+ resolved "https://registry.yarnpkg.com/@types/leaflet/-/leaflet-1.9.21.tgz#542e8f91250bc444f8a1416d472f5b518d83e979"
+ integrity sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==
dependencies:
"@types/geojson" "*"
@@ -3308,19 +3431,19 @@
dependencies:
undici-types "~6.20.0"
-"@types/node@^20.9.0":
- version "20.19.11"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.11.tgz#728cab53092bd5f143beed7fbba7ba99de3c16c4"
- integrity sha512-uug3FEEGv0r+jrecvUUpbY8lLisvIjg6AAic6a2bSP5OEOLeJsDSnvhCDov7ipFFMXS3orMpzlmi0ZcuGkBbow==
+"@types/node@^22.7.7":
+ version "22.19.1"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.1.tgz#1188f1ddc9f46b4cc3aec76749050b4e1f459b7b"
+ integrity sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==
dependencies:
undici-types "~6.21.0"
-"@types/node@^24.0.1":
- version "24.3.0"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-24.3.0.tgz#89b09f45cb9a8ee69466f18ee5864e4c3eb84dec"
- integrity sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==
+"@types/node@^24.10.1":
+ version "24.10.1"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-24.10.1.tgz#91e92182c93db8bd6224fca031e2370cef9a8f01"
+ integrity sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==
dependencies:
- undici-types "~7.10.0"
+ undici-types "~7.16.0"
"@types/nprogress@^0.2.3":
version "0.2.3"
@@ -3332,11 +3455,6 @@
resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz"
integrity sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==
-"@types/raf@^3.4.0":
- version "3.4.3"
- resolved "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz"
- integrity sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==
-
"@types/range-parser@*":
version "1.2.7"
resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz"
@@ -3371,12 +3489,12 @@
"@types/node" "*"
"@types/send" "*"
-"@types/stack-utils@^2.0.0", "@types/stack-utils@^2.0.3":
+"@types/stack-utils@^2.0.3":
version "2.0.3"
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
-"@types/trusted-types@^2.0.2", "@types/trusted-types@^2.0.7":
+"@types/trusted-types@^2.0.2":
version "2.0.7"
resolved "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz"
integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==
@@ -3400,7 +3518,7 @@
resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz"
integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==
-"@types/yargs@^17.0.33", "@types/yargs@^17.0.8":
+"@types/yargs@^17.0.33":
version "17.0.33"
resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.33.tgz#8c32303da83eec050a84b3c7ae7b9f922d13e32d"
integrity sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==
@@ -3429,6 +3547,21 @@
natural-compare "^1.4.0"
ts-api-utils "^2.1.0"
+"@typescript-eslint/eslint-plugin@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.1.tgz#c772d1dbdd97cfddf85f5a161a97783233643631"
+ integrity sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA==
+ dependencies:
+ "@eslint-community/regexpp" "^4.10.0"
+ "@typescript-eslint/scope-manager" "8.48.1"
+ "@typescript-eslint/type-utils" "8.48.1"
+ "@typescript-eslint/utils" "8.48.1"
+ "@typescript-eslint/visitor-keys" "8.48.1"
+ graphemer "^1.4.0"
+ ignore "^7.0.0"
+ natural-compare "^1.4.0"
+ ts-api-utils "^2.1.0"
+
"@typescript-eslint/parser@8.42.0":
version "8.42.0"
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.42.0.tgz"
@@ -3440,6 +3573,17 @@
"@typescript-eslint/visitor-keys" "8.42.0"
debug "^4.3.4"
+"@typescript-eslint/parser@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.48.1.tgz#4e3c66d9ec20683ec142417fafeadab61c479c3f"
+ integrity sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA==
+ dependencies:
+ "@typescript-eslint/scope-manager" "8.48.1"
+ "@typescript-eslint/types" "8.48.1"
+ "@typescript-eslint/typescript-estree" "8.48.1"
+ "@typescript-eslint/visitor-keys" "8.48.1"
+ debug "^4.3.4"
+
"@typescript-eslint/project-service@8.42.0":
version "8.42.0"
resolved "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.42.0.tgz"
@@ -3449,6 +3593,15 @@
"@typescript-eslint/types" "^8.42.0"
debug "^4.3.4"
+"@typescript-eslint/project-service@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.48.1.tgz#cfe1741613b9112d85ae766de9e09b27a7d3f2f1"
+ integrity sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==
+ dependencies:
+ "@typescript-eslint/tsconfig-utils" "^8.48.1"
+ "@typescript-eslint/types" "^8.48.1"
+ debug "^4.3.4"
+
"@typescript-eslint/scope-manager@8.42.0":
version "8.42.0"
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.42.0.tgz"
@@ -3457,6 +3610,14 @@
"@typescript-eslint/types" "8.42.0"
"@typescript-eslint/visitor-keys" "8.42.0"
+"@typescript-eslint/scope-manager@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz#8bc70643e7cca57864b1ff95dd350fc27756bec0"
+ integrity sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==
+ dependencies:
+ "@typescript-eslint/types" "8.48.1"
+ "@typescript-eslint/visitor-keys" "8.48.1"
+
"@typescript-eslint/scope-manager@^8.13.0":
version "8.25.0"
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.25.0.tgz"
@@ -3470,6 +3631,11 @@
resolved "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.42.0.tgz"
integrity sha512-kHeFUOdwAJfUmYKjR3CLgZSglGHjbNTi1H8sTYRYV2xX6eNz4RyJ2LIgsDLKf8Yi0/GL1WZAC/DgZBeBft8QAQ==
+"@typescript-eslint/tsconfig-utils@8.48.1", "@typescript-eslint/tsconfig-utils@^8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.1.tgz#68139ce2d258f984e2b33a95389158f1212af646"
+ integrity sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==
+
"@typescript-eslint/type-utils@8.42.0":
version "8.42.0"
resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.42.0.tgz"
@@ -3481,6 +3647,17 @@
debug "^4.3.4"
ts-api-utils "^2.1.0"
+"@typescript-eslint/type-utils@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.48.1.tgz#955bd3ddd648450f0a627925ff12ade63fb7516d"
+ integrity sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg==
+ dependencies:
+ "@typescript-eslint/types" "8.48.1"
+ "@typescript-eslint/typescript-estree" "8.48.1"
+ "@typescript-eslint/utils" "8.48.1"
+ debug "^4.3.4"
+ ts-api-utils "^2.1.0"
+
"@typescript-eslint/types@8.25.0":
version "8.25.0"
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.25.0.tgz"
@@ -3491,6 +3668,11 @@
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.42.0.tgz"
integrity sha512-LdtAWMiFmbRLNP7JNeY0SqEtJvGMYSzfiWBSmx+VSZ1CH+1zyl8Mmw1TT39OrtsRvIYShjJWzTDMPWZJCpwBlw==
+"@typescript-eslint/types@8.48.1", "@typescript-eslint/types@^8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.48.1.tgz#a9ff808f5f798f28767d5c0b015a88fa7ce46bd7"
+ integrity sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==
+
"@typescript-eslint/typescript-estree@8.42.0":
version "8.42.0"
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.42.0.tgz"
@@ -3507,6 +3689,21 @@
semver "^7.6.0"
ts-api-utils "^2.1.0"
+"@typescript-eslint/typescript-estree@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.1.tgz#0d0e31fc47c5796c6463ab50cde19e1718d465b1"
+ integrity sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==
+ dependencies:
+ "@typescript-eslint/project-service" "8.48.1"
+ "@typescript-eslint/tsconfig-utils" "8.48.1"
+ "@typescript-eslint/types" "8.48.1"
+ "@typescript-eslint/visitor-keys" "8.48.1"
+ debug "^4.3.4"
+ minimatch "^9.0.4"
+ semver "^7.6.0"
+ tinyglobby "^0.2.15"
+ ts-api-utils "^2.1.0"
+
"@typescript-eslint/typescript-estree@^8.13.0":
version "8.25.0"
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.25.0.tgz"
@@ -3531,6 +3728,16 @@
"@typescript-eslint/types" "8.42.0"
"@typescript-eslint/typescript-estree" "8.42.0"
+"@typescript-eslint/utils@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.48.1.tgz#6cf7b99e0943b33a983ef687b9a86b65578b5c32"
+ integrity sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.7.0"
+ "@typescript-eslint/scope-manager" "8.48.1"
+ "@typescript-eslint/types" "8.48.1"
+ "@typescript-eslint/typescript-estree" "8.48.1"
+
"@typescript-eslint/visitor-keys@8.25.0":
version "8.25.0"
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.25.0.tgz"
@@ -3547,6 +3754,14 @@
"@typescript-eslint/types" "8.42.0"
eslint-visitor-keys "^4.2.1"
+"@typescript-eslint/visitor-keys@8.48.1":
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.1.tgz#247d4fe6dcc044f45b7f1c15110bf95e5d73b334"
+ integrity sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==
+ dependencies:
+ "@typescript-eslint/types" "8.48.1"
+ eslint-visitor-keys "^4.2.1"
+
"@ungap/structured-clone@^1.3.0":
version "1.3.0"
resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz"
@@ -3649,38 +3864,40 @@
resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.9.0.tgz#708b957d5d66543c45240b4c6b45ee63ed59b6b7"
integrity sha512-k59o9ZyeyS0hAlcaKFezYSH2agQeRFEB7KoQLXl3Nb3rgkqT1NY9Vwy+SqODiLmYnEjxWJVRE/yq2jFVqdIxZw==
-"@vitejs/plugin-vue@^5.1.4":
- version "5.2.1"
- resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz"
- integrity sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==
-
-"@volar/language-core@2.4.15":
- version "2.4.15"
- resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-2.4.15.tgz#759d04cb4eab9920560b8bcfa4515d5b08a1b7ce"
- integrity sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==
+"@vitejs/plugin-vue@^6.0.1":
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-6.0.2.tgz#318d1828fe73e4a0b73f473040dcb3ad52db38ec"
+ integrity sha512-iHmwV3QcVGGvSC1BG5bZ4z6iwa1SOpAPWmnjOErd4Ske+lZua5K9TtAVdx0gMBClJ28DViCbSmZitjWZsWO3LA==
dependencies:
- "@volar/source-map" "2.4.15"
+ "@rolldown/pluginutils" "1.0.0-beta.50"
-"@volar/source-map@2.4.15":
- version "2.4.15"
- resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-2.4.15.tgz#18aba09994c0268e59a418f9d738e4a85302781d"
- integrity sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==
-
-"@volar/typescript@2.4.15":
- version "2.4.15"
- resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-2.4.15.tgz#1445d23f8e4f9ad821b6bfa58cf4a2b980dc5f97"
- integrity sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==
+"@volar/language-core@2.4.23":
+ version "2.4.23"
+ resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-2.4.23.tgz#deb6dbc5fdbafa9bb7ba691fc59cb196cdb856d3"
+ integrity sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==
dependencies:
- "@volar/language-core" "2.4.15"
+ "@volar/source-map" "2.4.23"
+
+"@volar/source-map@2.4.23":
+ version "2.4.23"
+ resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-2.4.23.tgz#d476e11a3a669d89858a5eb38b02342be39b0e44"
+ integrity sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==
+
+"@volar/typescript@2.4.23":
+ version "2.4.23"
+ resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-2.4.23.tgz#b9b114ea01ad0ad977139edda0239fdafdb21ad7"
+ integrity sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==
+ dependencies:
+ "@volar/language-core" "2.4.23"
path-browserify "^1.0.1"
vscode-uri "^3.0.8"
-"@vue/compat@^3.5.16":
- version "3.5.21"
- resolved "https://registry.yarnpkg.com/@vue/compat/-/compat-3.5.21.tgz#0647242f95d027766971b2c138d0673a408989ba"
- integrity sha512-uakoBcdx+7qb1dv+rYJ4Bgex7fz7guWrr5Iv0gHCqdl7ijyNXyDJ0BqpZrvxDej82O+113i5LGZmIxfVMyPy/Q==
+"@vue/compat@^3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/compat/-/compat-3.5.25.tgz#3de367caf190e254d79020b1bda34831bd16d443"
+ integrity sha512-KxtSVQxxo8UjNk1J8ntNdCXMbUgItsBexq65HHDIw2r3Q6Z32YXPHMCmnahG0N7RtV4RNm2DbkohRsfxRSrLvA==
dependencies:
- "@babel/parser" "^7.28.3"
+ "@babel/parser" "^7.28.5"
estree-walker "^2.0.2"
source-map-js "^1.2.1"
@@ -3695,24 +3912,24 @@
estree-walker "^2.0.2"
source-map-js "^1.2.0"
-"@vue/compiler-core@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.21.tgz"
- integrity sha512-8i+LZ0vf6ZgII5Z9XmUvrCyEzocvWT+TeR2VBUVlzIH6Tyv57E20mPZ1bCS+tbejgUgmjrEh7q/0F0bibskAmw==
+"@vue/compiler-core@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.25.tgz#7ffb658d7919348baad8c491eb5b948ee8e44108"
+ integrity sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==
dependencies:
- "@babel/parser" "^7.28.3"
- "@vue/shared" "3.5.21"
+ "@babel/parser" "^7.28.5"
+ "@vue/shared" "3.5.25"
entities "^4.5.0"
estree-walker "^2.0.2"
source-map-js "^1.2.1"
-"@vue/compiler-dom@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.21.tgz"
- integrity sha512-jNtbu/u97wiyEBJlJ9kmdw7tAr5Vy0Aj5CgQmo+6pxWNQhXZDPsRr1UWPN4v3Zf82s2H3kF51IbzZ4jMWAgPlQ==
+"@vue/compiler-dom@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.25.tgz#dd799ac2474cda54303039310b8994f0cfb40957"
+ integrity sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==
dependencies:
- "@vue/compiler-core" "3.5.21"
- "@vue/shared" "3.5.21"
+ "@vue/compiler-core" "3.5.25"
+ "@vue/shared" "3.5.25"
"@vue/compiler-dom@^3.2.45", "@vue/compiler-dom@^3.5.0":
version "3.5.13"
@@ -3733,73 +3950,70 @@
optionalDependencies:
prettier "^1.18.2 || ^2.0.0"
-"@vue/compiler-sfc@3.5.21", "@vue/compiler-sfc@^3.5.16":
- version "3.5.21"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.21.tgz#e48189ef3ffe334c864c2625389ebe3bb4fa41eb"
- integrity sha512-SXlyk6I5eUGBd2v8Ie7tF6ADHE9kCR6mBEuPyH1nUZ0h6Xx6nZI29i12sJKQmzbDyr2tUHMhhTt51Z6blbkTTQ==
+"@vue/compiler-sfc@3.5.25", "@vue/compiler-sfc@^3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.25.tgz#30377920c3869c3bb32111aa4aefad53921831ad"
+ integrity sha512-PUgKp2rn8fFsI++lF2sO7gwO2d9Yj57Utr5yEsDf3GNaQcowCLKL7sf+LvVFvtJDXUp/03+dC6f2+LCv5aK1ag==
dependencies:
- "@babel/parser" "^7.28.3"
- "@vue/compiler-core" "3.5.21"
- "@vue/compiler-dom" "3.5.21"
- "@vue/compiler-ssr" "3.5.21"
- "@vue/shared" "3.5.21"
+ "@babel/parser" "^7.28.5"
+ "@vue/compiler-core" "3.5.25"
+ "@vue/compiler-dom" "3.5.25"
+ "@vue/compiler-ssr" "3.5.25"
+ "@vue/shared" "3.5.25"
estree-walker "^2.0.2"
- magic-string "^0.30.18"
+ magic-string "^0.30.21"
postcss "^8.5.6"
source-map-js "^1.2.1"
-"@vue/compiler-ssr@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.21.tgz"
- integrity sha512-vKQ5olH5edFZdf5ZrlEgSO1j1DMA4u23TVK5XR1uMhvwnYvVdDF0nHXJUblL/GvzlShQbjhZZ2uvYmDlAbgo9w==
+"@vue/compiler-ssr@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.25.tgz#51dd89b88a1e044d1beab158c91a29963d28eb96"
+ integrity sha512-ritPSKLBcParnsKYi+GNtbdbrIE1mtuFEJ4U1sWeuOMlIziK5GtOL85t5RhsNy4uWIXPgk+OUdpnXiTdzn8o3A==
dependencies:
- "@vue/compiler-dom" "3.5.21"
- "@vue/shared" "3.5.21"
-
-"@vue/compiler-vue2@^2.7.16":
- version "2.7.16"
- resolved "https://registry.npmjs.org/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz"
- integrity sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==
- dependencies:
- de-indent "^1.0.2"
- he "^1.2.0"
+ "@vue/compiler-dom" "3.5.25"
+ "@vue/shared" "3.5.25"
"@vue/devtools-api@^6.0.0-beta.11", "@vue/devtools-api@^6.5.0", "@vue/devtools-api@^6.6.4":
version "6.6.4"
resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz"
integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==
-"@vue/devtools-api@^7.5.2", "@vue/devtools-api@^7.7.2":
+"@vue/devtools-api@^7.5.2":
version "7.7.2"
resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.2.tgz"
integrity sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==
dependencies:
"@vue/devtools-kit" "^7.7.2"
-"@vue/devtools-core@^7.7.7":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.7.7.tgz#9885e2ecb7b462cca8e629d9cff0ab00bfd30d63"
- integrity sha512-9z9TLbfC+AjAi1PQyWX+OErjIaJmdFlbDHcD+cAMYKY6Bh5VlsAtCeGyRMrXwIlMEQPukvnWt3gZBLwTAIMKzQ==
+"@vue/devtools-api@^7.7.7":
+ version "7.7.9"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz#999dbea50da6b00cf59a1336f11fdc2b43d9e063"
+ integrity sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==
dependencies:
- "@vue/devtools-kit" "^7.7.7"
- "@vue/devtools-shared" "^7.7.7"
- mitt "^3.0.1"
- nanoid "^5.1.0"
- pathe "^2.0.3"
- vite-hot-client "^2.0.4"
+ "@vue/devtools-kit" "^7.7.9"
-"@vue/devtools-electron@^7.7.7":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@vue/devtools-electron/-/devtools-electron-7.7.7.tgz#5dc03fcb1352beed4cb7d39aa70f6ca3dd4e1619"
- integrity sha512-AgJeH0/WtfOdP8zCVEIq7A2rOSUEY2PyOH+P/e3k4m9xjG3Ut4s+kgu0Tis29wyMnDtwe3GHnpkSQZkPPh6wyA==
+"@vue/devtools-core@^8.0.5":
+ version "8.0.5"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-8.0.5.tgz#ef3803cb22a5ab6e55728adfd564668418b670d9"
+ integrity sha512-dpCw8nl0GDBuiL9SaY0mtDxoGIEmU38w+TQiYEPOLhW03VDC0lfNMYXS/qhl4I0YlysGp04NLY4UNn6xgD0VIQ==
dependencies:
- "@vue/devtools-core" "^7.7.7"
- "@vue/devtools-kit" "^7.7.7"
- "@vue/devtools-shared" "^7.7.7"
- electron "^33.4.8"
- execa "^9.5.2"
- h3 "^1.15.1"
- ip "^2.0.1"
+ "@vue/devtools-kit" "^8.0.5"
+ "@vue/devtools-shared" "^8.0.5"
+ mitt "^3.0.1"
+ nanoid "^5.1.5"
+ pathe "^2.0.3"
+ vite-hot-client "^2.1.0"
+
+"@vue/devtools-electron@^8.0.5":
+ version "8.0.5"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-electron/-/devtools-electron-8.0.5.tgz#ee00fc146b427ce1d651ce0ef0cfd4fe4d4ef7ec"
+ integrity sha512-BazqoUfOUH28CfW5XNcHJqW6tsCm905y7ElqI/o25ZXHsE4xAjgCp/R+G6Z3sDERDDAavWWYsQODkLb+c1htsw==
+ dependencies:
+ "@vue/devtools-core" "^8.0.5"
+ "@vue/devtools-kit" "^8.0.5"
+ "@vue/devtools-shared" "^8.0.5"
+ electron "^36.9.4"
+ h3 "^1.15.4"
pathe "^2.0.3"
socket.io "^4.8.1"
socket.io-client "^4.8.1"
@@ -3817,12 +4031,12 @@
speakingurl "^14.0.1"
superjson "^2.2.1"
-"@vue/devtools-kit@^7.7.7":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.7.7.tgz#41a64f9526e9363331c72405544df020ce2e3641"
- integrity sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==
+"@vue/devtools-kit@^7.7.9":
+ version "7.7.9"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz#bc218a815616e8987df7ab3e10fc1fb3b8706c58"
+ integrity sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==
dependencies:
- "@vue/devtools-shared" "^7.7.7"
+ "@vue/devtools-shared" "^7.7.9"
birpc "^2.3.0"
hookable "^5.5.3"
mitt "^3.0.1"
@@ -3830,6 +4044,19 @@
speakingurl "^14.0.1"
superjson "^2.2.2"
+"@vue/devtools-kit@^8.0.5":
+ version "8.0.5"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-8.0.5.tgz#d16927554adf527785706caa11e910ff4e00a998"
+ integrity sha512-q2VV6x1U3KJMTQPUlRMyWEKVbcHuxhqJdSr6Jtjz5uAThAIrfJ6WVZdGZm5cuO63ZnSUz0RCsVwiUUb0mDV0Yg==
+ dependencies:
+ "@vue/devtools-shared" "^8.0.5"
+ birpc "^2.6.1"
+ hookable "^5.5.3"
+ mitt "^3.0.1"
+ perfect-debounce "^2.0.0"
+ speakingurl "^14.0.1"
+ superjson "^2.2.2"
+
"@vue/devtools-shared@^7.7.2":
version "7.7.2"
resolved "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.2.tgz"
@@ -3837,20 +4064,27 @@
dependencies:
rfdc "^1.4.1"
-"@vue/devtools-shared@^7.7.7":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.7.7.tgz#ff14aa8c1262ebac8c0397d3b09f767cd489750c"
- integrity sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==
+"@vue/devtools-shared@^7.7.9":
+ version "7.7.9"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz#fa4c096b744927081a7dda5fcf05f34b1ae6ca14"
+ integrity sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==
dependencies:
rfdc "^1.4.1"
-"@vue/devtools@^7.7.6":
- version "7.7.7"
- resolved "https://registry.yarnpkg.com/@vue/devtools/-/devtools-7.7.7.tgz#abd86e5a4cda3ab8f86cffeb990df987bda29051"
- integrity sha512-CR47ftA3tgduWWr7YEnsg5G6NJH3BlfSz9Zi92wlHh6R/nb8p5ad3gVmT6SeOwMpOUKZqPlIg+HH8d3W96dN6A==
+"@vue/devtools-shared@^8.0.5":
+ version "8.0.5"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-8.0.5.tgz#d97e887640fb2cad1e9b9e40fb46010d69852103"
+ integrity sha512-bRLn6/spxpmgLk+iwOrR29KrYnJjG9DGpHGkDFG82UM21ZpJ39ztUT9OXX3g+usW7/b2z+h46I9ZiYyB07XMXg==
dependencies:
- "@vue/devtools-electron" "^7.7.7"
- "@vue/devtools-kit" "^7.7.7"
+ rfdc "^1.4.1"
+
+"@vue/devtools@^8.0.5":
+ version "8.0.5"
+ resolved "https://registry.yarnpkg.com/@vue/devtools/-/devtools-8.0.5.tgz#6fffd6cd0950839ce02fccc6375cd12412bdf583"
+ integrity sha512-Wau13dDXIjyfiwkxb0VLZidESDZuLDTCGOM3523DanyCzwwO+RN7Kv4FDgd2vlCnhapmwGiPrzc8vxhgsbcKUQ==
+ dependencies:
+ "@vue/devtools-electron" "^8.0.5"
+ "@vue/devtools-kit" "^8.0.5"
"@vue/eslint-config-prettier@^10.2.0":
version "10.2.0"
@@ -3860,7 +4094,7 @@
eslint-config-prettier "^10.0.1"
eslint-plugin-prettier "^5.2.2"
-"@vue/eslint-config-typescript@^14.5.0":
+"@vue/eslint-config-typescript@^14.6.0":
version "14.6.0"
resolved "https://registry.yarnpkg.com/@vue/eslint-config-typescript/-/eslint-config-typescript-14.6.0.tgz#c526574c1f23972441752360b547bd19a7371e33"
integrity sha512-UpiRY/7go4Yps4mYCjkvlIbVWmn9YvPGQDxTAlcKLphyaD77LjIu3plH4Y9zNT0GB4f3K5tMmhhtRhPOgrQ/bQ==
@@ -3870,62 +4104,61 @@
typescript-eslint "^8.35.1"
vue-eslint-parser "^10.2.0"
-"@vue/language-core@2.2.12":
- version "2.2.12"
- resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-2.2.12.tgz#d01f7e865f593f968cb65c12a13d8337e65641f0"
- integrity sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==
+"@vue/language-core@3.1.5":
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-3.1.5.tgz#a77446d229773225bb5b532f795c4857a77cc2e6"
+ integrity sha512-FMcqyzWN+sYBeqRMWPGT2QY0mUasZMVIuHvmb5NT3eeqPrbHBYtCP8JWEUCDCgM+Zr62uuWY/qoeBrPrzfa78w==
dependencies:
- "@volar/language-core" "2.4.15"
+ "@volar/language-core" "2.4.23"
"@vue/compiler-dom" "^3.5.0"
- "@vue/compiler-vue2" "^2.7.16"
"@vue/shared" "^3.5.0"
- alien-signals "^1.0.3"
- minimatch "^9.0.3"
+ alien-signals "^3.0.0"
muggle-string "^0.4.1"
path-browserify "^1.0.1"
+ picomatch "^4.0.2"
-"@vue/reactivity@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.21.tgz"
- integrity sha512-3ah7sa+Cwr9iiYEERt9JfZKPw4A2UlbY8RbbnH2mGCE8NwHkhmlZt2VsH0oDA3P08X3jJd29ohBDtX+TbD9AsA==
+"@vue/reactivity@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.25.tgz#2420fa02022dab3373033c955802b9cdab5435ad"
+ integrity sha512-5xfAypCQepv4Jog1U4zn8cZIcbKKFka3AgWHEFQeK65OW+Ys4XybP6z2kKgws4YB43KGpqp5D/K3go2UPPunLA==
dependencies:
- "@vue/shared" "3.5.21"
+ "@vue/shared" "3.5.25"
-"@vue/runtime-core@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.21.tgz"
- integrity sha512-+DplQlRS4MXfIf9gfD1BOJpk5RSyGgGXD/R+cumhe8jdjUcq/qlxDawQlSI8hCKupBlvM+3eS1se5xW+SuNAwA==
+"@vue/runtime-core@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.25.tgz#5e524db201b419db6f091db440452fe4e49efdee"
+ integrity sha512-Z751v203YWwYzy460bzsYQISDfPjHTl+6Zzwo/a3CsAf+0ccEjQ8c+0CdX1WsumRTHeywvyUFtW6KvNukT/smA==
dependencies:
- "@vue/reactivity" "3.5.21"
- "@vue/shared" "3.5.21"
+ "@vue/reactivity" "3.5.25"
+ "@vue/shared" "3.5.25"
-"@vue/runtime-dom@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.21.tgz"
- integrity sha512-3M2DZsOFwM5qI15wrMmNF5RJe1+ARijt2HM3TbzBbPSuBHOQpoidE+Pa+XEaVN+czbHf81ETRoG1ltztP2em8w==
+"@vue/runtime-dom@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.25.tgz#ebd9815f39ee70fe32698c615cc09bda604e4e06"
+ integrity sha512-a4WrkYFbb19i9pjkz38zJBg8wa/rboNERq3+hRRb0dHiJh13c+6kAbgqCPfMaJ2gg4weWD3APZswASOfmKwamA==
dependencies:
- "@vue/reactivity" "3.5.21"
- "@vue/runtime-core" "3.5.21"
- "@vue/shared" "3.5.21"
+ "@vue/reactivity" "3.5.25"
+ "@vue/runtime-core" "3.5.25"
+ "@vue/shared" "3.5.25"
csstype "^3.1.3"
-"@vue/server-renderer@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.21.tgz"
- integrity sha512-qr8AqgD3DJPJcGvLcJKQo2tAc8OnXRcfxhOJCPF+fcfn5bBGz7VCcO7t+qETOPxpWK1mgysXvVT/j+xWaHeMWA==
+"@vue/server-renderer@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.25.tgz#ca67ac93cb84dd3c3bc2f89c046a18ab04f7cc96"
+ integrity sha512-UJaXR54vMG61i8XNIzTSf2Q7MOqZHpp8+x3XLGtE3+fL+nQd+k7O5+X3D/uWrnQXOdMw5VPih+Uremcw+u1woQ==
dependencies:
- "@vue/compiler-ssr" "3.5.21"
- "@vue/shared" "3.5.21"
+ "@vue/compiler-ssr" "3.5.25"
+ "@vue/shared" "3.5.25"
"@vue/shared@3.5.13", "@vue/shared@^3.5.0":
version "3.5.13"
resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz"
integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==
-"@vue/shared@3.5.21":
- version "3.5.21"
- resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.5.21.tgz"
- integrity sha512-+2k1EQpnYuVuu3N7atWyG3/xoFWIVJZq4Mz8XNOdScFI0etES75fbny/oU4lKWk/577P1zmg0ioYvpGEDZ3DLw==
+"@vue/shared@3.5.25":
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.25.tgz#21edcff133a5a04f72c4e4c6142260963fe5afbe"
+ integrity sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==
"@vuelidate/core@^2.0.3":
version "2.0.3"
@@ -4006,10 +4239,10 @@ ajv@^8.6.0:
json-schema-traverse "^1.0.0"
require-from-string "^2.0.2"
-alien-signals@^1.0.3:
- version "1.0.13"
- resolved "https://registry.yarnpkg.com/alien-signals/-/alien-signals-1.0.13.tgz#8d6db73462f742ee6b89671fbd8c37d0b1727a7e"
- integrity sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==
+alien-signals@^3.0.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/alien-signals/-/alien-signals-3.1.1.tgz#90d7dd34be9e321547b03908ddba21b3f765e3f6"
+ integrity sha512-ogkIWbVrLwKtHY6oOAXaYkAxP+cTH7V5FZ5+Tm4NZFd8VDZ6uNMDrfzqctTZ42eTMCSR3ne3otpcxmqSnFfPYA==
alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
version "1.0.2"
@@ -4055,7 +4288,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
dependencies:
color-convert "^2.0.1"
-ansi-styles@^5.0.0, ansi-styles@^5.2.0:
+ansi-styles@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
@@ -4073,10 +4306,10 @@ anymatch@^3.1.3, anymatch@~3.1.2:
normalize-path "^3.0.0"
picomatch "^2.0.4"
-apexcharts@^4.7.0:
- version "4.7.0"
- resolved "https://registry.yarnpkg.com/apexcharts/-/apexcharts-4.7.0.tgz#27e578a2fd66847d8ea425aeea1de56d6be42f21"
- integrity sha512-iZSrrBGvVlL+nt2B1NpqfDuBZ9jX61X9I2+XV0hlYXHtTwhwLTHDKGXjNXAgFBDLuvSYCB/rq2nPWVPRv2DrGA==
+apexcharts@^5.3.6:
+ version "5.3.6"
+ resolved "https://registry.yarnpkg.com/apexcharts/-/apexcharts-5.3.6.tgz#15742b69fc3357494ab751aa9bbf760a4e2f13f7"
+ integrity sha512-sVEPw+J0Gp0IHQabKu8cfdsxlfME0e36Wid7RIaPclGM2OUt+O7O4+6mfAmTUYhy5bDk8cNHzEhPfVtLCIXEJA==
dependencies:
"@svgdotjs/svg.draggable.js" "^3.0.4"
"@svgdotjs/svg.filter.js" "^3.0.8"
@@ -4230,19 +4463,14 @@ atoa@1.0.0:
resolved "https://registry.npmjs.org/atoa/-/atoa-1.0.0.tgz"
integrity sha512-VVE1H6cc4ai+ZXo/CRWoJiHXrA1qfA31DPnx6D20+kSI547hQN5Greh51LQ1baMRMfxO5K5M4ImMtZbZt2DODQ==
-atob@^2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
- integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-
-autoprefixer@^10.4.21:
- version "10.4.21"
- resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz"
- integrity sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==
+autoprefixer@^10.4.22:
+ version "10.4.22"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.22.tgz#90b27ab55ec0cf0684210d1f056f7d65dac55f16"
+ integrity sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==
dependencies:
- browserslist "^4.24.4"
- caniuse-lite "^1.0.30001702"
- fraction.js "^4.3.7"
+ browserslist "^4.27.0"
+ caniuse-lite "^1.0.30001754"
+ fraction.js "^5.3.4"
normalize-range "^0.1.2"
picocolors "^1.1.1"
postcss-value-parser "^4.2.0"
@@ -4266,10 +4494,10 @@ available-typed-arrays@^1.0.7:
dependencies:
possible-typed-array-names "^1.0.0"
-axios@^1.9.0:
- version "1.11.0"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.11.0.tgz#c2ec219e35e414c025b2095e8b8280278478fdb6"
- integrity sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==
+axios@^1.13.2:
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.13.2.tgz#9ada120b7b5ab24509553ec3e40123521117f687"
+ integrity sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==
dependencies:
follow-redirects "^1.15.6"
form-data "^4.0.4"
@@ -4280,23 +4508,23 @@ b4a@^1.6.4:
resolved "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz"
integrity sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==
-babel-jest@30.1.2:
- version "30.1.2"
- resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-30.1.2.tgz"
- integrity sha512-IQCus1rt9kaSh7PQxLYRY5NmkNrNlU2TpabzwV7T2jljnpdHOcmnYYv8QmE04Li4S3a2Lj8/yXyET5pBarPr6g==
+babel-jest@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-30.2.0.tgz#fd44a1ec9552be35ead881f7381faa7d8f3b95ac"
+ integrity sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==
dependencies:
- "@jest/transform" "30.1.2"
+ "@jest/transform" "30.2.0"
"@types/babel__core" "^7.20.5"
- babel-plugin-istanbul "^7.0.0"
- babel-preset-jest "30.0.1"
+ babel-plugin-istanbul "^7.0.1"
+ babel-preset-jest "30.2.0"
chalk "^4.1.2"
graceful-fs "^4.2.11"
slash "^3.0.0"
-babel-plugin-istanbul@^7.0.0:
- version "7.0.0"
- resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.0.tgz"
- integrity sha512-C5OzENSx/A+gt7t4VH1I2XsflxyPUmXRFPKBxt33xncdOmq7oROVM3bZv9Ysjjkv8OJYDMa+tKuKMvqU/H3xdw==
+babel-plugin-istanbul@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz#d8b518c8ea199364cf84ccc82de89740236daf92"
+ integrity sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@istanbuljs/load-nyc-config" "^1.0.0"
@@ -4304,13 +4532,11 @@ babel-plugin-istanbul@^7.0.0:
istanbul-lib-instrument "^6.0.2"
test-exclude "^6.0.0"
-babel-plugin-jest-hoist@30.0.1:
- version "30.0.1"
- resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.0.1.tgz"
- integrity sha512-zTPME3pI50NsFW8ZBaVIOeAxzEY7XHlmWeXXu9srI+9kNfzCUTy8MFan46xOGZY8NZThMqq+e3qZUKsvXbasnQ==
+babel-plugin-jest-hoist@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.2.0.tgz#94c250d36b43f95900f3a219241e0f4648191ce2"
+ integrity sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==
dependencies:
- "@babel/template" "^7.27.2"
- "@babel/types" "^7.27.3"
"@types/babel__core" "^7.20.5"
babel-plugin-polyfill-corejs2@^0.4.10:
@@ -4337,10 +4563,10 @@ babel-plugin-polyfill-regenerator@^0.6.1:
dependencies:
"@babel/helper-define-polyfill-provider" "^0.6.3"
-babel-preset-current-node-syntax@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz"
- integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==
+babel-preset-current-node-syntax@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz#20730d6cdc7dda5d89401cab10ac6a32067acde6"
+ integrity sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==
dependencies:
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-bigint" "^7.8.3"
@@ -4358,13 +4584,13 @@ babel-preset-current-node-syntax@^1.1.0:
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-syntax-top-level-await" "^7.14.5"
-babel-preset-jest@30.0.1:
- version "30.0.1"
- resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.0.1.tgz"
- integrity sha512-+YHejD5iTWI46cZmcc/YtX4gaKBtdqCHCVfuVinizVpbmyjO3zYmeuyFdfA8duRqQZfgCAMlsfmkVbJ+e2MAJw==
+babel-preset-jest@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-30.2.0.tgz#04717843e561347781d6d7f69c81e6bcc3ed11ce"
+ integrity sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==
dependencies:
- babel-plugin-jest-hoist "30.0.1"
- babel-preset-current-node-syntax "^1.1.0"
+ babel-plugin-jest-hoist "30.2.0"
+ babel-preset-current-node-syntax "^1.2.0"
balanced-match@^0.4.2:
version "0.4.2"
@@ -4388,11 +4614,6 @@ base-x@^3.0.11:
dependencies:
safe-buffer "^5.0.1"
-base64-arraybuffer@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz"
- integrity sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==
-
base64-js@^1.3.1:
version "1.5.1"
resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
@@ -4403,10 +4624,15 @@ base64id@2.0.0, base64id@~2.0.0:
resolved "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz"
integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
-bcryptjs@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/bcryptjs/-/bcryptjs-3.0.2.tgz"
- integrity sha512-k38b3XOZKv60C4E2hVsXTolJWfkGRMbILBIe2IBITXciy5bOsTKot5kDrf3ZfufQtQOUN5mXceUEpU1rTl9Uog==
+baseline-browser-mapping@^2.8.25:
+ version "2.8.32"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.32.tgz#5de72358cf363ac41e7d642af239f6ac5ed1270a"
+ integrity sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==
+
+bcryptjs@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-3.0.3.tgz#4b93d6a398c48bfc9f32ee65d301174a8a8ea56f"
+ integrity sha512-GlF5wPWnSa/X5LKM1o0wz0suXIINz1iHRLvTS+sLyi7XPbe5ycmYI3DlZqVGZZtDgl4DmasFg7gOB3JYbphV5g==
big.js@^5.2.2:
version "5.2.2"
@@ -4428,6 +4654,11 @@ birpc@^2.3.0:
resolved "https://registry.yarnpkg.com/birpc/-/birpc-2.5.0.tgz#3a014e54c17eceba0ce15738d484ea371dbf6527"
integrity sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==
+birpc@^2.6.1:
+ version "2.8.0"
+ resolved "https://registry.yarnpkg.com/birpc/-/birpc-2.8.0.tgz#064c90bda7912ef8aebd544f174ae1c9bc230c71"
+ integrity sha512-Bz2a4qD/5GRhiHSwj30c/8kC8QGj12nNDwz3D4ErQ4Xhy35dsSDvF+RA/tWpjyU0pdGtSDiEk6B5fBGE1qNVhw==
+
bl@^4.1.0:
version "4.1.0"
resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
@@ -4566,7 +4797,7 @@ browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
caniuse-db "^1.0.30000639"
electron-to-chromium "^1.2.7"
-browserslist@^4.24.0, browserslist@^4.24.3, browserslist@^4.24.4:
+browserslist@^4.24.0, browserslist@^4.24.3:
version "4.24.4"
resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz"
integrity sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==
@@ -4586,6 +4817,17 @@ browserslist@^4.24.5:
node-releases "^2.0.19"
update-browserslist-db "^1.1.3"
+browserslist@^4.27.0:
+ version "4.28.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.28.0.tgz#9cefece0a386a17a3cd3d22ebf67b9deca1b5929"
+ integrity sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==
+ dependencies:
+ baseline-browser-mapping "^2.8.25"
+ caniuse-lite "^1.0.30001754"
+ electron-to-chromium "^1.5.249"
+ node-releases "^2.0.27"
+ update-browserslist-db "^1.1.4"
+
bs-logger@^0.2.6:
version "0.2.6"
resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz"
@@ -4600,11 +4842,6 @@ bser@2.1.1:
dependencies:
node-int64 "^0.4.0"
-btoa@^1.2.1:
- version "1.2.1"
- resolved "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz"
- integrity sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==
-
buffer-builder@^0.2.0:
version "0.2.0"
resolved "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz"
@@ -4748,24 +4985,15 @@ caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
resolved "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001701.tgz"
integrity sha512-+2csbmE3HM6ugN0zrIEjOGH65IaDWQ5r4m2py3apGIPe/iCtGgUMeZZJT4QL4SVzdY4y7o/gYUEvESebvznjjg==
-caniuse-lite@^1.0.30001688, caniuse-lite@^1.0.30001702, caniuse-lite@^1.0.30001718:
+caniuse-lite@^1.0.30001688, caniuse-lite@^1.0.30001718:
version "1.0.30001739"
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001739.tgz"
integrity sha512-y+j60d6ulelrNSwpPyrHdl+9mJnQzHBr08xm48Qno0nSk4h3Qojh+ziv2qE6rXf4k3tadF4o1J/1tAbVm1NtnA==
-canvg@^3.0.6:
- version "3.0.10"
- resolved "https://registry.npmjs.org/canvg/-/canvg-3.0.10.tgz"
- integrity sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==
- dependencies:
- "@babel/runtime" "^7.12.5"
- "@types/raf" "^3.4.0"
- core-js "^3.8.3"
- raf "^3.4.1"
- regenerator-runtime "^0.13.7"
- rgbcolor "^1.0.1"
- stackblur-canvas "^2.0.0"
- svg-pathdata "^6.0.3"
+caniuse-lite@^1.0.30001754:
+ version "1.0.30001757"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001757.tgz#a46ff91449c69522a462996c6aac4ef95d7ccc5e"
+ integrity sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==
cfb@~1.2.1:
version "1.2.2"
@@ -4804,10 +5032,10 @@ chardet@^0.7.0:
resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
-chart.js@^4.4.9:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-4.5.0.tgz#11a1ef6c4befc514b1b0b613ebac226c4ad2740b"
- integrity sha512-aYeC/jDgSEx8SHWZvANYMioYMZ2KX02W6f6uVfyteuCGcadDLcYVHdfdygsTQkQ4TKn5lghoojAsPj5pu0SnvQ==
+chart.js@^4.5.1:
+ version "4.5.1"
+ resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-4.5.1.tgz#19dd1a9a386a3f6397691672231cb5fc9c052c35"
+ integrity sha512-GIjfiT9dbmHRiYi6Nl2yFCq7kkwdkp1W/lp2J99rX0yo9tgJGn3lKQATztIjb5tVtevcBtIdICNWqlq5+E8/Pw==
dependencies:
"@kurkle/color" "^0.3.0"
@@ -4838,11 +5066,6 @@ chrome-trace-event@^1.0.2, chrome-trace-event@^1.0.3:
resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz"
integrity sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==
-ci-info@^3.2.0:
- version "3.9.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
- integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
-
ci-info@^4.0.0:
version "4.1.0"
resolved "https://registry.npmjs.org/ci-info/-/ci-info-4.1.0.tgz"
@@ -5145,12 +5368,12 @@ core-js-compat@^3.40.0:
dependencies:
browserslist "^4.24.3"
-core-js@^3.43.0:
- version "3.45.1"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.45.1.tgz#5810e04a1b4e9bc5ddaa4dd12e702ff67300634d"
- integrity sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==
+core-js@^3.47.0:
+ version "3.47.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.47.0.tgz#436ef07650e191afeb84c24481b298bd60eb4a17"
+ integrity sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==
-core-js@^3.6.0, core-js@^3.6.5, core-js@^3.8.3:
+core-js@^3.6.5:
version "3.40.0"
resolved "https://registry.npmjs.org/core-js/-/core-js-3.40.0.tgz"
integrity sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==
@@ -5280,13 +5503,6 @@ css-color-names@0.0.4:
resolved "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz"
integrity sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==
-css-line-break@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz"
- integrity sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==
- dependencies:
- utrie "^1.0.2"
-
cssesc@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
@@ -5573,11 +5789,6 @@ dexie@^2.0.1:
resolved "https://registry.npmjs.org/dexie/-/dexie-2.0.4.tgz"
integrity sha512-aQ/s1U2wHxwBKRrt2Z/mwFNHMQWhESerFsMYzE+5P5OsIe5o1kgpFMWkzKTtkvkyyEni6mWr/T4HUJuY9xIHLA==
-diff-sequences@^29.6.3:
- version "29.6.3"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921"
- integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==
-
diffie-hellman@^5.0.3:
version "5.0.3"
resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"
@@ -5594,13 +5805,6 @@ doctrine@^2.1.0:
dependencies:
esutils "^2.0.2"
-dompurify@^3.2.4:
- version "3.2.4"
- resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.2.4.tgz"
- integrity sha512-ysFSFEDVduQpyhzAob/kkuJjf5zWkZD8/A9ywSp1byueyuCfHamrCBa14/Oc2iiB0e51B+NpxSl5gmzn+Ms/mg==
- optionalDependencies:
- "@types/trusted-types" "^2.0.7"
-
dot-case@^3.0.4:
version "3.0.4"
resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz"
@@ -5655,13 +5859,13 @@ eastasianwidth@^0.2.0:
resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
-echarts@5.6.0:
- version "5.6.0"
- resolved "https://registry.yarnpkg.com/echarts/-/echarts-5.6.0.tgz#2377874dca9fb50f104051c3553544752da3c9d6"
- integrity sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==
+echarts@6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/echarts/-/echarts-6.0.0.tgz#2935aa7751c282d1abbbf7d719d397199a15b9e7"
+ integrity sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==
dependencies:
tslib "2.3.0"
- zrender "5.6.1"
+ zrender "6.0.0"
ee-first@1.1.1:
version "1.1.1"
@@ -5685,13 +5889,18 @@ electron-to-chromium@^1.5.160:
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.166.tgz"
integrity sha512-QPWqHL0BglzPYyJJ1zSSmwFFL6MFXhbACOCcsCdUMCkzPdS9/OIBVxg516X/Ado2qwAq8k0nJJ7phQPCqiaFAw==
-electron@^33.4.8:
- version "33.4.11"
- resolved "https://registry.yarnpkg.com/electron/-/electron-33.4.11.tgz#225d7f106ed3edf788ced318c63858d8b8a446dc"
- integrity sha512-xmdAs5QWRkInC7TpXGNvzo/7exojubk+72jn1oJL7keNeIlw7xNglf8TGtJtkR4rWC5FJq0oXiIXPS9BcK2Irg==
+electron-to-chromium@^1.5.249:
+ version "1.5.263"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.263.tgz#bec8f2887c30001dfacf415c136eae3b4386846a"
+ integrity sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==
+
+electron@^36.9.4:
+ version "36.9.5"
+ resolved "https://registry.yarnpkg.com/electron/-/electron-36.9.5.tgz#78e117e8cf97d53687f8d5a412e8bf9336229320"
+ integrity sha512-1UCss2IqxqujSzg/2jkRjuiT3G+EEXgd6UKB5kUekwQW1LJ6d4QCr8YItfC3Rr9VIGRDJ29eOERmnRNO1Eh+NA==
dependencies:
"@electron/get" "^2.0.0"
- "@types/node" "^20.9.0"
+ "@types/node" "^22.7.7"
extract-zip "^2.0.1"
elementtree@0.1.7:
@@ -5972,11 +6181,6 @@ es6-error@^4.1.1:
resolved "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz"
integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==
-es6-promise@^4.2.5:
- version "4.2.8"
- resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
- integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==
-
esbuild@^0.25.0:
version "0.25.0"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz"
@@ -6008,6 +6212,38 @@ esbuild@^0.25.0:
"@esbuild/win32-ia32" "0.25.0"
"@esbuild/win32-x64" "0.25.0"
+esbuild@^0.25.4:
+ version "0.25.12"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.12.tgz#97a1d041f4ab00c2fce2f838d2b9969a2d2a97a5"
+ integrity sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==
+ optionalDependencies:
+ "@esbuild/aix-ppc64" "0.25.12"
+ "@esbuild/android-arm" "0.25.12"
+ "@esbuild/android-arm64" "0.25.12"
+ "@esbuild/android-x64" "0.25.12"
+ "@esbuild/darwin-arm64" "0.25.12"
+ "@esbuild/darwin-x64" "0.25.12"
+ "@esbuild/freebsd-arm64" "0.25.12"
+ "@esbuild/freebsd-x64" "0.25.12"
+ "@esbuild/linux-arm" "0.25.12"
+ "@esbuild/linux-arm64" "0.25.12"
+ "@esbuild/linux-ia32" "0.25.12"
+ "@esbuild/linux-loong64" "0.25.12"
+ "@esbuild/linux-mips64el" "0.25.12"
+ "@esbuild/linux-ppc64" "0.25.12"
+ "@esbuild/linux-riscv64" "0.25.12"
+ "@esbuild/linux-s390x" "0.25.12"
+ "@esbuild/linux-x64" "0.25.12"
+ "@esbuild/netbsd-arm64" "0.25.12"
+ "@esbuild/netbsd-x64" "0.25.12"
+ "@esbuild/openbsd-arm64" "0.25.12"
+ "@esbuild/openbsd-x64" "0.25.12"
+ "@esbuild/openharmony-arm64" "0.25.12"
+ "@esbuild/sunos-x64" "0.25.12"
+ "@esbuild/win32-arm64" "0.25.12"
+ "@esbuild/win32-ia32" "0.25.12"
+ "@esbuild/win32-x64" "0.25.12"
+
escalade@^3.1.1, escalade@^3.2.0:
version "3.2.0"
resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz"
@@ -6081,7 +6317,7 @@ eslint-plugin-es-x@^7.8.0:
"@eslint-community/regexpp" "^4.11.0"
eslint-compat-utils "^0.5.1"
-eslint-plugin-import@^2.31.0:
+eslint-plugin-import@^2.32.0:
version "2.32.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz#602b55faa6e4caeaa5e970c198b5c00a37708980"
integrity sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==
@@ -6106,10 +6342,10 @@ eslint-plugin-import@^2.31.0:
string.prototype.trimend "^1.0.9"
tsconfig-paths "^3.15.0"
-eslint-plugin-n@^17.19.0:
- version "17.21.3"
- resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.21.3.tgz#a07592c28390ac742bf52acae89048c997a7b91c"
- integrity sha512-MtxYjDZhMQgsWRm/4xYLL0i2EhusWT7itDxlJ80l1NND2AL2Vi5Mvneqv/ikG9+zpran0VsVRXTEHrpLmUZRNw==
+eslint-plugin-n@^17.23.1:
+ version "17.23.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-17.23.1.tgz#467db2aba0ead574ea6150143d079d544c11cf48"
+ integrity sha512-68PealUpYoHOBh332JLLD9Sj7OQUDkFpmcfqt8R9sySfFSeuGJjMTJQvCRRB96zO3A/PELRLkPrzsHmzEFQQ5A==
dependencies:
"@eslint-community/eslint-utils" "^4.5.0"
enhanced-resolve "^5.17.1"
@@ -6137,15 +6373,15 @@ eslint-plugin-quasar@^1.1.0:
requireindex "~1.2.0"
semver-compare "^1.0.0"
-eslint-plugin-vue@^10.2.0:
- version "10.4.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-10.4.0.tgz#2ae20df43801d20515c58ec2ae0555bf1127a080"
- integrity sha512-K6tP0dW8FJVZLQxa2S7LcE1lLw3X8VvB3t887Q6CLrFVxHYBXGANbXvwNzYIu6Ughx1bSJ5BDT0YB3ybPT39lw==
+eslint-plugin-vue@^10.6.2:
+ version "10.6.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-10.6.2.tgz#5d8790fa2e1105cf06259afc14c8a55cb110f346"
+ integrity sha512-nA5yUs/B1KmKzvC42fyD0+l9Yd+LtEpVhWRbXuDj0e+ZURcTtyRbMDWUeJmTAh2wC6jC83raS63anNM2YT3NPw==
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
natural-compare "^1.4.0"
nth-check "^2.1.1"
- postcss-selector-parser "^6.0.15"
+ postcss-selector-parser "^7.1.0"
semver "^7.6.3"
xml-name-validator "^4.0.0"
@@ -6317,51 +6553,22 @@ execa@^5.1.1:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
-execa@^9.5.2:
- version "9.6.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-9.6.0.tgz#38665530e54e2e018384108322f37f35ae74f3bc"
- integrity sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==
- dependencies:
- "@sindresorhus/merge-streams" "^4.0.0"
- cross-spawn "^7.0.6"
- figures "^6.1.0"
- get-stream "^9.0.0"
- human-signals "^8.0.1"
- is-plain-obj "^4.1.0"
- is-stream "^4.0.1"
- npm-run-path "^6.0.0"
- pretty-ms "^9.2.0"
- signal-exit "^4.1.0"
- strip-final-newline "^4.0.0"
- yoctocolors "^2.1.1"
-
exit-x@^0.2.2:
version "0.2.2"
resolved "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz"
integrity sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==
-expect@30.1.2:
- version "30.1.2"
- resolved "https://registry.npmjs.org/expect/-/expect-30.1.2.tgz"
- integrity sha512-xvHszRavo28ejws8FpemjhwswGj4w/BetHIL8cU49u4sGyXDw2+p3YbeDbj6xzlxi6kWTjIRSTJ+9sNXPnF0Zg==
+expect@30.2.0, expect@^30.0.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-30.2.0.tgz#d4013bed267013c14bc1199cec8aa57cee9b5869"
+ integrity sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==
dependencies:
- "@jest/expect-utils" "30.1.2"
+ "@jest/expect-utils" "30.2.0"
"@jest/get-type" "30.1.0"
- jest-matcher-utils "30.1.2"
- jest-message-util "30.1.0"
- jest-mock "30.0.5"
- jest-util "30.0.5"
-
-expect@^29.0.0:
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc"
- integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==
- dependencies:
- "@jest/expect-utils" "^29.7.0"
- jest-get-type "^29.6.3"
- jest-matcher-utils "^29.7.0"
- jest-message-util "^29.7.0"
- jest-util "^29.7.0"
+ jest-matcher-utils "30.2.0"
+ jest-message-util "30.2.0"
+ jest-mock "30.2.0"
+ jest-util "30.2.0"
express@^4.21.2:
version "4.21.2"
@@ -6487,22 +6694,10 @@ fdir@^6.4.3:
resolved "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz"
integrity sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==
-fdir@^6.4.4:
- version "6.4.6"
- resolved "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz"
- integrity sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==
-
-fflate@^0.8.1:
- version "0.8.2"
- resolved "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz"
- integrity sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==
-
-figures@^6.1.0:
- version "6.1.0"
- resolved "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz"
- integrity sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==
- dependencies:
- is-unicode-supported "^2.0.0"
+fdir@^6.5.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350"
+ integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==
file-entry-cache@^8.0.0:
version "8.0.0"
@@ -6597,7 +6792,7 @@ for-each@^0.3.3, for-each@^0.3.5:
dependencies:
is-callable "^1.2.7"
-foreground-child@^3.1.0:
+foreground-child@^3.1.0, foreground-child@^3.3.1:
version "3.3.1"
resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz"
integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==
@@ -6626,10 +6821,10 @@ frac@~1.1.2:
resolved "https://registry.yarnpkg.com/frac/-/frac-1.1.2.tgz#3d74f7f6478c88a1b5020306d747dc6313c74d0b"
integrity sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==
-fraction.js@^4.3.7:
- version "4.3.7"
- resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz"
- integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
+fraction.js@^5.3.4:
+ version "5.3.4"
+ resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-5.3.4.tgz#8c0fcc6a9908262df4ed197427bdeef563e0699a"
+ integrity sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==
fresh@0.5.2:
version "0.5.2"
@@ -6757,14 +6952,6 @@ get-stream@^6.0.0:
resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
-get-stream@^9.0.0:
- version "9.0.1"
- resolved "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz"
- integrity sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==
- dependencies:
- "@sec-ant/readable-stream" "^0.4.1"
- is-stream "^4.0.1"
-
get-symbol-description@^1.1.0:
version "1.1.0"
resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz"
@@ -6807,7 +6994,19 @@ glob@^10.0.0, glob@^10.3.10:
package-json-from-dist "^1.0.0"
path-scurry "^1.11.1"
-glob@^7.1.4, glob@^7.1.6:
+glob@^11.0.1:
+ version "11.1.0"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-11.1.0.tgz#4f826576e4eb99c7dad383793d2f9f08f67e50a6"
+ integrity sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==
+ dependencies:
+ foreground-child "^3.3.1"
+ jackspeak "^4.1.1"
+ minimatch "^10.1.1"
+ minipass "^7.1.2"
+ package-json-from-dist "^1.0.0"
+ path-scurry "^2.0.0"
+
+glob@^7.1.4:
version "7.2.3"
resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -6853,10 +7052,10 @@ globals@^15.11.0:
resolved "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz"
integrity sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==
-globals@^16.2.0:
- version "16.3.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-16.3.0.tgz#66118e765ddaf9e2d880f7e17658543f93f1f667"
- integrity sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==
+globals@^16.5.0:
+ version "16.5.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-16.5.0.tgz#ccf1594a437b97653b2be13ed4d8f5c9f850cac1"
+ integrity sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==
globalthis@^1.0.1, globalthis@^1.0.4:
version "1.0.4"
@@ -6893,7 +7092,7 @@ got@^11.8.5:
p-cancelable "^2.0.0"
responselike "^2.0.0"
-graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
+graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4:
version "4.2.11"
resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
@@ -6908,7 +7107,7 @@ gsap@^3.13.0:
resolved "https://registry.npmjs.org/gsap/-/gsap-3.13.0.tgz"
integrity sha512-QL7MJ2WMjm1PHWsoFrAQH/J8wUeqZvMtHO58qdekHpCfhvhSL4gSiz6vJf5EeMP0LOn3ZCprL2ki/gjED8ghVw==
-h3@^1.15.1:
+h3@^1.15.4:
version "1.15.4"
resolved "https://registry.yarnpkg.com/h3/-/h3-1.15.4.tgz#022ab3563bbaf2108c25375c40460f3e54a5fe02"
integrity sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==
@@ -7072,23 +7271,6 @@ html-minifier-terser@^7.2.0:
relateurl "^0.2.7"
terser "^5.15.1"
-html2canvas@^1.0.0, html2canvas@^1.0.0-rc.5:
- version "1.4.1"
- resolved "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz"
- integrity sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==
- dependencies:
- css-line-break "^2.1.0"
- text-segmentation "^1.0.3"
-
-html2pdf.js@^0.10.3:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/html2pdf.js/-/html2pdf.js-0.10.3.tgz#6b7ca3e95afdfcaf2b560821fa59fbd06fdd9236"
- integrity sha512-RcB1sh8rs5NT3jgbN5zvvTmkmZrsUrxpZ/RI8TMbvuReNZAdJZG5TMfA2TBP6ZXxpXlWf9NB/ciLXVb6W2LbRQ==
- dependencies:
- es6-promise "^4.2.5"
- html2canvas "^1.0.0"
- jspdf "^3.0.0"
-
http-cache-semantics@^4.0.0:
version "4.1.1"
resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz"
@@ -7139,11 +7321,6 @@ human-signals@^2.1.0:
resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-human-signals@^8.0.1:
- version "8.0.1"
- resolved "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz"
- integrity sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==
-
iconv-lite@0.4.24, iconv-lite@^0.4.24:
version "0.4.24"
resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
@@ -7252,11 +7429,6 @@ internal-slot@^1.1.0:
hasown "^2.0.2"
side-channel "^1.1.0"
-ip@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz"
- integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==
-
ipaddr.js@1.9.1:
version "1.9.1"
resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"
@@ -7459,11 +7631,6 @@ is-plain-obj@^1.0.0:
resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"
integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
-is-plain-obj@^4.1.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz"
- integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
-
is-plain-object@^2.0.4:
version "2.0.4"
resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
@@ -7508,11 +7675,6 @@ is-stream@^2.0.0, is-stream@^2.0.1:
resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
-is-stream@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz"
- integrity sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==
-
is-string@^1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz"
@@ -7549,11 +7711,6 @@ is-unicode-supported@^0.1.0:
resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
-is-unicode-supported@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz"
- integrity sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==
-
is-weakmap@^2.0.2:
version "2.0.2"
resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz"
@@ -7669,6 +7826,13 @@ jackspeak@^3.1.2:
optionalDependencies:
"@pkgjs/parseargs" "^0.11.0"
+jackspeak@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.1.1.tgz#96876030f450502047fc7e8c7fcf8ce8124e43ae"
+ integrity sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==
+ dependencies:
+ "@isaacs/cliui" "^8.0.2"
+
jake@^10.8.5:
version "10.9.2"
resolved "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz"
@@ -7679,227 +7843,187 @@ jake@^10.8.5:
filelist "^1.0.4"
minimatch "^3.1.2"
-jest-changed-files@30.0.5:
- version "30.0.5"
- resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-30.0.5.tgz"
- integrity sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==
+jest-changed-files@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-30.2.0.tgz#602266e478ed554e1e1469944faa7efd37cee61c"
+ integrity sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==
dependencies:
execa "^5.1.1"
- jest-util "30.0.5"
+ jest-util "30.2.0"
p-limit "^3.1.0"
-jest-circus@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-30.1.3.tgz"
- integrity sha512-Yf3dnhRON2GJT4RYzM89t/EXIWNxKTpWTL9BfF3+geFetWP4XSvJjiU1vrWplOiUkmq8cHLiwuhz+XuUp9DscA==
+jest-circus@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-30.2.0.tgz#98b8198b958748a2f322354311023d1d02e7603f"
+ integrity sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==
dependencies:
- "@jest/environment" "30.1.2"
- "@jest/expect" "30.1.2"
- "@jest/test-result" "30.1.3"
- "@jest/types" "30.0.5"
+ "@jest/environment" "30.2.0"
+ "@jest/expect" "30.2.0"
+ "@jest/test-result" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
chalk "^4.1.2"
co "^4.6.0"
dedent "^1.6.0"
is-generator-fn "^2.1.0"
- jest-each "30.1.0"
- jest-matcher-utils "30.1.2"
- jest-message-util "30.1.0"
- jest-runtime "30.1.3"
- jest-snapshot "30.1.2"
- jest-util "30.0.5"
+ jest-each "30.2.0"
+ jest-matcher-utils "30.2.0"
+ jest-message-util "30.2.0"
+ jest-runtime "30.2.0"
+ jest-snapshot "30.2.0"
+ jest-util "30.2.0"
p-limit "^3.1.0"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
pure-rand "^7.0.0"
slash "^3.0.0"
stack-utils "^2.0.6"
-jest-cli@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-30.1.3.tgz"
- integrity sha512-G8E2Ol3OKch1DEeIBl41NP7OiC6LBhfg25Btv+idcusmoUSpqUkbrneMqbW9lVpI/rCKb/uETidb7DNteheuAQ==
+jest-cli@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-30.2.0.tgz#1780f8e9d66bf84a10b369aea60aeda7697dcc67"
+ integrity sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==
dependencies:
- "@jest/core" "30.1.3"
- "@jest/test-result" "30.1.3"
- "@jest/types" "30.0.5"
+ "@jest/core" "30.2.0"
+ "@jest/test-result" "30.2.0"
+ "@jest/types" "30.2.0"
chalk "^4.1.2"
exit-x "^0.2.2"
import-local "^3.2.0"
- jest-config "30.1.3"
- jest-util "30.0.5"
- jest-validate "30.1.0"
+ jest-config "30.2.0"
+ jest-util "30.2.0"
+ jest-validate "30.2.0"
yargs "^17.7.2"
-jest-config@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-config/-/jest-config-30.1.3.tgz"
- integrity sha512-M/f7gqdQEPgZNA181Myz+GXCe8jXcJsGjCMXUzRj22FIXsZOyHNte84e0exntOvdPaeh9tA0w+B8qlP2fAezfw==
+jest-config@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-30.2.0.tgz#29df8c50e2ad801cc59c406b50176c18c362a90b"
+ integrity sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==
dependencies:
"@babel/core" "^7.27.4"
"@jest/get-type" "30.1.0"
"@jest/pattern" "30.0.1"
- "@jest/test-sequencer" "30.1.3"
- "@jest/types" "30.0.5"
- babel-jest "30.1.2"
+ "@jest/test-sequencer" "30.2.0"
+ "@jest/types" "30.2.0"
+ babel-jest "30.2.0"
chalk "^4.1.2"
ci-info "^4.2.0"
deepmerge "^4.3.1"
glob "^10.3.10"
graceful-fs "^4.2.11"
- jest-circus "30.1.3"
- jest-docblock "30.0.1"
- jest-environment-node "30.1.2"
+ jest-circus "30.2.0"
+ jest-docblock "30.2.0"
+ jest-environment-node "30.2.0"
jest-regex-util "30.0.1"
- jest-resolve "30.1.3"
- jest-runner "30.1.3"
- jest-util "30.0.5"
- jest-validate "30.1.0"
+ jest-resolve "30.2.0"
+ jest-runner "30.2.0"
+ jest-util "30.2.0"
+ jest-validate "30.2.0"
micromatch "^4.0.8"
parse-json "^5.2.0"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
slash "^3.0.0"
strip-json-comments "^3.1.1"
-jest-diff@30.1.2:
- version "30.1.2"
- resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-30.1.2.tgz"
- integrity sha512-4+prq+9J61mOVXCa4Qp8ZjavdxzrWQXrI80GNxP8f4tkI2syPuPrJgdRPZRrfUTRvIoUwcmNLbqEJy9W800+NQ==
+jest-diff@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-30.2.0.tgz#e3ec3a6ea5c5747f605c9e874f83d756cba36825"
+ integrity sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==
dependencies:
"@jest/diff-sequences" "30.0.1"
"@jest/get-type" "30.1.0"
chalk "^4.1.2"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
-jest-diff@^29.7.0:
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a"
- integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^29.6.3"
- jest-get-type "^29.6.3"
- pretty-format "^29.7.0"
-
-jest-docblock@30.0.1:
- version "30.0.1"
- resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-30.0.1.tgz"
- integrity sha512-/vF78qn3DYphAaIc3jy4gA7XSAz167n9Bm/wn/1XhTLW7tTBIzXtCJpb/vcmc73NIIeeohCbdL94JasyXUZsGA==
+jest-docblock@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-30.2.0.tgz#42cd98d69f887e531c7352309542b1ce4ee10256"
+ integrity sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==
dependencies:
detect-newline "^3.1.0"
-jest-each@30.1.0:
- version "30.1.0"
- resolved "https://registry.npmjs.org/jest-each/-/jest-each-30.1.0.tgz"
- integrity sha512-A+9FKzxPluqogNahpCv04UJvcZ9B3HamqpDNWNKDjtxVRYB8xbZLFuCr8JAJFpNp83CA0anGQFlpQna9Me+/tQ==
+jest-each@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-30.2.0.tgz#39e623ae71641c2ac3ee69b3ba3d258fce8e768d"
+ integrity sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==
dependencies:
"@jest/get-type" "30.1.0"
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
chalk "^4.1.2"
- jest-util "30.0.5"
- pretty-format "30.0.5"
+ jest-util "30.2.0"
+ pretty-format "30.2.0"
-jest-environment-node@30.1.2:
- version "30.1.2"
- resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.1.2.tgz"
- integrity sha512-w8qBiXtqGWJ9xpJIA98M0EIoq079GOQRQUyse5qg1plShUCQ0Ek1VTTcczqKrn3f24TFAgFtT+4q3aOXvjbsuA==
+jest-environment-node@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-30.2.0.tgz#3def7980ebd2fd86e74efd4d2e681f55ab38da0f"
+ integrity sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==
dependencies:
- "@jest/environment" "30.1.2"
- "@jest/fake-timers" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/environment" "30.2.0"
+ "@jest/fake-timers" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
- jest-mock "30.0.5"
- jest-util "30.0.5"
- jest-validate "30.1.0"
+ jest-mock "30.2.0"
+ jest-util "30.2.0"
+ jest-validate "30.2.0"
-jest-get-type@^29.6.3:
- version "29.6.3"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1"
- integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==
-
-jest-haste-map@30.1.0:
- version "30.1.0"
- resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.1.0.tgz"
- integrity sha512-JLeM84kNjpRkggcGpQLsV7B8W4LNUWz7oDNVnY1Vjj22b5/fAb3kk3htiD+4Na8bmJmjJR7rBtS2Rmq/NEcADg==
+jest-haste-map@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-30.2.0.tgz#808e3889f288603ac70ff0ac047598345a66022e"
+ integrity sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==
dependencies:
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@types/node" "*"
anymatch "^3.1.3"
fb-watchman "^2.0.2"
graceful-fs "^4.2.11"
jest-regex-util "30.0.1"
- jest-util "30.0.5"
- jest-worker "30.1.0"
+ jest-util "30.2.0"
+ jest-worker "30.2.0"
micromatch "^4.0.8"
walker "^1.0.8"
optionalDependencies:
fsevents "^2.3.3"
-jest-leak-detector@30.1.0:
- version "30.1.0"
- resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.1.0.tgz"
- integrity sha512-AoFvJzwxK+4KohH60vRuHaqXfWmeBATFZpzpmzNmYTtmRMiyGPVhkXpBqxUQunw+dQB48bDf4NpUs6ivVbRv1g==
+jest-leak-detector@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-30.2.0.tgz#292fdca7b7c9cf594e1e570ace140b01d8beb736"
+ integrity sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==
dependencies:
"@jest/get-type" "30.1.0"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
-jest-matcher-utils@30.1.2:
- version "30.1.2"
- resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.1.2.tgz"
- integrity sha512-7ai16hy4rSbDjvPTuUhuV8nyPBd6EX34HkBsBcBX2lENCuAQ0qKCPb/+lt8OSWUa9WWmGYLy41PrEzkwRwoGZQ==
+jest-matcher-utils@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-30.2.0.tgz#69a0d4c271066559ec8b0d8174829adc3f23a783"
+ integrity sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==
dependencies:
"@jest/get-type" "30.1.0"
chalk "^4.1.2"
- jest-diff "30.1.2"
- pretty-format "30.0.5"
+ jest-diff "30.2.0"
+ pretty-format "30.2.0"
-jest-matcher-utils@^29.7.0:
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12"
- integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==
- dependencies:
- chalk "^4.0.0"
- jest-diff "^29.7.0"
- jest-get-type "^29.6.3"
- pretty-format "^29.7.0"
-
-jest-message-util@30.1.0:
- version "30.1.0"
- resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.1.0.tgz"
- integrity sha512-HizKDGG98cYkWmaLUHChq4iN+oCENohQLb7Z5guBPumYs+/etonmNFlg1Ps6yN9LTPyZn+M+b/9BbnHx3WTMDg==
+jest-message-util@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-30.2.0.tgz#fc97bf90d11f118b31e6131e2b67fc4f39f92152"
+ integrity sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==
dependencies:
"@babel/code-frame" "^7.27.1"
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@types/stack-utils" "^2.0.3"
chalk "^4.1.2"
graceful-fs "^4.2.11"
micromatch "^4.0.8"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
slash "^3.0.0"
stack-utils "^2.0.6"
-jest-message-util@^29.7.0:
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3"
- integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==
+jest-mock@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-30.2.0.tgz#69f991614eeb4060189459d3584f710845bff45e"
+ integrity sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==
dependencies:
- "@babel/code-frame" "^7.12.13"
- "@jest/types" "^29.6.3"
- "@types/stack-utils" "^2.0.0"
- chalk "^4.0.0"
- graceful-fs "^4.2.9"
- micromatch "^4.0.4"
- pretty-format "^29.7.0"
- slash "^3.0.0"
- stack-utils "^2.0.3"
-
-jest-mock@30.0.5:
- version "30.0.5"
- resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-30.0.5.tgz"
- integrity sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==
- dependencies:
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@types/node" "*"
- jest-util "30.0.5"
+ jest-util "30.2.0"
jest-pnp-resolver@^1.2.3:
version "1.2.3"
@@ -7911,181 +8035,169 @@ jest-regex-util@30.0.1:
resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.0.1.tgz"
integrity sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==
-jest-resolve-dependencies@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.1.3.tgz"
- integrity sha512-DNfq3WGmuRyHRHfEet+Zm3QOmVFtIarUOQHHryKPc0YL9ROfgWZxl4+aZq/VAzok2SS3gZdniP+dO4zgo59hBg==
+jest-resolve-dependencies@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-30.2.0.tgz#3370e2c0b49cc560f6a7e8ec3a59dd99525e1a55"
+ integrity sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==
dependencies:
jest-regex-util "30.0.1"
- jest-snapshot "30.1.2"
+ jest-snapshot "30.2.0"
-jest-resolve@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.1.3.tgz"
- integrity sha512-DI4PtTqzw9GwELFS41sdMK32Ajp3XZQ8iygeDMWkxlRhm7uUTOFSZFVZABFuxr0jvspn8MAYy54NxZCsuCTSOw==
+jest-resolve@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-30.2.0.tgz#2e2009cbd61e8f1f003355d5ec87225412cebcd7"
+ integrity sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==
dependencies:
chalk "^4.1.2"
graceful-fs "^4.2.11"
- jest-haste-map "30.1.0"
+ jest-haste-map "30.2.0"
jest-pnp-resolver "^1.2.3"
- jest-util "30.0.5"
- jest-validate "30.1.0"
+ jest-util "30.2.0"
+ jest-validate "30.2.0"
slash "^3.0.0"
unrs-resolver "^1.7.11"
-jest-runner@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-30.1.3.tgz"
- integrity sha512-dd1ORcxQraW44Uz029TtXj85W11yvLpDuIzNOlofrC8GN+SgDlgY4BvyxJiVeuabA1t6idjNbX59jLd2oplOGQ==
+jest-runner@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-30.2.0.tgz#c62b4c3130afa661789705e13a07bdbcec26a114"
+ integrity sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==
dependencies:
- "@jest/console" "30.1.2"
- "@jest/environment" "30.1.2"
- "@jest/test-result" "30.1.3"
- "@jest/transform" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/console" "30.2.0"
+ "@jest/environment" "30.2.0"
+ "@jest/test-result" "30.2.0"
+ "@jest/transform" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
chalk "^4.1.2"
emittery "^0.13.1"
exit-x "^0.2.2"
graceful-fs "^4.2.11"
- jest-docblock "30.0.1"
- jest-environment-node "30.1.2"
- jest-haste-map "30.1.0"
- jest-leak-detector "30.1.0"
- jest-message-util "30.1.0"
- jest-resolve "30.1.3"
- jest-runtime "30.1.3"
- jest-util "30.0.5"
- jest-watcher "30.1.3"
- jest-worker "30.1.0"
+ jest-docblock "30.2.0"
+ jest-environment-node "30.2.0"
+ jest-haste-map "30.2.0"
+ jest-leak-detector "30.2.0"
+ jest-message-util "30.2.0"
+ jest-resolve "30.2.0"
+ jest-runtime "30.2.0"
+ jest-util "30.2.0"
+ jest-watcher "30.2.0"
+ jest-worker "30.2.0"
p-limit "^3.1.0"
source-map-support "0.5.13"
-jest-runtime@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.1.3.tgz"
- integrity sha512-WS8xgjuNSphdIGnleQcJ3AKE4tBKOVP+tKhCD0u+Tb2sBmsU8DxfbBpZX7//+XOz81zVs4eFpJQwBNji2Y07DA==
+jest-runtime@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-30.2.0.tgz#395ea792cde048db1b0cd1a92dc9cb9f1921bf8a"
+ integrity sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==
dependencies:
- "@jest/environment" "30.1.2"
- "@jest/fake-timers" "30.1.2"
- "@jest/globals" "30.1.2"
+ "@jest/environment" "30.2.0"
+ "@jest/fake-timers" "30.2.0"
+ "@jest/globals" "30.2.0"
"@jest/source-map" "30.0.1"
- "@jest/test-result" "30.1.3"
- "@jest/transform" "30.1.2"
- "@jest/types" "30.0.5"
+ "@jest/test-result" "30.2.0"
+ "@jest/transform" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
chalk "^4.1.2"
cjs-module-lexer "^2.1.0"
collect-v8-coverage "^1.0.2"
glob "^10.3.10"
graceful-fs "^4.2.11"
- jest-haste-map "30.1.0"
- jest-message-util "30.1.0"
- jest-mock "30.0.5"
+ jest-haste-map "30.2.0"
+ jest-message-util "30.2.0"
+ jest-mock "30.2.0"
jest-regex-util "30.0.1"
- jest-resolve "30.1.3"
- jest-snapshot "30.1.2"
- jest-util "30.0.5"
+ jest-resolve "30.2.0"
+ jest-snapshot "30.2.0"
+ jest-util "30.2.0"
slash "^3.0.0"
strip-bom "^4.0.0"
-jest-snapshot@30.1.2:
- version "30.1.2"
- resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.1.2.tgz"
- integrity sha512-4q4+6+1c8B6Cy5pGgFvjDy/Pa6VYRiGu0yQafKkJ9u6wQx4G5PqI2QR6nxTl43yy7IWsINwz6oT4o6tD12a8Dg==
+jest-snapshot@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-30.2.0.tgz#266fbbb4b95fc4665ce6f32f1f38eeb39f4e26d0"
+ integrity sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==
dependencies:
"@babel/core" "^7.27.4"
"@babel/generator" "^7.27.5"
"@babel/plugin-syntax-jsx" "^7.27.1"
"@babel/plugin-syntax-typescript" "^7.27.1"
"@babel/types" "^7.27.3"
- "@jest/expect-utils" "30.1.2"
+ "@jest/expect-utils" "30.2.0"
"@jest/get-type" "30.1.0"
- "@jest/snapshot-utils" "30.1.2"
- "@jest/transform" "30.1.2"
- "@jest/types" "30.0.5"
- babel-preset-current-node-syntax "^1.1.0"
+ "@jest/snapshot-utils" "30.2.0"
+ "@jest/transform" "30.2.0"
+ "@jest/types" "30.2.0"
+ babel-preset-current-node-syntax "^1.2.0"
chalk "^4.1.2"
- expect "30.1.2"
+ expect "30.2.0"
graceful-fs "^4.2.11"
- jest-diff "30.1.2"
- jest-matcher-utils "30.1.2"
- jest-message-util "30.1.0"
- jest-util "30.0.5"
- pretty-format "30.0.5"
+ jest-diff "30.2.0"
+ jest-matcher-utils "30.2.0"
+ jest-message-util "30.2.0"
+ jest-util "30.2.0"
+ pretty-format "30.2.0"
semver "^7.7.2"
synckit "^0.11.8"
-jest-util@30.0.5:
- version "30.0.5"
- resolved "https://registry.npmjs.org/jest-util/-/jest-util-30.0.5.tgz"
- integrity sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==
+jest-util@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-30.2.0.tgz#5142adbcad6f4e53c2776c067a4db3c14f913705"
+ integrity sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==
dependencies:
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
"@types/node" "*"
chalk "^4.1.2"
ci-info "^4.2.0"
graceful-fs "^4.2.11"
picomatch "^4.0.2"
-jest-util@^29.7.0:
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
- integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==
- dependencies:
- "@jest/types" "^29.6.3"
- "@types/node" "*"
- chalk "^4.0.0"
- ci-info "^3.2.0"
- graceful-fs "^4.2.9"
- picomatch "^2.2.3"
-
-jest-validate@30.1.0:
- version "30.1.0"
- resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-30.1.0.tgz"
- integrity sha512-7P3ZlCFW/vhfQ8pE7zW6Oi4EzvuB4sgR72Q1INfW9m0FGo0GADYlPwIkf4CyPq7wq85g+kPMtPOHNAdWHeBOaA==
+jest-validate@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-30.2.0.tgz#273eaaed4c0963b934b5b31e96289edda6e0a2ef"
+ integrity sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==
dependencies:
"@jest/get-type" "30.1.0"
- "@jest/types" "30.0.5"
+ "@jest/types" "30.2.0"
camelcase "^6.3.0"
chalk "^4.1.2"
leven "^3.1.0"
- pretty-format "30.0.5"
+ pretty-format "30.2.0"
-jest-watcher@30.1.3:
- version "30.1.3"
- resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.1.3.tgz"
- integrity sha512-6jQUZCP1BTL2gvG9E4YF06Ytq4yMb4If6YoQGRR6PpjtqOXSP3sKe2kqwB6SQ+H9DezOfZaSLnmka1NtGm3fCQ==
+jest-watcher@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-30.2.0.tgz#f9c055de48e18c979e7756a3917e596e2d69b07b"
+ integrity sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==
dependencies:
- "@jest/test-result" "30.1.3"
- "@jest/types" "30.0.5"
+ "@jest/test-result" "30.2.0"
+ "@jest/types" "30.2.0"
"@types/node" "*"
ansi-escapes "^4.3.2"
chalk "^4.1.2"
emittery "^0.13.1"
- jest-util "30.0.5"
+ jest-util "30.2.0"
string-length "^4.0.2"
-jest-worker@30.1.0:
- version "30.1.0"
- resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-30.1.0.tgz"
- integrity sha512-uvWcSjlwAAgIu133Tt77A05H7RIk3Ho8tZL50bQM2AkvLdluw9NG48lRCl3Dt+MOH719n/0nnb5YxUwcuJiKRA==
+jest-worker@30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-30.2.0.tgz#fd5c2a36ff6058ec8f74366ec89538cc99539d26"
+ integrity sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==
dependencies:
"@types/node" "*"
"@ungap/structured-clone" "^1.3.0"
- jest-util "30.0.5"
+ jest-util "30.2.0"
merge-stream "^2.0.0"
supports-color "^8.1.1"
-jest@^30.0.0:
- version "30.1.3"
- resolved "https://registry.yarnpkg.com/jest/-/jest-30.1.3.tgz#c962290f65c32d44a0624f785b2d780835525a23"
- integrity sha512-Ry+p2+NLk6u8Agh5yVqELfUJvRfV51hhVBRIB5yZPY7mU0DGBmOuFG5GebZbMbm86cdQNK0fhJuDX8/1YorISQ==
+jest@^30.2.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/jest/-/jest-30.2.0.tgz#9f0a71e734af968f26952b5ae4b724af82681630"
+ integrity sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==
dependencies:
- "@jest/core" "30.1.3"
- "@jest/types" "30.0.5"
+ "@jest/core" "30.2.0"
+ "@jest/types" "30.2.0"
import-local "^3.2.0"
- jest-cli "30.1.3"
+ jest-cli "30.2.0"
jiti@^2.5.1:
version "2.5.1"
@@ -8238,21 +8350,6 @@ jsonpointer@^5.0.0:
resolved "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz"
integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
-jspdf@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/jspdf/-/jspdf-3.0.0.tgz"
- integrity sha512-QvuQZvOI8CjfjVgtajdL0ihrDYif1cN5gXiF9lb9Pd9JOpmocvnNyFO9sdiJ/8RA5Bu8zyGOUjJLj5kiku16ug==
- dependencies:
- "@babel/runtime" "^7.26.0"
- atob "^2.1.2"
- btoa "^1.2.1"
- fflate "^0.8.1"
- optionalDependencies:
- canvg "^3.0.6"
- core-js "^3.6.0"
- dompurify "^3.2.4"
- html2canvas "^1.0.0-rc.5"
-
jsqr@^1.4.0:
version "1.4.0"
resolved "https://registry.npmjs.org/jsqr/-/jsqr-1.4.0.tgz"
@@ -8497,6 +8594,11 @@ lru-cache@^10.2.0:
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz"
integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
+lru-cache@^11.0.0:
+ version "11.2.4"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.4.tgz#ecb523ebb0e6f4d837c807ad1abaea8e0619770d"
+ integrity sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==
+
lru-cache@^4.0.0:
version "4.1.5"
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"
@@ -8519,10 +8621,10 @@ magic-string@^0.25.0, magic-string@^0.25.7:
dependencies:
sourcemap-codec "^1.4.8"
-magic-string@^0.30.18:
- version "0.30.18"
- resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.18.tgz"
- integrity sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==
+magic-string@^0.30.21:
+ version "0.30.21"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.21.tgz#56763ec09a0fa8091df27879fd94d19078c00d91"
+ integrity sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==
dependencies:
"@jridgewell/sourcemap-codec" "^1.5.5"
@@ -8596,7 +8698,7 @@ methods@~1.1.2:
resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
-micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8:
+micromatch@^4.0.5, micromatch@^4.0.8:
version "4.0.8"
resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz"
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
@@ -8659,6 +8761,13 @@ minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"
integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
+minimatch@^10.1.1:
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.1.1.tgz#e6e61b9b0c1dcab116b5a7d1458e8b6ae9e73a55"
+ integrity sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==
+ dependencies:
+ "@isaacs/brace-expansion" "^5.0.0"
+
minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
version "3.1.2"
resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
@@ -8673,7 +8782,7 @@ minimatch@^5.0.1, minimatch@^5.1.0:
dependencies:
brace-expansion "^2.0.1"
-minimatch@^9.0.3, minimatch@^9.0.4:
+minimatch@^9.0.4:
version "9.0.5"
resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz"
integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
@@ -8707,7 +8816,7 @@ mkdirp@~0.5.1:
dependencies:
minimist "^1.2.6"
-mlly@^1.2.0, mlly@^1.7.4:
+mlly@^1.7.4:
version "1.7.4"
resolved "https://registry.npmjs.org/mlly/-/mlly-1.7.4.tgz"
integrity sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==
@@ -8794,10 +8903,10 @@ nanoid@^3.3.8:
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz"
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
-nanoid@^5.1.0:
- version "5.1.5"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.1.5.tgz#f7597f9d9054eb4da9548cdd53ca70f1790e87de"
- integrity sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==
+nanoid@^5.1.5:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.1.6.tgz#30363f664797e7d40429f6c16946d6bd7a3f26c9"
+ integrity sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==
napi-postinstall@^0.2.2:
version "0.2.4"
@@ -8883,10 +8992,15 @@ node-releases@^2.0.19:
resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz"
integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
-nodemon@^3.1.10:
- version "3.1.10"
- resolved "https://registry.npmjs.org/nodemon/-/nodemon-3.1.10.tgz"
- integrity sha512-WDjw3pJ0/0jMFmyNDp3gvY2YizjLmmOUQo6DEBY+JgdvW/yQ9mEeSw6H5ythl5Ny2ytb7f9C2nIbjSxMNzbJXw==
+node-releases@^2.0.27:
+ version "2.0.27"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz#eedca519205cf20f650f61d56b070db111231e4e"
+ integrity sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==
+
+nodemon@^3.1.11:
+ version "3.1.11"
+ resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.11.tgz#04a54d1e794fbec9d8f6ffd8bf1ba9ea93a756ed"
+ integrity sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==
dependencies:
chokidar "^3.5.2"
debug "^4"
@@ -8929,10 +9043,10 @@ normalize.css@^8.0.1:
resolved "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz"
integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==
-npm-check-updates@^18.0.1:
- version "18.0.3"
- resolved "https://registry.yarnpkg.com/npm-check-updates/-/npm-check-updates-18.0.3.tgz#7485cddebd27adcf4c57acc4c9e653b38c7e67af"
- integrity sha512-IMZWxgAa5gpDVEle2KOZOMLfCu2/9FV+xsXQjPFt2OV0dyZixn0OJrZ9NxUcWgr/ZTGogmZtE0Cb8x2wlsVULg==
+npm-check-updates@^19.1.2:
+ version "19.1.2"
+ resolved "https://registry.yarnpkg.com/npm-check-updates/-/npm-check-updates-19.1.2.tgz#8c11a739f8dc0fb5232bc1252fc2e9f65d6fc1da"
+ integrity sha512-FNeFCVgPOj0fz89hOpGtxP2rnnRHR7hD2E8qNU8SMWfkyDZXA/xpgjsL3UMLSo3F/K13QvJDnbxPngulNDDo/g==
npm-run-path@^4.0.1:
version "4.0.1"
@@ -9174,23 +9288,23 @@ param-case@^3.0.4:
dot-case "^3.0.4"
tslib "^2.0.3"
-parcel@^2.15.2:
- version "2.15.4"
- resolved "https://registry.yarnpkg.com/parcel/-/parcel-2.15.4.tgz#f4038e7bb08b74bae6313306e86e0ff9fbacee13"
- integrity sha512-eZHQ/omuQ7yBYB9XezyzSqhc826oy/uhloCNiej1CTZ+twAqJVtp4MRvTGMcivKhE+WE8QkYD5XkJHLLQsJQcg==
+parcel@^2.16.1:
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/parcel/-/parcel-2.16.1.tgz#29d739415d1fd1bc0b5541d7aa9435f543d52e1d"
+ integrity sha512-VImOEXHLdrSuG6/jX2DucrCSju/idmtLUhwS5cCy7CrWDDA1af7qdHHD038kHYXWqUIAmzHkRsp/8oRxBqNfVw==
dependencies:
- "@parcel/config-default" "2.15.4"
- "@parcel/core" "2.15.4"
- "@parcel/diagnostic" "2.15.4"
- "@parcel/events" "2.15.4"
- "@parcel/feature-flags" "2.15.4"
- "@parcel/fs" "2.15.4"
- "@parcel/logger" "2.15.4"
- "@parcel/package-manager" "2.15.4"
- "@parcel/reporter-cli" "2.15.4"
- "@parcel/reporter-dev-server" "2.15.4"
- "@parcel/reporter-tracer" "2.15.4"
- "@parcel/utils" "2.15.4"
+ "@parcel/config-default" "2.16.1"
+ "@parcel/core" "2.16.1"
+ "@parcel/diagnostic" "2.16.1"
+ "@parcel/events" "2.16.1"
+ "@parcel/feature-flags" "2.16.1"
+ "@parcel/fs" "2.16.1"
+ "@parcel/logger" "2.16.1"
+ "@parcel/package-manager" "2.16.1"
+ "@parcel/reporter-cli" "2.16.1"
+ "@parcel/reporter-dev-server" "2.16.1"
+ "@parcel/reporter-tracer" "2.16.1"
+ "@parcel/utils" "2.16.1"
chalk "^4.1.2"
commander "^12.1.0"
get-port "^4.2.0"
@@ -9224,11 +9338,6 @@ parse-json@^5.2.0:
json-parse-even-better-errors "^2.3.0"
lines-and-columns "^1.1.6"
-parse-ms@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz"
- integrity sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==
-
parseurl@~1.3.3:
version "1.3.3"
resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"
@@ -9280,16 +9389,19 @@ path-scurry@^1.11.1:
lru-cache "^10.2.0"
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+path-scurry@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.1.tgz#4b6572376cfd8b811fca9cd1f5c24b3cbac0fe10"
+ integrity sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==
+ dependencies:
+ lru-cache "^11.0.0"
+ minipass "^7.1.2"
+
path-to-regexp@0.1.12:
version "0.1.12"
resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz"
integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==
-pathe@^1.0.0:
- version "1.1.2"
- resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz"
- integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
-
pathe@^2.0.1, pathe@^2.0.3:
version "2.0.3"
resolved "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz"
@@ -9316,17 +9428,17 @@ perfect-debounce@^1.0.0:
resolved "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz"
integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"
- integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==
+perfect-debounce@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-2.0.0.tgz#0ff94f1ecbe0a6bca4b1703a2ed08bbe43739aa7"
+ integrity sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==
picocolors@^1.0.0, picocolors@^1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
-picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3, picomatch@^2.3.1:
+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1:
version "2.3.1"
resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
@@ -9336,12 +9448,17 @@ picomatch@^4.0.2:
resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz"
integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==
-pinia@^3.0.3:
- version "3.0.3"
- resolved "https://registry.npmjs.org/pinia/-/pinia-3.0.3.tgz"
- integrity sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==
+picomatch@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042"
+ integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==
+
+pinia@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/pinia/-/pinia-3.0.4.tgz#75dde12784a61e34c1fa6abcd13c1a1061c360c0"
+ integrity sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==
dependencies:
- "@vue/devtools-api" "^7.7.2"
+ "@vue/devtools-api" "^7.7.7"
pirates@^4.0.7:
version "4.0.7"
@@ -9438,7 +9555,7 @@ postcss-filter-plugins@^2.0.0:
dependencies:
postcss "^5.0.4"
-postcss-loader@^8.1.1:
+postcss-loader@^8.2.0:
version "8.2.0"
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.2.0.tgz#9b830af550bc0829d565d4e774738d84df88eab7"
integrity sha512-tHX+RkpsXVcc7st4dSdDGliI+r4aAQDuv+v3vFYHixb6YgjreG5AG4SEB0kDK8u2s6htqEEpKlkhSBUTvWKYnA==
@@ -9574,10 +9691,10 @@ postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
indexes-of "^1.0.1"
uniq "^1.0.1"
-postcss-selector-parser@^6.0.15:
- version "6.1.2"
- resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz"
- integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
+postcss-selector-parser@^7.1.0:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz#e75d2e0d843f620e5df69076166f4e16f891cb9f"
+ integrity sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -9630,7 +9747,7 @@ postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0
source-map "^0.5.6"
supports-color "^3.2.3"
-postcss@^8.4.14, postcss@^8.5.3:
+postcss@^8.4.14:
version "8.5.3"
resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz"
integrity sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==
@@ -9639,7 +9756,7 @@ postcss@^8.4.14, postcss@^8.5.3:
picocolors "^1.1.1"
source-map-js "^1.2.1"
-postcss@^8.5.5, postcss@^8.5.6:
+postcss@^8.5.6:
version "8.5.6"
resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz"
integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==
@@ -9680,31 +9797,15 @@ pretty-bytes@^5.3.0:
resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz"
integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
-pretty-format@30.0.5:
- version "30.0.5"
- resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-30.0.5.tgz"
- integrity sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==
+pretty-format@30.2.0, pretty-format@^30.0.0:
+ version "30.2.0"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-30.2.0.tgz#2d44fe6134529aed18506f6d11509d8a62775ebe"
+ integrity sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==
dependencies:
"@jest/schemas" "30.0.5"
ansi-styles "^5.2.0"
react-is "^18.3.1"
-pretty-format@^29.0.0, pretty-format@^29.7.0:
- version "29.7.0"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812"
- integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==
- dependencies:
- "@jest/schemas" "^29.6.3"
- ansi-styles "^5.0.0"
- react-is "^18.0.0"
-
-pretty-ms@^9.2.0:
- version "9.2.0"
- resolved "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz"
- integrity sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==
- dependencies:
- parse-ms "^4.0.0"
-
process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
@@ -9778,6 +9879,18 @@ q@^1.1.2:
resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz"
integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
+qrcode-generator@^1.4.4:
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/qrcode-generator/-/qrcode-generator-1.5.2.tgz#43faea8061a60d2b4ca5e9b0c0c0fb99e2d93e3a"
+ integrity sha512-pItrW0Z9HnDBnFmgiNrY1uxRdri32Uh9EjNYLPVC2zZ3ZRIIEqBoDgm4DkvDwNNDHTK7FNkmr8zAa77BYc9xNw==
+
+qrcode-vue3@^1.7.1:
+ version "1.7.1"
+ resolved "https://registry.yarnpkg.com/qrcode-vue3/-/qrcode-vue3-1.7.1.tgz#d2cf627f9ffefd48d7ffb1dc0402a831781890df"
+ integrity sha512-Xa82NslFJUqsnQbLtc1qO+xPEOeFaTRxktg3ugRd2Pk116kta1X+7GLSEPQj9gor8jWVyfmLmhYZHuANnRZoLQ==
+ dependencies:
+ qrcode-generator "^1.4.4"
+
qs@6.13.0:
version "6.13.0"
resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz"
@@ -9790,10 +9903,10 @@ quasar-extras@^2.0.9:
resolved "https://registry.npmjs.org/quasar-extras/-/quasar-extras-2.0.9.tgz"
integrity sha512-ifwaaop0GNuxlcD7Ams0X3f7S49es+2NlR/fI4YAMAOW70ZxTkD4QkAFsVhk7dNPcpPodSOTKAWDOPaO+MqsBg==
-quasar@^2.18.1:
- version "2.18.2"
- resolved "https://registry.yarnpkg.com/quasar/-/quasar-2.18.2.tgz#3bcf2e53371ec10bffc81b319b320e620e3953b7"
- integrity sha512-SeSAamH4vgYH9alLTdVL2o1fTTwz7VZnS2+gvIwt6qsH3ndrn/tQW64sWE78VSvrHlWINYbXESVF/cvWEuTYxg==
+quasar@^2.18.6:
+ version "2.18.6"
+ resolved "https://registry.yarnpkg.com/quasar/-/quasar-2.18.6.tgz#65c98ba203f3c07658e5b8ac54980ccde718f8da"
+ integrity sha512-ZlK+vJXOBPSFDCNQDBDNwSI+AHoqaFPxK8ve6mhsYLhMKWI5b8zsGY9VU1xYjngO2aBvU4fvGWXy4tTbzrBk8Q==
query-string@^4.1.0:
version "4.3.4"
@@ -9818,13 +9931,6 @@ radix3@^1.1.2:
resolved "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz"
integrity sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==
-raf@^3.4.1:
- version "3.4.1"
- resolved "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz"
- integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
- dependencies:
- performance-now "^2.1.0"
-
ramda@^0.27.2:
version "0.27.2"
resolved "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz"
@@ -9860,7 +9966,7 @@ raw-body@2.5.2:
iconv-lite "0.4.24"
unpipe "1.0.0"
-react-is@^18.0.0, react-is@^18.3.1:
+react-is@^18.3.1:
version "18.3.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e"
integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
@@ -9964,11 +10070,6 @@ regenerate@^1.4.2:
resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.7:
- version "0.13.11"
- resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"
- integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-
regenerator-runtime@^0.14.0, regenerator-runtime@^0.14.1:
version "0.14.1"
resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz"
@@ -10113,11 +10214,6 @@ rfdc@^1.4.1:
resolved "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz"
integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==
-rgbcolor@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz"
- integrity sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==
-
ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2"
resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"
@@ -10148,39 +10244,42 @@ rollup-plugin-visualizer@^5.13.1:
source-map "^0.7.4"
yargs "^17.5.1"
-rollup@^2.43.1:
+rollup@^2.79.2:
version "2.79.2"
- resolved "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.2.tgz#f150e4a5db4b121a21a747d762f701e5e9f49090"
integrity sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==
optionalDependencies:
fsevents "~2.3.2"
-rollup@^4.30.1:
- version "4.34.8"
- resolved "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz"
- integrity sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==
+rollup@^4.43.0:
+ version "4.53.3"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.53.3.tgz#dbc8cd8743b38710019fb8297e8d7a76e3faa406"
+ integrity sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==
dependencies:
- "@types/estree" "1.0.6"
+ "@types/estree" "1.0.8"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.34.8"
- "@rollup/rollup-android-arm64" "4.34.8"
- "@rollup/rollup-darwin-arm64" "4.34.8"
- "@rollup/rollup-darwin-x64" "4.34.8"
- "@rollup/rollup-freebsd-arm64" "4.34.8"
- "@rollup/rollup-freebsd-x64" "4.34.8"
- "@rollup/rollup-linux-arm-gnueabihf" "4.34.8"
- "@rollup/rollup-linux-arm-musleabihf" "4.34.8"
- "@rollup/rollup-linux-arm64-gnu" "4.34.8"
- "@rollup/rollup-linux-arm64-musl" "4.34.8"
- "@rollup/rollup-linux-loongarch64-gnu" "4.34.8"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.34.8"
- "@rollup/rollup-linux-riscv64-gnu" "4.34.8"
- "@rollup/rollup-linux-s390x-gnu" "4.34.8"
- "@rollup/rollup-linux-x64-gnu" "4.34.8"
- "@rollup/rollup-linux-x64-musl" "4.34.8"
- "@rollup/rollup-win32-arm64-msvc" "4.34.8"
- "@rollup/rollup-win32-ia32-msvc" "4.34.8"
- "@rollup/rollup-win32-x64-msvc" "4.34.8"
+ "@rollup/rollup-android-arm-eabi" "4.53.3"
+ "@rollup/rollup-android-arm64" "4.53.3"
+ "@rollup/rollup-darwin-arm64" "4.53.3"
+ "@rollup/rollup-darwin-x64" "4.53.3"
+ "@rollup/rollup-freebsd-arm64" "4.53.3"
+ "@rollup/rollup-freebsd-x64" "4.53.3"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.53.3"
+ "@rollup/rollup-linux-arm-musleabihf" "4.53.3"
+ "@rollup/rollup-linux-arm64-gnu" "4.53.3"
+ "@rollup/rollup-linux-arm64-musl" "4.53.3"
+ "@rollup/rollup-linux-loong64-gnu" "4.53.3"
+ "@rollup/rollup-linux-ppc64-gnu" "4.53.3"
+ "@rollup/rollup-linux-riscv64-gnu" "4.53.3"
+ "@rollup/rollup-linux-riscv64-musl" "4.53.3"
+ "@rollup/rollup-linux-s390x-gnu" "4.53.3"
+ "@rollup/rollup-linux-x64-gnu" "4.53.3"
+ "@rollup/rollup-linux-x64-musl" "4.53.3"
+ "@rollup/rollup-openharmony-arm64" "4.53.3"
+ "@rollup/rollup-win32-arm64-msvc" "4.53.3"
+ "@rollup/rollup-win32-ia32-msvc" "4.53.3"
+ "@rollup/rollup-win32-x64-gnu" "4.53.3"
+ "@rollup/rollup-win32-x64-msvc" "4.53.3"
fsevents "~2.3.2"
run-applescript@^7.0.0:
@@ -10441,6 +10540,11 @@ semver@^7.6.2, semver@^7.7.2:
resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"
integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+semver@^7.7.3:
+ version "7.7.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946"
+ integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==
+
send@0.19.0:
version "0.19.0"
resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz"
@@ -10592,7 +10696,7 @@ signal-exit@^3.0.2, signal-exit@^3.0.3:
resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-signal-exit@^4.0.1, signal-exit@^4.1.0:
+signal-exit@^4.0.1:
version "4.1.0"
resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz"
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
@@ -10665,7 +10769,7 @@ sortablejs@1.14.0:
resolved "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz"
integrity sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==
-source-map-js@^1.0.1, source-map-js@^1.0.2, source-map-js@^1.2.0, source-map-js@^1.2.1:
+source-map-js@^1.0.2, source-map-js@^1.2.0, source-map-js@^1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz"
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
@@ -10740,18 +10844,13 @@ stack-trace@^1.0.0-pre2:
resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-1.0.0-pre2.tgz"
integrity sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==
-stack-utils@^2.0.3, stack-utils@^2.0.6:
+stack-utils@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f"
integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==
dependencies:
escape-string-regexp "^2.0.0"
-stackblur-canvas@^2.0.0:
- version "2.7.0"
- resolved "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz"
- integrity sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==
-
statuses@2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"
@@ -10896,10 +10995,10 @@ stringify-object@^3.3.0:
dependencies:
ansi-regex "^5.0.1"
-strip-ansi@=7.1.0, strip-ansi@^7.0.1, strip-ansi@^7.1.0:
- version "7.1.0"
- resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
- integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
+strip-ansi@=7.1.2:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba"
+ integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==
dependencies:
ansi-regex "^6.0.1"
@@ -10917,6 +11016,13 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1:
dependencies:
ansi-regex "^5.0.1"
+strip-ansi@^7.0.1:
+ version "7.1.0"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
+ integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
+ dependencies:
+ ansi-regex "^6.0.1"
+
strip-bom@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
@@ -10937,11 +11043,6 @@ strip-final-newline@^2.0.0:
resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-strip-final-newline@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz"
- integrity sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==
-
strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
@@ -10999,11 +11100,6 @@ supports-preserve-symlinks-flag@^1.0.0:
resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
-svg-pathdata@^6.0.3:
- version "6.0.3"
- resolved "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz"
- integrity sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==
-
svgo@^0.7.0:
version "0.7.2"
resolved "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz"
@@ -11112,13 +11208,6 @@ text-decoder@^1.1.0:
dependencies:
b4a "^1.6.4"
-text-segmentation@^1.0.3:
- version "1.0.3"
- resolved "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz"
- integrity sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==
- dependencies:
- utrie "^1.0.2"
-
through@^2.3.6:
version "2.3.8"
resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
@@ -11142,13 +11231,13 @@ tinyglobby@^0.2.10:
fdir "^6.4.3"
picomatch "^4.0.2"
-tinyglobby@^0.2.13:
- version "0.2.14"
- resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.14.tgz#5280b0cf3f972b050e74ae88406c0a6a58f4079d"
- integrity sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==
+tinyglobby@^0.2.14, tinyglobby@^0.2.15:
+ version "0.2.15"
+ resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2"
+ integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==
dependencies:
- fdir "^6.4.4"
- picomatch "^4.0.2"
+ fdir "^6.5.0"
+ picomatch "^4.0.3"
tmp@^0.0.33:
version "0.0.33"
@@ -11213,10 +11302,10 @@ ts-essentials@^9.4.2:
resolved "https://registry.npmjs.org/ts-essentials/-/ts-essentials-9.4.2.tgz"
integrity sha512-mB/cDhOvD7pg3YCLk2rOtejHjjdSi9in/IBYE13S+8WA5FBSraYf4V/ws55uvs0IvQ/l0wBOlXy5yBNZ9Bl8ZQ==
-ts-jest@^29.4.0:
- version "29.4.1"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.1.tgz#42d33beb74657751d315efb9a871fe99e3b9b519"
- integrity sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw==
+ts-jest@^29.4.6:
+ version "29.4.6"
+ resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.6.tgz#51cb7c133f227396818b71297ad7409bb77106e9"
+ integrity sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==
dependencies:
bs-logger "^0.2.6"
fast-json-stable-stringify "^2.1.0"
@@ -11224,7 +11313,7 @@ ts-jest@^29.4.0:
json5 "^2.2.3"
lodash.memoize "^4.1.2"
make-error "^1.3.6"
- semver "^7.7.2"
+ semver "^7.7.3"
type-fest "^4.41.0"
yargs-parser "^21.1.1"
@@ -11343,7 +11432,7 @@ typed-array-length@^1.0.7:
possible-typed-array-names "^1.0.0"
reflect.getprototypeof "^1.0.6"
-typescript-eslint@^8.34.0, typescript-eslint@^8.35.1:
+typescript-eslint@^8.35.1:
version "8.42.0"
resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.42.0.tgz#e92f6c88569e202b361d5ca1655ad8e33a0554ea"
integrity sha512-ozR/rQn+aQXQxh1YgbCzQWDFrsi9mcg+1PM3l/z5o1+20P7suOIaNg515bpr/OYt6FObz/NHcBstydDLHWeEKg==
@@ -11353,10 +11442,20 @@ typescript-eslint@^8.34.0, typescript-eslint@^8.35.1:
"@typescript-eslint/typescript-estree" "8.42.0"
"@typescript-eslint/utils" "8.42.0"
-typescript@5.8.3:
- version "5.8.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e"
- integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==
+typescript-eslint@^8.48.1:
+ version "8.48.1"
+ resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.48.1.tgz#436028540f5859755687b8b1b28e19ed9194aaad"
+ integrity sha512-FbOKN1fqNoXp1hIl5KYpObVrp0mCn+CLgn479nmu2IsRMrx2vyv74MmsBLVlhg8qVwNFGbXSp8fh1zp8pEoC2A==
+ dependencies:
+ "@typescript-eslint/eslint-plugin" "8.48.1"
+ "@typescript-eslint/parser" "8.48.1"
+ "@typescript-eslint/typescript-estree" "8.48.1"
+ "@typescript-eslint/utils" "8.48.1"
+
+typescript@5.9.3:
+ version "5.9.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f"
+ integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==
ufo@^1.5.4:
version "1.5.4"
@@ -11403,10 +11502,10 @@ undici-types@~6.21.0:
resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz"
integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==
-undici-types@~7.10.0:
- version "7.10.0"
- resolved "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz"
- integrity sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==
+undici-types@~7.16.0:
+ version "7.16.0"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46"
+ integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.1"
@@ -11468,12 +11567,14 @@ unpipe@1.0.0, unpipe@~1.0.0:
resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
-unplugin@^1.1.0:
- version "1.16.1"
- resolved "https://registry.npmjs.org/unplugin/-/unplugin-1.16.1.tgz"
- integrity sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==
+unplugin@^2.3.4:
+ version "2.3.11"
+ resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-2.3.11.tgz#411e020dd2ba90e2fbe1e7bd63a5a399e6ee3b54"
+ integrity sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==
dependencies:
- acorn "^8.14.0"
+ "@jridgewell/remapping" "^2.3.5"
+ acorn "^8.15.0"
+ picomatch "^4.0.3"
webpack-virtual-modules "^0.6.2"
unrs-resolver@^1.7.11:
@@ -11516,6 +11617,14 @@ update-browserslist-db@^1.1.1, update-browserslist-db@^1.1.3:
escalade "^3.2.0"
picocolors "^1.1.1"
+update-browserslist-db@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz#7802aa2ae91477f255b86e0e46dbc787a206ad4a"
+ integrity sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==
+ dependencies:
+ escalade "^3.2.0"
+ picocolors "^1.1.1"
+
uri-js@^4.2.2:
version "4.4.1"
resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
@@ -11543,13 +11652,6 @@ utils-merge@1.0.1:
resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
-utrie@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz"
- integrity sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==
- dependencies:
- base64-arraybuffer "^1.0.2"
-
uuid@^11.1.0:
version "11.1.0"
resolved "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz"
@@ -11587,34 +11689,36 @@ vendors@^1.0.0:
resolved "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz"
integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
-vite-hot-client@^2.0.4:
+vite-hot-client@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-2.1.0.tgz#88f8469875e0121eae2f460cbf35cb528c049961"
integrity sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==
-vite-plugin-checker@^0.9.3:
- version "0.9.3"
- resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.9.3.tgz#f6665dba3d6fa8ef5a559e35e546abc33e5f6074"
- integrity sha512-Tf7QBjeBtG7q11zG0lvoF38/2AVUzzhMNu+Wk+mcsJ00Rk/FpJ4rmUviVJpzWkagbU13cGXvKpt7CMiqtxVTbQ==
+vite-plugin-checker@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.11.0.tgz#063ce180c3751b790a6472e19c5d1a352b215070"
+ integrity sha512-iUdO9Pl9UIBRPAragwi3as/BXXTtRu4G12L3CMrjx+WVTd9g/MsqNakreib9M/2YRVkhZYiTEwdH2j4Dm0w7lw==
dependencies:
"@babel/code-frame" "^7.27.1"
chokidar "^4.0.3"
npm-run-path "^6.0.0"
picocolors "^1.1.1"
- picomatch "^4.0.2"
- strip-ansi "^7.1.0"
+ picomatch "^4.0.3"
tiny-invariant "^1.3.3"
- tinyglobby "^0.2.13"
+ tinyglobby "^0.2.14"
vscode-uri "^3.1.0"
-vite@^6.1.0:
- version "6.2.0"
- resolved "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz"
- integrity sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==
+vite@^7.0.3:
+ version "7.2.6"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-7.2.6.tgz#91e05ba05bc7c667a7645595e21f2a0eb1057631"
+ integrity sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==
dependencies:
esbuild "^0.25.0"
- postcss "^8.5.3"
- rollup "^4.30.1"
+ fdir "^6.5.0"
+ picomatch "^4.0.3"
+ postcss "^8.5.6"
+ rollup "^4.43.0"
+ tinyglobby "^0.2.15"
optionalDependencies:
fsevents "~2.3.3"
@@ -11648,14 +11752,12 @@ vue-demi@^0.13.11:
resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz"
integrity sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==
-vue-echarts@^7.0.3:
- version "7.0.3"
- resolved "https://registry.npmjs.org/vue-echarts/-/vue-echarts-7.0.3.tgz"
- integrity sha512-/jSxNwOsw5+dYAUcwSfkLwKPuzTQ0Cepz1LxCOpj2QcHrrmUa/Ql0eQqMmc1rTPQVrh2JQ29n2dhq75ZcHvRDw==
- dependencies:
- vue-demi "^0.13.11"
+vue-echarts@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/vue-echarts/-/vue-echarts-8.0.1.tgz#2ed7e507d223e56cd209610f4fee5e8ec9bcbb2f"
+ integrity sha512-23rJTFLu1OUEGRWjJGmdGt8fP+8+ja1gVgzMYPIPaHWpXegcO1viIAaeu2H4QHESlVeHzUAHIxKXGrwjsyXAaA==
-vue-eslint-parser@^10.1.3, vue-eslint-parser@^10.2.0:
+vue-eslint-parser@^10.2.0:
version "10.2.0"
resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-10.2.0.tgz"
integrity sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==
@@ -11681,13 +11783,13 @@ vue-i18n@^10.0.0:
"@intlify/shared" "10.0.8"
"@vue/devtools-api" "^6.5.0"
-vue-i18n@^11.1.5:
- version "11.1.11"
- resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-11.1.11.tgz#b38ed214896540cf7a68932dfa565d9d4fbbffac"
- integrity sha512-LvyteQoXeQiuILbzqv13LbyBna/TEv2Ha+4ZWK2AwGHUzZ8+IBaZS0TJkCgn5izSPLcgZwXy9yyTrewCb2u/MA==
+vue-i18n@^11.2.2:
+ version "11.2.2"
+ resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-11.2.2.tgz#bc733a5aab5f346c803cb8e6ce49c3748193991f"
+ integrity sha512-ULIKZyRluUPRCZmihVgUvpq8hJTtOqnbGZuv4Lz+byEKZq4mU0g92og414l6f/4ju+L5mORsiUuEPYrAuX2NJg==
dependencies:
- "@intlify/core-base" "11.1.11"
- "@intlify/shared" "11.1.11"
+ "@intlify/core-base" "11.2.2"
+ "@intlify/shared" "11.2.2"
"@vue/devtools-api" "^6.5.0"
vue-idb@^0.2.0:
@@ -11712,10 +11814,10 @@ vue-property-decorator@^7.0.0:
dependencies:
vue-class-component "^6.2.0"
-vue-router@^4.5.1:
- version "4.5.1"
- resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.5.1.tgz"
- integrity sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==
+vue-router@^4.6.3:
+ version "4.6.3"
+ resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.6.3.tgz#52a40a231b910806438a8203c065a411fd3f1faa"
+ integrity sha512-ARBedLm9YlbvQomnmq91Os7ck6efydTSpRP3nuOKCvgJOHNrhRoJDSKtee8kcL1Vf7nz6U+PMBL+hTvR3bTVQg==
dependencies:
"@vue/devtools-api" "^6.6.4"
@@ -11757,13 +11859,13 @@ vue-timeago3@^2.3.2:
dependencies:
date-fns "^2.28.0"
-vue-tsc@^2.2.10:
- version "2.2.12"
- resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-2.2.12.tgz#5f719b08ef7390a763c1a20169ca5c9d09d55688"
- integrity sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==
+vue-tsc@^3.1.5:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-3.1.5.tgz#9f2bace5c32be943780ae4a7a298329b2777e711"
+ integrity sha512-L/G9IUjOWhBU0yun89rv8fKqmKC+T0HfhrFjlIml71WpfBv9eb4E9Bev8FMbyueBIU9vxQqbd+oOsVcDa5amGw==
dependencies:
- "@volar/typescript" "2.4.15"
- "@vue/language-core" "2.2.12"
+ "@volar/typescript" "2.4.23"
+ "@vue/language-core" "3.1.5"
vue2-dragula@^2.5.5:
version "2.5.5"
@@ -11772,10 +11874,10 @@ vue2-dragula@^2.5.5:
dependencies:
dragula "3.7.2"
-vue3-apexcharts@^1.8.0:
- version "1.8.0"
- resolved "https://registry.npmjs.org/vue3-apexcharts/-/vue3-apexcharts-1.8.0.tgz"
- integrity sha512-5tSD4mXTBbIJ9ir+58qHE6oNtIe0RNgqIRYMKpcsIaxkKtwUww4JhvPkpUFlmiW4OJbbdklgjleXq1lfcM4gdA==
+vue3-apexcharts@^1.10.0:
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/vue3-apexcharts/-/vue3-apexcharts-1.10.0.tgz#3142e79c8fcac9896501562ee186ffa1fb47da59"
+ integrity sha512-sBma2In4rU5n/JBrv8KVb8if+IoY019Dse2yRDD/eRU1WGZHK07zuy9erefKzbJ7T3wP9+Jsy9bH6Vdjy85HZg==
vue3-qr-reader@^1.0.0:
version "1.0.0"
@@ -11792,16 +11894,16 @@ vue@^2.0.0, vue@^2.5.3, vue@^2.7.15:
"@vue/compiler-sfc" "2.7.16"
csstype "^3.1.0"
-vue@^3.4, vue@^3.5.16:
- version "3.5.21"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.21.tgz#30af9553fd9642870321b7dc547b46c395cb7b91"
- integrity sha512-xxf9rum9KtOdwdRkiApWL+9hZEMWE90FHh8yS1+KJAiWYh+iGWV1FquPjoO9VUHQ+VIhsCXNNyZ5Sf4++RVZBA==
+vue@^3.5.14, vue@^3.5.25:
+ version "3.5.25"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.25.tgz#b68b5092b617c57a0a36e8e640fd2c09aa2a374d"
+ integrity sha512-YLVdgv2K13WJ6n+kD5owehKtEXwdwXuj2TTyJMsO7pSeKw2bfRNZGjhB7YzrpbMYj5b5QsUebHpOqR3R3ziy/g==
dependencies:
- "@vue/compiler-dom" "3.5.21"
- "@vue/compiler-sfc" "3.5.21"
- "@vue/runtime-dom" "3.5.21"
- "@vue/server-renderer" "3.5.21"
- "@vue/shared" "3.5.21"
+ "@vue/compiler-dom" "3.5.25"
+ "@vue/compiler-sfc" "3.5.25"
+ "@vue/runtime-dom" "3.5.25"
+ "@vue/server-renderer" "3.5.25"
+ "@vue/shared" "3.5.25"
vuedraggable@^4.1.0:
version "4.1.0"
@@ -12009,25 +12111,25 @@ wordwrap@^1.0.0:
resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
-workbox-background-sync@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-7.3.0.tgz"
- integrity sha512-PCSk3eK7Mxeuyatb22pcSx9dlgWNv3+M8PqPaYDokks8Y5/FX4soaOqj3yhAZr5k6Q5JWTOMYgaJBpbw11G9Eg==
+workbox-background-sync@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-7.4.0.tgz#5fcf83162b540f799966fdd8df0858f91b787d77"
+ integrity sha512-8CB9OxKAgKZKyNMwfGZ1XESx89GryWTfI+V5yEj8sHjFH8MFelUwYXEyldEK6M6oKMmn807GoJFUEA1sC4XS9w==
dependencies:
idb "^7.0.1"
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-broadcast-update@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-7.3.0.tgz"
- integrity sha512-T9/F5VEdJVhwmrIAE+E/kq5at2OY6+OXXgOWQevnubal6sO92Gjo24v6dCVwQiclAF5NS3hlmsifRrpQzZCdUA==
+workbox-broadcast-update@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-7.4.0.tgz#f0ee7d2af51d199e32213a429dff03f14ba76dea"
+ integrity sha512-+eZQwoktlvo62cI0b+QBr40v5XjighxPq3Fzo9AWMiAosmpG5gxRHgTbGGhaJv/q/MFVxwFNGh/UwHZ/8K88lA==
dependencies:
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-build@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-build/-/workbox-build-7.3.0.tgz"
- integrity sha512-JGL6vZTPlxnlqZRhR/K/msqg3wKP+m0wfEUVosK7gsYzSgeIxvZLi1ViJJzVL7CEeI8r7rGFV973RiEqkP3lWQ==
+workbox-build@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-7.4.0.tgz#033f88ebbd9c6312983f3fb9c17a4161369d693f"
+ integrity sha512-Ntk1pWb0caOFIvwz/hfgrov/OJ45wPEhI5PbTywQcYjyZiVhT3UrwwUPl6TRYbTm4moaFYithYnl1lvZ8UjxcA==
dependencies:
"@apideck/better-ajv-errors" "^0.3.1"
"@babel/core" "^7.24.4"
@@ -12042,130 +12144,130 @@ workbox-build@^7.3.0:
common-tags "^1.8.0"
fast-json-stable-stringify "^2.1.0"
fs-extra "^9.0.1"
- glob "^7.1.6"
+ glob "^11.0.1"
lodash "^4.17.20"
pretty-bytes "^5.3.0"
- rollup "^2.43.1"
+ rollup "^2.79.2"
source-map "^0.8.0-beta.0"
stringify-object "^3.3.0"
strip-comments "^2.0.1"
tempy "^0.6.0"
upath "^1.2.0"
- workbox-background-sync "7.3.0"
- workbox-broadcast-update "7.3.0"
- workbox-cacheable-response "7.3.0"
- workbox-core "7.3.0"
- workbox-expiration "7.3.0"
- workbox-google-analytics "7.3.0"
- workbox-navigation-preload "7.3.0"
- workbox-precaching "7.3.0"
- workbox-range-requests "7.3.0"
- workbox-recipes "7.3.0"
- workbox-routing "7.3.0"
- workbox-strategies "7.3.0"
- workbox-streams "7.3.0"
- workbox-sw "7.3.0"
- workbox-window "7.3.0"
+ workbox-background-sync "7.4.0"
+ workbox-broadcast-update "7.4.0"
+ workbox-cacheable-response "7.4.0"
+ workbox-core "7.4.0"
+ workbox-expiration "7.4.0"
+ workbox-google-analytics "7.4.0"
+ workbox-navigation-preload "7.4.0"
+ workbox-precaching "7.4.0"
+ workbox-range-requests "7.4.0"
+ workbox-recipes "7.4.0"
+ workbox-routing "7.4.0"
+ workbox-strategies "7.4.0"
+ workbox-streams "7.4.0"
+ workbox-sw "7.4.0"
+ workbox-window "7.4.0"
-workbox-cacheable-response@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-7.3.0.tgz"
- integrity sha512-eAFERIg6J2LuyELhLlmeRcJFa5e16Mj8kL2yCDbhWE+HUun9skRQrGIFVUagqWj4DMaaPSMWfAolM7XZZxNmxA==
+workbox-cacheable-response@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-7.4.0.tgz#f684380c07dfce4ed1aa555c8a29a2a1f8421d46"
+ integrity sha512-0Fb8795zg/x23ISFkAc7lbWes6vbw34DGFIMw31cwuHPgDEC/5EYm6m/ZkylLX0EnEbbOyOCLjKgFS/Z5g0HeQ==
dependencies:
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-core@7.3.0, workbox-core@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-core/-/workbox-core-7.3.0.tgz"
- integrity sha512-Z+mYrErfh4t3zi7NVTvOuACB0A/jA3bgxUN3PwtAVHvfEsZxV9Iju580VEETug3zYJRc0Dmii/aixI/Uxj8fmw==
+workbox-core@7.4.0, workbox-core@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-7.4.0.tgz#5cb59ae7655f2727423268fb1ba698f37809189d"
+ integrity sha512-6BMfd8tYEnN4baG4emG9U0hdXM4gGuDU3ectXuVHnj71vwxTFI7WOpQJC4siTOlVtGqCUtj0ZQNsrvi6kZZTAQ==
-workbox-expiration@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-7.3.0.tgz"
- integrity sha512-lpnSSLp2BM+K6bgFCWc5bS1LR5pAwDWbcKt1iL87/eTSJRdLdAwGQznZE+1czLgn/X05YChsrEegTNxjM067vQ==
+workbox-expiration@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-7.4.0.tgz#f7162a45ad8b28de84acea478df421b4d0065e61"
+ integrity sha512-V50p4BxYhtA80eOvulu8xVfPBgZbkxJ1Jr8UUn0rvqjGhLDqKNtfrDfjJKnLz2U8fO2xGQJTx/SKXNTzHOjnHw==
dependencies:
idb "^7.0.1"
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-google-analytics@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-7.3.0.tgz"
- integrity sha512-ii/tSfFdhjLHZ2BrYgFNTrb/yk04pw2hasgbM70jpZfLk0vdJAXgaiMAWsoE+wfJDNWoZmBYY0hMVI0v5wWDbg==
+workbox-google-analytics@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-7.4.0.tgz#208d8e584e8262af8a14140c3a990d13021c8257"
+ integrity sha512-MVPXQslRF6YHkzGoFw1A4GIB8GrKym/A5+jYDUSL+AeJw4ytQGrozYdiZqUW1TPQHW8isBCBtyFJergUXyNoWQ==
dependencies:
- workbox-background-sync "7.3.0"
- workbox-core "7.3.0"
- workbox-routing "7.3.0"
- workbox-strategies "7.3.0"
+ workbox-background-sync "7.4.0"
+ workbox-core "7.4.0"
+ workbox-routing "7.4.0"
+ workbox-strategies "7.4.0"
-workbox-navigation-preload@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-7.3.0.tgz"
- integrity sha512-fTJzogmFaTv4bShZ6aA7Bfj4Cewaq5rp30qcxl2iYM45YD79rKIhvzNHiFj1P+u5ZZldroqhASXwwoyusnr2cg==
+workbox-navigation-preload@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-7.4.0.tgz#3133983b2690dee733d18f56760fdd5182a6ffaf"
+ integrity sha512-etzftSgdQfjMcfPgbfaZCfM2QuR1P+4o8uCA2s4rf3chtKTq/Om7g/qvEOcZkG6v7JZOSOxVYQiOu6PbAZgU6w==
dependencies:
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-precaching@7.3.0, workbox-precaching@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-7.3.0.tgz"
- integrity sha512-ckp/3t0msgXclVAYaNndAGeAoWQUv7Rwc4fdhWL69CCAb2UHo3Cef0KIUctqfQj1p8h6aGyz3w8Cy3Ihq9OmIw==
+workbox-precaching@7.4.0, workbox-precaching@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-7.4.0.tgz#daf486953353acaf84142b78cf28a890c466b242"
+ integrity sha512-VQs37T6jDqf1rTxUJZXRl3yjZMf5JX/vDPhmx2CPgDDKXATzEoqyRqhYnRoxl6Kr0rqaQlp32i9rtG5zTzIlNg==
dependencies:
- workbox-core "7.3.0"
- workbox-routing "7.3.0"
- workbox-strategies "7.3.0"
+ workbox-core "7.4.0"
+ workbox-routing "7.4.0"
+ workbox-strategies "7.4.0"
-workbox-range-requests@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-7.3.0.tgz"
- integrity sha512-EyFmM1KpDzzAouNF3+EWa15yDEenwxoeXu9bgxOEYnFfCxns7eAxA9WSSaVd8kujFFt3eIbShNqa4hLQNFvmVQ==
+workbox-range-requests@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-7.4.0.tgz#1be334d6a7a0b158d6094e8698460393863d28a2"
+ integrity sha512-3Vq854ZNuP6Y0KZOQWLaLC9FfM7ZaE+iuQl4VhADXybwzr4z/sMmnLgTeUZLq5PaDlcJBxYXQ3U91V7dwAIfvw==
dependencies:
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-recipes@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-7.3.0.tgz"
- integrity sha512-BJro/MpuW35I/zjZQBcoxsctgeB+kyb2JAP5EB3EYzePg8wDGoQuUdyYQS+CheTb+GhqJeWmVs3QxLI8EBP1sg==
+workbox-recipes@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-7.4.0.tgz#217e6394f965bed8fbf15ad83370f03356c885c9"
+ integrity sha512-kOkWvsAn4H8GvAkwfJTbwINdv4voFoiE9hbezgB1sb/0NLyTG4rE7l6LvS8lLk5QIRIto+DjXLuAuG3Vmt3cxQ==
dependencies:
- workbox-cacheable-response "7.3.0"
- workbox-core "7.3.0"
- workbox-expiration "7.3.0"
- workbox-precaching "7.3.0"
- workbox-routing "7.3.0"
- workbox-strategies "7.3.0"
+ workbox-cacheable-response "7.4.0"
+ workbox-core "7.4.0"
+ workbox-expiration "7.4.0"
+ workbox-precaching "7.4.0"
+ workbox-routing "7.4.0"
+ workbox-strategies "7.4.0"
-workbox-routing@7.3.0, workbox-routing@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-routing/-/workbox-routing-7.3.0.tgz"
- integrity sha512-ZUlysUVn5ZUzMOmQN3bqu+gK98vNfgX/gSTZ127izJg/pMMy4LryAthnYtjuqcjkN4HEAx1mdgxNiKJMZQM76A==
+workbox-routing@7.4.0, workbox-routing@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-7.4.0.tgz#4b5bc90256515dc5cf49b356b101721fd135d013"
+ integrity sha512-C/ooj5uBWYAhAqwmU8HYQJdOjjDKBp9MzTQ+otpMmd+q0eF59K+NuXUek34wbL0RFrIXe/KKT+tUWcZcBqxbHQ==
dependencies:
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-strategies@7.3.0, workbox-strategies@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-7.3.0.tgz"
- integrity sha512-tmZydug+qzDFATwX7QiEL5Hdf7FrkhjaF9db1CbB39sDmEZJg3l9ayDvPxy8Y18C3Y66Nrr9kkN1f/RlkDgllg==
+workbox-strategies@7.4.0, workbox-strategies@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-7.4.0.tgz#59130734400722d39ce4a0a1a22a363e99913946"
+ integrity sha512-T4hVqIi5A4mHi92+5EppMX3cLaVywDp8nsyUgJhOZxcfSV/eQofcOA6/EMo5rnTNmNTpw0rUgjAI6LaVullPpg==
dependencies:
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
-workbox-streams@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-streams/-/workbox-streams-7.3.0.tgz"
- integrity sha512-SZnXucyg8x2Y61VGtDjKPO5EgPUG5NDn/v86WYHX+9ZqvAsGOytP0Jxp1bl663YUuMoXSAtsGLL+byHzEuMRpw==
+workbox-streams@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-7.4.0.tgz#e5b8e6b540f08e05f3c51b748c54056d24f20e8c"
+ integrity sha512-QHPBQrey7hQbnTs5GrEVoWz7RhHJXnPT+12qqWM378orDMo5VMJLCkCM1cnCk+8Eq92lccx/VgRZ7WAzZWbSLg==
dependencies:
- workbox-core "7.3.0"
- workbox-routing "7.3.0"
+ workbox-core "7.4.0"
+ workbox-routing "7.4.0"
-workbox-sw@7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-sw/-/workbox-sw-7.3.0.tgz"
- integrity sha512-aCUyoAZU9IZtH05mn0ACUpyHzPs0lMeJimAYkQkBsOWiqaJLgusfDCR+yllkPkFRxWpZKF8vSvgHYeG7LwhlmA==
+workbox-sw@7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-7.4.0.tgz#05c9659399b8f3716e14406be66eb118fcb3968f"
+ integrity sha512-ltU+Kr3qWR6BtbdlMnCjobZKzeV1hN+S6UvDywBrwM19TTyqA03X66dzw1tEIdJvQ4lYKkBFox6IAEhoSEZ8Xw==
-workbox-window@7.3.0, workbox-window@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/workbox-window/-/workbox-window-7.3.0.tgz"
- integrity sha512-qW8PDy16OV1UBaUNGlTVcepzrlzyzNW/ZJvFQQs2j2TzGsg6IKjcpZC1RSquqQnTOafl5pCj5bGfAHlCjOOjdA==
+workbox-window@7.4.0, workbox-window@^7.4.0:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-7.4.0.tgz#5399a5261b8c34d9d102f2d832d5857ee4d5748a"
+ integrity sha512-/bIYdBLAVsNR3v7gYGaV4pQW3M3kEPx5E8vDxGvxo6khTrGtSSCS7QiFKv9ogzBgZiy0OXLP9zO28U/1nF1mfw==
dependencies:
"@types/trusted-types" "^2.0.2"
- workbox-core "7.3.0"
+ workbox-core "7.4.0"
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
version "7.0.0"
@@ -12308,11 +12410,6 @@ yoctocolors-cjs@^2.1.2:
resolved "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz"
integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==
-yoctocolors@^2.1.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz"
- integrity sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==
-
zip-stream@^6.0.1:
version "6.0.1"
resolved "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz"
@@ -12322,9 +12419,9 @@ zip-stream@^6.0.1:
compress-commons "^6.0.2"
readable-stream "^4.0.0"
-zrender@5.6.1:
- version "5.6.1"
- resolved "https://registry.yarnpkg.com/zrender/-/zrender-5.6.1.tgz#e08d57ecf4acac708c4fcb7481eb201df7f10a6b"
- integrity sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==
+zrender@6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/zrender/-/zrender-6.0.0.tgz#947077bc69cdea744134984927f132f3727f8079"
+ integrity sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==
dependencies:
tslib "2.3.0"