├── .gitignore ├── forms-mgmt-finished ├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ ├── next.svg │ └── vercel.svg ├── src │ ├── app │ │ ├── MailForm.tsx │ │ ├── favicon.ico │ │ ├── formSchema.ts │ │ ├── formSubmit.ts │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ └── label.tsx │ └── lib │ │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json └── forms-mgmt-starter ├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── MailForm.tsx │ ├── favicon.ico │ ├── formSchema.ts │ ├── formSubmit.ts │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ └── ui │ │ ├── button.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ └── label.tsx └── lib │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /forms-mgmt-finished/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /forms-mgmt-finished/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /forms-mgmt-finished/README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | # or 14 | bun dev 15 | ``` 16 | 17 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 18 | 19 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. 20 | 21 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 22 | 23 | ## Learn More 24 | 25 | To learn more about Next.js, take a look at the following resources: 26 | 27 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 28 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 29 | 30 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 31 | 32 | ## Deploy on Vercel 33 | 34 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 35 | 36 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 37 | -------------------------------------------------------------------------------- /forms-mgmt-finished/components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "default", 4 | "rsc": true, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.ts", 8 | "css": "src/app/globals.css", 9 | "baseColor": "slate", 10 | "cssVariables": true, 11 | "prefix": "" 12 | }, 13 | "aliases": { 14 | "components": "@/components", 15 | "utils": "@/lib/utils" 16 | } 17 | } -------------------------------------------------------------------------------- /forms-mgmt-finished/next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /forms-mgmt-finished/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "forms-mgmt", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@hookform/resolvers": "^3.3.4", 13 | "@radix-ui/react-label": "^2.0.2", 14 | "@radix-ui/react-slot": "^1.0.2", 15 | "class-variance-authority": "^0.7.0", 16 | "clsx": "^2.1.0", 17 | "lucide-react": "^0.321.0", 18 | "next": "14.1.0", 19 | "react": "^18", 20 | "react-dom": "^18", 21 | "react-hook-form": "^7.50.0", 22 | "tailwind-merge": "^2.2.1", 23 | "tailwindcss-animate": "^1.0.7", 24 | "zod": "^3.22.4", 25 | "zod-validation-error": "^3.0.2" 26 | }, 27 | "devDependencies": { 28 | "@types/node": "^20", 29 | "@types/react": "^18", 30 | "@types/react-dom": "^18", 31 | "autoprefixer": "^10.0.1", 32 | "eslint": "^8", 33 | "eslint-config-next": "14.1.0", 34 | "postcss": "^8", 35 | "tailwindcss": "^3.3.0", 36 | "typescript": "^5" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /forms-mgmt-finished/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | dependencies: 8 | '@hookform/resolvers': 9 | specifier: ^3.3.4 10 | version: 3.3.4(react-hook-form@7.50.0) 11 | '@radix-ui/react-label': 12 | specifier: ^2.0.2 13 | version: 2.0.2(@types/react-dom@18.2.18)(@types/react@18.2.51)(react-dom@18.2.0)(react@18.2.0) 14 | '@radix-ui/react-slot': 15 | specifier: ^1.0.2 16 | version: 1.0.2(@types/react@18.2.51)(react@18.2.0) 17 | class-variance-authority: 18 | specifier: ^0.7.0 19 | version: 0.7.0 20 | clsx: 21 | specifier: ^2.1.0 22 | version: 2.1.0 23 | lucide-react: 24 | specifier: ^0.321.0 25 | version: 0.321.0(react@18.2.0) 26 | next: 27 | specifier: 14.1.0 28 | version: 14.1.0(react-dom@18.2.0)(react@18.2.0) 29 | react: 30 | specifier: ^18 31 | version: 18.2.0 32 | react-dom: 33 | specifier: ^18 34 | version: 18.2.0(react@18.2.0) 35 | react-hook-form: 36 | specifier: ^7.50.0 37 | version: 7.50.0(react@18.2.0) 38 | tailwind-merge: 39 | specifier: ^2.2.1 40 | version: 2.2.1 41 | tailwindcss-animate: 42 | specifier: ^1.0.7 43 | version: 1.0.7(tailwindcss@3.4.1) 44 | zod: 45 | specifier: ^3.22.4 46 | version: 3.22.4 47 | zod-validation-error: 48 | specifier: ^3.0.2 49 | version: 3.0.2(zod@3.22.4) 50 | 51 | devDependencies: 52 | '@types/node': 53 | specifier: ^20 54 | version: 20.11.16 55 | '@types/react': 56 | specifier: ^18 57 | version: 18.2.51 58 | '@types/react-dom': 59 | specifier: ^18 60 | version: 18.2.18 61 | autoprefixer: 62 | specifier: ^10.0.1 63 | version: 10.4.17(postcss@8.4.33) 64 | eslint: 65 | specifier: ^8 66 | version: 8.56.0 67 | eslint-config-next: 68 | specifier: 14.1.0 69 | version: 14.1.0(eslint@8.56.0)(typescript@5.3.3) 70 | postcss: 71 | specifier: ^8 72 | version: 8.4.33 73 | tailwindcss: 74 | specifier: ^3.3.0 75 | version: 3.4.1 76 | typescript: 77 | specifier: ^5 78 | version: 5.3.3 79 | 80 | packages: 81 | 82 | /@aashutoshrathi/word-wrap@1.2.6: 83 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 84 | engines: {node: '>=0.10.0'} 85 | dev: true 86 | 87 | /@alloc/quick-lru@5.2.0: 88 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 89 | engines: {node: '>=10'} 90 | 91 | /@babel/runtime@7.23.9: 92 | resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==} 93 | engines: {node: '>=6.9.0'} 94 | dependencies: 95 | regenerator-runtime: 0.14.1 96 | 97 | /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): 98 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 99 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 100 | peerDependencies: 101 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 102 | dependencies: 103 | eslint: 8.56.0 104 | eslint-visitor-keys: 3.4.3 105 | dev: true 106 | 107 | /@eslint-community/regexpp@4.10.0: 108 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 109 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 110 | dev: true 111 | 112 | /@eslint/eslintrc@2.1.4: 113 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 114 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 115 | dependencies: 116 | ajv: 6.12.6 117 | debug: 4.3.4 118 | espree: 9.6.1 119 | globals: 13.24.0 120 | ignore: 5.3.1 121 | import-fresh: 3.3.0 122 | js-yaml: 4.1.0 123 | minimatch: 3.1.2 124 | strip-json-comments: 3.1.1 125 | transitivePeerDependencies: 126 | - supports-color 127 | dev: true 128 | 129 | /@eslint/js@8.56.0: 130 | resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} 131 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 132 | dev: true 133 | 134 | /@hookform/resolvers@3.3.4(react-hook-form@7.50.0): 135 | resolution: {integrity: sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==} 136 | peerDependencies: 137 | react-hook-form: ^7.0.0 138 | dependencies: 139 | react-hook-form: 7.50.0(react@18.2.0) 140 | dev: false 141 | 142 | /@humanwhocodes/config-array@0.11.14: 143 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 144 | engines: {node: '>=10.10.0'} 145 | dependencies: 146 | '@humanwhocodes/object-schema': 2.0.2 147 | debug: 4.3.4 148 | minimatch: 3.1.2 149 | transitivePeerDependencies: 150 | - supports-color 151 | dev: true 152 | 153 | /@humanwhocodes/module-importer@1.0.1: 154 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 155 | engines: {node: '>=12.22'} 156 | dev: true 157 | 158 | /@humanwhocodes/object-schema@2.0.2: 159 | resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} 160 | dev: true 161 | 162 | /@isaacs/cliui@8.0.2: 163 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 164 | engines: {node: '>=12'} 165 | dependencies: 166 | string-width: 5.1.2 167 | string-width-cjs: /string-width@4.2.3 168 | strip-ansi: 7.1.0 169 | strip-ansi-cjs: /strip-ansi@6.0.1 170 | wrap-ansi: 8.1.0 171 | wrap-ansi-cjs: /wrap-ansi@7.0.0 172 | 173 | /@jridgewell/gen-mapping@0.3.3: 174 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 175 | engines: {node: '>=6.0.0'} 176 | dependencies: 177 | '@jridgewell/set-array': 1.1.2 178 | '@jridgewell/sourcemap-codec': 1.4.15 179 | '@jridgewell/trace-mapping': 0.3.22 180 | 181 | /@jridgewell/resolve-uri@3.1.1: 182 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 183 | engines: {node: '>=6.0.0'} 184 | 185 | /@jridgewell/set-array@1.1.2: 186 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 187 | engines: {node: '>=6.0.0'} 188 | 189 | /@jridgewell/sourcemap-codec@1.4.15: 190 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 191 | 192 | /@jridgewell/trace-mapping@0.3.22: 193 | resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} 194 | dependencies: 195 | '@jridgewell/resolve-uri': 3.1.1 196 | '@jridgewell/sourcemap-codec': 1.4.15 197 | 198 | /@next/env@14.1.0: 199 | resolution: {integrity: sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==} 200 | dev: false 201 | 202 | /@next/eslint-plugin-next@14.1.0: 203 | resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==} 204 | dependencies: 205 | glob: 10.3.10 206 | dev: true 207 | 208 | /@next/swc-darwin-arm64@14.1.0: 209 | resolution: {integrity: sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==} 210 | engines: {node: '>= 10'} 211 | cpu: [arm64] 212 | os: [darwin] 213 | requiresBuild: true 214 | dev: false 215 | optional: true 216 | 217 | /@next/swc-darwin-x64@14.1.0: 218 | resolution: {integrity: sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==} 219 | engines: {node: '>= 10'} 220 | cpu: [x64] 221 | os: [darwin] 222 | requiresBuild: true 223 | dev: false 224 | optional: true 225 | 226 | /@next/swc-linux-arm64-gnu@14.1.0: 227 | resolution: {integrity: sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==} 228 | engines: {node: '>= 10'} 229 | cpu: [arm64] 230 | os: [linux] 231 | requiresBuild: true 232 | dev: false 233 | optional: true 234 | 235 | /@next/swc-linux-arm64-musl@14.1.0: 236 | resolution: {integrity: sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==} 237 | engines: {node: '>= 10'} 238 | cpu: [arm64] 239 | os: [linux] 240 | requiresBuild: true 241 | dev: false 242 | optional: true 243 | 244 | /@next/swc-linux-x64-gnu@14.1.0: 245 | resolution: {integrity: sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==} 246 | engines: {node: '>= 10'} 247 | cpu: [x64] 248 | os: [linux] 249 | requiresBuild: true 250 | dev: false 251 | optional: true 252 | 253 | /@next/swc-linux-x64-musl@14.1.0: 254 | resolution: {integrity: sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==} 255 | engines: {node: '>= 10'} 256 | cpu: [x64] 257 | os: [linux] 258 | requiresBuild: true 259 | dev: false 260 | optional: true 261 | 262 | /@next/swc-win32-arm64-msvc@14.1.0: 263 | resolution: {integrity: sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==} 264 | engines: {node: '>= 10'} 265 | cpu: [arm64] 266 | os: [win32] 267 | requiresBuild: true 268 | dev: false 269 | optional: true 270 | 271 | /@next/swc-win32-ia32-msvc@14.1.0: 272 | resolution: {integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==} 273 | engines: {node: '>= 10'} 274 | cpu: [ia32] 275 | os: [win32] 276 | requiresBuild: true 277 | dev: false 278 | optional: true 279 | 280 | /@next/swc-win32-x64-msvc@14.1.0: 281 | resolution: {integrity: sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==} 282 | engines: {node: '>= 10'} 283 | cpu: [x64] 284 | os: [win32] 285 | requiresBuild: true 286 | dev: false 287 | optional: true 288 | 289 | /@nodelib/fs.scandir@2.1.5: 290 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 291 | engines: {node: '>= 8'} 292 | dependencies: 293 | '@nodelib/fs.stat': 2.0.5 294 | run-parallel: 1.2.0 295 | 296 | /@nodelib/fs.stat@2.0.5: 297 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 298 | engines: {node: '>= 8'} 299 | 300 | /@nodelib/fs.walk@1.2.8: 301 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 302 | engines: {node: '>= 8'} 303 | dependencies: 304 | '@nodelib/fs.scandir': 2.1.5 305 | fastq: 1.17.0 306 | 307 | /@pkgjs/parseargs@0.11.0: 308 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 309 | engines: {node: '>=14'} 310 | requiresBuild: true 311 | optional: true 312 | 313 | /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.51)(react@18.2.0): 314 | resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} 315 | peerDependencies: 316 | '@types/react': '*' 317 | react: ^16.8 || ^17.0 || ^18.0 318 | peerDependenciesMeta: 319 | '@types/react': 320 | optional: true 321 | dependencies: 322 | '@babel/runtime': 7.23.9 323 | '@types/react': 18.2.51 324 | react: 18.2.0 325 | dev: false 326 | 327 | /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.18)(@types/react@18.2.51)(react-dom@18.2.0)(react@18.2.0): 328 | resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==} 329 | peerDependencies: 330 | '@types/react': '*' 331 | '@types/react-dom': '*' 332 | react: ^16.8 || ^17.0 || ^18.0 333 | react-dom: ^16.8 || ^17.0 || ^18.0 334 | peerDependenciesMeta: 335 | '@types/react': 336 | optional: true 337 | '@types/react-dom': 338 | optional: true 339 | dependencies: 340 | '@babel/runtime': 7.23.9 341 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.51)(react-dom@18.2.0)(react@18.2.0) 342 | '@types/react': 18.2.51 343 | '@types/react-dom': 18.2.18 344 | react: 18.2.0 345 | react-dom: 18.2.0(react@18.2.0) 346 | dev: false 347 | 348 | /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.51)(react-dom@18.2.0)(react@18.2.0): 349 | resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} 350 | peerDependencies: 351 | '@types/react': '*' 352 | '@types/react-dom': '*' 353 | react: ^16.8 || ^17.0 || ^18.0 354 | react-dom: ^16.8 || ^17.0 || ^18.0 355 | peerDependenciesMeta: 356 | '@types/react': 357 | optional: true 358 | '@types/react-dom': 359 | optional: true 360 | dependencies: 361 | '@babel/runtime': 7.23.9 362 | '@radix-ui/react-slot': 1.0.2(@types/react@18.2.51)(react@18.2.0) 363 | '@types/react': 18.2.51 364 | '@types/react-dom': 18.2.18 365 | react: 18.2.0 366 | react-dom: 18.2.0(react@18.2.0) 367 | dev: false 368 | 369 | /@radix-ui/react-slot@1.0.2(@types/react@18.2.51)(react@18.2.0): 370 | resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} 371 | peerDependencies: 372 | '@types/react': '*' 373 | react: ^16.8 || ^17.0 || ^18.0 374 | peerDependenciesMeta: 375 | '@types/react': 376 | optional: true 377 | dependencies: 378 | '@babel/runtime': 7.23.9 379 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.51)(react@18.2.0) 380 | '@types/react': 18.2.51 381 | react: 18.2.0 382 | dev: false 383 | 384 | /@rushstack/eslint-patch@1.7.2: 385 | resolution: {integrity: sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==} 386 | dev: true 387 | 388 | /@swc/helpers@0.5.2: 389 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 390 | dependencies: 391 | tslib: 2.6.2 392 | dev: false 393 | 394 | /@types/json5@0.0.29: 395 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 396 | dev: true 397 | 398 | /@types/node@20.11.16: 399 | resolution: {integrity: sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==} 400 | dependencies: 401 | undici-types: 5.26.5 402 | dev: true 403 | 404 | /@types/prop-types@15.7.11: 405 | resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} 406 | 407 | /@types/react-dom@18.2.18: 408 | resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} 409 | dependencies: 410 | '@types/react': 18.2.51 411 | 412 | /@types/react@18.2.51: 413 | resolution: {integrity: sha512-XeoMaU4CzyjdRr3c4IQQtiH7Rpo18V07rYZUucEZQwOUEtGgTXv7e6igQiQ+xnV6MbMe1qjEmKdgMNnfppnXfg==} 414 | dependencies: 415 | '@types/prop-types': 15.7.11 416 | '@types/scheduler': 0.16.8 417 | csstype: 3.1.3 418 | 419 | /@types/scheduler@0.16.8: 420 | resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} 421 | 422 | /@typescript-eslint/parser@6.20.0(eslint@8.56.0)(typescript@5.3.3): 423 | resolution: {integrity: sha512-bYerPDF/H5v6V76MdMYhjwmwgMA+jlPVqjSDq2cRqMi8bP5sR3Z+RLOiOMad3nsnmDVmn2gAFCyNgh/dIrfP/w==} 424 | engines: {node: ^16.0.0 || >=18.0.0} 425 | peerDependencies: 426 | eslint: ^7.0.0 || ^8.0.0 427 | typescript: '*' 428 | peerDependenciesMeta: 429 | typescript: 430 | optional: true 431 | dependencies: 432 | '@typescript-eslint/scope-manager': 6.20.0 433 | '@typescript-eslint/types': 6.20.0 434 | '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3) 435 | '@typescript-eslint/visitor-keys': 6.20.0 436 | debug: 4.3.4 437 | eslint: 8.56.0 438 | typescript: 5.3.3 439 | transitivePeerDependencies: 440 | - supports-color 441 | dev: true 442 | 443 | /@typescript-eslint/scope-manager@6.20.0: 444 | resolution: {integrity: sha512-p4rvHQRDTI1tGGMDFQm+GtxP1ZHyAh64WANVoyEcNMpaTFn3ox/3CcgtIlELnRfKzSs/DwYlDccJEtr3O6qBvA==} 445 | engines: {node: ^16.0.0 || >=18.0.0} 446 | dependencies: 447 | '@typescript-eslint/types': 6.20.0 448 | '@typescript-eslint/visitor-keys': 6.20.0 449 | dev: true 450 | 451 | /@typescript-eslint/types@6.20.0: 452 | resolution: {integrity: sha512-MM9mfZMAhiN4cOEcUOEx+0HmuaW3WBfukBZPCfwSqFnQy0grXYtngKCqpQN339X3RrwtzspWJrpbrupKYUSBXQ==} 453 | engines: {node: ^16.0.0 || >=18.0.0} 454 | dev: true 455 | 456 | /@typescript-eslint/typescript-estree@6.20.0(typescript@5.3.3): 457 | resolution: {integrity: sha512-RnRya9q5m6YYSpBN7IzKu9FmLcYtErkDkc8/dKv81I9QiLLtVBHrjz+Ev/crAqgMNW2FCsoZF4g2QUylMnJz+g==} 458 | engines: {node: ^16.0.0 || >=18.0.0} 459 | peerDependencies: 460 | typescript: '*' 461 | peerDependenciesMeta: 462 | typescript: 463 | optional: true 464 | dependencies: 465 | '@typescript-eslint/types': 6.20.0 466 | '@typescript-eslint/visitor-keys': 6.20.0 467 | debug: 4.3.4 468 | globby: 11.1.0 469 | is-glob: 4.0.3 470 | minimatch: 9.0.3 471 | semver: 7.5.4 472 | ts-api-utils: 1.0.3(typescript@5.3.3) 473 | typescript: 5.3.3 474 | transitivePeerDependencies: 475 | - supports-color 476 | dev: true 477 | 478 | /@typescript-eslint/visitor-keys@6.20.0: 479 | resolution: {integrity: sha512-E8Cp98kRe4gKHjJD4NExXKz/zOJ1A2hhZc+IMVD6i7w4yjIvh6VyuRI0gRtxAsXtoC35uGMaQ9rjI2zJaXDEAw==} 480 | engines: {node: ^16.0.0 || >=18.0.0} 481 | dependencies: 482 | '@typescript-eslint/types': 6.20.0 483 | eslint-visitor-keys: 3.4.3 484 | dev: true 485 | 486 | /@ungap/structured-clone@1.2.0: 487 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 488 | dev: true 489 | 490 | /acorn-jsx@5.3.2(acorn@8.11.3): 491 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 492 | peerDependencies: 493 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 494 | dependencies: 495 | acorn: 8.11.3 496 | dev: true 497 | 498 | /acorn@8.11.3: 499 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 500 | engines: {node: '>=0.4.0'} 501 | hasBin: true 502 | dev: true 503 | 504 | /ajv@6.12.6: 505 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 506 | dependencies: 507 | fast-deep-equal: 3.1.3 508 | fast-json-stable-stringify: 2.1.0 509 | json-schema-traverse: 0.4.1 510 | uri-js: 4.4.1 511 | dev: true 512 | 513 | /ansi-regex@5.0.1: 514 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 515 | engines: {node: '>=8'} 516 | 517 | /ansi-regex@6.0.1: 518 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 519 | engines: {node: '>=12'} 520 | 521 | /ansi-styles@4.3.0: 522 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 523 | engines: {node: '>=8'} 524 | dependencies: 525 | color-convert: 2.0.1 526 | 527 | /ansi-styles@6.2.1: 528 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 529 | engines: {node: '>=12'} 530 | 531 | /any-promise@1.3.0: 532 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 533 | 534 | /anymatch@3.1.3: 535 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 536 | engines: {node: '>= 8'} 537 | dependencies: 538 | normalize-path: 3.0.0 539 | picomatch: 2.3.1 540 | 541 | /arg@5.0.2: 542 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 543 | 544 | /argparse@2.0.1: 545 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 546 | dev: true 547 | 548 | /aria-query@5.3.0: 549 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 550 | dependencies: 551 | dequal: 2.0.3 552 | dev: true 553 | 554 | /array-buffer-byte-length@1.0.0: 555 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 556 | dependencies: 557 | call-bind: 1.0.5 558 | is-array-buffer: 3.0.2 559 | dev: true 560 | 561 | /array-includes@3.1.7: 562 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 563 | engines: {node: '>= 0.4'} 564 | dependencies: 565 | call-bind: 1.0.5 566 | define-properties: 1.2.1 567 | es-abstract: 1.22.3 568 | get-intrinsic: 1.2.2 569 | is-string: 1.0.7 570 | dev: true 571 | 572 | /array-union@2.1.0: 573 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 574 | engines: {node: '>=8'} 575 | dev: true 576 | 577 | /array.prototype.findlastindex@1.2.3: 578 | resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} 579 | engines: {node: '>= 0.4'} 580 | dependencies: 581 | call-bind: 1.0.5 582 | define-properties: 1.2.1 583 | es-abstract: 1.22.3 584 | es-shim-unscopables: 1.0.2 585 | get-intrinsic: 1.2.2 586 | dev: true 587 | 588 | /array.prototype.flat@1.3.2: 589 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 590 | engines: {node: '>= 0.4'} 591 | dependencies: 592 | call-bind: 1.0.5 593 | define-properties: 1.2.1 594 | es-abstract: 1.22.3 595 | es-shim-unscopables: 1.0.2 596 | dev: true 597 | 598 | /array.prototype.flatmap@1.3.2: 599 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 600 | engines: {node: '>= 0.4'} 601 | dependencies: 602 | call-bind: 1.0.5 603 | define-properties: 1.2.1 604 | es-abstract: 1.22.3 605 | es-shim-unscopables: 1.0.2 606 | dev: true 607 | 608 | /array.prototype.tosorted@1.1.2: 609 | resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} 610 | dependencies: 611 | call-bind: 1.0.5 612 | define-properties: 1.2.1 613 | es-abstract: 1.22.3 614 | es-shim-unscopables: 1.0.2 615 | get-intrinsic: 1.2.2 616 | dev: true 617 | 618 | /arraybuffer.prototype.slice@1.0.2: 619 | resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} 620 | engines: {node: '>= 0.4'} 621 | dependencies: 622 | array-buffer-byte-length: 1.0.0 623 | call-bind: 1.0.5 624 | define-properties: 1.2.1 625 | es-abstract: 1.22.3 626 | get-intrinsic: 1.2.2 627 | is-array-buffer: 3.0.2 628 | is-shared-array-buffer: 1.0.2 629 | dev: true 630 | 631 | /ast-types-flow@0.0.8: 632 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 633 | dev: true 634 | 635 | /asynciterator.prototype@1.0.0: 636 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} 637 | dependencies: 638 | has-symbols: 1.0.3 639 | dev: true 640 | 641 | /autoprefixer@10.4.17(postcss@8.4.33): 642 | resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} 643 | engines: {node: ^10 || ^12 || >=14} 644 | hasBin: true 645 | peerDependencies: 646 | postcss: ^8.1.0 647 | dependencies: 648 | browserslist: 4.22.3 649 | caniuse-lite: 1.0.30001582 650 | fraction.js: 4.3.7 651 | normalize-range: 0.1.2 652 | picocolors: 1.0.0 653 | postcss: 8.4.33 654 | postcss-value-parser: 4.2.0 655 | dev: true 656 | 657 | /available-typed-arrays@1.0.6: 658 | resolution: {integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==} 659 | engines: {node: '>= 0.4'} 660 | dev: true 661 | 662 | /axe-core@4.7.0: 663 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 664 | engines: {node: '>=4'} 665 | dev: true 666 | 667 | /axobject-query@3.2.1: 668 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 669 | dependencies: 670 | dequal: 2.0.3 671 | dev: true 672 | 673 | /balanced-match@1.0.2: 674 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 675 | 676 | /binary-extensions@2.2.0: 677 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 678 | engines: {node: '>=8'} 679 | 680 | /brace-expansion@1.1.11: 681 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 682 | dependencies: 683 | balanced-match: 1.0.2 684 | concat-map: 0.0.1 685 | dev: true 686 | 687 | /brace-expansion@2.0.1: 688 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 689 | dependencies: 690 | balanced-match: 1.0.2 691 | 692 | /braces@3.0.2: 693 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 694 | engines: {node: '>=8'} 695 | dependencies: 696 | fill-range: 7.0.1 697 | 698 | /browserslist@4.22.3: 699 | resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==} 700 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 701 | hasBin: true 702 | dependencies: 703 | caniuse-lite: 1.0.30001582 704 | electron-to-chromium: 1.4.655 705 | node-releases: 2.0.14 706 | update-browserslist-db: 1.0.13(browserslist@4.22.3) 707 | dev: true 708 | 709 | /busboy@1.6.0: 710 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 711 | engines: {node: '>=10.16.0'} 712 | dependencies: 713 | streamsearch: 1.1.0 714 | dev: false 715 | 716 | /call-bind@1.0.5: 717 | resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} 718 | dependencies: 719 | function-bind: 1.1.2 720 | get-intrinsic: 1.2.2 721 | set-function-length: 1.2.0 722 | dev: true 723 | 724 | /callsites@3.1.0: 725 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 726 | engines: {node: '>=6'} 727 | dev: true 728 | 729 | /camelcase-css@2.0.1: 730 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 731 | engines: {node: '>= 6'} 732 | 733 | /caniuse-lite@1.0.30001582: 734 | resolution: {integrity: sha512-vsJG3V5vgfduaQGVxL53uSX/HUzxyr2eA8xCo36OLal7sRcSZbibJtLeh0qja4sFOr/QQGt4opB4tOy+eOgAxg==} 735 | 736 | /chalk@4.1.2: 737 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 738 | engines: {node: '>=10'} 739 | dependencies: 740 | ansi-styles: 4.3.0 741 | supports-color: 7.2.0 742 | dev: true 743 | 744 | /chokidar@3.5.3: 745 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 746 | engines: {node: '>= 8.10.0'} 747 | dependencies: 748 | anymatch: 3.1.3 749 | braces: 3.0.2 750 | glob-parent: 5.1.2 751 | is-binary-path: 2.1.0 752 | is-glob: 4.0.3 753 | normalize-path: 3.0.0 754 | readdirp: 3.6.0 755 | optionalDependencies: 756 | fsevents: 2.3.3 757 | 758 | /class-variance-authority@0.7.0: 759 | resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} 760 | dependencies: 761 | clsx: 2.0.0 762 | dev: false 763 | 764 | /client-only@0.0.1: 765 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 766 | dev: false 767 | 768 | /clsx@2.0.0: 769 | resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} 770 | engines: {node: '>=6'} 771 | dev: false 772 | 773 | /clsx@2.1.0: 774 | resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} 775 | engines: {node: '>=6'} 776 | dev: false 777 | 778 | /color-convert@2.0.1: 779 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 780 | engines: {node: '>=7.0.0'} 781 | dependencies: 782 | color-name: 1.1.4 783 | 784 | /color-name@1.1.4: 785 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 786 | 787 | /commander@4.1.1: 788 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 789 | engines: {node: '>= 6'} 790 | 791 | /concat-map@0.0.1: 792 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 793 | dev: true 794 | 795 | /cross-spawn@7.0.3: 796 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 797 | engines: {node: '>= 8'} 798 | dependencies: 799 | path-key: 3.1.1 800 | shebang-command: 2.0.0 801 | which: 2.0.2 802 | 803 | /cssesc@3.0.0: 804 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 805 | engines: {node: '>=4'} 806 | hasBin: true 807 | 808 | /csstype@3.1.3: 809 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 810 | 811 | /damerau-levenshtein@1.0.8: 812 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 813 | dev: true 814 | 815 | /debug@3.2.7: 816 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 817 | peerDependencies: 818 | supports-color: '*' 819 | peerDependenciesMeta: 820 | supports-color: 821 | optional: true 822 | dependencies: 823 | ms: 2.1.3 824 | dev: true 825 | 826 | /debug@4.3.4: 827 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 828 | engines: {node: '>=6.0'} 829 | peerDependencies: 830 | supports-color: '*' 831 | peerDependenciesMeta: 832 | supports-color: 833 | optional: true 834 | dependencies: 835 | ms: 2.1.2 836 | dev: true 837 | 838 | /deep-is@0.1.4: 839 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 840 | dev: true 841 | 842 | /define-data-property@1.1.1: 843 | resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} 844 | engines: {node: '>= 0.4'} 845 | dependencies: 846 | get-intrinsic: 1.2.2 847 | gopd: 1.0.1 848 | has-property-descriptors: 1.0.1 849 | dev: true 850 | 851 | /define-properties@1.2.1: 852 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 853 | engines: {node: '>= 0.4'} 854 | dependencies: 855 | define-data-property: 1.1.1 856 | has-property-descriptors: 1.0.1 857 | object-keys: 1.1.1 858 | dev: true 859 | 860 | /dequal@2.0.3: 861 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 862 | engines: {node: '>=6'} 863 | dev: true 864 | 865 | /didyoumean@1.2.2: 866 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 867 | 868 | /dir-glob@3.0.1: 869 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 870 | engines: {node: '>=8'} 871 | dependencies: 872 | path-type: 4.0.0 873 | dev: true 874 | 875 | /dlv@1.1.3: 876 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 877 | 878 | /doctrine@2.1.0: 879 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 880 | engines: {node: '>=0.10.0'} 881 | dependencies: 882 | esutils: 2.0.3 883 | dev: true 884 | 885 | /doctrine@3.0.0: 886 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 887 | engines: {node: '>=6.0.0'} 888 | dependencies: 889 | esutils: 2.0.3 890 | dev: true 891 | 892 | /eastasianwidth@0.2.0: 893 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 894 | 895 | /electron-to-chromium@1.4.655: 896 | resolution: {integrity: sha512-2yszojF7vIZ68adIOvzV4bku8OZad9w5H9xF3ZAMZjPuOjBarlflUkjN6DggdV+L71WZuKUfKUhov/34+G5QHg==} 897 | dev: true 898 | 899 | /emoji-regex@8.0.0: 900 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 901 | 902 | /emoji-regex@9.2.2: 903 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 904 | 905 | /enhanced-resolve@5.15.0: 906 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 907 | engines: {node: '>=10.13.0'} 908 | dependencies: 909 | graceful-fs: 4.2.11 910 | tapable: 2.2.1 911 | dev: true 912 | 913 | /es-abstract@1.22.3: 914 | resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} 915 | engines: {node: '>= 0.4'} 916 | dependencies: 917 | array-buffer-byte-length: 1.0.0 918 | arraybuffer.prototype.slice: 1.0.2 919 | available-typed-arrays: 1.0.6 920 | call-bind: 1.0.5 921 | es-set-tostringtag: 2.0.2 922 | es-to-primitive: 1.2.1 923 | function.prototype.name: 1.1.6 924 | get-intrinsic: 1.2.2 925 | get-symbol-description: 1.0.0 926 | globalthis: 1.0.3 927 | gopd: 1.0.1 928 | has-property-descriptors: 1.0.1 929 | has-proto: 1.0.1 930 | has-symbols: 1.0.3 931 | hasown: 2.0.0 932 | internal-slot: 1.0.6 933 | is-array-buffer: 3.0.2 934 | is-callable: 1.2.7 935 | is-negative-zero: 2.0.2 936 | is-regex: 1.1.4 937 | is-shared-array-buffer: 1.0.2 938 | is-string: 1.0.7 939 | is-typed-array: 1.1.13 940 | is-weakref: 1.0.2 941 | object-inspect: 1.13.1 942 | object-keys: 1.1.1 943 | object.assign: 4.1.5 944 | regexp.prototype.flags: 1.5.1 945 | safe-array-concat: 1.1.0 946 | safe-regex-test: 1.0.2 947 | string.prototype.trim: 1.2.8 948 | string.prototype.trimend: 1.0.7 949 | string.prototype.trimstart: 1.0.7 950 | typed-array-buffer: 1.0.0 951 | typed-array-byte-length: 1.0.0 952 | typed-array-byte-offset: 1.0.0 953 | typed-array-length: 1.0.4 954 | unbox-primitive: 1.0.2 955 | which-typed-array: 1.1.14 956 | dev: true 957 | 958 | /es-iterator-helpers@1.0.15: 959 | resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} 960 | dependencies: 961 | asynciterator.prototype: 1.0.0 962 | call-bind: 1.0.5 963 | define-properties: 1.2.1 964 | es-abstract: 1.22.3 965 | es-set-tostringtag: 2.0.2 966 | function-bind: 1.1.2 967 | get-intrinsic: 1.2.2 968 | globalthis: 1.0.3 969 | has-property-descriptors: 1.0.1 970 | has-proto: 1.0.1 971 | has-symbols: 1.0.3 972 | internal-slot: 1.0.6 973 | iterator.prototype: 1.1.2 974 | safe-array-concat: 1.1.0 975 | dev: true 976 | 977 | /es-set-tostringtag@2.0.2: 978 | resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} 979 | engines: {node: '>= 0.4'} 980 | dependencies: 981 | get-intrinsic: 1.2.2 982 | has-tostringtag: 1.0.2 983 | hasown: 2.0.0 984 | dev: true 985 | 986 | /es-shim-unscopables@1.0.2: 987 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 988 | dependencies: 989 | hasown: 2.0.0 990 | dev: true 991 | 992 | /es-to-primitive@1.2.1: 993 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 994 | engines: {node: '>= 0.4'} 995 | dependencies: 996 | is-callable: 1.2.7 997 | is-date-object: 1.0.5 998 | is-symbol: 1.0.4 999 | dev: true 1000 | 1001 | /escalade@3.1.1: 1002 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1003 | engines: {node: '>=6'} 1004 | dev: true 1005 | 1006 | /escape-string-regexp@4.0.0: 1007 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1008 | engines: {node: '>=10'} 1009 | dev: true 1010 | 1011 | /eslint-config-next@14.1.0(eslint@8.56.0)(typescript@5.3.3): 1012 | resolution: {integrity: sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==} 1013 | peerDependencies: 1014 | eslint: ^7.23.0 || ^8.0.0 1015 | typescript: '>=3.3.1' 1016 | peerDependenciesMeta: 1017 | typescript: 1018 | optional: true 1019 | dependencies: 1020 | '@next/eslint-plugin-next': 14.1.0 1021 | '@rushstack/eslint-patch': 1.7.2 1022 | '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 1023 | eslint: 8.56.0 1024 | eslint-import-resolver-node: 0.3.9 1025 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 1026 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1027 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) 1028 | eslint-plugin-react: 7.33.2(eslint@8.56.0) 1029 | eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) 1030 | typescript: 5.3.3 1031 | transitivePeerDependencies: 1032 | - eslint-import-resolver-webpack 1033 | - supports-color 1034 | dev: true 1035 | 1036 | /eslint-import-resolver-node@0.3.9: 1037 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1038 | dependencies: 1039 | debug: 3.2.7 1040 | is-core-module: 2.13.1 1041 | resolve: 1.22.8 1042 | transitivePeerDependencies: 1043 | - supports-color 1044 | dev: true 1045 | 1046 | /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): 1047 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 1048 | engines: {node: ^14.18.0 || >=16.0.0} 1049 | peerDependencies: 1050 | eslint: '*' 1051 | eslint-plugin-import: '*' 1052 | dependencies: 1053 | debug: 4.3.4 1054 | enhanced-resolve: 5.15.0 1055 | eslint: 8.56.0 1056 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1057 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1058 | fast-glob: 3.3.2 1059 | get-tsconfig: 4.7.2 1060 | is-core-module: 2.13.1 1061 | is-glob: 4.0.3 1062 | transitivePeerDependencies: 1063 | - '@typescript-eslint/parser' 1064 | - eslint-import-resolver-node 1065 | - eslint-import-resolver-webpack 1066 | - supports-color 1067 | dev: true 1068 | 1069 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 1070 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1071 | engines: {node: '>=4'} 1072 | peerDependencies: 1073 | '@typescript-eslint/parser': '*' 1074 | eslint: '*' 1075 | eslint-import-resolver-node: '*' 1076 | eslint-import-resolver-typescript: '*' 1077 | eslint-import-resolver-webpack: '*' 1078 | peerDependenciesMeta: 1079 | '@typescript-eslint/parser': 1080 | optional: true 1081 | eslint: 1082 | optional: true 1083 | eslint-import-resolver-node: 1084 | optional: true 1085 | eslint-import-resolver-typescript: 1086 | optional: true 1087 | eslint-import-resolver-webpack: 1088 | optional: true 1089 | dependencies: 1090 | '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 1091 | debug: 3.2.7 1092 | eslint: 8.56.0 1093 | eslint-import-resolver-node: 0.3.9 1094 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 1095 | transitivePeerDependencies: 1096 | - supports-color 1097 | dev: true 1098 | 1099 | /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 1100 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 1101 | engines: {node: '>=4'} 1102 | peerDependencies: 1103 | '@typescript-eslint/parser': '*' 1104 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1105 | peerDependenciesMeta: 1106 | '@typescript-eslint/parser': 1107 | optional: true 1108 | dependencies: 1109 | '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3) 1110 | array-includes: 3.1.7 1111 | array.prototype.findlastindex: 1.2.3 1112 | array.prototype.flat: 1.3.2 1113 | array.prototype.flatmap: 1.3.2 1114 | debug: 3.2.7 1115 | doctrine: 2.1.0 1116 | eslint: 8.56.0 1117 | eslint-import-resolver-node: 0.3.9 1118 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.20.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1119 | hasown: 2.0.0 1120 | is-core-module: 2.13.1 1121 | is-glob: 4.0.3 1122 | minimatch: 3.1.2 1123 | object.fromentries: 2.0.7 1124 | object.groupby: 1.0.1 1125 | object.values: 1.1.7 1126 | semver: 6.3.1 1127 | tsconfig-paths: 3.15.0 1128 | transitivePeerDependencies: 1129 | - eslint-import-resolver-typescript 1130 | - eslint-import-resolver-webpack 1131 | - supports-color 1132 | dev: true 1133 | 1134 | /eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0): 1135 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 1136 | engines: {node: '>=4.0'} 1137 | peerDependencies: 1138 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1139 | dependencies: 1140 | '@babel/runtime': 7.23.9 1141 | aria-query: 5.3.0 1142 | array-includes: 3.1.7 1143 | array.prototype.flatmap: 1.3.2 1144 | ast-types-flow: 0.0.8 1145 | axe-core: 4.7.0 1146 | axobject-query: 3.2.1 1147 | damerau-levenshtein: 1.0.8 1148 | emoji-regex: 9.2.2 1149 | es-iterator-helpers: 1.0.15 1150 | eslint: 8.56.0 1151 | hasown: 2.0.0 1152 | jsx-ast-utils: 3.3.5 1153 | language-tags: 1.0.9 1154 | minimatch: 3.1.2 1155 | object.entries: 1.1.7 1156 | object.fromentries: 2.0.7 1157 | dev: true 1158 | 1159 | /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): 1160 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1161 | engines: {node: '>=10'} 1162 | peerDependencies: 1163 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1164 | dependencies: 1165 | eslint: 8.56.0 1166 | dev: true 1167 | 1168 | /eslint-plugin-react@7.33.2(eslint@8.56.0): 1169 | resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 1170 | engines: {node: '>=4'} 1171 | peerDependencies: 1172 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1173 | dependencies: 1174 | array-includes: 3.1.7 1175 | array.prototype.flatmap: 1.3.2 1176 | array.prototype.tosorted: 1.1.2 1177 | doctrine: 2.1.0 1178 | es-iterator-helpers: 1.0.15 1179 | eslint: 8.56.0 1180 | estraverse: 5.3.0 1181 | jsx-ast-utils: 3.3.5 1182 | minimatch: 3.1.2 1183 | object.entries: 1.1.7 1184 | object.fromentries: 2.0.7 1185 | object.hasown: 1.1.3 1186 | object.values: 1.1.7 1187 | prop-types: 15.8.1 1188 | resolve: 2.0.0-next.5 1189 | semver: 6.3.1 1190 | string.prototype.matchall: 4.0.10 1191 | dev: true 1192 | 1193 | /eslint-scope@7.2.2: 1194 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1195 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1196 | dependencies: 1197 | esrecurse: 4.3.0 1198 | estraverse: 5.3.0 1199 | dev: true 1200 | 1201 | /eslint-visitor-keys@3.4.3: 1202 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1203 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1204 | dev: true 1205 | 1206 | /eslint@8.56.0: 1207 | resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} 1208 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1209 | hasBin: true 1210 | dependencies: 1211 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 1212 | '@eslint-community/regexpp': 4.10.0 1213 | '@eslint/eslintrc': 2.1.4 1214 | '@eslint/js': 8.56.0 1215 | '@humanwhocodes/config-array': 0.11.14 1216 | '@humanwhocodes/module-importer': 1.0.1 1217 | '@nodelib/fs.walk': 1.2.8 1218 | '@ungap/structured-clone': 1.2.0 1219 | ajv: 6.12.6 1220 | chalk: 4.1.2 1221 | cross-spawn: 7.0.3 1222 | debug: 4.3.4 1223 | doctrine: 3.0.0 1224 | escape-string-regexp: 4.0.0 1225 | eslint-scope: 7.2.2 1226 | eslint-visitor-keys: 3.4.3 1227 | espree: 9.6.1 1228 | esquery: 1.5.0 1229 | esutils: 2.0.3 1230 | fast-deep-equal: 3.1.3 1231 | file-entry-cache: 6.0.1 1232 | find-up: 5.0.0 1233 | glob-parent: 6.0.2 1234 | globals: 13.24.0 1235 | graphemer: 1.4.0 1236 | ignore: 5.3.1 1237 | imurmurhash: 0.1.4 1238 | is-glob: 4.0.3 1239 | is-path-inside: 3.0.3 1240 | js-yaml: 4.1.0 1241 | json-stable-stringify-without-jsonify: 1.0.1 1242 | levn: 0.4.1 1243 | lodash.merge: 4.6.2 1244 | minimatch: 3.1.2 1245 | natural-compare: 1.4.0 1246 | optionator: 0.9.3 1247 | strip-ansi: 6.0.1 1248 | text-table: 0.2.0 1249 | transitivePeerDependencies: 1250 | - supports-color 1251 | dev: true 1252 | 1253 | /espree@9.6.1: 1254 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1255 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1256 | dependencies: 1257 | acorn: 8.11.3 1258 | acorn-jsx: 5.3.2(acorn@8.11.3) 1259 | eslint-visitor-keys: 3.4.3 1260 | dev: true 1261 | 1262 | /esquery@1.5.0: 1263 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1264 | engines: {node: '>=0.10'} 1265 | dependencies: 1266 | estraverse: 5.3.0 1267 | dev: true 1268 | 1269 | /esrecurse@4.3.0: 1270 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1271 | engines: {node: '>=4.0'} 1272 | dependencies: 1273 | estraverse: 5.3.0 1274 | dev: true 1275 | 1276 | /estraverse@5.3.0: 1277 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1278 | engines: {node: '>=4.0'} 1279 | dev: true 1280 | 1281 | /esutils@2.0.3: 1282 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1283 | engines: {node: '>=0.10.0'} 1284 | dev: true 1285 | 1286 | /fast-deep-equal@3.1.3: 1287 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1288 | dev: true 1289 | 1290 | /fast-glob@3.3.2: 1291 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1292 | engines: {node: '>=8.6.0'} 1293 | dependencies: 1294 | '@nodelib/fs.stat': 2.0.5 1295 | '@nodelib/fs.walk': 1.2.8 1296 | glob-parent: 5.1.2 1297 | merge2: 1.4.1 1298 | micromatch: 4.0.5 1299 | 1300 | /fast-json-stable-stringify@2.1.0: 1301 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1302 | dev: true 1303 | 1304 | /fast-levenshtein@2.0.6: 1305 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1306 | dev: true 1307 | 1308 | /fastq@1.17.0: 1309 | resolution: {integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==} 1310 | dependencies: 1311 | reusify: 1.0.4 1312 | 1313 | /file-entry-cache@6.0.1: 1314 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1315 | engines: {node: ^10.12.0 || >=12.0.0} 1316 | dependencies: 1317 | flat-cache: 3.2.0 1318 | dev: true 1319 | 1320 | /fill-range@7.0.1: 1321 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1322 | engines: {node: '>=8'} 1323 | dependencies: 1324 | to-regex-range: 5.0.1 1325 | 1326 | /find-up@5.0.0: 1327 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1328 | engines: {node: '>=10'} 1329 | dependencies: 1330 | locate-path: 6.0.0 1331 | path-exists: 4.0.0 1332 | dev: true 1333 | 1334 | /flat-cache@3.2.0: 1335 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 1336 | engines: {node: ^10.12.0 || >=12.0.0} 1337 | dependencies: 1338 | flatted: 3.2.9 1339 | keyv: 4.5.4 1340 | rimraf: 3.0.2 1341 | dev: true 1342 | 1343 | /flatted@3.2.9: 1344 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} 1345 | dev: true 1346 | 1347 | /for-each@0.3.3: 1348 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1349 | dependencies: 1350 | is-callable: 1.2.7 1351 | dev: true 1352 | 1353 | /foreground-child@3.1.1: 1354 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} 1355 | engines: {node: '>=14'} 1356 | dependencies: 1357 | cross-spawn: 7.0.3 1358 | signal-exit: 4.1.0 1359 | 1360 | /fraction.js@4.3.7: 1361 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1362 | dev: true 1363 | 1364 | /fs.realpath@1.0.0: 1365 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1366 | dev: true 1367 | 1368 | /fsevents@2.3.3: 1369 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1370 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1371 | os: [darwin] 1372 | requiresBuild: true 1373 | optional: true 1374 | 1375 | /function-bind@1.1.2: 1376 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1377 | 1378 | /function.prototype.name@1.1.6: 1379 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1380 | engines: {node: '>= 0.4'} 1381 | dependencies: 1382 | call-bind: 1.0.5 1383 | define-properties: 1.2.1 1384 | es-abstract: 1.22.3 1385 | functions-have-names: 1.2.3 1386 | dev: true 1387 | 1388 | /functions-have-names@1.2.3: 1389 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1390 | dev: true 1391 | 1392 | /get-intrinsic@1.2.2: 1393 | resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} 1394 | dependencies: 1395 | function-bind: 1.1.2 1396 | has-proto: 1.0.1 1397 | has-symbols: 1.0.3 1398 | hasown: 2.0.0 1399 | dev: true 1400 | 1401 | /get-symbol-description@1.0.0: 1402 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1403 | engines: {node: '>= 0.4'} 1404 | dependencies: 1405 | call-bind: 1.0.5 1406 | get-intrinsic: 1.2.2 1407 | dev: true 1408 | 1409 | /get-tsconfig@4.7.2: 1410 | resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 1411 | dependencies: 1412 | resolve-pkg-maps: 1.0.0 1413 | dev: true 1414 | 1415 | /glob-parent@5.1.2: 1416 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1417 | engines: {node: '>= 6'} 1418 | dependencies: 1419 | is-glob: 4.0.3 1420 | 1421 | /glob-parent@6.0.2: 1422 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1423 | engines: {node: '>=10.13.0'} 1424 | dependencies: 1425 | is-glob: 4.0.3 1426 | 1427 | /glob@10.3.10: 1428 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 1429 | engines: {node: '>=16 || 14 >=14.17'} 1430 | hasBin: true 1431 | dependencies: 1432 | foreground-child: 3.1.1 1433 | jackspeak: 2.3.6 1434 | minimatch: 9.0.3 1435 | minipass: 7.0.4 1436 | path-scurry: 1.10.1 1437 | 1438 | /glob@7.2.3: 1439 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1440 | dependencies: 1441 | fs.realpath: 1.0.0 1442 | inflight: 1.0.6 1443 | inherits: 2.0.4 1444 | minimatch: 3.1.2 1445 | once: 1.4.0 1446 | path-is-absolute: 1.0.1 1447 | dev: true 1448 | 1449 | /globals@13.24.0: 1450 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1451 | engines: {node: '>=8'} 1452 | dependencies: 1453 | type-fest: 0.20.2 1454 | dev: true 1455 | 1456 | /globalthis@1.0.3: 1457 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1458 | engines: {node: '>= 0.4'} 1459 | dependencies: 1460 | define-properties: 1.2.1 1461 | dev: true 1462 | 1463 | /globby@11.1.0: 1464 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1465 | engines: {node: '>=10'} 1466 | dependencies: 1467 | array-union: 2.1.0 1468 | dir-glob: 3.0.1 1469 | fast-glob: 3.3.2 1470 | ignore: 5.3.1 1471 | merge2: 1.4.1 1472 | slash: 3.0.0 1473 | dev: true 1474 | 1475 | /gopd@1.0.1: 1476 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1477 | dependencies: 1478 | get-intrinsic: 1.2.2 1479 | dev: true 1480 | 1481 | /graceful-fs@4.2.11: 1482 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1483 | 1484 | /graphemer@1.4.0: 1485 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1486 | dev: true 1487 | 1488 | /has-bigints@1.0.2: 1489 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1490 | dev: true 1491 | 1492 | /has-flag@4.0.0: 1493 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1494 | engines: {node: '>=8'} 1495 | dev: true 1496 | 1497 | /has-property-descriptors@1.0.1: 1498 | resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} 1499 | dependencies: 1500 | get-intrinsic: 1.2.2 1501 | dev: true 1502 | 1503 | /has-proto@1.0.1: 1504 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1505 | engines: {node: '>= 0.4'} 1506 | dev: true 1507 | 1508 | /has-symbols@1.0.3: 1509 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1510 | engines: {node: '>= 0.4'} 1511 | dev: true 1512 | 1513 | /has-tostringtag@1.0.2: 1514 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1515 | engines: {node: '>= 0.4'} 1516 | dependencies: 1517 | has-symbols: 1.0.3 1518 | dev: true 1519 | 1520 | /hasown@2.0.0: 1521 | resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} 1522 | engines: {node: '>= 0.4'} 1523 | dependencies: 1524 | function-bind: 1.1.2 1525 | 1526 | /ignore@5.3.1: 1527 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 1528 | engines: {node: '>= 4'} 1529 | dev: true 1530 | 1531 | /import-fresh@3.3.0: 1532 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1533 | engines: {node: '>=6'} 1534 | dependencies: 1535 | parent-module: 1.0.1 1536 | resolve-from: 4.0.0 1537 | dev: true 1538 | 1539 | /imurmurhash@0.1.4: 1540 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1541 | engines: {node: '>=0.8.19'} 1542 | dev: true 1543 | 1544 | /inflight@1.0.6: 1545 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1546 | dependencies: 1547 | once: 1.4.0 1548 | wrappy: 1.0.2 1549 | dev: true 1550 | 1551 | /inherits@2.0.4: 1552 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1553 | dev: true 1554 | 1555 | /internal-slot@1.0.6: 1556 | resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} 1557 | engines: {node: '>= 0.4'} 1558 | dependencies: 1559 | get-intrinsic: 1.2.2 1560 | hasown: 2.0.0 1561 | side-channel: 1.0.4 1562 | dev: true 1563 | 1564 | /is-array-buffer@3.0.2: 1565 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1566 | dependencies: 1567 | call-bind: 1.0.5 1568 | get-intrinsic: 1.2.2 1569 | is-typed-array: 1.1.13 1570 | dev: true 1571 | 1572 | /is-async-function@2.0.0: 1573 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 1574 | engines: {node: '>= 0.4'} 1575 | dependencies: 1576 | has-tostringtag: 1.0.2 1577 | dev: true 1578 | 1579 | /is-bigint@1.0.4: 1580 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1581 | dependencies: 1582 | has-bigints: 1.0.2 1583 | dev: true 1584 | 1585 | /is-binary-path@2.1.0: 1586 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1587 | engines: {node: '>=8'} 1588 | dependencies: 1589 | binary-extensions: 2.2.0 1590 | 1591 | /is-boolean-object@1.1.2: 1592 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1593 | engines: {node: '>= 0.4'} 1594 | dependencies: 1595 | call-bind: 1.0.5 1596 | has-tostringtag: 1.0.2 1597 | dev: true 1598 | 1599 | /is-callable@1.2.7: 1600 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1601 | engines: {node: '>= 0.4'} 1602 | dev: true 1603 | 1604 | /is-core-module@2.13.1: 1605 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 1606 | dependencies: 1607 | hasown: 2.0.0 1608 | 1609 | /is-date-object@1.0.5: 1610 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1611 | engines: {node: '>= 0.4'} 1612 | dependencies: 1613 | has-tostringtag: 1.0.2 1614 | dev: true 1615 | 1616 | /is-extglob@2.1.1: 1617 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1618 | engines: {node: '>=0.10.0'} 1619 | 1620 | /is-finalizationregistry@1.0.2: 1621 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 1622 | dependencies: 1623 | call-bind: 1.0.5 1624 | dev: true 1625 | 1626 | /is-fullwidth-code-point@3.0.0: 1627 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1628 | engines: {node: '>=8'} 1629 | 1630 | /is-generator-function@1.0.10: 1631 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 1632 | engines: {node: '>= 0.4'} 1633 | dependencies: 1634 | has-tostringtag: 1.0.2 1635 | dev: true 1636 | 1637 | /is-glob@4.0.3: 1638 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1639 | engines: {node: '>=0.10.0'} 1640 | dependencies: 1641 | is-extglob: 2.1.1 1642 | 1643 | /is-map@2.0.2: 1644 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 1645 | dev: true 1646 | 1647 | /is-negative-zero@2.0.2: 1648 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1649 | engines: {node: '>= 0.4'} 1650 | dev: true 1651 | 1652 | /is-number-object@1.0.7: 1653 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1654 | engines: {node: '>= 0.4'} 1655 | dependencies: 1656 | has-tostringtag: 1.0.2 1657 | dev: true 1658 | 1659 | /is-number@7.0.0: 1660 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1661 | engines: {node: '>=0.12.0'} 1662 | 1663 | /is-path-inside@3.0.3: 1664 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1665 | engines: {node: '>=8'} 1666 | dev: true 1667 | 1668 | /is-regex@1.1.4: 1669 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1670 | engines: {node: '>= 0.4'} 1671 | dependencies: 1672 | call-bind: 1.0.5 1673 | has-tostringtag: 1.0.2 1674 | dev: true 1675 | 1676 | /is-set@2.0.2: 1677 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 1678 | dev: true 1679 | 1680 | /is-shared-array-buffer@1.0.2: 1681 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1682 | dependencies: 1683 | call-bind: 1.0.5 1684 | dev: true 1685 | 1686 | /is-string@1.0.7: 1687 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1688 | engines: {node: '>= 0.4'} 1689 | dependencies: 1690 | has-tostringtag: 1.0.2 1691 | dev: true 1692 | 1693 | /is-symbol@1.0.4: 1694 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1695 | engines: {node: '>= 0.4'} 1696 | dependencies: 1697 | has-symbols: 1.0.3 1698 | dev: true 1699 | 1700 | /is-typed-array@1.1.13: 1701 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 1702 | engines: {node: '>= 0.4'} 1703 | dependencies: 1704 | which-typed-array: 1.1.14 1705 | dev: true 1706 | 1707 | /is-weakmap@2.0.1: 1708 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 1709 | dev: true 1710 | 1711 | /is-weakref@1.0.2: 1712 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1713 | dependencies: 1714 | call-bind: 1.0.5 1715 | dev: true 1716 | 1717 | /is-weakset@2.0.2: 1718 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 1719 | dependencies: 1720 | call-bind: 1.0.5 1721 | get-intrinsic: 1.2.2 1722 | dev: true 1723 | 1724 | /isarray@2.0.5: 1725 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1726 | dev: true 1727 | 1728 | /isexe@2.0.0: 1729 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1730 | 1731 | /iterator.prototype@1.1.2: 1732 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 1733 | dependencies: 1734 | define-properties: 1.2.1 1735 | get-intrinsic: 1.2.2 1736 | has-symbols: 1.0.3 1737 | reflect.getprototypeof: 1.0.4 1738 | set-function-name: 2.0.1 1739 | dev: true 1740 | 1741 | /jackspeak@2.3.6: 1742 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 1743 | engines: {node: '>=14'} 1744 | dependencies: 1745 | '@isaacs/cliui': 8.0.2 1746 | optionalDependencies: 1747 | '@pkgjs/parseargs': 0.11.0 1748 | 1749 | /jiti@1.21.0: 1750 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 1751 | hasBin: true 1752 | 1753 | /js-tokens@4.0.0: 1754 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1755 | 1756 | /js-yaml@4.1.0: 1757 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1758 | hasBin: true 1759 | dependencies: 1760 | argparse: 2.0.1 1761 | dev: true 1762 | 1763 | /json-buffer@3.0.1: 1764 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1765 | dev: true 1766 | 1767 | /json-schema-traverse@0.4.1: 1768 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1769 | dev: true 1770 | 1771 | /json-stable-stringify-without-jsonify@1.0.1: 1772 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1773 | dev: true 1774 | 1775 | /json5@1.0.2: 1776 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1777 | hasBin: true 1778 | dependencies: 1779 | minimist: 1.2.8 1780 | dev: true 1781 | 1782 | /jsx-ast-utils@3.3.5: 1783 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1784 | engines: {node: '>=4.0'} 1785 | dependencies: 1786 | array-includes: 3.1.7 1787 | array.prototype.flat: 1.3.2 1788 | object.assign: 4.1.5 1789 | object.values: 1.1.7 1790 | dev: true 1791 | 1792 | /keyv@4.5.4: 1793 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1794 | dependencies: 1795 | json-buffer: 3.0.1 1796 | dev: true 1797 | 1798 | /language-subtag-registry@0.3.22: 1799 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 1800 | dev: true 1801 | 1802 | /language-tags@1.0.9: 1803 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1804 | engines: {node: '>=0.10'} 1805 | dependencies: 1806 | language-subtag-registry: 0.3.22 1807 | dev: true 1808 | 1809 | /levn@0.4.1: 1810 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1811 | engines: {node: '>= 0.8.0'} 1812 | dependencies: 1813 | prelude-ls: 1.2.1 1814 | type-check: 0.4.0 1815 | dev: true 1816 | 1817 | /lilconfig@2.1.0: 1818 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1819 | engines: {node: '>=10'} 1820 | 1821 | /lilconfig@3.0.0: 1822 | resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} 1823 | engines: {node: '>=14'} 1824 | 1825 | /lines-and-columns@1.2.4: 1826 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1827 | 1828 | /locate-path@6.0.0: 1829 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1830 | engines: {node: '>=10'} 1831 | dependencies: 1832 | p-locate: 5.0.0 1833 | dev: true 1834 | 1835 | /lodash.merge@4.6.2: 1836 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1837 | dev: true 1838 | 1839 | /loose-envify@1.4.0: 1840 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1841 | hasBin: true 1842 | dependencies: 1843 | js-tokens: 4.0.0 1844 | 1845 | /lru-cache@10.2.0: 1846 | resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} 1847 | engines: {node: 14 || >=16.14} 1848 | 1849 | /lru-cache@6.0.0: 1850 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1851 | engines: {node: '>=10'} 1852 | dependencies: 1853 | yallist: 4.0.0 1854 | dev: true 1855 | 1856 | /lucide-react@0.321.0(react@18.2.0): 1857 | resolution: {integrity: sha512-Fi9VahIna6642U+2nAGSjnXwUBV3WyfFFPQq4yi3w30jtqxDLfSyiYCtCYCYQZ2KWNZc1MDI+rcsa0t+ChdYpw==} 1858 | peerDependencies: 1859 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 1860 | dependencies: 1861 | react: 18.2.0 1862 | dev: false 1863 | 1864 | /merge2@1.4.1: 1865 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1866 | engines: {node: '>= 8'} 1867 | 1868 | /micromatch@4.0.5: 1869 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1870 | engines: {node: '>=8.6'} 1871 | dependencies: 1872 | braces: 3.0.2 1873 | picomatch: 2.3.1 1874 | 1875 | /minimatch@3.1.2: 1876 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1877 | dependencies: 1878 | brace-expansion: 1.1.11 1879 | dev: true 1880 | 1881 | /minimatch@9.0.3: 1882 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1883 | engines: {node: '>=16 || 14 >=14.17'} 1884 | dependencies: 1885 | brace-expansion: 2.0.1 1886 | 1887 | /minimist@1.2.8: 1888 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1889 | dev: true 1890 | 1891 | /minipass@7.0.4: 1892 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} 1893 | engines: {node: '>=16 || 14 >=14.17'} 1894 | 1895 | /ms@2.1.2: 1896 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1897 | dev: true 1898 | 1899 | /ms@2.1.3: 1900 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1901 | dev: true 1902 | 1903 | /mz@2.7.0: 1904 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1905 | dependencies: 1906 | any-promise: 1.3.0 1907 | object-assign: 4.1.1 1908 | thenify-all: 1.6.0 1909 | 1910 | /nanoid@3.3.7: 1911 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1912 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1913 | hasBin: true 1914 | 1915 | /natural-compare@1.4.0: 1916 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1917 | dev: true 1918 | 1919 | /next@14.1.0(react-dom@18.2.0)(react@18.2.0): 1920 | resolution: {integrity: sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==} 1921 | engines: {node: '>=18.17.0'} 1922 | hasBin: true 1923 | peerDependencies: 1924 | '@opentelemetry/api': ^1.1.0 1925 | react: ^18.2.0 1926 | react-dom: ^18.2.0 1927 | sass: ^1.3.0 1928 | peerDependenciesMeta: 1929 | '@opentelemetry/api': 1930 | optional: true 1931 | sass: 1932 | optional: true 1933 | dependencies: 1934 | '@next/env': 14.1.0 1935 | '@swc/helpers': 0.5.2 1936 | busboy: 1.6.0 1937 | caniuse-lite: 1.0.30001582 1938 | graceful-fs: 4.2.11 1939 | postcss: 8.4.31 1940 | react: 18.2.0 1941 | react-dom: 18.2.0(react@18.2.0) 1942 | styled-jsx: 5.1.1(react@18.2.0) 1943 | optionalDependencies: 1944 | '@next/swc-darwin-arm64': 14.1.0 1945 | '@next/swc-darwin-x64': 14.1.0 1946 | '@next/swc-linux-arm64-gnu': 14.1.0 1947 | '@next/swc-linux-arm64-musl': 14.1.0 1948 | '@next/swc-linux-x64-gnu': 14.1.0 1949 | '@next/swc-linux-x64-musl': 14.1.0 1950 | '@next/swc-win32-arm64-msvc': 14.1.0 1951 | '@next/swc-win32-ia32-msvc': 14.1.0 1952 | '@next/swc-win32-x64-msvc': 14.1.0 1953 | transitivePeerDependencies: 1954 | - '@babel/core' 1955 | - babel-plugin-macros 1956 | dev: false 1957 | 1958 | /node-releases@2.0.14: 1959 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 1960 | dev: true 1961 | 1962 | /normalize-path@3.0.0: 1963 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1964 | engines: {node: '>=0.10.0'} 1965 | 1966 | /normalize-range@0.1.2: 1967 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1968 | engines: {node: '>=0.10.0'} 1969 | dev: true 1970 | 1971 | /object-assign@4.1.1: 1972 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1973 | engines: {node: '>=0.10.0'} 1974 | 1975 | /object-hash@3.0.0: 1976 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1977 | engines: {node: '>= 6'} 1978 | 1979 | /object-inspect@1.13.1: 1980 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 1981 | dev: true 1982 | 1983 | /object-keys@1.1.1: 1984 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1985 | engines: {node: '>= 0.4'} 1986 | dev: true 1987 | 1988 | /object.assign@4.1.5: 1989 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1990 | engines: {node: '>= 0.4'} 1991 | dependencies: 1992 | call-bind: 1.0.5 1993 | define-properties: 1.2.1 1994 | has-symbols: 1.0.3 1995 | object-keys: 1.1.1 1996 | dev: true 1997 | 1998 | /object.entries@1.1.7: 1999 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} 2000 | engines: {node: '>= 0.4'} 2001 | dependencies: 2002 | call-bind: 1.0.5 2003 | define-properties: 1.2.1 2004 | es-abstract: 1.22.3 2005 | dev: true 2006 | 2007 | /object.fromentries@2.0.7: 2008 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 2009 | engines: {node: '>= 0.4'} 2010 | dependencies: 2011 | call-bind: 1.0.5 2012 | define-properties: 1.2.1 2013 | es-abstract: 1.22.3 2014 | dev: true 2015 | 2016 | /object.groupby@1.0.1: 2017 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} 2018 | dependencies: 2019 | call-bind: 1.0.5 2020 | define-properties: 1.2.1 2021 | es-abstract: 1.22.3 2022 | get-intrinsic: 1.2.2 2023 | dev: true 2024 | 2025 | /object.hasown@1.1.3: 2026 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} 2027 | dependencies: 2028 | define-properties: 1.2.1 2029 | es-abstract: 1.22.3 2030 | dev: true 2031 | 2032 | /object.values@1.1.7: 2033 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 2034 | engines: {node: '>= 0.4'} 2035 | dependencies: 2036 | call-bind: 1.0.5 2037 | define-properties: 1.2.1 2038 | es-abstract: 1.22.3 2039 | dev: true 2040 | 2041 | /once@1.4.0: 2042 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2043 | dependencies: 2044 | wrappy: 1.0.2 2045 | dev: true 2046 | 2047 | /optionator@0.9.3: 2048 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2049 | engines: {node: '>= 0.8.0'} 2050 | dependencies: 2051 | '@aashutoshrathi/word-wrap': 1.2.6 2052 | deep-is: 0.1.4 2053 | fast-levenshtein: 2.0.6 2054 | levn: 0.4.1 2055 | prelude-ls: 1.2.1 2056 | type-check: 0.4.0 2057 | dev: true 2058 | 2059 | /p-limit@3.1.0: 2060 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2061 | engines: {node: '>=10'} 2062 | dependencies: 2063 | yocto-queue: 0.1.0 2064 | dev: true 2065 | 2066 | /p-locate@5.0.0: 2067 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2068 | engines: {node: '>=10'} 2069 | dependencies: 2070 | p-limit: 3.1.0 2071 | dev: true 2072 | 2073 | /parent-module@1.0.1: 2074 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2075 | engines: {node: '>=6'} 2076 | dependencies: 2077 | callsites: 3.1.0 2078 | dev: true 2079 | 2080 | /path-exists@4.0.0: 2081 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2082 | engines: {node: '>=8'} 2083 | dev: true 2084 | 2085 | /path-is-absolute@1.0.1: 2086 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2087 | engines: {node: '>=0.10.0'} 2088 | dev: true 2089 | 2090 | /path-key@3.1.1: 2091 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2092 | engines: {node: '>=8'} 2093 | 2094 | /path-parse@1.0.7: 2095 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2096 | 2097 | /path-scurry@1.10.1: 2098 | resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} 2099 | engines: {node: '>=16 || 14 >=14.17'} 2100 | dependencies: 2101 | lru-cache: 10.2.0 2102 | minipass: 7.0.4 2103 | 2104 | /path-type@4.0.0: 2105 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2106 | engines: {node: '>=8'} 2107 | dev: true 2108 | 2109 | /picocolors@1.0.0: 2110 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2111 | 2112 | /picomatch@2.3.1: 2113 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2114 | engines: {node: '>=8.6'} 2115 | 2116 | /pify@2.3.0: 2117 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2118 | engines: {node: '>=0.10.0'} 2119 | 2120 | /pirates@4.0.6: 2121 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 2122 | engines: {node: '>= 6'} 2123 | 2124 | /postcss-import@15.1.0(postcss@8.4.33): 2125 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 2126 | engines: {node: '>=14.0.0'} 2127 | peerDependencies: 2128 | postcss: ^8.0.0 2129 | dependencies: 2130 | postcss: 8.4.33 2131 | postcss-value-parser: 4.2.0 2132 | read-cache: 1.0.0 2133 | resolve: 1.22.8 2134 | 2135 | /postcss-js@4.0.1(postcss@8.4.33): 2136 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2137 | engines: {node: ^12 || ^14 || >= 16} 2138 | peerDependencies: 2139 | postcss: ^8.4.21 2140 | dependencies: 2141 | camelcase-css: 2.0.1 2142 | postcss: 8.4.33 2143 | 2144 | /postcss-load-config@4.0.2(postcss@8.4.33): 2145 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 2146 | engines: {node: '>= 14'} 2147 | peerDependencies: 2148 | postcss: '>=8.0.9' 2149 | ts-node: '>=9.0.0' 2150 | peerDependenciesMeta: 2151 | postcss: 2152 | optional: true 2153 | ts-node: 2154 | optional: true 2155 | dependencies: 2156 | lilconfig: 3.0.0 2157 | postcss: 8.4.33 2158 | yaml: 2.3.4 2159 | 2160 | /postcss-nested@6.0.1(postcss@8.4.33): 2161 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 2162 | engines: {node: '>=12.0'} 2163 | peerDependencies: 2164 | postcss: ^8.2.14 2165 | dependencies: 2166 | postcss: 8.4.33 2167 | postcss-selector-parser: 6.0.15 2168 | 2169 | /postcss-selector-parser@6.0.15: 2170 | resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} 2171 | engines: {node: '>=4'} 2172 | dependencies: 2173 | cssesc: 3.0.0 2174 | util-deprecate: 1.0.2 2175 | 2176 | /postcss-value-parser@4.2.0: 2177 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2178 | 2179 | /postcss@8.4.31: 2180 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 2181 | engines: {node: ^10 || ^12 || >=14} 2182 | dependencies: 2183 | nanoid: 3.3.7 2184 | picocolors: 1.0.0 2185 | source-map-js: 1.0.2 2186 | dev: false 2187 | 2188 | /postcss@8.4.33: 2189 | resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} 2190 | engines: {node: ^10 || ^12 || >=14} 2191 | dependencies: 2192 | nanoid: 3.3.7 2193 | picocolors: 1.0.0 2194 | source-map-js: 1.0.2 2195 | 2196 | /prelude-ls@1.2.1: 2197 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2198 | engines: {node: '>= 0.8.0'} 2199 | dev: true 2200 | 2201 | /prop-types@15.8.1: 2202 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2203 | dependencies: 2204 | loose-envify: 1.4.0 2205 | object-assign: 4.1.1 2206 | react-is: 16.13.1 2207 | dev: true 2208 | 2209 | /punycode@2.3.1: 2210 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2211 | engines: {node: '>=6'} 2212 | dev: true 2213 | 2214 | /queue-microtask@1.2.3: 2215 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2216 | 2217 | /react-dom@18.2.0(react@18.2.0): 2218 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2219 | peerDependencies: 2220 | react: ^18.2.0 2221 | dependencies: 2222 | loose-envify: 1.4.0 2223 | react: 18.2.0 2224 | scheduler: 0.23.0 2225 | dev: false 2226 | 2227 | /react-hook-form@7.50.0(react@18.2.0): 2228 | resolution: {integrity: sha512-AOhuzM3RdP09ZCnq+Z0yvKGHK25yiOX5phwxjV9L7U6HMla10ezkBnvQ+Pk4GTuDfsC5P2zza3k8mawFwFLVuQ==} 2229 | engines: {node: '>=12.22.0'} 2230 | peerDependencies: 2231 | react: ^16.8.0 || ^17 || ^18 2232 | dependencies: 2233 | react: 18.2.0 2234 | dev: false 2235 | 2236 | /react-is@16.13.1: 2237 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2238 | dev: true 2239 | 2240 | /react@18.2.0: 2241 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2242 | engines: {node: '>=0.10.0'} 2243 | dependencies: 2244 | loose-envify: 1.4.0 2245 | dev: false 2246 | 2247 | /read-cache@1.0.0: 2248 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2249 | dependencies: 2250 | pify: 2.3.0 2251 | 2252 | /readdirp@3.6.0: 2253 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2254 | engines: {node: '>=8.10.0'} 2255 | dependencies: 2256 | picomatch: 2.3.1 2257 | 2258 | /reflect.getprototypeof@1.0.4: 2259 | resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} 2260 | engines: {node: '>= 0.4'} 2261 | dependencies: 2262 | call-bind: 1.0.5 2263 | define-properties: 1.2.1 2264 | es-abstract: 1.22.3 2265 | get-intrinsic: 1.2.2 2266 | globalthis: 1.0.3 2267 | which-builtin-type: 1.1.3 2268 | dev: true 2269 | 2270 | /regenerator-runtime@0.14.1: 2271 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 2272 | 2273 | /regexp.prototype.flags@1.5.1: 2274 | resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} 2275 | engines: {node: '>= 0.4'} 2276 | dependencies: 2277 | call-bind: 1.0.5 2278 | define-properties: 1.2.1 2279 | set-function-name: 2.0.1 2280 | dev: true 2281 | 2282 | /resolve-from@4.0.0: 2283 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2284 | engines: {node: '>=4'} 2285 | dev: true 2286 | 2287 | /resolve-pkg-maps@1.0.0: 2288 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2289 | dev: true 2290 | 2291 | /resolve@1.22.8: 2292 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2293 | hasBin: true 2294 | dependencies: 2295 | is-core-module: 2.13.1 2296 | path-parse: 1.0.7 2297 | supports-preserve-symlinks-flag: 1.0.0 2298 | 2299 | /resolve@2.0.0-next.5: 2300 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 2301 | hasBin: true 2302 | dependencies: 2303 | is-core-module: 2.13.1 2304 | path-parse: 1.0.7 2305 | supports-preserve-symlinks-flag: 1.0.0 2306 | dev: true 2307 | 2308 | /reusify@1.0.4: 2309 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2310 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2311 | 2312 | /rimraf@3.0.2: 2313 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2314 | hasBin: true 2315 | dependencies: 2316 | glob: 7.2.3 2317 | dev: true 2318 | 2319 | /run-parallel@1.2.0: 2320 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2321 | dependencies: 2322 | queue-microtask: 1.2.3 2323 | 2324 | /safe-array-concat@1.1.0: 2325 | resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} 2326 | engines: {node: '>=0.4'} 2327 | dependencies: 2328 | call-bind: 1.0.5 2329 | get-intrinsic: 1.2.2 2330 | has-symbols: 1.0.3 2331 | isarray: 2.0.5 2332 | dev: true 2333 | 2334 | /safe-regex-test@1.0.2: 2335 | resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} 2336 | engines: {node: '>= 0.4'} 2337 | dependencies: 2338 | call-bind: 1.0.5 2339 | get-intrinsic: 1.2.2 2340 | is-regex: 1.1.4 2341 | dev: true 2342 | 2343 | /scheduler@0.23.0: 2344 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2345 | dependencies: 2346 | loose-envify: 1.4.0 2347 | dev: false 2348 | 2349 | /semver@6.3.1: 2350 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 2351 | hasBin: true 2352 | dev: true 2353 | 2354 | /semver@7.5.4: 2355 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 2356 | engines: {node: '>=10'} 2357 | hasBin: true 2358 | dependencies: 2359 | lru-cache: 6.0.0 2360 | dev: true 2361 | 2362 | /set-function-length@1.2.0: 2363 | resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} 2364 | engines: {node: '>= 0.4'} 2365 | dependencies: 2366 | define-data-property: 1.1.1 2367 | function-bind: 1.1.2 2368 | get-intrinsic: 1.2.2 2369 | gopd: 1.0.1 2370 | has-property-descriptors: 1.0.1 2371 | dev: true 2372 | 2373 | /set-function-name@2.0.1: 2374 | resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} 2375 | engines: {node: '>= 0.4'} 2376 | dependencies: 2377 | define-data-property: 1.1.1 2378 | functions-have-names: 1.2.3 2379 | has-property-descriptors: 1.0.1 2380 | dev: true 2381 | 2382 | /shebang-command@2.0.0: 2383 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2384 | engines: {node: '>=8'} 2385 | dependencies: 2386 | shebang-regex: 3.0.0 2387 | 2388 | /shebang-regex@3.0.0: 2389 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2390 | engines: {node: '>=8'} 2391 | 2392 | /side-channel@1.0.4: 2393 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2394 | dependencies: 2395 | call-bind: 1.0.5 2396 | get-intrinsic: 1.2.2 2397 | object-inspect: 1.13.1 2398 | dev: true 2399 | 2400 | /signal-exit@4.1.0: 2401 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 2402 | engines: {node: '>=14'} 2403 | 2404 | /slash@3.0.0: 2405 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2406 | engines: {node: '>=8'} 2407 | dev: true 2408 | 2409 | /source-map-js@1.0.2: 2410 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2411 | engines: {node: '>=0.10.0'} 2412 | 2413 | /streamsearch@1.1.0: 2414 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 2415 | engines: {node: '>=10.0.0'} 2416 | dev: false 2417 | 2418 | /string-width@4.2.3: 2419 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2420 | engines: {node: '>=8'} 2421 | dependencies: 2422 | emoji-regex: 8.0.0 2423 | is-fullwidth-code-point: 3.0.0 2424 | strip-ansi: 6.0.1 2425 | 2426 | /string-width@5.1.2: 2427 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 2428 | engines: {node: '>=12'} 2429 | dependencies: 2430 | eastasianwidth: 0.2.0 2431 | emoji-regex: 9.2.2 2432 | strip-ansi: 7.1.0 2433 | 2434 | /string.prototype.matchall@4.0.10: 2435 | resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} 2436 | dependencies: 2437 | call-bind: 1.0.5 2438 | define-properties: 1.2.1 2439 | es-abstract: 1.22.3 2440 | get-intrinsic: 1.2.2 2441 | has-symbols: 1.0.3 2442 | internal-slot: 1.0.6 2443 | regexp.prototype.flags: 1.5.1 2444 | set-function-name: 2.0.1 2445 | side-channel: 1.0.4 2446 | dev: true 2447 | 2448 | /string.prototype.trim@1.2.8: 2449 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 2450 | engines: {node: '>= 0.4'} 2451 | dependencies: 2452 | call-bind: 1.0.5 2453 | define-properties: 1.2.1 2454 | es-abstract: 1.22.3 2455 | dev: true 2456 | 2457 | /string.prototype.trimend@1.0.7: 2458 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 2459 | dependencies: 2460 | call-bind: 1.0.5 2461 | define-properties: 1.2.1 2462 | es-abstract: 1.22.3 2463 | dev: true 2464 | 2465 | /string.prototype.trimstart@1.0.7: 2466 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 2467 | dependencies: 2468 | call-bind: 1.0.5 2469 | define-properties: 1.2.1 2470 | es-abstract: 1.22.3 2471 | dev: true 2472 | 2473 | /strip-ansi@6.0.1: 2474 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2475 | engines: {node: '>=8'} 2476 | dependencies: 2477 | ansi-regex: 5.0.1 2478 | 2479 | /strip-ansi@7.1.0: 2480 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 2481 | engines: {node: '>=12'} 2482 | dependencies: 2483 | ansi-regex: 6.0.1 2484 | 2485 | /strip-bom@3.0.0: 2486 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2487 | engines: {node: '>=4'} 2488 | dev: true 2489 | 2490 | /strip-json-comments@3.1.1: 2491 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2492 | engines: {node: '>=8'} 2493 | dev: true 2494 | 2495 | /styled-jsx@5.1.1(react@18.2.0): 2496 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 2497 | engines: {node: '>= 12.0.0'} 2498 | peerDependencies: 2499 | '@babel/core': '*' 2500 | babel-plugin-macros: '*' 2501 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 2502 | peerDependenciesMeta: 2503 | '@babel/core': 2504 | optional: true 2505 | babel-plugin-macros: 2506 | optional: true 2507 | dependencies: 2508 | client-only: 0.0.1 2509 | react: 18.2.0 2510 | dev: false 2511 | 2512 | /sucrase@3.35.0: 2513 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 2514 | engines: {node: '>=16 || 14 >=14.17'} 2515 | hasBin: true 2516 | dependencies: 2517 | '@jridgewell/gen-mapping': 0.3.3 2518 | commander: 4.1.1 2519 | glob: 10.3.10 2520 | lines-and-columns: 1.2.4 2521 | mz: 2.7.0 2522 | pirates: 4.0.6 2523 | ts-interface-checker: 0.1.13 2524 | 2525 | /supports-color@7.2.0: 2526 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2527 | engines: {node: '>=8'} 2528 | dependencies: 2529 | has-flag: 4.0.0 2530 | dev: true 2531 | 2532 | /supports-preserve-symlinks-flag@1.0.0: 2533 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2534 | engines: {node: '>= 0.4'} 2535 | 2536 | /tailwind-merge@2.2.1: 2537 | resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==} 2538 | dependencies: 2539 | '@babel/runtime': 7.23.9 2540 | dev: false 2541 | 2542 | /tailwindcss-animate@1.0.7(tailwindcss@3.4.1): 2543 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} 2544 | peerDependencies: 2545 | tailwindcss: '>=3.0.0 || insiders' 2546 | dependencies: 2547 | tailwindcss: 3.4.1 2548 | dev: false 2549 | 2550 | /tailwindcss@3.4.1: 2551 | resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} 2552 | engines: {node: '>=14.0.0'} 2553 | hasBin: true 2554 | dependencies: 2555 | '@alloc/quick-lru': 5.2.0 2556 | arg: 5.0.2 2557 | chokidar: 3.5.3 2558 | didyoumean: 1.2.2 2559 | dlv: 1.1.3 2560 | fast-glob: 3.3.2 2561 | glob-parent: 6.0.2 2562 | is-glob: 4.0.3 2563 | jiti: 1.21.0 2564 | lilconfig: 2.1.0 2565 | micromatch: 4.0.5 2566 | normalize-path: 3.0.0 2567 | object-hash: 3.0.0 2568 | picocolors: 1.0.0 2569 | postcss: 8.4.33 2570 | postcss-import: 15.1.0(postcss@8.4.33) 2571 | postcss-js: 4.0.1(postcss@8.4.33) 2572 | postcss-load-config: 4.0.2(postcss@8.4.33) 2573 | postcss-nested: 6.0.1(postcss@8.4.33) 2574 | postcss-selector-parser: 6.0.15 2575 | resolve: 1.22.8 2576 | sucrase: 3.35.0 2577 | transitivePeerDependencies: 2578 | - ts-node 2579 | 2580 | /tapable@2.2.1: 2581 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2582 | engines: {node: '>=6'} 2583 | dev: true 2584 | 2585 | /text-table@0.2.0: 2586 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2587 | dev: true 2588 | 2589 | /thenify-all@1.6.0: 2590 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2591 | engines: {node: '>=0.8'} 2592 | dependencies: 2593 | thenify: 3.3.1 2594 | 2595 | /thenify@3.3.1: 2596 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2597 | dependencies: 2598 | any-promise: 1.3.0 2599 | 2600 | /to-regex-range@5.0.1: 2601 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2602 | engines: {node: '>=8.0'} 2603 | dependencies: 2604 | is-number: 7.0.0 2605 | 2606 | /ts-api-utils@1.0.3(typescript@5.3.3): 2607 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 2608 | engines: {node: '>=16.13.0'} 2609 | peerDependencies: 2610 | typescript: '>=4.2.0' 2611 | dependencies: 2612 | typescript: 5.3.3 2613 | dev: true 2614 | 2615 | /ts-interface-checker@0.1.13: 2616 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2617 | 2618 | /tsconfig-paths@3.15.0: 2619 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 2620 | dependencies: 2621 | '@types/json5': 0.0.29 2622 | json5: 1.0.2 2623 | minimist: 1.2.8 2624 | strip-bom: 3.0.0 2625 | dev: true 2626 | 2627 | /tslib@2.6.2: 2628 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 2629 | dev: false 2630 | 2631 | /type-check@0.4.0: 2632 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2633 | engines: {node: '>= 0.8.0'} 2634 | dependencies: 2635 | prelude-ls: 1.2.1 2636 | dev: true 2637 | 2638 | /type-fest@0.20.2: 2639 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2640 | engines: {node: '>=10'} 2641 | dev: true 2642 | 2643 | /typed-array-buffer@1.0.0: 2644 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 2645 | engines: {node: '>= 0.4'} 2646 | dependencies: 2647 | call-bind: 1.0.5 2648 | get-intrinsic: 1.2.2 2649 | is-typed-array: 1.1.13 2650 | dev: true 2651 | 2652 | /typed-array-byte-length@1.0.0: 2653 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 2654 | engines: {node: '>= 0.4'} 2655 | dependencies: 2656 | call-bind: 1.0.5 2657 | for-each: 0.3.3 2658 | has-proto: 1.0.1 2659 | is-typed-array: 1.1.13 2660 | dev: true 2661 | 2662 | /typed-array-byte-offset@1.0.0: 2663 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 2664 | engines: {node: '>= 0.4'} 2665 | dependencies: 2666 | available-typed-arrays: 1.0.6 2667 | call-bind: 1.0.5 2668 | for-each: 0.3.3 2669 | has-proto: 1.0.1 2670 | is-typed-array: 1.1.13 2671 | dev: true 2672 | 2673 | /typed-array-length@1.0.4: 2674 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2675 | dependencies: 2676 | call-bind: 1.0.5 2677 | for-each: 0.3.3 2678 | is-typed-array: 1.1.13 2679 | dev: true 2680 | 2681 | /typescript@5.3.3: 2682 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 2683 | engines: {node: '>=14.17'} 2684 | hasBin: true 2685 | dev: true 2686 | 2687 | /unbox-primitive@1.0.2: 2688 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2689 | dependencies: 2690 | call-bind: 1.0.5 2691 | has-bigints: 1.0.2 2692 | has-symbols: 1.0.3 2693 | which-boxed-primitive: 1.0.2 2694 | dev: true 2695 | 2696 | /undici-types@5.26.5: 2697 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 2698 | dev: true 2699 | 2700 | /update-browserslist-db@1.0.13(browserslist@4.22.3): 2701 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 2702 | hasBin: true 2703 | peerDependencies: 2704 | browserslist: '>= 4.21.0' 2705 | dependencies: 2706 | browserslist: 4.22.3 2707 | escalade: 3.1.1 2708 | picocolors: 1.0.0 2709 | dev: true 2710 | 2711 | /uri-js@4.4.1: 2712 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2713 | dependencies: 2714 | punycode: 2.3.1 2715 | dev: true 2716 | 2717 | /util-deprecate@1.0.2: 2718 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2719 | 2720 | /which-boxed-primitive@1.0.2: 2721 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2722 | dependencies: 2723 | is-bigint: 1.0.4 2724 | is-boolean-object: 1.1.2 2725 | is-number-object: 1.0.7 2726 | is-string: 1.0.7 2727 | is-symbol: 1.0.4 2728 | dev: true 2729 | 2730 | /which-builtin-type@1.1.3: 2731 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 2732 | engines: {node: '>= 0.4'} 2733 | dependencies: 2734 | function.prototype.name: 1.1.6 2735 | has-tostringtag: 1.0.2 2736 | is-async-function: 2.0.0 2737 | is-date-object: 1.0.5 2738 | is-finalizationregistry: 1.0.2 2739 | is-generator-function: 1.0.10 2740 | is-regex: 1.1.4 2741 | is-weakref: 1.0.2 2742 | isarray: 2.0.5 2743 | which-boxed-primitive: 1.0.2 2744 | which-collection: 1.0.1 2745 | which-typed-array: 1.1.14 2746 | dev: true 2747 | 2748 | /which-collection@1.0.1: 2749 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 2750 | dependencies: 2751 | is-map: 2.0.2 2752 | is-set: 2.0.2 2753 | is-weakmap: 2.0.1 2754 | is-weakset: 2.0.2 2755 | dev: true 2756 | 2757 | /which-typed-array@1.1.14: 2758 | resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} 2759 | engines: {node: '>= 0.4'} 2760 | dependencies: 2761 | available-typed-arrays: 1.0.6 2762 | call-bind: 1.0.5 2763 | for-each: 0.3.3 2764 | gopd: 1.0.1 2765 | has-tostringtag: 1.0.2 2766 | dev: true 2767 | 2768 | /which@2.0.2: 2769 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2770 | engines: {node: '>= 8'} 2771 | hasBin: true 2772 | dependencies: 2773 | isexe: 2.0.0 2774 | 2775 | /wrap-ansi@7.0.0: 2776 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2777 | engines: {node: '>=10'} 2778 | dependencies: 2779 | ansi-styles: 4.3.0 2780 | string-width: 4.2.3 2781 | strip-ansi: 6.0.1 2782 | 2783 | /wrap-ansi@8.1.0: 2784 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2785 | engines: {node: '>=12'} 2786 | dependencies: 2787 | ansi-styles: 6.2.1 2788 | string-width: 5.1.2 2789 | strip-ansi: 7.1.0 2790 | 2791 | /wrappy@1.0.2: 2792 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2793 | dev: true 2794 | 2795 | /yallist@4.0.0: 2796 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2797 | dev: true 2798 | 2799 | /yaml@2.3.4: 2800 | resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} 2801 | engines: {node: '>= 14'} 2802 | 2803 | /yocto-queue@0.1.0: 2804 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2805 | engines: {node: '>=10'} 2806 | dev: true 2807 | 2808 | /zod-validation-error@3.0.2(zod@3.22.4): 2809 | resolution: {integrity: sha512-21xGaDmnU7lJZ4J63n5GXWqi+rTzGy3gDHbuZ1jP6xrK/DEQGyOqs/xW7eH96tIfCOYm+ecCuT0bfajBRKEVUw==} 2810 | engines: {node: '>=18.0.0'} 2811 | peerDependencies: 2812 | zod: ^3.18.0 2813 | dependencies: 2814 | zod: 3.22.4 2815 | dev: false 2816 | 2817 | /zod@3.22.4: 2818 | resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} 2819 | dev: false 2820 | -------------------------------------------------------------------------------- /forms-mgmt-finished/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /forms-mgmt-finished/public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms-mgmt-finished/public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/MailForm.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { zodResolver } from "@hookform/resolvers/zod"; 3 | import { useFormState } from "react-dom"; 4 | import { X } from "lucide-react"; 5 | import { useRef } from "react"; 6 | import { useForm } from "react-hook-form"; 7 | import { Button } from "@/components/ui/button"; 8 | import { 9 | Form, 10 | FormControl, 11 | FormDescription, 12 | FormField, 13 | FormItem, 14 | FormLabel, 15 | FormMessage, 16 | } from "@/components/ui/form"; 17 | import { Input } from "@/components/ui/input"; 18 | import { z } from "zod"; 19 | 20 | import { schema } from "./formSchema"; 21 | 22 | import { onSubmitAction } from "./formSubmit"; 23 | 24 | export const MailForm = () => { 25 | const [state, formAction] = useFormState(onSubmitAction, { 26 | message: "", 27 | }); 28 | const form = useForm>({ 29 | resolver: zodResolver(schema), 30 | defaultValues: { 31 | first: "", 32 | last: "", 33 | email: "", 34 | ...(state?.fields ?? {}), 35 | }, 36 | }); 37 | 38 | const formRef = useRef(null); 39 | 40 | return ( 41 |
42 | {state?.message !== "" && !state.issues && ( 43 |
{state.message}
44 | )} 45 | {state?.issues && ( 46 |
47 |
    48 | {state.issues.map((issue) => ( 49 |
  • 50 | 51 | {issue} 52 |
  • 53 | ))} 54 |
55 |
56 | )} 57 | { 62 | evt.preventDefault(); 63 | form.handleSubmit(() => { 64 | formAction(new FormData(formRef.current!)); 65 | })(evt); 66 | }} 67 | > 68 |
69 | ( 73 | 74 | First Name 75 | 76 | 77 | 78 | Your first name. 79 | 80 | 81 | )} 82 | /> 83 | ( 87 | 88 | Last Name 89 | 90 | 91 | 92 | Your last name. 93 | 94 | 95 | )} 96 | /> 97 |
98 | ( 102 | 103 | Email 104 | 105 | 106 | 107 | Your email address. 108 | 109 | 110 | )} 111 | /> 112 | 113 | 114 | 115 | ); 116 | }; 117 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/forms-management-yt/4ef752fa5334dc5de14750fddf8a2be86c9913ce/forms-mgmt-finished/src/app/favicon.ico -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/formSchema.ts: -------------------------------------------------------------------------------- 1 | import { z } from "zod"; 2 | 3 | export const schema = z.object({ 4 | first: z.string().trim().min(1, { 5 | message: "First name is required.", 6 | }), 7 | last: z.string().trim().min(1, { 8 | message: "Last name is required.", 9 | }), 10 | email: z.string().trim().email({ 11 | message: "Invalid email address.", 12 | }), 13 | }); 14 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/formSubmit.ts: -------------------------------------------------------------------------------- 1 | "use server"; 2 | import { schema } from "./formSchema"; 3 | 4 | export type FormState = { 5 | message: string; 6 | fields?: Record; 7 | issues?: string[]; 8 | }; 9 | 10 | export async function onSubmitAction( 11 | prevState: FormState, 12 | data: FormData 13 | ): Promise { 14 | const formData = Object.fromEntries(data); 15 | const parsed = schema.safeParse(formData); 16 | 17 | if (!parsed.success) { 18 | const fields: Record = {}; 19 | for (const key of Object.keys(formData)) { 20 | fields[key] = formData[key].toString(); 21 | } 22 | return { 23 | message: "Invalid form data", 24 | fields, 25 | issues: parsed.error.issues.map((issue) => issue.message), 26 | }; 27 | } 28 | 29 | if (parsed.data.email.includes("a")) { 30 | return { 31 | message: "Invalid email", 32 | fields: parsed.data, 33 | }; 34 | } 35 | 36 | return { message: "User registered" }; 37 | } 38 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | body { 6 | @apply dark; 7 | } 8 | 9 | @layer base { 10 | :root { 11 | --background: 0 0% 100%; 12 | --foreground: 222.2 84% 4.9%; 13 | 14 | --card: 0 0% 100%; 15 | --card-foreground: 222.2 84% 4.9%; 16 | 17 | --popover: 0 0% 100%; 18 | --popover-foreground: 222.2 84% 4.9%; 19 | 20 | --primary: 222.2 47.4% 11.2%; 21 | --primary-foreground: 210 40% 98%; 22 | 23 | --secondary: 210 40% 96.1%; 24 | --secondary-foreground: 222.2 47.4% 11.2%; 25 | 26 | --muted: 210 40% 96.1%; 27 | --muted-foreground: 215.4 16.3% 46.9%; 28 | 29 | --accent: 210 40% 96.1%; 30 | --accent-foreground: 222.2 47.4% 11.2%; 31 | 32 | --destructive: 0 84.2% 60.2%; 33 | --destructive-foreground: 210 40% 98%; 34 | 35 | --border: 214.3 31.8% 91.4%; 36 | --input: 214.3 31.8% 91.4%; 37 | --ring: 222.2 84% 4.9%; 38 | 39 | --radius: 0.5rem; 40 | } 41 | 42 | .dark { 43 | --background: 222.2 84% 4.9%; 44 | --foreground: 210 40% 98%; 45 | 46 | --card: 222.2 84% 4.9%; 47 | --card-foreground: 210 40% 98%; 48 | 49 | --popover: 222.2 84% 4.9%; 50 | --popover-foreground: 210 40% 98%; 51 | 52 | --primary: 210 40% 98%; 53 | --primary-foreground: 222.2 47.4% 11.2%; 54 | 55 | --secondary: 217.2 32.6% 17.5%; 56 | --secondary-foreground: 210 40% 98%; 57 | 58 | --muted: 217.2 32.6% 17.5%; 59 | --muted-foreground: 215 20.2% 65.1%; 60 | 61 | --accent: 217.2 32.6% 17.5%; 62 | --accent-foreground: 210 40% 98%; 63 | 64 | --destructive: 0 62.8% 30.6%; 65 | --destructive-foreground: 210 40% 98%; 66 | 67 | --border: 217.2 32.6% 17.5%; 68 | --input: 217.2 32.6% 17.5%; 69 | --ring: 212.7 26.8% 83.9%; 70 | } 71 | } 72 | 73 | @layer base { 74 | * { 75 | @apply border-border; 76 | } 77 | body { 78 | @apply bg-background text-foreground; 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import "./globals.css"; 4 | 5 | const inter = Inter({ subsets: ["latin"] }); 6 | 7 | export const metadata: Metadata = { 8 | title: "Create Next App", 9 | description: "Generated by create next app", 10 | }; 11 | 12 | export default function RootLayout({ 13 | children, 14 | }: Readonly<{ 15 | children: React.ReactNode; 16 | }>) { 17 | return ( 18 | 19 | {children} 20 | 21 | ); 22 | } 23 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import { MailForm } from "./MailForm"; 2 | 3 | export default function Home() { 4 | return ( 5 |
6 | 7 |
8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/components/ui/button.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import { Slot } from "@radix-ui/react-slot" 3 | import { cva, type VariantProps } from "class-variance-authority" 4 | 5 | import { cn } from "@/lib/utils" 6 | 7 | const buttonVariants = cva( 8 | "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", 9 | { 10 | variants: { 11 | variant: { 12 | default: "bg-primary text-primary-foreground hover:bg-primary/90", 13 | destructive: 14 | "bg-destructive text-destructive-foreground hover:bg-destructive/90", 15 | outline: 16 | "border border-input bg-background hover:bg-accent hover:text-accent-foreground", 17 | secondary: 18 | "bg-secondary text-secondary-foreground hover:bg-secondary/80", 19 | ghost: "hover:bg-accent hover:text-accent-foreground", 20 | link: "text-primary underline-offset-4 hover:underline", 21 | }, 22 | size: { 23 | default: "h-10 px-4 py-2", 24 | sm: "h-9 rounded-md px-3", 25 | lg: "h-11 rounded-md px-8", 26 | icon: "h-10 w-10", 27 | }, 28 | }, 29 | defaultVariants: { 30 | variant: "default", 31 | size: "default", 32 | }, 33 | } 34 | ) 35 | 36 | export interface ButtonProps 37 | extends React.ButtonHTMLAttributes, 38 | VariantProps { 39 | asChild?: boolean 40 | } 41 | 42 | const Button = React.forwardRef( 43 | ({ className, variant, size, asChild = false, ...props }, ref) => { 44 | const Comp = asChild ? Slot : "button" 45 | return ( 46 | 51 | ) 52 | } 53 | ) 54 | Button.displayName = "Button" 55 | 56 | export { Button, buttonVariants } 57 | -------------------------------------------------------------------------------- /forms-mgmt-finished/src/components/ui/form.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import * as LabelPrimitive from "@radix-ui/react-label" 3 | import { Slot } from "@radix-ui/react-slot" 4 | import { 5 | Controller, 6 | ControllerProps, 7 | FieldPath, 8 | FieldValues, 9 | FormProvider, 10 | useFormContext, 11 | } from "react-hook-form" 12 | 13 | import { cn } from "@/lib/utils" 14 | import { Label } from "@/components/ui/label" 15 | 16 | const Form = FormProvider 17 | 18 | type FormFieldContextValue< 19 | TFieldValues extends FieldValues = FieldValues, 20 | TName extends FieldPath = FieldPath 21 | > = { 22 | name: TName 23 | } 24 | 25 | const FormFieldContext = React.createContext( 26 | {} as FormFieldContextValue 27 | ) 28 | 29 | const FormField = < 30 | TFieldValues extends FieldValues = FieldValues, 31 | TName extends FieldPath = FieldPath 32 | >({ 33 | ...props 34 | }: ControllerProps) => { 35 | return ( 36 | 37 | 38 | 39 | ) 40 | } 41 | 42 | const useFormField = () => { 43 | const fieldContext = React.useContext(FormFieldContext) 44 | const itemContext = React.useContext(FormItemContext) 45 | const { getFieldState, formState } = useFormContext() 46 | 47 | const fieldState = getFieldState(fieldContext.name, formState) 48 | 49 | if (!fieldContext) { 50 | throw new Error("useFormField should be used within ") 51 | } 52 | 53 | const { id } = itemContext 54 | 55 | return { 56 | id, 57 | name: fieldContext.name, 58 | formItemId: `${id}-form-item`, 59 | formDescriptionId: `${id}-form-item-description`, 60 | formMessageId: `${id}-form-item-message`, 61 | ...fieldState, 62 | } 63 | } 64 | 65 | type FormItemContextValue = { 66 | id: string 67 | } 68 | 69 | const FormItemContext = React.createContext( 70 | {} as FormItemContextValue 71 | ) 72 | 73 | const FormItem = React.forwardRef< 74 | HTMLDivElement, 75 | React.HTMLAttributes 76 | >(({ className, ...props }, ref) => { 77 | const id = React.useId() 78 | 79 | return ( 80 | 81 |
82 | 83 | ) 84 | }) 85 | FormItem.displayName = "FormItem" 86 | 87 | const FormLabel = React.forwardRef< 88 | React.ElementRef, 89 | React.ComponentPropsWithoutRef 90 | >(({ className, ...props }, ref) => { 91 | const { error, formItemId } = useFormField() 92 | 93 | return ( 94 |