From e14476ff8885fa0a5be99dba6f353b305f754677 Mon Sep 17 00:00:00 2001 From: dmolinari Date: Sat, 4 Oct 2025 22:17:05 -0300 Subject: [PATCH] Feat: Migrado de datos de MariaDB a SQL Server y Fix de Tabla --- backend/Program.cs | 26 + .../net9.0/Inventario.API.AssemblyInfo.cs | 2 +- frontend/.gitignore | 24 + frontend/README.md | 73 + frontend/eslint.config.js | 23 + frontend/img/favicon.ico | Bin 0 -> 15406 bytes frontend/img/power.png | Bin 0 -> 40275 bytes frontend/index.html | 13 + frontend/package-lock.json | 3503 +++++++++++++++++ frontend/package.json | 32 + frontend/public/eldia.svg | 6 + frontend/src/App.css | 5 + frontend/src/App.tsx | 12 + frontend/src/components/SimpleTable.tsx | 718 ++++ frontend/src/index.css | 24 + frontend/src/main.tsx | 10 + frontend/src/types/interfaces.ts | 69 + frontend/tsconfig.app.json | 28 + frontend/tsconfig.json | 7 + frontend/tsconfig.node.json | 26 + frontend/vite.config.ts | 7 + 21 files changed, 4607 insertions(+), 1 deletion(-) create mode 100644 frontend/.gitignore create mode 100644 frontend/README.md create mode 100644 frontend/eslint.config.js create mode 100644 frontend/img/favicon.ico create mode 100644 frontend/img/power.png create mode 100644 frontend/index.html create mode 100644 frontend/package-lock.json create mode 100644 frontend/package.json create mode 100644 frontend/public/eldia.svg create mode 100644 frontend/src/App.css create mode 100644 frontend/src/App.tsx create mode 100644 frontend/src/components/SimpleTable.tsx create mode 100644 frontend/src/index.css create mode 100644 frontend/src/main.tsx create mode 100644 frontend/src/types/interfaces.ts create mode 100644 frontend/tsconfig.app.json create mode 100644 frontend/tsconfig.json create mode 100644 frontend/tsconfig.node.json create mode 100644 frontend/vite.config.ts diff --git a/backend/Program.cs b/backend/Program.cs index ef8d541..ce83e69 100644 --- a/backend/Program.cs +++ b/backend/Program.cs @@ -6,6 +6,25 @@ var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers(); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); + +// --- 1. DEFINIR LA POLÍTICA CORS --- +// Definimos un nombre para nuestra política +var MyAllowSpecificOrigins = "_myAllowSpecificOrigins"; + +// Añadimos el servicio de CORS y configuramos la política +builder.Services.AddCors(options => +{ + options.AddPolicy(name: MyAllowSpecificOrigins, + policy => + { + // Permitimos explícitamente el origen de tu frontend (Vite) + policy.WithOrigins("http://localhost:5173") + .AllowAnyHeader() // Permitir cualquier encabezado + .AllowAnyMethod(); // Permitir GET, POST, PUT, DELETE, etc. + }); +}); +// ----------------------------------- + builder.Services.AddSingleton(); var app = builder.Build(); @@ -22,5 +41,12 @@ if (app.Environment.IsDevelopment()) } app.UseHttpsRedirection(); + +// --- 2. ACTIVAR EL MIDDLEWARE DE CORS --- +// ¡IMPORTANTE! Debe ir ANTES de MapControllers y DESPUÉS de UseHttpsRedirection (si se usa) +app.UseCors(MyAllowSpecificOrigins); +// ---------------------------------------- + app.MapControllers(); + app.Run(); \ No newline at end of file diff --git a/backend/obj/Debug/net9.0/Inventario.API.AssemblyInfo.cs b/backend/obj/Debug/net9.0/Inventario.API.AssemblyInfo.cs index 22d619b..274d0e9 100644 --- a/backend/obj/Debug/net9.0/Inventario.API.AssemblyInfo.cs +++ b/backend/obj/Debug/net9.0/Inventario.API.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Inventario.API")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+80210e5d4c8c41b94acb737e8a8d9935a2ef21b6")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+85bd1915e09fdb3a2af7e28d58b8ba794a9e6360")] [assembly: System.Reflection.AssemblyProductAttribute("Inventario.API")] [assembly: System.Reflection.AssemblyTitleAttribute("Inventario.API")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..d2e7761 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,73 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## React Compiler + +The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: + +```js +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + // Other configs... + + // Remove tseslint.configs.recommended and replace with this + tseslint.configs.recommendedTypeChecked, + // Alternatively, use this for stricter rules + tseslint.configs.strictTypeChecked, + // Optionally, add this for stylistic rules + tseslint.configs.stylisticTypeChecked, + + // Other configs... + ], + languageOptions: { + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + // other options... + }, + }, +]) +``` + +You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: + +```js +// eslint.config.js +import reactX from 'eslint-plugin-react-x' +import reactDom from 'eslint-plugin-react-dom' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + // Other configs... + // Enable lint rules for React + reactX.configs['recommended-typescript'], + // Enable lint rules for React DOM + reactDom.configs.recommended, + ], + languageOptions: { + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + // other options... + }, + }, +]) +``` diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js new file mode 100644 index 0000000..b19330b --- /dev/null +++ b/frontend/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs['recommended-latest'], + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/frontend/img/favicon.ico b/frontend/img/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..072355576d7093f0f8ab04022c4af1257af26269 GIT binary patch literal 15406 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 literal 0 HcmV?d00001 diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..d83cc55 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,13 @@ + + + + + + Equipos + + + +
+ + + \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..3f31b4c --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,3503 @@ +{ + "name": "frontend", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend", + "version": "0.0.0", + "dependencies": { + "@tanstack/react-table": "^8.21.3", + "react": "^19.1.1", + "react-dom": "^19.1.1", + "react-tooltip": "^5.29.1" + }, + "devDependencies": { + "@eslint/js": "^9.36.0", + "@types/node": "^24.6.0", + "@types/react": "^19.1.16", + "@types/react-dom": "^19.1.9", + "@vitejs/plugin-react": "^5.0.4", + "eslint": "^9.36.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.22", + "globals": "^16.4.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.45.0", + "vite": "^7.1.7" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz", + "integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz", + "integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.4", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.3", + "@babel/types": "^7.28.2", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", + "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.4" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", + "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.4", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz", + "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", + "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.10.tgz", + "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", + "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.10.tgz", + "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", + "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", + "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", + "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", + "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", + "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", + "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", + "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", + "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", + "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", + "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", + "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", + "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", + "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", + "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", + "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", + "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", + "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", + "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", + "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", + "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", + "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", + "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", + "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz", + "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", + "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.36.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.36.0.tgz", + "integrity": "sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", + "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.15.2", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz", + "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz", + "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.7.3", + "@floating-ui/utils": "^0.2.10" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz", + "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==", + "license": "MIT" + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.38", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.38.tgz", + "integrity": "sha512-N/ICGKleNhA5nc9XXQG/kkKHJ7S55u0x0XUJbbkmdCnFuoRkM1Il12q9q0eX19+M7KKUEPw/daUPIRnxhcxAIw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.3.tgz", + "integrity": "sha512-h6cqHGZ6VdnwliFG1NXvMPTy/9PS3h8oLh7ImwR+kl+oYnQizgjxsONmmPSb2C66RksfkfIxEVtDSEcJiO0tqw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.3.tgz", + "integrity": "sha512-wd+u7SLT/u6knklV/ifG7gr5Qy4GUbH2hMWcDauPFJzmCZUAJ8L2bTkVXC2niOIxp8lk3iH/QX8kSrUxVZrOVw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.3.tgz", + "integrity": "sha512-lj9ViATR1SsqycwFkJCtYfQTheBdvlWJqzqxwc9f2qrcVrQaF/gCuBRTiTolkRWS6KvNxSk4KHZWG7tDktLgjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.3.tgz", + "integrity": "sha512-+Dyo7O1KUmIsbzx1l+4V4tvEVnVQqMOIYtrxK7ncLSknl1xnMHLgn7gddJVrYPNZfEB8CIi3hK8gq8bDhb3h5A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.3.tgz", + "integrity": "sha512-u9Xg2FavYbD30g3DSfNhxgNrxhi6xVG4Y6i9Ur1C7xUuGDW3banRbXj+qgnIrwRN4KeJ396jchwy9bCIzbyBEQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.3.tgz", + "integrity": "sha512-5M8kyi/OX96wtD5qJR89a/3x5x8x5inXBZO04JWhkQb2JWavOWfjgkdvUqibGJeNNaz1/Z1PPza5/tAPXICI6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.3.tgz", + "integrity": "sha512-IoerZJ4l1wRMopEHRKOO16e04iXRDyZFZnNZKrWeNquh5d6bucjezgd+OxG03mOMTnS1x7hilzb3uURPkJ0OfA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.3.tgz", + "integrity": "sha512-ZYdtqgHTDfvrJHSh3W22TvjWxwOgc3ThK/XjgcNGP2DIwFIPeAPNsQxrJO5XqleSlgDux2VAoWQ5iJrtaC1TbA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.3.tgz", + "integrity": "sha512-NcViG7A0YtuFDA6xWSgmFb6iPFzHlf5vcqb2p0lGEbT+gjrEEz8nC/EeDHvx6mnGXnGCC1SeVV+8u+smj0CeGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.3.tgz", + "integrity": "sha512-d3pY7LWno6SYNXRm6Ebsq0DJGoiLXTb83AIPCXl9fmtIQs/rXoS8SJxxUNtFbJ5MiOvs+7y34np77+9l4nfFMw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.3.tgz", + "integrity": "sha512-3y5GA0JkBuirLqmjwAKwB0keDlI6JfGYduMlJD/Rl7fvb4Ni8iKdQs1eiunMZJhwDWdCvrcqXRY++VEBbvk6Eg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.3.tgz", + "integrity": "sha512-AUUH65a0p3Q0Yfm5oD2KVgzTKgwPyp9DSXc3UA7DtxhEb/WSPfbG4wqXeSN62OG5gSo18em4xv6dbfcUGXcagw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.3.tgz", + "integrity": "sha512-1makPhFFVBqZE+XFg3Dkq+IkQ7JvmUrwwqaYBL2CE+ZpxPaqkGaiWFEWVGyvTwZace6WLJHwjVh/+CXbKDGPmg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.3.tgz", + "integrity": "sha512-OOFJa28dxfl8kLOPMUOQBCO6z3X2SAfzIE276fwT52uXDWUS178KWq0pL7d6p1kz7pkzA0yQwtqL0dEPoVcRWg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.3.tgz", + "integrity": "sha512-jMdsML2VI5l+V7cKfZx3ak+SLlJ8fKvLJ0Eoa4b9/vCUrzXKgoKxvHqvJ/mkWhFiyp88nCkM5S2v6nIwRtPcgg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.3.tgz", + "integrity": "sha512-tPgGd6bY2M2LJTA1uGq8fkSPK8ZLYjDjY+ZLK9WHncCnfIz29LIXIqUgzCR0hIefzy6Hpbe8Th5WOSwTM8E7LA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.3.tgz", + "integrity": "sha512-BCFkJjgk+WFzP+tcSMXq77ymAPIxsX9lFJWs+2JzuZTLtksJ2o5hvgTdIcZ5+oKzUDMwI0PfWzRBYAydAHF2Mw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.3.tgz", + "integrity": "sha512-KTD/EqjZF3yvRaWUJdD1cW+IQBk4fbQaHYJUmP8N4XoKFZilVL8cobFSTDnjTtxWJQ3JYaMgF4nObY/+nYkumA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.3.tgz", + "integrity": "sha512-+zteHZdoUYLkyYKObGHieibUFLbttX2r+58l27XZauq0tcWYYuKUwY2wjeCN9oK1Um2YgH2ibd6cnX/wFD7DuA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.3.tgz", + "integrity": "sha512-of1iHkTQSo3kr6dTIRX6t81uj/c/b15HXVsPcEElN5sS859qHrOepM5p9G41Hah+CTqSh2r8Bm56dL2z9UQQ7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.3.tgz", + "integrity": "sha512-s0hybmlHb56mWVZQj8ra9048/WZTPLILKxcvcq+8awSZmyiSUZjjem1AhU3Tf4ZKpYhK4mg36HtHDOe8QJS5PQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.3.tgz", + "integrity": "sha512-zGIbEVVXVtauFgl3MRwGWEN36P5ZGenHRMgNw88X5wEhEBpq0XrMEZwOn07+ICrwM17XO5xfMZqh0OldCH5VTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tanstack/react-table": { + "version": "8.21.3", + "resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.21.3.tgz", + "integrity": "sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==", + "license": "MIT", + "dependencies": { + "@tanstack/table-core": "8.21.3" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/@tanstack/table-core": { + "version": "8.21.3", + "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz", + "integrity": "sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.6.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.6.2.tgz", + "integrity": "sha512-d2L25Y4j+W3ZlNAeMKcy7yDsK425ibcAOO2t7aPTz6gNMH0z2GThtwENCDc0d/Pw9wgyRqE5Px1wkV7naz8ang==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.13.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.0.tgz", + "integrity": "sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.0.tgz", + "integrity": "sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.45.0.tgz", + "integrity": "sha512-HC3y9CVuevvWCl/oyZuI47dOeDF9ztdMEfMH8/DW/Mhwa9cCLnK1oD7JoTVGW/u7kFzNZUKUoyJEqkaJh5y3Wg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.45.0", + "@typescript-eslint/type-utils": "8.45.0", + "@typescript-eslint/utils": "8.45.0", + "@typescript-eslint/visitor-keys": "8.45.0", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.45.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.45.0.tgz", + "integrity": "sha512-TGf22kon8KW+DeKaUmOibKWktRY8b2NSAZNdtWh798COm1NWx8+xJ6iFBtk3IvLdv6+LGLJLRlyhrhEDZWargQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.45.0", + "@typescript-eslint/types": "8.45.0", + "@typescript-eslint/typescript-estree": "8.45.0", + "@typescript-eslint/visitor-keys": "8.45.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.45.0.tgz", + "integrity": "sha512-3pcVHwMG/iA8afdGLMuTibGR7pDsn9RjDev6CCB+naRsSYs2pns5QbinF4Xqw6YC/Sj3lMrm/Im0eMfaa61WUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.45.0", + "@typescript-eslint/types": "^8.45.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.45.0.tgz", + "integrity": "sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.45.0", + "@typescript-eslint/visitor-keys": "8.45.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.45.0.tgz", + "integrity": "sha512-aFdr+c37sc+jqNMGhH+ajxPXwjv9UtFZk79k8pLoJ6p4y0snmYpPA52GuWHgt2ZF4gRRW6odsEj41uZLojDt5w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.45.0.tgz", + "integrity": "sha512-bpjepLlHceKgyMEPglAeULX1vixJDgaKocp0RVJ5u4wLJIMNuKtUXIczpJCPcn2waII0yuvks/5m5/h3ZQKs0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.45.0", + "@typescript-eslint/typescript-estree": "8.45.0", + "@typescript-eslint/utils": "8.45.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.45.0.tgz", + "integrity": "sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.45.0.tgz", + "integrity": "sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.45.0", + "@typescript-eslint/tsconfig-utils": "8.45.0", + "@typescript-eslint/types": "8.45.0", + "@typescript-eslint/visitor-keys": "8.45.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.45.0.tgz", + "integrity": "sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.45.0", + "@typescript-eslint/types": "8.45.0", + "@typescript-eslint/typescript-estree": "8.45.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.45.0.tgz", + "integrity": "sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.45.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.0.4.tgz", + "integrity": "sha512-La0KD0vGkVkSk6K+piWDKRUyg8Rl5iAIKRMH0vMJI0Eg47bq1eOxmoObAaQG37WMW9MSyk7Cs8EIWwJC1PtzKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.4", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.38", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.10", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.10.tgz", + "integrity": "sha512-uLfgBi+7IBNay8ECBO2mVMGZAc1VgZWEChxm4lv+TobGdG82LnXMjuNGo/BSSZZL4UmkWhxEHP2f5ziLNwGWMA==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.26.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.3.tgz", + "integrity": "sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.9", + "caniuse-lite": "^1.0.30001746", + "electron-to-chromium": "^1.5.227", + "node-releases": "^2.0.21", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001746", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001746.tgz", + "integrity": "sha512-eA7Ys/DGw+pnkWWSE/id29f2IcPHVoE8wxtvE5JdvD2V28VTDPy1yEeo11Guz0sJ4ZeGRcm3uaTcAqK1LXaphA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.229", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.229.tgz", + "integrity": "sha512-cwhDcZKGcT/rEthLRJ9eBlMDkh1sorgsuk+6dpsehV0g9CABsIqBxU4rLRjG+d/U6pYU1s37A4lSKrVc5lSQYg==", + "dev": true, + "license": "ISC" + }, + "node_modules/esbuild": { + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz", + "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.10", + "@esbuild/android-arm": "0.25.10", + "@esbuild/android-arm64": "0.25.10", + "@esbuild/android-x64": "0.25.10", + "@esbuild/darwin-arm64": "0.25.10", + "@esbuild/darwin-x64": "0.25.10", + "@esbuild/freebsd-arm64": "0.25.10", + "@esbuild/freebsd-x64": "0.25.10", + "@esbuild/linux-arm": "0.25.10", + "@esbuild/linux-arm64": "0.25.10", + "@esbuild/linux-ia32": "0.25.10", + "@esbuild/linux-loong64": "0.25.10", + "@esbuild/linux-mips64el": "0.25.10", + "@esbuild/linux-ppc64": "0.25.10", + "@esbuild/linux-riscv64": "0.25.10", + "@esbuild/linux-s390x": "0.25.10", + "@esbuild/linux-x64": "0.25.10", + "@esbuild/netbsd-arm64": "0.25.10", + "@esbuild/netbsd-x64": "0.25.10", + "@esbuild/openbsd-arm64": "0.25.10", + "@esbuild/openbsd-x64": "0.25.10", + "@esbuild/openharmony-arm64": "0.25.10", + "@esbuild/sunos-x64": "0.25.10", + "@esbuild/win32-arm64": "0.25.10", + "@esbuild/win32-ia32": "0.25.10", + "@esbuild/win32-x64": "0.25.10" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.36.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.36.0.tgz", + "integrity": "sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.0", + "@eslint/config-helpers": "^0.3.1", + "@eslint/core": "^0.15.2", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.36.0", + "@eslint/plugin-kit": "^0.3.5", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.23.tgz", + "integrity": "sha512-G4j+rv0NmbIR45kni5xJOrYvCtyD3/7LjpVH8MPPcudXDcNu8gv+4ATTDXTtbRR8rTCM5HxECvCSsRmxKnWDsA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.21", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.21.tgz", + "integrity": "sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==", + "dev": true, + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", + "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", + "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.0" + } + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-tooltip": { + "version": "5.29.1", + "resolved": "https://registry.npmjs.org/react-tooltip/-/react-tooltip-5.29.1.tgz", + "integrity": "sha512-rmJmEb/p99xWhwmVT7F7riLG08wwKykjHiMGbDPloNJk3tdI73oHsVOwzZ4SRjqMdd5/xwb/4nmz0RcoMfY7Bw==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.6.1", + "classnames": "^2.3.0" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.52.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.3.tgz", + "integrity": "sha512-RIDh866U8agLgiIcdpB+COKnlCreHJLfIhWC3LVflku5YHfpnsIKigRZeFfMfCc4dVcqNVfQQ5gO/afOck064A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.52.3", + "@rollup/rollup-android-arm64": "4.52.3", + "@rollup/rollup-darwin-arm64": "4.52.3", + "@rollup/rollup-darwin-x64": "4.52.3", + "@rollup/rollup-freebsd-arm64": "4.52.3", + "@rollup/rollup-freebsd-x64": "4.52.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.3", + "@rollup/rollup-linux-arm-musleabihf": "4.52.3", + "@rollup/rollup-linux-arm64-gnu": "4.52.3", + "@rollup/rollup-linux-arm64-musl": "4.52.3", + "@rollup/rollup-linux-loong64-gnu": "4.52.3", + "@rollup/rollup-linux-ppc64-gnu": "4.52.3", + "@rollup/rollup-linux-riscv64-gnu": "4.52.3", + "@rollup/rollup-linux-riscv64-musl": "4.52.3", + "@rollup/rollup-linux-s390x-gnu": "4.52.3", + "@rollup/rollup-linux-x64-gnu": "4.52.3", + "@rollup/rollup-linux-x64-musl": "4.52.3", + "@rollup/rollup-openharmony-arm64": "4.52.3", + "@rollup/rollup-win32-arm64-msvc": "4.52.3", + "@rollup/rollup-win32-ia32-msvc": "4.52.3", + "@rollup/rollup-win32-x64-gnu": "4.52.3", + "@rollup/rollup-win32-x64-msvc": "4.52.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "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==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.45.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.45.0.tgz", + "integrity": "sha512-qzDmZw/Z5beNLUrXfd0HIW6MzIaAV5WNDxmMs9/3ojGOpYavofgNAAD/nC6tGV2PczIi0iw8vot2eAe/sBn7zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.45.0", + "@typescript-eslint/parser": "8.45.0", + "@typescript-eslint/typescript-estree": "8.45.0", + "@typescript-eslint/utils": "8.45.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/undici-types": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.13.0.tgz", + "integrity": "sha512-Ov2Rr9Sx+fRgagJ5AX0qvItZG/JKKoBRAVITs1zk7IqZGTJUwgUr7qoYBpWwakpWilTZFM98rG/AFRocu10iIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vite": { + "version": "7.1.8", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.8.tgz", + "integrity": "sha512-oBXvfSHEOL8jF+R9Am7h59Up07kVVGH1NrFGFoEG6bPDZP3tGpQhvkBpy5x7U6+E6wZCu9OihsWgJqDbQIm8LQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..dbd5f53 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,32 @@ +{ + "name": "frontend", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "@tanstack/react-table": "^8.21.3", + "react": "^19.1.1", + "react-dom": "^19.1.1", + "react-tooltip": "^5.29.1" + }, + "devDependencies": { + "@eslint/js": "^9.36.0", + "@types/node": "^24.6.0", + "@types/react": "^19.1.16", + "@types/react-dom": "^19.1.9", + "@vitejs/plugin-react": "^5.0.4", + "eslint": "^9.36.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.22", + "globals": "^16.4.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.45.0", + "vite": "^7.1.7" + } +} diff --git a/frontend/public/eldia.svg b/frontend/public/eldia.svg new file mode 100644 index 0000000..91ce072 --- /dev/null +++ b/frontend/public/eldia.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/frontend/src/App.css b/frontend/src/App.css new file mode 100644 index 0000000..8497752 --- /dev/null +++ b/frontend/src/App.css @@ -0,0 +1,5 @@ +main { + padding: 2rem; + max-width: 1600px; + margin: 0 auto; +} \ No newline at end of file diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 0000000..a1c45ce --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,12 @@ +import SimpleTable from "./components/SimpleTable"; +import './App.css'; + +function App() { + return ( +
+ +
+ ); +} + +export default App; \ No newline at end of file diff --git a/frontend/src/components/SimpleTable.tsx b/frontend/src/components/SimpleTable.tsx new file mode 100644 index 0000000..3f18ef5 --- /dev/null +++ b/frontend/src/components/SimpleTable.tsx @@ -0,0 +1,718 @@ +import React, { useEffect, useRef, useState, type CSSProperties } from 'react'; +import { + useReactTable, + getCoreRowModel, + getFilteredRowModel, + getSortedRowModel, + flexRender, + type CellContext +} from '@tanstack/react-table'; +import { Tooltip } from 'react-tooltip'; +import type { Equipo, Sector, Usuario, HistorialEquipo } from '../types/interfaces'; + +const SimpleTable = () => { + const [data, setData] = useState([]); + const [filteredData, setFilteredData] = useState([]); + const [globalFilter, setGlobalFilter] = useState(''); + const [selectedSector, setSelectedSector] = useState('Todos'); + const [modalData, setModalData] = useState(null); + const [sectores, setSectores] = useState([]); + const [modalPasswordData, setModalPasswordData] = useState(null); + const [newPassword, setNewPassword] = useState(''); + const [showScrollButton, setShowScrollButton] = useState(false); + const [selectedEquipo, setSelectedEquipo] = useState(null); + const [historial, setHistorial] = useState([]); + const [isOnline, setIsOnline] = useState(false); + const passwordInputRef = useRef(null); + const BASE_URL = 'http://localhost:5198/api'; + + useEffect(() => { + const scrollBarWidth = window.innerWidth - document.documentElement.clientWidth; + + if (selectedEquipo || modalData || modalPasswordData) { + document.body.classList.add('scroll-lock'); + document.body.style.paddingRight = `${scrollBarWidth}px`; + } else { + document.body.classList.remove('scroll-lock'); + document.body.style.paddingRight = '0'; + } + + return () => { + document.body.classList.remove('scroll-lock'); + document.body.style.paddingRight = '0'; + }; + }, [selectedEquipo, modalData, modalPasswordData]); + + useEffect(() => { + let isMounted = true; + + const checkPing = async () => { + if (!selectedEquipo?.ip) return; + + try { + const controller = new AbortController(); + const timeoutId = setTimeout(() => controller.abort(), 5000); + + const response = await fetch(`${BASE_URL}/equipos/ping`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ ip: selectedEquipo.ip }), + signal: controller.signal + }); + + clearTimeout(timeoutId); + + if (!response.ok) throw new Error('Error en la respuesta'); + + const data = await response.json(); + if (isMounted) setIsOnline(data.isAlive); + + } catch (error) { + if (isMounted) setIsOnline(false); + console.error('Error checking ping:', error); + } + }; + + checkPing(); + const interval = setInterval(checkPing, 10000); + + return () => { + isMounted = false; + clearInterval(interval); + setIsOnline(false); + }; + }, [selectedEquipo?.ip]); + + const handleCloseModal = () => { + setSelectedEquipo(null); + setIsOnline(false); + }; + + useEffect(() => { + if (selectedEquipo) { + fetch(`${BASE_URL}/equipos/${selectedEquipo.hostname}/historial`) + .then(response => response.json()) + .then(data => setHistorial(data.historial)) + .catch(error => console.error('Error fetching history:', error)); + } + }, [selectedEquipo]); + + useEffect(() => { + const handleScroll = () => { + setShowScrollButton(window.scrollY > 200); + }; + + window.addEventListener('scroll', handleScroll); + return () => window.removeEventListener('scroll', handleScroll); + }, []); + + useEffect(() => { + if (modalPasswordData && passwordInputRef.current) { + passwordInputRef.current.focus(); + } + }, [modalPasswordData]); + + useEffect(() => { + fetch(`${BASE_URL}/equipos`) + .then(response => response.json()) + .then((fetchedData: Equipo[]) => { + setData(fetchedData); + setFilteredData(fetchedData); + }); + + fetch(`${BASE_URL}/sectores`) + .then(response => response.json()) + .then((fetchedSectores: Sector[]) => { + const sectoresOrdenados = [...fetchedSectores].sort((a, b) => + a.nombre.localeCompare(b.nombre, 'es', { sensitivity: 'base' }) + ); + setSectores(sectoresOrdenados); + }); + }, []); + + const handleSectorChange = (e: React.ChangeEvent) => { + const selectedValue = e.target.value; + setSelectedSector(selectedValue); + + if (selectedValue === 'Todos') { + setFilteredData(data); + } else if (selectedValue === 'Asignar') { + const filtered = data.filter(item => !item.sector); + setFilteredData(filtered); + } else { + const filtered = data.filter(item => item.sector?.nombre === selectedValue); + setFilteredData(filtered); + } + }; + + const handleSave = async () => { + if (!modalData || !modalData.sector) return; + + try { + const response = await fetch(`${BASE_URL}/equipos/${modalData.id}/sector/${modalData.sector.id}`, { + method: 'PATCH', + headers: { 'Content-Type': 'application/json' } + }); + + if (!response.ok) throw new Error('Error al asociar el sector'); + + // Actualizamos el dato localmente para reflejar el cambio inmediatamente + const updatedData = data.map(e => e.id === modalData.id ? { ...e, sector: modalData.sector } : e); + setData(updatedData); + setFilteredData(updatedData); + + setModalData(null); + } catch (error) { + console.error(error); + } + }; + + const handleSavePassword = async () => { + if (!modalPasswordData) return; + try { + const response = await fetch(`${BASE_URL}/usuarios/${modalPasswordData.id}`, { + method: 'PUT', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ password: newPassword }), + }); + + if (!response.ok) { + const errorData = await response.json(); + throw new Error(errorData.error || 'Error al actualizar la contraseña'); + } + + const updatedUser = await response.json(); + + const updatedData = data.map(equipo => ({ + ...equipo, + usuarios: equipo.usuarios?.map(user => + user.id === updatedUser.id ? { ...user, password: newPassword } : user + ) + })); + + setData(updatedData); + setFilteredData(updatedData); + setModalPasswordData(null); + setNewPassword(''); + + } catch (error) { + if (error instanceof Error) { + console.error('Error:', error); + alert(error.message); + } + } + }; + + const handleRemoveUser = async (hostname: string, username: string) => { + if (!window.confirm(`¿Quitar a ${username} de este equipo?`)) return; + + try { + const response = await fetch(`${BASE_URL}/equipos/${hostname}/usuarios/${username}`, { + method: 'DELETE' + }); + + const result = await response.json(); + if (!response.ok) throw new Error(result.error || 'Error al desasociar usuario'); + + const updateFunc = (prevData: Equipo[]) => prevData.map(equipo => { + if (equipo.hostname === hostname) { + return { + ...equipo, + usuarios: equipo.usuarios.filter(u => u.username !== username), + }; + } + return equipo; + }); + + setData(updateFunc); + setFilteredData(updateFunc); + + } catch (error) { + if (error instanceof Error) { + console.error('Error:', error); + alert(error.message); + } + } + }; + + const handleDelete = async (id: number) => { + if (!window.confirm('¿Estás seguro de eliminar este equipo y todas sus relaciones?')) return false; + + try { + const response = await fetch(`${BASE_URL}/equipos/${id}`, { + method: 'DELETE' + }); + + if (response.status === 204) { + setData(prev => prev.filter(equipo => equipo.id !== id)); + setFilteredData(prev => prev.filter(equipo => equipo.id !== id)); + return true; + } + + const errorText = await response.text(); + throw new Error(errorText); + + } catch (error) { + if (error instanceof Error) { + console.error('Error eliminando equipo:', error); + alert(`Error al eliminar el equipo: ${error.message}`); + } + return false; + } + }; + + const columns = [ + { header: "ID", accessorKey: "id", enableHiding: true }, + { + header: "Nombre", + accessorKey: "hostname", + cell: ({ row }: CellContext) => ( + + ) + }, + { header: "IP", accessorKey: "ip" }, + { header: "MAC", accessorKey: "mac", enableHiding: true }, + { header: "Motherboard", accessorKey: "motherboard" }, + { header: "CPU", accessorKey: "cpu" }, + { header: "RAM", accessorKey: "ram_installed" }, + { + header: "Discos", + accessorFn: (row: Equipo) => row.discos?.length > 0 + ? row.discos.map(d => `${d.mediatype} ${d.size}GB`).join(" | ") + : "Sin discos" + }, + { header: "OS", accessorKey: "os" }, + { header: "Arquitectura", accessorKey: "architecture" }, + { + header: "Usuarios y Claves", + cell: ({ row }: CellContext) => { + const usuarios = row.original.usuarios || []; + return ( +
+ {usuarios.map((u: Usuario) => ( +
+ + U: {u.username} - C: {u.password || 'N/A'} + + +
+ + + +
+
+ ))} +
+ ); + } + }, + { + header: "Sector", + id: 'sector', + accessorFn: (row: Equipo) => row.sector?.nombre || 'Asignar', + cell: ({ row }: CellContext) => { + const sector = row.original.sector; + + return ( +
+ + {sector?.nombre || 'Asignar'} + + + +
+ ); + } + } + ]; + + const table = useReactTable({ + data: filteredData, + columns, + getCoreRowModel: getCoreRowModel(), + getFilteredRowModel: getFilteredRowModel(), + getSortedRowModel: getSortedRowModel(), + initialState: { + sorting: [ + { id: 'sector', desc: false }, + { id: 'hostname', desc: false } + ], + columnVisibility: { id: false, mac: false } + }, + state: { + globalFilter, + }, + onGlobalFilterChange: setGlobalFilter, + }); + + return ( +
+

Equipos

+
+ setGlobalFilter(e.target.value)} /> + Selección de sector: + +
+
+ + + {table.getHeaderGroups().map(headerGroup => ( + + {headerGroup.headers.map(header => ( + + ))} + + ))} + + + {table.getRowModel().rows.map(row => ( + + {row.getVisibleCells().map(cell => ( + + ))} + + ))} + +
+ {flexRender(header.column.columnDef.header, header.getContext())} + {header.column.getIsSorted() && ( + + {header.column.getIsSorted() === 'asc' ? '⇑' : '⇓'} + + )} +
+ {flexRender(cell.column.columnDef.cell, cell.getContext())} +
+ + {showScrollButton && ( + + )} + + {modalData && ( +
+

Editar Sector

+ + +
+ + +
+
+ )} + {modalPasswordData && ( +
+

+ Cambiar contraseña para {modalPasswordData.username} +

+ +
+ + +
+
+ )} + {selectedEquipo && ( +
+ +
+
+

Datos del equipo '{selectedEquipo.hostname}'

+
+
+

Datos actuales

+
+ {Object.entries(selectedEquipo).map(([key, value]) => { + // Omitimos claves que mostraremos de forma personalizada o no son relevantes aquí + if (['id', 'usuarios', 'sector', 'discos', 'historial', 'equiposDiscos', 'memoriasRam', 'sector_id'].includes(key)) return null; + + const formattedValue = (key === 'created_at' || key === 'updated_at') + ? new Date(value as string).toLocaleString('es-ES') + : (value as any)?.toString() || 'N/A'; + + return ( +
+ {key.replace(/_/g, ' ')}: + {formattedValue} +
+ ); + })} + + {/* --- CORRECCIÓN 1: Mostrar nombre del sector --- */} +
+ Sector: + + {selectedEquipo.sector?.nombre || 'No asignado'} + +
+ +
+ Modulos RAM: + + {selectedEquipo.memoriasRam?.map(m => `Slot ${m.slot}: ${m.partNumber || 'N/P'} ${m.tamano}GB ${m.velocidad || ''}MHz`).join(' | ') || 'N/A'} + +
+
+ Discos: + + {selectedEquipo.discos?.map(d => `${d.mediatype} ${d.size}GB`).join(', ') || 'N/A'} + +
+
+ Usuarios: + + {selectedEquipo.usuarios?.map(u => u.username).join(', ') || 'N/A'} + +
+
+ Estado: +
+
+ {isOnline ? 'En línea' : 'Sin conexión'} +
+
+
+ Wake On Lan: + +
+
+ Eliminar Equipo: + +
+
+
+
+

Historial de cambios

+ + + + + + + + + + + {historial + .sort((a, b) => new Date(b.fecha_cambio).getTime() - new Date(a.fecha_cambio).getTime()) + .map((cambio, index) => ( + + + + + + + ))} + +
FechaCampo modificadoValor anteriorValor nuevo
+ {new Date(cambio.fecha_cambio).toLocaleString('es-ES', { + year: 'numeric', month: '2-digit', day: '2-digit', + hour: '2-digit', minute: '2-digit' + })} + {cambio.campo_modificado}{cambio.valor_anterior}{cambio.valor_nuevo}
+
+
+
+ )} +
+ ); +}; + +// --- ESTILOS --- +const modalStyle: CSSProperties = { + position: 'fixed', top: '50%', left: '50%', transform: 'translate(-50%, -50%)', backgroundColor: '#ffffff', + borderRadius: '12px', padding: '2rem', boxShadow: '0px 8px 30px rgba(0, 0, 0, 0.12)', zIndex: 1000, + minWidth: '400px', maxWidth: '90%', border: '1px solid #e0e0e0', fontFamily: 'Segoe UI, sans-serif' +}; +const buttonStyle = { + base: { padding: '8px 20px', borderRadius: '6px', border: 'none', cursor: 'pointer', transition: 'all 0.2s ease', fontWeight: '500', fontSize: '14px' } as CSSProperties, + primary: { backgroundColor: '#007bff', color: 'white' } as CSSProperties, + secondary: { backgroundColor: '#6c757d', color: 'white' } as CSSProperties, + disabled: { backgroundColor: '#e9ecef', color: '#6c757d', cursor: 'not-allowed' } as CSSProperties +}; +const inputStyle: CSSProperties = { padding: '10px', borderRadius: '6px', border: '1px solid #ced4da', width: '100%', boxSizing: 'border-box', margin: '8px 0' }; +const tableStyle: CSSProperties = { borderCollapse: 'collapse', fontFamily: 'system-ui, -apple-system, sans-serif', fontSize: '0.875rem', boxShadow: '0 1px 3px rgba(0,0,0,0.08)', tableLayout: 'auto', width: '100%' }; +const headerStyle: CSSProperties = { color: '#212529', fontWeight: 600, padding: '0.75rem 1rem', borderBottom: '2px solid #dee2e6', textAlign: 'left', cursor: 'pointer', userSelect: 'none', whiteSpace: 'nowrap', position: 'sticky', top: -1, zIndex: 2, backgroundColor: '#f8f9fa' }; +const cellStyle: CSSProperties = { padding: '0.75rem 1rem', borderBottom: '1px solid #e9ecef', color: '#495057', backgroundColor: 'white' }; +const rowStyle: CSSProperties = { transition: 'background-color 0.2s ease' }; +const tableButtonStyle: CSSProperties = { padding: '0.375rem 0.75rem', borderRadius: '4px', border: '1px solid #dee2e6', backgroundColor: 'transparent', color: '#212529', cursor: 'pointer', transition: 'all 0.2s ease' }; +const deleteButtonStyle: CSSProperties = { background: 'none', border: 'none', cursor: 'pointer', color: '#dc3545', fontSize: '1.5em', padding: '0 5px', display: 'flex', alignItems: 'center', justifyContent: 'center', width: '100%' }; +const deleteUserButtonStyle: CSSProperties = { background: 'none', border: 'none', cursor: 'pointer', color: '#dc3545', fontSize: '1.2em', padding: '0 5px', opacity: 0.7, transition: 'opacity 0.3s ease, color 0.3s ease' }; +const scrollToTopStyle: CSSProperties = { position: 'fixed', bottom: '60px', right: '20px', width: '40px', height: '40px', borderRadius: '50%', backgroundColor: '#007bff', color: 'white', border: 'none', cursor: 'pointer', boxShadow: '0 2px 5px rgba(0,0,0,0.2)', fontSize: '20px', display: 'flex', alignItems: 'center', justifyContent: 'center', transition: 'opacity 0.3s, transform 0.3s', zIndex: 1002 }; +const powerButtonStyle: CSSProperties = { background: 'none', border: 'none', cursor: 'pointer', padding: '5px', display: 'flex', alignItems: 'center', transition: 'transform 0.2s ease' }; +const powerIconStyle: CSSProperties = { width: '24px', height: '24px' }; +const modalGrandeStyle: CSSProperties = { position: 'fixed', top: '0', left: '0', width: '100vw', height: '100vh', backgroundColor: 'white', zIndex: 1003, overflowY: 'auto', display: 'flex', flexDirection: 'column', padding: '0px' }; +const modalHeaderStyle: CSSProperties = { display: 'flex', justifyContent: 'space-between', alignItems: 'center', borderBottom: '1px solid #ddd', marginBottom: '10px', top: 0, backgroundColor: 'white', zIndex: 1000, paddingTop: '5px' }; +const tituloSeccionStyle: CSSProperties = { fontSize: '1rem', margin: '0 0 15px 0', color: '#2d3436', fontWeight: 600 }; +const closeButtonStyle: CSSProperties = { background: 'black', color: 'white', border: 'none', borderRadius: '50%', width: '30px', height: '30px', cursor: 'pointer', fontSize: '20px', display: 'flex', alignItems: 'center', justifyContent: 'center', zIndex: 1004, boxShadow: '0 2px 5px rgba(0,0,0,0.2)', transition: 'transform 0.2s', position: 'fixed', right: '30px', top: '30px' }; +const seccionStyle: CSSProperties = { backgroundColor: '#f8f9fa', borderRadius: '8px', padding: '15px', boxShadow: '0 2px 4px rgba(0,0,0,0.05)', marginBottom: '10px' }; +const gridDatosStyle: CSSProperties = { display: 'grid', gridTemplateColumns: 'repeat(auto-fill, minmax(300px, 1fr))', gap: '15px', marginTop: '15px' }; +const datoItemStyle: CSSProperties = { display: 'flex', justifyContent: 'space-between', padding: '10px', backgroundColor: 'white', borderRadius: '4px', boxShadow: '0 1px 3px rgba(0,0,0,0.05)' }; +const labelStyle: CSSProperties = { color: '#6c757d', textTransform: 'capitalize', fontSize: '1rem', fontWeight: 800, marginRight: '8px' }; +const valorStyle: CSSProperties = { color: '#495057', maxWidth: '200px', overflow: 'hidden', textOverflow: 'ellipsis', fontSize: '0.8125rem', lineHeight: '1.4' }; +const historialTableStyle: CSSProperties = { width: '100%', borderCollapse: 'collapse', marginTop: '15px' }; +const historialHeaderStyle: CSSProperties = { backgroundColor: '#007bff', color: 'white', padding: '12px', textAlign: 'left', fontSize: '0.875rem' }; +const historialCellStyle: CSSProperties = { padding: '12px', color: '#495057', fontSize: '0.8125rem' }; +const historialRowStyle: CSSProperties = { borderBottom: '1px solid #dee2e6' }; + +export default SimpleTable; \ No newline at end of file diff --git a/frontend/src/index.css b/frontend/src/index.css new file mode 100644 index 0000000..ea55645 --- /dev/null +++ b/frontend/src/index.css @@ -0,0 +1,24 @@ +/* Limpieza básica y configuración de fuente */ +body { + margin: 0; + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + background-color: #f8f9fa; + color: #212529; +} + +/* Estilos de la scrollbar que estaban en index.html */ +body::-webkit-scrollbar { + width: 8px; + background-color: #f1f1f1; +} + +body::-webkit-scrollbar-thumb { + background-color: #888; + border-radius: 4px; +} + +/* Clase para bloquear el scroll cuando un modal está abierto */ +body.scroll-lock { + padding-right: 8px !important; + overflow: hidden !important; +} \ No newline at end of file diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx new file mode 100644 index 0000000..4f6c4fb --- /dev/null +++ b/frontend/src/main.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import App from './App.tsx' +import './index.css' // Importaremos un CSS base aquí + +ReactDOM.createRoot(document.getElementById('root')!).render( + + + , +) \ No newline at end of file diff --git a/frontend/src/types/interfaces.ts b/frontend/src/types/interfaces.ts new file mode 100644 index 0000000..659b11e --- /dev/null +++ b/frontend/src/types/interfaces.ts @@ -0,0 +1,69 @@ +// frontend/src/types/interfaces.ts + +// Corresponde al modelo 'Sector' +export interface Sector { + id: number; + nombre: string; +} + +// Corresponde al modelo 'Usuario' +export interface Usuario { + id: number; + username: string; + password?: string; // Es opcional ya que no siempre lo enviaremos +} + +// Corresponde al modelo 'Disco' +export interface Disco { + id: number; + mediatype: string; + size: number; +} + +// Corresponde al modelo 'MemoriaRam' +export interface MemoriaRam { + id: number; + partNumber?: string; + fabricante?: string; + tamano: number; + velocidad?: number; +} + +// Interfaz combinada para mostrar los detalles de la RAM en la tabla de equipos +export interface MemoriaRamDetalle extends MemoriaRam { + slot: string; +} + +// Corresponde al modelo 'HistorialEquipo' +export interface HistorialEquipo { + id: number; + equipo_id: number; + campo_modificado: string; + valor_anterior?: string; + valor_nuevo?: string; + fecha_cambio: string; +} + +// Corresponde al modelo principal 'Equipo' y sus relaciones +export interface Equipo { + id: number; + hostname: string; + ip: string; + mac?: string; + motherboard: string; + cpu: string; + ram_installed: number; + ram_slots?: number; + os: string; + architecture: string; + created_at: string; + updated_at: string; + sector_id?: number; + + // Propiedades de navegación que vienen de las relaciones (JOINs) + sector?: Sector; + usuarios: Usuario[]; + discos: Disco[]; + memoriasRam: MemoriaRamDetalle[]; + historial: HistorialEquipo[]; +} \ No newline at end of file diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json new file mode 100644 index 0000000..a9b5a59 --- /dev/null +++ b/frontend/tsconfig.app.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2022", + "useDefineForClassFields": true, + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "types": ["vite/client"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json new file mode 100644 index 0000000..8a67f62 --- /dev/null +++ b/frontend/tsconfig.node.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2023", + "lib": ["ES2023"], + "module": "ESNext", + "types": ["node"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts new file mode 100644 index 0000000..8b0f57b --- /dev/null +++ b/frontend/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +})