mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
Merge pull request #2316 from proddy/dev
fix underlines in Tab headers (webUI) and NL translations
This commit is contained in:
BIN
.yarn/install-state.gz
Normal file
BIN
.yarn/install-state.gz
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
3
.yarnrc.yml
Normal file
3
.yarnrc.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.6.0.cjs
|
||||
File diff suppressed because one or more lines are too long
@@ -1,3 +1,3 @@
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.5.3.cjs
|
||||
yarnPath: .yarn/releases/yarn-4.6.0.cjs
|
||||
|
||||
@@ -24,18 +24,18 @@
|
||||
"@alova/adapter-xhr": "2.1.0",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@mui/icons-material": "^6.2.1",
|
||||
"@mui/material": "^6.2.1",
|
||||
"@mui/icons-material": "^6.3.0",
|
||||
"@mui/material": "^6.3.0",
|
||||
"@table-library/react-table-library": "4.1.7",
|
||||
"alova": "3.2.7",
|
||||
"async-validator": "^4.2.5",
|
||||
"jwt-decode": "^4.0.0",
|
||||
"mime-types": "^2.1.35",
|
||||
"preact": "^10.25.3",
|
||||
"preact": "^10.25.4",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"react-icons": "^5.4.0",
|
||||
"react-router": "^7.1.0",
|
||||
"react-router": "^7.1.1",
|
||||
"react-toastify": "^11.0.2",
|
||||
"typesafe-i18n": "^5.26.2",
|
||||
"typescript": "^5.7.2"
|
||||
@@ -50,17 +50,17 @@
|
||||
"@types/node": "^22.10.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"@types/react-dom": "^19.0.2",
|
||||
"concurrently": "^9.1.0",
|
||||
"concurrently": "^9.1.2",
|
||||
"eslint": "^9.17.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"formidable": "^3.5.2",
|
||||
"prettier": "^3.4.2",
|
||||
"rollup-plugin-visualizer": "^5.12.0",
|
||||
"rollup-plugin-visualizer": "^5.13.1",
|
||||
"terser": "^5.37.0",
|
||||
"typescript-eslint": "8.18.1",
|
||||
"vite": "^6.0.5",
|
||||
"typescript-eslint": "8.19.0",
|
||||
"vite": "^6.0.6",
|
||||
"vite-plugin-imagemin": "^0.6.1",
|
||||
"vite-tsconfig-paths": "^5.1.4"
|
||||
},
|
||||
"packageManager": "yarn@4.5.3"
|
||||
"packageManager": "yarn@4.6.0"
|
||||
}
|
||||
|
||||
@@ -1,9 +1,16 @@
|
||||
import { useCallback, useState } from 'react';
|
||||
import { Navigate, Route, Routes, useNavigate } from 'react-router';
|
||||
import {
|
||||
Navigate,
|
||||
Route,
|
||||
Routes,
|
||||
matchRoutes,
|
||||
useLocation,
|
||||
useNavigate
|
||||
} from 'react-router';
|
||||
|
||||
import { Tab } from '@mui/material';
|
||||
|
||||
import { RouterTabs, useLayoutTitle, useRouterTab } from 'components';
|
||||
import { RouterTabs, useLayoutTitle } from 'components';
|
||||
import { useI18nContext } from 'i18n/i18n-react';
|
||||
import type { WiFiNetwork } from 'types';
|
||||
|
||||
@@ -15,7 +22,13 @@ const Network = () => {
|
||||
const { LL } = useI18nContext();
|
||||
useLayoutTitle(LL.NETWORK(0));
|
||||
|
||||
const { routerTab } = useRouterTab();
|
||||
// this also works!
|
||||
// const routerTab = useMatch(`settings/network/:path/*`)?.pathname || false;
|
||||
const matchedRoutes = matchRoutes( [
|
||||
{ path: '/settings/network/settings', element: <NetworkSettings />, dog: 'woof' },
|
||||
{ path: '/settings/network/scan', element: <WiFiNetworkScanner /> }
|
||||
], useLocation());
|
||||
const routerTab = matchedRoutes?.[0].route.path || false;
|
||||
|
||||
const navigate = useNavigate();
|
||||
|
||||
@@ -24,7 +37,7 @@ const Network = () => {
|
||||
const selectNetwork = useCallback(
|
||||
(network: WiFiNetwork) => {
|
||||
setSelectedNetwork(network);
|
||||
void navigate('/settings');
|
||||
void navigate('/settings/network/settings');
|
||||
},
|
||||
[navigate]
|
||||
);
|
||||
@@ -42,16 +55,16 @@ const Network = () => {
|
||||
}}
|
||||
>
|
||||
<RouterTabs value={routerTab}>
|
||||
<Tab
|
||||
value="/settings/network/settings"
|
||||
label={LL.SETTINGS_OF(LL.NETWORK(1))}
|
||||
/>
|
||||
<Tab value="/settings/network/settings" label={LL.SETTINGS_OF(LL.NETWORK(1))} />
|
||||
<Tab value="/settings/network/scan" label={LL.NETWORK_SCAN()} />
|
||||
</RouterTabs>
|
||||
<Routes>
|
||||
<Route path="scan" element={<WiFiNetworkScanner />} />
|
||||
<Route path="settings" element={<NetworkSettings />} />
|
||||
<Route path="*" element={<Navigate replace to="settings" />} />
|
||||
<Route
|
||||
path="*"
|
||||
element={<Navigate replace to="/settings/network/settings" />}
|
||||
/>
|
||||
</Routes>
|
||||
</WiFiConnectionContext.Provider>
|
||||
);
|
||||
|
||||
@@ -1,8 +1,14 @@
|
||||
import { Navigate, Route, Routes } from 'react-router';
|
||||
import {
|
||||
Navigate,
|
||||
Route,
|
||||
Routes,
|
||||
matchRoutes,
|
||||
useLocation
|
||||
} from 'react-router';
|
||||
|
||||
import { Tab } from '@mui/material';
|
||||
|
||||
import { RouterTabs, useLayoutTitle, useRouterTab } from 'components';
|
||||
import { RouterTabs, useLayoutTitle } from 'components';
|
||||
import { useI18nContext } from 'i18n/i18n-react';
|
||||
|
||||
import ManageUsers from './ManageUsers';
|
||||
@@ -12,7 +18,14 @@ const Security = () => {
|
||||
const { LL } = useI18nContext();
|
||||
useLayoutTitle(LL.SECURITY(0));
|
||||
|
||||
const { routerTab } = useRouterTab();
|
||||
const matchedRoutes = matchRoutes(
|
||||
[
|
||||
{ path: '/settings/security/settings', element: <ManageUsers />, dog: 'woof' },
|
||||
{ path: '/settings/security/users', element: <SecuritySettings /> }
|
||||
],
|
||||
useLocation()
|
||||
);
|
||||
const routerTab = matchedRoutes?.[0].route.path || false;
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -26,7 +39,7 @@ const Security = () => {
|
||||
<Routes>
|
||||
<Route path="users" element={<ManageUsers />} />
|
||||
<Route path="settings" element={<SecuritySettings />} />
|
||||
<Route path="*" element={<Navigate replace to="settings" />} />
|
||||
<Route path="*" element={<Navigate replace to="/settings/security/settings" />} />
|
||||
</Routes>
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -2,5 +2,3 @@ export { default as RouterTabs } from './RouterTabs';
|
||||
export { default as RequireAdmin } from './RequireAdmin';
|
||||
export { default as RequireAuthenticated } from './RequireAuthenticated';
|
||||
export { default as RequireUnauthenticated } from './RequireUnauthenticated';
|
||||
|
||||
export * from './useRouterTab';
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
import { useMatch, useResolvedPath } from 'react-router';
|
||||
|
||||
export const useRouterTab = () => {
|
||||
const routerTabPathMatch = useMatch(useResolvedPath(':tab').pathname);
|
||||
const routerTab = routerTabPathMatch?.params?.tab || false;
|
||||
|
||||
return { routerTab } as const;
|
||||
};
|
||||
@@ -72,7 +72,7 @@ const nl: Translation = {
|
||||
TX_ISSUES: 'Tx bus probleem. Probeer een andere Tx verzendmodus',
|
||||
DISCONNECTED: 'Niet verbonden',
|
||||
EMS_SCAN: 'Weet je zeker dat je een volledige EMS bus scan uit wilt voeren?',
|
||||
DATA_TRAFFIC: 'Data Traffic', // TODO translate
|
||||
DATA_TRAFFIC: 'Dataverkeer',
|
||||
EMS_DEVICE: 'EMS Apparaat',
|
||||
SUCCESS: 'SUCCESS',
|
||||
FAIL: 'MISLUKT',
|
||||
@@ -115,7 +115,7 @@ const nl: Translation = {
|
||||
READONLY: 'Activeer read-only modus (blokkeert alle outgaande EMS Tx schrijf commandos)',
|
||||
UNDERCLOCK_CPU: 'Underclock CPU snelheid',
|
||||
REMOTE_TIMEOUT: 'Remote timeout',
|
||||
REMOTE_TIMEOUT_EN: 'Disable remote on missing room temperature', // TODO translate
|
||||
REMOTE_TIMEOUT_EN: 'Schakel de afstandsbediening uit bij ontbrekende kamertemperatuur',
|
||||
HEATINGOFF: 'Start ketel met geforceerde verwarming uit',
|
||||
MIN_DURATION: 'Wait time',
|
||||
ENABLE_SHOWER_TIMER: 'Activeer Douche Timer (tijdmeting)',
|
||||
@@ -174,7 +174,7 @@ const nl: Translation = {
|
||||
FACTORY_RESET: 'Fabrieksinstellingen',
|
||||
SYSTEM_FACTORY_TEXT: 'Gateway is gereset en start nu weer op met fabrieksinstellingen',
|
||||
SYSTEM_FACTORY_TEXT_DIALOG: 'Weet je zeker dat je een reset naar fabrieksinstellingen uit wilt voeren?',
|
||||
AVAILABLE_VERSION: 'Latest Available Versions', // TODO translate
|
||||
AVAILABLE_VERSION: 'Nieuwste beschikbare versies',
|
||||
STABLE: 'Stable',
|
||||
DEVELOPMENT: 'Development',
|
||||
UPTIME: 'Systeem Uptime',
|
||||
@@ -185,8 +185,8 @@ const nl: Translation = {
|
||||
FILESYSTEM: 'File System (Used / Free)',
|
||||
BUFFER_SIZE: 'Max Buffer Size',
|
||||
COMPACT: 'Compact',
|
||||
DOWNLOAD_SETTINGS_TEXT: 'Create a backup of your configuration and settings', // TODO translate
|
||||
UPLOAD_TEXT: 'Upload a new firmware file (.bin) or a backup file (.json)', // TODO translate
|
||||
DOWNLOAD_SETTINGS_TEXT: 'Maak een back-up van uw configuratie en instellingen',
|
||||
UPLOAD_TEXT: 'Upload een nieuw firmwarebestand (.bin) of een back-upbestand (.json)',
|
||||
UPLOAD_DROP_TEXT: 'Sleep bestand hierheen of klik hier',
|
||||
ERROR: 'Onverwachte fout, probeer opnieuw',
|
||||
TIME_SET: 'Tijd ingesteld',
|
||||
@@ -319,32 +319,32 @@ const nl: Translation = {
|
||||
SECURITY_1: 'Gebruikers toevoegen of verwijderen',
|
||||
DOWNLOAD_UPLOAD_1: 'Download en upload instellingen en firmware',
|
||||
MODULES: 'Module',
|
||||
MODULES_1: 'Externe modules activeren of deactiveren', // TODO translate
|
||||
MODULES_1: 'Externe modules activeren of deactiveren',
|
||||
MODULES_UPDATED: 'Modules geüpdatet',
|
||||
MODULES_DESCRIPTION: 'Klik op de module om EMS-ESP library modules te activeren of te deactiveren',
|
||||
MODULES_NONE: 'Geen externe modules gedetecteerd',
|
||||
RENAME: 'Hernoemen',
|
||||
ENABLE_MODBUS: 'Activeer Modbus',
|
||||
VIEW_LOG: 'View log to diagnose issues', // TODO translate
|
||||
UPLOAD_DRAG: 'drag and drop a file here or click to select one', // TODO translate
|
||||
SERVICES: 'Services', // TODO translate
|
||||
ALLVALUES: 'All Values', // TODO translate
|
||||
SPECIAL_FUNCTIONS: 'Special Functions', // TODO translate
|
||||
WAIT_FIRMWARE: 'Firmware is uploading and installing', // TODO translate
|
||||
INSTALL_VERSION: 'This will install version {0}. Are you sure?', // TODO translate
|
||||
SWITCH_DEV: 'switch to the development version', // TODO translate
|
||||
UPGRADE_AVAILABLE: 'There is a firmware upgrade available!', // TODO translate
|
||||
LATEST_VERSION: 'You are using the latest firmware version.', // TODO translate
|
||||
PLEASE_WAIT: 'Please wait', // TODO translate
|
||||
RESTARTING_PRE: 'Initializing', // TODO translate
|
||||
RESTARTING_POST: 'Preparing', // TODO translate
|
||||
AUTO_SCROLL: 'Auto Scroll', // TODO translate
|
||||
DASHBOARD: 'Dashboard', // TODO translate
|
||||
NO_DATA: 'No data available', // TODO translate
|
||||
DASHBOARD_1: 'Customize your dashboard by marking EMS entities as Favorite using the Customizations module', // TODO translate
|
||||
DEVELOPER_MODE: 'Developer Mode', // TODO translate
|
||||
DUPLICATE: 'Duplicate', // TODO translate
|
||||
UPGRADE: 'Upgrade' // TODO translate
|
||||
VIEW_LOG: 'Log weergeven om problemen te diagnosticeren',
|
||||
UPLOAD_DRAG: 'sleep hier een bestand en zet het neer of klik om er een te selecteren',
|
||||
SERVICES: 'Services',
|
||||
ALLVALUES: 'All waarden',
|
||||
SPECIAL_FUNCTIONS: 'Speciale functies',
|
||||
WAIT_FIRMWARE: 'Firmware wordt geüpload en geïnstalleerd',
|
||||
INSTALL_VERSION: 'Hiermee wordt versie {0} geïnstalleerd. Weet je het zeker?',
|
||||
SWITCH_DEV: 'Overschakelen naar de ontwikkelingsversie',
|
||||
UPGRADE_AVAILABLE: 'Er is een firmware-upgrade beschikbaar!',
|
||||
LATEST_VERSION: 'U gebruikt de nieuwste firmwareversie.',
|
||||
PLEASE_WAIT: 'Een ogenblik geduld',
|
||||
RESTARTING_PRE: 'Initialiseren',
|
||||
RESTARTING_POST: 'Voorbereiding',
|
||||
AUTO_SCROLL: 'Automatisch Scrollen',
|
||||
DASHBOARD: 'Dashboard',
|
||||
NO_DATA: 'Geen data beschikbaar',
|
||||
DASHBOARD_1: 'Pas uw dashboard aan door EMS-entiteiten als favoriet te markeren met behulp van de module Aanpassingen',
|
||||
DEVELOPER_MODE: 'Ontwikkelaarsmodus',
|
||||
DUPLICATE: 'Duplicaat',
|
||||
UPGRADE: 'Upgraden'
|
||||
};
|
||||
|
||||
export default nl;
|
||||
|
||||
@@ -409,79 +409,79 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/aix-ppc64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
|
||||
"@esbuild/aix-ppc64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/aix-ppc64@npm:0.24.2"
|
||||
conditions: os=aix & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/android-arm64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/android-arm64@npm:0.24.0"
|
||||
"@esbuild/android-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/android-arm64@npm:0.24.2"
|
||||
conditions: os=android & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/android-arm@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/android-arm@npm:0.24.0"
|
||||
"@esbuild/android-arm@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/android-arm@npm:0.24.2"
|
||||
conditions: os=android & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/android-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/android-x64@npm:0.24.0"
|
||||
"@esbuild/android-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/android-x64@npm:0.24.2"
|
||||
conditions: os=android & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/darwin-arm64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
|
||||
"@esbuild/darwin-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/darwin-arm64@npm:0.24.2"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/darwin-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/darwin-x64@npm:0.24.0"
|
||||
"@esbuild/darwin-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/darwin-x64@npm:0.24.2"
|
||||
conditions: os=darwin & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/freebsd-arm64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
|
||||
"@esbuild/freebsd-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/freebsd-arm64@npm:0.24.2"
|
||||
conditions: os=freebsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/freebsd-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/freebsd-x64@npm:0.24.0"
|
||||
"@esbuild/freebsd-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/freebsd-x64@npm:0.24.2"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-arm64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-arm64@npm:0.24.0"
|
||||
"@esbuild/linux-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-arm64@npm:0.24.2"
|
||||
conditions: os=linux & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-arm@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-arm@npm:0.24.0"
|
||||
"@esbuild/linux-arm@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-arm@npm:0.24.2"
|
||||
conditions: os=linux & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-ia32@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-ia32@npm:0.24.0"
|
||||
"@esbuild/linux-ia32@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-ia32@npm:0.24.2"
|
||||
conditions: os=linux & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
@@ -493,93 +493,100 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-loong64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-loong64@npm:0.24.0"
|
||||
"@esbuild/linux-loong64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-loong64@npm:0.24.2"
|
||||
conditions: os=linux & cpu=loong64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-mips64el@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-mips64el@npm:0.24.0"
|
||||
"@esbuild/linux-mips64el@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-mips64el@npm:0.24.2"
|
||||
conditions: os=linux & cpu=mips64el
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-ppc64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-ppc64@npm:0.24.0"
|
||||
"@esbuild/linux-ppc64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-ppc64@npm:0.24.2"
|
||||
conditions: os=linux & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-riscv64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-riscv64@npm:0.24.0"
|
||||
"@esbuild/linux-riscv64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-riscv64@npm:0.24.2"
|
||||
conditions: os=linux & cpu=riscv64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-s390x@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-s390x@npm:0.24.0"
|
||||
"@esbuild/linux-s390x@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-s390x@npm:0.24.2"
|
||||
conditions: os=linux & cpu=s390x
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/linux-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/linux-x64@npm:0.24.0"
|
||||
"@esbuild/linux-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/linux-x64@npm:0.24.2"
|
||||
conditions: os=linux & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/netbsd-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/netbsd-x64@npm:0.24.0"
|
||||
"@esbuild/netbsd-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/netbsd-arm64@npm:0.24.2"
|
||||
conditions: os=netbsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/netbsd-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/netbsd-x64@npm:0.24.2"
|
||||
conditions: os=netbsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/openbsd-arm64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/openbsd-arm64@npm:0.24.0"
|
||||
"@esbuild/openbsd-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/openbsd-arm64@npm:0.24.2"
|
||||
conditions: os=openbsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/openbsd-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/openbsd-x64@npm:0.24.0"
|
||||
"@esbuild/openbsd-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/openbsd-x64@npm:0.24.2"
|
||||
conditions: os=openbsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/sunos-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/sunos-x64@npm:0.24.0"
|
||||
"@esbuild/sunos-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/sunos-x64@npm:0.24.2"
|
||||
conditions: os=sunos & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-arm64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/win32-arm64@npm:0.24.0"
|
||||
"@esbuild/win32-arm64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/win32-arm64@npm:0.24.2"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-ia32@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/win32-ia32@npm:0.24.0"
|
||||
"@esbuild/win32-ia32@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/win32-ia32@npm:0.24.2"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@esbuild/win32-x64@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "@esbuild/win32-x64@npm:0.24.0"
|
||||
"@esbuild/win32-x64@npm:0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "@esbuild/win32-x64@npm:0.24.2"
|
||||
conditions: os=win32 & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
@@ -775,38 +782,38 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/core-downloads-tracker@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/core-downloads-tracker@npm:6.2.1"
|
||||
checksum: 10c0/873c95a54fc8c5520a22feb1e98855742ce76b88e2cb909c02a9a99200cbb0e80971458626c435dc290634aaa3f066c501a7b87c03626dd135fee7bf52a12e4e
|
||||
"@mui/core-downloads-tracker@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/core-downloads-tracker@npm:6.3.0"
|
||||
checksum: 10c0/56a421866c727a7c785247212a5f04cb5dd8a2b46b2badce5065ea8d6eb04e5ac8b4f981d4c33beebd866d803ea87328a79ec9baeba32611275f9805ceb0a074
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/icons-material@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/icons-material@npm:6.2.1"
|
||||
"@mui/icons-material@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/icons-material@npm:6.3.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.26.0"
|
||||
peerDependencies:
|
||||
"@mui/material": ^6.2.1
|
||||
"@mui/material": ^6.3.0
|
||||
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
react: ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
peerDependenciesMeta:
|
||||
"@types/react":
|
||||
optional: true
|
||||
checksum: 10c0/5ff137c8fbe6875b871d9c47e4a1d767d8b8f3f9b092a9b7fc5bb9fedf479dadf528f6602992408ba514e3fd69b2c8c0e6a14a4676a5cc4f4b779f33ba5b5d0a
|
||||
checksum: 10c0/42fd80f5a95a7736f567bf9181c4986c78f7dd3d129610a822070f0d3dd2cc86c6dfd6444468bfd9e3a616890e5c9f4722f84218eb1d020bb75f2fab15d2526f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/material@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/material@npm:6.2.1"
|
||||
"@mui/material@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/material@npm:6.3.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.26.0"
|
||||
"@mui/core-downloads-tracker": "npm:^6.2.1"
|
||||
"@mui/system": "npm:^6.2.1"
|
||||
"@mui/core-downloads-tracker": "npm:^6.3.0"
|
||||
"@mui/system": "npm:^6.3.0"
|
||||
"@mui/types": "npm:^7.2.20"
|
||||
"@mui/utils": "npm:^6.2.1"
|
||||
"@mui/utils": "npm:^6.3.0"
|
||||
"@popperjs/core": "npm:^2.11.8"
|
||||
"@types/react-transition-group": "npm:^4.4.12"
|
||||
clsx: "npm:^2.1.1"
|
||||
@@ -817,7 +824,7 @@ __metadata:
|
||||
peerDependencies:
|
||||
"@emotion/react": ^11.5.0
|
||||
"@emotion/styled": ^11.3.0
|
||||
"@mui/material-pigment-css": ^6.2.1
|
||||
"@mui/material-pigment-css": ^6.3.0
|
||||
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
react: ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
@@ -830,16 +837,16 @@ __metadata:
|
||||
optional: true
|
||||
"@types/react":
|
||||
optional: true
|
||||
checksum: 10c0/9ebef984b0aeec933290bf4d984bed02a984e30d0dbfeb473becbcf7c284bbe058d5dc1302445abe4a799750d415ea4893df18fa41545cf191f6fa5bc0d229a4
|
||||
checksum: 10c0/9a21ea88e79e19105916db8df1e2da95f5216dd57678000992d2bdfaa611772acd28c085fd058b474cfc846363b2165a9e587f9100bfd142edefffa4762323f8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/private-theming@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/private-theming@npm:6.2.1"
|
||||
"@mui/private-theming@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/private-theming@npm:6.3.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.26.0"
|
||||
"@mui/utils": "npm:^6.2.1"
|
||||
"@mui/utils": "npm:^6.3.0"
|
||||
prop-types: "npm:^15.8.1"
|
||||
peerDependencies:
|
||||
"@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0
|
||||
@@ -847,13 +854,13 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
"@types/react":
|
||||
optional: true
|
||||
checksum: 10c0/15003060e88264e0247f0e0fc63ca696f3b326987d079615eee40670b77fd0c021ffcf8f650a33e84e0ac790075ab00bc8a9d577aa842298b889676dc6f06ef9
|
||||
checksum: 10c0/57d0b429914b6095b3605e99ea2c23b8ad834220426bed6938ef60b2f8eaaa2fbf800ffdfcf6e59b88e74900adb60a9c1f5ea25338b2254e1530e0bf7ee04f1f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/styled-engine@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/styled-engine@npm:6.2.1"
|
||||
"@mui/styled-engine@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/styled-engine@npm:6.3.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.26.0"
|
||||
"@emotion/cache": "npm:^11.13.5"
|
||||
@@ -870,19 +877,19 @@ __metadata:
|
||||
optional: true
|
||||
"@emotion/styled":
|
||||
optional: true
|
||||
checksum: 10c0/3e95744b642b41afde7e5040fc428dbcf01a4a3937c859380b19a3ec3e23ebb460cb3681cf86773c13ea5be76f64ee071afa8ded9d38850bd5b90710623a8549
|
||||
checksum: 10c0/840053c3dedcd2299e713839e2fae3fad5faa943c491bf54e513ae0c68d3dec7acef8e234e1632b89de4bcb2bdf9fe08553faf89f85ae2cd8588ca197d0ecd55
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/system@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/system@npm:6.2.1"
|
||||
"@mui/system@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/system@npm:6.3.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.26.0"
|
||||
"@mui/private-theming": "npm:^6.2.1"
|
||||
"@mui/styled-engine": "npm:^6.2.1"
|
||||
"@mui/private-theming": "npm:^6.3.0"
|
||||
"@mui/styled-engine": "npm:^6.3.0"
|
||||
"@mui/types": "npm:^7.2.20"
|
||||
"@mui/utils": "npm:^6.2.1"
|
||||
"@mui/utils": "npm:^6.3.0"
|
||||
clsx: "npm:^2.1.1"
|
||||
csstype: "npm:^3.1.3"
|
||||
prop-types: "npm:^15.8.1"
|
||||
@@ -898,7 +905,7 @@ __metadata:
|
||||
optional: true
|
||||
"@types/react":
|
||||
optional: true
|
||||
checksum: 10c0/94aef42804fa4052b7ceabb41979b9192c432f0ae8bb74a450c604426eb9813c0066e646966704f30bbb262e75629bed05c9f87e0753e5416d6e903e6c870e23
|
||||
checksum: 10c0/ee50e38919b3f86fbd6978d06959189a5903223156c1355bc0ff251d553f2eda8ffafe2fa006da2e00e12947f6c8efd7f796bbb6cc5c472106400c2ed8e6dd1e
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -914,9 +921,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@mui/utils@npm:^6.2.1":
|
||||
version: 6.2.1
|
||||
resolution: "@mui/utils@npm:6.2.1"
|
||||
"@mui/utils@npm:^6.3.0":
|
||||
version: 6.3.0
|
||||
resolution: "@mui/utils@npm:6.3.0"
|
||||
dependencies:
|
||||
"@babel/runtime": "npm:^7.26.0"
|
||||
"@mui/types": "npm:^7.2.20"
|
||||
@@ -930,7 +937,7 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
"@types/react":
|
||||
optional: true
|
||||
checksum: 10c0/1c81a5d3918fda0c8518e726a4630779f9b1145306e42a72f6f5264b9c30527fc31caea6a429457ad6eee17be40636240a0e57159c881abae0c266628f7a3615
|
||||
checksum: 10c0/7059664a5471d93f3593f83816c5c3cc81e7d0879842edf2a302db324c430d349bd88dd93bffad8f8349271b45e27f18f31e0341e13408ccc65b1af247b33efd
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1463,15 +1470,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/eslint-plugin@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:8.18.1"
|
||||
"@typescript-eslint/eslint-plugin@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/eslint-plugin@npm:8.19.0"
|
||||
dependencies:
|
||||
"@eslint-community/regexpp": "npm:^4.10.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.18.1"
|
||||
"@typescript-eslint/type-utils": "npm:8.18.1"
|
||||
"@typescript-eslint/utils": "npm:8.18.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.18.1"
|
||||
"@typescript-eslint/scope-manager": "npm:8.19.0"
|
||||
"@typescript-eslint/type-utils": "npm:8.19.0"
|
||||
"@typescript-eslint/utils": "npm:8.19.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.19.0"
|
||||
graphemer: "npm:^1.4.0"
|
||||
ignore: "npm:^5.3.1"
|
||||
natural-compare: "npm:^1.4.0"
|
||||
@@ -1480,64 +1487,64 @@ __metadata:
|
||||
"@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.8.0"
|
||||
checksum: 10c0/7994d323228f3fc3ec124291cd02761251bcd9a5a6356001d2cb8f68abdb400c3cfbeb343d6941d8e6b6c8d2d616a278bbb3b6d9ed839ba5148a05f60a1f67b4
|
||||
checksum: 10c0/ceaa5063b68684b5608950b5e69f0caf1eadfc356cba82625240d6aae55f769faff599c38d35252dcb77a40d92e6fbf6d6264bc0c577d5c549da25061c3bd796
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/parser@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/parser@npm:8.18.1"
|
||||
"@typescript-eslint/parser@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/parser@npm:8.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager": "npm:8.18.1"
|
||||
"@typescript-eslint/types": "npm:8.18.1"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.18.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.18.1"
|
||||
"@typescript-eslint/scope-manager": "npm:8.19.0"
|
||||
"@typescript-eslint/types": "npm:8.19.0"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.19.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.19.0"
|
||||
debug: "npm:^4.3.4"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.8.0"
|
||||
checksum: 10c0/23ab30b3f00b86108137e7df03710a088046ead3582595b0f8e17d5062770365e24e0a1ae3398bb3a1c29aa0f05a0de30887e2e0f6fb86163e878dd0eed1b25c
|
||||
checksum: 10c0/064b0997963060490fc3f92c90cebc7c694f47a7657f7882ce9eb314786e0cf3e917bfccfad614d23038439d84e69a978bdc7054515b23201001dd427e524e64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/scope-manager@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/scope-manager@npm:8.18.1"
|
||||
"@typescript-eslint/scope-manager@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/scope-manager@npm:8.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.18.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.18.1"
|
||||
checksum: 10c0/97c503b2ece79b6c99ca8e6a5f1f40855cf72f17fbf05e42e62d19c2666e7e6f5df9bf71f13dbc4720c5ee0397670ba8052482a90441fbffa901da5f2e739565
|
||||
"@typescript-eslint/types": "npm:8.19.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.19.0"
|
||||
checksum: 10c0/5052863d00db7ae939de27e91dc6c92df3c37a877e1ff44015ae9aa754d419b44d97d98b25fbb30a80dc58cf92606dad599e27f32b86d20c13b77ac12b4f2abc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/type-utils@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/type-utils@npm:8.18.1"
|
||||
"@typescript-eslint/type-utils@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/type-utils@npm:8.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/typescript-estree": "npm:8.18.1"
|
||||
"@typescript-eslint/utils": "npm:8.18.1"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.19.0"
|
||||
"@typescript-eslint/utils": "npm:8.19.0"
|
||||
debug: "npm:^4.3.4"
|
||||
ts-api-utils: "npm:^1.3.0"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.8.0"
|
||||
checksum: 10c0/cfe5362a22fa5e18a2662928904da024e42c84cb58a46238b9b61edafcd046f53c9505637176c8cd1c386165c6a6ed15a2b51700495cad6c20e0e33499d483a1
|
||||
checksum: 10c0/5a460b4d26fd68ded3567390cbac310500e94e9c69583fda3fb9930877663719e6831699bb6d85de6b940bcb7951a51ab1ef67c5fea8b76a13ea3a3783bbae28
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/types@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/types@npm:8.18.1"
|
||||
checksum: 10c0/0a2ca5f7cdebcc844b6bc1e5afc5d83b563f55917d20e3fea3a17ed39c54b003178e26b5ec535113f45c93c569b46628d9a67defa70c01cbdfa801573fed69a2
|
||||
"@typescript-eslint/types@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/types@npm:8.19.0"
|
||||
checksum: 10c0/0062e7dce5f374e293c97f1f50fe450187f6b0eaf4971c818e18ef2f6baf4e9aa4e8605fba8d8fc464a504ee1130527b71ecb39d31687c31825942b9f569d902
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/typescript-estree@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/typescript-estree@npm:8.18.1"
|
||||
"@typescript-eslint/typescript-estree@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/typescript-estree@npm:8.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.18.1"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.18.1"
|
||||
"@typescript-eslint/types": "npm:8.19.0"
|
||||
"@typescript-eslint/visitor-keys": "npm:8.19.0"
|
||||
debug: "npm:^4.3.4"
|
||||
fast-glob: "npm:^3.3.2"
|
||||
is-glob: "npm:^4.0.3"
|
||||
@@ -1546,32 +1553,32 @@ __metadata:
|
||||
ts-api-utils: "npm:^1.3.0"
|
||||
peerDependencies:
|
||||
typescript: ">=4.8.4 <5.8.0"
|
||||
checksum: 10c0/7ecb061dc63c729b23f4f15db5736ca93b1ae633108400e6c31cf8af782494912f25c3683f9f952dbfd10cb96031caba247a1ad406abf5d163639a00ac3ce5a3
|
||||
checksum: 10c0/ff47004588e8ff585af740b3e0bda07dc52310dbfeb2317eb4a723935740cf0c1953fc9ba57f14cf192bcfe373c46be833ba29d3303df8b501181bb852c7b822
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/utils@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/utils@npm:8.18.1"
|
||||
"@typescript-eslint/utils@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/utils@npm:8.19.0"
|
||||
dependencies:
|
||||
"@eslint-community/eslint-utils": "npm:^4.4.0"
|
||||
"@typescript-eslint/scope-manager": "npm:8.18.1"
|
||||
"@typescript-eslint/types": "npm:8.18.1"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.18.1"
|
||||
"@typescript-eslint/scope-manager": "npm:8.19.0"
|
||||
"@typescript-eslint/types": "npm:8.19.0"
|
||||
"@typescript-eslint/typescript-estree": "npm:8.19.0"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.8.0"
|
||||
checksum: 10c0/1e29408bd8fbda9f3386dabdb2b7471dacff28342d5bd6521ca3b7932df0cae100030d2eac75d946a82cbefa33f78000eed4ce789128fdea069ffeabd4429d80
|
||||
checksum: 10c0/7731f7fb66d54491769ca68fd04728138ceb6b785778ad491f8e9b2147802fa0ff480e520f6ea5fb73c8484d13a2ed3e35d44635f5bf4cfbdb04c313154097a9
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@typescript-eslint/visitor-keys@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:8.18.1"
|
||||
"@typescript-eslint/visitor-keys@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "@typescript-eslint/visitor-keys@npm:8.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/types": "npm:8.18.1"
|
||||
"@typescript-eslint/types": "npm:8.19.0"
|
||||
eslint-visitor-keys: "npm:^4.2.0"
|
||||
checksum: 10c0/68651ae1825dbd660ea39b4e1d1618f6ad0026fa3a04aecec296750977cab316564e3e2ace8edbebf1ae86bd17d86acc98cac7b6e9aad4e1c666bd26f18706ad
|
||||
checksum: 10c0/a293def05018bb2259506e23cd8f14349f4386d0e51231893fbddf96ef73c219d5f9fe17b82e3c104f5c23956dbd9b87af3cff5e84b887af243139a3b4bbbe0d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -1584,8 +1591,8 @@ __metadata:
|
||||
"@emotion/react": "npm:^11.14.0"
|
||||
"@emotion/styled": "npm:^11.14.0"
|
||||
"@eslint/js": "npm:^9.17.0"
|
||||
"@mui/icons-material": "npm:^6.2.1"
|
||||
"@mui/material": "npm:^6.2.1"
|
||||
"@mui/icons-material": "npm:^6.3.0"
|
||||
"@mui/material": "npm:^6.3.0"
|
||||
"@preact/compat": "npm:^18.3.1"
|
||||
"@preact/preset-vite": "npm:^2.9.3"
|
||||
"@table-library/react-table-library": "npm:4.1.7"
|
||||
@@ -1596,25 +1603,25 @@ __metadata:
|
||||
"@types/react-dom": "npm:^19.0.2"
|
||||
alova: "npm:3.2.7"
|
||||
async-validator: "npm:^4.2.5"
|
||||
concurrently: "npm:^9.1.0"
|
||||
concurrently: "npm:^9.1.2"
|
||||
eslint: "npm:^9.17.0"
|
||||
eslint-config-prettier: "npm:^9.1.0"
|
||||
formidable: "npm:^3.5.2"
|
||||
jwt-decode: "npm:^4.0.0"
|
||||
mime-types: "npm:^2.1.35"
|
||||
preact: "npm:^10.25.3"
|
||||
preact: "npm:^10.25.4"
|
||||
prettier: "npm:^3.4.2"
|
||||
react: "npm:^19.0.0"
|
||||
react-dom: "npm:^19.0.0"
|
||||
react-icons: "npm:^5.4.0"
|
||||
react-router: "npm:^7.1.0"
|
||||
react-router: "npm:^7.1.1"
|
||||
react-toastify: "npm:^11.0.2"
|
||||
rollup-plugin-visualizer: "npm:^5.12.0"
|
||||
rollup-plugin-visualizer: "npm:^5.13.1"
|
||||
terser: "npm:^5.37.0"
|
||||
typesafe-i18n: "npm:^5.26.2"
|
||||
typescript: "npm:^5.7.2"
|
||||
typescript-eslint: "npm:8.18.1"
|
||||
vite: "npm:^6.0.5"
|
||||
typescript-eslint: "npm:8.19.0"
|
||||
vite: "npm:^6.0.6"
|
||||
vite-plugin-imagemin: "npm:^0.6.1"
|
||||
vite-tsconfig-paths: "npm:^5.1.4"
|
||||
languageName: unknown
|
||||
@@ -2147,9 +2154,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"concurrently@npm:^9.1.0":
|
||||
version: 9.1.0
|
||||
resolution: "concurrently@npm:9.1.0"
|
||||
"concurrently@npm:^9.1.2":
|
||||
version: 9.1.2
|
||||
resolution: "concurrently@npm:9.1.2"
|
||||
dependencies:
|
||||
chalk: "npm:^4.1.2"
|
||||
lodash: "npm:^4.17.21"
|
||||
@@ -2161,7 +2168,7 @@ __metadata:
|
||||
bin:
|
||||
conc: dist/bin/concurrently.js
|
||||
concurrently: dist/bin/concurrently.js
|
||||
checksum: 10c0/f2f42f94dde508bfbaf47b5ac654db9e8a4bf07d3d7b6267dd058ae6f362eec677ae7c8ede398d081e5fd0d1de5811dc9a53e57d3f1f68e72ac6459db9e0896b
|
||||
checksum: 10c0/88e00269366aa885ca2b97fd53b04e7af2b0f31774d991bfc0e88c0de61cdebdf115ddacc9c897fbd1f1b90369014637fa77045a171d072a75693332b36dcc70
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -2826,89 +2833,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"esbuild@npm:0.24.0":
|
||||
version: 0.24.0
|
||||
resolution: "esbuild@npm:0.24.0"
|
||||
dependencies:
|
||||
"@esbuild/aix-ppc64": "npm:0.24.0"
|
||||
"@esbuild/android-arm": "npm:0.24.0"
|
||||
"@esbuild/android-arm64": "npm:0.24.0"
|
||||
"@esbuild/android-x64": "npm:0.24.0"
|
||||
"@esbuild/darwin-arm64": "npm:0.24.0"
|
||||
"@esbuild/darwin-x64": "npm:0.24.0"
|
||||
"@esbuild/freebsd-arm64": "npm:0.24.0"
|
||||
"@esbuild/freebsd-x64": "npm:0.24.0"
|
||||
"@esbuild/linux-arm": "npm:0.24.0"
|
||||
"@esbuild/linux-arm64": "npm:0.24.0"
|
||||
"@esbuild/linux-ia32": "npm:0.24.0"
|
||||
"@esbuild/linux-loong64": "npm:0.24.0"
|
||||
"@esbuild/linux-mips64el": "npm:0.24.0"
|
||||
"@esbuild/linux-ppc64": "npm:0.24.0"
|
||||
"@esbuild/linux-riscv64": "npm:0.24.0"
|
||||
"@esbuild/linux-s390x": "npm:0.24.0"
|
||||
"@esbuild/linux-x64": "npm:0.24.0"
|
||||
"@esbuild/netbsd-x64": "npm:0.24.0"
|
||||
"@esbuild/openbsd-arm64": "npm:0.24.0"
|
||||
"@esbuild/openbsd-x64": "npm:0.24.0"
|
||||
"@esbuild/sunos-x64": "npm:0.24.0"
|
||||
"@esbuild/win32-arm64": "npm:0.24.0"
|
||||
"@esbuild/win32-ia32": "npm:0.24.0"
|
||||
"@esbuild/win32-x64": "npm:0.24.0"
|
||||
dependenciesMeta:
|
||||
"@esbuild/aix-ppc64":
|
||||
optional: true
|
||||
"@esbuild/android-arm":
|
||||
optional: true
|
||||
"@esbuild/android-arm64":
|
||||
optional: true
|
||||
"@esbuild/android-x64":
|
||||
optional: true
|
||||
"@esbuild/darwin-arm64":
|
||||
optional: true
|
||||
"@esbuild/darwin-x64":
|
||||
optional: true
|
||||
"@esbuild/freebsd-arm64":
|
||||
optional: true
|
||||
"@esbuild/freebsd-x64":
|
||||
optional: true
|
||||
"@esbuild/linux-arm":
|
||||
optional: true
|
||||
"@esbuild/linux-arm64":
|
||||
optional: true
|
||||
"@esbuild/linux-ia32":
|
||||
optional: true
|
||||
"@esbuild/linux-loong64":
|
||||
optional: true
|
||||
"@esbuild/linux-mips64el":
|
||||
optional: true
|
||||
"@esbuild/linux-ppc64":
|
||||
optional: true
|
||||
"@esbuild/linux-riscv64":
|
||||
optional: true
|
||||
"@esbuild/linux-s390x":
|
||||
optional: true
|
||||
"@esbuild/linux-x64":
|
||||
optional: true
|
||||
"@esbuild/netbsd-x64":
|
||||
optional: true
|
||||
"@esbuild/openbsd-arm64":
|
||||
optional: true
|
||||
"@esbuild/openbsd-x64":
|
||||
optional: true
|
||||
"@esbuild/sunos-x64":
|
||||
optional: true
|
||||
"@esbuild/win32-arm64":
|
||||
optional: true
|
||||
"@esbuild/win32-ia32":
|
||||
optional: true
|
||||
"@esbuild/win32-x64":
|
||||
optional: true
|
||||
bin:
|
||||
esbuild: bin/esbuild
|
||||
checksum: 10c0/9f1aadd8d64f3bff422ae78387e66e51a5e09de6935a6f987b6e4e189ed00fdc2d1bc03d2e33633b094008529c8b6e06c7ad1a9782fb09fec223bf95998c0683
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"esbuild@npm:^0.14.14":
|
||||
version: 0.14.54
|
||||
resolution: "esbuild@npm:0.14.54"
|
||||
@@ -2983,6 +2907,92 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"esbuild@npm:^0.24.2":
|
||||
version: 0.24.2
|
||||
resolution: "esbuild@npm:0.24.2"
|
||||
dependencies:
|
||||
"@esbuild/aix-ppc64": "npm:0.24.2"
|
||||
"@esbuild/android-arm": "npm:0.24.2"
|
||||
"@esbuild/android-arm64": "npm:0.24.2"
|
||||
"@esbuild/android-x64": "npm:0.24.2"
|
||||
"@esbuild/darwin-arm64": "npm:0.24.2"
|
||||
"@esbuild/darwin-x64": "npm:0.24.2"
|
||||
"@esbuild/freebsd-arm64": "npm:0.24.2"
|
||||
"@esbuild/freebsd-x64": "npm:0.24.2"
|
||||
"@esbuild/linux-arm": "npm:0.24.2"
|
||||
"@esbuild/linux-arm64": "npm:0.24.2"
|
||||
"@esbuild/linux-ia32": "npm:0.24.2"
|
||||
"@esbuild/linux-loong64": "npm:0.24.2"
|
||||
"@esbuild/linux-mips64el": "npm:0.24.2"
|
||||
"@esbuild/linux-ppc64": "npm:0.24.2"
|
||||
"@esbuild/linux-riscv64": "npm:0.24.2"
|
||||
"@esbuild/linux-s390x": "npm:0.24.2"
|
||||
"@esbuild/linux-x64": "npm:0.24.2"
|
||||
"@esbuild/netbsd-arm64": "npm:0.24.2"
|
||||
"@esbuild/netbsd-x64": "npm:0.24.2"
|
||||
"@esbuild/openbsd-arm64": "npm:0.24.2"
|
||||
"@esbuild/openbsd-x64": "npm:0.24.2"
|
||||
"@esbuild/sunos-x64": "npm:0.24.2"
|
||||
"@esbuild/win32-arm64": "npm:0.24.2"
|
||||
"@esbuild/win32-ia32": "npm:0.24.2"
|
||||
"@esbuild/win32-x64": "npm:0.24.2"
|
||||
dependenciesMeta:
|
||||
"@esbuild/aix-ppc64":
|
||||
optional: true
|
||||
"@esbuild/android-arm":
|
||||
optional: true
|
||||
"@esbuild/android-arm64":
|
||||
optional: true
|
||||
"@esbuild/android-x64":
|
||||
optional: true
|
||||
"@esbuild/darwin-arm64":
|
||||
optional: true
|
||||
"@esbuild/darwin-x64":
|
||||
optional: true
|
||||
"@esbuild/freebsd-arm64":
|
||||
optional: true
|
||||
"@esbuild/freebsd-x64":
|
||||
optional: true
|
||||
"@esbuild/linux-arm":
|
||||
optional: true
|
||||
"@esbuild/linux-arm64":
|
||||
optional: true
|
||||
"@esbuild/linux-ia32":
|
||||
optional: true
|
||||
"@esbuild/linux-loong64":
|
||||
optional: true
|
||||
"@esbuild/linux-mips64el":
|
||||
optional: true
|
||||
"@esbuild/linux-ppc64":
|
||||
optional: true
|
||||
"@esbuild/linux-riscv64":
|
||||
optional: true
|
||||
"@esbuild/linux-s390x":
|
||||
optional: true
|
||||
"@esbuild/linux-x64":
|
||||
optional: true
|
||||
"@esbuild/netbsd-arm64":
|
||||
optional: true
|
||||
"@esbuild/netbsd-x64":
|
||||
optional: true
|
||||
"@esbuild/openbsd-arm64":
|
||||
optional: true
|
||||
"@esbuild/openbsd-x64":
|
||||
optional: true
|
||||
"@esbuild/sunos-x64":
|
||||
optional: true
|
||||
"@esbuild/win32-arm64":
|
||||
optional: true
|
||||
"@esbuild/win32-ia32":
|
||||
optional: true
|
||||
"@esbuild/win32-x64":
|
||||
optional: true
|
||||
bin:
|
||||
esbuild: bin/esbuild
|
||||
checksum: 10c0/5a25bb08b6ba23db6e66851828d848bd3ff87c005a48c02d83e38879058929878a6baa5a414e1141faee0d1dece3f32b5fbc2a87b82ed6a7aa857cf40359aeb5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"escalade@npm:^3.1.1, escalade@npm:^3.2.0":
|
||||
version: 3.2.0
|
||||
resolution: "escalade@npm:3.2.0"
|
||||
@@ -5366,6 +5376,13 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"picomatch@npm:^4.0.2":
|
||||
version: 4.0.2
|
||||
resolution: "picomatch@npm:4.0.2"
|
||||
checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"pify@npm:^2.0.0, pify@npm:^2.2.0, pify@npm:^2.3.0":
|
||||
version: 2.3.0
|
||||
resolution: "pify@npm:2.3.0"
|
||||
@@ -5427,10 +5444,10 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"preact@npm:^10.25.3":
|
||||
version: 10.25.3
|
||||
resolution: "preact@npm:10.25.3"
|
||||
checksum: 10c0/b555a844e5c1b8e4f1feeb6d2f083dc3d44c7b3029c5d723e02b44283d5323c08ce881009a84345a43d9ebbabbc8ccdb868201f81ab3d5be3405e3378eca70be
|
||||
"preact@npm:^10.25.4":
|
||||
version: 10.25.4
|
||||
resolution: "preact@npm:10.25.4"
|
||||
checksum: 10c0/33a009d614d2b47df1c867935fe057c1dfd2bae1aaab41d6e981434b761f75b88e82eac7847ae486b4dbcffc74af814b8dc59ccef17b10625e3effefa2e1ef67
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -5589,9 +5606,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"react-router@npm:^7.1.0":
|
||||
version: 7.1.0
|
||||
resolution: "react-router@npm:7.1.0"
|
||||
"react-router@npm:^7.1.1":
|
||||
version: 7.1.1
|
||||
resolution: "react-router@npm:7.1.1"
|
||||
dependencies:
|
||||
"@types/cookie": "npm:^0.6.0"
|
||||
cookie: "npm:^1.0.1"
|
||||
@@ -5603,7 +5620,7 @@ __metadata:
|
||||
peerDependenciesMeta:
|
||||
react-dom:
|
||||
optional: true
|
||||
checksum: 10c0/c4f4c76dc885cb2b351575052417f0a95ad454ae7cc27f42e5dcde993697b206eab9f5eb3f9a3acb1284331d41f8667bd4d10e246d463c3debd7d4de3edaa50b
|
||||
checksum: 10c0/39f4859670f286eb2eac29e5830c1f730405701fca0808e5db853ec05e54e55a848c764e10ffd14a7b9b3b2154a0d6449656d7f208b9b3e4b2af780e07bf57a8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -5818,22 +5835,25 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"rollup-plugin-visualizer@npm:^5.12.0":
|
||||
version: 5.12.0
|
||||
resolution: "rollup-plugin-visualizer@npm:5.12.0"
|
||||
"rollup-plugin-visualizer@npm:^5.13.1":
|
||||
version: 5.13.1
|
||||
resolution: "rollup-plugin-visualizer@npm:5.13.1"
|
||||
dependencies:
|
||||
open: "npm:^8.4.0"
|
||||
picomatch: "npm:^2.3.1"
|
||||
picomatch: "npm:^4.0.2"
|
||||
source-map: "npm:^0.7.4"
|
||||
yargs: "npm:^17.5.1"
|
||||
peerDependencies:
|
||||
rolldown: 1.x
|
||||
rollup: 2.x || 3.x || 4.x
|
||||
peerDependenciesMeta:
|
||||
rolldown:
|
||||
optional: true
|
||||
rollup:
|
||||
optional: true
|
||||
bin:
|
||||
rollup-plugin-visualizer: dist/bin/cli.js
|
||||
checksum: 10c0/0e44a641223377ebb472bb10f2b22efa773b5f6fbe8d54f197f07c68d7a432cbf00abad79a0aa1570f70c673c792f24700d926d663ed9a4d0ad8406ae5a0f4e4
|
||||
checksum: 10c0/dc8377cda0e5d30bba5499a0bd725c30d814048644158c445229b89ce7c88500b5c59b11419253edbe334fcb540bfede16e0f049ce6cfe4cf4e771c07d361f77
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -6620,17 +6640,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript-eslint@npm:8.18.1":
|
||||
version: 8.18.1
|
||||
resolution: "typescript-eslint@npm:8.18.1"
|
||||
"typescript-eslint@npm:8.19.0":
|
||||
version: 8.19.0
|
||||
resolution: "typescript-eslint@npm:8.19.0"
|
||||
dependencies:
|
||||
"@typescript-eslint/eslint-plugin": "npm:8.18.1"
|
||||
"@typescript-eslint/parser": "npm:8.18.1"
|
||||
"@typescript-eslint/utils": "npm:8.18.1"
|
||||
"@typescript-eslint/eslint-plugin": "npm:8.19.0"
|
||||
"@typescript-eslint/parser": "npm:8.19.0"
|
||||
"@typescript-eslint/utils": "npm:8.19.0"
|
||||
peerDependencies:
|
||||
eslint: ^8.57.0 || ^9.0.0
|
||||
typescript: ">=4.8.4 <5.8.0"
|
||||
checksum: 10c0/cb75af9b7381051cf80a18d4d96782a23196f7500766fa52926c1515fd7eaa42cb01ed37582d1bf519860075bea3f5375e6fcbbaf7fed3e3ab1b0f6da95805ce
|
||||
checksum: 10c0/87da630f50025b3ae943eac521809fef41ba4013b5c4206865c115b728684caa7b4c36ee561dd95af7eb4dc18ec1265b165b49d2db54e3d8fba0152bcb6c82f8
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -6819,11 +6839,11 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"vite@npm:^6.0.5":
|
||||
version: 6.0.5
|
||||
resolution: "vite@npm:6.0.5"
|
||||
"vite@npm:^6.0.6":
|
||||
version: 6.0.6
|
||||
resolution: "vite@npm:6.0.6"
|
||||
dependencies:
|
||||
esbuild: "npm:0.24.0"
|
||||
esbuild: "npm:^0.24.2"
|
||||
fsevents: "npm:~2.3.3"
|
||||
postcss: "npm:^8.4.49"
|
||||
rollup: "npm:^4.23.0"
|
||||
@@ -6867,7 +6887,7 @@ __metadata:
|
||||
optional: true
|
||||
bin:
|
||||
vite: bin/vite.js
|
||||
checksum: 10c0/d6927e1795abf0bffbf9183c3c3338c7cc1060bcfbfcd951aa4464c1e5478216f26c95077a2bbd29edbaebc079c1f08a37c7daac8f07c0a6bb53e79d502c70ef
|
||||
checksum: 10c0/144c3f80a7920a4b2fa14f00f99b58ece246455ca9313561a67a227b45dadac3343e406d3c1dbfafa79992ac88f54cb2b040b229997e432daf47594fe8cacec2
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
@@ -1,65 +0,0 @@
|
||||
{
|
||||
"name": "eModbus",
|
||||
"version": "1.7.2",
|
||||
"keywords": "Arduino, ESP32, Modbus, RTU, ASCII, ModbusASCII, ModbusRTU, ModbusTCP",
|
||||
"description": "ModbusRTU, ModbusASCII and ModbusTCP functions for ESP32",
|
||||
"homepage": "https://emodbus.github.io",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bert Melis",
|
||||
"url": "https://github.com/bertmelis",
|
||||
"maintainer": true
|
||||
},
|
||||
{
|
||||
"name": "Michael Harwerth",
|
||||
"url": "https://github.com/Miq1",
|
||||
"email": "miq1@gmx.de",
|
||||
"maintainer": true
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/eModbus/eModbus",
|
||||
"branch": "master"
|
||||
},
|
||||
"dependencies": [
|
||||
{
|
||||
"owner": "me-no-dev",
|
||||
"name": "AsyncTCP",
|
||||
"version": "*",
|
||||
"platforms": ["espressif32"]
|
||||
},
|
||||
{
|
||||
"owner": "me-no-dev",
|
||||
"name": "ESPAsyncTCP",
|
||||
"version": "*",
|
||||
"platforms": ["espressif8266"]
|
||||
},
|
||||
{
|
||||
"name": "Ethernet",
|
||||
"version": "https://github.com/arduino-libraries/Ethernet.git",
|
||||
"platforms": ["espressif32"]
|
||||
}
|
||||
],
|
||||
"export": {
|
||||
"include":
|
||||
[
|
||||
"src/*.cpp",
|
||||
"src/*.h",
|
||||
"examples/*",
|
||||
"Test/*",
|
||||
".gitignore",
|
||||
"README.md",
|
||||
"license.md",
|
||||
"keywords.txt",
|
||||
"library.properties",
|
||||
"library.json"
|
||||
]
|
||||
},
|
||||
"frameworks": "arduino",
|
||||
"platforms": [
|
||||
"espressif32",
|
||||
"espressif8266"
|
||||
]
|
||||
}
|
||||
934
mock-api/.yarn/releases/yarn-4.6.0.cjs
vendored
Executable file
934
mock-api/.yarn/releases/yarn-4.6.0.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
@@ -1,3 +1,3 @@
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.5.3.cjs
|
||||
yarnPath: .yarn/releases/yarn-4.6.0.cjs
|
||||
|
||||
@@ -15,5 +15,5 @@
|
||||
"itty-router": "^5.0.18",
|
||||
"prettier": "^3.4.2"
|
||||
},
|
||||
"packageManager": "yarn@4.5.3"
|
||||
"packageManager": "yarn@4.6.0"
|
||||
}
|
||||
|
||||
3
package.json
Normal file
3
package.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"packageManager": "yarn@4.6.0"
|
||||
}
|
||||
12
yarn.lock
Normal file
12
yarn.lock
Normal file
@@ -0,0 +1,12 @@
|
||||
# This file is generated by running "yarn install" inside your project.
|
||||
# Manual changes might be lost - proceed with caution!
|
||||
|
||||
__metadata:
|
||||
version: 8
|
||||
cacheKey: 10c0
|
||||
|
||||
"root-workspace-0b6124@workspace:.":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "root-workspace-0b6124@workspace:."
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
Reference in New Issue
Block a user