diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index 242d985e0..ea5d30fb3 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -17,11 +17,17 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' cache: 'npm' - - name: Install dependencies - run: npm ci + - name: Install root dependencies + run: npm install + + - name: Install client dependencies + run: cd client && npm install + + - name: Install server dependencies + run: cd server && npm install - name: Check code formatting run: npm run format:check diff --git a/client/.env.example b/client/.env.example index 80fc71a67..a6fef4f9e 100644 --- a/client/.env.example +++ b/client/.env.example @@ -1 +1,5 @@ VITE_SERVER_DOMAIN=https://code-a2z.onrender.com +VITE_ACCESS_TOKEN_DURATION=15 +VITE_REFRESH_TOKEN_DURATION=7 +VITE_ACCESS_TOKEN_NAME=access_token +VITE_REFRESH_TOKEN_NAME=refresh_token diff --git a/client/.vercelignore b/client/.vercelignore index 79a81fae0..051e59ff4 100644 --- a/client/.vercelignore +++ b/client/.vercelignore @@ -1,2 +1,8 @@ projects/* server/* +client/src/modules/edit-profile/* +client/src/modules/manage-projects/* +client/src/modules/notification/* +src/modules/edit-profile/* +src/modules/manage-projects/* +src/modules/notification/* diff --git a/client/README.md b/client/README.md index 7959ce426..8d2fecaf2 100644 --- a/client/README.md +++ b/client/README.md @@ -4,15 +4,21 @@ This template provides a minimal setup to get React working in Vite with HMR and 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/) for Fast Refresh +- [@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 enabled on this template. See [this documentation](https://react.dev/learn/react-compiler) for more information. + +Note: This will impact Vite dev & build performances. + ## 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 tseslint.config([ +export default defineConfig([ globalIgnores(['dist']), { files: ['**/*.{ts,tsx}'], @@ -20,11 +26,11 @@ export default tseslint.config([ // Other configs... // Remove tseslint.configs.recommended and replace with this - ...tseslint.configs.recommendedTypeChecked, + tseslint.configs.recommendedTypeChecked, // Alternatively, use this for stricter rules - ...tseslint.configs.strictTypeChecked, + tseslint.configs.strictTypeChecked, // Optionally, add this for stylistic rules - ...tseslint.configs.stylisticTypeChecked, + tseslint.configs.stylisticTypeChecked, // Other configs... ], @@ -36,17 +42,17 @@ export default tseslint.config([ // 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' +import reactX from 'eslint-plugin-react-x'; +import reactDom from 'eslint-plugin-react-dom'; -export default tseslint.config([ +export default defineConfig([ globalIgnores(['dist']), { files: ['**/*.{ts,tsx}'], @@ -65,5 +71,5 @@ export default tseslint.config([ // other options... }, }, -]) +]); ``` diff --git a/client/eslint.config.js b/client/eslint.config.js index d94e7deb7..0e16339d6 100644 --- a/client/eslint.config.js +++ b/client/eslint.config.js @@ -3,9 +3,9 @@ import globals from 'globals' import reactHooks from 'eslint-plugin-react-hooks' import reactRefresh from 'eslint-plugin-react-refresh' import tseslint from 'typescript-eslint' -import { globalIgnores } from 'eslint/config' +import { defineConfig, globalIgnores } from 'eslint/config' -export default tseslint.config([ +export default defineConfig([ globalIgnores(['dist']), { files: ['**/*.{ts,tsx}'], @@ -19,5 +19,10 @@ export default tseslint.config([ ecmaVersion: 2020, globals: globals.browser, }, + rules: { + // Disable react-in-jsx-scope for React 17+ (not needed) + 'react/react-in-jsx-scope': 'off', + 'react/jsx-uses-react': 'off', + }, }, ]) diff --git a/client/package-lock.json b/client/package-lock.json index 067a531d6..8ce967ec7 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,56 +1,54 @@ { "name": "client", - "version": "2.1.1", + "version": "2.12.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "client", - "version": "2.1.1", + "version": "2.12.1", "license": "ISC", "dependencies": { - "@editorjs/attaches": "^1.3.0", + "@editorjs/attaches": "^1.3.2", "@editorjs/checklist": "^1.6.0", "@editorjs/code": "^2.9.3", "@editorjs/delimiter": "^1.4.2", - "@editorjs/editorjs": "^2.30.8", + "@editorjs/editorjs": "^2.31.0", "@editorjs/embed": "^2.7.6", "@editorjs/header": "^2.8.8", - "@editorjs/image": "^2.10.2", - "@editorjs/inline-code": "^1.5.1", + "@editorjs/image": "^2.10.3", + "@editorjs/inline-code": "^1.5.2", "@editorjs/link": "^2.6.2", - "@editorjs/list": "^2.0.6", + "@editorjs/list": "^2.0.8", "@editorjs/marker": "^1.4.0", "@editorjs/quote": "^2.7.6", - "@editorjs/table": "^2.4.3", + "@editorjs/table": "^2.4.5", "@editorjs/warning": "^1.4.1", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", - "@flaticon/flaticon-uicons": "^3.3.1", - "@mui/icons-material": "^7.2.0", - "@mui/material": "^7.2.0", - "@tailwindcss/vite": "^4.1.12", - "axios": "^1.8.1", - "firebase": "^11.4.0", - "framer-motion": "^12.4.7", - "jotai": "^2.13.1", + "@mui/icons-material": "^7.3.4", + "@mui/material": "^7.3.4", + "axios": "^1.12.2", + "jotai": "^2.15.0", "react": "^19.1.1", "react-dom": "^19.1.1", - "react-router-dom": "^7.2.0", - "tailwindcss": "^4.1.12" + "react-router-dom": "^7.9.4", + "react-virtuoso": "^4.14.1" }, "devDependencies": { - "@eslint/js": "^9.33.0", - "@types/react": "^19.1.10", - "@types/react-dom": "^19.1.7", - "@vitejs/plugin-react-swc": "^4.0.0", - "eslint": "^9.33.0", + "@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", + "babel-plugin-react-compiler": "^19.1.0-rc.3", + "eslint": "^9.36.0", "eslint-plugin-react-hooks": "^5.2.0", - "eslint-plugin-react-refresh": "^0.4.20", - "globals": "^16.3.0", - "typescript": "~5.8.3", - "typescript-eslint": "^8.39.1", - "vite": "^7.1.2" + "eslint-plugin-react-refresh": "^0.4.22", + "globals": "^16.4.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.45.0", + "vite": "npm:rolldown-vite@7.1.14" } }, "node_modules/@babel/code-frame": { @@ -67,14 +65,55 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@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==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "license": "MIT", "dependencies": { - "@babel/parser": "^7.28.3", - "@babel/types": "^7.28.2", + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" @@ -83,6 +122,23 @@ "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==", + "devOptional": 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", @@ -105,6 +161,34 @@ "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==", + "devOptional": 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", @@ -115,22 +199,46 @@ } }, "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "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-identifier/-/helper-validator-identifier-7.27.1.tgz", - "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "devOptional": true, "license": "MIT", "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/parser": { + "node_modules/@babel/helpers": { "version": "7.28.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", - "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "devOptional": 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.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -138,6 +246,38 @@ "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/runtime": { "version": "7.28.4", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", @@ -162,17 +302,17 @@ } }, "node_modules/@babel/traverse": { - "version": "7.28.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", - "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.3", + "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", - "@babel/parser": "^7.28.4", + "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", - "@babel/types": "^7.28.4", + "@babel/types": "^7.28.5", "debug": "^4.3.1" }, "engines": { @@ -180,31 +320,41 @@ } }, "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==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.27.1", - "@babel/helper-validator-identifier": "^7.27.1" + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@codexteam/ajax": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@codexteam/ajax/-/ajax-4.2.0.tgz", + "integrity": "sha512-54r/HZirqBPEV8rM9gZh570RCwG6M/iDAXT9Q9eGuMo9KZU49tw1dEDHjYsResGckfCsaymDqg4GnhfrBtX9JQ==", + "license": "MIT" + }, "node_modules/@codexteam/icons": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.0.4.tgz", - "integrity": "sha512-V8N/TY2TGyas4wLrPIFq7bcow68b3gu8DfDt1+rrHPtXxcexadKauRJL6eQgfG7Z0LCrN4boLRawR4S9gjIh/Q==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", + "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", "license": "MIT" }, "node_modules/@editorjs/attaches": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@editorjs/attaches/-/attaches-1.3.0.tgz", - "integrity": "sha512-D+dj55EsC5bvXV///Dh/+KN4unuI0j6SU3f5QcMA5zrfda47PNKwbKOuwMBJwn0O+o5qwqrFv67g98lAo2qqVQ==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@editorjs/attaches/-/attaches-1.3.2.tgz", + "integrity": "sha512-hzwcOo/Lk1hTEzXXV0MSnwPsGIILaeM1R7SCMu4uUALftlQVugf+Vm4a9Rd66IT7TU3tfyiOwJPb/Ydp9zn36A==", "license": "MIT", "dependencies": { - "@codexteam/icons": "^0.0.4" + "@codexteam/ajax": "^4.2.0", + "@codexteam/icons": "^0.3.0" + }, + "engines": { + "node": ">=20.0.0" } }, "node_modules/@editorjs/caret": { @@ -225,12 +375,6 @@ "@codexteam/icons": "^0.3.0" } }, - "node_modules/@editorjs/checklist/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/code": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/@editorjs/code/-/code-2.9.3.tgz", @@ -240,12 +384,6 @@ "@codexteam/icons": "^0.3.2" } }, - "node_modules/@editorjs/code/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/delimiter": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/@editorjs/delimiter/-/delimiter-1.4.2.tgz", @@ -255,12 +393,6 @@ "@codexteam/icons": "^0.3.2" } }, - "node_modules/@editorjs/delimiter/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/dom": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@editorjs/dom/-/dom-1.0.1.tgz", @@ -321,12 +453,6 @@ "@codexteam/icons": "^0.3.0" } }, - "node_modules/@editorjs/image/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/inline-code": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/@editorjs/inline-code/-/inline-code-1.5.2.tgz", @@ -336,12 +462,6 @@ "@codexteam/icons": "^0.3.2" } }, - "node_modules/@editorjs/inline-code/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/link": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/@editorjs/link/-/link-2.6.2.tgz", @@ -352,6 +472,12 @@ "@codexteam/icons": "^0.0.4" } }, + "node_modules/@editorjs/link/node_modules/@codexteam/icons": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.0.4.tgz", + "integrity": "sha512-V8N/TY2TGyas4wLrPIFq7bcow68b3gu8DfDt1+rrHPtXxcexadKauRJL6eQgfG7Z0LCrN4boLRawR4S9gjIh/Q==", + "license": "MIT" + }, "node_modules/@editorjs/list": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/@editorjs/list/-/list-2.0.8.tgz", @@ -361,12 +487,6 @@ "@codexteam/icons": "^0.3.2" } }, - "node_modules/@editorjs/list/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/marker": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/@editorjs/marker/-/marker-1.4.0.tgz", @@ -392,12 +512,6 @@ "@editorjs/dom": "^0.0.5" } }, - "node_modules/@editorjs/quote/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" - }, "node_modules/@editorjs/quote/node_modules/@editorjs/dom": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/@editorjs/dom/-/dom-0.0.5.tgz", @@ -438,11 +552,39 @@ "@editorjs/editorjs": "^2.30.7" } }, - "node_modules/@editorjs/warning/node_modules/@codexteam/icons": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@codexteam/icons/-/icons-0.3.3.tgz", - "integrity": "sha512-cp7mkZPgmBuSxigTm3Vb+DtVHYeX7qXfQd7o05vcLD8Ag5WvRlol2QSn5P10k0CDAJwmkH9nQGQLBycErS9lsQ==", - "license": "MIT" + "node_modules/@emnapi/core": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.6.0.tgz", + "integrity": "sha512-zq/ay+9fNIJJtJiZxdTnXS20PllcYMX3OE23ESc4HK/bdYu3cOWYVhsOhVnXALfU/uqJIxn5NBPd9z4v+SfoSg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.6.0.tgz", + "integrity": "sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } }, "node_modules/@emotion/babel-plugin": { "version": "11.13.5", @@ -463,6 +605,12 @@ "stylis": "4.2.0" } }, + "node_modules/@emotion/babel-plugin/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, "node_modules/@emotion/cache": { "version": "11.14.0", "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz", @@ -590,2466 +738,881 @@ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", "license": "MIT" }, - "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" - ], + "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", - "optional": true, - "os": [ - "aix" - ], + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, "engines": { - "node": ">=18" + "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/@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" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "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": ">=18" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "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" - ], + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, "license": "MIT", - "optional": true, - "os": [ - "android" - ], "engines": { - "node": ">=18" + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, "engines": { - "node": ">=18" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@eslint/config-helpers": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.1.tgz", + "integrity": "sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.16.0" + }, "engines": { - "node": ">=18" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@eslint/core": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.16.0.tgz", + "integrity": "sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, "engines": { - "node": ">=18" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "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" - ], + "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", - "optional": true, - "os": [ - "freebsd" - ], + "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" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "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" - ], + "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", - "optional": true, - "os": [ - "freebsd" - ], "engines": { "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "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" - ], + "node_modules/@eslint/js": { + "version": "9.38.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.38.0.tgz", + "integrity": "sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==", + "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=18" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=18" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@eslint/plugin-kit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.0.tgz", + "integrity": "sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.16.0", + "levn": "^0.4.1" + }, "engines": { - "node": ">=18" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "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" + "node": ">=18.18.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "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" + "node": ">=18.18.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "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": ">=18" + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "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" + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" } }, - "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" - ], + "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==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "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" - ], + "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==", + "devOptional": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "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" - ], + "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==", "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], "engines": { - "node": ">=18" + "node": ">=6.0.0" } }, - "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" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } + "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==", + "license": "MIT" }, - "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" - ], + "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==", "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "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" - ], - "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" - ], - "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" - ], - "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" - ], - "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" - ], - "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" - ], + "node_modules/@mui/core-downloads-tracker": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.4.tgz", + "integrity": "sha512-BIktMapG3r4iXwIhYNpvk97ZfYWTreBBQTWjQKbNbzI64+ULHfYavQEX2w99aSWHS58DvXESWIgbD9adKcUOBw==", "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" } }, - "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, + "node_modules/@mui/icons-material": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-7.3.4.tgz", + "integrity": "sha512-9n6Xcq7molXWYb680N2Qx+FRW8oT6j/LXF5PZFH3ph9X/Rct0B/BlLAsFI7iL9ySI6LVLuQIVtrLiPT82R7OZw==", "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.4.3" + "@babel/runtime": "^7.28.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=14.0.0" }, "funding": { - "url": "https://opencollective.com/eslint" + "type": "opencollective", + "url": "https://opencollective.com/mui-org" }, "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.4.0", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.0.tgz", - "integrity": "sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/core": "^0.16.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/core": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.16.0.tgz", - "integrity": "sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/json-schema": "^7.0.15" + "@mui/material": "^7.3.4", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "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, + "node_modules/@mui/material": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.3.4.tgz", + "integrity": "sha512-gEQL9pbJZZHT7lYJBKQCS723v1MGys2IFc94COXbUIyCTWa+qC77a7hUax4Yjd5ggEm35dk4AyYABpKKWC4MLw==", "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" + "@babel/runtime": "^7.28.4", + "@mui/core-downloads-tracker": "^7.3.4", + "@mui/system": "^7.3.3", + "@mui/types": "^7.4.7", + "@mui/utils": "^7.3.3", + "@popperjs/core": "^2.11.8", + "@types/react-transition-group": "^4.4.12", + "clsx": "^2.1.1", + "csstype": "^3.1.3", + "prop-types": "^15.8.1", + "react-is": "^19.1.1", + "react-transition-group": "^4.4.5" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "9.37.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.37.0.tgz", - "integrity": "sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==", - "dev": true, - "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=14.0.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.4.0", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.0.tgz", - "integrity": "sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/core": "^0.16.0", - "levn": "^0.4.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@firebase/ai": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@firebase/ai/-/ai-1.4.1.tgz", - "integrity": "sha512-bcusQfA/tHjUjBTnMx6jdoPMpDl3r8K15Z+snHz9wq0Foox0F/V+kNLXucEOHoTL2hTc9l+onZCyBJs2QoIC3g==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/app-check-interop-types": "0.3.3", - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app": "0.x", - "@firebase/app-types": "0.x" - } - }, - "node_modules/@firebase/analytics": { - "version": "0.10.17", - "resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.10.17.tgz", - "integrity": "sha512-n5vfBbvzduMou/2cqsnKrIes4auaBjdhg8QNA2ZQZ59QgtO2QiwBaXQZQE4O4sgB0Ds1tvLgUUkY+pwzu6/xEg==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/installations": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" + "type": "opencollective", + "url": "https://opencollective.com/mui-org" }, "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/analytics-compat": { - "version": "0.2.23", - "resolved": "https://registry.npmjs.org/@firebase/analytics-compat/-/analytics-compat-0.2.23.tgz", - "integrity": "sha512-3AdO10RN18G5AzREPoFgYhW6vWXr3u+OYQv6pl3CX6Fky8QRk0AHurZlY3Q1xkXO0TDxIsdhO3y65HF7PBOJDw==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/analytics": "0.10.17", - "@firebase/analytics-types": "0.8.3", - "@firebase/component": "0.6.18", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/analytics-types": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.8.3.tgz", - "integrity": "sha512-VrIp/d8iq2g501qO46uGz3hjbDb8xzYMrbu8Tp0ovzIzrvJZ2fvmj649gTjge/b7cCCcjT0H37g1gVtlNhnkbg==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/app": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.13.2.tgz", - "integrity": "sha512-jwtMmJa1BXXDCiDx1vC6SFN/+HfYG53UkfJa6qeN5ogvOunzbFDO3wISZy5n9xgYFUrEP6M7e8EG++riHNTv9w==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "idb": "7.1.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/app-check": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.10.1.tgz", - "integrity": "sha512-MgNdlms9Qb0oSny87pwpjKush9qUwCJhfmTJHDfrcKo4neLGiSeVE4qJkzP7EQTIUFKp84pbTxobSAXkiuQVYQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/app-check-compat": { - "version": "0.3.26", - "resolved": "https://registry.npmjs.org/@firebase/app-check-compat/-/app-check-compat-0.3.26.tgz", - "integrity": "sha512-PkX+XJMLDea6nmnopzFKlr+s2LMQGqdyT2DHdbx1v1dPSqOol2YzgpgymmhC67vitXVpNvS3m/AiWQWWhhRRPQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/app-check": "0.10.1", - "@firebase/app-check-types": "0.5.3", - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/app-check-interop-types": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@firebase/app-check-interop-types/-/app-check-interop-types-0.3.3.tgz", - "integrity": "sha512-gAlxfPLT2j8bTI/qfe3ahl2I2YcBQ8cFIBdhAQA4I2f3TndcO+22YizyGYuttLHPQEpWkhmpFW60VCFEPg4g5A==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/app-check-types": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@firebase/app-check-types/-/app-check-types-0.5.3.tgz", - "integrity": "sha512-hyl5rKSj0QmwPdsAxrI5x1otDlByQ7bvNvVt8G/XPO2CSwE++rmSVf3VEhaeOR4J8ZFaF0Z0NDSmLejPweZ3ng==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/app-compat": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.4.2.tgz", - "integrity": "sha512-LssbyKHlwLeiV8GBATyOyjmHcMpX/tFjzRUCS1jnwGAew1VsBB4fJowyS5Ud5LdFbYpJeS+IQoC+RQxpK7eH3Q==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/app": "0.13.2", - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/app-types": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.9.3.tgz", - "integrity": "sha512-kRVpIl4vVGJ4baogMDINbyrIOtOxqhkZQg4jTq3l8Lw6WSk0xfpEYzezFu+Kl4ve4fbPl79dvwRtaFqAC/ucCw==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/auth": { - "version": "1.10.8", - "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.10.8.tgz", - "integrity": "sha512-GpuTz5ap8zumr/ocnPY57ZanX02COsXloY6Y/2LYPAuXYiaJRf6BAGDEdRq1BMjP93kqQnKNuKZUTMZbQ8MNYA==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app": "0.x", - "@react-native-async-storage/async-storage": "^1.18.1" - }, - "peerDependenciesMeta": { - "@react-native-async-storage/async-storage": { - "optional": true - } - } - }, - "node_modules/@firebase/auth-compat": { - "version": "0.5.28", - "resolved": "https://registry.npmjs.org/@firebase/auth-compat/-/auth-compat-0.5.28.tgz", - "integrity": "sha512-HpMSo/cc6Y8IX7bkRIaPPqT//Jt83iWy5rmDWeThXQCAImstkdNo3giFLORJwrZw2ptiGkOij64EH1ztNJzc7Q==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/auth": "1.10.8", - "@firebase/auth-types": "0.13.0", - "@firebase/component": "0.6.18", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/auth-interop-types": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.2.4.tgz", - "integrity": "sha512-JPgcXKCuO+CWqGDnigBtvo09HeBs5u/Ktc2GaFj2m01hLarbxthLNm7Fk8iOP1aqAtXV+fnnGj7U28xmk7IwVA==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/auth-types": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.13.0.tgz", - "integrity": "sha512-S/PuIjni0AQRLF+l9ck0YpsMOdE8GO2KU6ubmBB7P+7TJUCQDa3R1dlgYm9UzGbbePMZsp0xzB93f2b/CgxMOg==", - "license": "Apache-2.0", - "peerDependencies": { - "@firebase/app-types": "0.x", - "@firebase/util": "1.x" - } - }, - "node_modules/@firebase/component": { - "version": "0.6.18", - "resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.6.18.tgz", - "integrity": "sha512-n28kPCkE2dL2U28fSxZJjzPPVpKsQminJ6NrzcKXAI0E/lYC8YhfwpyllScqVEvAI3J2QgJZWYgrX+1qGI+SQQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/data-connect": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/@firebase/data-connect/-/data-connect-0.3.10.tgz", - "integrity": "sha512-VMVk7zxIkgwlVQIWHOKFahmleIjiVFwFOjmakXPd/LDgaB/5vzwsB5DWIYo+3KhGxWpidQlR8geCIn39YflJIQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/auth-interop-types": "0.2.4", - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/database": { - "version": "1.0.20", - "resolved": "https://registry.npmjs.org/@firebase/database/-/database-1.0.20.tgz", - "integrity": "sha512-H9Rpj1pQ1yc9+4HQOotFGLxqAXwOzCHsRSRjcQFNOr8lhUt6LeYjf0NSRL04sc4X0dWe8DsCvYKxMYvFG/iOJw==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/app-check-interop-types": "0.3.3", - "@firebase/auth-interop-types": "0.2.4", - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "faye-websocket": "0.11.4", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/database-compat": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/@firebase/database-compat/-/database-compat-2.0.11.tgz", - "integrity": "sha512-itEsHARSsYS95+udF/TtIzNeQ0Uhx4uIna0sk4E0wQJBUnLc/G1X6D7oRljoOuwwCezRLGvWBRyNrugv/esOEw==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/database": "1.0.20", - "@firebase/database-types": "1.0.15", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/database-types": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-1.0.15.tgz", - "integrity": "sha512-XWHJ0VUJ0k2E9HDMlKxlgy/ZuTa9EvHCGLjaKSUvrQnwhgZuRU5N3yX6SZ+ftf2hTzZmfRkv+b3QRvGg40bKNw==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/app-types": "0.9.3", - "@firebase/util": "1.12.1" - } - }, - "node_modules/@firebase/firestore": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-4.8.0.tgz", - "integrity": "sha512-QSRk+Q1/CaabKyqn3C32KSFiOdZpSqI9rpLK5BHPcooElumOBooPFa6YkDdiT+/KhJtel36LdAacha9BptMj2A==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "@firebase/webchannel-wrapper": "1.0.3", - "@grpc/grpc-js": "~1.9.0", - "@grpc/proto-loader": "^0.7.8", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/firestore-compat": { - "version": "0.3.53", - "resolved": "https://registry.npmjs.org/@firebase/firestore-compat/-/firestore-compat-0.3.53.tgz", - "integrity": "sha512-qI3yZL8ljwAYWrTousWYbemay2YZa+udLWugjdjju2KODWtLG94DfO4NALJgPLv8CVGcDHNFXoyQexdRA0Cz8Q==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/firestore": "4.8.0", - "@firebase/firestore-types": "3.0.3", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/firestore-types": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-3.0.3.tgz", - "integrity": "sha512-hD2jGdiWRxB/eZWF89xcK9gF8wvENDJkzpVFb4aGkzfEaKxVRD1kjz1t1Wj8VZEp2LCB53Yx1zD8mrhQu87R6Q==", - "license": "Apache-2.0", - "peerDependencies": { - "@firebase/app-types": "0.x", - "@firebase/util": "1.x" - } - }, - "node_modules/@firebase/functions": { - "version": "0.12.9", - "resolved": "https://registry.npmjs.org/@firebase/functions/-/functions-0.12.9.tgz", - "integrity": "sha512-FG95w6vjbUXN84Ehezc2SDjGmGq225UYbHrb/ptkRT7OTuCiQRErOQuyt1jI1tvcDekdNog+anIObihNFz79Lg==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/app-check-interop-types": "0.3.3", - "@firebase/auth-interop-types": "0.2.4", - "@firebase/component": "0.6.18", - "@firebase/messaging-interop-types": "0.2.3", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/functions-compat": { - "version": "0.3.26", - "resolved": "https://registry.npmjs.org/@firebase/functions-compat/-/functions-compat-0.3.26.tgz", - "integrity": "sha512-A798/6ff5LcG2LTWqaGazbFYnjBW8zc65YfID/en83ALmkhu2b0G8ykvQnLtakbV9ajrMYPn7Yc/XcYsZIUsjA==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/functions": "0.12.9", - "@firebase/functions-types": "0.6.3", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/functions-types": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.6.3.tgz", - "integrity": "sha512-EZoDKQLUHFKNx6VLipQwrSMh01A1SaL3Wg6Hpi//x6/fJ6Ee4hrAeswK99I5Ht8roiniKHw4iO0B1Oxj5I4plg==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/installations": { - "version": "0.6.18", - "resolved": "https://registry.npmjs.org/@firebase/installations/-/installations-0.6.18.tgz", - "integrity": "sha512-NQ86uGAcvO8nBRwVltRL9QQ4Reidc/3whdAasgeWCPIcrhOKDuNpAALa6eCVryLnK14ua2DqekCOX5uC9XbU/A==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/util": "1.12.1", - "idb": "7.1.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/installations-compat": { - "version": "0.2.18", - "resolved": "https://registry.npmjs.org/@firebase/installations-compat/-/installations-compat-0.2.18.tgz", - "integrity": "sha512-aLFohRpJO5kKBL/XYL4tN+GdwEB/Q6Vo9eZOM/6Kic7asSUgmSfGPpGUZO1OAaSRGwF4Lqnvi1f/f9VZnKzChw==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/installations": "0.6.18", - "@firebase/installations-types": "0.5.3", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/installations-types": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.5.3.tgz", - "integrity": "sha512-2FJI7gkLqIE0iYsNQ1P751lO3hER+Umykel+TkLwHj6plzWVxqvfclPUZhcKFVQObqloEBTmpi2Ozn7EkCABAA==", - "license": "Apache-2.0", - "peerDependencies": { - "@firebase/app-types": "0.x" - } - }, - "node_modules/@firebase/logger": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.4.4.tgz", - "integrity": "sha512-mH0PEh1zoXGnaR8gD1DeGeNZtWFKbnz9hDO91dIml3iou1gpOnLqXQ2dJfB71dj6dpmUjcQ6phY3ZZJbjErr9g==", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/messaging": { - "version": "0.12.22", - "resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.12.22.tgz", - "integrity": "sha512-GJcrPLc+Hu7nk+XQ70Okt3M1u1eRr2ZvpMbzbc54oTPJZySHcX9ccZGVFcsZbSZ6o1uqumm8Oc7OFkD3Rn1/og==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/installations": "0.6.18", - "@firebase/messaging-interop-types": "0.2.3", - "@firebase/util": "1.12.1", - "idb": "7.1.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/messaging-compat": { - "version": "0.2.22", - "resolved": "https://registry.npmjs.org/@firebase/messaging-compat/-/messaging-compat-0.2.22.tgz", - "integrity": "sha512-5ZHtRnj6YO6f/QPa/KU6gryjmX4Kg33Kn4gRpNU6M1K47Gm8kcQwPkX7erRUYEH1mIWptfvjvXMHWoZaWjkU7A==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/messaging": "0.12.22", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/messaging-interop-types": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@firebase/messaging-interop-types/-/messaging-interop-types-0.2.3.tgz", - "integrity": "sha512-xfzFaJpzcmtDjycpDeCUj0Ge10ATFi/VHVIvEEjDNc3hodVBQADZ7BWQU7CuFpjSHE+eLuBI13z5F/9xOoGX8Q==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/performance": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/@firebase/performance/-/performance-0.7.7.tgz", - "integrity": "sha512-JTlTQNZKAd4+Q5sodpw6CN+6NmwbY72av3Lb6wUKTsL7rb3cuBIhQSrslWbVz0SwK3x0ZNcqX24qtRbwKiv+6w==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/installations": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0", - "web-vitals": "^4.2.4" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/performance-compat": { - "version": "0.2.20", - "resolved": "https://registry.npmjs.org/@firebase/performance-compat/-/performance-compat-0.2.20.tgz", - "integrity": "sha512-XkFK5NmOKCBuqOKWeRgBUFZZGz9SzdTZp4OqeUg+5nyjapTiZ4XoiiUL8z7mB2q+63rPmBl7msv682J3rcDXIQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/performance": "0.7.7", - "@firebase/performance-types": "0.2.3", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/performance-types": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.2.3.tgz", - "integrity": "sha512-IgkyTz6QZVPAq8GSkLYJvwSLr3LS9+V6vNPQr0x4YozZJiLF5jYixj0amDtATf1X0EtYHqoPO48a9ija8GocxQ==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/remote-config": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.6.5.tgz", - "integrity": "sha512-fU0c8HY0vrVHwC+zQ/fpXSqHyDMuuuglV94VF6Yonhz8Fg2J+KOowPGANM0SZkLvVOYpTeWp3ZmM+F6NjwWLnw==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/installations": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/remote-config-compat": { - "version": "0.2.18", - "resolved": "https://registry.npmjs.org/@firebase/remote-config-compat/-/remote-config-compat-0.2.18.tgz", - "integrity": "sha512-YiETpldhDy7zUrnS8e+3l7cNs0sL7+tVAxvVYU0lu7O+qLHbmdtAxmgY+wJqWdW2c9nDvBFec7QiF58pEUu0qQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/logger": "0.4.4", - "@firebase/remote-config": "0.6.5", - "@firebase/remote-config-types": "0.4.0", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/remote-config-types": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.4.0.tgz", - "integrity": "sha512-7p3mRE/ldCNYt8fmWMQ/MSGRmXYlJ15Rvs9Rk17t8p0WwZDbeK7eRmoI1tvCPaDzn9Oqh+yD6Lw+sGLsLg4kKg==", - "license": "Apache-2.0" - }, - "node_modules/@firebase/storage": { - "version": "0.13.14", - "resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.13.14.tgz", - "integrity": "sha512-xTq5ixxORzx+bfqCpsh+o3fxOsGoDjC1nO0Mq2+KsOcny3l7beyBhP/y1u5T6mgsFQwI1j6oAkbT5cWdDBx87g==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app": "0.x" - } - }, - "node_modules/@firebase/storage-compat": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/@firebase/storage-compat/-/storage-compat-0.3.24.tgz", - "integrity": "sha512-XHn2tLniiP7BFKJaPZ0P8YQXKiVJX+bMyE2j2YWjYfaddqiJnROJYqSomwW6L3Y+gZAga35ONXUJQju6MB6SOQ==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/component": "0.6.18", - "@firebase/storage": "0.13.14", - "@firebase/storage-types": "0.8.3", - "@firebase/util": "1.12.1", - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "@firebase/app-compat": "0.x" - } - }, - "node_modules/@firebase/storage-types": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.8.3.tgz", - "integrity": "sha512-+Muk7g9uwngTpd8xn9OdF/D48uiQ7I1Fae7ULsWPuKoCH3HU7bfFPhxtJYzyhjdniowhuDpQcfPmuNRAqZEfvg==", - "license": "Apache-2.0", - "peerDependencies": { - "@firebase/app-types": "0.x", - "@firebase/util": "1.x" - } - }, - "node_modules/@firebase/util": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@firebase/util/-/util-1.12.1.tgz", - "integrity": "sha512-zGlBn/9Dnya5ta9bX/fgEoNC3Cp8s6h+uYPYaDieZsFOAdHP/ExzQ/eaDgxD3GOROdPkLKpvKY0iIzr9adle0w==", - "hasInstallScript": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@firebase/webchannel-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-1.0.3.tgz", - "integrity": "sha512-2xCRM9q9FlzGZCdgDMJwc0gyUkWFtkosy7Xxr6sFgQwn+wMNIWd7xIvYNauU1r64B5L5rsGKy/n9TKJ0aAFeqQ==", - "license": "Apache-2.0" - }, - "node_modules/@flaticon/flaticon-uicons": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@flaticon/flaticon-uicons/-/flaticon-uicons-3.3.1.tgz", - "integrity": "sha512-WN2zuECCdjuGBQrjzN0kpeSygzC5fgF8Q7pDR+FUuGtYWczSdIhIwoD+/fKBEfwqKfNIMZ1WouidevGQ4OJORg==", - "license": "SEE LICENSE IN LICENSE", - "optionalDependencies": { - "esbuild-linux-64": "^0.14.5" - } - }, - "node_modules/@grpc/grpc-js": { - "version": "1.9.15", - "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.9.15.tgz", - "integrity": "sha512-nqE7Hc0AzI+euzUwDAy0aY5hCp10r734gMGRdU+qOPX0XSceI2ULrcXB5U2xSc5VkWwalCj4M7GzCAygZl2KoQ==", - "license": "Apache-2.0", - "dependencies": { - "@grpc/proto-loader": "^0.7.8", - "@types/node": ">=12.12.47" - }, - "engines": { - "node": "^8.13.0 || >=10.10.0" - } - }, - "node_modules/@grpc/proto-loader": { - "version": "0.7.15", - "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz", - "integrity": "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==", - "license": "Apache-2.0", - "dependencies": { - "lodash.camelcase": "^4.3.0", - "long": "^5.0.0", - "protobufjs": "^7.2.5", - "yargs": "^17.7.2" - }, - "bin": { - "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" - }, - "engines": { - "node": ">=6" - } - }, - "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/@isaacs/fs-minipass": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", - "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", - "license": "ISC", - "dependencies": { - "minipass": "^7.0.4" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "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==", - "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==", - "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==", - "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==", - "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==", - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@mui/core-downloads-tracker": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.4.tgz", - "integrity": "sha512-BIktMapG3r4iXwIhYNpvk97ZfYWTreBBQTWjQKbNbzI64+ULHfYavQEX2w99aSWHS58DvXESWIgbD9adKcUOBw==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - } - }, - "node_modules/@mui/icons-material": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-7.3.4.tgz", - "integrity": "sha512-9n6Xcq7molXWYb680N2Qx+FRW8oT6j/LXF5PZFH3ph9X/Rct0B/BlLAsFI7iL9ySI6LVLuQIVtrLiPT82R7OZw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@mui/material": "^7.3.4", - "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", - "react": "^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/material": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.3.4.tgz", - "integrity": "sha512-gEQL9pbJZZHT7lYJBKQCS723v1MGys2IFc94COXbUIyCTWa+qC77a7hUax4Yjd5ggEm35dk4AyYABpKKWC4MLw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4", - "@mui/core-downloads-tracker": "^7.3.4", - "@mui/system": "^7.3.3", - "@mui/types": "^7.4.7", - "@mui/utils": "^7.3.3", - "@popperjs/core": "^2.11.8", - "@types/react-transition-group": "^4.4.12", - "clsx": "^2.1.1", - "csstype": "^3.1.3", - "prop-types": "^15.8.1", - "react-is": "^19.1.1", - "react-transition-group": "^4.4.5" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@emotion/react": "^11.5.0", - "@emotion/styled": "^11.3.0", - "@mui/material-pigment-css": "^7.3.3", - "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", - "react": "^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - }, - "@mui/material-pigment-css": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/private-theming": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.3.tgz", - "integrity": "sha512-OJM+9nj5JIyPUvsZ5ZjaeC9PfktmK+W5YaVLToLR8L0lB/DGmv1gcKE43ssNLSvpoW71Hct0necfade6+kW3zQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4", - "@mui/utils": "^7.3.3", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", - "react": "^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/styled-engine": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.3.tgz", - "integrity": "sha512-CmFxvRJIBCEaWdilhXMw/5wFJ1+FT9f3xt+m2pPXhHPeVIbBg9MnMvNSJjdALvnQJMPw8jLhrUtXmN7QAZV2fw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4", - "@emotion/cache": "^11.14.0", - "@emotion/serialize": "^1.3.3", - "@emotion/sheet": "^1.4.0", - "csstype": "^3.1.3", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@emotion/react": "^11.4.1", - "@emotion/styled": "^11.3.0", - "react": "^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - } - } - }, - "node_modules/@mui/system": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.3.3.tgz", - "integrity": "sha512-Lqq3emZr5IzRLKaHPuMaLBDVaGvxoh6z7HMWd1RPKawBM5uMRaQ4ImsmmgXWtwJdfZux5eugfDhXJUo2mliS8Q==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4", - "@mui/private-theming": "^7.3.3", - "@mui/styled-engine": "^7.3.3", - "@mui/types": "^7.4.7", - "@mui/utils": "^7.3.3", - "clsx": "^2.1.1", - "csstype": "^3.1.3", - "prop-types": "^15.8.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@emotion/react": "^11.5.0", - "@emotion/styled": "^11.3.0", - "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", - "react": "^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - }, - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/types": { - "version": "7.4.7", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.7.tgz", - "integrity": "sha512-8vVje9rdEr1rY8oIkYgP+Su5Kwl6ik7O3jQ0wl78JGSmiZhRHV+vkjooGdKD8pbtZbutXFVTWQYshu2b3sG9zw==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4" - }, - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@mui/utils": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.3.tgz", - "integrity": "sha512-kwNAUh7bLZ7mRz9JZ+6qfRnnxbE4Zuc+RzXnhSpRSxjTlSTj7b4JxRLXpG+MVtPVtqks5k/XC8No1Vs3x4Z2gg==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.28.4", - "@mui/types": "^7.4.7", - "@types/prop-types": "^15.7.15", - "clsx": "^2.1.1", - "prop-types": "^15.8.1", - "react-is": "^19.1.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mui-org" - }, - "peerDependencies": { - "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", - "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@mui/material-pigment-css": "^7.3.3", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { - "@types/react": { + "@emotion/react": { "optional": true - } - } - }, - "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/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "license": "BSD-3-Clause", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", - "license": "BSD-3-Clause" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", - "license": "BSD-3-Clause" - }, - "node_modules/@rolldown/pluginutils": { - "version": "1.0.0-beta.35", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.35.tgz", - "integrity": "sha512-slYrCpoxJUqzFDDNlvrOYRazQUNRvWPjXA17dAOISY3rDMxX6k8K4cj2H+hEYMHF81HO3uNd5rHVigAWRM5dSg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", - "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", - "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", - "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", - "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", - "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", - "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", - "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", - "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", - "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", - "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", - "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", - "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", - "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", - "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", - "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", - "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", - "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", - "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openharmony" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", - "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", - "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", - "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + }, + "@emotion/styled": { + "optional": true + }, + "@mui/material-pigment-css": { + "optional": true + }, + "@types/react": { + "optional": true + } + } }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", - "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", - "cpu": [ - "x64" - ], + "node_modules/@mui/private-theming": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.3.tgz", + "integrity": "sha512-OJM+9nj5JIyPUvsZ5ZjaeC9PfktmK+W5YaVLToLR8L0lB/DGmv1gcKE43ssNLSvpoW71Hct0necfade6+kW3zQ==", "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@swc/core": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.13.5.tgz", - "integrity": "sha512-WezcBo8a0Dg2rnR82zhwoR6aRNxeTGfK5QCD6TQ+kg3xx/zNT02s/0o+81h/3zhvFSB24NtqEr8FTw88O5W/JQ==", - "dev": true, - "hasInstallScript": true, - "license": "Apache-2.0", "dependencies": { - "@swc/counter": "^0.1.3", - "@swc/types": "^0.1.24" + "@babel/runtime": "^7.28.4", + "@mui/utils": "^7.3.3", + "prop-types": "^15.8.1" }, "engines": { - "node": ">=10" + "node": ">=14.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/swc" - }, - "optionalDependencies": { - "@swc/core-darwin-arm64": "1.13.5", - "@swc/core-darwin-x64": "1.13.5", - "@swc/core-linux-arm-gnueabihf": "1.13.5", - "@swc/core-linux-arm64-gnu": "1.13.5", - "@swc/core-linux-arm64-musl": "1.13.5", - "@swc/core-linux-x64-gnu": "1.13.5", - "@swc/core-linux-x64-musl": "1.13.5", - "@swc/core-win32-arm64-msvc": "1.13.5", - "@swc/core-win32-ia32-msvc": "1.13.5", - "@swc/core-win32-x64-msvc": "1.13.5" + "url": "https://opencollective.com/mui-org" }, "peerDependencies": { - "@swc/helpers": ">=0.5.17" + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { - "@swc/helpers": { + "@types/react": { "optional": true } } }, - "node_modules/@swc/core-darwin-arm64": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.13.5.tgz", - "integrity": "sha512-lKNv7SujeXvKn16gvQqUQI5DdyY8v7xcoO3k06/FJbHJS90zEwZdQiMNRiqpYw/orU543tPaWgz7cIYWhbopiQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.13.5.tgz", - "integrity": "sha512-ILd38Fg/w23vHb0yVjlWvQBoE37ZJTdlLHa8LRCFDdX4WKfnVBiblsCU9ar4QTMNdeTBEX9iUF4IrbNWhaF1Ng==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@mui/styled-engine": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.3.tgz", + "integrity": "sha512-CmFxvRJIBCEaWdilhXMw/5wFJ1+FT9f3xt+m2pPXhHPeVIbBg9MnMvNSJjdALvnQJMPw8jLhrUtXmN7QAZV2fw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@emotion/cache": "^11.14.0", + "@emotion/serialize": "^1.3.3", + "@emotion/sheet": "^1.4.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, "engines": { - "node": ">=10" + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.13.5.tgz", - "integrity": "sha512-Q6eS3Pt8GLkXxqz9TAw+AUk9HpVJt8Uzm54MvPsqp2yuGmY0/sNaPPNVqctCX9fu/Nu8eaWUen0si6iEiCsazQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@mui/system": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.3.3.tgz", + "integrity": "sha512-Lqq3emZr5IzRLKaHPuMaLBDVaGvxoh6z7HMWd1RPKawBM5uMRaQ4ImsmmgXWtwJdfZux5eugfDhXJUo2mliS8Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@mui/private-theming": "^7.3.3", + "@mui/styled-engine": "^7.3.3", + "@mui/types": "^7.4.7", + "@mui/utils": "^7.3.3", + "clsx": "^2.1.1", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, "engines": { - "node": ">=10" + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.13.5.tgz", - "integrity": "sha512-aNDfeN+9af+y+M2MYfxCzCy/VDq7Z5YIbMqRI739o8Ganz6ST+27kjQFd8Y/57JN/hcnUEa9xqdS3XY7WaVtSw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" + "node_modules/@mui/types": { + "version": "7.4.7", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.7.tgz", + "integrity": "sha512-8vVje9rdEr1rY8oIkYgP+Su5Kwl6ik7O3jQ0wl78JGSmiZhRHV+vkjooGdKD8pbtZbutXFVTWQYshu2b3sG9zw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.13.5.tgz", - "integrity": "sha512-9+ZxFN5GJag4CnYnq6apKTnnezpfJhCumyz0504/JbHLo+Ue+ZtJnf3RhyA9W9TINtLE0bC4hKpWi8ZKoETyOQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], + "node_modules/@mui/utils": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.3.tgz", + "integrity": "sha512-kwNAUh7bLZ7mRz9JZ+6qfRnnxbE4Zuc+RzXnhSpRSxjTlSTj7b4JxRLXpG+MVtPVtqks5k/XC8No1Vs3x4Z2gg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@mui/types": "^7.4.7", + "@types/prop-types": "^15.7.15", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-is": "^19.1.1" + }, "engines": { - "node": ">=10" + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.13.5.tgz", - "integrity": "sha512-WD530qvHrki8Ywt/PloKUjaRKgstQqNGvmZl54g06kA+hqtSE2FTG9gngXr3UJxYu/cNAjJYiBifm7+w4nbHbA==", - "cpu": [ - "x64" - ], + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz", + "integrity": "sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==", "dev": true, - "license": "Apache-2.0 AND MIT", + "license": "MIT", "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" + "dependencies": { + "@emnapi/core": "^1.5.0", + "@emnapi/runtime": "^1.5.0", + "@tybys/wasm-util": "^0.10.1" } }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.13.5.tgz", - "integrity": "sha512-Luj8y4OFYx4DHNQTWjdIuKTq2f5k6uSXICqx+FSabnXptaOBAbJHNbHT/06JZh6NRUouaf0mYXN0mcsqvkhd7Q==", - "cpu": [ - "x64" - ], + "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": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.13.5.tgz", - "integrity": "sha512-cZ6UpumhF9SDJvv4DA2fo9WIzlNFuKSkZpZmPG1c+4PFSEMy5DFOjBSllCvnqihCabzXzpn6ykCwBmHpy31vQw==", - "cpu": [ - "arm64" - ], + "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": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.13.5.tgz", - "integrity": "sha512-C5Yi/xIikrFUzZcyGj9L3RpKljFvKiDMtyDzPKzlsDrKIw2EYY+bF88gB6oGY5RGmv4DAX8dbnpRAqgFD0FMEw==", - "cpu": [ - "ia32" - ], + "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": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.13.5", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.13.5.tgz", - "integrity": "sha512-YrKdMVxbYmlfybCSbRtrilc6UA8GF5aPmGKBdPvjrarvsmf4i7ZHGCEnLtfOMd3Lwbs2WUZq3WdMbozYeLU93Q==", - "cpu": [ - "x64" - ], + "node_modules/@oxc-project/runtime": { + "version": "0.92.0", + "resolved": "https://registry.npmjs.org/@oxc-project/runtime/-/runtime-0.92.0.tgz", + "integrity": "sha512-Z7x2dZOmznihvdvCvLKMl+nswtOSVxS2H2ocar+U9xx6iMfTp0VGIrX6a4xB1v80IwOPC7dT1LXIJrY70Xu3Jw==", "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], + "license": "MIT", "engines": { - "node": ">=10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@swc/counter": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", - "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/@swc/types": { - "version": "0.1.25", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.25.tgz", - "integrity": "sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==", + "node_modules/@oxc-project/types": { + "version": "0.93.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.93.0.tgz", + "integrity": "sha512-yNtwmWZIBtJsMr5TEfoZFDxIWV6OdScOpza/f5YxbqUMJk+j6QX3Cf3jgZShGEFYWQJ5j9mJ6jM0tZHu2J9Yrg==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@swc/counter": "^0.1.3" + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" } }, - "node_modules/@tailwindcss/node": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.14.tgz", - "integrity": "sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==", + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", "license": "MIT", - "dependencies": { - "@jridgewell/remapping": "^2.3.4", - "enhanced-resolve": "^5.18.3", - "jiti": "^2.6.0", - "lightningcss": "1.30.1", - "magic-string": "^0.30.19", - "source-map-js": "^1.2.1", - "tailwindcss": "4.1.14" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" } }, - "node_modules/@tailwindcss/oxide": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.14.tgz", - "integrity": "sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "detect-libc": "^2.0.4", - "tar": "^7.5.1" - }, - "engines": { - "node": ">= 10" - }, - "optionalDependencies": { - "@tailwindcss/oxide-android-arm64": "4.1.14", - "@tailwindcss/oxide-darwin-arm64": "4.1.14", - "@tailwindcss/oxide-darwin-x64": "4.1.14", - "@tailwindcss/oxide-freebsd-x64": "4.1.14", - "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.14", - "@tailwindcss/oxide-linux-arm64-gnu": "4.1.14", - "@tailwindcss/oxide-linux-arm64-musl": "4.1.14", - "@tailwindcss/oxide-linux-x64-gnu": "4.1.14", - "@tailwindcss/oxide-linux-x64-musl": "4.1.14", - "@tailwindcss/oxide-wasm32-wasi": "4.1.14", - "@tailwindcss/oxide-win32-arm64-msvc": "4.1.14", - "@tailwindcss/oxide-win32-x64-msvc": "4.1.14" - } - }, - "node_modules/@tailwindcss/oxide-android-arm64": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.14.tgz", - "integrity": "sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==", + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-beta.41.tgz", + "integrity": "sha512-Edflndd9lU7JVhVIvJlZhdCj5DkhYDJPIRn4Dx0RUdfc8asP9xHOI5gMd8MesDDx+BJpdIT/uAmVTearteU/mQ==", "cpu": [ "arm64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "android" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-darwin-arm64": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.14.tgz", - "integrity": "sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==", + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-beta.41.tgz", + "integrity": "sha512-XGCzqfjdk7550PlyZRTBKbypXrB7ATtXhw/+bjtxnklLQs0mKP/XkQVOKyn9qGKSlvH8I56JLYryVxl0PCvSNw==", "cpu": [ "arm64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-darwin-x64": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.14.tgz", - "integrity": "sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==", + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-beta.41.tgz", + "integrity": "sha512-Ho6lIwGJed98zub7n0xcRKuEtnZgbxevAmO4x3zn3C3N4GVXZD5xvCvTVxSMoeBJwTcIYzkVDRTIhylQNsTgLQ==", "cpu": [ "x64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-freebsd-x64": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.14.tgz", - "integrity": "sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==", + "node_modules/@rolldown/binding-freebsd-x64": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-beta.41.tgz", + "integrity": "sha512-ijAZETywvL+gACjbT4zBnCp5ez1JhTRs6OxRN4J+D6AzDRbU2zb01Esl51RP5/8ZOlvB37xxsRQ3X4YRVyYb3g==", "cpu": [ "x64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "freebsd" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.14.tgz", - "integrity": "sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==", + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-beta.41.tgz", + "integrity": "sha512-EgIOZt7UildXKFEFvaiLNBXm+4ggQyGe3E5Z1QP9uRcJJs9omihOnm897FwOBQdCuMvI49iBgjFrkhH+wMJ2MA==", "cpu": [ "arm" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.14.tgz", - "integrity": "sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==", + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-beta.41.tgz", + "integrity": "sha512-F8bUwJq8v/JAU8HSwgF4dztoqJ+FjdyjuvX4//3+Fbe2we9UktFeZ27U4lRMXF1vxWtdV4ey6oCSqI7yUrSEeg==", "cpu": [ "arm64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-linux-arm64-musl": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.14.tgz", - "integrity": "sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==", + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-beta.41.tgz", + "integrity": "sha512-MioXcCIX/wB1pBnBoJx8q4OGucUAfC1+/X1ilKFsjDK05VwbLZGRgOVD5OJJpUQPK86DhQciNBrfOKDiatxNmg==", "cpu": [ "arm64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-linux-x64-gnu": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.14.tgz", - "integrity": "sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==", + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-beta.41.tgz", + "integrity": "sha512-m66M61fizvRCwt5pOEiZQMiwBL9/y0bwU/+Kc4Ce/Pef6YfoEkR28y+DzN9rMdjo8Z28NXjsDPq9nH4mXnAP0g==", "cpu": [ "x64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-linux-x64-musl": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.14.tgz", - "integrity": "sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==", + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-beta.41.tgz", + "integrity": "sha512-yRxlSfBvWnnfrdtJfvi9lg8xfG5mPuyoSHm0X01oiE8ArmLRvoJGHUTJydCYz+wbK2esbq5J4B4Tq9WAsOlP1Q==", "cpu": [ "x64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-wasm32-wasi": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.14.tgz", - "integrity": "sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==", - "bundleDependencies": [ - "@napi-rs/wasm-runtime", - "@emnapi/core", - "@emnapi/runtime", - "@tybys/wasm-util", - "@emnapi/wasi-threads", - "tslib" + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-beta.41.tgz", + "integrity": "sha512-PHVxYhBpi8UViS3/hcvQQb9RFqCtvFmFU1PvUoTRiUdBtgHA6fONNHU4x796lgzNlVSD3DO/MZNk1s5/ozSMQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-wasm32-wasi": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-beta.41.tgz", + "integrity": "sha512-OAfcO37ME6GGWmj9qTaDT7jY4rM0T2z0/8ujdQIJQ2x2nl+ztO32EIwURfmXOK0U1tzkyuaKYvE34Pug/ucXlQ==", "cpu": [ "wasm32" ], + "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@emnapi/core": "^1.5.0", - "@emnapi/runtime": "^1.5.0", - "@emnapi/wasi-threads": "^1.1.0", - "@napi-rs/wasm-runtime": "^1.0.5", - "@tybys/wasm-util": "^0.10.1", - "tslib": "^2.4.0" + "@napi-rs/wasm-runtime": "^1.0.5" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.14.tgz", - "integrity": "sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==", + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-beta.41.tgz", + "integrity": "sha512-NIYGuCcuXaq5BC4Q3upbiMBvmZsTsEPG9k/8QKQdmrch+ocSy5Jv9tdpdmXJyighKqm182nh/zBt+tSJkYoNlg==", "cpu": [ "arm64" ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-win32-ia32-msvc": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.0.0-beta.41.tgz", + "integrity": "sha512-kANdsDbE5FkEOb5NrCGBJBCaZ2Sabp3D7d4PRqMYJqyLljwh9mDyYyYSv5+QNvdAmifj+f3lviNEUUuUZPEFPw==", + "cpu": [ + "ia32" + ], + "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/oxide-win32-x64-msvc": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.14.tgz", - "integrity": "sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==", + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-beta.41.tgz", + "integrity": "sha512-UlpxKmFdik0Y2VjZrgUCgoYArZJiZllXgIipdBRV1hw6uK45UbQabSTW6Kp6enuOu7vouYWftwhuxfpE8J2JAg==", "cpu": [ "x64" ], + "dev": true, "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { - "node": ">= 10" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@tailwindcss/vite": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.14.tgz", - "integrity": "sha512-BoFUoU0XqgCUS1UXWhmDJroKKhNXeDzD7/XwabjkDIAbMnc4ULn5e2FuEuBbhZ6ENZoSYzKlzvZ44Yr6EUDUSA==", + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.43", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.43.tgz", + "integrity": "sha512-5Uxg7fQUCmfhax7FJke2+8B6cqgeUJUD9o2uXIKXhD+mG0mL6NObmVoi9wXEU1tY89mZKgAYA6fTbftx3q2ZPQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "@tailwindcss/node": "4.1.14", - "@tailwindcss/oxide": "4.1.14", - "tailwindcss": "4.1.14" - }, - "peerDependencies": { - "vite": "^5.2.0 || ^6 || ^7" + "tslib": "^2.4.0" + } + }, + "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": { @@ -3060,12 +1623,13 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "24.7.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.0.tgz", - "integrity": "sha512-IbKooQVqUBrlzWTi79E8Fw78l8k1RNtlDDNWsFZs7XonuQSJ8oNYfEeclhprUldXISRMLzBpILuKgPlIxm+/Yw==", + "version": "24.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.1.tgz", + "integrity": "sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==", + "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~7.14.0" + "undici-types": "~7.16.0" } }, "node_modules/@types/parse-json": { @@ -3081,18 +1645,18 @@ "license": "MIT" }, "node_modules/@types/react": { - "version": "19.2.0", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.0.tgz", - "integrity": "sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==", + "version": "19.2.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.2.tgz", + "integrity": "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==", "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==", + "version": "19.2.2", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.2.tgz", + "integrity": "sha512-9KQPoO6mZCi7jcIStSnlOWn2nEF3mNmyr3rIAsGnAbQKYbRLyqmeSc39EVgtxXVia+LMT8j3knZLAZAh+xLmrw==", "dev": true, "license": "MIT", "peerDependencies": { @@ -3109,17 +1673,17 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.2.tgz", + "integrity": "sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==", "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", + "@typescript-eslint/scope-manager": "8.46.2", + "@typescript-eslint/type-utils": "8.46.2", + "@typescript-eslint/utils": "8.46.2", + "@typescript-eslint/visitor-keys": "8.46.2", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", @@ -3133,7 +1697,7 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.45.0", + "@typescript-eslint/parser": "^8.46.2", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } @@ -3149,16 +1713,16 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.46.2.tgz", + "integrity": "sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==", "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", + "@typescript-eslint/scope-manager": "8.46.2", + "@typescript-eslint/types": "8.46.2", + "@typescript-eslint/typescript-estree": "8.46.2", + "@typescript-eslint/visitor-keys": "8.46.2", "debug": "^4.3.4" }, "engines": { @@ -3174,14 +1738,14 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.46.2.tgz", + "integrity": "sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.45.0", - "@typescript-eslint/types": "^8.45.0", + "@typescript-eslint/tsconfig-utils": "^8.46.2", + "@typescript-eslint/types": "^8.46.2", "debug": "^4.3.4" }, "engines": { @@ -3196,14 +1760,14 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.2.tgz", + "integrity": "sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.45.0", - "@typescript-eslint/visitor-keys": "8.45.0" + "@typescript-eslint/types": "8.46.2", + "@typescript-eslint/visitor-keys": "8.46.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3214,9 +1778,9 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.2.tgz", + "integrity": "sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==", "dev": true, "license": "MIT", "engines": { @@ -3231,15 +1795,15 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.46.2.tgz", + "integrity": "sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.45.0", - "@typescript-eslint/typescript-estree": "8.45.0", - "@typescript-eslint/utils": "8.45.0", + "@typescript-eslint/types": "8.46.2", + "@typescript-eslint/typescript-estree": "8.46.2", + "@typescript-eslint/utils": "8.46.2", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, @@ -3256,9 +1820,9 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.2.tgz", + "integrity": "sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==", "dev": true, "license": "MIT", "engines": { @@ -3270,16 +1834,16 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.2.tgz", + "integrity": "sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==", "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", + "@typescript-eslint/project-service": "8.46.2", + "@typescript-eslint/tsconfig-utils": "8.46.2", + "@typescript-eslint/types": "8.46.2", + "@typescript-eslint/visitor-keys": "8.46.2", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", @@ -3324,17 +1888,30 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.2.tgz", + "integrity": "sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==", "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" + "@typescript-eslint/scope-manager": "8.46.2", + "@typescript-eslint/types": "8.46.2", + "@typescript-eslint/typescript-estree": "8.46.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3349,13 +1926,13 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.2.tgz", + "integrity": "sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.45.0", + "@typescript-eslint/types": "8.46.2", "eslint-visitor-keys": "^4.2.1" }, "engines": { @@ -3366,21 +1943,25 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@vitejs/plugin-react-swc": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-4.1.0.tgz", - "integrity": "sha512-Ff690TUck0Anlh7wdIcnsVMhofeEVgm44Y4OYdeeEEPSKyZHzDI9gfVBvySEhDfXtBp8tLCbfsVKPWEMEjq8/g==", + "node_modules/@vitejs/plugin-react": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.0.tgz", + "integrity": "sha512-4LuWrg7EKWgQaMJfnN+wcmbAW+VSsCmqGohftWjuct47bv8uE4n/nPpq4XjJPsxgq00GGG5J8dvBczp8uxScew==", "dev": true, "license": "MIT", "dependencies": { - "@rolldown/pluginutils": "1.0.0-beta.35", - "@swc/core": "^1.13.5" + "@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.43", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.18.0" }, "engines": { "node": "^20.19.0 || >=22.12.0" }, "peerDependencies": { - "vite": "^4 || ^5 || ^6 || ^7" + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" } }, "node_modules/acorn": { @@ -3423,19 +2004,11 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "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" @@ -3447,6 +2020,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/ansis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/ansis/-/ansis-4.2.0.tgz", + "integrity": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + } + }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -3486,6 +2069,16 @@ "npm": ">=6" } }, + "node_modules/babel-plugin-react-compiler": { + "version": "19.1.0-rc.3", + "resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-19.1.0-rc.3.tgz", + "integrity": "sha512-mjRn69WuTz4adL0bXGx8Rsyk1086zFJeKmes6aK0xPuK3aaXmDJdLHqwKKMrpm6KAI1MCoUK72d2VeqQbu8YIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.0" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -3493,6 +2086,16 @@ "dev": true, "license": "MIT" }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.20", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz", + "integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==", + "devOptional": 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", @@ -3517,6 +2120,40 @@ "node": ">=8" } }, + "node_modules/browserslist": { + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", + "devOptional": 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.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", @@ -3539,6 +2176,27 @@ "node": ">=6" } }, + "node_modules/caniuse-lite": { + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", + "devOptional": 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", @@ -3556,29 +2214,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/chownr": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", - "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/clsx": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", @@ -3604,6 +2239,7 @@ "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" @@ -3616,6 +2252,7 @@ "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/combined-stream": { @@ -3638,9 +2275,10 @@ "license": "MIT" }, "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "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==", + "devOptional": true, "license": "MIT" }, "node_modules/cookie": { @@ -3735,6 +2373,7 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, "license": "Apache-2.0", "engines": { "node": ">=8" @@ -3764,24 +2403,12 @@ "node": ">= 0.4" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/enhanced-resolve": { - "version": "5.18.3", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", - "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } + "node_modules/electron-to-chromium": { + "version": "1.5.240", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.240.tgz", + "integrity": "sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==", + "devOptional": true, + "license": "ISC" }, "node_modules/error-ex": { "version": "1.3.4", @@ -3837,67 +2464,11 @@ "node": ">= 0.4" } }, - "node_modules/esbuild": { - "version": "0.25.10", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz", - "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", - "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/esbuild-linux-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz", - "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "devOptional": true, "license": "MIT", "engines": { "node": ">=6" @@ -3916,25 +2487,24 @@ } }, "node_modules/eslint": { - "version": "9.37.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.37.0.tgz", - "integrity": "sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==", + "version": "9.38.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.38.0.tgz", + "integrity": "sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==", "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.4.0", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.1", "@eslint/core": "^0.16.0", "@eslint/eslintrc": "^3.3.1", - "@eslint/js": "9.37.0", + "@eslint/js": "9.38.0", "@eslint/plugin-kit": "^0.4.0", "@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", @@ -3990,9 +2560,9 @@ } }, "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==", + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.24.tgz", + "integrity": "sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==", "dev": true, "license": "MIT", "peerDependencies": { @@ -4154,18 +2724,6 @@ "reusify": "^1.0.4" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "license": "Apache-2.0", - "dependencies": { - "websocket-driver": ">=0.5.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/file-entry-cache": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", @@ -4215,42 +2773,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/firebase": { - "version": "11.10.0", - "resolved": "https://registry.npmjs.org/firebase/-/firebase-11.10.0.tgz", - "integrity": "sha512-nKBXoDzF0DrXTBQJlZa+sbC5By99ysYU1D6PkMRYknm0nCW7rJly47q492Ht7Ndz5MeYSBuboKuhS1e6mFC03w==", - "license": "Apache-2.0", - "dependencies": { - "@firebase/ai": "1.4.1", - "@firebase/analytics": "0.10.17", - "@firebase/analytics-compat": "0.2.23", - "@firebase/app": "0.13.2", - "@firebase/app-check": "0.10.1", - "@firebase/app-check-compat": "0.3.26", - "@firebase/app-compat": "0.4.2", - "@firebase/app-types": "0.9.3", - "@firebase/auth": "1.10.8", - "@firebase/auth-compat": "0.5.28", - "@firebase/data-connect": "0.3.10", - "@firebase/database": "1.0.20", - "@firebase/database-compat": "2.0.11", - "@firebase/firestore": "4.8.0", - "@firebase/firestore-compat": "0.3.53", - "@firebase/functions": "0.12.9", - "@firebase/functions-compat": "0.3.26", - "@firebase/installations": "0.6.18", - "@firebase/installations-compat": "0.2.18", - "@firebase/messaging": "0.12.22", - "@firebase/messaging-compat": "0.2.22", - "@firebase/performance": "0.7.7", - "@firebase/performance-compat": "0.2.20", - "@firebase/remote-config": "0.6.5", - "@firebase/remote-config-compat": "0.2.18", - "@firebase/storage": "0.13.14", - "@firebase/storage-compat": "0.3.24", - "@firebase/util": "1.12.1" - } - }, "node_modules/flat-cache": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", @@ -4299,46 +2821,20 @@ "license": "MIT", "dependencies": { "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "es-set-tostringtag": "^2.1.0", - "hasown": "^2.0.2", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/framer-motion": { - "version": "12.23.22", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.22.tgz", - "integrity": "sha512-ZgGvdxXCw55ZYvhoZChTlG6pUuehecgvEAJz0BHoC5pQKW1EC5xf1Mul1ej5+ai+pVY0pylyFfdl45qnM1/GsA==", - "license": "MIT", - "dependencies": { - "motion-dom": "^12.23.21", - "motion-utils": "^12.23.6", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "@emotion/is-prop-valid": "*", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" }, - "peerDependenciesMeta": { - "@emotion/is-prop-valid": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "engines": { + "node": ">= 6" } }, "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, @@ -4358,13 +2854,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "license": "ISC", + "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==", + "devOptional": true, + "license": "MIT", "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=6.9.0" } }, "node_modules/get-intrinsic": { @@ -4442,12 +2939,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "license": "ISC" - }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", @@ -4519,18 +3010,6 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "license": "MIT" }, - "node_modules/http-parser-js": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", - "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==", - "license": "MIT" - }, - "node_modules/idb": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", - "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", - "license": "ISC" - }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", @@ -4598,15 +3077,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -4637,15 +3107,6 @@ "dev": true, "license": "ISC" }, - "node_modules/jiti": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", - "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", - "license": "MIT", - "bin": { - "jiti": "lib/jiti-cli.mjs" - } - }, "node_modules/jotai": { "version": "2.15.0", "resolved": "https://registry.npmjs.org/jotai/-/jotai-2.15.0.tgz", @@ -4733,6 +3194,19 @@ "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==", + "devOptional": 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", @@ -4758,9 +3232,10 @@ } }, "node_modules/lightningcss": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz", - "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz", + "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==", + "dev": true, "license": "MPL-2.0", "dependencies": { "detect-libc": "^2.0.3" @@ -4773,25 +3248,48 @@ "url": "https://opencollective.com/parcel" }, "optionalDependencies": { - "lightningcss-darwin-arm64": "1.30.1", - "lightningcss-darwin-x64": "1.30.1", - "lightningcss-freebsd-x64": "1.30.1", - "lightningcss-linux-arm-gnueabihf": "1.30.1", - "lightningcss-linux-arm64-gnu": "1.30.1", - "lightningcss-linux-arm64-musl": "1.30.1", - "lightningcss-linux-x64-gnu": "1.30.1", - "lightningcss-linux-x64-musl": "1.30.1", - "lightningcss-win32-arm64-msvc": "1.30.1", - "lightningcss-win32-x64-msvc": "1.30.1" + "lightningcss-android-arm64": "1.30.2", + "lightningcss-darwin-arm64": "1.30.2", + "lightningcss-darwin-x64": "1.30.2", + "lightningcss-freebsd-x64": "1.30.2", + "lightningcss-linux-arm-gnueabihf": "1.30.2", + "lightningcss-linux-arm64-gnu": "1.30.2", + "lightningcss-linux-arm64-musl": "1.30.2", + "lightningcss-linux-x64-gnu": "1.30.2", + "lightningcss-linux-x64-musl": "1.30.2", + "lightningcss-win32-arm64-msvc": "1.30.2", + "lightningcss-win32-x64-msvc": "1.30.2" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz", + "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, "node_modules/lightningcss-darwin-arm64": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz", - "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz", + "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==", "cpu": [ "arm64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4806,12 +3304,13 @@ } }, "node_modules/lightningcss-darwin-x64": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz", - "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz", + "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==", "cpu": [ "x64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4826,12 +3325,13 @@ } }, "node_modules/lightningcss-freebsd-x64": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz", - "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz", + "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==", "cpu": [ "x64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4846,12 +3346,13 @@ } }, "node_modules/lightningcss-linux-arm-gnueabihf": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz", - "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz", + "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==", "cpu": [ "arm" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4866,12 +3367,13 @@ } }, "node_modules/lightningcss-linux-arm64-gnu": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz", - "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz", + "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==", "cpu": [ "arm64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4886,12 +3388,13 @@ } }, "node_modules/lightningcss-linux-arm64-musl": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz", - "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz", + "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==", "cpu": [ "arm64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4906,12 +3409,13 @@ } }, "node_modules/lightningcss-linux-x64-gnu": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz", - "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz", + "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==", "cpu": [ "x64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4926,12 +3430,13 @@ } }, "node_modules/lightningcss-linux-x64-musl": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz", - "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz", + "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==", "cpu": [ "x64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4946,12 +3451,13 @@ } }, "node_modules/lightningcss-win32-arm64-msvc": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz", - "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz", + "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==", "cpu": [ "arm64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -4966,12 +3472,13 @@ } }, "node_modules/lightningcss-win32-x64-msvc": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz", - "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==", + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz", + "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==", "cpu": [ "x64" ], + "dev": true, "license": "MPL-2.0", "optional": true, "os": [ @@ -5007,12 +3514,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "license": "MIT" - }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", @@ -5020,12 +3521,6 @@ "dev": true, "license": "MIT" }, - "node_modules/long": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", - "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", - "license": "Apache-2.0" - }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -5038,13 +3533,14 @@ "loose-envify": "cli.js" } }, - "node_modules/magic-string": { - "version": "0.30.19", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz", - "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==", - "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==", + "devOptional": true, + "license": "ISC", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.5" + "yallist": "^3.0.2" } }, "node_modules/math-intrinsics": { @@ -5114,42 +3610,6 @@ "node": "*" } }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/minizlib": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", - "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", - "license": "MIT", - "dependencies": { - "minipass": "^7.1.2" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/motion-dom": { - "version": "12.23.21", - "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.21.tgz", - "integrity": "sha512-5xDXx/AbhrfgsQmSE7YESMn4Dpo6x5/DTZ4Iyy4xqDvVHWvFVoV+V2Ri2S/ksx+D40wrZ7gPYiMWshkdoqNgNQ==", - "license": "MIT", - "dependencies": { - "motion-utils": "^12.23.6" - } - }, - "node_modules/motion-utils": { - "version": "12.23.6", - "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz", - "integrity": "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==", - "license": "MIT" - }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -5160,6 +3620,7 @@ "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", @@ -5181,6 +3642,13 @@ "dev": true, "license": "MIT" }, + "node_modules/node-releases": { + "version": "2.0.26", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.26.tgz", + "integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==", + "devOptional": true, + "license": "MIT" + }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -5328,6 +3796,7 @@ "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", @@ -5379,30 +3848,6 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "license": "MIT" }, - "node_modules/protobufjs": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz", - "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", - "hasInstallScript": true, - "license": "BSD-3-Clause", - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -5467,10 +3912,20 @@ "integrity": "sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==", "license": "MIT" }, + "node_modules/react-refresh": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", + "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/react-router": { - "version": "7.9.3", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.9.3.tgz", - "integrity": "sha512-4o2iWCFIwhI/eYAIL43+cjORXYn/aRQPgtFRRZb3VzoyQ5Uej0Bmqj7437L97N9NJW4wnicSwLOLS+yCXfAPgg==", + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.9.4.tgz", + "integrity": "sha512-SD3G8HKviFHg9xj7dNODUKDFgpG4xqD5nhyd0mYoB5iISepuZAvzSr8ywxgxKJ52yRzf/HWtVHc9AWwoTbljvA==", "license": "MIT", "dependencies": { "cookie": "^1.0.1", @@ -5490,12 +3945,12 @@ } }, "node_modules/react-router-dom": { - "version": "7.9.3", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.9.3.tgz", - "integrity": "sha512-1QSbA0TGGFKTAc/aWjpfW/zoEukYfU4dc1dLkT/vvf54JoGMkW+fNA+3oyo2gWVW1GM7BxjJVHz5GnPJv40rvg==", + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.9.4.tgz", + "integrity": "sha512-f30P6bIkmYvnHHa5Gcu65deIXoA2+r3Eb6PJIAddvsT9aGlchMatJ51GgpU470aSqRRbFX22T70yQNUGuW3DfA==", "license": "MIT", "dependencies": { - "react-router": "7.9.3" + "react-router": "7.9.4" }, "engines": { "node": ">=20.0.0" @@ -5521,22 +3976,23 @@ "react-dom": ">=16.6.0" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/react-virtuoso": { + "version": "4.14.1", + "resolved": "https://registry.npmjs.org/react-virtuoso/-/react-virtuoso-4.14.1.tgz", + "integrity": "sha512-NRUF1ak8lY+Tvc6WN9cce59gU+lilzVtOozP+pm9J7iHshLGGjsiAB4rB2qlBPHjFbcXOQpT+7womNHGDUql8w==", "license": "MIT", - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "react": ">=16 || >=17 || >= 18 || >= 19", + "react-dom": ">=16 || >=17 || >= 18 || >=19" } }, "node_modules/resolve": { - "version": "1.22.10", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", - "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "license": "MIT", "dependencies": { - "is-core-module": "^2.16.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -5570,46 +4026,46 @@ "node": ">=0.10.0" } }, - "node_modules/rollup": { - "version": "4.52.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz", - "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", + "node_modules/rolldown": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-beta.41.tgz", + "integrity": "sha512-U+NPR0Bkg3wm61dteD2L4nAM1U9dtaqVrpDXwC36IKRHpEO/Ubpid4Nijpa2imPchcVNHfxVFwSSMJdwdGFUbg==", + "dev": true, "license": "MIT", "dependencies": { - "@types/estree": "1.0.8" + "@oxc-project/types": "=0.93.0", + "@rolldown/pluginutils": "1.0.0-beta.41", + "ansis": "=4.2.0" }, "bin": { - "rollup": "dist/bin/rollup" + "rolldown": "bin/cli.mjs" }, "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" + "node": "^20.19.0 || >=22.12.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.52.4", - "@rollup/rollup-android-arm64": "4.52.4", - "@rollup/rollup-darwin-arm64": "4.52.4", - "@rollup/rollup-darwin-x64": "4.52.4", - "@rollup/rollup-freebsd-arm64": "4.52.4", - "@rollup/rollup-freebsd-x64": "4.52.4", - "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", - "@rollup/rollup-linux-arm-musleabihf": "4.52.4", - "@rollup/rollup-linux-arm64-gnu": "4.52.4", - "@rollup/rollup-linux-arm64-musl": "4.52.4", - "@rollup/rollup-linux-loong64-gnu": "4.52.4", - "@rollup/rollup-linux-ppc64-gnu": "4.52.4", - "@rollup/rollup-linux-riscv64-gnu": "4.52.4", - "@rollup/rollup-linux-riscv64-musl": "4.52.4", - "@rollup/rollup-linux-s390x-gnu": "4.52.4", - "@rollup/rollup-linux-x64-gnu": "4.52.4", - "@rollup/rollup-linux-x64-musl": "4.52.4", - "@rollup/rollup-openharmony-arm64": "4.52.4", - "@rollup/rollup-win32-arm64-msvc": "4.52.4", - "@rollup/rollup-win32-ia32-msvc": "4.52.4", - "@rollup/rollup-win32-x64-gnu": "4.52.4", - "@rollup/rollup-win32-x64-msvc": "4.52.4", - "fsevents": "~2.3.2" - } + "@rolldown/binding-android-arm64": "1.0.0-beta.41", + "@rolldown/binding-darwin-arm64": "1.0.0-beta.41", + "@rolldown/binding-darwin-x64": "1.0.0-beta.41", + "@rolldown/binding-freebsd-x64": "1.0.0-beta.41", + "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.41", + "@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.41", + "@rolldown/binding-linux-arm64-musl": "1.0.0-beta.41", + "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.41", + "@rolldown/binding-linux-x64-musl": "1.0.0-beta.41", + "@rolldown/binding-openharmony-arm64": "1.0.0-beta.41", + "@rolldown/binding-wasm32-wasi": "1.0.0-beta.41", + "@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.41", + "@rolldown/binding-win32-ia32-msvc": "1.0.0-beta.41", + "@rolldown/binding-win32-x64-msvc": "1.0.0-beta.41" + } + }, + "node_modules/rolldown/node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.41", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.41.tgz", + "integrity": "sha512-ycMEPrS3StOIeb87BT3/+bu+blEtyvwQ4zmo2IcJQy0Rd1DAAhKksA0iUZ3MYSpJtjlPhg0Eo6mvVS6ggPhRbw==", + "dev": true, + "license": "MIT" }, "node_modules/run-parallel": { "version": "1.2.0", @@ -5635,26 +4091,6 @@ "queue-microtask": "^1.2.2" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "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/scheduler": { "version": "0.27.0", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", @@ -5662,16 +4098,13 @@ "license": "MIT" }, "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, + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "devOptional": true, "license": "ISC", "bin": { "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, "node_modules/set-cookie-parser": { @@ -5716,37 +4149,12 @@ "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/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -5791,45 +4199,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tailwindcss": { - "version": "4.1.14", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.14.tgz", - "integrity": "sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==", - "license": "MIT" - }, - "node_modules/tapable": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", - "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/tar": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.1.tgz", - "integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==", - "license": "ISC", - "dependencies": { - "@isaacs/fs-minipass": "^4.0.0", - "chownr": "^3.0.0", - "minipass": "^7.1.2", - "minizlib": "^3.1.0", - "yallist": "^5.0.0" - }, - "engines": { - "node": ">=18" - } - }, "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", @@ -5846,6 +4220,7 @@ "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" @@ -5863,6 +4238,7 @@ "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" @@ -5901,7 +4277,9 @@ "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD" + "dev": true, + "license": "0BSD", + "optional": true }, "node_modules/type-check": { "version": "0.4.0", @@ -5917,9 +4295,9 @@ } }, "node_modules/typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "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": { @@ -5931,16 +4309,16 @@ } }, "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==", + "version": "8.46.2", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.46.2.tgz", + "integrity": "sha512-vbw8bOmiuYNdzzV3lsiWv6sRwjyuKJMQqWulBOU7M0RrxedXledX8G8kBbQeiOYDnTfiXz0Y4081E1QMNB6iQg==", "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" + "@typescript-eslint/eslint-plugin": "8.46.2", + "@typescript-eslint/parser": "8.46.2", + "@typescript-eslint/typescript-estree": "8.46.2", + "@typescript-eslint/utils": "8.46.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -5955,11 +4333,43 @@ } }, "node_modules/undici-types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.14.0.tgz", - "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, "license": "MIT" }, + "node_modules/update-browserslist-db": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "devOptional": 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", @@ -5971,16 +4381,19 @@ } }, "node_modules/vite": { - "version": "7.1.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.9.tgz", - "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==", + "name": "rolldown-vite", + "version": "7.1.14", + "resolved": "https://registry.npmjs.org/rolldown-vite/-/rolldown-vite-7.1.14.tgz", + "integrity": "sha512-eSiiRJmovt8qDJkGyZuLnbxAOAdie6NCmmd0NkTC0RJI9duiSBTfr8X2mBYJOUFzxQa2USaHmL99J9uMxkjCyw==", + "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.25.0", + "@oxc-project/runtime": "0.92.0", "fdir": "^6.5.0", + "lightningcss": "^1.30.1", "picomatch": "^4.0.3", "postcss": "^8.5.6", - "rollup": "^4.43.0", + "rolldown": "1.0.0-beta.41", "tinyglobby": "^0.2.15" }, "bin": { @@ -5997,9 +4410,9 @@ }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", + "esbuild": "^0.25.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", @@ -6012,13 +4425,13 @@ "@types/node": { "optional": true }, - "jiti": { + "esbuild": { "optional": true }, - "less": { + "jiti": { "optional": true }, - "lightningcss": { + "less": { "optional": true }, "sass": { @@ -6048,6 +4461,7 @@ "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" @@ -6065,6 +4479,7 @@ "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" @@ -6073,35 +4488,6 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/web-vitals": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-4.2.4.tgz", - "integrity": "sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==", - "license": "Apache-2.0" - }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "license": "Apache-2.0", - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "license": "Apache-2.0", - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6128,67 +4514,12 @@ "node": ">=0.10.0" } }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/yallist": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", - "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "license": "ISC", - "engines": { - "node": ">=12" - } + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "devOptional": true, + "license": "ISC" }, "node_modules/yocto-queue": { "version": "0.1.0", diff --git a/client/package.json b/client/package.json index b4267202e..4a5e95185 100644 --- a/client/package.json +++ b/client/package.json @@ -4,7 +4,7 @@ "author": "Avdhesh Varshney", "license": "ISC", "description": "Code A2Z is a collaborative blogging platform for developers and writers to create, manage, and share projects with markdown support, customizable templates, and community contributions.", - "version": "2.1.1", + "version": "2.12.1", "keywords": [ "code-a2z", "code a2z", @@ -21,47 +21,48 @@ "preview": "vite preview" }, "dependencies": { - "@editorjs/attaches": "^1.3.0", + "@editorjs/attaches": "^1.3.2", "@editorjs/checklist": "^1.6.0", "@editorjs/code": "^2.9.3", "@editorjs/delimiter": "^1.4.2", - "@editorjs/editorjs": "^2.30.8", + "@editorjs/editorjs": "^2.31.0", "@editorjs/embed": "^2.7.6", "@editorjs/header": "^2.8.8", - "@editorjs/image": "^2.10.2", - "@editorjs/inline-code": "^1.5.1", + "@editorjs/image": "^2.10.3", + "@editorjs/inline-code": "^1.5.2", "@editorjs/link": "^2.6.2", - "@editorjs/list": "^2.0.6", + "@editorjs/list": "^2.0.8", "@editorjs/marker": "^1.4.0", "@editorjs/quote": "^2.7.6", - "@editorjs/table": "^2.4.3", + "@editorjs/table": "^2.4.5", "@editorjs/warning": "^1.4.1", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", - "@flaticon/flaticon-uicons": "^3.3.1", - "@mui/icons-material": "^7.2.0", - "@mui/material": "^7.2.0", - "@tailwindcss/vite": "^4.1.12", - "axios": "^1.8.1", - "firebase": "^11.4.0", - "framer-motion": "^12.4.7", - "jotai": "^2.13.1", + "@mui/icons-material": "^7.3.4", + "@mui/material": "^7.3.4", + "axios": "^1.12.2", + "jotai": "^2.15.0", "react": "^19.1.1", "react-dom": "^19.1.1", - "react-router-dom": "^7.2.0", - "tailwindcss": "^4.1.12" + "react-router-dom": "^7.9.4", + "react-virtuoso": "^4.14.1" }, "devDependencies": { - "@eslint/js": "^9.33.0", - "@types/react": "^19.1.10", - "@types/react-dom": "^19.1.7", - "@vitejs/plugin-react-swc": "^4.0.0", - "eslint": "^9.33.0", + "@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", + "babel-plugin-react-compiler": "^19.1.0-rc.3", + "eslint": "^9.36.0", "eslint-plugin-react-hooks": "^5.2.0", - "eslint-plugin-react-refresh": "^0.4.20", - "globals": "^16.3.0", - "typescript": "~5.8.3", - "typescript-eslint": "^8.39.1", - "vite": "^7.1.2" + "eslint-plugin-react-refresh": "^0.4.22", + "globals": "^16.4.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.45.0", + "vite": "npm:rolldown-vite@7.1.14" + }, + "overrides": { + "vite": "npm:rolldown-vite@7.1.14" } } diff --git a/client/src/App.tsx b/client/src/App.tsx index 2e40a03f6..b82e81a15 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -1,64 +1,58 @@ +import { BrowserRouter, Routes, Route } from 'react-router-dom'; +import MuiThemeProvider from './shared/components/molecules/theme'; +import A2ZNotifications from './shared/components/molecules/notification'; +import Navbar from './shared/components/organisms/navbar'; +import { setupTokenRefresh } from './shared/utils/api-interceptor'; import { useEffect } from 'react'; -import { Route, Routes } from 'react-router-dom'; -import { useAtom } from 'jotai'; -import { UserAtom } from './shared/states/user'; -import Navbar from './shared/components/molecules/navbar'; -import CANotifications from './shared/components/molecules/notifications'; import Home from './modules/home'; import UserAuthForm from './modules/user-auth-form'; +import Editor from './modules/editor'; import PageNotFound from './modules/404'; import Search from './modules/search'; import Profile from './modules/profile'; import Project from './modules/project'; -import Editor from './modules/editor'; -import Sidebar from './shared/components/molecules/sidebar'; -import ChangePassword from './modules/user-auth-form/change-password'; -import EditProfile from './modules/profile/edit-profile'; -import ManageProjects from './modules/project/manage-projects'; -import Notifications from './modules/notification'; +import Sidebar from './shared/components/organisms/sidebar'; +// import ChangePassword from "./modules/change-password"; +// import ManageProjects from "./modules/manage-projects"; +// import EditProfile from "./modules/edit-profile"; +// import Notifications from "./modules/notification"; function App() { - const [userAuth, setUserAuth] = useAtom(UserAtom); - useEffect(() => { - // Check if user is authenticated - if (userAuth) { - // User is authenticated, you can fetch user data or perform other actions - } else { - // User is not authenticated, redirect to login or show appropriate UI - setUserAuth(prev => ({ ...prev, access_token: '' })); - } - }, [userAuth, setUserAuth]); + setupTokenRefresh(); + }, []); return ( - <> - - }> - } /> - } /> - } /> - } /> - } /> - } /> - - }> - } /> - } /> - - }> - } /> - } /> + + + + }> + } /> + } /> + } /> + } /> + } /> + } /> + + }> + {/* } /> */} + {/* } /> */} + + }> + {/* } /> */} + {/* } /> */} + - - } /> - } /> + } /> + } /> - } /> - + } /> + - - + + + ); } diff --git a/client/src/config/env.ts b/client/src/config/env.ts index 66f3bf603..d98aa344c 100644 --- a/client/src/config/env.ts +++ b/client/src/config/env.ts @@ -1,3 +1,12 @@ // Load environment variables from .env file export const VITE_SERVER_DOMAIN = - import.meta.env.VITE_SERVER_DOMAIN || 'https://code-a2z-server.vercel.app'; + import.meta.env.VITE_SERVER_DOMAIN || 'https://code-a2z.onrender.com'; + +// Token configuration +export const TOKEN_CONFIG = { + ACCESS_TOKEN_DURATION: import.meta.env.VITE_ACCESS_TOKEN_DURATION || 15, // minutes + REFRESH_TOKEN_DURATION: import.meta.env.VITE_REFRESH_TOKEN_DURATION || 7, // days + ACCESS_TOKEN_NAME: import.meta.env.VITE_ACCESS_TOKEN_NAME || 'access_token', + REFRESH_TOKEN_NAME: + import.meta.env.VITE_REFRESH_TOKEN_NAME || 'refresh_token', +} as const; diff --git a/client/src/index.css b/client/src/index.css deleted file mode 100644 index 21ab4e2fd..000000000 --- a/client/src/index.css +++ /dev/null @@ -1,153 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Gelasio&family=Inter:wght@400;500&display=swap'); -@import '@flaticon/flaticon-uicons/css/all/all'; -@import 'tailwindcss'; -@custom-variant dark (&:where(.dark, .dark *)); - -.font-gelasio { - font-family: 'Gelasio', serif; -} - -:root { - /* Light Theme */ - --bg-color: #fafafa; - --bg-secondary-color: #f0f0f0; - --text-color: #111111; - --text-secondary-color: #444444; - --accent-color: #3b82f6; - --border-color: #e5e7eb; - --card-bg-color: #ffffff; - --link-color: #2563eb; -} - -[data-theme='dark'] { - --bg-color: #09090b; - --bg-secondary-color: #1f1f23; - --text-color: #ededed; - --text-secondary-color: #a3a3a3; - --accent-color: #60a5fa; - --border-color: #27272a; - --card-bg-color: #18181b; - --link-color: #3b82f6; -} - -@layer components { - * { - @apply m-0 p-0 box-border text-base duration-100; - } - - html { - @apply overflow-x-hidden; - } - - body { - @apply font-normal text-[#111111] dark:text-[#ededed] bg-[#fafafa] dark:bg-[#09090b] transition-colors duration-300; - } - - i { - @apply mt-0.5; - } - - section { - @apply py-4 px-[5vw] md:px-[7vw] lg:px-[10vw]; - } - - img { - @apply w-full h-full object-cover; - } - - .navbar { - @apply z-10 sticky top-0 flex items-center gap-12 w-full px-[5vw] py-5 h-[80px] border-b border-[#e5e7eb] dark:border-[#27272a] bg-[#fafafa] dark:bg-[#09090b]; - } - - .h-cover { - @apply min-h-[calc(100vh-80px)]; - } - - .center { - @apply block mx-auto; - } - - .btn-dark { - @apply whitespace-nowrap rounded-full bg-[#1f1f1f] dark:bg-[#e4e4e7] text-[#f1f1f1] dark:text-[#1a1a1a] hover:opacity-80 py-3 px-6 text-xl capitalize; - } - - .btn-light { - @apply whitespace-nowrap rounded-full bg-[#f4f4f5] dark:bg-[#1a1a1d] text-[#1a1a1a] dark:text-[#f4f4f5] hover:opacity-80 py-3 px-6 text-xl capitalize; - } - - .input-box { - @apply w-[100%] rounded-md p-4 bg-[#fafafa] dark:bg-[#09090b] pl-12 border border-[#e5e7eb] dark:border-[#27272a] focus:bg-transparent placeholder:text-black dark:placeholder:text-white; - } - - input:disabled, - input:disabled ~ .input-icon { - @apply opacity-50 dark:opacity-100; - } - - .input-icon { - @apply absolute left-4 top-1/2 -translate-y-1/2; - } - - .link { - @apply text-[#444444] dark:text-[#a3a3a3] hover:text-[#111111] hover:bg-[#ededed] p-3 px-4 block opacity-75; - } - - .hide { - @apply opacity-0 pointer-events-none duration-100; - } - - .show { - @apply opacity-100 pointer-events-auto; - } - - .sidebar-link { - @apply flex gap-4 items-center py-5 text-[#444444] dark:text-[#a3a3a3] hover:text-[#111111] hover:dark:text-[#ededed]; - } - - .sidebar-link.active { - @apply text-[#111111] dark:text-[#ededed] border-r-2 border-[#e5e7eb] dark:border-[#27272a] pl-6 bg-[#f0f0f0] dark:bg-[#1f1f23] -ml-6 md:rounded-tl-lg md:rounded-bl-lg max-md:border-none; - } - - #textEditor h2, - h2 { - @apply text-4xl leading-normal font-bold max-md:text-3xl max-md:leading-snug; - } - - #textEditor h3, - h3 { - @apply text-3xl leading-loose max-md:text-2xl max-md:leading-normal; - } - - #textEditor *, - .project-page-content * { - @apply text-xl leading-10 md:text-2xl; - } - - #textEditor a, - .project-page-content a { - @apply text-[#111111] dark:text-[#ededed] underline hover:opacity-50; - } - - .tag { - @apply p-2 bg-[#2a2a2e] dark:bg-[#d4d4d4] text-[#ededed] dark:text-[#111111] rounded-full px-4 capitalize; - } - - .project-title { - @apply text-2xl font-medium leading-7 line-clamp-3 sm:line-clamp-2; - } - - .project-index { - @apply text-4xl sm:text-3xl lg:text-5xl font-bold text-[#111111] dark:text-[#ededed] leading-none; - } -} - -.ce-block__content, -.ce-toolbar__content { - max-width: 900px; -} - -.cdx-settings-button[data-tune='withBorder'], -.cdx-settings-button[data-tune='withBackground'], -.cdx-settings-button[data-tune='stretched'] { - display: none; -} diff --git a/client/src/infra/rest/apis/auth/index.ts b/client/src/infra/rest/apis/auth/index.ts index a954738bf..f5c473d29 100644 --- a/client/src/infra/rest/apis/auth/index.ts +++ b/client/src/infra/rest/apis/auth/index.ts @@ -4,23 +4,24 @@ import { ApiResponse, BaseApiResponse } from '../../typings'; import { signUpPayload, loginPayload, changePasswordPayload } from './typing'; export const signUp = async (signUpPayload: signUpPayload) => { - return post>( - '/api/auth/signup', - false, - signUpPayload - ); + return post< + signUpPayload, + ApiResponse<{ user: USER_DB_STATE; access_token: string }> + >('/api/auth/signup', false, signUpPayload); }; export const login = async (loginPayload: loginPayload) => { - return post>( - '/api/auth/login', - false, - loginPayload - ); + return post< + loginPayload, + ApiResponse<{ user: USER_DB_STATE; access_token: string }> + >('/api/auth/login', false, loginPayload); }; export const refreshToken = async () => { - return post(`/api/auth/refresh`, true); + return post>( + `/api/auth/refresh`, + true + ); }; export const logout = async () => { diff --git a/client/src/infra/rest/apis/collection/typing.ts b/client/src/infra/rest/apis/collection/typing.ts index 2edac18eb..9b4a13ce5 100644 --- a/client/src/infra/rest/apis/collection/typing.ts +++ b/client/src/infra/rest/apis/collection/typing.ts @@ -1,8 +1,5 @@ -import { - PROJECT_ACTIVITY, - PROJECT_CONTENT_BLOCKS, - USER_PERSONAL_LIMITED_INFO, -} from '../../typings'; +import { OutputData } from '@editorjs/editorjs'; +import { PROJECT_ACTIVITY, USER_PERSONAL_LIMITED_INFO } from '../../typings'; export interface CreateCollectionPayload { collection_name: string; @@ -43,7 +40,7 @@ export interface SortProjectResponse { repository_url: string; live_url: string | null; tags: Array; - content_blocks: Array; + content_blocks: Array; user_id: { _id: string; personal_info: USER_PERSONAL_LIMITED_INFO; diff --git a/client/src/infra/rest/apis/project/index.ts b/client/src/infra/rest/apis/project/index.ts index 96c3ab5a1..d530a98f1 100644 --- a/client/src/infra/rest/apis/project/index.ts +++ b/client/src/infra/rest/apis/project/index.ts @@ -2,13 +2,13 @@ import { del, get, post } from '../..'; import { ApiResponse, BaseApiResponse } from '../../typings'; import { createProjectPayload, - getAllProjectsResponse, getTrendingProjectsResponse, PROJECT_OPEN_MODE, ProjectData, searchProjectsPayload, userProjectsPayload, userProjectsResponse, + getAllProjectsResponse, } from './typing'; export const createProject = async (projectData: createProjectPayload) => { @@ -40,22 +40,23 @@ export const getTrendingProjects = async () => { export const searchProjects = async ({ tag, query, - author, + user_id, page, limit, + rmv_project_by_id, }: searchProjectsPayload) => { return get>( - `/api/project/search?tag=${tag}&query=${query}&author=${author}&page=${page}&limit=${limit}` + `/api/project/search?tag=${tag}&query=${query}&user_id=${user_id}&page=${page}&limit=${limit}&rmv_project_by_id=${rmv_project_by_id}` ); }; export const searchProjectsCount = async ({ tag, query, - author, + user_id, }: searchProjectsPayload) => { return get>( - `/api/project/search/count?tag=${tag}&query=${query}&author=${author}` + `/api/project/search/count?tag=${tag}&query=${query}&user_id=${user_id}` ); }; diff --git a/client/src/infra/rest/apis/project/typing.ts b/client/src/infra/rest/apis/project/typing.ts index 0d1d0eba6..0ad1a39ce 100644 --- a/client/src/infra/rest/apis/project/typing.ts +++ b/client/src/infra/rest/apis/project/typing.ts @@ -1,8 +1,5 @@ -import { - PROJECT_ACTIVITY, - PROJECT_CONTENT_BLOCKS, - USER_PERSONAL_LIMITED_INFO, -} from '../../typings'; +import { OutputData } from '@editorjs/editorjs'; +import { PROJECT_ACTIVITY, USER_PERSONAL_LIMITED_INFO } from '../../typings'; export interface createProjectPayload { _id?: string; @@ -12,7 +9,7 @@ export interface createProjectPayload { live_url?: string; repository_url?: string; tags: Array; - content_blocks?: PROJECT_CONTENT_BLOCKS; + content_blocks?: OutputData | Array; is_draft: boolean; } @@ -37,9 +34,10 @@ export interface getTrendingProjectsResponse { export interface searchProjectsPayload { tag?: string; query?: string; - author?: string; + user_id?: string; page?: number; limit?: number; + rmv_project_by_id?: string; } export enum PROJECT_OPEN_MODE { @@ -55,7 +53,7 @@ export interface ProjectData { repository_url: string; live_url: string | null; tags: Array; - content_blocks: Array; + content_blocks: Array; user_id: { _id: string; personal_info: USER_PERSONAL_LIMITED_INFO; diff --git a/client/src/infra/rest/apis/subscriber/index.ts b/client/src/infra/rest/apis/subscriber/index.ts index ab4f571a7..6ce559850 100644 --- a/client/src/infra/rest/apis/subscriber/index.ts +++ b/client/src/infra/rest/apis/subscriber/index.ts @@ -2,7 +2,7 @@ import { get, patch, post } from '../..'; import { ApiResponse, BaseApiResponse } from '../../typings'; import { getAllSubscribersResponse } from './typing'; -export const subscribeAPI = async (email: string) => { +export const subscribeUser = async (email: string) => { return post<{ email: string }, BaseApiResponse>( `/api/subscriber/subscribe`, false, @@ -10,7 +10,7 @@ export const subscribeAPI = async (email: string) => { ); }; -export const unsubscribeAPI = async (email: string) => { +export const unsubscribeUser = async (email: string) => { return patch<{ email: string }, BaseApiResponse>( `/api/subscriber/unsubscribe`, true, diff --git a/client/src/infra/rest/apis/user/index.ts b/client/src/infra/rest/apis/user/index.ts index 39d85e4d3..3423177e9 100644 --- a/client/src/infra/rest/apis/user/index.ts +++ b/client/src/infra/rest/apis/user/index.ts @@ -6,9 +6,9 @@ import { updateProfilePayload, } from './typing'; -export const searchUser = async (query: string) => { +export const searchUser = async (query: string, page: number) => { return get>( - `/api/user/search?query=${query}` + `/api/user/search?query=${query}&page=${page}` ); }; diff --git a/client/src/infra/rest/index.ts b/client/src/infra/rest/index.ts index ef40da870..c74717f64 100644 --- a/client/src/infra/rest/index.ts +++ b/client/src/infra/rest/index.ts @@ -1,5 +1,6 @@ import axios from 'axios'; import { VITE_SERVER_DOMAIN } from '../../config/env'; +import { getAccessToken } from '../../shared/utils/local'; export enum Methods { GET = 'GET', @@ -17,11 +18,7 @@ export async function makeRequest( hasFullURL?: boolean, headers?: Record ): Promise { - let token: string | null = null; - - if (isAuthRequired) { - token = localStorage.getItem('token'); - } + const token = getAccessToken(); if (!hasFullURL) { url = VITE_SERVER_DOMAIN + url; } @@ -30,6 +27,7 @@ export async function makeRequest( url, method, data, + withCredentials: isAuthRequired, headers: { Authorization: token ? `Bearer ${token}` : undefined, ...headers, diff --git a/client/src/infra/rest/typings/index.ts b/client/src/infra/rest/typings/index.ts index dfce8fcca..01a0b3f5a 100644 --- a/client/src/infra/rest/typings/index.ts +++ b/client/src/infra/rest/typings/index.ts @@ -16,3 +16,9 @@ export interface BaseApiResponse { export interface ApiResponse extends BaseApiResponse { data?: T; } + +export interface ErrorResponse { + response: { + data: BaseApiResponse; + }; +} diff --git a/client/src/infra/rest/typings/project.ts b/client/src/infra/rest/typings/project.ts index 310e93846..8048fbae8 100644 --- a/client/src/infra/rest/typings/project.ts +++ b/client/src/infra/rest/typings/project.ts @@ -1,113 +1,4 @@ -export enum PROJECT_CONTENT_BLOCKS_TYPES { - PARAGRAPH = 'paragraph', - HEADER = 'header', - LIST = 'list', - CODE = 'code', - QUOTE = 'quote', - DELIMITER = 'delimiter', - IMAGE = 'image', - TABLE = 'table', - RAW = 'raw', - EMBED = 'embed', - WARNING = 'warning', - CHECKLIST = 'checklist', -} - -export interface PROJECT_CONTENT_BLOCKS { - time?: number; - version?: string; - blocks: Array<{ - id?: string; - type: PROJECT_CONTENT_BLOCKS_TYPES; - data: - | ParagraphBlockData - | HeaderBlockData - | ListBlockData - | CodeBlockData - | QuoteBlockData - | DelimiterBlockData - | ImageBlockData - | TableBlockData - | RawBlockData - | EmbedBlockData - | WarningBlockData - | ChecklistBlockData; - }>; -} - -export interface ParagraphBlockData { - text: string; -} - -export interface HeaderBlockData { - text: string; - level: 1 | 2 | 3 | 4 | 5 | 6; -} - -export enum LIST_STYLE { - ORDERED = 'ordered', - UNORDERED = 'unordered', -} - -export interface ListBlockData { - style: LIST_STYLE; - items: Array; -} - -export interface CodeBlockData { - code: string; - language?: string; -} - -export interface QuoteBlockData { - text: string; - caption?: string; - alignment?: 'left' | 'center'; -} - -export interface DelimiterBlockData { - [key: string]: never; -} - -export interface ImageBlockData { - file: { - url: string; - }; - caption?: string; - withBorder?: boolean; - withBackground?: boolean; - stretched?: boolean; -} - -export interface TableBlockData { - withHeadings?: boolean; - content: Array>; -} - -export interface RawBlockData { - html: string; -} - -export interface EmbedBlockData { - service: string; - source: string; - embed: string; - width?: number; - height?: number; - caption?: string; -} - -export interface WarningBlockData { - title: string; - message: string; -} - -export interface ChecklistBlockData { - items: Array<{ - text: string; - checked: boolean; - }>; -} +import { OutputData } from '@editorjs/editorjs'; export interface PROJECT_ACTIVITY { total_likes: number; @@ -124,7 +15,7 @@ export interface PROJECT_DB_STATE { repository_url: string; live_url: string | null; tags: Array; - content_blocks: Array; + content_blocks: Array | OutputData; user_id: string; activity: PROJECT_ACTIVITY; is_draft: boolean; diff --git a/client/src/infra/states/auth.ts b/client/src/infra/states/auth.ts new file mode 100644 index 000000000..869666603 --- /dev/null +++ b/client/src/infra/states/auth.ts @@ -0,0 +1,3 @@ +import { atom } from 'jotai'; + +export const TokenAtom = atom(null); diff --git a/client/src/infra/states/user.ts b/client/src/infra/states/user.ts new file mode 100644 index 000000000..8ce80e0cb --- /dev/null +++ b/client/src/infra/states/user.ts @@ -0,0 +1,4 @@ +import { atom } from 'jotai'; +import { USER_DB_STATE } from '../rest/typings'; + +export const UserAtom = atom(null); diff --git a/client/src/vite-env.d.ts b/client/src/infra/types/vite-env.d.ts similarity index 100% rename from client/src/vite-env.d.ts rename to client/src/infra/types/vite-env.d.ts diff --git a/client/src/main.tsx b/client/src/main.tsx index 9b2ea5609..b31fb6bc3 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -1,16 +1,9 @@ import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; -import { BrowserRouter } from 'react-router-dom'; -import './index.css'; -import App from './App.tsx'; -import MuiThemeProvider from './shared/theme/MuiThemeProvider'; +import App from './App'; createRoot(document.getElementById('root')!).render( - - - - - + ); diff --git a/client/src/modules/404/index.tsx b/client/src/modules/404/index.tsx index 7b4901d3c..e82be034e 100644 --- a/client/src/modules/404/index.tsx +++ b/client/src/modules/404/index.tsx @@ -1,35 +1,92 @@ +import { Box, Typography, Link as MUILink, useTheme } from '@mui/material'; import { Link } from 'react-router-dom'; const PageNotFound = () => { + const theme = useTheme(); + return ( -
- + -

+ + Page not found -

-

+ + + The page you are looking for does not exist. Head back to the{' '} - + home page - + . -

+ -
- + -

+ Read millions of project scripts around the world. -

-
-
+ + + ); }; diff --git a/client/src/modules/change-password/index.tsx b/client/src/modules/change-password/index.tsx new file mode 100644 index 000000000..cce104472 --- /dev/null +++ b/client/src/modules/change-password/index.tsx @@ -0,0 +1,122 @@ +import { useRef } from 'react'; +import { useNotifications } from '../../shared/hooks/use-notification'; +import { passwordRegex } from '../../shared/utils/regex'; +import { changePassword } from '../../infra/rest/apis/auth'; +import InputBox from '../../shared/components/atoms/input-box'; +import { Box, Button, Typography, Stack } from '@mui/material'; +import LockOutlinedIcon from '@mui/icons-material/LockOutlined'; +import VpnKeyOutlinedIcon from '@mui/icons-material/VpnKeyOutlined'; + +const ChangePassword = () => { + const changePasswordForm = useRef(null); + const { addNotification } = useNotifications(); + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + + if (!changePasswordForm.current) return; + const form = new FormData(changePasswordForm.current); + const formData: { [key: string]: string } = {}; + + for (const [key, value] of form.entries()) { + formData[key] = value as string; + } + + const { currentPassword, newPassword } = formData; + + if (!currentPassword.length || !newPassword.length) { + addNotification({ + message: 'Please fill all the fields', + type: 'error', + }); + return; + } + + if ( + !passwordRegex.test(currentPassword) || + !passwordRegex.test(newPassword) + ) { + addNotification({ + message: + 'Password should be atleast 6 characters long and contain atleast one uppercase letter, one lowercase letter and one number', + type: 'error', + }); + return; + } + + e.currentTarget.setAttribute('disabled', 'true'); + + changePassword({ + current_password: currentPassword, + new_password: newPassword, + }) + .then(() => { + e.currentTarget.removeAttribute('disabled'); + return addNotification({ + message: 'Password Updated!', + type: 'success', + }); + }) + .catch(({ response }) => { + e.currentTarget.removeAttribute('disabled'); + return addNotification({ + message: response.data.error, + type: 'error', + }); + }); + }; + + return ( + + + Change Password + + + + } + /> + } + /> + + + + ); +}; + +export default ChangePassword; diff --git a/client/src/modules/profile/constants/index.ts b/client/src/modules/edit-profile/constants/index.ts similarity index 100% rename from client/src/modules/profile/constants/index.ts rename to client/src/modules/edit-profile/constants/index.ts diff --git a/client/src/modules/profile/edit-profile/index.tsx b/client/src/modules/edit-profile/index.tsx similarity index 90% rename from client/src/modules/profile/edit-profile/index.tsx rename to client/src/modules/edit-profile/index.tsx index c6046224f..9d5ab6b6a 100644 --- a/client/src/modules/profile/edit-profile/index.tsx +++ b/client/src/modules/edit-profile/index.tsx @@ -1,20 +1,16 @@ import { useEffect, useRef, useState } from 'react'; -import AnimationWrapper from '../../../shared/components/atoms/page-animation'; -import Loader from '../../../shared/components/atoms/loader'; -import InputBox from '../../../shared/components/atoms/input-box'; -import { uploadImage } from '../../../shared/hooks/upload-image'; -import { storeInSession } from '../../../shared/utils/session'; import { useAtom } from 'jotai'; -import { UserAtom } from '../../../shared/states/user'; -import { useNotifications } from '../../../shared/hooks/use-notification'; -import { ProfileAtom } from '../../../shared/states/profile'; -import { bioLimit } from '../constants'; -import { getUserProfile, updateProfile, uploadProfileImage } from '../requests'; +import { UserAtom } from '../../infra/states/user'; +import { ProfileAtom } from '../profile/states'; +import { useNotifications } from '../../shared/hooks/use-notification'; +import { bioLimit } from './constants'; +import { useAuth } from '../../shared/hooks/use-auth'; const EditProfile = () => { const [user, setUser] = useAtom(UserAtom); const [profile, setProfile] = useAtom(ProfileAtom); const { addNotification } = useNotifications(); + const { isAuthenticated } = useAuth(); const profileImgEle = useRef(null); const editProfileForm = useRef(null); @@ -35,8 +31,8 @@ const EditProfile = () => { } = profile; useEffect(() => { - if (user.access_token) { - getUserProfile(user.username) + if (isAuthenticated()) { + getUserProfile(user?.personal_info.username) .then(response => { setProfile(response); setLoading(false); @@ -46,7 +42,7 @@ const EditProfile = () => { setLoading(false); }); } - }, [user.access_token, user.username, setProfile]); + }, [user?.personal_info.username, setProfile, isAuthenticated]); const handleCharacterChange = (e: React.ChangeEvent) => { setCharactersLeft(bioLimit - e.currentTarget.value.length); @@ -168,7 +164,7 @@ const EditProfile = () => { }; return ( - + <> {loading ? ( ) : ( @@ -284,7 +280,7 @@ const EditProfile = () => { )} - + ); }; diff --git a/client/src/modules/editor/components/editor-navbar.tsx b/client/src/modules/editor/components/editor-navbar.tsx new file mode 100644 index 000000000..6e561f90d --- /dev/null +++ b/client/src/modules/editor/components/editor-navbar.tsx @@ -0,0 +1,81 @@ +import { AppBar, Toolbar, Box } from '@mui/material'; +import { Link } from 'react-router-dom'; +import { useTheme } from '@mui/material/styles'; +import ArrowBackIcon from '@mui/icons-material/ArrowBack'; +import A2ZTypography from '../../../shared/components/atoms/typography'; +import A2ZButton from '../../../shared/components/atoms/button'; + +const EditorNavbar = ({ + title, + onSaveDraft, + onPublish, +}: { + title?: string; + onSaveDraft: () => void; + onPublish: () => void; +}) => { + const theme = useTheme(); + + return ( + + + + + + + + + + + Publish + + + + Save Draft + + + + + ); +}; + +export default EditorNavbar; diff --git a/client/src/modules/editor/components/project-editor.tsx b/client/src/modules/editor/components/project-editor.tsx new file mode 100644 index 000000000..c4677c346 --- /dev/null +++ b/client/src/modules/editor/components/project-editor.tsx @@ -0,0 +1,167 @@ +import { Box, Divider, useTheme } from '@mui/material'; +import TitleIcon from '@mui/icons-material/Title'; +import LinkIcon from '@mui/icons-material/Link'; +import HttpIcon from '@mui/icons-material/Http'; +import { defaultLightThumbnail, defaultDarkThumbnail } from '../constants'; +import EditorNavbar from './editor-navbar'; +import { useA2ZTheme } from '../../../shared/hooks/use-theme'; +import InputBox from '../../../shared/components/atoms/input-box'; +import A2ZTextEditor from './text-editor'; +import { useProjectEditor } from '../hooks/use-project-editor'; +import { useAtomValue } from 'jotai'; +import { EditorContentAtom } from '../states'; + +const ProjectEditor = () => { + const theme = useTheme(); + const { theme: a2zTheme } = useA2ZTheme(); + const editorContent = useAtomValue(EditorContentAtom); + const { + handleBannerUpload, + handleTitleChange, + handleLiveURLChange, + handleRepositoryURLChange, + handleDraftProject, + handlePublishEvent, + } = useProjectEditor(); + + return ( + <> + + + + + + + + + } + slotProps={{ + htmlInput: { + onChange: handleTitleChange, + }, + input: { + sx: { + fontSize: 24, + fontWeight: 600, + lineHeight: 1.2, + }, + }, + }} + /> + + + } + slotProps={{ + htmlInput: { + onChange: handleRepositoryURLChange, + }, + }} + /> + + } + slotProps={{ + htmlInput: { + onChange: handleLiveURLChange, + }, + }} + /> + + + + + + + + + ); +}; + +export default ProjectEditor; diff --git a/client/src/modules/editor/components/projectEditor.tsx b/client/src/modules/editor/components/projectEditor.tsx deleted file mode 100644 index adc2d5d93..000000000 --- a/client/src/modules/editor/components/projectEditor.tsx +++ /dev/null @@ -1,243 +0,0 @@ -import { useEffect } from 'react'; -import { Link, useNavigate, useParams } from 'react-router-dom'; -import EditorJS from '@editorjs/editorjs'; -import AnimationWrapper from '../../../shared/components/atoms/page-animation'; -import { uploadImage } from '../../../shared/hooks/upload-image'; -import { tools } from './tools'; -import { useAtom, useSetAtom } from 'jotai'; -import { ProjectAtom } from '../../../shared/states/project'; -import { EditorAtom, TextEditorAtom } from '../states'; -import { useNotifications } from '../../../shared/hooks/use-notification'; -import { createProject } from '../requests'; -import type { EditorBlock } from '../../../infra/rest/typings'; -import { EditorMode } from '../typings'; -import { defaultBanner } from '../constants'; - -const ProjectEditor = () => { - const { project_id } = useParams(); - const navigate = useNavigate(); - const { addNotification } = useNotifications(); - - const [project, setProject] = useAtom(ProjectAtom); - const setEditorState = useSetAtom(EditorAtom); - const [textEditor, setTextEditor] = useAtom(TextEditorAtom); - const { title, banner, repository, projectUrl, des, content, tags } = - project ?? {}; - - useEffect(() => { - if (!textEditor.isReady) { - const editorInstance = new EditorJS({ - holder: 'textEditor', - data: Array.isArray(project?.content) - ? project.content[0] - : project?.content, - tools: tools, - placeholder: "Let's write an awesome story", - }); - setTextEditor({ editor: editorInstance, isReady: true }); - } - }, [textEditor.isReady, project?.content, setTextEditor]); - - const handleBannerUpload = (e: React.ChangeEvent) => { - const img = e.target.files?.[0]; - - if (img) { - uploadImage(img) - .then(url => { - if (url) { - addNotification({ - message: 'Uploaded successfully', - type: 'success', - }); - setProject(prev => (prev ? { ...prev, banner: url } : null)); - } - }) - .catch(err => { - return addNotification({ message: err, type: 'error' }); - }); - } - }; - - const handleTitleKeyDown = (e: React.KeyboardEvent) => { - if (e.keyCode === 13) { - // Enter key - e.preventDefault(); - } - }; - - const handleTitleChange = (e: React.ChangeEvent) => { - const textarea = e.target; - - textarea.style.height = 'auto'; - textarea.style.height = textarea.scrollHeight + 'px'; - - setProject(prev => (prev ? { ...prev, title: textarea.value } : null)); - }; - - const handleRepositoryURLChange = ( - e: React.ChangeEvent - ) => { - const input = e.target; - setProject(prev => (prev ? { ...prev, repository: input.value } : null)); - }; - - const handleProjectURLChange = (e: React.ChangeEvent) => { - const input = e.target; - setProject(prev => (prev ? { ...prev, projectUrl: input.value } : null)); - }; - - const handlePublishEvent = () => { - if (!banner?.length) { - return addNotification({ - message: 'Upload a project banner to publish it', - type: 'error', - }); - } - if (!title?.length) { - return addNotification({ - message: 'Title is required to publish a project', - type: 'error', - }); - } - if (textEditor.isReady) { - textEditor.editor - ?.save() - .then((outputData: { blocks: EditorBlock[] }) => { - if (outputData.blocks.length) { - setProject(prev => - prev - ? { ...prev, content: [{ blocks: outputData.blocks }] } - : null - ); - setEditorState(EditorMode.PUBLISH); - } else { - return addNotification({ - message: 'Write something in your project to publish it', - type: 'error', - }); - } - }) - .catch((err: unknown) => { - console.log(err); - }); - } - }; - - const handleSaveDraft = async (e: React.MouseEvent) => { - if (e.currentTarget.className.includes('disable')) { - return; - } - - if (!title?.length) { - return addNotification({ - message: 'Write project title before saving it as a draft', - type: 'error', - }); - } - - if (!repository?.length) { - return addNotification({ - message: 'Add a repository URL before saving it as a draft', - type: 'error', - }); - } - - e.currentTarget.classList.add('disable'); - - if (textEditor.isReady && des && banner && projectUrl && content && tags) { - const response = await createProject({ - id: project_id, - title, - des, - banner, - projectUrl, - repository, - content, - tags, - draft: true, - }); - if (response.success) { - e.currentTarget.classList.remove('disable'); - addNotification({ - message: 'Project saved successfully', - type: 'success', - }); - setTimeout(() => { - navigate('/dashboard/projects?tab=draft'); - }, 500); - } - } - }; - - return ( - <> - - - -
-
-
- -
- - - -
- - -
- -
- -
-
-
-
- - ); -}; - -export default ProjectEditor; diff --git a/client/src/modules/editor/components/publish-form.tsx b/client/src/modules/editor/components/publish-form.tsx new file mode 100644 index 000000000..d1ed82a61 --- /dev/null +++ b/client/src/modules/editor/components/publish-form.tsx @@ -0,0 +1,271 @@ +import { Box, TextareaAutosize, Chip } from '@mui/material'; +import CloseIcon from '@mui/icons-material/Close'; +import { useTheme } from '@mui/material/styles'; +import { useProjectEditor } from '../hooks/use-project-editor'; +import { + characterLimit, + defaultDarkThumbnail, + defaultLightThumbnail, + tagLimit, +} from '../constants'; +import A2ZIconButton from '../../../shared/components/atoms/icon-button'; +import A2ZTypography from '../../../shared/components/atoms/typography'; +import InputBox from '../../../shared/components/atoms/input-box'; +import A2ZButton from '../../../shared/components/atoms/button'; +import { useEditor } from '../hooks'; +import { useA2ZTheme } from '../../../shared/hooks/use-theme'; +import { useAtomValue } from 'jotai'; +import { EditorContentAtom } from '../states'; + +const PublishForm = () => { + const theme = useTheme(); + const { theme: a2zTheme } = useA2ZTheme(); + const editorContent = useAtomValue(EditorContentAtom); + const { handleBackToEditor } = useEditor(); + const { + handleTitleChange, + handleDescriptionChange, + handleTagsAdd, + handleTagsDelete, + handlePublishProject, + } = useProjectEditor(); + + return ( + + + + + + {/* Left Section — Preview */} + + + + + + + + + + + + + {/* Right Section — Editor Fields */} + + + + + + + + + + + + ) => { + if (e.key === 'Enter' && e.currentTarget.value.trim()) { + e.preventDefault(); + handleTagsAdd(e.currentTarget.value.trim()); + e.currentTarget.value = ''; + } + }, + }, + input: { + disableUnderline: true, + }, + }} + sx={{ mb: 2 }} + /> + + {editorContent?.tags?.map((tag, i) => ( + handleTagsDelete(i)} + /> + ))} + + + + + + + Publish + + + + ); +}; + +export default PublishForm; diff --git a/client/src/modules/editor/components/publishForm.tsx b/client/src/modules/editor/components/publishForm.tsx deleted file mode 100644 index dffce59eb..000000000 --- a/client/src/modules/editor/components/publishForm.tsx +++ /dev/null @@ -1,211 +0,0 @@ -import { useNavigate, useParams } from 'react-router-dom'; -import AnimationWrapper from '../../../shared/components/atoms/page-animation'; -import Tag from './tags'; -import { characterLimit, tagLimit } from '../constants'; -import { useAtom, useSetAtom } from 'jotai'; -import { EditorAtom } from '../states'; -import { EditorMode } from '../typings'; -import { useNotifications } from '../../../shared/hooks/use-notification'; -import { ProjectAtom } from '../../../shared/states/project'; -import { createProject } from '../requests'; - -const PublishForm = () => { - const { project_id } = useParams(); - const navigate = useNavigate(); - const { addNotification } = useNotifications(); - const [project, setProject] = useAtom(ProjectAtom); - const setEditorState = useSetAtom(EditorAtom); - - const { banner, projectUrl, repository, title, tags, des, content } = - project ?? {}; - - const handleCloseEvent = () => { - setEditorState(EditorMode.EDITOR); - }; - - const handleTitleKeyDown = (e: React.KeyboardEvent) => { - if (e.keyCode === 13) { - // Enter key - e.preventDefault(); - } - }; - - const handleProjectTitleChange = (e: React.ChangeEvent) => { - const input = e.target; - setProject(prev => (prev ? { ...prev, title: input.value } : null)); - }; - - const handleProjectDesChange = ( - e: React.ChangeEvent - ) => { - const textarea = e.target; - setProject(prev => (prev ? { ...prev, des: textarea.value } : null)); - }; - - const handleKeyDown = (e: React.KeyboardEvent) => { - if (e.keyCode === 13 || e.keyCode === 188) { - e.preventDefault(); - const tag = e.currentTarget.value; - - if (tags && tags.length < tagLimit) { - if (!tags.includes(tag) && tag.length) { - setProject(prev => (prev ? { ...prev, tags: [...tags, tag] } : null)); - } - } else { - addNotification({ - message: `You can add maximum ${tagLimit} tags`, - type: 'error', - }); - } - e.currentTarget.value = ''; - } - }; - - const publishProject = (e: React.MouseEvent) => { - if (e.currentTarget.className.includes('disable')) { - return; - } - - if (!title?.length) { - return addNotification({ - message: 'Write a project title before publishing', - type: 'error', - }); - } - - if (!des?.length) { - return addNotification({ - message: `Write a description about your project within ${characterLimit} characters to publish`, - type: 'error', - }); - } - - if (!repository?.length) { - return addNotification({ - message: 'Add a repository URL to publish your project', - type: 'error', - }); - } - - if (!tags?.length) { - return addNotification({ - message: 'Add at least 1 tag to help us to rank your project', - type: 'error', - }); - } - - e.currentTarget.classList.add('disable'); - - if (banner && projectUrl) { - createProject({ - id: project_id, - title, - des, - banner, - projectUrl, - repository, - content: content || [], - tags, - draft: false, - }) - .then(() => { - e.currentTarget.classList.remove('disable'); - addNotification({ - message: 'Project published successfully', - type: 'success', - }); - - setTimeout(() => { - navigate('/dashboard/projects'); - }, 500); - }) - .catch(({ response }) => { - e.currentTarget.classList.remove('disable'); - return addNotification({ - message: response.data.error, - type: 'error', - }); - }); - } - }; - - return ( - -
- - -
-

Preview

- -
- -
- -

- {title} -

-

- {des} -

-
- -
-

Project Title

- - -

- Short description about your project -

- - - -

- {characterLimit - (des ?? '').length} characters left -

- -

- Topics - (Helps in searching and ranking your project post) -

- -
- - {tags?.map((tag, i) => { - return ; - })} -
-

- {tagLimit - (tags ?? []).length} Tags left -

- - -
-
-
- ); -}; - -export default PublishForm; diff --git a/client/src/modules/editor/components/tags.tsx b/client/src/modules/editor/components/tags.tsx index de2042258..8856c5809 100644 --- a/client/src/modules/editor/components/tags.tsx +++ b/client/src/modules/editor/components/tags.tsx @@ -1,49 +1,5 @@ -import { ProjectAtom } from '../../../shared/states/project'; -import { useAtom } from 'jotai'; - -const Tag = ({ tag, tagIndex }: { tag: string; tagIndex: number }) => { - const [project, setProject] = useAtom(ProjectAtom); - const { tags } = project ?? { tags: [] }; - - const addEditable = (e: React.MouseEvent) => { - e.currentTarget.setAttribute('contentEditable', 'true'); - e.currentTarget.focus(); - }; - - const handleTagEdit = (e: React.KeyboardEvent) => { - if (e.keyCode === 13 || e.keyCode === 188) { - e.preventDefault(); - const currentTag = e.currentTarget.innerText; - tags[tagIndex] = currentTag; - setProject(prev => (prev ? { ...prev, tags } : null)); - e.currentTarget.setAttribute('contentEditable', 'false'); - } - }; - - const handleTagDelete = () => { - setProject(prev => - prev ? { ...prev, tags: prev.tags.filter(t => t !== tag) } : null - ); - }; - - return ( -
-

- {tag} -

- -
- ); +const Tags = () => { + return
Tags Component
; }; -export default Tag; +export default Tags; diff --git a/client/src/modules/editor/components/text-editor.tsx b/client/src/modules/editor/components/text-editor.tsx new file mode 100644 index 000000000..8487d3c62 --- /dev/null +++ b/client/src/modules/editor/components/text-editor.tsx @@ -0,0 +1,80 @@ +import { Box } from '@mui/material'; +import { useEffect, useRef } from 'react'; +import EditorJS, { EditorConfig } from '@editorjs/editorjs'; +import { tools } from './tools'; +import { useAtomValue, useSetAtom } from 'jotai'; +import { EditorContentAtom, TextEditorAtom } from '../states'; + +const A2ZTextEditor = () => { + const editorContent = useAtomValue(EditorContentAtom); + const setTextEditor = useSetAtom(TextEditorAtom); + + const editorJSRef = useRef(null); + const editorContainerRef = useRef(null); + const isOnStrictMode = useRef(false); + + useEffect(() => { + if (editorContainerRef.current !== null && !isOnStrictMode.current) { + isOnStrictMode.current = true; + const editorConf: EditorConfig = { + holder: editorContainerRef.current, + data: Array.isArray(editorContent?.content) + ? editorContent.content[0] + : editorContent?.content, + tools: tools, + placeholder: + 'Type away… share your code, your journey, and what makes your project awesome!', + }; + const editor = new EditorJS(editorConf); + editorJSRef.current = editor; + setTextEditor({ editor: editor, isReady: true }); + } + + return () => { + if ( + editorJSRef.current !== null && + editorJSRef.current!.destroy !== undefined + ) { + isOnStrictMode.current = false; + editorJSRef.current.destroy(); + editorJSRef.current = null; + } + }; + }, [editorContent?.content, setTextEditor]); + + return ( + `1px solid ${theme.palette.divider}`, + borderRadius: 2, + paddingY: 3, + backgroundColor: theme => theme.palette.background.paper, + boxShadow: theme => theme.shadows[1], + '&:focus-within': { + borderColor: theme => theme.palette.primary.main, + boxShadow: theme => `0 0 0 2px ${theme.palette.primary.main}20`, + }, + '& .ce-block': { + marginBottom: '1rem', + }, + '& .ce-toolbar__plus, & .ce-toolbar__settings-btn': { + color: theme => theme.palette.text.secondary, + }, + '& .ce-paragraph': { + fontFamily: theme => theme.typography.fontFamily, + fontSize: theme => theme.typography.body1.fontSize, + lineHeight: theme => theme.typography.body1.lineHeight, + color: theme => theme.palette.text.primary, + }, + '& .ce-header': { + fontFamily: theme => theme.typography.h5.fontFamily, + color: theme => theme.palette.text.primary, + fontWeight: 600, + }, + }} + /> + ); +}; + +export default A2ZTextEditor; diff --git a/client/src/modules/editor/components/tools.tsx b/client/src/modules/editor/components/tools.tsx index 30332d1b7..b103132ed 100644 --- a/client/src/modules/editor/components/tools.tsx +++ b/client/src/modules/editor/components/tools.tsx @@ -13,14 +13,14 @@ import Warning from '@editorjs/warning'; import Attaches from '@editorjs/attaches'; import LinkTool from '@editorjs/link'; -import { uploadImage } from '../../../shared/hooks/upload-image'; +import { uploadImage } from '../../../infra/rest/apis/media'; const uploadImageByFile = async (e: File) => { - return await uploadImage(e).then(url => { - if (url) { + return await uploadImage(e).then(({ data }) => { + if (data?.upload_url) { return { success: 1, - file: { url }, + file: { url: data.upload_url }, }; } }); diff --git a/client/src/modules/editor/constants/index.ts b/client/src/modules/editor/constants/index.ts index ea0355279..3d60d77a4 100644 --- a/client/src/modules/editor/constants/index.ts +++ b/client/src/modules/editor/constants/index.ts @@ -1,5 +1,8 @@ export const characterLimit = 200; export const tagLimit = 10; -export const defaultBanner = - 'https://res.cloudinary.com/avdhesh-varshney/image/upload/v1741270498/project_banner_wpphwm.png'; +export const defaultLightThumbnail = + 'https://res.cloudinary.com/avdhesh-varshney/image/upload/v1761476229/OS7sL4eIr_MiI9fqvkYCw-1761476227343.jpg'; + +export const defaultDarkThumbnail = + 'https://res.cloudinary.com/avdhesh-varshney/image/upload/v1761476020/FHX9kToS3GiG0sgUFQ_Mo-1761476018134.jpg'; diff --git a/client/src/modules/editor/hooks/index.ts b/client/src/modules/editor/hooks/index.ts new file mode 100644 index 000000000..c6588b064 --- /dev/null +++ b/client/src/modules/editor/hooks/index.ts @@ -0,0 +1,20 @@ +import { useState } from 'react'; +import { useAtom } from 'jotai'; +import { EditorPageAtom, EditorPageState } from '../states'; + +export const useEditor = () => { + const [loading, setLoading] = useState(false); + const [editorPageState, setEditorPageState] = useAtom(EditorPageAtom); + + const handlePublish = () => setEditorPageState(EditorPageState.PUBLISH); + const handleBackToEditor = () => setEditorPageState(EditorPageState.EDITOR); + + return { + loading, + setLoading, + editorPageState, + setEditorPageState, + handlePublish, + handleBackToEditor, + }; +}; diff --git a/client/src/modules/editor/hooks/use-project-editor.ts b/client/src/modules/editor/hooks/use-project-editor.ts new file mode 100644 index 000000000..ef607e972 --- /dev/null +++ b/client/src/modules/editor/hooks/use-project-editor.ts @@ -0,0 +1,269 @@ +import { uploadImage } from '../../../infra/rest/apis/media'; +import { useNotifications } from '../../../shared/hooks/use-notification'; +import { useAtom, useSetAtom } from 'jotai'; +import { + EditorContent, + EditorContentAtom, + EditorPageAtom, + EditorPageState, + TextEditorAtom, +} from '../states'; +import { OutputData } from '@editorjs/editorjs'; +import { createProject } from '../../../infra/rest/apis/project'; +import { useNavigate, useParams } from 'react-router-dom'; +import { useEditor } from '.'; +import { tagLimit } from '../constants'; + +export const useProjectEditor = () => { + const { addNotification } = useNotifications(); + const navigate = useNavigate(); + const { project_id } = useParams(); + const { handlePublish } = useEditor(); + + const setEditorPageState = useSetAtom(EditorPageAtom); + const [textEditor, setTextEditor] = useAtom(TextEditorAtom); + const [editorContent, setEditorContent] = useAtom(EditorContentAtom); + + const handleBannerUpload = (e: React.ChangeEvent) => { + const img = e.target.files?.[0]; + if (img) { + uploadImage(img) + .then(({ status, message, data }) => { + if (data?.upload_url) { + addNotification({ + message, + type: status, + }); + setEditorContent( + prev => ({ ...prev, banner: data.upload_url }) as EditorContent + ); + } + }) + .catch(err => { + return addNotification({ message: err, type: 'error' }); + }); + } + }; + + const handleTitleChange = (e: React.ChangeEvent) => { + const textarea = e.target; + setEditorContent( + prev => ({ ...prev, title: textarea.value }) as EditorContent + ); + }; + + const handleDescriptionChange = ( + e: React.ChangeEvent + ) => { + const textarea = e.target; + setEditorContent( + prev => ({ ...prev, description: textarea.value }) as EditorContent + ); + }; + + const handleRepositoryURLChange = ( + e: React.ChangeEvent + ) => { + const input = e.target; + setEditorContent( + prev => ({ ...prev, repositoryURL: input.value }) as EditorContent + ); + }; + + const handleLiveURLChange = (e: React.ChangeEvent) => { + const input = e.target; + setEditorContent( + prev => ({ ...prev, liveURL: input.value }) as EditorContent + ); + }; + + const handleTagsAdd = (tag: string) => { + if (editorContent?.tags && editorContent.tags.length >= tagLimit) { + return addNotification({ + message: `You can add up to ${tagLimit} tags only`, + type: 'error', + }); + } + setEditorContent( + prev => ({ ...prev, tags: [...(prev?.tags || []), tag] }) as EditorContent + ); + }; + + const handleTagsDelete = (index: number) => { + setEditorContent( + prev => + ({ + ...prev, + tags: prev?.tags.filter((_, i) => i !== index), + }) as EditorContent + ); + }; + + const handleDraftProject = async () => { + if (!editorContent?.title?.length) { + return addNotification({ + message: 'Write project title before saving it as a draft', + type: 'error', + }); + } + if (!editorContent?.repositoryURL?.length) { + return addNotification({ + message: 'Add a repository URL before saving it as a draft', + type: 'error', + }); + } + + if (textEditor.isReady) { + textEditor.editor + ?.save() + .then(async (outputData: OutputData) => { + setEditorContent( + prev => ({ ...prev, content: outputData }) as EditorContent + ); + const response = await createProject({ + _id: project_id ?? undefined, + title: editorContent.title, + description: editorContent.description || '', + banner_url: editorContent?.banner || '', + live_url: editorContent?.liveURL || '', + repository_url: editorContent?.repositoryURL || '', + tags: editorContent?.tags || [], + content_blocks: outputData, + is_draft: true, + }); + if (response.status === 'success') { + addNotification({ + message: response.message, + type: response.status, + }); + setTimeout(() => { + navigate('/dashboard/projects?tab=draft'); + }, 500); + setEditorContent(null); + setTextEditor({ isReady: false }); + setEditorPageState(EditorPageState.EDITOR); + } + }) + .catch((err: unknown) => { + console.error(err); + }); + } + }; + + const handlePublishEvent = () => { + if (!editorContent?.banner?.length) { + return addNotification({ + message: 'Upload a project banner to publish it', + type: 'error', + }); + } + if (!editorContent?.title?.length) { + return addNotification({ + message: 'Title is required to publish a project', + type: 'error', + }); + } + if (textEditor.isReady) { + textEditor.editor + ?.save() + .then((outputData: OutputData) => { + if (outputData.blocks.length) { + setEditorContent( + prev => ({ ...prev, content: outputData }) as EditorContent + ); + handlePublish(); + } else { + return addNotification({ + message: 'Write something in your project to publish it', + type: 'error', + }); + } + }) + .catch((err: unknown) => { + console.error(err); + }); + } + }; + + const handlePublishProject = async () => { + if (!editorContent?.title?.length) { + return addNotification({ + message: 'Title is required to publish a project', + type: 'error', + }); + } + if (!editorContent?.description?.length) { + return addNotification({ + message: 'Description is required to publish a project', + type: 'error', + }); + } + if (!editorContent?.banner?.length) { + return addNotification({ + message: 'Upload a project banner to publish it', + type: 'error', + }); + } + if (!editorContent?.repositoryURL?.length) { + return addNotification({ + message: 'Add a repository URL to publish your project', + type: 'error', + }); + } + if (!editorContent?.tags?.length) { + return addNotification({ + message: 'Add at least one tag to publish your project', + type: 'error', + }); + } + if ( + !( + (Array.isArray(editorContent?.content) && + editorContent.content.length > 0) || + (!Array.isArray(editorContent?.content) && + !!(editorContent?.content as OutputData)?.blocks?.length) + ) + ) { + return addNotification({ + message: 'Write something in your project to publish it', + type: 'error', + }); + } + const response = await createProject({ + _id: project_id ?? undefined, + title: editorContent.title, + description: editorContent.description || '', + banner_url: editorContent.banner, + live_url: editorContent.liveURL || '', + repository_url: editorContent.repositoryURL || '', + tags: editorContent.tags || [], + content_blocks: editorContent.content, + is_draft: false, + }); + if (response.status === 'success') { + addNotification({ + message: response.message, + type: response.status, + }); + setTimeout(() => { + navigate('/dashboard/projects?tab=published'); + }, 500); + setEditorContent(null); + setTextEditor({ isReady: false }); + setEditorPageState(EditorPageState.EDITOR); + } + }; + + return { + handleBannerUpload, + handleTitleChange, + handleDescriptionChange, + handleRepositoryURLChange, + handleLiveURLChange, + handleTagsAdd, + handleTagsDelete, + handleDraftProject, + handlePublishEvent, + handlePublishProject, + }; +}; diff --git a/client/src/modules/editor/index.tsx b/client/src/modules/editor/index.tsx index 92791ae96..ebd52b184 100644 --- a/client/src/modules/editor/index.tsx +++ b/client/src/modules/editor/index.tsx @@ -1,54 +1,23 @@ -import { useEffect, useState } from 'react'; -import { Navigate, useParams } from 'react-router-dom'; -import ProjectEditor from './components/projectEditor'; -import PublishForm from './components/publishForm'; -import Loader from '../../shared/components/atoms/loader'; -import { useAtomValue, useSetAtom } from 'jotai'; -import { UserAtom } from '../../shared/states/user'; -import { EditorAtom } from './states'; -import { ProjectAtom } from '../../shared/states/project'; -import { getProject } from '../project/requests'; +import { Navigate } from 'react-router-dom'; +import { useAuth } from '../../shared/hooks/use-auth'; +import { EditorPageState } from './states'; +import { CircularProgress } from '@mui/material'; +import ProjectEditor from './components/project-editor'; +import PublishForm from './components/publish-form'; +import { useEditor } from './hooks'; const Editor = () => { - const { project_id } = useParams(); - const user = useAtomValue(UserAtom); + const { isAuthenticated, initialized } = useAuth(); + const { loading, editorPageState } = useEditor(); - const setProject = useSetAtom(ProjectAtom); - const editorState = useAtomValue(EditorAtom); - const [loading, setLoading] = useState(true); + if (!initialized || loading) return ; + if (!isAuthenticated()) return ; - useEffect(() => { - if (!project_id) { - setLoading(false); - return; - } - - const fetchProject = async () => { - const response = await getProject({ - project_id, - draft: true, - mode: 'edit', - }); - if (response.project) { - setProject(response.project); - } else { - setProject(null); - } - setLoading(false); - }; - - fetchProject(); - }, [project_id, setProject]); - - if (!user?.access_token) { - return ; - } - - if (loading) { - return ; - } - - return editorState === 'editor' ? : ; + return editorPageState === EditorPageState.EDITOR ? ( + + ) : editorPageState === EditorPageState.PUBLISH ? ( + + ) : undefined; }; export default Editor; diff --git a/client/src/modules/editor/states/index.ts b/client/src/modules/editor/states/index.ts index 568162297..f2fda4626 100644 --- a/client/src/modules/editor/states/index.ts +++ b/client/src/modules/editor/states/index.ts @@ -1,9 +1,25 @@ import { atom } from 'jotai'; -import type EditorJS from '@editorjs/editorjs'; -import { EditorMode } from '../typings'; +import EditorJS, { OutputData } from '@editorjs/editorjs'; -export const EditorAtom = atom(EditorMode.EDITOR); +export enum EditorPageState { + EDITOR = 'editor', + PUBLISH = 'publish', +} + +export interface EditorContent { + title: string; + description: string; + banner: string; + content: OutputData[] | OutputData; + tags: string[]; + liveURL: string; + repositoryURL: string; +} + +export const EditorPageAtom = atom(EditorPageState.EDITOR); export const TextEditorAtom = atom<{ isReady: boolean; editor?: EditorJS }>({ isReady: false, }); + +export const EditorContentAtom = atom(null); diff --git a/client/src/modules/home/components/banner-project-card.tsx b/client/src/modules/home/components/banner-project-card.tsx new file mode 100644 index 000000000..f5ba59b35 --- /dev/null +++ b/client/src/modules/home/components/banner-project-card.tsx @@ -0,0 +1,165 @@ +// TODO: Redesign this component to make it more visually appealing & interactive. +import { Link } from 'react-router-dom'; +import { Avatar, Box, Chip, Stack, Typography, useTheme } from '@mui/material'; +import FavoriteBorderIcon from '@mui/icons-material/FavoriteBorder'; +import { useA2ZTheme } from '../../../shared/hooks/use-theme'; +import { getDay } from '../../../shared/utils/date'; +import { + defaultDarkThumbnail, + defaultLightThumbnail, +} from '../../editor/constants'; +import { getAllProjectsResponse } from '../../../infra/rest/apis/project/typing'; + +const BannerProjectCard = ({ + project, +}: { + project: getAllProjectsResponse; +}) => { + const theme = useTheme(); + const { theme: a2zTheme } = useA2ZTheme(); + const { + publishedAt, + tags, + title, + description, + banner_url, + activity: { total_likes }, + _id, + personal_info: { fullname, username, profile_img }, + } = project; + + return ( + + {/* LEFT SIDE */} + + {/* Author Info */} + + + + {fullname} @{username} + + + {getDay(publishedAt)} + + + + {/* Title */} + + {title} + + + {/* Description */} + + {description} + + + {/* Tags + Likes */} + + {tags?.[0] && ( + + )} + + + + {total_likes} + + + + + {/* RIGHT SIDE: Image */} + + {title} + + + ); +}; + +export default BannerProjectCard; diff --git a/client/src/modules/home/components/CategoryButton.tsx b/client/src/modules/home/components/category-button.tsx similarity index 100% rename from client/src/modules/home/components/CategoryButton.tsx rename to client/src/modules/home/components/category-button.tsx diff --git a/client/src/modules/home/components/latestProjectsSkeleton.tsx b/client/src/modules/home/components/latestProjectsSkeleton.tsx deleted file mode 100644 index f2b300753..000000000 --- a/client/src/modules/home/components/latestProjectsSkeleton.tsx +++ /dev/null @@ -1,36 +0,0 @@ -const LatestProjectsSkeleton = ({ count }: { count: number }) => { - return ( -
- {[...Array(count)].map((_, idx) => ( -
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-
- ))} -
- ); -}; - -export default LatestProjectsSkeleton; diff --git a/client/src/modules/home/components/no-banner-project.tsx b/client/src/modules/home/components/no-banner-project.tsx new file mode 100644 index 000000000..9320d94c0 --- /dev/null +++ b/client/src/modules/home/components/no-banner-project.tsx @@ -0,0 +1,93 @@ +import { Link } from 'react-router-dom'; +import { Avatar, Box, Typography, Stack, useTheme } from '@mui/material'; +import { getTrendingProjectsResponse } from '../../../infra/rest/apis/project/typing'; +import { getDay } from '../../../shared/utils/date'; + +interface NoBannerProjectCardProps { + project: getTrendingProjectsResponse; + index: number; +} + +const NoBannerProjectCard = ({ project, index }: NoBannerProjectCardProps) => { + const theme = useTheme(); + + const { + _id, + title, + personal_info: { fullname, username, profile_img }, + publishedAt, + } = project; + + return ( + + {/* Index Number */} + + {index < 10 ? `0${index + 1}` : index} + + + {/* Main Content */} + + {/* Author Info */} + + + + {fullname} @{username} + + + {getDay(publishedAt)} + + + + {/* Project Title */} + + {title} + + + + ); +}; + +export default NoBannerProjectCard; diff --git a/client/src/modules/home/components/noBannerProject.tsx b/client/src/modules/home/components/noBannerProject.tsx deleted file mode 100644 index eb2743c3e..000000000 --- a/client/src/modules/home/components/noBannerProject.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { Link } from 'react-router-dom'; -import { getDay } from '../../../shared/utils/date'; -import { Project, TrendingProject } from '../../../infra/rest/typings'; - -interface MinimalProjectPostProps { - project: Project | TrendingProject; - index: number; -} - -const MinimalProjectPost = ({ project, index }: MinimalProjectPostProps) => { - const { - title, - project_id: id, - author: { - personal_info: { fullname, username, profile_img }, - }, - publishedAt, - } = project; - - return ( - -

- {index < 10 ? '0' + (index + 1) : index} -

-
-
- -

- {fullname} @{username} -

-

{getDay(publishedAt)}

-
- -

{title}

-
- - ); -}; - -export default MinimalProjectPost; diff --git a/client/src/modules/home/components/trendingProjectsSkeleton.tsx b/client/src/modules/home/components/trendingProjectsSkeleton.tsx deleted file mode 100644 index e98bccc27..000000000 --- a/client/src/modules/home/components/trendingProjectsSkeleton.tsx +++ /dev/null @@ -1,25 +0,0 @@ -const TrendingProjectsSkeleton = ({ count }: { count: number }) => { - return ( -
- {[...Array(count)].map((_, idx) => ( -
-
-
-
-
-
-
-
-
- -
-
- ))} -
- ); -}; - -export default TrendingProjectsSkeleton; diff --git a/client/src/modules/home/constants/index.ts b/client/src/modules/home/constants/index.ts index 6ac5e4adc..6a41aa71c 100644 --- a/client/src/modules/home/constants/index.ts +++ b/client/src/modules/home/constants/index.ts @@ -1,4 +1,5 @@ export const categories = [ + // REPLACE ME WITH POPULAR TAGS 'web', 'data science', 'game development', diff --git a/client/src/modules/home/hooks/index.ts b/client/src/modules/home/hooks/index.ts new file mode 100644 index 000000000..b4172c297 --- /dev/null +++ b/client/src/modules/home/hooks/index.ts @@ -0,0 +1,62 @@ +import { useSetAtom } from 'jotai'; +import { HomePageProjectsAtom, HomePageTrendingProjectsAtom } from '../states'; +import { + getAllProjects, + getTrendingProjects, + searchProjects, +} from '../../../infra/rest/apis/project'; + +const useHome = () => { + const setProjects = useSetAtom(HomePageProjectsAtom); + const setTrending = useSetAtom(HomePageTrendingProjectsAtom); + + const fetchLatestProjects = async (page = 1) => { + const response = await getAllProjects(page); + if (response.data) { + setProjects(response.data); + } + }; + + const fetchTrendingProjects = async () => { + const response = await getTrendingProjects(); + if (response.data) { + setTrending(response.data); + } + }; + + const fetchProjectsByCategory = async ({ + tag, + query, + user_id, + page = 1, + limit = 10, + rmv_project_by_id, + }: { + tag?: string; + query?: string; + user_id?: string; + page?: number; + limit?: number; + rmv_project_by_id?: string; + }) => { + const response = await searchProjects({ + tag, + query, + user_id, + page, + limit, + rmv_project_by_id, + }); + if (response.data) { + setProjects(response.data); + } + }; + + return { + fetchLatestProjects, + fetchTrendingProjects, + fetchProjectsByCategory, + }; +}; + +export default useHome; diff --git a/client/src/modules/home/hooks/useHomeProjects.ts b/client/src/modules/home/hooks/useHomeProjects.ts deleted file mode 100644 index b210cf301..000000000 --- a/client/src/modules/home/hooks/useHomeProjects.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { useCallback } from 'react'; -import { useAtom } from 'jotai'; -import { filterPaginationData } from '../../../shared/requests/filter-pagination-data'; -import { - AllProjectsAtom, - TrendingProjectAtom, -} from '../../../shared/states/project'; -import { useNotifications } from '../../../shared/hooks/use-notification'; -import { - getAllLatestProjects, - getTrendingProjects, - searchProjectByCategory, -} from '../requests'; -import type { Project, AllProjectsData } from '../../../infra/rest/typings'; - -export const useHomeProjects = (pageState: string) => { - const [projects, setProjects] = useAtom(AllProjectsAtom); - const [trendingProjects, setTrendingProjects] = useAtom(TrendingProjectAtom); - const { addNotification } = useNotifications(); - - const fetchLatestProjects = useCallback( - async ({ page = 1 }) => { - const response = await getAllLatestProjects(page); - if (response.projects.length > 0) { - const formattedData = await filterPaginationData({ - state: projects, - data: response.projects, - page, - countRoute: '/api/project/all-latest-count', - }); - if (formattedData?.results) { - setProjects(formattedData as AllProjectsData); - } else { - addNotification({ - message: 'No Project Found!', - type: 'error', - }); - } - } else { - addNotification({ - message: 'No Projects Found!', - type: 'error', - }); - } - }, - [projects, addNotification, setProjects] - ); - - const fetchProjectsByCategory = useCallback( - async ({ page = 1 }) => { - const response = await searchProjectByCategory(pageState, page); - if (response.projects.length > 0) { - const formattedData = await filterPaginationData({ - state: projects, - data: response.projects, - page, - countRoute: '/api/project/search-count', - data_to_send: { tag: pageState }, - }); - if (formattedData) { - setProjects(formattedData as AllProjectsData); - } - } - }, - [projects, pageState, setProjects] - ); - - const fetchTrendingProjects = useCallback(async () => { - const response = await getTrendingProjects(); - if (response.projects.length > 0) { - setTrendingProjects(response.projects); - } - }, [setTrendingProjects]); - - return { - projects, - trendingProjects, - setProjects, - fetchLatestProjects, - fetchProjectsByCategory, - fetchTrendingProjects, - }; -}; diff --git a/client/src/modules/home/index.tsx b/client/src/modules/home/index.tsx index 9c7864ab0..198a02e04 100644 --- a/client/src/modules/home/index.tsx +++ b/client/src/modules/home/index.tsx @@ -1,181 +1,177 @@ -import { useEffect, useState } from 'react'; -import { Box, Typography, Stack } from '@mui/material'; -import ProjectPostCard from '../../shared/components/molecules/project-card'; -import MinimalProjectPost from './components/noBannerProject'; -import NoDataMessage from '../../shared/components/atoms/no-data-msg'; -import LoadMoreDataBtn from '../../shared/components/molecules/load-more-data'; -import AnimationWrapper from '../../shared/components/atoms/page-animation'; -import InPageNavigation from '../../shared/components/molecules/page-navigation'; -import { activeTabRef } from '../../shared/components/molecules/page-navigation/refs'; -import LatestProjectsSkeleton from './components/latestProjectsSkeleton'; -import TrendingProjectsSkeleton from './components/trendingProjectsSkeleton'; -import { CategoryButton } from './components/CategoryButton'; +import { Box, Stack } from '@mui/material'; +import A2ZTypography from '../../shared/components/atoms/typography'; +import TrendingUpIcon from '@mui/icons-material/TrendingUp'; import { categories } from './constants'; -import { useHomeProjects } from './hooks/useHomeProjects'; -import { loadProjectsByCategory as loadProjectsByCategoryUtil } from './utils'; +import { CategoryButton } from './components/category-button'; +import InPageNavigation from '../../shared/components/molecules/page-navigation'; +import NoBannerProjectCard from './components/no-banner-project'; +import { useAtom, useAtomValue } from 'jotai'; +import { + HomePageProjectsAtom, + HomePageStateAtom, + HomePageTrendingProjectsAtom, +} from './states'; +import BannerProjectCard from './components/banner-project-card'; +import NoDataMessageBox from '../../shared/components/atoms/no-data-msg'; +import { + BannerSkeleton, + NoBannerSkeleton, +} from '../../shared/components/atoms/skeleton'; +import { useEffect } from 'react'; +import useHome from './hooks'; +import { Virtuoso } from 'react-virtuoso'; const Home = () => { - const [pageState, setPageState] = useState('home'); + const [pageState, setPageState] = useAtom(HomePageStateAtom); + const projects = useAtomValue(HomePageProjectsAtom); + const trending = useAtomValue(HomePageTrendingProjectsAtom); const { - projects, - trendingProjects, - setProjects, fetchLatestProjects, - fetchProjectsByCategory, fetchTrendingProjects, - } = useHomeProjects(pageState); - - const handleCategoryChange = (e: React.MouseEvent) => { - loadProjectsByCategoryUtil(e, pageState, setPageState, setProjects); - }; + fetchProjectsByCategory, + } = useHome(); useEffect(() => { - if (activeTabRef.current) { - activeTabRef.current.click(); - } - if (pageState === 'home') { - fetchLatestProjects({ page: 1 }); - } else { - fetchProjectsByCategory({ page: 1 }); - } - if (!trendingProjects) { - fetchTrendingProjects(); + fetchLatestProjects(); + } else if (pageState !== 'trending') { + fetchProjectsByCategory({ tag: pageState }); } + fetchTrendingProjects(); }, [ pageState, fetchLatestProjects, fetchProjectsByCategory, fetchTrendingProjects, - trendingProjects, ]); return ( - + + {/* Latest projects */} + + + {projects.length ? ( + ( + + )} + overscan={200} + endReached={() => { + const nextPage = Math.floor(projects.length / 10) + 1; // Assuming page size of 10 + if (pageState === 'home') { + fetchLatestProjects(nextPage); + } else if (pageState !== 'trending') { + fetchProjectsByCategory({ page: nextPage, tag: pageState }); + } + }} + components={{ + Footer: () => + !projects || projects.length === 0 ? ( + + ) : null, // FIX ME + }} + /> + ) : ( + + )} + {trending && trending.length === 0 ? ( // FIX ME + + ) : trending && trending.length ? ( + trending.map((project, i) => { + return ( + + ); + }) + ) : ( + + )} + + + + {/* filters and trending projects */} `1px solid ${theme.palette.divider}`, + pl: 4, + pt: 1, + display: { xs: 'none', md: 'block' }, }} > - {/* Latest projects */} - - - <> - {projects?.results && projects.results.length === 0 ? ( - - ) : projects?.results && projects.results.length ? ( - projects.results.map((project, i) => { - return ( - - - - ); - }) - ) : ( - - )} - - - {trendingProjects && trendingProjects.length === 0 ? ( - - ) : trendingProjects && trendingProjects.length ? ( - trendingProjects.map((project, i) => { + + + + + + {categories.map((category, i) => { return ( - { + setPageState(pageState === category ? 'home' : category); + }} > - - + {category} + ); - }) - ) : ( - - )} - - - - {/* filters and trending projects */} - `1px solid ${theme.palette.divider}`, - pl: 4, - pt: 1, - display: { xs: 'none', md: 'block' }, - }} - > - - - - Recommended topics - - - - {categories.map((category, i) => { - return ( - - {category} - - ); - })} - + })} + - - - Trending - - - {trendingProjects === null ? ( - - ) : trendingProjects.length ? ( - trendingProjects.map((project, i) => { - return ( - - - - ); - }) - ) : ( - - )} + + + + - - + + {trending && trending.length === 0 ? ( // FIX ME + + ) : trending && trending.length ? ( + trending.map((project, i) => { + return ( + + ); + }) + ) : ( + + )} + + - +
); }; diff --git a/client/src/modules/home/states/index.ts b/client/src/modules/home/states/index.ts new file mode 100644 index 000000000..cabc86582 --- /dev/null +++ b/client/src/modules/home/states/index.ts @@ -0,0 +1,13 @@ +import { atom } from 'jotai'; +import { + getAllProjectsResponse, + getTrendingProjectsResponse, +} from '../../../infra/rest/apis/project/typing'; + +export const HomePageStateAtom = atom('home'); + +export const HomePageProjectsAtom = atom([]); + +export const HomePageTrendingProjectsAtom = atom( + [] +); diff --git a/client/src/modules/home/utils/index.ts b/client/src/modules/home/utils/index.ts deleted file mode 100644 index 8543b57eb..000000000 --- a/client/src/modules/home/utils/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -import type { AllProjectsData } from '../../../infra/rest/typings'; - -export const loadProjectsByCategory = ( - e: React.MouseEvent, - pageState: string, - setPageState: (state: string) => void, - setProjects: (projects: AllProjectsData | null) => void -) => { - const category = (e.target as HTMLButtonElement).innerText.toLowerCase(); - setProjects(null); - - if (pageState === category) { - setPageState('home'); - return; - } - setPageState(category); -}; diff --git a/client/src/modules/manage-projects/components/draft-projects.tsx b/client/src/modules/manage-projects/components/draft-projects.tsx new file mode 100644 index 000000000..731ac0977 --- /dev/null +++ b/client/src/modules/manage-projects/components/draft-projects.tsx @@ -0,0 +1,49 @@ +const ManageDraftProjectPost = ({ project }: { project: Project }) => { + const { title, des } = project; + let { index = 0 } = project; + + index++; + + return ( +
+

+ {index < 10 ? '0' + index : index} +

+ +
+

{title}

+ +

+ {des?.length ? des : 'No Description'} +

+ +
+ + Edit + + + +
+
+ +
+ +
+
+ ); +}; + +export default ManageDraftProjectPost; diff --git a/client/src/modules/project/manage-projects/components/manageProjectCard.tsx b/client/src/modules/manage-projects/components/publish-projects.tsx similarity index 77% rename from client/src/modules/project/manage-projects/components/manageProjectCard.tsx rename to client/src/modules/manage-projects/components/publish-projects.tsx index f6398d2e5..bcdbfa931 100644 --- a/client/src/modules/project/manage-projects/components/manageProjectCard.tsx +++ b/client/src/modules/manage-projects/components/publish-projects.tsx @@ -114,11 +114,7 @@ const deleteProject = ( }); }; -export const ManagePublishedProjectCard = ({ - project, -}: { - project: Project; -}) => { +const ManagePublishedProjectCard = ({ project }: { project: Project }) => { const { banner, project_id, title, publishedAt, activity } = project; const [user] = useAtom(UserAtom); @@ -184,50 +180,4 @@ export const ManagePublishedProjectCard = ({ ); }; -export const ManageDraftProjectPost = ({ project }: { project: Project }) => { - const { title, des } = project; - let { index = 0 } = project; - - index++; - - return ( -
-

- {index < 10 ? '0' + index : index} -

- -
-

{title}

- -

- {des?.length ? des : 'No Description'} -

- -
- - Edit - - - -
-
- -
- -
-
- ); -}; +export default ManagePublishedProjectCard; diff --git a/client/src/modules/manage-projects/hooks/index.ts b/client/src/modules/manage-projects/hooks/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/client/src/modules/project/manage-projects/index.tsx b/client/src/modules/manage-projects/index.tsx similarity index 72% rename from client/src/modules/project/manage-projects/index.tsx rename to client/src/modules/manage-projects/index.tsx index 392b03244..80b68dd12 100644 --- a/client/src/modules/project/manage-projects/index.tsx +++ b/client/src/modules/manage-projects/index.tsx @@ -1,23 +1,10 @@ +import { useAtom, useAtomValue } from 'jotai'; import { useEffect, useState, useCallback } from 'react'; -import { filterPaginationData } from '../../../shared/requests/filter-pagination-data'; -import InPageNavigation from '../../../shared/components/molecules/page-navigation'; -import Loader from '../../../shared/components/atoms/loader'; -import NoDataMessage from '../../../shared/components/atoms/no-data-msg'; -import AnimationWrapper from '../../../shared/components/atoms/page-animation'; -import { - ManagePublishedProjectCard, - ManageDraftProjectPost, -} from './components/manageProjectCard'; -import LoadMoreDataBtn from '../../../shared/components/molecules/load-more-data'; import { useSearchParams } from 'react-router-dom'; -import { useAtom, useAtomValue } from 'jotai'; -import { - DraftProjectAtom, - AllProjectsAtom, -} from '../../../shared/states/project'; -import { UserAtom } from '../../../shared/states/user'; -import { userWrittenProjects } from '../requests'; -import { AllProjectsData } from '../../../infra/rest/typings'; +import InPageNavigation from '../../shared/components/molecules/page-navigation'; +import NoDataMessageBox from '../../shared/components/atoms/no-data-msg'; +import ManagePublishedProjectCard from './components/publish-projects'; +import ManageDraftProjectPost from './components/draft-projects'; const ManageProjects = () => { const [projects, setProjects] = useAtom(AllProjectsAtom); @@ -122,15 +109,14 @@ const ManageProjects = () => { <> {projects.results.map((project, i) => { return ( - - - + ); })} @@ -144,7 +130,7 @@ const ManageProjects = () => { /> ) : ( - + ) } @@ -156,15 +142,14 @@ const ManageProjects = () => { <> {drafts.results.map((project, i) => { return ( - - - + ); })} @@ -178,7 +163,7 @@ const ManageProjects = () => { /> ) : ( - + ) } diff --git a/client/src/modules/manage-projects/states/index.ts b/client/src/modules/manage-projects/states/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/client/src/modules/profile/components/about-user.tsx b/client/src/modules/profile/components/about-user.tsx new file mode 100644 index 000000000..d73627d37 --- /dev/null +++ b/client/src/modules/profile/components/about-user.tsx @@ -0,0 +1,98 @@ +// TODO: Improve UI/UX of this component +import { Box, Typography, Stack, useTheme, Link } from '@mui/material'; +import { getFullDay } from '../../../shared/utils/date'; +import { USER_SOCIAL_LINKS } from '../../../infra/rest/typings'; +import FacebookIcon from '@mui/icons-material/Facebook'; +import XIcon from '@mui/icons-material/X'; +import GitHubIcon from '@mui/icons-material/GitHub'; +import InstagramIcon from '@mui/icons-material/Instagram'; +import LinkedInIcon from '@mui/icons-material/LinkedIn'; +import YouTubeIcon from '@mui/icons-material/YouTube'; +import LanguageIcon from '@mui/icons-material/Language'; +import A2ZIconButton from '../../../shared/components/atoms/icon-button'; + +const socialIcons = { + facebook: , + x: , + github: , + instagram: , + linkedin: , + youtube: , + website: , +}; + +interface AboutUserProps { + bio: string; + social_links: USER_SOCIAL_LINKS; + joinedAt: string; +} + +const AboutUser = ({ bio, social_links, joinedAt }: AboutUserProps) => { + const theme = useTheme(); + + return ( + + {/* Bio */} + + {bio?.length ? bio : 'Nothing to read here'} + + + {/* Social Links */} + + {Object.entries(social_links).map(([key, link]) => + link ? ( + + + {socialIcons[key as keyof typeof socialIcons]} + + + ) : null + )} + + + {/* Join Date */} + + Joined on {getFullDay(joinedAt)} + + + ); +}; + +export default AboutUser; diff --git a/client/src/modules/profile/components/aboutUser.tsx b/client/src/modules/profile/components/aboutUser.tsx deleted file mode 100644 index 98402d948..000000000 --- a/client/src/modules/profile/components/aboutUser.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { Link } from 'react-router-dom'; -import { getFullDay } from '../../../shared/utils/date'; - -const AboutUser = ({ - className, - bio, - social_links, - joinedAt, -}: { - className?: string; - bio: string; - social_links: Record; - joinedAt: string; -}) => { - return ( -
-

- {bio.length ? bio : 'Nothing to read here'} -

- -
- {Object.keys(social_links).map(key => { - const link = social_links[key]; - return link ? ( - - - - ) : ( - '' - ); - })} -
- -

- Joined on {getFullDay(joinedAt)} -

-
- ); -}; - -export default AboutUser; diff --git a/client/src/modules/profile/hooks/index.ts b/client/src/modules/profile/hooks/index.ts new file mode 100644 index 000000000..46f724ce7 --- /dev/null +++ b/client/src/modules/profile/hooks/index.ts @@ -0,0 +1,27 @@ +import { useCallback } from 'react'; +import { userProfile } from '../../../infra/rest/apis/user'; +import { useParams } from 'react-router-dom'; +import { useSetAtom } from 'jotai'; +import { ProfileAtom } from '../states'; +import useHome from '../../home/hooks'; + +const useProfile = () => { + const { username } = useParams(); + const setProfile = useSetAtom(ProfileAtom); + const { fetchProjectsByCategory } = useHome(); + + const fetchUserProfile = useCallback(async () => { + if (!username) return; + const response = await userProfile(username); + if (response.data) { + setProfile(response.data); + await fetchProjectsByCategory({ user_id: response.data._id }); + } + }, [username, setProfile, fetchProjectsByCategory]); + + return { + fetchUserProfile, + }; +}; + +export default useProfile; diff --git a/client/src/modules/profile/index.tsx b/client/src/modules/profile/index.tsx index a14812150..13b3775a5 100644 --- a/client/src/modules/profile/index.tsx +++ b/client/src/modules/profile/index.tsx @@ -1,188 +1,162 @@ -import { useEffect, useState, useCallback } from 'react'; -import { Link, useParams } from 'react-router-dom'; -import AnimationWrapper from '../../shared/components/atoms/page-animation'; -import Loader from '../../shared/components/atoms/loader'; -import AboutUser from './components/aboutUser'; -import { filterPaginationData } from '../../shared/requests/filter-pagination-data'; +import { useEffect } from 'react'; +import { useParams } from 'react-router-dom'; import InPageNavigation from '../../shared/components/molecules/page-navigation'; -import ProjectPostCard from '../../shared/components/molecules/project-card'; import NoDataMessage from '../../shared/components/atoms/no-data-msg'; -import LoadMoreDataBtn from '../../shared/components/molecules/load-more-data'; -import PageNotFound from '../404'; import { useAtom, useAtomValue } from 'jotai'; -import { ProfileAtom } from '../../shared/states/profile'; -import { UserAtom } from '../../shared/states/user'; -import { AllProjectsAtom } from '../../shared/states/project'; -import { AllProjectsData } from '../../infra/rest/typings/project'; -import { emptyProfileState } from '../../shared/states/emptyStates/profile'; -import { searchProjectByCategory } from '../home/requests'; -import { getUserProfile } from './requests'; +import { HomePageProjectsAtom } from '../home/states'; +import BannerProjectCard from '../home/components/banner-project-card'; +import { ProfileAtom } from './states'; +import { Virtuoso } from 'react-virtuoso'; +import { BannerSkeleton } from '../../shared/components/atoms/skeleton'; +import { UserAtom } from '../../infra/states/user'; +import { Avatar, Box, CircularProgress } from '@mui/material'; +import useHome from '../home/hooks'; +import AboutUser from './components/about-user'; +import A2ZTypography from '../../shared/components/atoms/typography'; +import Button from '../../shared/components/atoms/button'; +import useProfile from './hooks'; const Profile = () => { - const { id: profileId } = useParams(); + const { username } = useParams(); const user = useAtomValue(UserAtom); - const [profile, setProfile] = useAtom(ProfileAtom); - const [projects, setProjects] = useAtom(AllProjectsAtom); - - const [loading, setLoading] = useState(true); - const [profileLoaded, setProfileLoaded] = useState(''); - - const resetState = useCallback(() => { - setProfile(emptyProfileState); - setLoading(true); - setProfileLoaded(''); - }, [setProfile]); - - const getProjects = useCallback( - async (params: Record) => { - const { page = 1, user_id } = params; - - if (typeof user_id !== 'string') return; - - const response = await searchProjectByCategory( - user_id, - typeof page === 'number' ? page : 1 - ); - if (response.projects) { - const formattedData = await filterPaginationData({ - state: projects, - data: response.projects, - page: typeof page === 'number' ? page : 1, - countRoute: '/api/project/search-count', - data_to_send: { author: user_id }, - }); - - if (formattedData) { - const projectData: AllProjectsData = { - results: formattedData.results, - page: formattedData.page, - totalDocs: formattedData.totalDocs || 0, - }; - setProjects(projectData); - } - } - }, - [projects, setProjects] - ); - - const fetchUserProfile = useCallback(async () => { - if (!profileId) return; - const response = await getUserProfile(profileId); - if (response) { - setProfile(response); - getProjects({ user_id: response._id }); - setProfileLoaded(profileId); - setLoading(false); - } - }, [profileId, setProfile, getProjects]); + const profile = useAtomValue(ProfileAtom); + const [projects, setProjects] = useAtom(HomePageProjectsAtom); + const { fetchProjectsByCategory } = useHome(); + const { fetchUserProfile } = useProfile(); useEffect(() => { - if (profileId !== profileLoaded) { - setProjects(null); + if (username !== user?.personal_info.username) { + setProjects([]); } - if (projects === null) { - resetState(); + if (projects.length === 0 || profile?.personal_info.username !== username) { fetchUserProfile(); } - }, [ - profileId, - projects, - profileLoaded, - fetchUserProfile, - resetState, - setProjects, - ]); + }, [username]); - if (!user || !profile) { - return ; + if (!profile) { + return ; } return ( - - {loading ? ( - - ) : profile.personal_info.username.length ? ( -
-
- - -

- @{profile.personal_info.username} -

-

- {profile.personal_info.fullname} -

- -

- {profile.account_info.total_posts.toLocaleString()} Projects -{' '} - {profile.account_info.total_reads.toLocaleString()} Reads -

- -
- {profileId === user.username ? ( - - Edit Profile - - ) : ( - '' + + {/* Right Column (Profile Info) */} + ({ md: `1px solid ${theme.palette.divider}` }), + }} + > + + + + + + + {user && username === user.personal_info.username ? ( + + ) : undefined} + + + + + + + {/* Left Column (Projects + About Tabs) */} + + + {projects.length ? ( + ( + )} -
- - { + const nextPage = Math.floor(projects.length / 10) + 1; // Assuming page size of 10 + fetchProjectsByCategory({ + page: nextPage, + user_id: profile._id, + }); + }} + components={{ + Footer: () => + !projects || projects.length === 0 ? ( + + ) : null, // FIX ME + }} /> -
- -
- - <> - {projects === null ? ( - - ) : projects?.results.length ? ( - projects.results.map((project, i) => { - return ( - - - - ); - }) - ) : ( - - )} - - - - - -
-
- ) : ( - - )} -
+ ) : ( + + )} + + + +
+ ); }; diff --git a/client/src/modules/profile/states/index.ts b/client/src/modules/profile/states/index.ts new file mode 100644 index 000000000..8c99c35b3 --- /dev/null +++ b/client/src/modules/profile/states/index.ts @@ -0,0 +1,4 @@ +import { atom } from 'jotai'; +import { getUserProfileResponse } from '../../../infra/rest/apis/user/typing'; + +export const ProfileAtom = atom(null); diff --git a/client/src/modules/project/components/commentCard.tsx b/client/src/modules/project/components/commentCard.tsx deleted file mode 100644 index c66ab8320..000000000 --- a/client/src/modules/project/components/commentCard.tsx +++ /dev/null @@ -1,308 +0,0 @@ -import { useState } from 'react'; -import { getDay } from '../../../shared/utils/date'; -import CommentField from './commentField'; -import { useAtom, useAtomValue, useSetAtom } from 'jotai'; -import { UserAtom } from '../../../shared/states/user'; -import { ProjectAtom } from '../../../shared/states/project'; -import { useNotifications } from '../../../shared/hooks/use-notification'; -import { TotalParentCommentsLoadedAtom } from '../states'; -import { Comment } from '../../../infra/rest/typings'; -import { getReplies, deleteComment } from '../requests'; - -const CommentCard = ({ - index, - leftVal, - commentData, -}: { - index: number; - leftVal: number; - commentData: Comment & { - commented_by?: { - personal_info: { - profile_img: string; - fullname: string; - username: string; - }; - }; - childrenLevel?: number; - isReplyLoaded?: boolean; - }; -}) => { - const user = useAtomValue(UserAtom); - const [project, setProject] = useAtom(ProjectAtom); - const setTotalParentCommentsLoaded = useSetAtom( - TotalParentCommentsLoadedAtom - ); - const { addNotification } = useNotifications(); - - const [isReplying, setReplying] = useState(false); - - if (!project) return null; - - const { - commented_by, - commentedAt, - comment, - _id, - children = [], - childrenLevel = 0, - isReplyLoaded = false, - } = commentData; - - const { - personal_info: { - profile_img, - fullname: commented_by_fullname, - username: commented_by_username, - }, - } = commented_by || { - personal_info: { profile_img: '', fullname: '', username: '' }, - }; - - const { comments, activity } = project; - const commentsArr = comments?.results || []; - const total_parent_comments = activity?.total_parent_comments || 0; - - const getParentIndex = (): number | undefined => { - let startingPoint = index - 1; - - try { - while ( - startingPoint >= 0 && - commentsArr[startingPoint] && - (commentsArr[startingPoint]?.childrenLevel ?? 0) >= childrenLevel - ) { - startingPoint--; - } - } catch { - return undefined; - } - - return startingPoint >= 0 ? startingPoint : undefined; - }; - - const removeCommentsCards = (startingPoint: number, isDelete = false) => { - const newCommentsArr = [...commentsArr]; - - if (newCommentsArr[startingPoint]) { - while ( - newCommentsArr[startingPoint] && - (newCommentsArr[startingPoint]?.childrenLevel ?? 0) > childrenLevel - ) { - newCommentsArr.splice(startingPoint, 1); - if (!newCommentsArr[startingPoint]) { - break; - } - } - } - - if (isDelete) { - const parentIndex = getParentIndex(); - - if (parentIndex !== undefined && newCommentsArr[parentIndex]) { - const parentComment = newCommentsArr[parentIndex]; - if (parentComment) { - parentComment.children = parentComment.children.filter( - child => child !== _id - ); - - if (!parentComment.children.length) { - (parentComment as Comment).isReplyLoaded = false; - } - } - } - - newCommentsArr.splice(index, 1); - } - - if (childrenLevel === 0 && isDelete) { - setTotalParentCommentsLoaded(prevVal => prevVal - 1); - } - - setProject({ - ...project, - comments: { results: newCommentsArr }, - activity: { - ...activity, - total_parent_comments: - total_parent_comments - (childrenLevel === 0 && isDelete ? 1 : 0), - }, - }); - }; - - const loadReplies = async ({ - skip = 0, - currentIndex = index, - }: { - skip?: number; - currentIndex?: number; - }) => { - if (!commentsArr[currentIndex]?.children.length) return; - - hideReplies(); - - try { - const response = await getReplies({ - _id: commentsArr[currentIndex]._id, - skip, - }); - - const newCommentsArr = [...commentsArr]; - (newCommentsArr[currentIndex] as Comment).isReplyLoaded = true; - - for (let i = 0; i < response.replies.length; i++) { - response.replies[i].childrenLevel = - (commentsArr[currentIndex]?.childrenLevel || 0) + 1; - newCommentsArr.splice( - currentIndex + 1 + i + skip, - 0, - response.replies[i] - ); - } - - setProject({ - ...project, - comments: { ...comments, results: newCommentsArr }, - }); - } catch (err) { - console.log(err); - } - }; - - const handleDeleteComment = async ( - e: React.MouseEvent - ) => { - const target = e.target as HTMLButtonElement; - target.setAttribute('disabled', 'true'); - - try { - await deleteComment({ _id }); - - target.removeAttribute('disabled'); - removeCommentsCards(index + 1, true); - } catch (err) { - target.removeAttribute('disabled'); - console.log(err); - } - }; - - const hideReplies = () => { - (commentData as Comment).isReplyLoaded = false; - removeCommentsCards(index + 1); - }; - - const handleReplyClick = () => { - if (!user?.access_token) { - return addNotification({ - message: 'Please login to reply', - type: 'error', - }); - } - setReplying(prevVal => !prevVal); - }; - - const LoadMoreRepliesButton = () => { - const parentIndex = getParentIndex(); - - const btn = ( - - ); - - if (commentsArr[index + 1]) { - if ( - (commentsArr[index + 1]?.childrenLevel || 0) < - (commentsArr[index]?.childrenLevel || 0) - ) { - if ( - parentIndex !== undefined && - index - parentIndex < (commentsArr[parentIndex]?.children.length || 0) - ) { - return btn; - } - } - } else { - if ( - parentIndex !== undefined && - index - parentIndex < (commentsArr[parentIndex]?.children.length || 0) - ) { - return btn; - } - } - - return null; - }; - - return ( -
-
-
- - -

- {commented_by_fullname} @{commented_by_username} -

-

{getDay(commentedAt)}

-
- -

{comment}

- -
- {isReplyLoaded ? ( - - ) : ( - - )} - - - - {(user?.username === commented_by_username || - user?.username === project?.author.personal_info.username) && ( - - )} -
- - {isReplying && ( -
- -
- )} -
- - -
- ); -}; - -export default CommentCard; diff --git a/client/src/modules/project/components/commentField.tsx b/client/src/modules/project/components/commentField.tsx deleted file mode 100644 index 80645b0f7..000000000 --- a/client/src/modules/project/components/commentField.tsx +++ /dev/null @@ -1,142 +0,0 @@ -import { useAtom, useAtomValue, useSetAtom } from 'jotai'; -import { useState } from 'react'; -import { UserAtom } from '../../../shared/states/user'; -import { useNotifications } from '../../../shared/hooks/use-notification'; -import { commentNotification } from '../requests'; -import { ProjectAtom } from '../../../shared/states/project'; -import { TotalParentCommentsLoadedAtom } from '../states'; -import { Comment } from '../../../infra/rest/typings'; - -const CommentField = ({ - action, - index = undefined, - replyingTo = undefined, - setReplying, -}: { - action: string; - index?: number; - replyingTo?: string; - setReplying: (value: boolean) => void; -}) => { - const user = useAtomValue(UserAtom); - const [project, setProject] = useAtom(ProjectAtom); - const setTotalParentCommentsLoaded = useSetAtom( - TotalParentCommentsLoadedAtom - ); - const { addNotification } = useNotifications(); - - const [comment, setComment] = useState(''); - - const handleComment = async () => { - if (!user?.access_token) { - return addNotification({ - message: 'Please login to comment', - type: 'error', - }); - } - if (!comment.length) { - return addNotification({ - message: 'Write something to leave a comment...', - type: 'error', - }); - } - if (!project || !project._id) { - return addNotification({ - message: 'Project not found', - type: 'error', - }); - } - - try { - const response = await commentNotification({ - _id: project._id, - comment, - project_author: project.author._id || '', - replying_to: replyingTo, - }); - - if (response._id) { - setComment(''); - - // Add user info to the response - const commentWithUser = { - ...response, - commented_by: { - personal_info: { - username: user.username || '', - fullname: user.fullname || '', - profile_img: user.profile_img || '', - }, - }, - }; - - const currentComments = project.comments?.results || []; - let newCommentArr: Comment[]; - - if (replyingTo && index !== undefined) { - // Handle reply - const parentComment = currentComments[index]; - if (parentComment) { - parentComment.children.push(response._id); - commentWithUser.childrenLevel = - (parentComment.childrenLevel || 0) + 1; - commentWithUser.parentIndex = index; - (parentComment as Comment).isReplyLoaded = true; - - newCommentArr = [...currentComments]; - newCommentArr.splice(index + 1, 0, commentWithUser); - } else { - newCommentArr = currentComments; - } - setReplying(false); - } else { - // Handle new comment - commentWithUser.childrenLevel = 0; - newCommentArr = [commentWithUser, ...currentComments]; - } - - setProject({ - ...project, - comments: { - ...project.comments, - results: newCommentArr, - }, - activity: { - ...project.activity, - total_comments: (project.activity.total_comments || 0) + 1, - total_parent_comments: - (project.activity.total_parent_comments || 0) + - (replyingTo ? 0 : 1), - }, - }); - - setTotalParentCommentsLoaded(prevVal => prevVal + (replyingTo ? 0 : 1)); - } - } catch (error) { - addNotification({ - message: 'Failed to post comment', - type: 'error', - }); - console.error('Comment error:', error); - } - }; - - return ( - <> -