├── .gitignore ├── .prettierrc ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── App.tsx ├── components │ ├── form-input.tsx │ ├── form-select.tsx │ └── multi-form-step │ │ ├── components │ │ ├── navigation.tsx │ │ ├── step-indicator.tsx │ │ ├── step.tsx │ │ └── stepper.tsx │ │ ├── context.tsx │ │ ├── index.tsx │ │ ├── schema.ts │ │ └── steps │ │ ├── step1.tsx │ │ ├── step2.tsx │ │ └── step3.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "avoid", 3 | "singleQuote": true, 4 | "jsxSingleQuote": true, 5 | "tabWidth": 2, 6 | "trailingComma": "none", 7 | "semi": false, 8 | "proseWrap": "always", 9 | "printWidth": 80, 10 | "plugins": [ 11 | "prettier-plugin-tailwindcss" 12 | ] 13 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🚀 React + TypeScript + Vite + MultiStep Form 🧑‍💻 2 | 3 | This project provides a minimal setup to get started with React and TypeScript 4 | using Vite. It also integrates multi-step form creation with `react-hook-form` 5 | to simplify validation and management of complex forms. 6 | 7 | ## 📦 Packages Used 8 | 9 | - **React**: JavaScript library for building user interfaces. 10 | - **TypeScript**: A superset of JavaScript that adds static typing. 11 | - **Vite**: A fast and optimized build tool for modern frontend development. 12 | - **React Hook Form**: Utility for easy and performant form management. 13 | - **Zod**: A TypeScript-first schema declaration and validation library. 14 | - **TailwindCSS**: A utility-first CSS framework for rapid UI development. 15 | - **ESLint**: A tool for identifying and fixing code issues. 16 | - **Prettier Plugin TailwindCSS**: Plugin to ensure consistent Tailwind class 17 | organization. 18 | 19 | ## 🛠️ Available Scripts 20 | 21 | In the project directory, you can run: 22 | 23 | ### `npm run dev` 24 | 25 | Runs the app in development mode.\ 26 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 27 | 28 | ### `npm run build` 29 | 30 | Builds the app for production to the `dist` folder.\ 31 | The build is minified and optimized for the best performance. 32 | 33 | ### `npm run lint` 34 | 35 | Runs ESLint to identify and fix code issues. 36 | 37 | ### `npm run preview` 38 | 39 | Locally previews the production build. 40 | 41 | ## 🚀 Getting Started 42 | 43 | 1. **Clone the repository:** 44 | 45 | ```bash 46 | git clone https://github.com/your-username/reactjs-multistepform-reacthookform.git 47 | cd reactjs-multistepform-reacthookform 48 | ``` 49 | 50 | 2. **Install the dependencies:** 51 | 52 | ```bash 53 | npm install 54 | ``` 55 | 56 | 3. **Run the project:** 57 | 58 | ```bash 59 | npm run dev 60 | ``` 61 | 62 | ## 🧩 ESLint Configuration 63 | 64 | If you want to expand the ESLint configuration to enable type-aware linting 65 | rules, here is an example: 66 | 67 | ```js 68 | export default tseslint.config({ 69 | languageOptions: { 70 | parserOptions: { 71 | project: ['./tsconfig.node.json', './tsconfig.app.json'], 72 | tsconfigRootDir: import.meta.dirname, 73 | }, 74 | }, 75 | plugins: { 76 | react, 77 | }, 78 | rules: { 79 | ...react.configs.recommended.rules, 80 | ...react.configs['jsx-runtime'].rules, 81 | }, 82 | }) 83 | ``` 84 | 85 | ## 🤝 Contributing 86 | 87 | Contributions are welcome! Feel free to open issues and pull requests for 88 | improvements and fixes. 89 | 90 | ## 📄 License 91 | 92 | This project is licensed under the MIT License - see the [LICENSE](LICENSE) file 93 | for details. 94 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import reactHooks from 'eslint-plugin-react-hooks' 3 | import reactRefresh from 'eslint-plugin-react-refresh' 4 | import globals from 'globals' 5 | import tseslint from 'typescript-eslint' 6 | 7 | export default tseslint.config( 8 | { ignores: ['dist'] }, 9 | { 10 | extends: [js.configs.recommended, ...tseslint.configs.recommended], 11 | files: ['**/*.{ts,tsx}'], 12 | languageOptions: { 13 | ecmaVersion: 2020, 14 | globals: globals.browser, 15 | }, 16 | plugins: { 17 | 'react-hooks': reactHooks, 18 | 'react-refresh': reactRefresh, 19 | }, 20 | rules: { 21 | ...reactHooks.configs.recommended.rules, 22 | 'react-refresh/only-export-components': [ 23 | 'warn', 24 | { allowConstantExport: true }, 25 | ], 26 | '@typescript-eslint/no-explicit-any': ['off'], 27 | }, 28 | }, 29 | ) 30 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Reactjs Multi Step Form with React Hook Form 8 | 9 | 10 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactjs-multistepform-reacthookform", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc -b && vite build", 9 | "lint": "eslint .", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "@hookform/resolvers": "^3.9.0", 14 | "@tailwindcss/vite": "4.0.0-alpha.19", 15 | "prettier-plugin-tailwindcss": "^0.6.6", 16 | "react": "^18.3.1", 17 | "react-dom": "^18.3.1", 18 | "react-hook-form": "^7.52.2", 19 | "tailwindcss": "4.0.0-alpha.19", 20 | "zod": "^3.23.8" 21 | }, 22 | "devDependencies": { 23 | "@eslint/js": "^9.9.0", 24 | "@types/react": "^18.3.3", 25 | "@types/react-dom": "^18.3.0", 26 | "@vitejs/plugin-react-swc": "^3.5.0", 27 | "eslint": "^9.9.0", 28 | "eslint-plugin-react-hooks": "^5.1.0-rc.0", 29 | "eslint-plugin-react-refresh": "^0.4.9", 30 | "globals": "^15.9.0", 31 | "typescript": "^5.5.3", 32 | "typescript-eslint": "^8.0.1", 33 | "vite": "^5.4.1" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | .: 9 | dependencies: 10 | '@hookform/resolvers': 11 | specifier: ^3.9.0 12 | version: 3.9.0(react-hook-form@7.52.2(react@18.3.1)) 13 | '@tailwindcss/vite': 14 | specifier: 4.0.0-alpha.19 15 | version: 4.0.0-alpha.19(postcss@8.4.41)(vite@5.4.1(lightningcss@1.26.0)) 16 | prettier-plugin-tailwindcss: 17 | specifier: ^0.6.6 18 | version: 0.6.6(prettier@3.3.3) 19 | react: 20 | specifier: ^18.3.1 21 | version: 18.3.1 22 | react-dom: 23 | specifier: ^18.3.1 24 | version: 18.3.1(react@18.3.1) 25 | react-hook-form: 26 | specifier: ^7.52.2 27 | version: 7.52.2(react@18.3.1) 28 | tailwindcss: 29 | specifier: 4.0.0-alpha.19 30 | version: 4.0.0-alpha.19 31 | zod: 32 | specifier: ^3.23.8 33 | version: 3.23.8 34 | devDependencies: 35 | '@eslint/js': 36 | specifier: ^9.9.0 37 | version: 9.9.0 38 | '@types/react': 39 | specifier: ^18.3.3 40 | version: 18.3.3 41 | '@types/react-dom': 42 | specifier: ^18.3.0 43 | version: 18.3.0 44 | '@vitejs/plugin-react-swc': 45 | specifier: ^3.5.0 46 | version: 3.7.0(vite@5.4.1(lightningcss@1.26.0)) 47 | eslint: 48 | specifier: ^9.9.0 49 | version: 9.9.0 50 | eslint-plugin-react-hooks: 51 | specifier: ^5.1.0-rc.0 52 | version: 5.1.0-rc-fb9a90fa48-20240614(eslint@9.9.0) 53 | eslint-plugin-react-refresh: 54 | specifier: ^0.4.9 55 | version: 0.4.9(eslint@9.9.0) 56 | globals: 57 | specifier: ^15.9.0 58 | version: 15.9.0 59 | typescript: 60 | specifier: ^5.5.3 61 | version: 5.5.4 62 | typescript-eslint: 63 | specifier: ^8.0.1 64 | version: 8.1.0(eslint@9.9.0)(typescript@5.5.4) 65 | vite: 66 | specifier: ^5.4.1 67 | version: 5.4.1(lightningcss@1.26.0) 68 | 69 | packages: 70 | '@esbuild/aix-ppc64@0.21.5': 71 | resolution: 72 | { 73 | integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== 74 | } 75 | engines: { node: '>=12' } 76 | cpu: [ppc64] 77 | os: [aix] 78 | 79 | '@esbuild/android-arm64@0.21.5': 80 | resolution: 81 | { 82 | integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== 83 | } 84 | engines: { node: '>=12' } 85 | cpu: [arm64] 86 | os: [android] 87 | 88 | '@esbuild/android-arm@0.21.5': 89 | resolution: 90 | { 91 | integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== 92 | } 93 | engines: { node: '>=12' } 94 | cpu: [arm] 95 | os: [android] 96 | 97 | '@esbuild/android-x64@0.21.5': 98 | resolution: 99 | { 100 | integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== 101 | } 102 | engines: { node: '>=12' } 103 | cpu: [x64] 104 | os: [android] 105 | 106 | '@esbuild/darwin-arm64@0.21.5': 107 | resolution: 108 | { 109 | integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== 110 | } 111 | engines: { node: '>=12' } 112 | cpu: [arm64] 113 | os: [darwin] 114 | 115 | '@esbuild/darwin-x64@0.21.5': 116 | resolution: 117 | { 118 | integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== 119 | } 120 | engines: { node: '>=12' } 121 | cpu: [x64] 122 | os: [darwin] 123 | 124 | '@esbuild/freebsd-arm64@0.21.5': 125 | resolution: 126 | { 127 | integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== 128 | } 129 | engines: { node: '>=12' } 130 | cpu: [arm64] 131 | os: [freebsd] 132 | 133 | '@esbuild/freebsd-x64@0.21.5': 134 | resolution: 135 | { 136 | integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== 137 | } 138 | engines: { node: '>=12' } 139 | cpu: [x64] 140 | os: [freebsd] 141 | 142 | '@esbuild/linux-arm64@0.21.5': 143 | resolution: 144 | { 145 | integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== 146 | } 147 | engines: { node: '>=12' } 148 | cpu: [arm64] 149 | os: [linux] 150 | 151 | '@esbuild/linux-arm@0.21.5': 152 | resolution: 153 | { 154 | integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== 155 | } 156 | engines: { node: '>=12' } 157 | cpu: [arm] 158 | os: [linux] 159 | 160 | '@esbuild/linux-ia32@0.21.5': 161 | resolution: 162 | { 163 | integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== 164 | } 165 | engines: { node: '>=12' } 166 | cpu: [ia32] 167 | os: [linux] 168 | 169 | '@esbuild/linux-loong64@0.21.5': 170 | resolution: 171 | { 172 | integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== 173 | } 174 | engines: { node: '>=12' } 175 | cpu: [loong64] 176 | os: [linux] 177 | 178 | '@esbuild/linux-mips64el@0.21.5': 179 | resolution: 180 | { 181 | integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== 182 | } 183 | engines: { node: '>=12' } 184 | cpu: [mips64el] 185 | os: [linux] 186 | 187 | '@esbuild/linux-ppc64@0.21.5': 188 | resolution: 189 | { 190 | integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== 191 | } 192 | engines: { node: '>=12' } 193 | cpu: [ppc64] 194 | os: [linux] 195 | 196 | '@esbuild/linux-riscv64@0.21.5': 197 | resolution: 198 | { 199 | integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== 200 | } 201 | engines: { node: '>=12' } 202 | cpu: [riscv64] 203 | os: [linux] 204 | 205 | '@esbuild/linux-s390x@0.21.5': 206 | resolution: 207 | { 208 | integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== 209 | } 210 | engines: { node: '>=12' } 211 | cpu: [s390x] 212 | os: [linux] 213 | 214 | '@esbuild/linux-x64@0.21.5': 215 | resolution: 216 | { 217 | integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== 218 | } 219 | engines: { node: '>=12' } 220 | cpu: [x64] 221 | os: [linux] 222 | 223 | '@esbuild/netbsd-x64@0.21.5': 224 | resolution: 225 | { 226 | integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== 227 | } 228 | engines: { node: '>=12' } 229 | cpu: [x64] 230 | os: [netbsd] 231 | 232 | '@esbuild/openbsd-x64@0.21.5': 233 | resolution: 234 | { 235 | integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== 236 | } 237 | engines: { node: '>=12' } 238 | cpu: [x64] 239 | os: [openbsd] 240 | 241 | '@esbuild/sunos-x64@0.21.5': 242 | resolution: 243 | { 244 | integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== 245 | } 246 | engines: { node: '>=12' } 247 | cpu: [x64] 248 | os: [sunos] 249 | 250 | '@esbuild/win32-arm64@0.21.5': 251 | resolution: 252 | { 253 | integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== 254 | } 255 | engines: { node: '>=12' } 256 | cpu: [arm64] 257 | os: [win32] 258 | 259 | '@esbuild/win32-ia32@0.21.5': 260 | resolution: 261 | { 262 | integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== 263 | } 264 | engines: { node: '>=12' } 265 | cpu: [ia32] 266 | os: [win32] 267 | 268 | '@esbuild/win32-x64@0.21.5': 269 | resolution: 270 | { 271 | integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== 272 | } 273 | engines: { node: '>=12' } 274 | cpu: [x64] 275 | os: [win32] 276 | 277 | '@eslint-community/eslint-utils@4.4.0': 278 | resolution: 279 | { 280 | integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 281 | } 282 | engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } 283 | peerDependencies: 284 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 285 | 286 | '@eslint-community/regexpp@4.11.0': 287 | resolution: 288 | { 289 | integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A== 290 | } 291 | engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } 292 | 293 | '@eslint/config-array@0.17.1': 294 | resolution: 295 | { 296 | integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA== 297 | } 298 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 299 | 300 | '@eslint/eslintrc@3.1.0': 301 | resolution: 302 | { 303 | integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ== 304 | } 305 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 306 | 307 | '@eslint/js@9.9.0': 308 | resolution: 309 | { 310 | integrity: sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug== 311 | } 312 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 313 | 314 | '@eslint/object-schema@2.1.4': 315 | resolution: 316 | { 317 | integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ== 318 | } 319 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 320 | 321 | '@hookform/resolvers@3.9.0': 322 | resolution: 323 | { 324 | integrity: sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg== 325 | } 326 | peerDependencies: 327 | react-hook-form: ^7.0.0 328 | 329 | '@humanwhocodes/module-importer@1.0.1': 330 | resolution: 331 | { 332 | integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 333 | } 334 | engines: { node: '>=12.22' } 335 | 336 | '@humanwhocodes/retry@0.3.0': 337 | resolution: 338 | { 339 | integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew== 340 | } 341 | engines: { node: '>=18.18' } 342 | 343 | '@nodelib/fs.scandir@2.1.5': 344 | resolution: 345 | { 346 | integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 347 | } 348 | engines: { node: '>= 8' } 349 | 350 | '@nodelib/fs.stat@2.0.5': 351 | resolution: 352 | { 353 | integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 354 | } 355 | engines: { node: '>= 8' } 356 | 357 | '@nodelib/fs.walk@1.2.8': 358 | resolution: 359 | { 360 | integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 361 | } 362 | engines: { node: '>= 8' } 363 | 364 | '@rollup/rollup-android-arm-eabi@4.20.0': 365 | resolution: 366 | { 367 | integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA== 368 | } 369 | cpu: [arm] 370 | os: [android] 371 | 372 | '@rollup/rollup-android-arm64@4.20.0': 373 | resolution: 374 | { 375 | integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ== 376 | } 377 | cpu: [arm64] 378 | os: [android] 379 | 380 | '@rollup/rollup-darwin-arm64@4.20.0': 381 | resolution: 382 | { 383 | integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q== 384 | } 385 | cpu: [arm64] 386 | os: [darwin] 387 | 388 | '@rollup/rollup-darwin-x64@4.20.0': 389 | resolution: 390 | { 391 | integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ== 392 | } 393 | cpu: [x64] 394 | os: [darwin] 395 | 396 | '@rollup/rollup-linux-arm-gnueabihf@4.20.0': 397 | resolution: 398 | { 399 | integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA== 400 | } 401 | cpu: [arm] 402 | os: [linux] 403 | 404 | '@rollup/rollup-linux-arm-musleabihf@4.20.0': 405 | resolution: 406 | { 407 | integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw== 408 | } 409 | cpu: [arm] 410 | os: [linux] 411 | 412 | '@rollup/rollup-linux-arm64-gnu@4.20.0': 413 | resolution: 414 | { 415 | integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ== 416 | } 417 | cpu: [arm64] 418 | os: [linux] 419 | 420 | '@rollup/rollup-linux-arm64-musl@4.20.0': 421 | resolution: 422 | { 423 | integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q== 424 | } 425 | cpu: [arm64] 426 | os: [linux] 427 | 428 | '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': 429 | resolution: 430 | { 431 | integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw== 432 | } 433 | cpu: [ppc64] 434 | os: [linux] 435 | 436 | '@rollup/rollup-linux-riscv64-gnu@4.20.0': 437 | resolution: 438 | { 439 | integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA== 440 | } 441 | cpu: [riscv64] 442 | os: [linux] 443 | 444 | '@rollup/rollup-linux-s390x-gnu@4.20.0': 445 | resolution: 446 | { 447 | integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg== 448 | } 449 | cpu: [s390x] 450 | os: [linux] 451 | 452 | '@rollup/rollup-linux-x64-gnu@4.20.0': 453 | resolution: 454 | { 455 | integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew== 456 | } 457 | cpu: [x64] 458 | os: [linux] 459 | 460 | '@rollup/rollup-linux-x64-musl@4.20.0': 461 | resolution: 462 | { 463 | integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg== 464 | } 465 | cpu: [x64] 466 | os: [linux] 467 | 468 | '@rollup/rollup-win32-arm64-msvc@4.20.0': 469 | resolution: 470 | { 471 | integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA== 472 | } 473 | cpu: [arm64] 474 | os: [win32] 475 | 476 | '@rollup/rollup-win32-ia32-msvc@4.20.0': 477 | resolution: 478 | { 479 | integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A== 480 | } 481 | cpu: [ia32] 482 | os: [win32] 483 | 484 | '@rollup/rollup-win32-x64-msvc@4.20.0': 485 | resolution: 486 | { 487 | integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg== 488 | } 489 | cpu: [x64] 490 | os: [win32] 491 | 492 | '@swc/core-darwin-arm64@1.7.11': 493 | resolution: 494 | { 495 | integrity: sha512-HRQv4qIeMBPThZ6Y/4yYW52rGsS6yrpusvuxLGyoFo45Y0y12/V2yXkOIA/0HIQyrqoUAxn1k4zQXpPaPNCmnw== 496 | } 497 | engines: { node: '>=10' } 498 | cpu: [arm64] 499 | os: [darwin] 500 | 501 | '@swc/core-darwin-x64@1.7.11': 502 | resolution: 503 | { 504 | integrity: sha512-vtMQj0F3oYwDu5yhO7SKDRg1XekRSi6/TbzHAbBXv+dBhlGGvcZZynT1H90EVFTv+7w7Sh+lOFvRv5Z4ZTcxow== 505 | } 506 | engines: { node: '>=10' } 507 | cpu: [x64] 508 | os: [darwin] 509 | 510 | '@swc/core-linux-arm-gnueabihf@1.7.11': 511 | resolution: 512 | { 513 | integrity: sha512-mHtzWKxhtyreI4CSxs+3+ENv8t/Qo35WFoYG66qHEgJz/Z2Lh6jv1E+MYgHdYwnpQHgHbdvAco7HsBu/Dt6xXw== 514 | } 515 | engines: { node: '>=10' } 516 | cpu: [arm] 517 | os: [linux] 518 | 519 | '@swc/core-linux-arm64-gnu@1.7.11': 520 | resolution: 521 | { 522 | integrity: sha512-FRwe/x0GfXSQjGP2lIk+NO0pUFS/lI/RorCLBPiK808EVE9JTbh9DKCc/4Bbb4jgScAjNkrFCUVObQYl3YKmpA== 523 | } 524 | engines: { node: '>=10' } 525 | cpu: [arm64] 526 | os: [linux] 527 | 528 | '@swc/core-linux-arm64-musl@1.7.11': 529 | resolution: 530 | { 531 | integrity: sha512-GY/rs0+GUq14Gbnza90KOrQd/9yHd5qQMii5jcSWcUCT5A8QTa8kiicsM2NxZeTJ69xlKmT7sLod5l99lki/2A== 532 | } 533 | engines: { node: '>=10' } 534 | cpu: [arm64] 535 | os: [linux] 536 | 537 | '@swc/core-linux-x64-gnu@1.7.11': 538 | resolution: 539 | { 540 | integrity: sha512-QDkGRwSPmp2RBOlSs503IUXlWYlny8DyznTT0QuK0ML2RpDFlXWU94K/EZhS0RBEUkMY/W51OacM8P8aS/dkCg== 541 | } 542 | engines: { node: '>=10' } 543 | cpu: [x64] 544 | os: [linux] 545 | 546 | '@swc/core-linux-x64-musl@1.7.11': 547 | resolution: 548 | { 549 | integrity: sha512-SBEfKrXy6zQ6ksnyxw1FaCftrIH4fLfA81xNnKb7x/6iblv7Ko6H0aK3P5C86jyqF/82+ONl9C7ImGkUFQADig== 550 | } 551 | engines: { node: '>=10' } 552 | cpu: [x64] 553 | os: [linux] 554 | 555 | '@swc/core-win32-arm64-msvc@1.7.11': 556 | resolution: 557 | { 558 | integrity: sha512-a2Y4xxEsLLYHJN7sMnw9+YQJDi3M1BxEr9hklfopPuGGnYLFNnx5CypH1l9ReijEfWjIAHNi7pq3m023lzW1Hg== 559 | } 560 | engines: { node: '>=10' } 561 | cpu: [arm64] 562 | os: [win32] 563 | 564 | '@swc/core-win32-ia32-msvc@1.7.11': 565 | resolution: 566 | { 567 | integrity: sha512-ZbZFMwZO+j8ulhegJ7EhJ/QVZPoQ5qc30ylJQSxizizTJaen71Q7/13lXWc6ksuCKvg6dUKrp/TPgoxOOtSrFA== 568 | } 569 | engines: { node: '>=10' } 570 | cpu: [ia32] 571 | os: [win32] 572 | 573 | '@swc/core-win32-x64-msvc@1.7.11': 574 | resolution: 575 | { 576 | integrity: sha512-IUohZedSJyDu/ReEBG/mqX6uG29uA7zZ9z6dIAF+p6eFxjXmh9MuHryyM+H8ebUyoq/Ad3rL+rUCksnuYNnI0w== 577 | } 578 | engines: { node: '>=10' } 579 | cpu: [x64] 580 | os: [win32] 581 | 582 | '@swc/core@1.7.11': 583 | resolution: 584 | { 585 | integrity: sha512-AB+qc45UrJrDfbhPKcUXk+9z/NmFfYYwJT6G7/iur0fCse9kXjx45gi40+u/O2zgarG/30/zV6E3ps8fUvjh7g== 586 | } 587 | engines: { node: '>=10' } 588 | peerDependencies: 589 | '@swc/helpers': '*' 590 | peerDependenciesMeta: 591 | '@swc/helpers': 592 | optional: true 593 | 594 | '@swc/counter@0.1.3': 595 | resolution: 596 | { 597 | integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== 598 | } 599 | 600 | '@swc/types@0.1.12': 601 | resolution: 602 | { 603 | integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA== 604 | } 605 | 606 | '@tailwindcss/oxide-android-arm64@4.0.0-alpha.19': 607 | resolution: 608 | { 609 | integrity: sha512-NhpXem1j7g0uSGyLucmMj0VVQMeUrWc6kR/Ymnri3tpw2eaykgFYwLfdnI7jdJRxUxa/nNJip9yBJ3diZXl60w== 610 | } 611 | engines: { node: '>= 10' } 612 | cpu: [arm64] 613 | os: [android] 614 | 615 | '@tailwindcss/oxide-darwin-arm64@4.0.0-alpha.19': 616 | resolution: 617 | { 618 | integrity: sha512-KCdalT+huX2cW9snNmPr+B66V91cSzIobBCXVgYCPCh0NZF4ueKu+X+kQN2gFxurDUm/D+aKW/0rQUIsUmFpdQ== 619 | } 620 | engines: { node: '>= 10' } 621 | cpu: [arm64] 622 | os: [darwin] 623 | 624 | '@tailwindcss/oxide-darwin-x64@4.0.0-alpha.19': 625 | resolution: 626 | { 627 | integrity: sha512-ETOWA08loUmOVTEa3zhRhY8HyqdGtR9DNhXdrRZBi67ZwCAmA+jg5B+mZaYeQJ6CjETx07BnhcGmmxGz3/6c8w== 628 | } 629 | engines: { node: '>= 10' } 630 | cpu: [x64] 631 | os: [darwin] 632 | 633 | '@tailwindcss/oxide-freebsd-x64@4.0.0-alpha.19': 634 | resolution: 635 | { 636 | integrity: sha512-uB0rYLpqPnmyqtYSKHu1AtnHeerNcVH+de0sIufGCBDFGYNxmW8feCKNZwo6r7U/Fzg+AF9BOjwvdvd4yLfQ8g== 637 | } 638 | engines: { node: '>= 10' } 639 | cpu: [x64] 640 | os: [freebsd] 641 | 642 | '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.0-alpha.19': 643 | resolution: 644 | { 645 | integrity: sha512-hIfm6DNh18rkz2PFRsQANINH0tpso6/vaU8p0Qw7rgYqqrxJTRpyLVsnvx3ahMOplJrDT6Z+Nfak8udnZN2C/Q== 646 | } 647 | engines: { node: '>= 10' } 648 | cpu: [arm] 649 | os: [linux] 650 | 651 | '@tailwindcss/oxide-linux-arm64-gnu@4.0.0-alpha.19': 652 | resolution: 653 | { 654 | integrity: sha512-n1Hr+8Hup2GLmeonQy9ydZxMBCs0FR1rcv4K7AHip+6PbD0se8k9LBIZac3OguFNj2hTehiadaiRb18rsVUw0g== 655 | } 656 | engines: { node: '>= 10' } 657 | cpu: [arm64] 658 | os: [linux] 659 | 660 | '@tailwindcss/oxide-linux-arm64-musl@4.0.0-alpha.19': 661 | resolution: 662 | { 663 | integrity: sha512-KhwthLZh9Js3t5URkuRURw45iU3rSh9vhuHRaV4KQT10ZFiXQMUlFfMKJyxRMcgC2fcL5vsiqwjOaMwp7Y8vsQ== 664 | } 665 | engines: { node: '>= 10' } 666 | cpu: [arm64] 667 | os: [linux] 668 | 669 | '@tailwindcss/oxide-linux-x64-gnu@4.0.0-alpha.19': 670 | resolution: 671 | { 672 | integrity: sha512-qqEuULSiczyZkdWVzwkiiFyOYqx5RR2De75iwYREzXUuHRHval1ep2qO7tvZdgt37t2vgjoQwaPA6zO+JGUa+Q== 673 | } 674 | engines: { node: '>= 10' } 675 | cpu: [x64] 676 | os: [linux] 677 | 678 | '@tailwindcss/oxide-linux-x64-musl@4.0.0-alpha.19': 679 | resolution: 680 | { 681 | integrity: sha512-JKTYCiNz83sYl2FgKJk3dL11FS4dAj7Rgmuz3TVANmeMYTBtwmFPthoH0qAmF+hjPJgT5Ne7lSwplfuHJAD3MQ== 682 | } 683 | engines: { node: '>= 10' } 684 | cpu: [x64] 685 | os: [linux] 686 | 687 | '@tailwindcss/oxide-win32-x64-msvc@4.0.0-alpha.19': 688 | resolution: 689 | { 690 | integrity: sha512-D43tji14+i/GhJn5YZX8c2FXFmAqlI6DDGX8caUM35dga/uT+sJUfLJ84YigJyvAdSF1gBVdm7MvhYRcVYHOwg== 691 | } 692 | engines: { node: '>= 10' } 693 | cpu: [x64] 694 | os: [win32] 695 | 696 | '@tailwindcss/oxide@4.0.0-alpha.19': 697 | resolution: 698 | { 699 | integrity: sha512-DdkrVz/MKPoe9v7W3c0+SEFKRDIPMSsxgN7gPC+xeTnTL4BGoT5b1EiVGFuXWEyLbDmWztuN6z75Yuze2BwvMQ== 700 | } 701 | engines: { node: '>= 10' } 702 | 703 | '@tailwindcss/vite@4.0.0-alpha.19': 704 | resolution: 705 | { 706 | integrity: sha512-+JG43ehbw1YyPAHjl7zzUpaR8egqJwC5/R//QMn8DsQ1fBaeTs2U+/0W9dkh5SVcFijRhldayvMs5zixGQHiSA== 707 | } 708 | peerDependencies: 709 | vite: ^5.2.0 710 | 711 | '@types/estree@1.0.5': 712 | resolution: 713 | { 714 | integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== 715 | } 716 | 717 | '@types/prop-types@15.7.12': 718 | resolution: 719 | { 720 | integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== 721 | } 722 | 723 | '@types/react-dom@18.3.0': 724 | resolution: 725 | { 726 | integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg== 727 | } 728 | 729 | '@types/react@18.3.3': 730 | resolution: 731 | { 732 | integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw== 733 | } 734 | 735 | '@typescript-eslint/eslint-plugin@8.1.0': 736 | resolution: 737 | { 738 | integrity: sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw== 739 | } 740 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 741 | peerDependencies: 742 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 743 | eslint: ^8.57.0 || ^9.0.0 744 | typescript: '*' 745 | peerDependenciesMeta: 746 | typescript: 747 | optional: true 748 | 749 | '@typescript-eslint/parser@8.1.0': 750 | resolution: 751 | { 752 | integrity: sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA== 753 | } 754 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 755 | peerDependencies: 756 | eslint: ^8.57.0 || ^9.0.0 757 | typescript: '*' 758 | peerDependenciesMeta: 759 | typescript: 760 | optional: true 761 | 762 | '@typescript-eslint/scope-manager@8.1.0': 763 | resolution: 764 | { 765 | integrity: sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ== 766 | } 767 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 768 | 769 | '@typescript-eslint/type-utils@8.1.0': 770 | resolution: 771 | { 772 | integrity: sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA== 773 | } 774 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 775 | peerDependencies: 776 | typescript: '*' 777 | peerDependenciesMeta: 778 | typescript: 779 | optional: true 780 | 781 | '@typescript-eslint/types@8.1.0': 782 | resolution: 783 | { 784 | integrity: sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog== 785 | } 786 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 787 | 788 | '@typescript-eslint/typescript-estree@8.1.0': 789 | resolution: 790 | { 791 | integrity: sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg== 792 | } 793 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 794 | peerDependencies: 795 | typescript: '*' 796 | peerDependenciesMeta: 797 | typescript: 798 | optional: true 799 | 800 | '@typescript-eslint/utils@8.1.0': 801 | resolution: 802 | { 803 | integrity: sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA== 804 | } 805 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 806 | peerDependencies: 807 | eslint: ^8.57.0 || ^9.0.0 808 | 809 | '@typescript-eslint/visitor-keys@8.1.0': 810 | resolution: 811 | { 812 | integrity: sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag== 813 | } 814 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 815 | 816 | '@vitejs/plugin-react-swc@3.7.0': 817 | resolution: 818 | { 819 | integrity: sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA== 820 | } 821 | peerDependencies: 822 | vite: ^4 || ^5 823 | 824 | acorn-jsx@5.3.2: 825 | resolution: 826 | { 827 | integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 828 | } 829 | peerDependencies: 830 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 831 | 832 | acorn@8.12.1: 833 | resolution: 834 | { 835 | integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== 836 | } 837 | engines: { node: '>=0.4.0' } 838 | hasBin: true 839 | 840 | ajv@6.12.6: 841 | resolution: 842 | { 843 | integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 844 | } 845 | 846 | ansi-regex@5.0.1: 847 | resolution: 848 | { 849 | integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 850 | } 851 | engines: { node: '>=8' } 852 | 853 | ansi-styles@4.3.0: 854 | resolution: 855 | { 856 | integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 857 | } 858 | engines: { node: '>=8' } 859 | 860 | argparse@2.0.1: 861 | resolution: 862 | { 863 | integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 864 | } 865 | 866 | array-union@2.1.0: 867 | resolution: 868 | { 869 | integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 870 | } 871 | engines: { node: '>=8' } 872 | 873 | balanced-match@1.0.2: 874 | resolution: 875 | { 876 | integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 877 | } 878 | 879 | brace-expansion@1.1.11: 880 | resolution: 881 | { 882 | integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 883 | } 884 | 885 | brace-expansion@2.0.1: 886 | resolution: 887 | { 888 | integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 889 | } 890 | 891 | braces@3.0.3: 892 | resolution: 893 | { 894 | integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 895 | } 896 | engines: { node: '>=8' } 897 | 898 | callsites@3.1.0: 899 | resolution: 900 | { 901 | integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 902 | } 903 | engines: { node: '>=6' } 904 | 905 | chalk@4.1.2: 906 | resolution: 907 | { 908 | integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 909 | } 910 | engines: { node: '>=10' } 911 | 912 | color-convert@2.0.1: 913 | resolution: 914 | { 915 | integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 916 | } 917 | engines: { node: '>=7.0.0' } 918 | 919 | color-name@1.1.4: 920 | resolution: 921 | { 922 | integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 923 | } 924 | 925 | concat-map@0.0.1: 926 | resolution: 927 | { 928 | integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 929 | } 930 | 931 | cross-spawn@7.0.3: 932 | resolution: 933 | { 934 | integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 935 | } 936 | engines: { node: '>= 8' } 937 | 938 | csstype@3.1.3: 939 | resolution: 940 | { 941 | integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 942 | } 943 | 944 | debug@4.3.6: 945 | resolution: 946 | { 947 | integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== 948 | } 949 | engines: { node: '>=6.0' } 950 | peerDependencies: 951 | supports-color: '*' 952 | peerDependenciesMeta: 953 | supports-color: 954 | optional: true 955 | 956 | deep-is@0.1.4: 957 | resolution: 958 | { 959 | integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 960 | } 961 | 962 | detect-libc@1.0.3: 963 | resolution: 964 | { 965 | integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== 966 | } 967 | engines: { node: '>=0.10' } 968 | hasBin: true 969 | 970 | dir-glob@3.0.1: 971 | resolution: 972 | { 973 | integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 974 | } 975 | engines: { node: '>=8' } 976 | 977 | esbuild@0.21.5: 978 | resolution: 979 | { 980 | integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== 981 | } 982 | engines: { node: '>=12' } 983 | hasBin: true 984 | 985 | escape-string-regexp@4.0.0: 986 | resolution: 987 | { 988 | integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 989 | } 990 | engines: { node: '>=10' } 991 | 992 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614: 993 | resolution: 994 | { 995 | integrity: sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w== 996 | } 997 | engines: { node: '>=10' } 998 | peerDependencies: 999 | eslint: 1000 | ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 1001 | 1002 | eslint-plugin-react-refresh@0.4.9: 1003 | resolution: 1004 | { 1005 | integrity: sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA== 1006 | } 1007 | peerDependencies: 1008 | eslint: '>=7' 1009 | 1010 | eslint-scope@8.0.2: 1011 | resolution: 1012 | { 1013 | integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA== 1014 | } 1015 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 1016 | 1017 | eslint-visitor-keys@3.4.3: 1018 | resolution: 1019 | { 1020 | integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 1021 | } 1022 | engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } 1023 | 1024 | eslint-visitor-keys@4.0.0: 1025 | resolution: 1026 | { 1027 | integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw== 1028 | } 1029 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 1030 | 1031 | eslint@9.9.0: 1032 | resolution: 1033 | { 1034 | integrity: sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA== 1035 | } 1036 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 1037 | hasBin: true 1038 | peerDependencies: 1039 | jiti: '*' 1040 | peerDependenciesMeta: 1041 | jiti: 1042 | optional: true 1043 | 1044 | espree@10.1.0: 1045 | resolution: 1046 | { 1047 | integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA== 1048 | } 1049 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 1050 | 1051 | esquery@1.6.0: 1052 | resolution: 1053 | { 1054 | integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== 1055 | } 1056 | engines: { node: '>=0.10' } 1057 | 1058 | esrecurse@4.3.0: 1059 | resolution: 1060 | { 1061 | integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1062 | } 1063 | engines: { node: '>=4.0' } 1064 | 1065 | estraverse@5.3.0: 1066 | resolution: 1067 | { 1068 | integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1069 | } 1070 | engines: { node: '>=4.0' } 1071 | 1072 | esutils@2.0.3: 1073 | resolution: 1074 | { 1075 | integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1076 | } 1077 | engines: { node: '>=0.10.0' } 1078 | 1079 | fast-deep-equal@3.1.3: 1080 | resolution: 1081 | { 1082 | integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1083 | } 1084 | 1085 | fast-glob@3.3.2: 1086 | resolution: 1087 | { 1088 | integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== 1089 | } 1090 | engines: { node: '>=8.6.0' } 1091 | 1092 | fast-json-stable-stringify@2.1.0: 1093 | resolution: 1094 | { 1095 | integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1096 | } 1097 | 1098 | fast-levenshtein@2.0.6: 1099 | resolution: 1100 | { 1101 | integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1102 | } 1103 | 1104 | fastq@1.17.1: 1105 | resolution: 1106 | { 1107 | integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== 1108 | } 1109 | 1110 | file-entry-cache@8.0.0: 1111 | resolution: 1112 | { 1113 | integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== 1114 | } 1115 | engines: { node: '>=16.0.0' } 1116 | 1117 | fill-range@7.1.1: 1118 | resolution: 1119 | { 1120 | integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 1121 | } 1122 | engines: { node: '>=8' } 1123 | 1124 | find-up@5.0.0: 1125 | resolution: 1126 | { 1127 | integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1128 | } 1129 | engines: { node: '>=10' } 1130 | 1131 | flat-cache@4.0.1: 1132 | resolution: 1133 | { 1134 | integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== 1135 | } 1136 | engines: { node: '>=16' } 1137 | 1138 | flatted@3.3.1: 1139 | resolution: 1140 | { 1141 | integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== 1142 | } 1143 | 1144 | fsevents@2.3.3: 1145 | resolution: 1146 | { 1147 | integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1148 | } 1149 | engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } 1150 | os: [darwin] 1151 | 1152 | glob-parent@5.1.2: 1153 | resolution: 1154 | { 1155 | integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1156 | } 1157 | engines: { node: '>= 6' } 1158 | 1159 | glob-parent@6.0.2: 1160 | resolution: 1161 | { 1162 | integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1163 | } 1164 | engines: { node: '>=10.13.0' } 1165 | 1166 | globals@14.0.0: 1167 | resolution: 1168 | { 1169 | integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== 1170 | } 1171 | engines: { node: '>=18' } 1172 | 1173 | globals@15.9.0: 1174 | resolution: 1175 | { 1176 | integrity: sha512-SmblueLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA== 1177 | } 1178 | engines: { node: '>=18' } 1179 | 1180 | globby@11.1.0: 1181 | resolution: 1182 | { 1183 | integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1184 | } 1185 | engines: { node: '>=10' } 1186 | 1187 | graphemer@1.4.0: 1188 | resolution: 1189 | { 1190 | integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1191 | } 1192 | 1193 | has-flag@4.0.0: 1194 | resolution: 1195 | { 1196 | integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1197 | } 1198 | engines: { node: '>=8' } 1199 | 1200 | ignore@5.3.2: 1201 | resolution: 1202 | { 1203 | integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== 1204 | } 1205 | engines: { node: '>= 4' } 1206 | 1207 | import-fresh@3.3.0: 1208 | resolution: 1209 | { 1210 | integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1211 | } 1212 | engines: { node: '>=6' } 1213 | 1214 | imurmurhash@0.1.4: 1215 | resolution: 1216 | { 1217 | integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1218 | } 1219 | engines: { node: '>=0.8.19' } 1220 | 1221 | is-extglob@2.1.1: 1222 | resolution: 1223 | { 1224 | integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1225 | } 1226 | engines: { node: '>=0.10.0' } 1227 | 1228 | is-glob@4.0.3: 1229 | resolution: 1230 | { 1231 | integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1232 | } 1233 | engines: { node: '>=0.10.0' } 1234 | 1235 | is-number@7.0.0: 1236 | resolution: 1237 | { 1238 | integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1239 | } 1240 | engines: { node: '>=0.12.0' } 1241 | 1242 | is-path-inside@3.0.3: 1243 | resolution: 1244 | { 1245 | integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1246 | } 1247 | engines: { node: '>=8' } 1248 | 1249 | isexe@2.0.0: 1250 | resolution: 1251 | { 1252 | integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1253 | } 1254 | 1255 | js-tokens@4.0.0: 1256 | resolution: 1257 | { 1258 | integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1259 | } 1260 | 1261 | js-yaml@4.1.0: 1262 | resolution: 1263 | { 1264 | integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1265 | } 1266 | hasBin: true 1267 | 1268 | json-buffer@3.0.1: 1269 | resolution: 1270 | { 1271 | integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 1272 | } 1273 | 1274 | json-schema-traverse@0.4.1: 1275 | resolution: 1276 | { 1277 | integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1278 | } 1279 | 1280 | json-stable-stringify-without-jsonify@1.0.1: 1281 | resolution: 1282 | { 1283 | integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1284 | } 1285 | 1286 | keyv@4.5.4: 1287 | resolution: 1288 | { 1289 | integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 1290 | } 1291 | 1292 | levn@0.4.1: 1293 | resolution: 1294 | { 1295 | integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1296 | } 1297 | engines: { node: '>= 0.8.0' } 1298 | 1299 | lightningcss-darwin-arm64@1.26.0: 1300 | resolution: 1301 | { 1302 | integrity: sha512-n4TIvHO1NY1ondKFYpL2ZX0bcC2y6yjXMD6JfyizgR8BCFNEeArINDzEaeqlfX9bXz73Bpz/Ow0nu+1qiDrBKg== 1303 | } 1304 | engines: { node: '>= 12.0.0' } 1305 | cpu: [arm64] 1306 | os: [darwin] 1307 | 1308 | lightningcss-darwin-x64@1.26.0: 1309 | resolution: 1310 | { 1311 | integrity: sha512-Rf9HuHIDi1R6/zgBkJh25SiJHF+dm9axUZW/0UoYCW1/8HV0gMI0blARhH4z+REmWiU1yYT/KyNF3h7tHyRXUg== 1312 | } 1313 | engines: { node: '>= 12.0.0' } 1314 | cpu: [x64] 1315 | os: [darwin] 1316 | 1317 | lightningcss-freebsd-x64@1.26.0: 1318 | resolution: 1319 | { 1320 | integrity: sha512-C/io7POAxp6sZxFSVGezjajMlCKQ8KSwISLLGRq8xLQpQMokYrUoqYEwmIX8mLmF6C/CZPk0gFmRSzd8biWM0g== 1321 | } 1322 | engines: { node: '>= 12.0.0' } 1323 | cpu: [x64] 1324 | os: [freebsd] 1325 | 1326 | lightningcss-linux-arm-gnueabihf@1.26.0: 1327 | resolution: 1328 | { 1329 | integrity: sha512-Aag9kqXqkyPSW+dXMgyWk66C984Nay2pY8Nws+67gHlDzV3cWh7TvFlzuaTaVFMVqdDTzN484LSK3u39zFBnzg== 1330 | } 1331 | engines: { node: '>= 12.0.0' } 1332 | cpu: [arm] 1333 | os: [linux] 1334 | 1335 | lightningcss-linux-arm64-gnu@1.26.0: 1336 | resolution: 1337 | { 1338 | integrity: sha512-iJmZM7fUyVjH+POtdiCtExG+67TtPUTer7K/5A8DIfmPfrmeGvzfRyBltGhQz13Wi15K1lf2cPYoRaRh6vcwNA== 1339 | } 1340 | engines: { node: '>= 12.0.0' } 1341 | cpu: [arm64] 1342 | os: [linux] 1343 | 1344 | lightningcss-linux-arm64-musl@1.26.0: 1345 | resolution: 1346 | { 1347 | integrity: sha512-XxoEL++tTkyuvu+wq/QS8bwyTXZv2y5XYCMcWL45b8XwkiS8eEEEej9BkMGSRwxa5J4K+LDeIhLrS23CpQyfig== 1348 | } 1349 | engines: { node: '>= 12.0.0' } 1350 | cpu: [arm64] 1351 | os: [linux] 1352 | 1353 | lightningcss-linux-x64-gnu@1.26.0: 1354 | resolution: 1355 | { 1356 | integrity: sha512-1dkTfZQAYLj8MUSkd6L/+TWTG8V6Kfrzfa0T1fSlXCXQHrt1HC1/UepXHtKHDt/9yFwyoeayivxXAsApVxn6zA== 1357 | } 1358 | engines: { node: '>= 12.0.0' } 1359 | cpu: [x64] 1360 | os: [linux] 1361 | 1362 | lightningcss-linux-x64-musl@1.26.0: 1363 | resolution: 1364 | { 1365 | integrity: sha512-yX3Rk9m00JGCUzuUhFEojY+jf/6zHs3XU8S8Vk+FRbnr4St7cjyMXdNjuA2LjiT8e7j8xHRCH8hyZ4H/btRE4A== 1366 | } 1367 | engines: { node: '>= 12.0.0' } 1368 | cpu: [x64] 1369 | os: [linux] 1370 | 1371 | lightningcss-win32-arm64-msvc@1.26.0: 1372 | resolution: 1373 | { 1374 | integrity: sha512-X/597/cFnCogy9VItj/+7Tgu5VLbAtDF7KZDPdSw0MaL6FL940th1y3HiOzFIlziVvAtbo0RB3NAae1Oofr+Tw== 1375 | } 1376 | engines: { node: '>= 12.0.0' } 1377 | cpu: [arm64] 1378 | os: [win32] 1379 | 1380 | lightningcss-win32-x64-msvc@1.26.0: 1381 | resolution: 1382 | { 1383 | integrity: sha512-pYS3EyGP3JRhfqEFYmfFDiZ9/pVNfy8jVIYtrx9TVNusVyDK3gpW1w/rbvroQ4bDJi7grdUtyrYU6V2xkY/bBw== 1384 | } 1385 | engines: { node: '>= 12.0.0' } 1386 | cpu: [x64] 1387 | os: [win32] 1388 | 1389 | lightningcss@1.26.0: 1390 | resolution: 1391 | { 1392 | integrity: sha512-a/XZ5hdgifrofQJUArr5AiJjx26SwMam3SJUSMjgebZbESZ96i+6Qsl8tLi0kaUsdMzBWXh9sN1Oe6hp2/dkQw== 1393 | } 1394 | engines: { node: '>= 12.0.0' } 1395 | 1396 | lilconfig@3.1.2: 1397 | resolution: 1398 | { 1399 | integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== 1400 | } 1401 | engines: { node: '>=14' } 1402 | 1403 | locate-path@6.0.0: 1404 | resolution: 1405 | { 1406 | integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1407 | } 1408 | engines: { node: '>=10' } 1409 | 1410 | lodash.merge@4.6.2: 1411 | resolution: 1412 | { 1413 | integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1414 | } 1415 | 1416 | loose-envify@1.4.0: 1417 | resolution: 1418 | { 1419 | integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1420 | } 1421 | hasBin: true 1422 | 1423 | merge2@1.4.1: 1424 | resolution: 1425 | { 1426 | integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1427 | } 1428 | engines: { node: '>= 8' } 1429 | 1430 | micromatch@4.0.7: 1431 | resolution: 1432 | { 1433 | integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== 1434 | } 1435 | engines: { node: '>=8.6' } 1436 | 1437 | minimatch@3.1.2: 1438 | resolution: 1439 | { 1440 | integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1441 | } 1442 | 1443 | minimatch@9.0.5: 1444 | resolution: 1445 | { 1446 | integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== 1447 | } 1448 | engines: { node: '>=16 || 14 >=14.17' } 1449 | 1450 | ms@2.1.2: 1451 | resolution: 1452 | { 1453 | integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1454 | } 1455 | 1456 | nanoid@3.3.7: 1457 | resolution: 1458 | { 1459 | integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 1460 | } 1461 | engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } 1462 | hasBin: true 1463 | 1464 | natural-compare@1.4.0: 1465 | resolution: 1466 | { 1467 | integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1468 | } 1469 | 1470 | optionator@0.9.4: 1471 | resolution: 1472 | { 1473 | integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== 1474 | } 1475 | engines: { node: '>= 0.8.0' } 1476 | 1477 | p-limit@3.1.0: 1478 | resolution: 1479 | { 1480 | integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1481 | } 1482 | engines: { node: '>=10' } 1483 | 1484 | p-locate@5.0.0: 1485 | resolution: 1486 | { 1487 | integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1488 | } 1489 | engines: { node: '>=10' } 1490 | 1491 | parent-module@1.0.1: 1492 | resolution: 1493 | { 1494 | integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1495 | } 1496 | engines: { node: '>=6' } 1497 | 1498 | path-exists@4.0.0: 1499 | resolution: 1500 | { 1501 | integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1502 | } 1503 | engines: { node: '>=8' } 1504 | 1505 | path-key@3.1.1: 1506 | resolution: 1507 | { 1508 | integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1509 | } 1510 | engines: { node: '>=8' } 1511 | 1512 | path-type@4.0.0: 1513 | resolution: 1514 | { 1515 | integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1516 | } 1517 | engines: { node: '>=8' } 1518 | 1519 | picocolors@1.0.1: 1520 | resolution: 1521 | { 1522 | integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== 1523 | } 1524 | 1525 | picomatch@2.3.1: 1526 | resolution: 1527 | { 1528 | integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1529 | } 1530 | engines: { node: '>=8.6' } 1531 | 1532 | postcss-load-config@6.0.1: 1533 | resolution: 1534 | { 1535 | integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g== 1536 | } 1537 | engines: { node: '>= 18' } 1538 | peerDependencies: 1539 | jiti: '>=1.21.0' 1540 | postcss: '>=8.0.9' 1541 | tsx: ^4.8.1 1542 | yaml: ^2.4.2 1543 | peerDependenciesMeta: 1544 | jiti: 1545 | optional: true 1546 | postcss: 1547 | optional: true 1548 | tsx: 1549 | optional: true 1550 | yaml: 1551 | optional: true 1552 | 1553 | postcss@8.4.41: 1554 | resolution: 1555 | { 1556 | integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== 1557 | } 1558 | engines: { node: ^10 || ^12 || >=14 } 1559 | 1560 | prelude-ls@1.2.1: 1561 | resolution: 1562 | { 1563 | integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1564 | } 1565 | engines: { node: '>= 0.8.0' } 1566 | 1567 | prettier-plugin-tailwindcss@0.6.6: 1568 | resolution: 1569 | { 1570 | integrity: sha512-OPva5S7WAsPLEsOuOWXATi13QrCKACCiIonFgIR6V4lYv4QLp++UXVhZSzRbZxXGimkQtQT86CC6fQqTOybGng== 1571 | } 1572 | engines: { node: '>=14.21.3' } 1573 | peerDependencies: 1574 | '@ianvs/prettier-plugin-sort-imports': '*' 1575 | '@prettier/plugin-pug': '*' 1576 | '@shopify/prettier-plugin-liquid': '*' 1577 | '@trivago/prettier-plugin-sort-imports': '*' 1578 | '@zackad/prettier-plugin-twig-melody': '*' 1579 | prettier: ^3.0 1580 | prettier-plugin-astro: '*' 1581 | prettier-plugin-css-order: '*' 1582 | prettier-plugin-import-sort: '*' 1583 | prettier-plugin-jsdoc: '*' 1584 | prettier-plugin-marko: '*' 1585 | prettier-plugin-multiline-arrays: '*' 1586 | prettier-plugin-organize-attributes: '*' 1587 | prettier-plugin-organize-imports: '*' 1588 | prettier-plugin-sort-imports: '*' 1589 | prettier-plugin-style-order: '*' 1590 | prettier-plugin-svelte: '*' 1591 | peerDependenciesMeta: 1592 | '@ianvs/prettier-plugin-sort-imports': 1593 | optional: true 1594 | '@prettier/plugin-pug': 1595 | optional: true 1596 | '@shopify/prettier-plugin-liquid': 1597 | optional: true 1598 | '@trivago/prettier-plugin-sort-imports': 1599 | optional: true 1600 | '@zackad/prettier-plugin-twig-melody': 1601 | optional: true 1602 | prettier-plugin-astro: 1603 | optional: true 1604 | prettier-plugin-css-order: 1605 | optional: true 1606 | prettier-plugin-import-sort: 1607 | optional: true 1608 | prettier-plugin-jsdoc: 1609 | optional: true 1610 | prettier-plugin-marko: 1611 | optional: true 1612 | prettier-plugin-multiline-arrays: 1613 | optional: true 1614 | prettier-plugin-organize-attributes: 1615 | optional: true 1616 | prettier-plugin-organize-imports: 1617 | optional: true 1618 | prettier-plugin-sort-imports: 1619 | optional: true 1620 | prettier-plugin-style-order: 1621 | optional: true 1622 | prettier-plugin-svelte: 1623 | optional: true 1624 | 1625 | prettier@3.3.3: 1626 | resolution: 1627 | { 1628 | integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== 1629 | } 1630 | engines: { node: '>=14' } 1631 | hasBin: true 1632 | 1633 | punycode@2.3.1: 1634 | resolution: 1635 | { 1636 | integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 1637 | } 1638 | engines: { node: '>=6' } 1639 | 1640 | queue-microtask@1.2.3: 1641 | resolution: 1642 | { 1643 | integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1644 | } 1645 | 1646 | react-dom@18.3.1: 1647 | resolution: 1648 | { 1649 | integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== 1650 | } 1651 | peerDependencies: 1652 | react: ^18.3.1 1653 | 1654 | react-hook-form@7.52.2: 1655 | resolution: 1656 | { 1657 | integrity: sha512-pqfPEbERnxxiNMPd0bzmt1tuaPcVccywFDpyk2uV5xCIBphHV5T8SVnX9/o3kplPE1zzKt77+YIoq+EMwJp56A== 1658 | } 1659 | engines: { node: '>=18.0.0' } 1660 | peerDependencies: 1661 | react: ^16.8.0 || ^17 || ^18 || ^19 1662 | 1663 | react@18.3.1: 1664 | resolution: 1665 | { 1666 | integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== 1667 | } 1668 | engines: { node: '>=0.10.0' } 1669 | 1670 | resolve-from@4.0.0: 1671 | resolution: 1672 | { 1673 | integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1674 | } 1675 | engines: { node: '>=4' } 1676 | 1677 | reusify@1.0.4: 1678 | resolution: 1679 | { 1680 | integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1681 | } 1682 | engines: { iojs: '>=1.0.0', node: '>=0.10.0' } 1683 | 1684 | rollup@4.20.0: 1685 | resolution: 1686 | { 1687 | integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw== 1688 | } 1689 | engines: { node: '>=18.0.0', npm: '>=8.0.0' } 1690 | hasBin: true 1691 | 1692 | run-parallel@1.2.0: 1693 | resolution: 1694 | { 1695 | integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1696 | } 1697 | 1698 | scheduler@0.23.2: 1699 | resolution: 1700 | { 1701 | integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== 1702 | } 1703 | 1704 | semver@7.6.3: 1705 | resolution: 1706 | { 1707 | integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== 1708 | } 1709 | engines: { node: '>=10' } 1710 | hasBin: true 1711 | 1712 | shebang-command@2.0.0: 1713 | resolution: 1714 | { 1715 | integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1716 | } 1717 | engines: { node: '>=8' } 1718 | 1719 | shebang-regex@3.0.0: 1720 | resolution: 1721 | { 1722 | integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1723 | } 1724 | engines: { node: '>=8' } 1725 | 1726 | slash@3.0.0: 1727 | resolution: 1728 | { 1729 | integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1730 | } 1731 | engines: { node: '>=8' } 1732 | 1733 | source-map-js@1.2.0: 1734 | resolution: 1735 | { 1736 | integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== 1737 | } 1738 | engines: { node: '>=0.10.0' } 1739 | 1740 | strip-ansi@6.0.1: 1741 | resolution: 1742 | { 1743 | integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1744 | } 1745 | engines: { node: '>=8' } 1746 | 1747 | strip-json-comments@3.1.1: 1748 | resolution: 1749 | { 1750 | integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1751 | } 1752 | engines: { node: '>=8' } 1753 | 1754 | supports-color@7.2.0: 1755 | resolution: 1756 | { 1757 | integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1758 | } 1759 | engines: { node: '>=8' } 1760 | 1761 | tailwindcss@4.0.0-alpha.19: 1762 | resolution: 1763 | { 1764 | integrity: sha512-4k8i6ml9ZQaj4xmdTHA2ZVp4YGsA+9+8VsIj/VkwyD38J5jX3L3NSi7TnPvlYT+WXcqAJF7EX8x76yCTfi2CyA== 1765 | } 1766 | 1767 | text-table@0.2.0: 1768 | resolution: 1769 | { 1770 | integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1771 | } 1772 | 1773 | to-regex-range@5.0.1: 1774 | resolution: 1775 | { 1776 | integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1777 | } 1778 | engines: { node: '>=8.0' } 1779 | 1780 | ts-api-utils@1.3.0: 1781 | resolution: 1782 | { 1783 | integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== 1784 | } 1785 | engines: { node: '>=16' } 1786 | peerDependencies: 1787 | typescript: '>=4.2.0' 1788 | 1789 | type-check@0.4.0: 1790 | resolution: 1791 | { 1792 | integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1793 | } 1794 | engines: { node: '>= 0.8.0' } 1795 | 1796 | typescript-eslint@8.1.0: 1797 | resolution: 1798 | { 1799 | integrity: sha512-prB2U3jXPJLpo1iVLN338Lvolh6OrcCZO+9Yv6AR+tvegPPptYCDBIHiEEUdqRi8gAv2bXNKfMUrgAd2ejn/ow== 1800 | } 1801 | engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } 1802 | peerDependencies: 1803 | typescript: '*' 1804 | peerDependenciesMeta: 1805 | typescript: 1806 | optional: true 1807 | 1808 | typescript@5.5.4: 1809 | resolution: 1810 | { 1811 | integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== 1812 | } 1813 | engines: { node: '>=14.17' } 1814 | hasBin: true 1815 | 1816 | uri-js@4.4.1: 1817 | resolution: 1818 | { 1819 | integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1820 | } 1821 | 1822 | vite@5.4.1: 1823 | resolution: 1824 | { 1825 | integrity: sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA== 1826 | } 1827 | engines: { node: ^18.0.0 || >=20.0.0 } 1828 | hasBin: true 1829 | peerDependencies: 1830 | '@types/node': ^18.0.0 || >=20.0.0 1831 | less: '*' 1832 | lightningcss: ^1.21.0 1833 | sass: '*' 1834 | sass-embedded: '*' 1835 | stylus: '*' 1836 | sugarss: '*' 1837 | terser: ^5.4.0 1838 | peerDependenciesMeta: 1839 | '@types/node': 1840 | optional: true 1841 | less: 1842 | optional: true 1843 | lightningcss: 1844 | optional: true 1845 | sass: 1846 | optional: true 1847 | sass-embedded: 1848 | optional: true 1849 | stylus: 1850 | optional: true 1851 | sugarss: 1852 | optional: true 1853 | terser: 1854 | optional: true 1855 | 1856 | which@2.0.2: 1857 | resolution: 1858 | { 1859 | integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1860 | } 1861 | engines: { node: '>= 8' } 1862 | hasBin: true 1863 | 1864 | word-wrap@1.2.5: 1865 | resolution: 1866 | { 1867 | integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 1868 | } 1869 | engines: { node: '>=0.10.0' } 1870 | 1871 | yocto-queue@0.1.0: 1872 | resolution: 1873 | { 1874 | integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1875 | } 1876 | engines: { node: '>=10' } 1877 | 1878 | zod@3.23.8: 1879 | resolution: 1880 | { 1881 | integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== 1882 | } 1883 | 1884 | snapshots: 1885 | '@esbuild/aix-ppc64@0.21.5': 1886 | optional: true 1887 | 1888 | '@esbuild/android-arm64@0.21.5': 1889 | optional: true 1890 | 1891 | '@esbuild/android-arm@0.21.5': 1892 | optional: true 1893 | 1894 | '@esbuild/android-x64@0.21.5': 1895 | optional: true 1896 | 1897 | '@esbuild/darwin-arm64@0.21.5': 1898 | optional: true 1899 | 1900 | '@esbuild/darwin-x64@0.21.5': 1901 | optional: true 1902 | 1903 | '@esbuild/freebsd-arm64@0.21.5': 1904 | optional: true 1905 | 1906 | '@esbuild/freebsd-x64@0.21.5': 1907 | optional: true 1908 | 1909 | '@esbuild/linux-arm64@0.21.5': 1910 | optional: true 1911 | 1912 | '@esbuild/linux-arm@0.21.5': 1913 | optional: true 1914 | 1915 | '@esbuild/linux-ia32@0.21.5': 1916 | optional: true 1917 | 1918 | '@esbuild/linux-loong64@0.21.5': 1919 | optional: true 1920 | 1921 | '@esbuild/linux-mips64el@0.21.5': 1922 | optional: true 1923 | 1924 | '@esbuild/linux-ppc64@0.21.5': 1925 | optional: true 1926 | 1927 | '@esbuild/linux-riscv64@0.21.5': 1928 | optional: true 1929 | 1930 | '@esbuild/linux-s390x@0.21.5': 1931 | optional: true 1932 | 1933 | '@esbuild/linux-x64@0.21.5': 1934 | optional: true 1935 | 1936 | '@esbuild/netbsd-x64@0.21.5': 1937 | optional: true 1938 | 1939 | '@esbuild/openbsd-x64@0.21.5': 1940 | optional: true 1941 | 1942 | '@esbuild/sunos-x64@0.21.5': 1943 | optional: true 1944 | 1945 | '@esbuild/win32-arm64@0.21.5': 1946 | optional: true 1947 | 1948 | '@esbuild/win32-ia32@0.21.5': 1949 | optional: true 1950 | 1951 | '@esbuild/win32-x64@0.21.5': 1952 | optional: true 1953 | 1954 | '@eslint-community/eslint-utils@4.4.0(eslint@9.9.0)': 1955 | dependencies: 1956 | eslint: 9.9.0 1957 | eslint-visitor-keys: 3.4.3 1958 | 1959 | '@eslint-community/regexpp@4.11.0': {} 1960 | 1961 | '@eslint/config-array@0.17.1': 1962 | dependencies: 1963 | '@eslint/object-schema': 2.1.4 1964 | debug: 4.3.6 1965 | minimatch: 3.1.2 1966 | transitivePeerDependencies: 1967 | - supports-color 1968 | 1969 | '@eslint/eslintrc@3.1.0': 1970 | dependencies: 1971 | ajv: 6.12.6 1972 | debug: 4.3.6 1973 | espree: 10.1.0 1974 | globals: 14.0.0 1975 | ignore: 5.3.2 1976 | import-fresh: 3.3.0 1977 | js-yaml: 4.1.0 1978 | minimatch: 3.1.2 1979 | strip-json-comments: 3.1.1 1980 | transitivePeerDependencies: 1981 | - supports-color 1982 | 1983 | '@eslint/js@9.9.0': {} 1984 | 1985 | '@eslint/object-schema@2.1.4': {} 1986 | 1987 | '@hookform/resolvers@3.9.0(react-hook-form@7.52.2(react@18.3.1))': 1988 | dependencies: 1989 | react-hook-form: 7.52.2(react@18.3.1) 1990 | 1991 | '@humanwhocodes/module-importer@1.0.1': {} 1992 | 1993 | '@humanwhocodes/retry@0.3.0': {} 1994 | 1995 | '@nodelib/fs.scandir@2.1.5': 1996 | dependencies: 1997 | '@nodelib/fs.stat': 2.0.5 1998 | run-parallel: 1.2.0 1999 | 2000 | '@nodelib/fs.stat@2.0.5': {} 2001 | 2002 | '@nodelib/fs.walk@1.2.8': 2003 | dependencies: 2004 | '@nodelib/fs.scandir': 2.1.5 2005 | fastq: 1.17.1 2006 | 2007 | '@rollup/rollup-android-arm-eabi@4.20.0': 2008 | optional: true 2009 | 2010 | '@rollup/rollup-android-arm64@4.20.0': 2011 | optional: true 2012 | 2013 | '@rollup/rollup-darwin-arm64@4.20.0': 2014 | optional: true 2015 | 2016 | '@rollup/rollup-darwin-x64@4.20.0': 2017 | optional: true 2018 | 2019 | '@rollup/rollup-linux-arm-gnueabihf@4.20.0': 2020 | optional: true 2021 | 2022 | '@rollup/rollup-linux-arm-musleabihf@4.20.0': 2023 | optional: true 2024 | 2025 | '@rollup/rollup-linux-arm64-gnu@4.20.0': 2026 | optional: true 2027 | 2028 | '@rollup/rollup-linux-arm64-musl@4.20.0': 2029 | optional: true 2030 | 2031 | '@rollup/rollup-linux-powerpc64le-gnu@4.20.0': 2032 | optional: true 2033 | 2034 | '@rollup/rollup-linux-riscv64-gnu@4.20.0': 2035 | optional: true 2036 | 2037 | '@rollup/rollup-linux-s390x-gnu@4.20.0': 2038 | optional: true 2039 | 2040 | '@rollup/rollup-linux-x64-gnu@4.20.0': 2041 | optional: true 2042 | 2043 | '@rollup/rollup-linux-x64-musl@4.20.0': 2044 | optional: true 2045 | 2046 | '@rollup/rollup-win32-arm64-msvc@4.20.0': 2047 | optional: true 2048 | 2049 | '@rollup/rollup-win32-ia32-msvc@4.20.0': 2050 | optional: true 2051 | 2052 | '@rollup/rollup-win32-x64-msvc@4.20.0': 2053 | optional: true 2054 | 2055 | '@swc/core-darwin-arm64@1.7.11': 2056 | optional: true 2057 | 2058 | '@swc/core-darwin-x64@1.7.11': 2059 | optional: true 2060 | 2061 | '@swc/core-linux-arm-gnueabihf@1.7.11': 2062 | optional: true 2063 | 2064 | '@swc/core-linux-arm64-gnu@1.7.11': 2065 | optional: true 2066 | 2067 | '@swc/core-linux-arm64-musl@1.7.11': 2068 | optional: true 2069 | 2070 | '@swc/core-linux-x64-gnu@1.7.11': 2071 | optional: true 2072 | 2073 | '@swc/core-linux-x64-musl@1.7.11': 2074 | optional: true 2075 | 2076 | '@swc/core-win32-arm64-msvc@1.7.11': 2077 | optional: true 2078 | 2079 | '@swc/core-win32-ia32-msvc@1.7.11': 2080 | optional: true 2081 | 2082 | '@swc/core-win32-x64-msvc@1.7.11': 2083 | optional: true 2084 | 2085 | '@swc/core@1.7.11': 2086 | dependencies: 2087 | '@swc/counter': 0.1.3 2088 | '@swc/types': 0.1.12 2089 | optionalDependencies: 2090 | '@swc/core-darwin-arm64': 1.7.11 2091 | '@swc/core-darwin-x64': 1.7.11 2092 | '@swc/core-linux-arm-gnueabihf': 1.7.11 2093 | '@swc/core-linux-arm64-gnu': 1.7.11 2094 | '@swc/core-linux-arm64-musl': 1.7.11 2095 | '@swc/core-linux-x64-gnu': 1.7.11 2096 | '@swc/core-linux-x64-musl': 1.7.11 2097 | '@swc/core-win32-arm64-msvc': 1.7.11 2098 | '@swc/core-win32-ia32-msvc': 1.7.11 2099 | '@swc/core-win32-x64-msvc': 1.7.11 2100 | 2101 | '@swc/counter@0.1.3': {} 2102 | 2103 | '@swc/types@0.1.12': 2104 | dependencies: 2105 | '@swc/counter': 0.1.3 2106 | 2107 | '@tailwindcss/oxide-android-arm64@4.0.0-alpha.19': 2108 | optional: true 2109 | 2110 | '@tailwindcss/oxide-darwin-arm64@4.0.0-alpha.19': 2111 | optional: true 2112 | 2113 | '@tailwindcss/oxide-darwin-x64@4.0.0-alpha.19': 2114 | optional: true 2115 | 2116 | '@tailwindcss/oxide-freebsd-x64@4.0.0-alpha.19': 2117 | optional: true 2118 | 2119 | '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.0-alpha.19': 2120 | optional: true 2121 | 2122 | '@tailwindcss/oxide-linux-arm64-gnu@4.0.0-alpha.19': 2123 | optional: true 2124 | 2125 | '@tailwindcss/oxide-linux-arm64-musl@4.0.0-alpha.19': 2126 | optional: true 2127 | 2128 | '@tailwindcss/oxide-linux-x64-gnu@4.0.0-alpha.19': 2129 | optional: true 2130 | 2131 | '@tailwindcss/oxide-linux-x64-musl@4.0.0-alpha.19': 2132 | optional: true 2133 | 2134 | '@tailwindcss/oxide-win32-x64-msvc@4.0.0-alpha.19': 2135 | optional: true 2136 | 2137 | '@tailwindcss/oxide@4.0.0-alpha.19': 2138 | optionalDependencies: 2139 | '@tailwindcss/oxide-android-arm64': 4.0.0-alpha.19 2140 | '@tailwindcss/oxide-darwin-arm64': 4.0.0-alpha.19 2141 | '@tailwindcss/oxide-darwin-x64': 4.0.0-alpha.19 2142 | '@tailwindcss/oxide-freebsd-x64': 4.0.0-alpha.19 2143 | '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.0-alpha.19 2144 | '@tailwindcss/oxide-linux-arm64-gnu': 4.0.0-alpha.19 2145 | '@tailwindcss/oxide-linux-arm64-musl': 4.0.0-alpha.19 2146 | '@tailwindcss/oxide-linux-x64-gnu': 4.0.0-alpha.19 2147 | '@tailwindcss/oxide-linux-x64-musl': 4.0.0-alpha.19 2148 | '@tailwindcss/oxide-win32-x64-msvc': 4.0.0-alpha.19 2149 | 2150 | '@tailwindcss/vite@4.0.0-alpha.19(postcss@8.4.41)(vite@5.4.1(lightningcss@1.26.0))': 2151 | dependencies: 2152 | '@tailwindcss/oxide': 4.0.0-alpha.19 2153 | lightningcss: 1.26.0 2154 | postcss-load-config: 6.0.1(postcss@8.4.41) 2155 | tailwindcss: 4.0.0-alpha.19 2156 | vite: 5.4.1(lightningcss@1.26.0) 2157 | transitivePeerDependencies: 2158 | - jiti 2159 | - postcss 2160 | - tsx 2161 | - yaml 2162 | 2163 | '@types/estree@1.0.5': {} 2164 | 2165 | '@types/prop-types@15.7.12': {} 2166 | 2167 | '@types/react-dom@18.3.0': 2168 | dependencies: 2169 | '@types/react': 18.3.3 2170 | 2171 | '@types/react@18.3.3': 2172 | dependencies: 2173 | '@types/prop-types': 15.7.12 2174 | csstype: 3.1.3 2175 | 2176 | '@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0)(typescript@5.5.4))(eslint@9.9.0)(typescript@5.5.4)': 2177 | dependencies: 2178 | '@eslint-community/regexpp': 4.11.0 2179 | '@typescript-eslint/parser': 8.1.0(eslint@9.9.0)(typescript@5.5.4) 2180 | '@typescript-eslint/scope-manager': 8.1.0 2181 | '@typescript-eslint/type-utils': 8.1.0(eslint@9.9.0)(typescript@5.5.4) 2182 | '@typescript-eslint/utils': 8.1.0(eslint@9.9.0)(typescript@5.5.4) 2183 | '@typescript-eslint/visitor-keys': 8.1.0 2184 | eslint: 9.9.0 2185 | graphemer: 1.4.0 2186 | ignore: 5.3.2 2187 | natural-compare: 1.4.0 2188 | ts-api-utils: 1.3.0(typescript@5.5.4) 2189 | optionalDependencies: 2190 | typescript: 5.5.4 2191 | transitivePeerDependencies: 2192 | - supports-color 2193 | 2194 | '@typescript-eslint/parser@8.1.0(eslint@9.9.0)(typescript@5.5.4)': 2195 | dependencies: 2196 | '@typescript-eslint/scope-manager': 8.1.0 2197 | '@typescript-eslint/types': 8.1.0 2198 | '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.5.4) 2199 | '@typescript-eslint/visitor-keys': 8.1.0 2200 | debug: 4.3.6 2201 | eslint: 9.9.0 2202 | optionalDependencies: 2203 | typescript: 5.5.4 2204 | transitivePeerDependencies: 2205 | - supports-color 2206 | 2207 | '@typescript-eslint/scope-manager@8.1.0': 2208 | dependencies: 2209 | '@typescript-eslint/types': 8.1.0 2210 | '@typescript-eslint/visitor-keys': 8.1.0 2211 | 2212 | '@typescript-eslint/type-utils@8.1.0(eslint@9.9.0)(typescript@5.5.4)': 2213 | dependencies: 2214 | '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.5.4) 2215 | '@typescript-eslint/utils': 8.1.0(eslint@9.9.0)(typescript@5.5.4) 2216 | debug: 4.3.6 2217 | ts-api-utils: 1.3.0(typescript@5.5.4) 2218 | optionalDependencies: 2219 | typescript: 5.5.4 2220 | transitivePeerDependencies: 2221 | - eslint 2222 | - supports-color 2223 | 2224 | '@typescript-eslint/types@8.1.0': {} 2225 | 2226 | '@typescript-eslint/typescript-estree@8.1.0(typescript@5.5.4)': 2227 | dependencies: 2228 | '@typescript-eslint/types': 8.1.0 2229 | '@typescript-eslint/visitor-keys': 8.1.0 2230 | debug: 4.3.6 2231 | globby: 11.1.0 2232 | is-glob: 4.0.3 2233 | minimatch: 9.0.5 2234 | semver: 7.6.3 2235 | ts-api-utils: 1.3.0(typescript@5.5.4) 2236 | optionalDependencies: 2237 | typescript: 5.5.4 2238 | transitivePeerDependencies: 2239 | - supports-color 2240 | 2241 | '@typescript-eslint/utils@8.1.0(eslint@9.9.0)(typescript@5.5.4)': 2242 | dependencies: 2243 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0) 2244 | '@typescript-eslint/scope-manager': 8.1.0 2245 | '@typescript-eslint/types': 8.1.0 2246 | '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.5.4) 2247 | eslint: 9.9.0 2248 | transitivePeerDependencies: 2249 | - supports-color 2250 | - typescript 2251 | 2252 | '@typescript-eslint/visitor-keys@8.1.0': 2253 | dependencies: 2254 | '@typescript-eslint/types': 8.1.0 2255 | eslint-visitor-keys: 3.4.3 2256 | 2257 | '@vitejs/plugin-react-swc@3.7.0(vite@5.4.1(lightningcss@1.26.0))': 2258 | dependencies: 2259 | '@swc/core': 1.7.11 2260 | vite: 5.4.1(lightningcss@1.26.0) 2261 | transitivePeerDependencies: 2262 | - '@swc/helpers' 2263 | 2264 | acorn-jsx@5.3.2(acorn@8.12.1): 2265 | dependencies: 2266 | acorn: 8.12.1 2267 | 2268 | acorn@8.12.1: {} 2269 | 2270 | ajv@6.12.6: 2271 | dependencies: 2272 | fast-deep-equal: 3.1.3 2273 | fast-json-stable-stringify: 2.1.0 2274 | json-schema-traverse: 0.4.1 2275 | uri-js: 4.4.1 2276 | 2277 | ansi-regex@5.0.1: {} 2278 | 2279 | ansi-styles@4.3.0: 2280 | dependencies: 2281 | color-convert: 2.0.1 2282 | 2283 | argparse@2.0.1: {} 2284 | 2285 | array-union@2.1.0: {} 2286 | 2287 | balanced-match@1.0.2: {} 2288 | 2289 | brace-expansion@1.1.11: 2290 | dependencies: 2291 | balanced-match: 1.0.2 2292 | concat-map: 0.0.1 2293 | 2294 | brace-expansion@2.0.1: 2295 | dependencies: 2296 | balanced-match: 1.0.2 2297 | 2298 | braces@3.0.3: 2299 | dependencies: 2300 | fill-range: 7.1.1 2301 | 2302 | callsites@3.1.0: {} 2303 | 2304 | chalk@4.1.2: 2305 | dependencies: 2306 | ansi-styles: 4.3.0 2307 | supports-color: 7.2.0 2308 | 2309 | color-convert@2.0.1: 2310 | dependencies: 2311 | color-name: 1.1.4 2312 | 2313 | color-name@1.1.4: {} 2314 | 2315 | concat-map@0.0.1: {} 2316 | 2317 | cross-spawn@7.0.3: 2318 | dependencies: 2319 | path-key: 3.1.1 2320 | shebang-command: 2.0.0 2321 | which: 2.0.2 2322 | 2323 | csstype@3.1.3: {} 2324 | 2325 | debug@4.3.6: 2326 | dependencies: 2327 | ms: 2.1.2 2328 | 2329 | deep-is@0.1.4: {} 2330 | 2331 | detect-libc@1.0.3: {} 2332 | 2333 | dir-glob@3.0.1: 2334 | dependencies: 2335 | path-type: 4.0.0 2336 | 2337 | esbuild@0.21.5: 2338 | optionalDependencies: 2339 | '@esbuild/aix-ppc64': 0.21.5 2340 | '@esbuild/android-arm': 0.21.5 2341 | '@esbuild/android-arm64': 0.21.5 2342 | '@esbuild/android-x64': 0.21.5 2343 | '@esbuild/darwin-arm64': 0.21.5 2344 | '@esbuild/darwin-x64': 0.21.5 2345 | '@esbuild/freebsd-arm64': 0.21.5 2346 | '@esbuild/freebsd-x64': 0.21.5 2347 | '@esbuild/linux-arm': 0.21.5 2348 | '@esbuild/linux-arm64': 0.21.5 2349 | '@esbuild/linux-ia32': 0.21.5 2350 | '@esbuild/linux-loong64': 0.21.5 2351 | '@esbuild/linux-mips64el': 0.21.5 2352 | '@esbuild/linux-ppc64': 0.21.5 2353 | '@esbuild/linux-riscv64': 0.21.5 2354 | '@esbuild/linux-s390x': 0.21.5 2355 | '@esbuild/linux-x64': 0.21.5 2356 | '@esbuild/netbsd-x64': 0.21.5 2357 | '@esbuild/openbsd-x64': 0.21.5 2358 | '@esbuild/sunos-x64': 0.21.5 2359 | '@esbuild/win32-arm64': 0.21.5 2360 | '@esbuild/win32-ia32': 0.21.5 2361 | '@esbuild/win32-x64': 0.21.5 2362 | 2363 | escape-string-regexp@4.0.0: {} 2364 | 2365 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614(eslint@9.9.0): 2366 | dependencies: 2367 | eslint: 9.9.0 2368 | 2369 | eslint-plugin-react-refresh@0.4.9(eslint@9.9.0): 2370 | dependencies: 2371 | eslint: 9.9.0 2372 | 2373 | eslint-scope@8.0.2: 2374 | dependencies: 2375 | esrecurse: 4.3.0 2376 | estraverse: 5.3.0 2377 | 2378 | eslint-visitor-keys@3.4.3: {} 2379 | 2380 | eslint-visitor-keys@4.0.0: {} 2381 | 2382 | eslint@9.9.0: 2383 | dependencies: 2384 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0) 2385 | '@eslint-community/regexpp': 4.11.0 2386 | '@eslint/config-array': 0.17.1 2387 | '@eslint/eslintrc': 3.1.0 2388 | '@eslint/js': 9.9.0 2389 | '@humanwhocodes/module-importer': 1.0.1 2390 | '@humanwhocodes/retry': 0.3.0 2391 | '@nodelib/fs.walk': 1.2.8 2392 | ajv: 6.12.6 2393 | chalk: 4.1.2 2394 | cross-spawn: 7.0.3 2395 | debug: 4.3.6 2396 | escape-string-regexp: 4.0.0 2397 | eslint-scope: 8.0.2 2398 | eslint-visitor-keys: 4.0.0 2399 | espree: 10.1.0 2400 | esquery: 1.6.0 2401 | esutils: 2.0.3 2402 | fast-deep-equal: 3.1.3 2403 | file-entry-cache: 8.0.0 2404 | find-up: 5.0.0 2405 | glob-parent: 6.0.2 2406 | ignore: 5.3.2 2407 | imurmurhash: 0.1.4 2408 | is-glob: 4.0.3 2409 | is-path-inside: 3.0.3 2410 | json-stable-stringify-without-jsonify: 1.0.1 2411 | levn: 0.4.1 2412 | lodash.merge: 4.6.2 2413 | minimatch: 3.1.2 2414 | natural-compare: 1.4.0 2415 | optionator: 0.9.4 2416 | strip-ansi: 6.0.1 2417 | text-table: 0.2.0 2418 | transitivePeerDependencies: 2419 | - supports-color 2420 | 2421 | espree@10.1.0: 2422 | dependencies: 2423 | acorn: 8.12.1 2424 | acorn-jsx: 5.3.2(acorn@8.12.1) 2425 | eslint-visitor-keys: 4.0.0 2426 | 2427 | esquery@1.6.0: 2428 | dependencies: 2429 | estraverse: 5.3.0 2430 | 2431 | esrecurse@4.3.0: 2432 | dependencies: 2433 | estraverse: 5.3.0 2434 | 2435 | estraverse@5.3.0: {} 2436 | 2437 | esutils@2.0.3: {} 2438 | 2439 | fast-deep-equal@3.1.3: {} 2440 | 2441 | fast-glob@3.3.2: 2442 | dependencies: 2443 | '@nodelib/fs.stat': 2.0.5 2444 | '@nodelib/fs.walk': 1.2.8 2445 | glob-parent: 5.1.2 2446 | merge2: 1.4.1 2447 | micromatch: 4.0.7 2448 | 2449 | fast-json-stable-stringify@2.1.0: {} 2450 | 2451 | fast-levenshtein@2.0.6: {} 2452 | 2453 | fastq@1.17.1: 2454 | dependencies: 2455 | reusify: 1.0.4 2456 | 2457 | file-entry-cache@8.0.0: 2458 | dependencies: 2459 | flat-cache: 4.0.1 2460 | 2461 | fill-range@7.1.1: 2462 | dependencies: 2463 | to-regex-range: 5.0.1 2464 | 2465 | find-up@5.0.0: 2466 | dependencies: 2467 | locate-path: 6.0.0 2468 | path-exists: 4.0.0 2469 | 2470 | flat-cache@4.0.1: 2471 | dependencies: 2472 | flatted: 3.3.1 2473 | keyv: 4.5.4 2474 | 2475 | flatted@3.3.1: {} 2476 | 2477 | fsevents@2.3.3: 2478 | optional: true 2479 | 2480 | glob-parent@5.1.2: 2481 | dependencies: 2482 | is-glob: 4.0.3 2483 | 2484 | glob-parent@6.0.2: 2485 | dependencies: 2486 | is-glob: 4.0.3 2487 | 2488 | globals@14.0.0: {} 2489 | 2490 | globals@15.9.0: {} 2491 | 2492 | globby@11.1.0: 2493 | dependencies: 2494 | array-union: 2.1.0 2495 | dir-glob: 3.0.1 2496 | fast-glob: 3.3.2 2497 | ignore: 5.3.2 2498 | merge2: 1.4.1 2499 | slash: 3.0.0 2500 | 2501 | graphemer@1.4.0: {} 2502 | 2503 | has-flag@4.0.0: {} 2504 | 2505 | ignore@5.3.2: {} 2506 | 2507 | import-fresh@3.3.0: 2508 | dependencies: 2509 | parent-module: 1.0.1 2510 | resolve-from: 4.0.0 2511 | 2512 | imurmurhash@0.1.4: {} 2513 | 2514 | is-extglob@2.1.1: {} 2515 | 2516 | is-glob@4.0.3: 2517 | dependencies: 2518 | is-extglob: 2.1.1 2519 | 2520 | is-number@7.0.0: {} 2521 | 2522 | is-path-inside@3.0.3: {} 2523 | 2524 | isexe@2.0.0: {} 2525 | 2526 | js-tokens@4.0.0: {} 2527 | 2528 | js-yaml@4.1.0: 2529 | dependencies: 2530 | argparse: 2.0.1 2531 | 2532 | json-buffer@3.0.1: {} 2533 | 2534 | json-schema-traverse@0.4.1: {} 2535 | 2536 | json-stable-stringify-without-jsonify@1.0.1: {} 2537 | 2538 | keyv@4.5.4: 2539 | dependencies: 2540 | json-buffer: 3.0.1 2541 | 2542 | levn@0.4.1: 2543 | dependencies: 2544 | prelude-ls: 1.2.1 2545 | type-check: 0.4.0 2546 | 2547 | lightningcss-darwin-arm64@1.26.0: 2548 | optional: true 2549 | 2550 | lightningcss-darwin-x64@1.26.0: 2551 | optional: true 2552 | 2553 | lightningcss-freebsd-x64@1.26.0: 2554 | optional: true 2555 | 2556 | lightningcss-linux-arm-gnueabihf@1.26.0: 2557 | optional: true 2558 | 2559 | lightningcss-linux-arm64-gnu@1.26.0: 2560 | optional: true 2561 | 2562 | lightningcss-linux-arm64-musl@1.26.0: 2563 | optional: true 2564 | 2565 | lightningcss-linux-x64-gnu@1.26.0: 2566 | optional: true 2567 | 2568 | lightningcss-linux-x64-musl@1.26.0: 2569 | optional: true 2570 | 2571 | lightningcss-win32-arm64-msvc@1.26.0: 2572 | optional: true 2573 | 2574 | lightningcss-win32-x64-msvc@1.26.0: 2575 | optional: true 2576 | 2577 | lightningcss@1.26.0: 2578 | dependencies: 2579 | detect-libc: 1.0.3 2580 | optionalDependencies: 2581 | lightningcss-darwin-arm64: 1.26.0 2582 | lightningcss-darwin-x64: 1.26.0 2583 | lightningcss-freebsd-x64: 1.26.0 2584 | lightningcss-linux-arm-gnueabihf: 1.26.0 2585 | lightningcss-linux-arm64-gnu: 1.26.0 2586 | lightningcss-linux-arm64-musl: 1.26.0 2587 | lightningcss-linux-x64-gnu: 1.26.0 2588 | lightningcss-linux-x64-musl: 1.26.0 2589 | lightningcss-win32-arm64-msvc: 1.26.0 2590 | lightningcss-win32-x64-msvc: 1.26.0 2591 | 2592 | lilconfig@3.1.2: {} 2593 | 2594 | locate-path@6.0.0: 2595 | dependencies: 2596 | p-locate: 5.0.0 2597 | 2598 | lodash.merge@4.6.2: {} 2599 | 2600 | loose-envify@1.4.0: 2601 | dependencies: 2602 | js-tokens: 4.0.0 2603 | 2604 | merge2@1.4.1: {} 2605 | 2606 | micromatch@4.0.7: 2607 | dependencies: 2608 | braces: 3.0.3 2609 | picomatch: 2.3.1 2610 | 2611 | minimatch@3.1.2: 2612 | dependencies: 2613 | brace-expansion: 1.1.11 2614 | 2615 | minimatch@9.0.5: 2616 | dependencies: 2617 | brace-expansion: 2.0.1 2618 | 2619 | ms@2.1.2: {} 2620 | 2621 | nanoid@3.3.7: {} 2622 | 2623 | natural-compare@1.4.0: {} 2624 | 2625 | optionator@0.9.4: 2626 | dependencies: 2627 | deep-is: 0.1.4 2628 | fast-levenshtein: 2.0.6 2629 | levn: 0.4.1 2630 | prelude-ls: 1.2.1 2631 | type-check: 0.4.0 2632 | word-wrap: 1.2.5 2633 | 2634 | p-limit@3.1.0: 2635 | dependencies: 2636 | yocto-queue: 0.1.0 2637 | 2638 | p-locate@5.0.0: 2639 | dependencies: 2640 | p-limit: 3.1.0 2641 | 2642 | parent-module@1.0.1: 2643 | dependencies: 2644 | callsites: 3.1.0 2645 | 2646 | path-exists@4.0.0: {} 2647 | 2648 | path-key@3.1.1: {} 2649 | 2650 | path-type@4.0.0: {} 2651 | 2652 | picocolors@1.0.1: {} 2653 | 2654 | picomatch@2.3.1: {} 2655 | 2656 | postcss-load-config@6.0.1(postcss@8.4.41): 2657 | dependencies: 2658 | lilconfig: 3.1.2 2659 | optionalDependencies: 2660 | postcss: 8.4.41 2661 | 2662 | postcss@8.4.41: 2663 | dependencies: 2664 | nanoid: 3.3.7 2665 | picocolors: 1.0.1 2666 | source-map-js: 1.2.0 2667 | 2668 | prelude-ls@1.2.1: {} 2669 | 2670 | prettier-plugin-tailwindcss@0.6.6(prettier@3.3.3): 2671 | dependencies: 2672 | prettier: 3.3.3 2673 | 2674 | prettier@3.3.3: {} 2675 | 2676 | punycode@2.3.1: {} 2677 | 2678 | queue-microtask@1.2.3: {} 2679 | 2680 | react-dom@18.3.1(react@18.3.1): 2681 | dependencies: 2682 | loose-envify: 1.4.0 2683 | react: 18.3.1 2684 | scheduler: 0.23.2 2685 | 2686 | react-hook-form@7.52.2(react@18.3.1): 2687 | dependencies: 2688 | react: 18.3.1 2689 | 2690 | react@18.3.1: 2691 | dependencies: 2692 | loose-envify: 1.4.0 2693 | 2694 | resolve-from@4.0.0: {} 2695 | 2696 | reusify@1.0.4: {} 2697 | 2698 | rollup@4.20.0: 2699 | dependencies: 2700 | '@types/estree': 1.0.5 2701 | optionalDependencies: 2702 | '@rollup/rollup-android-arm-eabi': 4.20.0 2703 | '@rollup/rollup-android-arm64': 4.20.0 2704 | '@rollup/rollup-darwin-arm64': 4.20.0 2705 | '@rollup/rollup-darwin-x64': 4.20.0 2706 | '@rollup/rollup-linux-arm-gnueabihf': 4.20.0 2707 | '@rollup/rollup-linux-arm-musleabihf': 4.20.0 2708 | '@rollup/rollup-linux-arm64-gnu': 4.20.0 2709 | '@rollup/rollup-linux-arm64-musl': 4.20.0 2710 | '@rollup/rollup-linux-powerpc64le-gnu': 4.20.0 2711 | '@rollup/rollup-linux-riscv64-gnu': 4.20.0 2712 | '@rollup/rollup-linux-s390x-gnu': 4.20.0 2713 | '@rollup/rollup-linux-x64-gnu': 4.20.0 2714 | '@rollup/rollup-linux-x64-musl': 4.20.0 2715 | '@rollup/rollup-win32-arm64-msvc': 4.20.0 2716 | '@rollup/rollup-win32-ia32-msvc': 4.20.0 2717 | '@rollup/rollup-win32-x64-msvc': 4.20.0 2718 | fsevents: 2.3.3 2719 | 2720 | run-parallel@1.2.0: 2721 | dependencies: 2722 | queue-microtask: 1.2.3 2723 | 2724 | scheduler@0.23.2: 2725 | dependencies: 2726 | loose-envify: 1.4.0 2727 | 2728 | semver@7.6.3: {} 2729 | 2730 | shebang-command@2.0.0: 2731 | dependencies: 2732 | shebang-regex: 3.0.0 2733 | 2734 | shebang-regex@3.0.0: {} 2735 | 2736 | slash@3.0.0: {} 2737 | 2738 | source-map-js@1.2.0: {} 2739 | 2740 | strip-ansi@6.0.1: 2741 | dependencies: 2742 | ansi-regex: 5.0.1 2743 | 2744 | strip-json-comments@3.1.1: {} 2745 | 2746 | supports-color@7.2.0: 2747 | dependencies: 2748 | has-flag: 4.0.0 2749 | 2750 | tailwindcss@4.0.0-alpha.19: {} 2751 | 2752 | text-table@0.2.0: {} 2753 | 2754 | to-regex-range@5.0.1: 2755 | dependencies: 2756 | is-number: 7.0.0 2757 | 2758 | ts-api-utils@1.3.0(typescript@5.5.4): 2759 | dependencies: 2760 | typescript: 5.5.4 2761 | 2762 | type-check@0.4.0: 2763 | dependencies: 2764 | prelude-ls: 1.2.1 2765 | 2766 | typescript-eslint@8.1.0(eslint@9.9.0)(typescript@5.5.4): 2767 | dependencies: 2768 | '@typescript-eslint/eslint-plugin': 8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0)(typescript@5.5.4))(eslint@9.9.0)(typescript@5.5.4) 2769 | '@typescript-eslint/parser': 8.1.0(eslint@9.9.0)(typescript@5.5.4) 2770 | '@typescript-eslint/utils': 8.1.0(eslint@9.9.0)(typescript@5.5.4) 2771 | optionalDependencies: 2772 | typescript: 5.5.4 2773 | transitivePeerDependencies: 2774 | - eslint 2775 | - supports-color 2776 | 2777 | typescript@5.5.4: {} 2778 | 2779 | uri-js@4.4.1: 2780 | dependencies: 2781 | punycode: 2.3.1 2782 | 2783 | vite@5.4.1(lightningcss@1.26.0): 2784 | dependencies: 2785 | esbuild: 0.21.5 2786 | postcss: 8.4.41 2787 | rollup: 4.20.0 2788 | optionalDependencies: 2789 | fsevents: 2.3.3 2790 | lightningcss: 1.26.0 2791 | 2792 | which@2.0.2: 2793 | dependencies: 2794 | isexe: 2.0.0 2795 | 2796 | word-wrap@1.2.5: {} 2797 | 2798 | yocto-queue@0.1.0: {} 2799 | 2800 | zod@3.23.8: {} 2801 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import MultiStepForm from './components/multi-form-step' 2 | 3 | function App() { 4 | return ( 5 |
6 |
7 | 8 |
9 |
10 | ) 11 | } 12 | 13 | export default App 14 | -------------------------------------------------------------------------------- /src/components/form-input.tsx: -------------------------------------------------------------------------------- 1 | import { UseFormRegister } from 'react-hook-form' 2 | 3 | interface FormInputProps { 4 | id: string 5 | label: string 6 | type: string 7 | register: ReturnType> 8 | autoComplete?: string 9 | errorMessage?: string 10 | className?: string 11 | } 12 | 13 | export function FormInput({ 14 | id, 15 | label, 16 | type, 17 | register, 18 | autoComplete, 19 | errorMessage, 20 | className = '' 21 | }: FormInputProps) { 22 | return ( 23 |
24 | 30 |
31 | 38 | {errorMessage && ( 39 |

{errorMessage}

40 | )} 41 |
42 |
43 | ) 44 | } 45 | -------------------------------------------------------------------------------- /src/components/form-select.tsx: -------------------------------------------------------------------------------- 1 | import { UseFormRegister } from 'react-hook-form' 2 | 3 | interface FormSelectProps { 4 | id: string 5 | label: string 6 | register: ReturnType> 7 | options: string[] 8 | autoComplete?: string 9 | errorMessage?: string 10 | className?: string 11 | } 12 | 13 | export function FormSelect({ 14 | id, 15 | label, 16 | register, 17 | options, 18 | autoComplete, 19 | errorMessage, 20 | className = '' 21 | }: FormSelectProps) { 22 | return ( 23 |
24 | 30 |
31 | 43 | {errorMessage && ( 44 |

{errorMessage}

45 | )} 46 |
47 |
48 | ) 49 | } 50 | -------------------------------------------------------------------------------- /src/components/multi-form-step/components/navigation.tsx: -------------------------------------------------------------------------------- 1 | import { useCustomFormContext } from '../context' 2 | 3 | export default function Navigation() { 4 | const { currentStep, goToNextStep, goToPreviousStep, steps } = 5 | useCustomFormContext() 6 | 7 | return ( 8 |
9 |
10 | 32 | 54 |
55 |
56 | ) 57 | } 58 | -------------------------------------------------------------------------------- /src/components/multi-form-step/components/step-indicator.tsx: -------------------------------------------------------------------------------- 1 | interface StepIndicatorProps { 2 | id: string 3 | name: string 4 | isActive: boolean 5 | isComplete: boolean 6 | } 7 | 8 | export function StepIndicator({ 9 | id, 10 | name, 11 | isActive, 12 | isComplete 13 | }: StepIndicatorProps) { 14 | const baseClasses = 15 | 'group flex w-full flex-col border-l-4 py-2 pl-4 md:border-t-4 md:border-l-0 md:pt-4 md:pb-0 md:pl-0 transition-colors' 16 | const activeClasses = 'border-blue-600 text-blue-600' 17 | const completeClasses = 'border-blue-600 text-blue-600' 18 | const futureClasses = 'border-gray-200 text-gray-500' 19 | 20 | const classes = isComplete 21 | ? `${baseClasses} ${completeClasses}` 22 | : isActive 23 | ? `${baseClasses} ${activeClasses}` 24 | : `${baseClasses} ${futureClasses}` 25 | 26 | return ( 27 |
28 | {id} 29 | {name} 30 |
31 | ) 32 | } 33 | -------------------------------------------------------------------------------- /src/components/multi-form-step/components/step.tsx: -------------------------------------------------------------------------------- 1 | import { StepIndicator } from './step-indicator' 2 | 3 | interface StepProps { 4 | id: string 5 | name: string 6 | index: number 7 | currentStep: number 8 | onClick: () => void 9 | className?: string 10 | } 11 | 12 | export function Step({ 13 | id, 14 | name, 15 | index, 16 | currentStep, 17 | onClick, 18 | className = '' 19 | }: StepProps) { 20 | const isActive = currentStep === index 21 | const isComplete = currentStep > index 22 | 23 | return ( 24 |
  • 25 |
    26 | 32 |
    33 |
  • 34 | ) 35 | } 36 | -------------------------------------------------------------------------------- /src/components/multi-form-step/components/stepper.tsx: -------------------------------------------------------------------------------- 1 | import { useCustomFormContext } from '../context' 2 | import { Step } from './step' 3 | 4 | export function Stepper() { 5 | const { steps, currentStep, setCurrentStep, trigger } = useCustomFormContext() 6 | 7 | const handleStepClick = async (targetStep: number) => { 8 | if (targetStep === currentStep) { 9 | return 10 | } 11 | 12 | if (targetStep < currentStep) { 13 | setCurrentStep(targetStep) 14 | return 15 | } 16 | 17 | const fields = steps[currentStep].fields 18 | const isValid = await trigger(fields as any, { shouldFocus: true }) 19 | 20 | if (isValid) { 21 | setCurrentStep(targetStep) 22 | } 23 | } 24 | 25 | return ( 26 | 42 | ) 43 | } 44 | -------------------------------------------------------------------------------- /src/components/multi-form-step/context.tsx: -------------------------------------------------------------------------------- 1 | import { zodResolver } from '@hookform/resolvers/zod' 2 | import { createContext, useContext, useState } from 'react' 3 | import { SubmitHandler, useForm, UseFormRegister } from 'react-hook-form' 4 | import { z } from 'zod' 5 | import { FormDataSchema } from './schema' 6 | 7 | type Inputs = z.infer 8 | 9 | interface FormContextProps { 10 | steps: { id: string; name: string; fields?: (keyof Inputs)[] }[] 11 | previousStep: number 12 | currentStep: number 13 | setPreviousStep: (step: number) => void 14 | setCurrentStep: React.Dispatch> 15 | register: UseFormRegister 16 | handleSubmit: ReturnType>['handleSubmit'] 17 | watch: ReturnType>['watch'] 18 | reset: ReturnType>['reset'] 19 | trigger: ReturnType>['trigger'] 20 | errors: ReturnType>['formState']['errors'] 21 | processForm: SubmitHandler 22 | goToNextStep: () => Promise 23 | goToPreviousStep: () => void 24 | } 25 | 26 | const FormContext = createContext(undefined) 27 | 28 | export const useCustomFormContext = () => { 29 | const context = useContext(FormContext) 30 | if (!context) { 31 | throw new Error('useCustomFormContext must be used within a FormProvider') 32 | } 33 | return context 34 | } 35 | 36 | export const CustomFormProvider: React.FC<{ children: React.ReactNode }> = ({ 37 | children 38 | }) => { 39 | const [previousStep, setPreviousStep] = useState(0) 40 | const [currentStep, setCurrentStep] = useState(0) 41 | 42 | const { 43 | register, 44 | handleSubmit, 45 | watch, 46 | reset, 47 | trigger, 48 | formState: { errors } 49 | } = useForm({ 50 | mode: 'all', 51 | resolver: zodResolver(FormDataSchema) 52 | }) 53 | 54 | const steps: FormContextProps['steps'] = [ 55 | { 56 | id: 'Step 1', 57 | name: 'Personal Information', 58 | fields: ['firstName', 'lastName', 'email'] 59 | }, 60 | { 61 | id: 'Step 2', 62 | name: 'Address', 63 | fields: ['country', 'state', 'city', 'street', 'zip'] 64 | }, 65 | { id: 'Step 3', name: 'Complete' } 66 | ] 67 | 68 | const processForm: SubmitHandler = data => { 69 | console.log(data) 70 | reset() 71 | } 72 | 73 | const goToNextStep = async () => { 74 | const fields = steps[currentStep].fields 75 | const output = await trigger(fields, { shouldFocus: true }) 76 | 77 | if (!output) return 78 | 79 | if (currentStep < steps.length - 1) { 80 | if (currentStep === steps.length - 2) { 81 | setCurrentStep(step => step + 1) 82 | await handleSubmit(processForm)() 83 | } else { 84 | setPreviousStep(currentStep) 85 | setCurrentStep(step => step + 1) 86 | } 87 | } 88 | } 89 | 90 | const goToPreviousStep = () => { 91 | if (currentStep > 0) { 92 | setPreviousStep(currentStep) 93 | setCurrentStep(step => step - 1) 94 | } 95 | } 96 | 97 | return ( 98 | 116 | {children} 117 | 118 | ) 119 | } 120 | -------------------------------------------------------------------------------- /src/components/multi-form-step/index.tsx: -------------------------------------------------------------------------------- 1 | import { Suspense, lazy } from 'react' 2 | import Navigation from './components/navigation' 3 | import { Stepper } from './components/stepper' 4 | import { CustomFormProvider, useCustomFormContext } from './context' 5 | 6 | const Step1 = lazy(() => import('./steps/step1')) 7 | const Step2 = lazy(() => import('./steps/step2')) 8 | const Step3 = lazy(() => import('./steps/step3')) 9 | 10 | function Steps() { 11 | const { currentStep } = useCustomFormContext() 12 | 13 | const availableSteps = [, , ] 14 | 15 | if (currentStep >= availableSteps.length) return null; 16 | 17 | return availableSteps[currentStep] 18 | } 19 | 20 | export default function MultiStepForm() { 21 | return ( 22 | 23 |
    24 | 25 |
    26 | Loading...}> 27 | 28 | 29 |
    30 | 31 |
    32 |
    33 | ) 34 | } 35 | -------------------------------------------------------------------------------- /src/components/multi-form-step/schema.ts: -------------------------------------------------------------------------------- 1 | import { z } from 'zod' 2 | 3 | export const FormDataSchema = z.object({ 4 | firstName: z.string().min(1, 'First name is required'), 5 | lastName: z.string().min(1, 'Last name is required'), 6 | email: z.string().min(1, 'Email is required').email('Invalid email address'), 7 | country: z.string().min(1, 'Country is required'), 8 | street: z.string().min(1, 'Street is required'), 9 | city: z.string().min(1, 'City is required'), 10 | state: z.string().min(1, 'State is required'), 11 | zip: z.string().min(1, 'Zip is required') 12 | }) 13 | -------------------------------------------------------------------------------- /src/components/multi-form-step/steps/step1.tsx: -------------------------------------------------------------------------------- 1 | import { FormInput } from '../../form-input' 2 | import { useCustomFormContext } from '../context' 3 | 4 | export default function Step1() { 5 | const { register, errors } = useCustomFormContext() 6 | 7 | return ( 8 | <> 9 |

    10 | Personal Information 11 |

    12 |

    13 | Provide your personal details. 14 |

    15 |
    16 | 25 | 34 | 43 |
    44 | 45 | ) 46 | } 47 | -------------------------------------------------------------------------------- /src/components/multi-form-step/steps/step2.tsx: -------------------------------------------------------------------------------- 1 | import { FormInput } from '../../form-input' 2 | import { FormSelect } from '../../form-select' 3 | import { useCustomFormContext } from '../context' 4 | 5 | export default function Step2() { 6 | const { register, errors } = useCustomFormContext() 7 | 8 | return ( 9 | <> 10 |

    Address

    11 |

    12 | Address where you can receive mail. 13 |

    14 | 15 |
    16 | 25 | 26 | 35 | 36 | 45 | 46 | 55 | 56 | 65 |
    66 | 67 | ) 68 | } 69 | -------------------------------------------------------------------------------- /src/components/multi-form-step/steps/step3.tsx: -------------------------------------------------------------------------------- 1 | export default function Step3() { 2 | return ( 3 | <> 4 |

    Complete

    5 |

    6 | Thank you for your submission. 7 |

    8 | 9 | ) 10 | } 11 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | 3 | * { 4 | font-family: 'Montserrat', sans-serif; 5 | } 6 | 7 | body { 8 | @apply bg-black/90; 9 | } 10 | 11 | @theme { 12 | --plugin-prefix: 'tw-'; 13 | } 14 | 15 | h1 { 16 | @apply text-3xl; 17 | } 18 | 19 | h2 { 20 | @apply text-xl; 21 | } 22 | 23 | h3 { 24 | @apply text-lg; 25 | } 26 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react' 2 | import { createRoot } from 'react-dom/client' 3 | import App from './App.tsx' 4 | import './index.css' 5 | 6 | createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ) 11 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": [ 6 | "ES2020", 7 | "DOM", 8 | "DOM.Iterable" 9 | ], 10 | "module": "ESNext", 11 | "skipLibCheck": true, 12 | "noImplicitAny": false, 13 | /* Bundler mode */ 14 | "moduleResolution": "bundler", 15 | "allowImportingTsExtensions": true, 16 | "isolatedModules": true, 17 | "moduleDetection": "force", 18 | "noEmit": true, 19 | "jsx": "react-jsx", 20 | /* Linting */ 21 | "strict": true, 22 | "noUnusedLocals": true, 23 | "noUnusedParameters": true, 24 | "noFallthroughCasesInSwitch": true 25 | }, 26 | "include": [ 27 | "src" 28 | ] 29 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [], 3 | "references": [ 4 | { "path": "./tsconfig.app.json" }, 5 | { "path": "./tsconfig.node.json" } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2022", 4 | "lib": ["ES2023"], 5 | "module": "ESNext", 6 | "skipLibCheck": true, 7 | 8 | /* Bundler mode */ 9 | "moduleResolution": "bundler", 10 | "allowImportingTsExtensions": true, 11 | "isolatedModules": true, 12 | "moduleDetection": "force", 13 | "noEmit": true, 14 | 15 | /* Linting */ 16 | "strict": true, 17 | "noUnusedLocals": true, 18 | "noUnusedParameters": true, 19 | "noFallthroughCasesInSwitch": true 20 | }, 21 | "include": ["vite.config.ts"] 22 | } 23 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import tailwindcss from '@tailwindcss/vite' 2 | import react from '@vitejs/plugin-react-swc' 3 | import { defineConfig } from 'vite' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [tailwindcss(), react()] 8 | }) 9 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@esbuild/aix-ppc64@0.21.5": 6 | version "0.21.5" 7 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" 8 | integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== 9 | 10 | "@esbuild/android-arm64@0.21.5": 11 | version "0.21.5" 12 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" 13 | integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== 14 | 15 | "@esbuild/android-arm@0.21.5": 16 | version "0.21.5" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" 18 | integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== 19 | 20 | "@esbuild/android-x64@0.21.5": 21 | version "0.21.5" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" 23 | integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== 24 | 25 | "@esbuild/darwin-arm64@0.21.5": 26 | version "0.21.5" 27 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" 28 | integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== 29 | 30 | "@esbuild/darwin-x64@0.21.5": 31 | version "0.21.5" 32 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" 33 | integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== 34 | 35 | "@esbuild/freebsd-arm64@0.21.5": 36 | version "0.21.5" 37 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" 38 | integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== 39 | 40 | "@esbuild/freebsd-x64@0.21.5": 41 | version "0.21.5" 42 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" 43 | integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== 44 | 45 | "@esbuild/linux-arm64@0.21.5": 46 | version "0.21.5" 47 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" 48 | integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== 49 | 50 | "@esbuild/linux-arm@0.21.5": 51 | version "0.21.5" 52 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" 53 | integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== 54 | 55 | "@esbuild/linux-ia32@0.21.5": 56 | version "0.21.5" 57 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" 58 | integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== 59 | 60 | "@esbuild/linux-loong64@0.21.5": 61 | version "0.21.5" 62 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" 63 | integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== 64 | 65 | "@esbuild/linux-mips64el@0.21.5": 66 | version "0.21.5" 67 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" 68 | integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== 69 | 70 | "@esbuild/linux-ppc64@0.21.5": 71 | version "0.21.5" 72 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" 73 | integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== 74 | 75 | "@esbuild/linux-riscv64@0.21.5": 76 | version "0.21.5" 77 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" 78 | integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== 79 | 80 | "@esbuild/linux-s390x@0.21.5": 81 | version "0.21.5" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" 83 | integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== 84 | 85 | "@esbuild/linux-x64@0.21.5": 86 | version "0.21.5" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" 88 | integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== 89 | 90 | "@esbuild/netbsd-x64@0.21.5": 91 | version "0.21.5" 92 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" 93 | integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== 94 | 95 | "@esbuild/openbsd-x64@0.21.5": 96 | version "0.21.5" 97 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" 98 | integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== 99 | 100 | "@esbuild/sunos-x64@0.21.5": 101 | version "0.21.5" 102 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" 103 | integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== 104 | 105 | "@esbuild/win32-arm64@0.21.5": 106 | version "0.21.5" 107 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" 108 | integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== 109 | 110 | "@esbuild/win32-ia32@0.21.5": 111 | version "0.21.5" 112 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" 113 | integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== 114 | 115 | "@esbuild/win32-x64@0.21.5": 116 | version "0.21.5" 117 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" 118 | integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== 119 | 120 | "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": 121 | version "4.4.0" 122 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 123 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 124 | dependencies: 125 | eslint-visitor-keys "^3.3.0" 126 | 127 | "@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.11.0": 128 | version "4.11.0" 129 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.0.tgz#b0ffd0312b4a3fd2d6f77237e7248a5ad3a680ae" 130 | integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A== 131 | 132 | "@eslint/config-array@^0.17.1": 133 | version "0.17.1" 134 | resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.17.1.tgz#d9b8b8b6b946f47388f32bedfd3adf29ca8f8910" 135 | integrity sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA== 136 | dependencies: 137 | "@eslint/object-schema" "^2.1.4" 138 | debug "^4.3.1" 139 | minimatch "^3.1.2" 140 | 141 | "@eslint/eslintrc@^3.1.0": 142 | version "3.1.0" 143 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.1.0.tgz#dbd3482bfd91efa663cbe7aa1f506839868207b6" 144 | integrity sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ== 145 | dependencies: 146 | ajv "^6.12.4" 147 | debug "^4.3.2" 148 | espree "^10.0.1" 149 | globals "^14.0.0" 150 | ignore "^5.2.0" 151 | import-fresh "^3.2.1" 152 | js-yaml "^4.1.0" 153 | minimatch "^3.1.2" 154 | strip-json-comments "^3.1.1" 155 | 156 | "@eslint/js@9.9.0", "@eslint/js@^9.9.0": 157 | version "9.9.0" 158 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.9.0.tgz#d8437adda50b3ed4401964517b64b4f59b0e2638" 159 | integrity sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug== 160 | 161 | "@eslint/object-schema@^2.1.4": 162 | version "2.1.4" 163 | resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843" 164 | integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ== 165 | 166 | "@hookform/resolvers@^3.9.0": 167 | version "3.9.0" 168 | resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-3.9.0.tgz#cf540ac21c6c0cd24a40cf53d8e6d64391fb753d" 169 | integrity sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg== 170 | 171 | "@humanwhocodes/module-importer@^1.0.1": 172 | version "1.0.1" 173 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 174 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 175 | 176 | "@humanwhocodes/retry@^0.3.0": 177 | version "0.3.0" 178 | resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.0.tgz#6d86b8cb322660f03d3f0aa94b99bdd8e172d570" 179 | integrity sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew== 180 | 181 | "@nodelib/fs.scandir@2.1.5": 182 | version "2.1.5" 183 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 184 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 185 | dependencies: 186 | "@nodelib/fs.stat" "2.0.5" 187 | run-parallel "^1.1.9" 188 | 189 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 190 | version "2.0.5" 191 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 192 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 193 | 194 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 195 | version "1.2.8" 196 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 197 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 198 | dependencies: 199 | "@nodelib/fs.scandir" "2.1.5" 200 | fastq "^1.6.0" 201 | 202 | "@rollup/rollup-android-arm-eabi@4.21.0": 203 | version "4.21.0" 204 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.0.tgz#d941173f82f9b041c61b0dc1a2a91dcd06e4b31e" 205 | integrity sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA== 206 | 207 | "@rollup/rollup-android-arm64@4.21.0": 208 | version "4.21.0" 209 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.0.tgz#7e7157c8543215245ceffc445134d9e843ba51c0" 210 | integrity sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA== 211 | 212 | "@rollup/rollup-darwin-arm64@4.21.0": 213 | version "4.21.0" 214 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.0.tgz#f0a18a4fc8dc6eb1e94a51fa2adb22876f477947" 215 | integrity sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA== 216 | 217 | "@rollup/rollup-darwin-x64@4.21.0": 218 | version "4.21.0" 219 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.0.tgz#34b7867613e5cc42d2b85ddc0424228cc33b43f0" 220 | integrity sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg== 221 | 222 | "@rollup/rollup-linux-arm-gnueabihf@4.21.0": 223 | version "4.21.0" 224 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.0.tgz#422b19ff9ae02b05d3395183d1d43b38c7c8be0b" 225 | integrity sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA== 226 | 227 | "@rollup/rollup-linux-arm-musleabihf@4.21.0": 228 | version "4.21.0" 229 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.0.tgz#568aa29195ef6fc57ec6ed3f518923764406a8ee" 230 | integrity sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w== 231 | 232 | "@rollup/rollup-linux-arm64-gnu@4.21.0": 233 | version "4.21.0" 234 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.0.tgz#22309c8bcba9a73114f69165c72bc94b2fbec085" 235 | integrity sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w== 236 | 237 | "@rollup/rollup-linux-arm64-musl@4.21.0": 238 | version "4.21.0" 239 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.0.tgz#c93c388af6d33f082894b8a60839d7265b2b9bc5" 240 | integrity sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw== 241 | 242 | "@rollup/rollup-linux-powerpc64le-gnu@4.21.0": 243 | version "4.21.0" 244 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.0.tgz#493c5e19e395cf3c6bd860c7139c8a903dea72b4" 245 | integrity sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg== 246 | 247 | "@rollup/rollup-linux-riscv64-gnu@4.21.0": 248 | version "4.21.0" 249 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.0.tgz#a2eab4346fbe5909165ce99adb935ba30c9fb444" 250 | integrity sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg== 251 | 252 | "@rollup/rollup-linux-s390x-gnu@4.21.0": 253 | version "4.21.0" 254 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.0.tgz#0bc49a79db4345d78d757bb1b05e73a1b42fa5c3" 255 | integrity sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw== 256 | 257 | "@rollup/rollup-linux-x64-gnu@4.21.0": 258 | version "4.21.0" 259 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.0.tgz#4fd36a6a41f3406d8693321b13d4f9b7658dd4b9" 260 | integrity sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg== 261 | 262 | "@rollup/rollup-linux-x64-musl@4.21.0": 263 | version "4.21.0" 264 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.0.tgz#10ebb13bd4469cbad1a5d9b073bd27ec8a886200" 265 | integrity sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ== 266 | 267 | "@rollup/rollup-win32-arm64-msvc@4.21.0": 268 | version "4.21.0" 269 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.0.tgz#2fef1a90f1402258ef915ae5a94cc91a5a1d5bfc" 270 | integrity sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ== 271 | 272 | "@rollup/rollup-win32-ia32-msvc@4.21.0": 273 | version "4.21.0" 274 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.0.tgz#a18ad47a95c5f264defb60acdd8c27569f816fc1" 275 | integrity sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg== 276 | 277 | "@rollup/rollup-win32-x64-msvc@4.21.0": 278 | version "4.21.0" 279 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.0.tgz#20c09cf44dcb082140cc7f439dd679fe4bba3375" 280 | integrity sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ== 281 | 282 | "@swc/core-darwin-arm64@1.7.14": 283 | version "1.7.14" 284 | resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.7.14.tgz#a4530ec755ea183802cc9dfe4900ab5f6a327fea" 285 | integrity sha512-V0OUXjOH+hdGxDYG8NkQzy25mKOpcNKFpqtZEzLe5V/CpLJPnpg1+pMz70m14s9ZFda9OxsjlvPbg1FLUwhgIQ== 286 | 287 | "@swc/core-darwin-x64@1.7.14": 288 | version "1.7.14" 289 | resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.7.14.tgz#2c9c717fd28dd1dde9c21cf58b01f1cda7976b1a" 290 | integrity sha512-9iFvUnxG6FC3An5ogp5jbBfQuUmTTwy8KMB+ZddUoPB3NR1eV+Y9vOh/tfWcenSJbgOKDLgYC5D/b1mHAprsrQ== 291 | 292 | "@swc/core-linux-arm-gnueabihf@1.7.14": 293 | version "1.7.14" 294 | resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.14.tgz#fed055c9c65347177c8df88720f8a51793a4df06" 295 | integrity sha512-zGJsef9qPivKSH8Vv4F/HiBXBTHZ5Hs3ZjVGo/UIdWPJF8fTL9OVADiRrl34Q7zOZEtGXRwEKLUW1SCQcbDvZA== 296 | 297 | "@swc/core-linux-arm64-gnu@1.7.14": 298 | version "1.7.14" 299 | resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.14.tgz#ca740c8ea26f041b2dc43ba87facec452052814f" 300 | integrity sha512-AxV3MPsoI7i4B8FXOew3dx3N8y00YoJYvIPfxelw07RegeCEH3aHp2U2DtgbP/NV1ugZMx0TL2Z2DEvocmA51g== 301 | 302 | "@swc/core-linux-arm64-musl@1.7.14": 303 | version "1.7.14" 304 | resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.7.14.tgz#fbc6fed24f5ad58b948e5b7abe6cd1f07112bef1" 305 | integrity sha512-JDLdNjUj3zPehd4+DrQD8Ltb3B5lD8D05IwePyDWw+uR/YPc7w/TX1FUVci5h3giJnlMCJRvi1IQYV7K1n7KtQ== 306 | 307 | "@swc/core-linux-x64-gnu@1.7.14": 308 | version "1.7.14" 309 | resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.7.14.tgz#509a37833e4fbf89506b9291d9bd131fa2017fca" 310 | integrity sha512-Siy5OvPCLLWmMdx4msnEs8HvEVUEigSn0+3pbLjv78iwzXd0qSBNHUPZyC1xeurVaUbpNDxZTpPRIwpqNE2+Og== 311 | 312 | "@swc/core-linux-x64-musl@1.7.14": 313 | version "1.7.14" 314 | resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.7.14.tgz#81156cc6ff814ad4b8fcf6eb6658d3f247db0b57" 315 | integrity sha512-FtEGm9mwtRYQNK43WMtUIadxHs/ja2rnDurB99os0ZoFTGG2IHuht2zD97W0wB8JbqEabT1XwSG9Y5wmN+ciEQ== 316 | 317 | "@swc/core-win32-arm64-msvc@1.7.14": 318 | version "1.7.14" 319 | resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.14.tgz#c605fa783b5fbe1fff784ace4c4bb074b8d6026d" 320 | integrity sha512-Jp8KDlfq7Ntt2/BXr0y344cYgB1zf0DaLzDZ1ZJR6rYlAzWYSccLYcxHa97VGnsYhhPspMpmCvHid97oe2hl4A== 321 | 322 | "@swc/core-win32-ia32-msvc@1.7.14": 323 | version "1.7.14" 324 | resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.14.tgz#3e15dc3b662c9fab851a38b3e271c8e2da4ba03a" 325 | integrity sha512-I+cFsXF0OU0J9J4zdWiQKKLURO5dvCujH9Jr8N0cErdy54l9d4gfIxdctfTF+7FyXtWKLTCkp+oby9BQhkFGWA== 326 | 327 | "@swc/core-win32-x64-msvc@1.7.14": 328 | version "1.7.14" 329 | resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.7.14.tgz#83958d92e9f07865ec9365212111fbc295660f0d" 330 | integrity sha512-NNrprQCK6d28mG436jVo2TD+vACHseUECacEBGZ9Ef0qfOIWS1XIt2MisQKG0Oea2VvLFl6tF/V4Lnx/H0Sn3Q== 331 | 332 | "@swc/core@^1.5.7": 333 | version "1.7.14" 334 | resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.7.14.tgz#d10492b5a4168cb1e73cf561a315e8b0f62255ed" 335 | integrity sha512-9aeXeifnyuvc2pcuuhPQgVUwdpGEzZ+9nJu0W8/hNl/aESFsJGR5i9uQJRGu0atoNr01gK092fvmqMmQAPcKow== 336 | dependencies: 337 | "@swc/counter" "^0.1.3" 338 | "@swc/types" "^0.1.12" 339 | optionalDependencies: 340 | "@swc/core-darwin-arm64" "1.7.14" 341 | "@swc/core-darwin-x64" "1.7.14" 342 | "@swc/core-linux-arm-gnueabihf" "1.7.14" 343 | "@swc/core-linux-arm64-gnu" "1.7.14" 344 | "@swc/core-linux-arm64-musl" "1.7.14" 345 | "@swc/core-linux-x64-gnu" "1.7.14" 346 | "@swc/core-linux-x64-musl" "1.7.14" 347 | "@swc/core-win32-arm64-msvc" "1.7.14" 348 | "@swc/core-win32-ia32-msvc" "1.7.14" 349 | "@swc/core-win32-x64-msvc" "1.7.14" 350 | 351 | "@swc/counter@^0.1.3": 352 | version "0.1.3" 353 | resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9" 354 | integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== 355 | 356 | "@swc/types@^0.1.12": 357 | version "0.1.12" 358 | resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.12.tgz#7f632c06ab4092ce0ebd046ed77ff7557442282f" 359 | integrity sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA== 360 | dependencies: 361 | "@swc/counter" "^0.1.3" 362 | 363 | "@tailwindcss/oxide-android-arm64@4.0.0-alpha.19": 364 | version "4.0.0-alpha.19" 365 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.0-alpha.19.tgz#09d2c53cbcee5311ba252e77cb244fce10b10348" 366 | integrity sha512-NhpXem1j7g0uSGyLucmMj0VVQMeUrWc6kR/Ymnri3tpw2eaykgFYwLfdnI7jdJRxUxa/nNJip9yBJ3diZXl60w== 367 | 368 | "@tailwindcss/oxide-darwin-arm64@4.0.0-alpha.19": 369 | version "4.0.0-alpha.19" 370 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.0-alpha.19.tgz#51bef927b7f0754b485796e5f407e5d9a1fd385d" 371 | integrity sha512-KCdalT+huX2cW9snNmPr+B66V91cSzIobBCXVgYCPCh0NZF4ueKu+X+kQN2gFxurDUm/D+aKW/0rQUIsUmFpdQ== 372 | 373 | "@tailwindcss/oxide-darwin-x64@4.0.0-alpha.19": 374 | version "4.0.0-alpha.19" 375 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.0-alpha.19.tgz#541cbee7498a2ab671e0addc9979edc747d167ac" 376 | integrity sha512-ETOWA08loUmOVTEa3zhRhY8HyqdGtR9DNhXdrRZBi67ZwCAmA+jg5B+mZaYeQJ6CjETx07BnhcGmmxGz3/6c8w== 377 | 378 | "@tailwindcss/oxide-freebsd-x64@4.0.0-alpha.19": 379 | version "4.0.0-alpha.19" 380 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.0-alpha.19.tgz#08b98fe06967c91f3c7b624daa234469142bdec4" 381 | integrity sha512-uB0rYLpqPnmyqtYSKHu1AtnHeerNcVH+de0sIufGCBDFGYNxmW8feCKNZwo6r7U/Fzg+AF9BOjwvdvd4yLfQ8g== 382 | 383 | "@tailwindcss/oxide-linux-arm-gnueabihf@4.0.0-alpha.19": 384 | version "4.0.0-alpha.19" 385 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.0-alpha.19.tgz#e79acd25bd4916460703baeedd6d3f4f5c69ca82" 386 | integrity sha512-hIfm6DNh18rkz2PFRsQANINH0tpso6/vaU8p0Qw7rgYqqrxJTRpyLVsnvx3ahMOplJrDT6Z+Nfak8udnZN2C/Q== 387 | 388 | "@tailwindcss/oxide-linux-arm64-gnu@4.0.0-alpha.19": 389 | version "4.0.0-alpha.19" 390 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.0-alpha.19.tgz#868dfce14df70ceb2a8d7d9128394efbb1561c68" 391 | integrity sha512-n1Hr+8Hup2GLmeonQy9ydZxMBCs0FR1rcv4K7AHip+6PbD0se8k9LBIZac3OguFNj2hTehiadaiRb18rsVUw0g== 392 | 393 | "@tailwindcss/oxide-linux-arm64-musl@4.0.0-alpha.19": 394 | version "4.0.0-alpha.19" 395 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.0-alpha.19.tgz#7940f8aafcd9854e2600e0be0bec872aa518c457" 396 | integrity sha512-KhwthLZh9Js3t5URkuRURw45iU3rSh9vhuHRaV4KQT10ZFiXQMUlFfMKJyxRMcgC2fcL5vsiqwjOaMwp7Y8vsQ== 397 | 398 | "@tailwindcss/oxide-linux-x64-gnu@4.0.0-alpha.19": 399 | version "4.0.0-alpha.19" 400 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.0-alpha.19.tgz#6fb645655b91e904e3ca043e195c54dac85aa056" 401 | integrity sha512-qqEuULSiczyZkdWVzwkiiFyOYqx5RR2De75iwYREzXUuHRHval1ep2qO7tvZdgt37t2vgjoQwaPA6zO+JGUa+Q== 402 | 403 | "@tailwindcss/oxide-linux-x64-musl@4.0.0-alpha.19": 404 | version "4.0.0-alpha.19" 405 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.0-alpha.19.tgz#da2466e42176b9ba88cd327624a54ea9ff74d1e7" 406 | integrity sha512-JKTYCiNz83sYl2FgKJk3dL11FS4dAj7Rgmuz3TVANmeMYTBtwmFPthoH0qAmF+hjPJgT5Ne7lSwplfuHJAD3MQ== 407 | 408 | "@tailwindcss/oxide-win32-x64-msvc@4.0.0-alpha.19": 409 | version "4.0.0-alpha.19" 410 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.0-alpha.19.tgz#b0772e499566a5efb68bb5e1342986028f971535" 411 | integrity sha512-D43tji14+i/GhJn5YZX8c2FXFmAqlI6DDGX8caUM35dga/uT+sJUfLJ84YigJyvAdSF1gBVdm7MvhYRcVYHOwg== 412 | 413 | "@tailwindcss/oxide@4.0.0-alpha.19": 414 | version "4.0.0-alpha.19" 415 | resolved "https://registry.yarnpkg.com/@tailwindcss/oxide/-/oxide-4.0.0-alpha.19.tgz#3136b2af17aee8d06cb8fec0fc5faa0680b2141f" 416 | integrity sha512-DdkrVz/MKPoe9v7W3c0+SEFKRDIPMSsxgN7gPC+xeTnTL4BGoT5b1EiVGFuXWEyLbDmWztuN6z75Yuze2BwvMQ== 417 | optionalDependencies: 418 | "@tailwindcss/oxide-android-arm64" "4.0.0-alpha.19" 419 | "@tailwindcss/oxide-darwin-arm64" "4.0.0-alpha.19" 420 | "@tailwindcss/oxide-darwin-x64" "4.0.0-alpha.19" 421 | "@tailwindcss/oxide-freebsd-x64" "4.0.0-alpha.19" 422 | "@tailwindcss/oxide-linux-arm-gnueabihf" "4.0.0-alpha.19" 423 | "@tailwindcss/oxide-linux-arm64-gnu" "4.0.0-alpha.19" 424 | "@tailwindcss/oxide-linux-arm64-musl" "4.0.0-alpha.19" 425 | "@tailwindcss/oxide-linux-x64-gnu" "4.0.0-alpha.19" 426 | "@tailwindcss/oxide-linux-x64-musl" "4.0.0-alpha.19" 427 | "@tailwindcss/oxide-win32-x64-msvc" "4.0.0-alpha.19" 428 | 429 | "@tailwindcss/vite@4.0.0-alpha.19": 430 | version "4.0.0-alpha.19" 431 | resolved "https://registry.yarnpkg.com/@tailwindcss/vite/-/vite-4.0.0-alpha.19.tgz#86da50fd8c2ade55fecd8361346186dbc108f7ce" 432 | integrity sha512-+JG43ehbw1YyPAHjl7zzUpaR8egqJwC5/R//QMn8DsQ1fBaeTs2U+/0W9dkh5SVcFijRhldayvMs5zixGQHiSA== 433 | dependencies: 434 | "@tailwindcss/oxide" "4.0.0-alpha.19" 435 | lightningcss "^1.26.0" 436 | postcss-load-config "^6.0.1" 437 | tailwindcss "4.0.0-alpha.19" 438 | 439 | "@types/estree@1.0.5": 440 | version "1.0.5" 441 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" 442 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== 443 | 444 | "@types/prop-types@*": 445 | version "15.7.12" 446 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" 447 | integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== 448 | 449 | "@types/react-dom@^18.3.0": 450 | version "18.3.0" 451 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.0.tgz#0cbc818755d87066ab6ca74fbedb2547d74a82b0" 452 | integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg== 453 | dependencies: 454 | "@types/react" "*" 455 | 456 | "@types/react@*", "@types/react@^18.3.3": 457 | version "18.3.3" 458 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.3.tgz#9679020895318b0915d7a3ab004d92d33375c45f" 459 | integrity sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw== 460 | dependencies: 461 | "@types/prop-types" "*" 462 | csstype "^3.0.2" 463 | 464 | "@typescript-eslint/eslint-plugin@8.1.0": 465 | version "8.1.0" 466 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.1.0.tgz#3c020deeaaba82a6f741d00dacf172c53be4911f" 467 | integrity sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw== 468 | dependencies: 469 | "@eslint-community/regexpp" "^4.10.0" 470 | "@typescript-eslint/scope-manager" "8.1.0" 471 | "@typescript-eslint/type-utils" "8.1.0" 472 | "@typescript-eslint/utils" "8.1.0" 473 | "@typescript-eslint/visitor-keys" "8.1.0" 474 | graphemer "^1.4.0" 475 | ignore "^5.3.1" 476 | natural-compare "^1.4.0" 477 | ts-api-utils "^1.3.0" 478 | 479 | "@typescript-eslint/parser@8.1.0": 480 | version "8.1.0" 481 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.1.0.tgz#b7e77f5fa212df59eba51ecd4986f194bccc2303" 482 | integrity sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA== 483 | dependencies: 484 | "@typescript-eslint/scope-manager" "8.1.0" 485 | "@typescript-eslint/types" "8.1.0" 486 | "@typescript-eslint/typescript-estree" "8.1.0" 487 | "@typescript-eslint/visitor-keys" "8.1.0" 488 | debug "^4.3.4" 489 | 490 | "@typescript-eslint/scope-manager@8.1.0": 491 | version "8.1.0" 492 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.1.0.tgz#dd8987d2efebb71d230a1c71d82e84a7aead5c3d" 493 | integrity sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ== 494 | dependencies: 495 | "@typescript-eslint/types" "8.1.0" 496 | "@typescript-eslint/visitor-keys" "8.1.0" 497 | 498 | "@typescript-eslint/type-utils@8.1.0": 499 | version "8.1.0" 500 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.1.0.tgz#dbf5a4308166dfc37a36305390dea04a3a3b5048" 501 | integrity sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA== 502 | dependencies: 503 | "@typescript-eslint/typescript-estree" "8.1.0" 504 | "@typescript-eslint/utils" "8.1.0" 505 | debug "^4.3.4" 506 | ts-api-utils "^1.3.0" 507 | 508 | "@typescript-eslint/types@8.1.0": 509 | version "8.1.0" 510 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.1.0.tgz#fbf1eaa668a7e444ac507732ca9d3c3468e5db9c" 511 | integrity sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog== 512 | 513 | "@typescript-eslint/typescript-estree@8.1.0": 514 | version "8.1.0" 515 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.1.0.tgz#c44e5667683c0bb5caa43192e27de6a994f4e4c4" 516 | integrity sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg== 517 | dependencies: 518 | "@typescript-eslint/types" "8.1.0" 519 | "@typescript-eslint/visitor-keys" "8.1.0" 520 | debug "^4.3.4" 521 | globby "^11.1.0" 522 | is-glob "^4.0.3" 523 | minimatch "^9.0.4" 524 | semver "^7.6.0" 525 | ts-api-utils "^1.3.0" 526 | 527 | "@typescript-eslint/utils@8.1.0": 528 | version "8.1.0" 529 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.1.0.tgz#a922985a43d2560ce0d293be79148fa80c1325e0" 530 | integrity sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA== 531 | dependencies: 532 | "@eslint-community/eslint-utils" "^4.4.0" 533 | "@typescript-eslint/scope-manager" "8.1.0" 534 | "@typescript-eslint/types" "8.1.0" 535 | "@typescript-eslint/typescript-estree" "8.1.0" 536 | 537 | "@typescript-eslint/visitor-keys@8.1.0": 538 | version "8.1.0" 539 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.1.0.tgz#ab2b3a9699a8ddebf0c205e133f114c1fed9daad" 540 | integrity sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag== 541 | dependencies: 542 | "@typescript-eslint/types" "8.1.0" 543 | eslint-visitor-keys "^3.4.3" 544 | 545 | "@vitejs/plugin-react-swc@^3.5.0": 546 | version "3.7.0" 547 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.0.tgz#e456c0a6d7f562268e1d231af9ac46b86ef47d88" 548 | integrity sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA== 549 | dependencies: 550 | "@swc/core" "^1.5.7" 551 | 552 | acorn-jsx@^5.3.2: 553 | version "5.3.2" 554 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 555 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 556 | 557 | acorn@^8.12.0: 558 | version "8.12.1" 559 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" 560 | integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== 561 | 562 | ajv@^6.12.4: 563 | version "6.12.6" 564 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 565 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 566 | dependencies: 567 | fast-deep-equal "^3.1.1" 568 | fast-json-stable-stringify "^2.0.0" 569 | json-schema-traverse "^0.4.1" 570 | uri-js "^4.2.2" 571 | 572 | ansi-regex@^5.0.1: 573 | version "5.0.1" 574 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 575 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 576 | 577 | ansi-styles@^4.1.0: 578 | version "4.3.0" 579 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 580 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 581 | dependencies: 582 | color-convert "^2.0.1" 583 | 584 | argparse@^2.0.1: 585 | version "2.0.1" 586 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 587 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 588 | 589 | array-union@^2.1.0: 590 | version "2.1.0" 591 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 592 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 593 | 594 | balanced-match@^1.0.0: 595 | version "1.0.2" 596 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 597 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 598 | 599 | brace-expansion@^1.1.7: 600 | version "1.1.11" 601 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 602 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 603 | dependencies: 604 | balanced-match "^1.0.0" 605 | concat-map "0.0.1" 606 | 607 | brace-expansion@^2.0.1: 608 | version "2.0.1" 609 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 610 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 611 | dependencies: 612 | balanced-match "^1.0.0" 613 | 614 | braces@^3.0.3: 615 | version "3.0.3" 616 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" 617 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 618 | dependencies: 619 | fill-range "^7.1.1" 620 | 621 | callsites@^3.0.0: 622 | version "3.1.0" 623 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 624 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 625 | 626 | chalk@^4.0.0: 627 | version "4.1.2" 628 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 629 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 630 | dependencies: 631 | ansi-styles "^4.1.0" 632 | supports-color "^7.1.0" 633 | 634 | color-convert@^2.0.1: 635 | version "2.0.1" 636 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 637 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 638 | dependencies: 639 | color-name "~1.1.4" 640 | 641 | color-name@~1.1.4: 642 | version "1.1.4" 643 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 644 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 645 | 646 | concat-map@0.0.1: 647 | version "0.0.1" 648 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 649 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 650 | 651 | cross-spawn@^7.0.2: 652 | version "7.0.3" 653 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 654 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 655 | dependencies: 656 | path-key "^3.1.0" 657 | shebang-command "^2.0.0" 658 | which "^2.0.1" 659 | 660 | csstype@^3.0.2: 661 | version "3.1.3" 662 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 663 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 664 | 665 | debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: 666 | version "4.3.6" 667 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" 668 | integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== 669 | dependencies: 670 | ms "2.1.2" 671 | 672 | deep-is@^0.1.3: 673 | version "0.1.4" 674 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 675 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 676 | 677 | detect-libc@^1.0.3: 678 | version "1.0.3" 679 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 680 | integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== 681 | 682 | dir-glob@^3.0.1: 683 | version "3.0.1" 684 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 685 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 686 | dependencies: 687 | path-type "^4.0.0" 688 | 689 | esbuild@^0.21.3: 690 | version "0.21.5" 691 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" 692 | integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== 693 | optionalDependencies: 694 | "@esbuild/aix-ppc64" "0.21.5" 695 | "@esbuild/android-arm" "0.21.5" 696 | "@esbuild/android-arm64" "0.21.5" 697 | "@esbuild/android-x64" "0.21.5" 698 | "@esbuild/darwin-arm64" "0.21.5" 699 | "@esbuild/darwin-x64" "0.21.5" 700 | "@esbuild/freebsd-arm64" "0.21.5" 701 | "@esbuild/freebsd-x64" "0.21.5" 702 | "@esbuild/linux-arm" "0.21.5" 703 | "@esbuild/linux-arm64" "0.21.5" 704 | "@esbuild/linux-ia32" "0.21.5" 705 | "@esbuild/linux-loong64" "0.21.5" 706 | "@esbuild/linux-mips64el" "0.21.5" 707 | "@esbuild/linux-ppc64" "0.21.5" 708 | "@esbuild/linux-riscv64" "0.21.5" 709 | "@esbuild/linux-s390x" "0.21.5" 710 | "@esbuild/linux-x64" "0.21.5" 711 | "@esbuild/netbsd-x64" "0.21.5" 712 | "@esbuild/openbsd-x64" "0.21.5" 713 | "@esbuild/sunos-x64" "0.21.5" 714 | "@esbuild/win32-arm64" "0.21.5" 715 | "@esbuild/win32-ia32" "0.21.5" 716 | "@esbuild/win32-x64" "0.21.5" 717 | 718 | escape-string-regexp@^4.0.0: 719 | version "4.0.0" 720 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 721 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 722 | 723 | eslint-plugin-react-hooks@^5.1.0-rc.0: 724 | version "5.1.0-rc-fb9a90fa48-20240614" 725 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0-rc-fb9a90fa48-20240614.tgz#206a7ec005f0b286aaf7091f4e566083d310b189" 726 | integrity sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w== 727 | 728 | eslint-plugin-react-refresh@^0.4.9: 729 | version "0.4.9" 730 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.9.tgz#bf870372b353b12e1e6fb7fc41b282d9cbc8d93d" 731 | integrity sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA== 732 | 733 | eslint-scope@^8.0.2: 734 | version "8.0.2" 735 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.0.2.tgz#5cbb33d4384c9136083a71190d548158fe128f94" 736 | integrity sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA== 737 | dependencies: 738 | esrecurse "^4.3.0" 739 | estraverse "^5.2.0" 740 | 741 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.3: 742 | version "3.4.3" 743 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 744 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 745 | 746 | eslint-visitor-keys@^4.0.0: 747 | version "4.0.0" 748 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz#e3adc021aa038a2a8e0b2f8b0ce8f66b9483b1fb" 749 | integrity sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw== 750 | 751 | eslint@^9.9.0: 752 | version "9.9.0" 753 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.9.0.tgz#8d214e69ae4debeca7ae97daebbefe462072d975" 754 | integrity sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA== 755 | dependencies: 756 | "@eslint-community/eslint-utils" "^4.2.0" 757 | "@eslint-community/regexpp" "^4.11.0" 758 | "@eslint/config-array" "^0.17.1" 759 | "@eslint/eslintrc" "^3.1.0" 760 | "@eslint/js" "9.9.0" 761 | "@humanwhocodes/module-importer" "^1.0.1" 762 | "@humanwhocodes/retry" "^0.3.0" 763 | "@nodelib/fs.walk" "^1.2.8" 764 | ajv "^6.12.4" 765 | chalk "^4.0.0" 766 | cross-spawn "^7.0.2" 767 | debug "^4.3.2" 768 | escape-string-regexp "^4.0.0" 769 | eslint-scope "^8.0.2" 770 | eslint-visitor-keys "^4.0.0" 771 | espree "^10.1.0" 772 | esquery "^1.5.0" 773 | esutils "^2.0.2" 774 | fast-deep-equal "^3.1.3" 775 | file-entry-cache "^8.0.0" 776 | find-up "^5.0.0" 777 | glob-parent "^6.0.2" 778 | ignore "^5.2.0" 779 | imurmurhash "^0.1.4" 780 | is-glob "^4.0.0" 781 | is-path-inside "^3.0.3" 782 | json-stable-stringify-without-jsonify "^1.0.1" 783 | levn "^0.4.1" 784 | lodash.merge "^4.6.2" 785 | minimatch "^3.1.2" 786 | natural-compare "^1.4.0" 787 | optionator "^0.9.3" 788 | strip-ansi "^6.0.1" 789 | text-table "^0.2.0" 790 | 791 | espree@^10.0.1, espree@^10.1.0: 792 | version "10.1.0" 793 | resolved "https://registry.yarnpkg.com/espree/-/espree-10.1.0.tgz#8788dae611574c0f070691f522e4116c5a11fc56" 794 | integrity sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA== 795 | dependencies: 796 | acorn "^8.12.0" 797 | acorn-jsx "^5.3.2" 798 | eslint-visitor-keys "^4.0.0" 799 | 800 | esquery@^1.5.0: 801 | version "1.6.0" 802 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" 803 | integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== 804 | dependencies: 805 | estraverse "^5.1.0" 806 | 807 | esrecurse@^4.3.0: 808 | version "4.3.0" 809 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 810 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 811 | dependencies: 812 | estraverse "^5.2.0" 813 | 814 | estraverse@^5.1.0, estraverse@^5.2.0: 815 | version "5.3.0" 816 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 817 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 818 | 819 | esutils@^2.0.2: 820 | version "2.0.3" 821 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 822 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 823 | 824 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 825 | version "3.1.3" 826 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 827 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 828 | 829 | fast-glob@^3.2.9: 830 | version "3.3.2" 831 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" 832 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== 833 | dependencies: 834 | "@nodelib/fs.stat" "^2.0.2" 835 | "@nodelib/fs.walk" "^1.2.3" 836 | glob-parent "^5.1.2" 837 | merge2 "^1.3.0" 838 | micromatch "^4.0.4" 839 | 840 | fast-json-stable-stringify@^2.0.0: 841 | version "2.1.0" 842 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 843 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 844 | 845 | fast-levenshtein@^2.0.6: 846 | version "2.0.6" 847 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 848 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 849 | 850 | fastq@^1.6.0: 851 | version "1.17.1" 852 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" 853 | integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== 854 | dependencies: 855 | reusify "^1.0.4" 856 | 857 | file-entry-cache@^8.0.0: 858 | version "8.0.0" 859 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" 860 | integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== 861 | dependencies: 862 | flat-cache "^4.0.0" 863 | 864 | fill-range@^7.1.1: 865 | version "7.1.1" 866 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" 867 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 868 | dependencies: 869 | to-regex-range "^5.0.1" 870 | 871 | find-up@^5.0.0: 872 | version "5.0.0" 873 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 874 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 875 | dependencies: 876 | locate-path "^6.0.0" 877 | path-exists "^4.0.0" 878 | 879 | flat-cache@^4.0.0: 880 | version "4.0.1" 881 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" 882 | integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== 883 | dependencies: 884 | flatted "^3.2.9" 885 | keyv "^4.5.4" 886 | 887 | flatted@^3.2.9: 888 | version "3.3.1" 889 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" 890 | integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== 891 | 892 | fsevents@~2.3.2, fsevents@~2.3.3: 893 | version "2.3.3" 894 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 895 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 896 | 897 | glob-parent@^5.1.2: 898 | version "5.1.2" 899 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 900 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 901 | dependencies: 902 | is-glob "^4.0.1" 903 | 904 | glob-parent@^6.0.2: 905 | version "6.0.2" 906 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 907 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 908 | dependencies: 909 | is-glob "^4.0.3" 910 | 911 | globals@^14.0.0: 912 | version "14.0.0" 913 | resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" 914 | integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== 915 | 916 | globals@^15.9.0: 917 | version "15.9.0" 918 | resolved "https://registry.yarnpkg.com/globals/-/globals-15.9.0.tgz#e9de01771091ffbc37db5714dab484f9f69ff399" 919 | integrity sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA== 920 | 921 | globby@^11.1.0: 922 | version "11.1.0" 923 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 924 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 925 | dependencies: 926 | array-union "^2.1.0" 927 | dir-glob "^3.0.1" 928 | fast-glob "^3.2.9" 929 | ignore "^5.2.0" 930 | merge2 "^1.4.1" 931 | slash "^3.0.0" 932 | 933 | graphemer@^1.4.0: 934 | version "1.4.0" 935 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 936 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 937 | 938 | has-flag@^4.0.0: 939 | version "4.0.0" 940 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 941 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 942 | 943 | ignore@^5.2.0, ignore@^5.3.1: 944 | version "5.3.2" 945 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" 946 | integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== 947 | 948 | import-fresh@^3.2.1: 949 | version "3.3.0" 950 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 951 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 952 | dependencies: 953 | parent-module "^1.0.0" 954 | resolve-from "^4.0.0" 955 | 956 | imurmurhash@^0.1.4: 957 | version "0.1.4" 958 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 959 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 960 | 961 | is-extglob@^2.1.1: 962 | version "2.1.1" 963 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 964 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 965 | 966 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 967 | version "4.0.3" 968 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 969 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 970 | dependencies: 971 | is-extglob "^2.1.1" 972 | 973 | is-number@^7.0.0: 974 | version "7.0.0" 975 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 976 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 977 | 978 | is-path-inside@^3.0.3: 979 | version "3.0.3" 980 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 981 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 982 | 983 | isexe@^2.0.0: 984 | version "2.0.0" 985 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 986 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 987 | 988 | "js-tokens@^3.0.0 || ^4.0.0": 989 | version "4.0.0" 990 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 991 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 992 | 993 | js-yaml@^4.1.0: 994 | version "4.1.0" 995 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 996 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 997 | dependencies: 998 | argparse "^2.0.1" 999 | 1000 | json-buffer@3.0.1: 1001 | version "3.0.1" 1002 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 1003 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 1004 | 1005 | json-schema-traverse@^0.4.1: 1006 | version "0.4.1" 1007 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1008 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1009 | 1010 | json-stable-stringify-without-jsonify@^1.0.1: 1011 | version "1.0.1" 1012 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1013 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1014 | 1015 | keyv@^4.5.4: 1016 | version "4.5.4" 1017 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" 1018 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 1019 | dependencies: 1020 | json-buffer "3.0.1" 1021 | 1022 | levn@^0.4.1: 1023 | version "0.4.1" 1024 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1025 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1026 | dependencies: 1027 | prelude-ls "^1.2.1" 1028 | type-check "~0.4.0" 1029 | 1030 | lightningcss-darwin-arm64@1.26.0: 1031 | version "1.26.0" 1032 | resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.26.0.tgz#1fda92d523dd1ef2fc8042d17153a5ded2de4726" 1033 | integrity sha512-n4TIvHO1NY1ondKFYpL2ZX0bcC2y6yjXMD6JfyizgR8BCFNEeArINDzEaeqlfX9bXz73Bpz/Ow0nu+1qiDrBKg== 1034 | 1035 | lightningcss-darwin-x64@1.26.0: 1036 | version "1.26.0" 1037 | resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.26.0.tgz#eb311b9aa661948c6e92971f499afcaf453d2235" 1038 | integrity sha512-Rf9HuHIDi1R6/zgBkJh25SiJHF+dm9axUZW/0UoYCW1/8HV0gMI0blARhH4z+REmWiU1yYT/KyNF3h7tHyRXUg== 1039 | 1040 | lightningcss-freebsd-x64@1.26.0: 1041 | version "1.26.0" 1042 | resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.26.0.tgz#85d01defc5b2d9af3cba1d5d2f253d356c8cdc56" 1043 | integrity sha512-C/io7POAxp6sZxFSVGezjajMlCKQ8KSwISLLGRq8xLQpQMokYrUoqYEwmIX8mLmF6C/CZPk0gFmRSzd8biWM0g== 1044 | 1045 | lightningcss-linux-arm-gnueabihf@1.26.0: 1046 | version "1.26.0" 1047 | resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.26.0.tgz#c14fe3aaf152b0318367030734d3e08fdf6add86" 1048 | integrity sha512-Aag9kqXqkyPSW+dXMgyWk66C984Nay2pY8Nws+67gHlDzV3cWh7TvFlzuaTaVFMVqdDTzN484LSK3u39zFBnzg== 1049 | 1050 | lightningcss-linux-arm64-gnu@1.26.0: 1051 | version "1.26.0" 1052 | resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.26.0.tgz#3b2d8cae1f112bf3ae26ea81eccc02efb81b5f09" 1053 | integrity sha512-iJmZM7fUyVjH+POtdiCtExG+67TtPUTer7K/5A8DIfmPfrmeGvzfRyBltGhQz13Wi15K1lf2cPYoRaRh6vcwNA== 1054 | 1055 | lightningcss-linux-arm64-musl@1.26.0: 1056 | version "1.26.0" 1057 | resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.26.0.tgz#df309b1acafbded280171db44eb615f2d26e2cab" 1058 | integrity sha512-XxoEL++tTkyuvu+wq/QS8bwyTXZv2y5XYCMcWL45b8XwkiS8eEEEej9BkMGSRwxa5J4K+LDeIhLrS23CpQyfig== 1059 | 1060 | lightningcss-linux-x64-gnu@1.26.0: 1061 | version "1.26.0" 1062 | resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.26.0.tgz#29a82a15d463298bd263686d4c23243ba8824d3d" 1063 | integrity sha512-1dkTfZQAYLj8MUSkd6L/+TWTG8V6Kfrzfa0T1fSlXCXQHrt1HC1/UepXHtKHDt/9yFwyoeayivxXAsApVxn6zA== 1064 | 1065 | lightningcss-linux-x64-musl@1.26.0: 1066 | version "1.26.0" 1067 | resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.26.0.tgz#831cf950d824e88d6e00f3fc2f33ef6f50850004" 1068 | integrity sha512-yX3Rk9m00JGCUzuUhFEojY+jf/6zHs3XU8S8Vk+FRbnr4St7cjyMXdNjuA2LjiT8e7j8xHRCH8hyZ4H/btRE4A== 1069 | 1070 | lightningcss-win32-arm64-msvc@1.26.0: 1071 | version "1.26.0" 1072 | resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.26.0.tgz#77790f68891e01a520df1a97dc669b0f5546ac3c" 1073 | integrity sha512-X/597/cFnCogy9VItj/+7Tgu5VLbAtDF7KZDPdSw0MaL6FL940th1y3HiOzFIlziVvAtbo0RB3NAae1Oofr+Tw== 1074 | 1075 | lightningcss-win32-x64-msvc@1.26.0: 1076 | version "1.26.0" 1077 | resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.26.0.tgz#ff69764eceada846eab0d721d653518d5ba8049b" 1078 | integrity sha512-pYS3EyGP3JRhfqEFYmfFDiZ9/pVNfy8jVIYtrx9TVNusVyDK3gpW1w/rbvroQ4bDJi7grdUtyrYU6V2xkY/bBw== 1079 | 1080 | lightningcss@^1.26.0: 1081 | version "1.26.0" 1082 | resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.26.0.tgz#ca2ff6ebabb044c6e49e57f9491a6f85db03b256" 1083 | integrity sha512-a/XZ5hdgifrofQJUArr5AiJjx26SwMam3SJUSMjgebZbESZ96i+6Qsl8tLi0kaUsdMzBWXh9sN1Oe6hp2/dkQw== 1084 | dependencies: 1085 | detect-libc "^1.0.3" 1086 | optionalDependencies: 1087 | lightningcss-darwin-arm64 "1.26.0" 1088 | lightningcss-darwin-x64 "1.26.0" 1089 | lightningcss-freebsd-x64 "1.26.0" 1090 | lightningcss-linux-arm-gnueabihf "1.26.0" 1091 | lightningcss-linux-arm64-gnu "1.26.0" 1092 | lightningcss-linux-arm64-musl "1.26.0" 1093 | lightningcss-linux-x64-gnu "1.26.0" 1094 | lightningcss-linux-x64-musl "1.26.0" 1095 | lightningcss-win32-arm64-msvc "1.26.0" 1096 | lightningcss-win32-x64-msvc "1.26.0" 1097 | 1098 | lilconfig@^3.1.1: 1099 | version "3.1.2" 1100 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" 1101 | integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== 1102 | 1103 | locate-path@^6.0.0: 1104 | version "6.0.0" 1105 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1106 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1107 | dependencies: 1108 | p-locate "^5.0.0" 1109 | 1110 | lodash.merge@^4.6.2: 1111 | version "4.6.2" 1112 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1113 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1114 | 1115 | loose-envify@^1.1.0: 1116 | version "1.4.0" 1117 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1118 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1119 | dependencies: 1120 | js-tokens "^3.0.0 || ^4.0.0" 1121 | 1122 | merge2@^1.3.0, merge2@^1.4.1: 1123 | version "1.4.1" 1124 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1125 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1126 | 1127 | micromatch@^4.0.4: 1128 | version "4.0.7" 1129 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" 1130 | integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== 1131 | dependencies: 1132 | braces "^3.0.3" 1133 | picomatch "^2.3.1" 1134 | 1135 | minimatch@^3.1.2: 1136 | version "3.1.2" 1137 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1138 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1139 | dependencies: 1140 | brace-expansion "^1.1.7" 1141 | 1142 | minimatch@^9.0.4: 1143 | version "9.0.5" 1144 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" 1145 | integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== 1146 | dependencies: 1147 | brace-expansion "^2.0.1" 1148 | 1149 | ms@2.1.2: 1150 | version "2.1.2" 1151 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1152 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1153 | 1154 | nanoid@^3.3.7: 1155 | version "3.3.7" 1156 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 1157 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 1158 | 1159 | natural-compare@^1.4.0: 1160 | version "1.4.0" 1161 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1162 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1163 | 1164 | optionator@^0.9.3: 1165 | version "0.9.4" 1166 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" 1167 | integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== 1168 | dependencies: 1169 | deep-is "^0.1.3" 1170 | fast-levenshtein "^2.0.6" 1171 | levn "^0.4.1" 1172 | prelude-ls "^1.2.1" 1173 | type-check "^0.4.0" 1174 | word-wrap "^1.2.5" 1175 | 1176 | p-limit@^3.0.2: 1177 | version "3.1.0" 1178 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1179 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1180 | dependencies: 1181 | yocto-queue "^0.1.0" 1182 | 1183 | p-locate@^5.0.0: 1184 | version "5.0.0" 1185 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1186 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1187 | dependencies: 1188 | p-limit "^3.0.2" 1189 | 1190 | parent-module@^1.0.0: 1191 | version "1.0.1" 1192 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1193 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1194 | dependencies: 1195 | callsites "^3.0.0" 1196 | 1197 | path-exists@^4.0.0: 1198 | version "4.0.0" 1199 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1200 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1201 | 1202 | path-key@^3.1.0: 1203 | version "3.1.1" 1204 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1205 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1206 | 1207 | path-type@^4.0.0: 1208 | version "4.0.0" 1209 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1210 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1211 | 1212 | picocolors@^1.0.1: 1213 | version "1.0.1" 1214 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" 1215 | integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== 1216 | 1217 | picomatch@^2.3.1: 1218 | version "2.3.1" 1219 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1220 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1221 | 1222 | postcss-load-config@^6.0.1: 1223 | version "6.0.1" 1224 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-6.0.1.tgz#6fd7dcd8ae89badcf1b2d644489cbabf83aa8096" 1225 | integrity sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g== 1226 | dependencies: 1227 | lilconfig "^3.1.1" 1228 | 1229 | postcss@^8.4.41: 1230 | version "8.4.41" 1231 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681" 1232 | integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== 1233 | dependencies: 1234 | nanoid "^3.3.7" 1235 | picocolors "^1.0.1" 1236 | source-map-js "^1.2.0" 1237 | 1238 | prelude-ls@^1.2.1: 1239 | version "1.2.1" 1240 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1241 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1242 | 1243 | prettier-plugin-tailwindcss@^0.6.6: 1244 | version "0.6.6" 1245 | resolved "https://registry.yarnpkg.com/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.6.tgz#93e524d3c30f3fb45dc9e99de985b2a584ff063f" 1246 | integrity sha512-OPva5S7WAsPLEsOuOWXATi13QrCKACCiIonFgIR6V4lYv4QLp++UXVhZSzRbZxXGimkQtQT86CC6fQqTOybGng== 1247 | 1248 | punycode@^2.1.0: 1249 | version "2.3.1" 1250 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 1251 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 1252 | 1253 | queue-microtask@^1.2.2: 1254 | version "1.2.3" 1255 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1256 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1257 | 1258 | react-dom@^18.3.1: 1259 | version "18.3.1" 1260 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4" 1261 | integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== 1262 | dependencies: 1263 | loose-envify "^1.1.0" 1264 | scheduler "^0.23.2" 1265 | 1266 | react-hook-form@^7.52.2: 1267 | version "7.52.2" 1268 | resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.52.2.tgz#ff40f4776250b86ddfcde6be68d34aa82b1c60fe" 1269 | integrity sha512-pqfPEbERnxxiNMPd0bzmt1tuaPcVccywFDpyk2uV5xCIBphHV5T8SVnX9/o3kplPE1zzKt77+YIoq+EMwJp56A== 1270 | 1271 | react@^18.3.1: 1272 | version "18.3.1" 1273 | resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" 1274 | integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== 1275 | dependencies: 1276 | loose-envify "^1.1.0" 1277 | 1278 | resolve-from@^4.0.0: 1279 | version "4.0.0" 1280 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1281 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1282 | 1283 | reusify@^1.0.4: 1284 | version "1.0.4" 1285 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1286 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1287 | 1288 | rollup@^4.13.0: 1289 | version "4.21.0" 1290 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.21.0.tgz#28db5f5c556a5180361d35009979ccc749560b9d" 1291 | integrity sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ== 1292 | dependencies: 1293 | "@types/estree" "1.0.5" 1294 | optionalDependencies: 1295 | "@rollup/rollup-android-arm-eabi" "4.21.0" 1296 | "@rollup/rollup-android-arm64" "4.21.0" 1297 | "@rollup/rollup-darwin-arm64" "4.21.0" 1298 | "@rollup/rollup-darwin-x64" "4.21.0" 1299 | "@rollup/rollup-linux-arm-gnueabihf" "4.21.0" 1300 | "@rollup/rollup-linux-arm-musleabihf" "4.21.0" 1301 | "@rollup/rollup-linux-arm64-gnu" "4.21.0" 1302 | "@rollup/rollup-linux-arm64-musl" "4.21.0" 1303 | "@rollup/rollup-linux-powerpc64le-gnu" "4.21.0" 1304 | "@rollup/rollup-linux-riscv64-gnu" "4.21.0" 1305 | "@rollup/rollup-linux-s390x-gnu" "4.21.0" 1306 | "@rollup/rollup-linux-x64-gnu" "4.21.0" 1307 | "@rollup/rollup-linux-x64-musl" "4.21.0" 1308 | "@rollup/rollup-win32-arm64-msvc" "4.21.0" 1309 | "@rollup/rollup-win32-ia32-msvc" "4.21.0" 1310 | "@rollup/rollup-win32-x64-msvc" "4.21.0" 1311 | fsevents "~2.3.2" 1312 | 1313 | run-parallel@^1.1.9: 1314 | version "1.2.0" 1315 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1316 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1317 | dependencies: 1318 | queue-microtask "^1.2.2" 1319 | 1320 | scheduler@^0.23.2: 1321 | version "0.23.2" 1322 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" 1323 | integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== 1324 | dependencies: 1325 | loose-envify "^1.1.0" 1326 | 1327 | semver@^7.6.0: 1328 | version "7.6.3" 1329 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" 1330 | integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== 1331 | 1332 | shebang-command@^2.0.0: 1333 | version "2.0.0" 1334 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1335 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1336 | dependencies: 1337 | shebang-regex "^3.0.0" 1338 | 1339 | shebang-regex@^3.0.0: 1340 | version "3.0.0" 1341 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1342 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1343 | 1344 | slash@^3.0.0: 1345 | version "3.0.0" 1346 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1347 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1348 | 1349 | source-map-js@^1.2.0: 1350 | version "1.2.0" 1351 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" 1352 | integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== 1353 | 1354 | strip-ansi@^6.0.1: 1355 | version "6.0.1" 1356 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1357 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1358 | dependencies: 1359 | ansi-regex "^5.0.1" 1360 | 1361 | strip-json-comments@^3.1.1: 1362 | version "3.1.1" 1363 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1364 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1365 | 1366 | supports-color@^7.1.0: 1367 | version "7.2.0" 1368 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1369 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1370 | dependencies: 1371 | has-flag "^4.0.0" 1372 | 1373 | tailwindcss@4.0.0-alpha.19: 1374 | version "4.0.0-alpha.19" 1375 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-4.0.0-alpha.19.tgz#a8db5b4289ba37398e608e305b878b9e6918d093" 1376 | integrity sha512-4k8i6ml9ZQaj4xmdTHA2ZVp4YGsA+9+8VsIj/VkwyD38J5jX3L3NSi7TnPvlYT+WXcqAJF7EX8x76yCTfi2CyA== 1377 | 1378 | text-table@^0.2.0: 1379 | version "0.2.0" 1380 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1381 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1382 | 1383 | to-regex-range@^5.0.1: 1384 | version "5.0.1" 1385 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1386 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1387 | dependencies: 1388 | is-number "^7.0.0" 1389 | 1390 | ts-api-utils@^1.3.0: 1391 | version "1.3.0" 1392 | resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" 1393 | integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== 1394 | 1395 | type-check@^0.4.0, type-check@~0.4.0: 1396 | version "0.4.0" 1397 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1398 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1399 | dependencies: 1400 | prelude-ls "^1.2.1" 1401 | 1402 | typescript-eslint@^8.0.1: 1403 | version "8.1.0" 1404 | resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.1.0.tgz#c43a3543ab34c37b7f88deb4ff18b9764aed0b60" 1405 | integrity sha512-prB2U3jXPJLpo1iVLN338Lvolh6OrcCZO+9Yv6AR+tvegPPptYCDBIHiEEUdqRi8gAv2bXNKfMUrgAd2ejn/ow== 1406 | dependencies: 1407 | "@typescript-eslint/eslint-plugin" "8.1.0" 1408 | "@typescript-eslint/parser" "8.1.0" 1409 | "@typescript-eslint/utils" "8.1.0" 1410 | 1411 | typescript@^5.5.3: 1412 | version "5.5.4" 1413 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba" 1414 | integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== 1415 | 1416 | uri-js@^4.2.2: 1417 | version "4.4.1" 1418 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1419 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1420 | dependencies: 1421 | punycode "^2.1.0" 1422 | 1423 | vite@^5.4.1: 1424 | version "5.4.1" 1425 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.1.tgz#2aa72370de824d23f53658affd807e4c9905b058" 1426 | integrity sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA== 1427 | dependencies: 1428 | esbuild "^0.21.3" 1429 | postcss "^8.4.41" 1430 | rollup "^4.13.0" 1431 | optionalDependencies: 1432 | fsevents "~2.3.3" 1433 | 1434 | which@^2.0.1: 1435 | version "2.0.2" 1436 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1437 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1438 | dependencies: 1439 | isexe "^2.0.0" 1440 | 1441 | word-wrap@^1.2.5: 1442 | version "1.2.5" 1443 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" 1444 | integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 1445 | 1446 | yocto-queue@^0.1.0: 1447 | version "0.1.0" 1448 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1449 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1450 | 1451 | zod@^3.23.8: 1452 | version "3.23.8" 1453 | resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" 1454 | integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== 1455 | --------------------------------------------------------------------------------