├── .eslintrc.json
├── .gitignore
├── .npmrc
├── .prettierrc
├── README.md
├── app
├── components
│ ├── ProductSize.tsx
│ └── ThemeSwitcher.tsx
├── favicon.ico
├── globals.css
├── layout.tsx
├── page.tsx
└── providers.tsx
├── next.config.js
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── public
├── images
│ └── shoe.webp
├── next.svg
└── vercel.svg
├── tailwind.config.ts
└── tsconfig.json
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/.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 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env*.local
29 |
30 | # vercel
31 | .vercel
32 |
33 | # typescript
34 | *.tsbuildinfo
35 | next-env.d.ts
36 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | public-hoist-pattern[]=*@nextui-org/*
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "arrowParens": "avoid",
3 | "singleQuote": true,
4 | "jsxSingleQuote": true,
5 | "tabWidth": 2,
6 | "trailingComma": "none",
7 | "semi": false,
8 | "proseWrap": "always",
9 | "printWidth": 80,
10 | "plugins": ["prettier-plugin-tailwindcss"]
11 | }
12 |
--------------------------------------------------------------------------------
/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 | ```
14 |
15 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
16 |
17 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
18 |
19 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
20 |
21 | ## Learn More
22 |
23 | To learn more about Next.js, take a look at the following resources:
24 |
25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27 |
28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29 |
30 | ## Deploy on Vercel
31 |
32 | 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.
33 |
34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
35 |
--------------------------------------------------------------------------------
/app/components/ProductSize.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { useState } from 'react'
4 | import { cn } from '@nextui-org/react'
5 |
6 | function ProductSize() {
7 | const [selectedSize, setSelectedSize] = useState(2)
8 |
9 | return (
10 |
11 | {['XS', 'S', 'M', 'L', 'XL'].map((size, index) => (
12 | -
13 |
24 |
25 | ))}
26 |
27 | )
28 | }
29 |
30 | export default ProductSize
31 |
--------------------------------------------------------------------------------
/app/components/ThemeSwitcher.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { useEffect, useState } from 'react'
4 | import { useTheme } from 'next-themes'
5 |
6 | import { Button } from '@nextui-org/button'
7 |
8 | export default function ThemeSwitcher() {
9 | const [mounted, setMounted] = useState(false)
10 | const { theme, setTheme } = useTheme()
11 |
12 | useEffect(() => {
13 | setMounted(true)
14 | }, [])
15 |
16 | if (!mounted) return null
17 |
18 | return (
19 |
20 |
23 |
26 |
29 |
30 | )
31 | }
32 |
--------------------------------------------------------------------------------
/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HamedBahram/next-ui/dc4764a3bd10cfc86b6bfc867de70b58b903a3c0/app/favicon.ico
--------------------------------------------------------------------------------
/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import './globals.css'
2 | import type { Metadata } from 'next'
3 | import { Inter } from 'next/font/google'
4 | import Providers from './providers'
5 | import Link from 'next/link'
6 | import ThemeSwitcher from './components/ThemeSwitcher'
7 |
8 | const inter = Inter({ subsets: ['latin'] })
9 |
10 | export const metadata: Metadata = {
11 | title: 'Create Next App',
12 | description: 'Generated by create next app'
13 | }
14 |
15 | export default function RootLayout({
16 | children
17 | }: {
18 | children: React.ReactNode
19 | }) {
20 | return (
21 |
22 |
23 |
24 |
34 | {children}
35 |
36 |
37 |
38 |
39 | )
40 | }
41 |
--------------------------------------------------------------------------------
/app/page.tsx:
--------------------------------------------------------------------------------
1 | import Image from 'next/image'
2 |
3 | import { Button } from '@nextui-org/button'
4 | import { Card, CardBody } from '@nextui-org/card'
5 | import ProductSize from './components/ProductSize'
6 |
7 | import shoe from '@/public/images/shoe.webp'
8 |
9 | export default function Home() {
10 | return (
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | Nike Adapt BB 2.0
20 |
21 |
22 | Consistent, customized fit, game-changing.
23 |
24 |
25 |
26 | $279.79
27 | $350
28 | 20% off
29 |
30 |
31 |
32 |
33 |
34 |
35 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | )
46 | }
47 |
--------------------------------------------------------------------------------
/app/providers.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { NextUIProvider } from '@nextui-org/react'
4 | import { ThemeProvider as NextThemesProvider } from 'next-themes'
5 |
6 | export default function Providers({ children }: { children: React.ReactNode }) {
7 | return (
8 |
9 |
14 | {children}
15 |
16 |
17 | )
18 | }
19 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "next-ui",
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 | "@nextui-org/react": "^2.1.7",
13 | "@types/node": "20.5.7",
14 | "@types/react": "18.2.21",
15 | "@types/react-dom": "18.2.7",
16 | "autoprefixer": "10.4.15",
17 | "eslint": "8.48.0",
18 | "eslint-config-next": "13.4.19",
19 | "framer-motion": "^10.16.1",
20 | "next": "13.4.19",
21 | "next-themes": "^0.2.1",
22 | "postcss": "8.4.28",
23 | "react": "18.2.0",
24 | "react-dom": "18.2.0",
25 | "tailwindcss": "3.3.3",
26 | "typescript": "5.2.2"
27 | },
28 | "devDependencies": {
29 | "prettier": "^3.0.3",
30 | "prettier-plugin-tailwindcss": "^0.5.3"
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | dependencies:
8 | '@nextui-org/react':
9 | specifier: ^2.1.7
10 | version: 2.1.7(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
11 | '@types/node':
12 | specifier: 20.5.7
13 | version: 20.5.7
14 | '@types/react':
15 | specifier: 18.2.21
16 | version: 18.2.21
17 | '@types/react-dom':
18 | specifier: 18.2.7
19 | version: 18.2.7
20 | autoprefixer:
21 | specifier: 10.4.15
22 | version: 10.4.15(postcss@8.4.28)
23 | eslint:
24 | specifier: 8.48.0
25 | version: 8.48.0
26 | eslint-config-next:
27 | specifier: 13.4.19
28 | version: 13.4.19(eslint@8.48.0)(typescript@5.2.2)
29 | framer-motion:
30 | specifier: ^10.16.1
31 | version: 10.16.1(react-dom@18.2.0)(react@18.2.0)
32 | next:
33 | specifier: 13.4.19
34 | version: 13.4.19(react-dom@18.2.0)(react@18.2.0)
35 | next-themes:
36 | specifier: ^0.2.1
37 | version: 0.2.1(next@13.4.19)(react-dom@18.2.0)(react@18.2.0)
38 | postcss:
39 | specifier: 8.4.28
40 | version: 8.4.28
41 | react:
42 | specifier: 18.2.0
43 | version: 18.2.0
44 | react-dom:
45 | specifier: 18.2.0
46 | version: 18.2.0(react@18.2.0)
47 | tailwindcss:
48 | specifier: 3.3.3
49 | version: 3.3.3
50 | typescript:
51 | specifier: 5.2.2
52 | version: 5.2.2
53 |
54 | devDependencies:
55 | prettier:
56 | specifier: ^3.0.3
57 | version: 3.0.3
58 | prettier-plugin-tailwindcss:
59 | specifier: ^0.5.3
60 | version: 0.5.3(prettier@3.0.3)
61 |
62 | packages:
63 |
64 | /@aashutoshrathi/word-wrap@1.2.6:
65 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
66 | engines: {node: '>=0.10.0'}
67 | dev: false
68 |
69 | /@alloc/quick-lru@5.2.0:
70 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
71 | engines: {node: '>=10'}
72 | dev: false
73 |
74 | /@babel/runtime@7.22.11:
75 | resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==}
76 | engines: {node: '>=6.9.0'}
77 | dependencies:
78 | regenerator-runtime: 0.14.0
79 | dev: false
80 |
81 | /@emotion/is-prop-valid@0.8.8:
82 | resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
83 | requiresBuild: true
84 | dependencies:
85 | '@emotion/memoize': 0.7.4
86 | dev: false
87 | optional: true
88 |
89 | /@emotion/memoize@0.7.4:
90 | resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
91 | requiresBuild: true
92 | dev: false
93 | optional: true
94 |
95 | /@eslint-community/eslint-utils@4.4.0(eslint@8.48.0):
96 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
97 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
98 | peerDependencies:
99 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
100 | dependencies:
101 | eslint: 8.48.0
102 | eslint-visitor-keys: 3.4.3
103 | dev: false
104 |
105 | /@eslint-community/regexpp@4.8.0:
106 | resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==}
107 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
108 | dev: false
109 |
110 | /@eslint/eslintrc@2.1.2:
111 | resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==}
112 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
113 | dependencies:
114 | ajv: 6.12.6
115 | debug: 4.3.4
116 | espree: 9.6.1
117 | globals: 13.21.0
118 | ignore: 5.2.4
119 | import-fresh: 3.3.0
120 | js-yaml: 4.1.0
121 | minimatch: 3.1.2
122 | strip-json-comments: 3.1.1
123 | transitivePeerDependencies:
124 | - supports-color
125 | dev: false
126 |
127 | /@eslint/js@8.48.0:
128 | resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==}
129 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
130 | dev: false
131 |
132 | /@formatjs/ecma402-abstract@1.17.0:
133 | resolution: {integrity: sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==}
134 | dependencies:
135 | '@formatjs/intl-localematcher': 0.4.0
136 | tslib: 2.6.2
137 | dev: false
138 |
139 | /@formatjs/fast-memoize@2.2.0:
140 | resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
141 | dependencies:
142 | tslib: 2.6.2
143 | dev: false
144 |
145 | /@formatjs/icu-messageformat-parser@2.6.0:
146 | resolution: {integrity: sha512-yT6at0qc0DANw9qM/TU8RZaCtfDXtj4pZM/IC2WnVU80yAcliS3KVDiuUt4jSQAeFL9JS5bc2hARnFmjPdA6qw==}
147 | dependencies:
148 | '@formatjs/ecma402-abstract': 1.17.0
149 | '@formatjs/icu-skeleton-parser': 1.6.0
150 | tslib: 2.6.2
151 | dev: false
152 |
153 | /@formatjs/icu-skeleton-parser@1.6.0:
154 | resolution: {integrity: sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==}
155 | dependencies:
156 | '@formatjs/ecma402-abstract': 1.17.0
157 | tslib: 2.6.2
158 | dev: false
159 |
160 | /@formatjs/intl-localematcher@0.4.0:
161 | resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==}
162 | dependencies:
163 | tslib: 2.6.2
164 | dev: false
165 |
166 | /@humanwhocodes/config-array@0.11.11:
167 | resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==}
168 | engines: {node: '>=10.10.0'}
169 | dependencies:
170 | '@humanwhocodes/object-schema': 1.2.1
171 | debug: 4.3.4
172 | minimatch: 3.1.2
173 | transitivePeerDependencies:
174 | - supports-color
175 | dev: false
176 |
177 | /@humanwhocodes/module-importer@1.0.1:
178 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
179 | engines: {node: '>=12.22'}
180 | dev: false
181 |
182 | /@humanwhocodes/object-schema@1.2.1:
183 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
184 | dev: false
185 |
186 | /@internationalized/date@3.4.0:
187 | resolution: {integrity: sha512-QUDSGCsvrEVITVf+kv9VSAraAmCgjQmU5CiXtesUBBhBe374NmnEIIaOFBZ72t29dfGMBP0zF+v6toVnbcc6jg==}
188 | dependencies:
189 | '@swc/helpers': 0.5.1
190 | dev: false
191 |
192 | /@internationalized/message@3.1.1:
193 | resolution: {integrity: sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==}
194 | dependencies:
195 | '@swc/helpers': 0.5.1
196 | intl-messageformat: 10.5.0
197 | dev: false
198 |
199 | /@internationalized/number@3.2.1:
200 | resolution: {integrity: sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==}
201 | dependencies:
202 | '@swc/helpers': 0.5.1
203 | dev: false
204 |
205 | /@internationalized/string@3.1.1:
206 | resolution: {integrity: sha512-fvSr6YRoVPgONiVIUhgCmIAlifMVCeej/snPZVzbzRPxGpHl3o1GRe+d/qh92D8KhgOciruDUH8I5mjdfdjzfA==}
207 | dependencies:
208 | '@swc/helpers': 0.5.1
209 | dev: false
210 |
211 | /@jridgewell/gen-mapping@0.3.3:
212 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
213 | engines: {node: '>=6.0.0'}
214 | dependencies:
215 | '@jridgewell/set-array': 1.1.2
216 | '@jridgewell/sourcemap-codec': 1.4.15
217 | '@jridgewell/trace-mapping': 0.3.19
218 | dev: false
219 |
220 | /@jridgewell/resolve-uri@3.1.1:
221 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
222 | engines: {node: '>=6.0.0'}
223 | dev: false
224 |
225 | /@jridgewell/set-array@1.1.2:
226 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
227 | engines: {node: '>=6.0.0'}
228 | dev: false
229 |
230 | /@jridgewell/sourcemap-codec@1.4.15:
231 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
232 | dev: false
233 |
234 | /@jridgewell/trace-mapping@0.3.19:
235 | resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
236 | dependencies:
237 | '@jridgewell/resolve-uri': 3.1.1
238 | '@jridgewell/sourcemap-codec': 1.4.15
239 | dev: false
240 |
241 | /@next/env@13.4.19:
242 | resolution: {integrity: sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==}
243 | dev: false
244 |
245 | /@next/eslint-plugin-next@13.4.19:
246 | resolution: {integrity: sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==}
247 | dependencies:
248 | glob: 7.1.7
249 | dev: false
250 |
251 | /@next/swc-darwin-arm64@13.4.19:
252 | resolution: {integrity: sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==}
253 | engines: {node: '>= 10'}
254 | cpu: [arm64]
255 | os: [darwin]
256 | requiresBuild: true
257 | dev: false
258 | optional: true
259 |
260 | /@next/swc-darwin-x64@13.4.19:
261 | resolution: {integrity: sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==}
262 | engines: {node: '>= 10'}
263 | cpu: [x64]
264 | os: [darwin]
265 | requiresBuild: true
266 | dev: false
267 | optional: true
268 |
269 | /@next/swc-linux-arm64-gnu@13.4.19:
270 | resolution: {integrity: sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==}
271 | engines: {node: '>= 10'}
272 | cpu: [arm64]
273 | os: [linux]
274 | requiresBuild: true
275 | dev: false
276 | optional: true
277 |
278 | /@next/swc-linux-arm64-musl@13.4.19:
279 | resolution: {integrity: sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==}
280 | engines: {node: '>= 10'}
281 | cpu: [arm64]
282 | os: [linux]
283 | requiresBuild: true
284 | dev: false
285 | optional: true
286 |
287 | /@next/swc-linux-x64-gnu@13.4.19:
288 | resolution: {integrity: sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==}
289 | engines: {node: '>= 10'}
290 | cpu: [x64]
291 | os: [linux]
292 | requiresBuild: true
293 | dev: false
294 | optional: true
295 |
296 | /@next/swc-linux-x64-musl@13.4.19:
297 | resolution: {integrity: sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==}
298 | engines: {node: '>= 10'}
299 | cpu: [x64]
300 | os: [linux]
301 | requiresBuild: true
302 | dev: false
303 | optional: true
304 |
305 | /@next/swc-win32-arm64-msvc@13.4.19:
306 | resolution: {integrity: sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==}
307 | engines: {node: '>= 10'}
308 | cpu: [arm64]
309 | os: [win32]
310 | requiresBuild: true
311 | dev: false
312 | optional: true
313 |
314 | /@next/swc-win32-ia32-msvc@13.4.19:
315 | resolution: {integrity: sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==}
316 | engines: {node: '>= 10'}
317 | cpu: [ia32]
318 | os: [win32]
319 | requiresBuild: true
320 | dev: false
321 | optional: true
322 |
323 | /@next/swc-win32-x64-msvc@13.4.19:
324 | resolution: {integrity: sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==}
325 | engines: {node: '>= 10'}
326 | cpu: [x64]
327 | os: [win32]
328 | requiresBuild: true
329 | dev: false
330 | optional: true
331 |
332 | /@nextui-org/accordion@2.0.17(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
333 | resolution: {integrity: sha512-UBqO/d5qSVaHqaxAKSE/AqbtLKhBpUvYViMSkio9n80LM35KTaPmD4knCV5ddGVb8S/Iv34GwvbPUuLlzmamag==}
334 | peerDependencies:
335 | framer-motion: '>=4.0.0'
336 | react: '>=18'
337 | dependencies:
338 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
339 | '@nextui-org/divider': 2.0.14(react@18.2.0)(tailwindcss@3.3.3)
340 | '@nextui-org/framer-transitions': 2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
341 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
342 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
343 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
344 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
345 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
346 | '@nextui-org/use-aria-accordion-item': 2.0.3(react@18.2.0)
347 | '@react-aria/accordion': 3.0.0-alpha.20(react@18.2.0)
348 | '@react-aria/focus': 3.14.0(react@18.2.0)
349 | '@react-aria/interactions': 3.17.0(react@18.2.0)
350 | '@react-aria/utils': 3.19.0(react@18.2.0)
351 | '@react-stately/tree': 3.7.1(react@18.2.0)
352 | '@react-types/accordion': 3.0.0-alpha.15(react@18.2.0)
353 | '@react-types/shared': 3.19.0(react@18.2.0)
354 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
355 | react: 18.2.0
356 | transitivePeerDependencies:
357 | - react-dom
358 | - tailwindcss
359 | dev: false
360 |
361 | /@nextui-org/aria-utils@2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
362 | resolution: {integrity: sha512-pbfSGjQeGQoWMVHE9iCOPq2MSLPa2AIZwazdBO1QKyzfXGRCoJ6FM1zX+EvBrax/8+6DtZb9bZ6UzICr5ZLvVw==}
363 | peerDependencies:
364 | react: '>=18'
365 | dependencies:
366 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
367 | '@react-aria/utils': 3.19.0(react@18.2.0)
368 | '@react-stately/collections': 3.10.0(react@18.2.0)
369 | '@react-types/overlays': 3.8.1(react@18.2.0)
370 | '@react-types/shared': 3.19.0(react@18.2.0)
371 | react: 18.2.0
372 | transitivePeerDependencies:
373 | - react-dom
374 | - tailwindcss
375 | dev: false
376 |
377 | /@nextui-org/avatar@2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
378 | resolution: {integrity: sha512-+6vzA46yoS2RUKdafzz8114kCVBNg+h3UPKgz5oGWTDtcy3+CVYOq1Tbc0s0QLaDynDh8pSV2Gmb6FNWWzyNcg==}
379 | peerDependencies:
380 | react: '>=18'
381 | dependencies:
382 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
383 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
384 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
385 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
386 | '@nextui-org/use-image': 2.0.2(react@18.2.0)
387 | '@react-aria/focus': 3.14.0(react@18.2.0)
388 | '@react-aria/interactions': 3.17.0(react@18.2.0)
389 | '@react-aria/utils': 3.19.0(react@18.2.0)
390 | react: 18.2.0
391 | transitivePeerDependencies:
392 | - react-dom
393 | - tailwindcss
394 | dev: false
395 |
396 | /@nextui-org/badge@2.0.13(react@18.2.0)(tailwindcss@3.3.3):
397 | resolution: {integrity: sha512-GjlbGqbX4At4YpymxpZoxRvGohw+tftq9CEjUFUtkQfun9oYQUvW3nofNRIYDfYfgr1RKuOC9vXlvmWNXELyBA==}
398 | peerDependencies:
399 | react: '>=18'
400 | dependencies:
401 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
402 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
403 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
404 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
405 | react: 18.2.0
406 | transitivePeerDependencies:
407 | - tailwindcss
408 | dev: false
409 |
410 | /@nextui-org/button@2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
411 | resolution: {integrity: sha512-xanWcfjxSiDqFbIH3QMnlh6X9bOtHI5o3DzQh5/PgZQh1uHxuu4AF3T8zq3pBiHwRp7CHyX9ByB0JYnLX+dScA==}
412 | peerDependencies:
413 | react: '>=18'
414 | dependencies:
415 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
416 | '@nextui-org/ripple': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
417 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
418 | '@nextui-org/spinner': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
419 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
420 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
421 | '@nextui-org/use-aria-button': 2.0.3(react@18.2.0)
422 | '@react-aria/button': 3.8.1(react@18.2.0)
423 | '@react-aria/focus': 3.14.0(react@18.2.0)
424 | '@react-aria/interactions': 3.17.0(react@18.2.0)
425 | '@react-aria/utils': 3.19.0(react@18.2.0)
426 | '@react-types/button': 3.7.4(react@18.2.0)
427 | '@react-types/shared': 3.19.0(react@18.2.0)
428 | react: 18.2.0
429 | transitivePeerDependencies:
430 | - framer-motion
431 | - react-dom
432 | - tailwindcss
433 | dev: false
434 |
435 | /@nextui-org/card@2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
436 | resolution: {integrity: sha512-usb68c3ZPE4LbR9RtNM7LelJAciTYFvNuywv+rAH0cuDQvicaOc9wBFahqHwdBYVSMVikboJdCv9XTYpQ7R4UQ==}
437 | peerDependencies:
438 | react: '>=18'
439 | dependencies:
440 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
441 | '@nextui-org/ripple': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
442 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
443 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
444 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
445 | '@nextui-org/use-aria-button': 2.0.3(react@18.2.0)
446 | '@react-aria/button': 3.8.1(react@18.2.0)
447 | '@react-aria/focus': 3.14.0(react@18.2.0)
448 | '@react-aria/interactions': 3.17.0(react@18.2.0)
449 | '@react-aria/utils': 3.19.0(react@18.2.0)
450 | '@react-types/shared': 3.19.0(react@18.2.0)
451 | react: 18.2.0
452 | transitivePeerDependencies:
453 | - framer-motion
454 | - react-dom
455 | - tailwindcss
456 | dev: false
457 |
458 | /@nextui-org/checkbox@2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
459 | resolution: {integrity: sha512-26nN9tI1tPsSwSgUTyFw/j+YVLp6TceUxhKDWbE0eoGjopSokE6KrrbetX24kNAo4+YDcEAGnSIV+sp1NiF8AA==}
460 | peerDependencies:
461 | react: '>=18'
462 | dependencies:
463 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
464 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
465 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
466 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
467 | '@react-aria/checkbox': 3.10.0(react@18.2.0)
468 | '@react-aria/focus': 3.14.0(react@18.2.0)
469 | '@react-aria/interactions': 3.17.0(react@18.2.0)
470 | '@react-aria/utils': 3.19.0(react@18.2.0)
471 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
472 | '@react-stately/checkbox': 3.4.4(react@18.2.0)
473 | '@react-stately/toggle': 3.6.1(react@18.2.0)
474 | '@react-types/checkbox': 3.5.0(react@18.2.0)
475 | '@react-types/shared': 3.19.0(react@18.2.0)
476 | react: 18.2.0
477 | transitivePeerDependencies:
478 | - react-dom
479 | - tailwindcss
480 | dev: false
481 |
482 | /@nextui-org/chip@2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
483 | resolution: {integrity: sha512-F+ilv3VqTqS4V6VmMYY/TQNOziPTXx7Vfk4JFdnDiw4WfQ+cQRoT97YqY3/BRBGmlepEkvq202rge8+HbnIvCA==}
484 | peerDependencies:
485 | react: '>=18'
486 | dependencies:
487 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
488 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
489 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
490 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
491 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
492 | '@react-aria/focus': 3.14.0(react@18.2.0)
493 | '@react-aria/interactions': 3.17.0(react@18.2.0)
494 | '@react-aria/utils': 3.19.0(react@18.2.0)
495 | '@react-types/checkbox': 3.5.0(react@18.2.0)
496 | react: 18.2.0
497 | transitivePeerDependencies:
498 | - react-dom
499 | - tailwindcss
500 | dev: false
501 |
502 | /@nextui-org/code@2.0.13(react@18.2.0)(tailwindcss@3.3.3):
503 | resolution: {integrity: sha512-INYSZF9V9BsGO1xwI+lTEXpYCLFhaD9h4/Dv5zJIp1kjeisYrLUlT4YE3XfyYOJEYm9Hcmg8D6hCp3waxZi74w==}
504 | peerDependencies:
505 | react: '>=18'
506 | dependencies:
507 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
508 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
509 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
510 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
511 | react: 18.2.0
512 | transitivePeerDependencies:
513 | - tailwindcss
514 | dev: false
515 |
516 | /@nextui-org/divider@2.0.14(react@18.2.0)(tailwindcss@3.3.3):
517 | resolution: {integrity: sha512-iBK+8YEH/gQ7jbYi7Zo+l5PoRYRhhaaaXYT67iT4GyyL/Q/Hakp1DnbG6NL54KkqM725heeeLbhFGfUx7cGL4Q==}
518 | peerDependencies:
519 | react: '>=18'
520 | dependencies:
521 | '@nextui-org/react-rsc-utils': 2.0.7
522 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
523 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
524 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
525 | '@react-types/shared': 3.19.0(react@18.2.0)
526 | react: 18.2.0
527 | transitivePeerDependencies:
528 | - tailwindcss
529 | dev: false
530 |
531 | /@nextui-org/dropdown@2.1.4(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
532 | resolution: {integrity: sha512-OfT7DkEqGLYO/O3C0AYfp+Jz5tY2vf3JATuo8GrZ1bEeBpRADg+9WNryc3AggC80D2wUqw+6mhDJaWI69WahHQ==}
533 | peerDependencies:
534 | framer-motion: '>=4.0.0'
535 | react: '>=18'
536 | dependencies:
537 | '@nextui-org/menu': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
538 | '@nextui-org/popover': 2.1.3(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
539 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
540 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
541 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
542 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
543 | '@react-aria/focus': 3.14.0(react@18.2.0)
544 | '@react-aria/menu': 3.10.1(react-dom@18.2.0)(react@18.2.0)
545 | '@react-aria/utils': 3.19.0(react@18.2.0)
546 | '@react-stately/menu': 3.5.4(react@18.2.0)
547 | '@react-types/menu': 3.9.3(react@18.2.0)
548 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
549 | react: 18.2.0
550 | transitivePeerDependencies:
551 | - '@types/react'
552 | - react-dom
553 | - tailwindcss
554 | dev: false
555 |
556 | /@nextui-org/framer-transitions@2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
557 | resolution: {integrity: sha512-lf4u6cQZyCgxwX2HLYqos3czbt3174W6cyptxDSHW1VxZYlRhm4II31awR9ZGxaU0d4I2v5PJxNqj70oSNz2rg==}
558 | peerDependencies:
559 | framer-motion: '>=4.0.0'
560 | react: '>=18'
561 | dependencies:
562 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
563 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
564 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
565 | react: 18.2.0
566 | transitivePeerDependencies:
567 | - react-dom
568 | - tailwindcss
569 | dev: false
570 |
571 | /@nextui-org/image@2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
572 | resolution: {integrity: sha512-1ydf2og7Pp+UUp/tiSsD9a5RMxsVo3vv+eh0DlfLmA0YPZkEJWjSnsCtUYrAWIBnbNrZOrnPQI6adoQAaWzY3g==}
573 | peerDependencies:
574 | react: '>=18'
575 | dependencies:
576 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
577 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
578 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
579 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
580 | '@nextui-org/use-image': 2.0.2(react@18.2.0)
581 | react: 18.2.0
582 | transitivePeerDependencies:
583 | - react-dom
584 | - tailwindcss
585 | dev: false
586 |
587 | /@nextui-org/input@2.1.3(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
588 | resolution: {integrity: sha512-bBPGP/q9RbOwqFozHWSIwrABPRSXnY7FBAWe0zsb8Wsv1tVtmDfsdzGE14O2ex9saE/0NE3iVlfK6vQh3J2bYQ==}
589 | peerDependencies:
590 | react: '>=18'
591 | dependencies:
592 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
593 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
594 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
595 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
596 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
597 | '@react-aria/focus': 3.14.0(react@18.2.0)
598 | '@react-aria/interactions': 3.17.0(react@18.2.0)
599 | '@react-aria/textfield': 3.11.0(react@18.2.0)
600 | '@react-aria/utils': 3.19.0(react@18.2.0)
601 | '@react-stately/utils': 3.7.0(react@18.2.0)
602 | '@react-types/shared': 3.19.0(react@18.2.0)
603 | '@react-types/textfield': 3.7.3(react@18.2.0)
604 | react: 18.2.0
605 | react-textarea-autosize: 8.5.3(@types/react@18.2.21)(react@18.2.0)
606 | transitivePeerDependencies:
607 | - '@types/react'
608 | - react-dom
609 | - tailwindcss
610 | dev: false
611 |
612 | /@nextui-org/kbd@2.0.14(react@18.2.0)(tailwindcss@3.3.3):
613 | resolution: {integrity: sha512-IyOrw7d9jTyCboF4pKXf4oQ8Hiip5G4GSHTV4YoFerSD2xEqotOCab6MMW062vfi4ZwBd1r5SEAI5vdGEJ2Vyg==}
614 | peerDependencies:
615 | react: '>=18'
616 | dependencies:
617 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
618 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
619 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
620 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
621 | '@react-aria/utils': 3.19.0(react@18.2.0)
622 | react: 18.2.0
623 | transitivePeerDependencies:
624 | - tailwindcss
625 | dev: false
626 |
627 | /@nextui-org/link@2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
628 | resolution: {integrity: sha512-tnEQ6NWTXIzbD70YIcXq+sTIegXTpKx1JoJzM/V71s1ObdrUc0r7RwBq7tj8UbNAzCel/ppxsJga2rlDSrDCIQ==}
629 | peerDependencies:
630 | react: '>=18'
631 | dependencies:
632 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
633 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
634 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
635 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
636 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
637 | '@nextui-org/use-aria-link': 2.0.12(react@18.2.0)
638 | '@react-aria/focus': 3.14.0(react@18.2.0)
639 | '@react-aria/link': 3.5.3(react@18.2.0)
640 | '@react-aria/utils': 3.19.0(react@18.2.0)
641 | '@react-types/link': 3.4.4(react@18.2.0)
642 | react: 18.2.0
643 | transitivePeerDependencies:
644 | - react-dom
645 | - tailwindcss
646 | dev: false
647 |
648 | /@nextui-org/listbox@2.1.4(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
649 | resolution: {integrity: sha512-6QTBDwLqTEe6gPtlYExldQMDOyfqOY0ypbWlAPZqpuzTLEbzTKQMAC8Tl8cK2nm5oPq253k9hj5sESWVRRiErA==}
650 | peerDependencies:
651 | react: '>=18'
652 | dependencies:
653 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
654 | '@nextui-org/divider': 2.0.14(react@18.2.0)(tailwindcss@3.3.3)
655 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
656 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
657 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
658 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
659 | '@nextui-org/use-is-mobile': 2.0.3(react@18.2.0)
660 | '@react-aria/focus': 3.14.0(react@18.2.0)
661 | '@react-aria/interactions': 3.17.0(react@18.2.0)
662 | '@react-aria/listbox': 3.10.1(react@18.2.0)
663 | '@react-aria/utils': 3.19.0(react@18.2.0)
664 | '@react-stately/list': 3.9.1(react@18.2.0)
665 | '@react-types/menu': 3.9.3(react@18.2.0)
666 | '@react-types/shared': 3.19.0(react@18.2.0)
667 | react: 18.2.0
668 | transitivePeerDependencies:
669 | - react-dom
670 | - tailwindcss
671 | dev: false
672 |
673 | /@nextui-org/menu@2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
674 | resolution: {integrity: sha512-6Osn2fut3pKcLRmzXSLbhOwNLYAUHqP8gXnA3umRm+Uafzfs/qTRgnHI8bqmyHhN8ZLRJUSQtVpR0RGxfPZG2Q==}
675 | peerDependencies:
676 | react: '>=18'
677 | dependencies:
678 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
679 | '@nextui-org/divider': 2.0.14(react@18.2.0)(tailwindcss@3.3.3)
680 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
681 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
682 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
683 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
684 | '@nextui-org/use-is-mobile': 2.0.3(react@18.2.0)
685 | '@react-aria/focus': 3.14.0(react@18.2.0)
686 | '@react-aria/interactions': 3.17.0(react@18.2.0)
687 | '@react-aria/menu': 3.10.1(react-dom@18.2.0)(react@18.2.0)
688 | '@react-aria/utils': 3.19.0(react@18.2.0)
689 | '@react-stately/menu': 3.5.4(react@18.2.0)
690 | '@react-stately/tree': 3.7.1(react@18.2.0)
691 | '@react-types/menu': 3.9.3(react@18.2.0)
692 | '@react-types/shared': 3.19.0(react@18.2.0)
693 | react: 18.2.0
694 | transitivePeerDependencies:
695 | - react-dom
696 | - tailwindcss
697 | dev: false
698 |
699 | /@nextui-org/modal@2.0.17(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
700 | resolution: {integrity: sha512-KGVpGDsDCszAqry1FxKg8JLX7HnKSKSDosL0ADNEYN7/paFaG8dlBGGxMR0d//hEWJqyjHMzjA7YFbvm3JcCOg==}
701 | peerDependencies:
702 | framer-motion: '>=4.0.0'
703 | react: '>=18'
704 | dependencies:
705 | '@nextui-org/framer-transitions': 2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
706 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
707 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
708 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
709 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
710 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
711 | '@nextui-org/use-aria-button': 2.0.3(react@18.2.0)
712 | '@nextui-org/use-aria-modal-overlay': 2.0.3(react-dom@18.2.0)(react@18.2.0)
713 | '@nextui-org/use-disclosure': 2.0.3(react@18.2.0)
714 | '@react-aria/dialog': 3.5.4(react-dom@18.2.0)(react@18.2.0)
715 | '@react-aria/focus': 3.14.0(react@18.2.0)
716 | '@react-aria/interactions': 3.17.0(react@18.2.0)
717 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
718 | '@react-aria/utils': 3.19.0(react@18.2.0)
719 | '@react-stately/overlays': 3.6.1(react@18.2.0)
720 | '@react-types/overlays': 3.8.1(react@18.2.0)
721 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
722 | react: 18.2.0
723 | react-remove-scroll: 2.5.6(@types/react@18.2.21)(react@18.2.0)
724 | transitivePeerDependencies:
725 | - '@types/react'
726 | - react-dom
727 | - tailwindcss
728 | dev: false
729 |
730 | /@nextui-org/navbar@2.0.16(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
731 | resolution: {integrity: sha512-vqZHekGQkIUYHYGww8krlVwSkmjYfYO3TOsnckcI0yB4id5ejmVE0tbglO0O1iD2RHsnC8baKXl9uNI96B65HQ==}
732 | peerDependencies:
733 | framer-motion: '>=4.0.0'
734 | react: '>=18'
735 | dependencies:
736 | '@nextui-org/framer-transitions': 2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
737 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
738 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
739 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
740 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
741 | '@nextui-org/use-aria-toggle-button': 2.0.3(react@18.2.0)
742 | '@nextui-org/use-scroll-position': 2.0.2(react@18.2.0)
743 | '@react-aria/focus': 3.14.0(react@18.2.0)
744 | '@react-aria/interactions': 3.17.0(react@18.2.0)
745 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
746 | '@react-aria/utils': 3.19.0(react@18.2.0)
747 | '@react-stately/toggle': 3.6.1(react@18.2.0)
748 | '@react-stately/utils': 3.7.0(react@18.2.0)
749 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
750 | react: 18.2.0
751 | react-remove-scroll: 2.5.6(@types/react@18.2.21)(react@18.2.0)
752 | transitivePeerDependencies:
753 | - '@types/react'
754 | - react-dom
755 | - tailwindcss
756 | dev: false
757 |
758 | /@nextui-org/pagination@2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
759 | resolution: {integrity: sha512-hDmA25DG0AitgomJ0gOvC9wCTqcrRwtgeGWnHSoLNjQiBkTrlvuO3Gl+jUmoPC/XrJvF2zbgXTh7lalEd0+Dyg==}
760 | peerDependencies:
761 | react: '>=18'
762 | dependencies:
763 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
764 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
765 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
766 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
767 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
768 | '@nextui-org/use-pagination': 2.0.2(react@18.2.0)
769 | '@react-aria/focus': 3.14.0(react@18.2.0)
770 | '@react-aria/interactions': 3.17.0(react@18.2.0)
771 | '@react-aria/utils': 3.19.0(react@18.2.0)
772 | react: 18.2.0
773 | scroll-into-view-if-needed: 3.0.10
774 | transitivePeerDependencies:
775 | - react-dom
776 | - tailwindcss
777 | dev: false
778 |
779 | /@nextui-org/popover@2.1.3(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
780 | resolution: {integrity: sha512-oy3ahnbcdUsy+hT62Hq9wXh9ySJivjscrBz8Aq3ax4nAJ5XLRiuDyn5NF7/FSkbVpB/L4rk52r1mw/752mZlVw==}
781 | peerDependencies:
782 | framer-motion: '>=4.0.0'
783 | react: '>=18'
784 | dependencies:
785 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
786 | '@nextui-org/button': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
787 | '@nextui-org/framer-transitions': 2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
788 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
789 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
790 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
791 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
792 | '@nextui-org/use-aria-button': 2.0.3(react@18.2.0)
793 | '@react-aria/dialog': 3.5.4(react-dom@18.2.0)(react@18.2.0)
794 | '@react-aria/focus': 3.14.0(react@18.2.0)
795 | '@react-aria/interactions': 3.17.0(react@18.2.0)
796 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
797 | '@react-aria/utils': 3.19.0(react@18.2.0)
798 | '@react-stately/overlays': 3.6.1(react@18.2.0)
799 | '@react-types/button': 3.7.4(react@18.2.0)
800 | '@react-types/overlays': 3.8.1(react@18.2.0)
801 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
802 | react: 18.2.0
803 | react-remove-scroll: 2.5.6(@types/react@18.2.21)(react@18.2.0)
804 | transitivePeerDependencies:
805 | - '@types/react'
806 | - react-dom
807 | - tailwindcss
808 | dev: false
809 |
810 | /@nextui-org/progress@2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
811 | resolution: {integrity: sha512-PDBRbAvzotrfYgh5IGCayAjN05ZVc49V5h5XOPhVrxe1bi6Jt/bqejdnDTNa9nbtIvzP8MAARtKPdaMlS7jdGQ==}
812 | peerDependencies:
813 | react: '>=18'
814 | dependencies:
815 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
816 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
817 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
818 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
819 | '@nextui-org/use-is-mounted': 2.0.2(react-dom@18.2.0)(react@18.2.0)
820 | '@react-aria/i18n': 3.8.1(react@18.2.0)
821 | '@react-aria/progress': 3.4.4(react@18.2.0)
822 | '@react-aria/utils': 3.19.0(react@18.2.0)
823 | '@react-types/progress': 3.4.2(react@18.2.0)
824 | react: 18.2.0
825 | transitivePeerDependencies:
826 | - react-dom
827 | - tailwindcss
828 | dev: false
829 |
830 | /@nextui-org/radio@2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
831 | resolution: {integrity: sha512-ZDeHyKms3HXV2uZzgtG3HBAWyM8+iXoKM3FJ7GHgb/icZeEkKkl9Dsl24jFTSuTppzNXjKdE0YSqME6yV4FSCg==}
832 | peerDependencies:
833 | react: '>=18'
834 | dependencies:
835 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
836 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
837 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
838 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
839 | '@react-aria/focus': 3.14.0(react@18.2.0)
840 | '@react-aria/interactions': 3.17.0(react@18.2.0)
841 | '@react-aria/radio': 3.7.0(react@18.2.0)
842 | '@react-aria/utils': 3.19.0(react@18.2.0)
843 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
844 | '@react-stately/radio': 3.8.3(react@18.2.0)
845 | '@react-types/radio': 3.5.0(react@18.2.0)
846 | '@react-types/shared': 3.19.0(react@18.2.0)
847 | react: 18.2.0
848 | transitivePeerDependencies:
849 | - react-dom
850 | - tailwindcss
851 | dev: false
852 |
853 | /@nextui-org/react-rsc-utils@2.0.7:
854 | resolution: {integrity: sha512-BfbrN0/kh7qHoZYAh0bkV1w04Wngm+7K+soTZR4C3eSIxMMeu179CDELW+VCIBwdat4iSQaaJkHZVm8brtueNA==}
855 | dev: false
856 |
857 | /@nextui-org/react-utils@2.0.7(react@18.2.0):
858 | resolution: {integrity: sha512-dN4vSf3h4BVIN6CVqaSCn2OUyDmGVWORgOsfA1k0z/r1XBwuxlfQIEnj8GTwbltnGkFrgj7PJ2RsuVzUs8Vt3g==}
859 | peerDependencies:
860 | react: '>=18'
861 | dependencies:
862 | '@nextui-org/react-rsc-utils': 2.0.7
863 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
864 | react: 18.2.0
865 | dev: false
866 |
867 | /@nextui-org/react@2.1.7(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
868 | resolution: {integrity: sha512-2q5qIBOD03orI2TDpcdOoqJwn3kgajfQZJS6KVTI9wYFVk/M2Bnt21fwBGi+QJjzHUtQ7ZmmkMaBbqpYmC0h+g==}
869 | peerDependencies:
870 | framer-motion: '>=4.0.0'
871 | react: '>=18'
872 | dependencies:
873 | '@nextui-org/accordion': 2.0.17(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
874 | '@nextui-org/avatar': 2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
875 | '@nextui-org/badge': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
876 | '@nextui-org/button': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
877 | '@nextui-org/card': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
878 | '@nextui-org/checkbox': 2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
879 | '@nextui-org/chip': 2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
880 | '@nextui-org/code': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
881 | '@nextui-org/divider': 2.0.14(react@18.2.0)(tailwindcss@3.3.3)
882 | '@nextui-org/dropdown': 2.1.4(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
883 | '@nextui-org/image': 2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
884 | '@nextui-org/input': 2.1.3(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
885 | '@nextui-org/kbd': 2.0.14(react@18.2.0)(tailwindcss@3.3.3)
886 | '@nextui-org/link': 2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
887 | '@nextui-org/listbox': 2.1.4(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
888 | '@nextui-org/menu': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
889 | '@nextui-org/modal': 2.0.17(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
890 | '@nextui-org/navbar': 2.0.16(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
891 | '@nextui-org/pagination': 2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
892 | '@nextui-org/popover': 2.1.3(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
893 | '@nextui-org/progress': 2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
894 | '@nextui-org/radio': 2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
895 | '@nextui-org/scroll-shadow': 2.1.3(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
896 | '@nextui-org/select': 2.1.5(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
897 | '@nextui-org/skeleton': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
898 | '@nextui-org/snippet': 2.0.19(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
899 | '@nextui-org/spacer': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
900 | '@nextui-org/spinner': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
901 | '@nextui-org/switch': 2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
902 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
903 | '@nextui-org/table': 2.0.17(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
904 | '@nextui-org/tabs': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
905 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
906 | '@nextui-org/tooltip': 2.0.18(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
907 | '@nextui-org/user': 2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
908 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
909 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
910 | react: 18.2.0
911 | transitivePeerDependencies:
912 | - '@types/react'
913 | - react-dom
914 | - tailwindcss
915 | dev: false
916 |
917 | /@nextui-org/ripple@2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
918 | resolution: {integrity: sha512-Zp2Zp6s9QuehbDlykKzfySwlglWAN1ZJl9za9IHHDzWWmalj+tS1fmvTepfnXajoxJOyQxtgbQuIsf5UONgkBA==}
919 | peerDependencies:
920 | framer-motion: '>=4.0.0'
921 | react: '>=18'
922 | dependencies:
923 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
924 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
925 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
926 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
927 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
928 | react: 18.2.0
929 | transitivePeerDependencies:
930 | - react-dom
931 | - tailwindcss
932 | dev: false
933 |
934 | /@nextui-org/scroll-shadow@2.1.3(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
935 | resolution: {integrity: sha512-ppd5PTWZtBXuNK66FN8nffHhXp1jLGwkwoDpebGwDhcrlhvmQk+DUuS0bTu+pWUqx6wIuA27bACCNkWg4och4g==}
936 | peerDependencies:
937 | react: '>=18'
938 | dependencies:
939 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
940 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
941 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
942 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
943 | '@nextui-org/use-data-scroll-overflow': 2.1.0(react@18.2.0)
944 | react: 18.2.0
945 | transitivePeerDependencies:
946 | - react-dom
947 | - tailwindcss
948 | dev: false
949 |
950 | /@nextui-org/select@2.1.5(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
951 | resolution: {integrity: sha512-UYpl07UdHK5kGuOMfswkqeeFwWTlV61LQaarEVYWMsHrSmRFpQ+D+xnp7mIvqJ3iuencDokckqOiGDWhdTqIfA==}
952 | peerDependencies:
953 | framer-motion: '>=4.0.0'
954 | react: '>=18'
955 | dependencies:
956 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
957 | '@nextui-org/listbox': 2.1.4(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
958 | '@nextui-org/popover': 2.1.3(@types/react@18.2.21)(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
959 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
960 | '@nextui-org/scroll-shadow': 2.1.3(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
961 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
962 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
963 | '@nextui-org/spinner': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
964 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
965 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
966 | '@nextui-org/use-aria-button': 2.0.3(react@18.2.0)
967 | '@nextui-org/use-aria-multiselect': 2.1.0(react-dom@18.2.0)(react@18.2.0)
968 | '@react-aria/focus': 3.14.0(react@18.2.0)
969 | '@react-aria/interactions': 3.17.0(react@18.2.0)
970 | '@react-aria/utils': 3.19.0(react@18.2.0)
971 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
972 | '@react-types/shared': 3.19.0(react@18.2.0)
973 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
974 | react: 18.2.0
975 | transitivePeerDependencies:
976 | - '@types/react'
977 | - react-dom
978 | - tailwindcss
979 | dev: false
980 |
981 | /@nextui-org/shared-icons@2.0.3(react@18.2.0):
982 | resolution: {integrity: sha512-2ODlzPWW+iYM7Uf7XDkz7GlJ+dzsFo6cBHH9hbbZEOx2v7/wB8x3VvrZcQ4SASewSb18a/wzxP8MJFnIUCOCrQ==}
983 | peerDependencies:
984 | react: '>=18'
985 | dependencies:
986 | react: 18.2.0
987 | dev: false
988 |
989 | /@nextui-org/shared-utils@2.0.2(react@18.2.0):
990 | resolution: {integrity: sha512-tqWVoJtxYbd/hd/laHE85GaXP+b3HeE1tXYjnObbwM+JIh4uu2/Do7Av7mzzyXwS7sZvyHxhi3zW12oank2ykA==}
991 | peerDependencies:
992 | react: '>=18'
993 | dependencies:
994 | react: 18.2.0
995 | dev: false
996 |
997 | /@nextui-org/skeleton@2.0.13(react@18.2.0)(tailwindcss@3.3.3):
998 | resolution: {integrity: sha512-U2e2iKgmDFSWvFqA6+L72L3Xt0l6ZziI7gId+dS5sC5Zi1OJer+XZF0Cj0z7oOTvj6UaSqTozv4LQ+Hg6+PBXQ==}
999 | peerDependencies:
1000 | react: '>=18'
1001 | dependencies:
1002 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1003 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1004 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
1005 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1006 | react: 18.2.0
1007 | transitivePeerDependencies:
1008 | - tailwindcss
1009 | dev: false
1010 |
1011 | /@nextui-org/snippet@2.0.19(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1012 | resolution: {integrity: sha512-cjg8KdRuVEpiesuhLS9MbSGIykJB5x3Kq3CFzu7dbqhyhzYahNFJdod5fIr4isjlAtZc/1iz7vybekR/snuzdA==}
1013 | peerDependencies:
1014 | framer-motion: '>=4.0.0'
1015 | react: '>=18'
1016 | dependencies:
1017 | '@nextui-org/button': 2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1018 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1019 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
1020 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1021 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1022 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1023 | '@nextui-org/tooltip': 2.0.18(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1024 | '@nextui-org/use-clipboard': 2.0.2(react@18.2.0)
1025 | '@react-aria/focus': 3.14.0(react@18.2.0)
1026 | '@react-aria/utils': 3.19.0(react@18.2.0)
1027 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
1028 | react: 18.2.0
1029 | transitivePeerDependencies:
1030 | - react-dom
1031 | - tailwindcss
1032 | dev: false
1033 |
1034 | /@nextui-org/spacer@2.0.13(react@18.2.0)(tailwindcss@3.3.3):
1035 | resolution: {integrity: sha512-wRpPm7UPHvzBsgq25qVm3POrs7aHAdH0KegAvyjwNW5vMSLG48D1jhBt80yeBqt9rYxBrfoGl4OApHC3OXDDqA==}
1036 | peerDependencies:
1037 | react: '>=18'
1038 | dependencies:
1039 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1040 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1041 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
1042 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1043 | react: 18.2.0
1044 | transitivePeerDependencies:
1045 | - tailwindcss
1046 | dev: false
1047 |
1048 | /@nextui-org/spinner@2.0.13(react@18.2.0)(tailwindcss@3.3.3):
1049 | resolution: {integrity: sha512-pXFDu1/S0bwKyMiV4wJ4YZMhmLvg/p8KjYTP999E2Zlr0zxxaCRJ95GMl6kKxX73JD0YENJwE8n07jGI1lxs2Q==}
1050 | peerDependencies:
1051 | react: '>=18'
1052 | dependencies:
1053 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1054 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1055 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
1056 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1057 | react: 18.2.0
1058 | transitivePeerDependencies:
1059 | - tailwindcss
1060 | dev: false
1061 |
1062 | /@nextui-org/switch@2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1063 | resolution: {integrity: sha512-29AC4Qc8skmzmtKPDQuS46/s7wpAGGhftl3ruJLfHBmR69ZyHMUNjwDEpyn9tiGOlINP1JWDGvF5/H69bnLdbA==}
1064 | peerDependencies:
1065 | react: '>=18'
1066 | dependencies:
1067 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1068 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1069 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1070 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1071 | '@react-aria/focus': 3.14.0(react@18.2.0)
1072 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1073 | '@react-aria/switch': 3.5.3(react@18.2.0)
1074 | '@react-aria/utils': 3.19.0(react@18.2.0)
1075 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
1076 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1077 | '@react-types/shared': 3.19.0(react@18.2.0)
1078 | react: 18.2.0
1079 | transitivePeerDependencies:
1080 | - react-dom
1081 | - tailwindcss
1082 | dev: false
1083 |
1084 | /@nextui-org/system-rsc@2.0.3(react@18.2.0)(tailwindcss@3.3.3):
1085 | resolution: {integrity: sha512-CfWl1JkHPtgSvq/Szz4oWQAg7b6L7wxxHEFzKcvNdhbX61IfE5PvnQMl5z8T9UTSIIwFv4P0ntP5kpKE895w2w==}
1086 | peerDependencies:
1087 | react: '>=18'
1088 | dependencies:
1089 | clsx: 1.2.1
1090 | react: 18.2.0
1091 | tailwind-variants: 0.1.13(tailwindcss@3.3.3)
1092 | transitivePeerDependencies:
1093 | - tailwindcss
1094 | dev: false
1095 |
1096 | /@nextui-org/system@2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1097 | resolution: {integrity: sha512-ke02e60ctxnXsxe77TRN6pWVY89aCCi0AXwyQIbgT9lfiVgUGWJa+f6am46ItCzeSkvIQ7j3XJBz717zu+GSRg==}
1098 | peerDependencies:
1099 | react: '>=18'
1100 | dependencies:
1101 | '@nextui-org/system-rsc': 2.0.3(react@18.2.0)(tailwindcss@3.3.3)
1102 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1103 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
1104 | react: 18.2.0
1105 | transitivePeerDependencies:
1106 | - react-dom
1107 | - tailwindcss
1108 | dev: false
1109 |
1110 | /@nextui-org/table@2.0.17(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1111 | resolution: {integrity: sha512-TfhLUsSfkh0eI41rG7InZnvktd05HwL0j0MyR/eDM3U274yRqIrWpQC8eKaXSsHrKsa5eTMwSVDhS+B5QdThfw==}
1112 | peerDependencies:
1113 | react: '>=18'
1114 | dependencies:
1115 | '@nextui-org/checkbox': 2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1116 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1117 | '@nextui-org/shared-icons': 2.0.3(react@18.2.0)
1118 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1119 | '@nextui-org/spacer': 2.0.13(react@18.2.0)(tailwindcss@3.3.3)
1120 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1121 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1122 | '@react-aria/focus': 3.14.0(react@18.2.0)
1123 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1124 | '@react-aria/table': 3.11.0(react-dom@18.2.0)(react@18.2.0)
1125 | '@react-aria/utils': 3.19.0(react@18.2.0)
1126 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
1127 | '@react-stately/table': 3.11.0(react@18.2.0)
1128 | '@react-stately/virtualizer': 3.6.1(react@18.2.0)
1129 | '@react-types/grid': 3.2.0(react@18.2.0)
1130 | '@react-types/table': 3.8.0(react@18.2.0)
1131 | react: 18.2.0
1132 | transitivePeerDependencies:
1133 | - react-dom
1134 | - tailwindcss
1135 | dev: false
1136 |
1137 | /@nextui-org/tabs@2.0.15(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1138 | resolution: {integrity: sha512-9yRGB8bML8ECsU9dbdehV8D0Hxk6hAGtQpeZmz7l0JxRl77aEwDeqNlw+xAOlBXneUhhu7FgbUIZeB8VqbElEg==}
1139 | peerDependencies:
1140 | framer-motion: '>=4.0.0'
1141 | react: '>=18'
1142 | dependencies:
1143 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1144 | '@nextui-org/framer-transitions': 2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1145 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1146 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1147 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1148 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1149 | '@nextui-org/use-is-mounted': 2.0.2(react-dom@18.2.0)(react@18.2.0)
1150 | '@nextui-org/use-update-effect': 2.0.2(react@18.2.0)
1151 | '@react-aria/focus': 3.14.0(react@18.2.0)
1152 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1153 | '@react-aria/tabs': 3.6.2(react@18.2.0)
1154 | '@react-aria/utils': 3.19.0(react@18.2.0)
1155 | '@react-stately/tabs': 3.5.1(react@18.2.0)
1156 | '@react-types/shared': 3.19.0(react@18.2.0)
1157 | '@react-types/tabs': 3.3.1(react@18.2.0)
1158 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
1159 | react: 18.2.0
1160 | scroll-into-view-if-needed: 3.0.10
1161 | transitivePeerDependencies:
1162 | - react-dom
1163 | - tailwindcss
1164 | dev: false
1165 |
1166 | /@nextui-org/theme@2.1.3(tailwindcss@3.3.3):
1167 | resolution: {integrity: sha512-VE+b+c6N3JrVMRty5ZX5Bg3Vg47CELpTy1KSMR4WncN6lS4qpdHqQ3+4riD9825NF4ndsXBOXt9HQwZEOenc2g==}
1168 | peerDependencies:
1169 | tailwindcss: '*'
1170 | dependencies:
1171 | '@types/color': 3.0.3
1172 | '@types/flat': 5.0.2
1173 | '@types/lodash.foreach': 4.5.7
1174 | '@types/lodash.get': 4.4.7
1175 | '@types/lodash.kebabcase': 4.1.7
1176 | '@types/lodash.mapkeys': 4.6.7
1177 | '@types/lodash.omit': 4.5.7
1178 | color: 4.2.3
1179 | color2k: 2.0.2
1180 | deepmerge: 4.3.1
1181 | flat: 5.0.2
1182 | lodash.foreach: 4.5.0
1183 | lodash.get: 4.4.2
1184 | lodash.kebabcase: 4.1.1
1185 | lodash.mapkeys: 4.6.0
1186 | lodash.omit: 4.5.0
1187 | tailwind-variants: 0.1.13(tailwindcss@3.3.3)
1188 | tailwindcss: 3.3.3
1189 | dev: false
1190 |
1191 | /@nextui-org/tooltip@2.0.18(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1192 | resolution: {integrity: sha512-5iL5I7dnrS9+DPQEigBY8f1Kf+SCpOAS4RtaOHMtkJXSqbIofu6pMKnHVLUuhTyaFuhCp+BfwA64m7MpGJn7Dg==}
1193 | peerDependencies:
1194 | framer-motion: '>=4.0.0'
1195 | react: '>=18'
1196 | dependencies:
1197 | '@nextui-org/aria-utils': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1198 | '@nextui-org/framer-transitions': 2.0.5(framer-motion@10.16.1)(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1199 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1200 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1201 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1202 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1203 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1204 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
1205 | '@react-aria/tooltip': 3.6.1(react@18.2.0)
1206 | '@react-aria/utils': 3.19.0(react@18.2.0)
1207 | '@react-stately/tooltip': 3.4.3(react@18.2.0)
1208 | '@react-types/overlays': 3.8.1(react@18.2.0)
1209 | '@react-types/tooltip': 3.4.3(react@18.2.0)
1210 | framer-motion: 10.16.1(react-dom@18.2.0)(react@18.2.0)
1211 | react: 18.2.0
1212 | transitivePeerDependencies:
1213 | - react-dom
1214 | - tailwindcss
1215 | dev: false
1216 |
1217 | /@nextui-org/use-aria-accordion-item@2.0.3(react@18.2.0):
1218 | resolution: {integrity: sha512-nHJypFAwbeKn86KhfOXnf92D89CD5IETuq7RbWm0EC++NajPxRDjJl/zgPef7UWIvq28UC4TRVC7LAknFH7L/Q==}
1219 | peerDependencies:
1220 | react: '>=18'
1221 | dependencies:
1222 | '@react-aria/button': 3.8.1(react@18.2.0)
1223 | '@react-aria/focus': 3.14.0(react@18.2.0)
1224 | '@react-stately/tree': 3.7.1(react@18.2.0)
1225 | '@react-types/shared': 3.19.0(react@18.2.0)
1226 | react: 18.2.0
1227 | dev: false
1228 |
1229 | /@nextui-org/use-aria-button@2.0.3(react@18.2.0):
1230 | resolution: {integrity: sha512-JdxOk12vXO/AVLwJ0Mnr9QTugLDnjOPfDoV/AtQVGxgU/7VAuyGVt2Gt5eXQM6eOm36UBia59eXlWzF/9Judjw==}
1231 | peerDependencies:
1232 | react: '>=18'
1233 | dependencies:
1234 | '@react-aria/focus': 3.14.0(react@18.2.0)
1235 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1236 | '@react-aria/utils': 3.19.0(react@18.2.0)
1237 | '@react-types/button': 3.7.4(react@18.2.0)
1238 | '@react-types/shared': 3.19.0(react@18.2.0)
1239 | react: 18.2.0
1240 | dev: false
1241 |
1242 | /@nextui-org/use-aria-link@2.0.12(react@18.2.0):
1243 | resolution: {integrity: sha512-Q+ztjV19GK9lT9XZ440pdSKhOY+Hc4cKK4CDsZGYgh2WqUAjy1qI2fiQZjQ2pQNda49Gl+QvZzTglX14wO2xAg==}
1244 | peerDependencies:
1245 | react: '>=18'
1246 | dependencies:
1247 | '@react-aria/focus': 3.14.0(react@18.2.0)
1248 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1249 | '@react-aria/utils': 3.19.0(react@18.2.0)
1250 | '@react-types/link': 3.4.4(react@18.2.0)
1251 | '@react-types/shared': 3.19.0(react@18.2.0)
1252 | react: 18.2.0
1253 | dev: false
1254 |
1255 | /@nextui-org/use-aria-modal-overlay@2.0.3(react-dom@18.2.0)(react@18.2.0):
1256 | resolution: {integrity: sha512-ajh7bEV+OaQ7s6DWC3rBwbkr8eTi2/ykf4mNc/682Y5cuR2ZPrBGg00HStVcNDZOdwUBArVhTWQaQ8e+0lwBww==}
1257 | peerDependencies:
1258 | react: '>=18'
1259 | dependencies:
1260 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
1261 | '@react-aria/utils': 3.19.0(react@18.2.0)
1262 | '@react-stately/overlays': 3.6.1(react@18.2.0)
1263 | '@react-types/shared': 3.19.0(react@18.2.0)
1264 | react: 18.2.0
1265 | transitivePeerDependencies:
1266 | - react-dom
1267 | dev: false
1268 |
1269 | /@nextui-org/use-aria-multiselect@2.1.0(react-dom@18.2.0)(react@18.2.0):
1270 | resolution: {integrity: sha512-dHMTbhFd+/D9h7rruDQgtQMZ95UKKfImtczu4ji0xnTu9ZXVVanM2ZEhU/GqpRdjuKS9xNq3BKZ6GnPlBcwMdA==}
1271 | peerDependencies:
1272 | react: '>=18'
1273 | dependencies:
1274 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1275 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1276 | '@react-aria/label': 3.6.1(react@18.2.0)
1277 | '@react-aria/listbox': 3.10.1(react@18.2.0)
1278 | '@react-aria/menu': 3.10.1(react-dom@18.2.0)(react@18.2.0)
1279 | '@react-aria/selection': 3.16.1(react@18.2.0)
1280 | '@react-aria/utils': 3.19.0(react@18.2.0)
1281 | '@react-stately/list': 3.9.1(react@18.2.0)
1282 | '@react-stately/menu': 3.5.4(react@18.2.0)
1283 | '@react-types/button': 3.7.4(react@18.2.0)
1284 | '@react-types/overlays': 3.8.1(react@18.2.0)
1285 | '@react-types/select': 3.8.2(react@18.2.0)
1286 | '@react-types/shared': 3.19.0(react@18.2.0)
1287 | react: 18.2.0
1288 | transitivePeerDependencies:
1289 | - react-dom
1290 | dev: false
1291 |
1292 | /@nextui-org/use-aria-toggle-button@2.0.3(react@18.2.0):
1293 | resolution: {integrity: sha512-puoPTmrxx7l9vh42oAnkAc57uF+TldUg3G2A/Gc7aTcIq1AXLfaTDaxWiRel6W0Ew2H/IKu9AlQScY28HOQ/iA==}
1294 | peerDependencies:
1295 | react: '>=18'
1296 | dependencies:
1297 | '@nextui-org/use-aria-button': 2.0.3(react@18.2.0)
1298 | '@react-aria/utils': 3.19.0(react@18.2.0)
1299 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1300 | '@react-types/button': 3.7.4(react@18.2.0)
1301 | '@react-types/shared': 3.19.0(react@18.2.0)
1302 | react: 18.2.0
1303 | dev: false
1304 |
1305 | /@nextui-org/use-callback-ref@2.0.2(react@18.2.0):
1306 | resolution: {integrity: sha512-avKTXdy/bOfjPKTBj1RIdkbdqTC9ICZUzb5GejR4riA3zCcHwS2JxjQTGb9xNF3Y5DyH1Mb7hf2+jBmqF2g/QA==}
1307 | peerDependencies:
1308 | react: '>=18'
1309 | dependencies:
1310 | '@nextui-org/use-safe-layout-effect': 2.0.2(react@18.2.0)
1311 | react: 18.2.0
1312 | dev: false
1313 |
1314 | /@nextui-org/use-clipboard@2.0.2(react@18.2.0):
1315 | resolution: {integrity: sha512-Ass+LJR/cWC48AeIUtsukzvA7Mf5bV7ikdNUvuLyrc9pdqr1fmw4aHCkQPQKSjLIHy85KuXDKqrqhVoVLivD4g==}
1316 | peerDependencies:
1317 | react: '>=18'
1318 | dependencies:
1319 | react: 18.2.0
1320 | dev: false
1321 |
1322 | /@nextui-org/use-data-scroll-overflow@2.1.0(react@18.2.0):
1323 | resolution: {integrity: sha512-hmr5kQ3KguDYTzqkU7F+J/aIu6tFriG5a+0JyfnIzuVmwbMlNf9tvRrfrgFT3OBqwgj2ljhGAPwQ37CFDsCZAA==}
1324 | peerDependencies:
1325 | react: '>=18'
1326 | dependencies:
1327 | react: 18.2.0
1328 | dev: false
1329 |
1330 | /@nextui-org/use-disclosure@2.0.3(react@18.2.0):
1331 | resolution: {integrity: sha512-bPs4/wXSytiR5xxhlErkxXc2Fk3siQqLK5g/Qo+f2CQopXTaldkbIIlu/0lzd0KBIApX5z0rOr3bnr9Xu1Wn4A==}
1332 | peerDependencies:
1333 | react: '>=18'
1334 | dependencies:
1335 | '@nextui-org/use-callback-ref': 2.0.2(react@18.2.0)
1336 | '@react-aria/utils': 3.19.0(react@18.2.0)
1337 | '@react-stately/utils': 3.7.0(react@18.2.0)
1338 | react: 18.2.0
1339 | dev: false
1340 |
1341 | /@nextui-org/use-image@2.0.2(react@18.2.0):
1342 | resolution: {integrity: sha512-geCUHp2P/2und98/Ka12dyrw78D9F2qG1a8WN/iB0BQWwaEm8km8YH13zlV0GOFHCwlA5gsXqrUvzxPjfZytZQ==}
1343 | peerDependencies:
1344 | react: '>=18'
1345 | dependencies:
1346 | '@nextui-org/use-safe-layout-effect': 2.0.2(react@18.2.0)
1347 | react: 18.2.0
1348 | dev: false
1349 |
1350 | /@nextui-org/use-is-mobile@2.0.3(react@18.2.0):
1351 | resolution: {integrity: sha512-JOxomIBoMIj7CnLVNrnv3wlUQ/3cr3l1OJw947qRzMlN19Q6X8k4bDvuPPlQbY6KL+emB0RM+lsdHv4WQ+Hpdg==}
1352 | peerDependencies:
1353 | react: '>=18'
1354 | dependencies:
1355 | '@react-aria/ssr': 3.7.1(react@18.2.0)
1356 | react: 18.2.0
1357 | dev: false
1358 |
1359 | /@nextui-org/use-is-mounted@2.0.2(react-dom@18.2.0)(react@18.2.0):
1360 | resolution: {integrity: sha512-PjwpTkl5f+bTVU9l5GzgZDHd+uOwCZ3bhuYzbbamw1J5kBWruVnKUqZihS3zrLtJxKNxk/f7RT0UWK2a4wGpDw==}
1361 | peerDependencies:
1362 | react: '>=18'
1363 | react-dom: '>=16.8.0'
1364 | dependencies:
1365 | react: 18.2.0
1366 | react-dom: 18.2.0(react@18.2.0)
1367 | dev: false
1368 |
1369 | /@nextui-org/use-pagination@2.0.2(react@18.2.0):
1370 | resolution: {integrity: sha512-wQAmKMXzb0DhhXHx3K/LppaP2n5ZknjOYQpm+TAjOaIPJYIbyNIRa2FFAP/lf8vZCHjHB7+KUVLhkIwAzrZ0dw==}
1371 | peerDependencies:
1372 | react: '>=18'
1373 | dependencies:
1374 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1375 | react: 18.2.0
1376 | dev: false
1377 |
1378 | /@nextui-org/use-safe-layout-effect@2.0.2(react@18.2.0):
1379 | resolution: {integrity: sha512-HsFP2e+o2eSiQyAXdiicPBj6qj1naHuiNqqeTPqeJBsr0aUZI8l+7vZ5OXjLc8Qou4AOyNyJBBGFNhwsraxdpw==}
1380 | peerDependencies:
1381 | react: '>=18'
1382 | dependencies:
1383 | react: 18.2.0
1384 | dev: false
1385 |
1386 | /@nextui-org/use-scroll-position@2.0.2(react@18.2.0):
1387 | resolution: {integrity: sha512-DHmGMoLrjyuE/YQk92OGxF/v3cLaiBIvDpTxAAMtgerVkkPyuL7O9j9cyLiRz9ad92pL9TJwmjJ/00wJ2Qr/Wg==}
1388 | peerDependencies:
1389 | react: '>=18'
1390 | dependencies:
1391 | react: 18.2.0
1392 | dev: false
1393 |
1394 | /@nextui-org/use-update-effect@2.0.2(react@18.2.0):
1395 | resolution: {integrity: sha512-yN2LWvG2QNDz6XDjRZq6jBQ7+Jaz2eihy+Q7IR+XLXi6fsyKQuYKxphw5VANa0ZbvKVuN/n5m5WRDRmWmeeOWw==}
1396 | peerDependencies:
1397 | react: '>=18'
1398 | dependencies:
1399 | react: 18.2.0
1400 | dev: false
1401 |
1402 | /@nextui-org/user@2.0.16(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3):
1403 | resolution: {integrity: sha512-jnEauQ9Oa4JoiDQl1r651hGHTcYlQkxzPw9XidHww8WR/Wo2ciAR3PPkafnDa625Ff/36cRiwB+fwnlzZUBDhw==}
1404 | peerDependencies:
1405 | react: '>=18'
1406 | dependencies:
1407 | '@nextui-org/avatar': 2.0.15(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1408 | '@nextui-org/react-utils': 2.0.7(react@18.2.0)
1409 | '@nextui-org/shared-utils': 2.0.2(react@18.2.0)
1410 | '@nextui-org/system': 2.0.5(react-dom@18.2.0)(react@18.2.0)(tailwindcss@3.3.3)
1411 | '@nextui-org/theme': 2.1.3(tailwindcss@3.3.3)
1412 | '@react-aria/focus': 3.14.0(react@18.2.0)
1413 | '@react-aria/utils': 3.19.0(react@18.2.0)
1414 | react: 18.2.0
1415 | transitivePeerDependencies:
1416 | - react-dom
1417 | - tailwindcss
1418 | dev: false
1419 |
1420 | /@nodelib/fs.scandir@2.1.5:
1421 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
1422 | engines: {node: '>= 8'}
1423 | dependencies:
1424 | '@nodelib/fs.stat': 2.0.5
1425 | run-parallel: 1.2.0
1426 | dev: false
1427 |
1428 | /@nodelib/fs.stat@2.0.5:
1429 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
1430 | engines: {node: '>= 8'}
1431 | dev: false
1432 |
1433 | /@nodelib/fs.walk@1.2.8:
1434 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
1435 | engines: {node: '>= 8'}
1436 | dependencies:
1437 | '@nodelib/fs.scandir': 2.1.5
1438 | fastq: 1.15.0
1439 | dev: false
1440 |
1441 | /@react-aria/accordion@3.0.0-alpha.20(react@18.2.0):
1442 | resolution: {integrity: sha512-dQIrZrUwfVIezny/7SknsxIeZ5R4VXMizuCC6XCTDgeu7Mx8O3/+quJwE58KAHT9mhvWx7Wk+QGNBOTNbwSXQQ==}
1443 | peerDependencies:
1444 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1445 | dependencies:
1446 | '@react-aria/button': 3.8.1(react@18.2.0)
1447 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1448 | '@react-aria/selection': 3.16.1(react@18.2.0)
1449 | '@react-aria/utils': 3.19.0(react@18.2.0)
1450 | '@react-stately/tree': 3.7.1(react@18.2.0)
1451 | '@react-types/accordion': 3.0.0-alpha.15(react@18.2.0)
1452 | '@react-types/button': 3.7.4(react@18.2.0)
1453 | '@react-types/shared': 3.19.0(react@18.2.0)
1454 | '@swc/helpers': 0.5.1
1455 | react: 18.2.0
1456 | dev: false
1457 |
1458 | /@react-aria/button@3.8.1(react@18.2.0):
1459 | resolution: {integrity: sha512-igxZ871An3Clpmpw+beN8F792NfEnEaLRAZ4jITtC/FdzwQwRM7eCu/ZEaqpNtbUtruAmYhafnG/2uCkKhTpTw==}
1460 | peerDependencies:
1461 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1462 | dependencies:
1463 | '@react-aria/focus': 3.14.0(react@18.2.0)
1464 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1465 | '@react-aria/utils': 3.19.0(react@18.2.0)
1466 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1467 | '@react-types/button': 3.7.4(react@18.2.0)
1468 | '@react-types/shared': 3.19.0(react@18.2.0)
1469 | '@swc/helpers': 0.5.1
1470 | react: 18.2.0
1471 | dev: false
1472 |
1473 | /@react-aria/checkbox@3.10.0(react@18.2.0):
1474 | resolution: {integrity: sha512-1s5jkmag+41Fa2BwoOoM5cRRadDh3N8khgsziuGzD0NqvZLRCtHgDetNlileezFHwOeOWK6zCqDOrYLJhcMi8g==}
1475 | peerDependencies:
1476 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1477 | dependencies:
1478 | '@react-aria/label': 3.6.1(react@18.2.0)
1479 | '@react-aria/toggle': 3.7.0(react@18.2.0)
1480 | '@react-aria/utils': 3.19.0(react@18.2.0)
1481 | '@react-stately/checkbox': 3.4.4(react@18.2.0)
1482 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1483 | '@react-types/checkbox': 3.5.0(react@18.2.0)
1484 | '@react-types/shared': 3.19.0(react@18.2.0)
1485 | '@swc/helpers': 0.5.1
1486 | react: 18.2.0
1487 | dev: false
1488 |
1489 | /@react-aria/dialog@3.5.4(react-dom@18.2.0)(react@18.2.0):
1490 | resolution: {integrity: sha512-+YGjX5ygYvFvnRGDy7LVTL2uRCH5VYosMNKn0vyel99SiwHH9d8fdnnJjVvSJ3u8kvoXk22+OnRE2/vEX+G1EA==}
1491 | peerDependencies:
1492 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1493 | dependencies:
1494 | '@react-aria/focus': 3.14.0(react@18.2.0)
1495 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
1496 | '@react-aria/utils': 3.19.0(react@18.2.0)
1497 | '@react-stately/overlays': 3.6.1(react@18.2.0)
1498 | '@react-types/dialog': 3.5.4(react@18.2.0)
1499 | '@react-types/shared': 3.19.0(react@18.2.0)
1500 | '@swc/helpers': 0.5.1
1501 | react: 18.2.0
1502 | transitivePeerDependencies:
1503 | - react-dom
1504 | dev: false
1505 |
1506 | /@react-aria/focus@3.14.0(react@18.2.0):
1507 | resolution: {integrity: sha512-Xw7PxLT0Cqcz22OVtTZ8+HvurDogn9/xntzoIbVjpRFWzhlYe5WHnZL+2+gIiKf7EZ18Ma9/QsCnrVnvrky/Kw==}
1508 | peerDependencies:
1509 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1510 | dependencies:
1511 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1512 | '@react-aria/utils': 3.19.0(react@18.2.0)
1513 | '@react-types/shared': 3.19.0(react@18.2.0)
1514 | '@swc/helpers': 0.5.1
1515 | clsx: 1.2.1
1516 | react: 18.2.0
1517 | dev: false
1518 |
1519 | /@react-aria/grid@3.8.1(react-dom@18.2.0)(react@18.2.0):
1520 | resolution: {integrity: sha512-J/k7i2ZnMgTv3csMIQrIanbb0mWzlokT86QfKDgQpKxIvrPGbdrVJTx99tzJxEzYeXN9w11Jjwjal65rZCs4rQ==}
1521 | peerDependencies:
1522 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1523 | react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1524 | dependencies:
1525 | '@react-aria/focus': 3.14.0(react@18.2.0)
1526 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1527 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1528 | '@react-aria/live-announcer': 3.3.1
1529 | '@react-aria/selection': 3.16.1(react@18.2.0)
1530 | '@react-aria/utils': 3.19.0(react@18.2.0)
1531 | '@react-stately/collections': 3.10.0(react@18.2.0)
1532 | '@react-stately/grid': 3.8.0(react@18.2.0)
1533 | '@react-stately/selection': 3.13.3(react@18.2.0)
1534 | '@react-stately/virtualizer': 3.6.1(react@18.2.0)
1535 | '@react-types/checkbox': 3.5.0(react@18.2.0)
1536 | '@react-types/grid': 3.2.0(react@18.2.0)
1537 | '@react-types/shared': 3.19.0(react@18.2.0)
1538 | '@swc/helpers': 0.5.1
1539 | react: 18.2.0
1540 | react-dom: 18.2.0(react@18.2.0)
1541 | dev: false
1542 |
1543 | /@react-aria/i18n@3.8.1(react@18.2.0):
1544 | resolution: {integrity: sha512-ftH3saJlhWaHoHEDb/YjYqP8I4/9t4Ksf0D0kvPDRfRcL98DKUSHZD77+EmbjsmzJInzm76qDeEV0FYl4oj7gg==}
1545 | peerDependencies:
1546 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1547 | dependencies:
1548 | '@internationalized/date': 3.4.0
1549 | '@internationalized/message': 3.1.1
1550 | '@internationalized/number': 3.2.1
1551 | '@internationalized/string': 3.1.1
1552 | '@react-aria/ssr': 3.7.1(react@18.2.0)
1553 | '@react-aria/utils': 3.19.0(react@18.2.0)
1554 | '@react-types/shared': 3.19.0(react@18.2.0)
1555 | '@swc/helpers': 0.5.1
1556 | react: 18.2.0
1557 | dev: false
1558 |
1559 | /@react-aria/interactions@3.17.0(react@18.2.0):
1560 | resolution: {integrity: sha512-v4BI5Nd8gi8s297fHpgjDDXOyufX+FPHJ31rkMwY6X1nR5gtI0+2jNOL4lh7s+cWzszpA0wpwIrKUPGhhLyUjQ==}
1561 | peerDependencies:
1562 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1563 | dependencies:
1564 | '@react-aria/ssr': 3.7.1(react@18.2.0)
1565 | '@react-aria/utils': 3.19.0(react@18.2.0)
1566 | '@react-types/shared': 3.19.0(react@18.2.0)
1567 | '@swc/helpers': 0.5.1
1568 | react: 18.2.0
1569 | dev: false
1570 |
1571 | /@react-aria/label@3.6.1(react@18.2.0):
1572 | resolution: {integrity: sha512-hR7Qx6q0BjOJi/YG5pI13QTQA/2oaXMYdzDCx4Faz8qaY9CCsLjFpo5pUUwRhNieGmf/nHJq6jiYbJqfaONuTQ==}
1573 | peerDependencies:
1574 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1575 | dependencies:
1576 | '@react-aria/utils': 3.19.0(react@18.2.0)
1577 | '@react-types/label': 3.7.5(react@18.2.0)
1578 | '@react-types/shared': 3.19.0(react@18.2.0)
1579 | '@swc/helpers': 0.5.1
1580 | react: 18.2.0
1581 | dev: false
1582 |
1583 | /@react-aria/link@3.5.3(react@18.2.0):
1584 | resolution: {integrity: sha512-WGz/s/czlb/+wJUnBfnfaRuvOSiNTaQDTk9QsEEwrTkkYbWo7fMlH5Tc7c0Uxem4UuUblYXKth5SskiKQNWc0w==}
1585 | peerDependencies:
1586 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1587 | dependencies:
1588 | '@react-aria/focus': 3.14.0(react@18.2.0)
1589 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1590 | '@react-aria/utils': 3.19.0(react@18.2.0)
1591 | '@react-types/link': 3.4.4(react@18.2.0)
1592 | '@react-types/shared': 3.19.0(react@18.2.0)
1593 | '@swc/helpers': 0.5.1
1594 | react: 18.2.0
1595 | dev: false
1596 |
1597 | /@react-aria/listbox@3.10.1(react@18.2.0):
1598 | resolution: {integrity: sha512-hG+f7URcVk7saRG6bemCRaZSNMCg5U51ol/EuoKyHyvd0Vfq/AcsLYrg8vOyRWTsPwjxFtMLItNOZo36KIDs5w==}
1599 | peerDependencies:
1600 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1601 | dependencies:
1602 | '@react-aria/focus': 3.14.0(react@18.2.0)
1603 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1604 | '@react-aria/label': 3.6.1(react@18.2.0)
1605 | '@react-aria/selection': 3.16.1(react@18.2.0)
1606 | '@react-aria/utils': 3.19.0(react@18.2.0)
1607 | '@react-stately/collections': 3.10.0(react@18.2.0)
1608 | '@react-stately/list': 3.9.1(react@18.2.0)
1609 | '@react-types/listbox': 3.4.3(react@18.2.0)
1610 | '@react-types/shared': 3.19.0(react@18.2.0)
1611 | '@swc/helpers': 0.5.1
1612 | react: 18.2.0
1613 | dev: false
1614 |
1615 | /@react-aria/live-announcer@3.3.1:
1616 | resolution: {integrity: sha512-hsc77U7S16trM86d+peqJCOCQ7/smO1cybgdpOuzXyiwcHQw8RQ4GrXrS37P4Ux/44E9nMZkOwATQRT2aK8+Ew==}
1617 | dependencies:
1618 | '@swc/helpers': 0.5.1
1619 | dev: false
1620 |
1621 | /@react-aria/menu@3.10.1(react-dom@18.2.0)(react@18.2.0):
1622 | resolution: {integrity: sha512-FOb16XVejZgl4sFpclLvGd2RCvUBwl2bzFdAnss8Nd6Mx+h4m0bPeDT102k9v1Vjo7OGeqzvMyNU/KM4FwUGGA==}
1623 | peerDependencies:
1624 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1625 | react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1626 | dependencies:
1627 | '@react-aria/focus': 3.14.0(react@18.2.0)
1628 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1629 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1630 | '@react-aria/overlays': 3.16.0(react-dom@18.2.0)(react@18.2.0)
1631 | '@react-aria/selection': 3.16.1(react@18.2.0)
1632 | '@react-aria/utils': 3.19.0(react@18.2.0)
1633 | '@react-stately/collections': 3.10.0(react@18.2.0)
1634 | '@react-stately/menu': 3.5.4(react@18.2.0)
1635 | '@react-stately/tree': 3.7.1(react@18.2.0)
1636 | '@react-types/button': 3.7.4(react@18.2.0)
1637 | '@react-types/menu': 3.9.3(react@18.2.0)
1638 | '@react-types/shared': 3.19.0(react@18.2.0)
1639 | '@swc/helpers': 0.5.1
1640 | react: 18.2.0
1641 | react-dom: 18.2.0(react@18.2.0)
1642 | dev: false
1643 |
1644 | /@react-aria/overlays@3.16.0(react-dom@18.2.0)(react@18.2.0):
1645 | resolution: {integrity: sha512-jclyCqs1U4XqDA1DAdZaiijKtHLVZ78FV0+IzL4QQfrvzCPC+ba+MC8pe/tw8dMQzXBSnTx/IEqOHu07IwrESQ==}
1646 | peerDependencies:
1647 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1648 | react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1649 | dependencies:
1650 | '@react-aria/focus': 3.14.0(react@18.2.0)
1651 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1652 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1653 | '@react-aria/ssr': 3.7.1(react@18.2.0)
1654 | '@react-aria/utils': 3.19.0(react@18.2.0)
1655 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
1656 | '@react-stately/overlays': 3.6.1(react@18.2.0)
1657 | '@react-types/button': 3.7.4(react@18.2.0)
1658 | '@react-types/overlays': 3.8.1(react@18.2.0)
1659 | '@react-types/shared': 3.19.0(react@18.2.0)
1660 | '@swc/helpers': 0.5.1
1661 | react: 18.2.0
1662 | react-dom: 18.2.0(react@18.2.0)
1663 | dev: false
1664 |
1665 | /@react-aria/progress@3.4.4(react@18.2.0):
1666 | resolution: {integrity: sha512-k4EBtYcmqw3j/JYJtn+xKPM8/P1uPcFGSBqvwmVdwDknuT/hR1os3wIKm712N/Ubde8hTeeLcaa38HYezSF8BA==}
1667 | peerDependencies:
1668 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1669 | dependencies:
1670 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1671 | '@react-aria/label': 3.6.1(react@18.2.0)
1672 | '@react-aria/utils': 3.19.0(react@18.2.0)
1673 | '@react-types/progress': 3.4.2(react@18.2.0)
1674 | '@react-types/shared': 3.19.0(react@18.2.0)
1675 | '@swc/helpers': 0.5.1
1676 | react: 18.2.0
1677 | dev: false
1678 |
1679 | /@react-aria/radio@3.7.0(react@18.2.0):
1680 | resolution: {integrity: sha512-ygSr3ow9avO5BNNwm4aL70EwvLHrBbhSVfG1lmP2k5u/2dxn+Pnm3BGMaEriOFiAyAV4nLGUZAjER6GWXfu5cA==}
1681 | peerDependencies:
1682 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1683 | dependencies:
1684 | '@react-aria/focus': 3.14.0(react@18.2.0)
1685 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1686 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1687 | '@react-aria/label': 3.6.1(react@18.2.0)
1688 | '@react-aria/utils': 3.19.0(react@18.2.0)
1689 | '@react-stately/radio': 3.8.3(react@18.2.0)
1690 | '@react-types/radio': 3.5.0(react@18.2.0)
1691 | '@react-types/shared': 3.19.0(react@18.2.0)
1692 | '@swc/helpers': 0.5.1
1693 | react: 18.2.0
1694 | dev: false
1695 |
1696 | /@react-aria/selection@3.16.1(react@18.2.0):
1697 | resolution: {integrity: sha512-mOoAeNjq23H5p6IaeoyLHavYHRXOuNUlv8xO4OzYxIEnxmAvk4PCgidGLFYrr4sloftUMgTTL3LpCj21ylBS9A==}
1698 | peerDependencies:
1699 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1700 | dependencies:
1701 | '@react-aria/focus': 3.14.0(react@18.2.0)
1702 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1703 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1704 | '@react-aria/utils': 3.19.0(react@18.2.0)
1705 | '@react-stately/collections': 3.10.0(react@18.2.0)
1706 | '@react-stately/selection': 3.13.3(react@18.2.0)
1707 | '@react-types/shared': 3.19.0(react@18.2.0)
1708 | '@swc/helpers': 0.5.1
1709 | react: 18.2.0
1710 | dev: false
1711 |
1712 | /@react-aria/ssr@3.7.1(react@18.2.0):
1713 | resolution: {integrity: sha512-ovVPSD1WlRpZHt7GI9DqJrWG3OIYS+NXQ9y5HIewMJpSe+jPQmMQfyRmgX4EnvmxSlp0u04Wg/7oItcoSIb/RA==}
1714 | engines: {node: '>= 12'}
1715 | peerDependencies:
1716 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1717 | dependencies:
1718 | '@swc/helpers': 0.5.1
1719 | react: 18.2.0
1720 | dev: false
1721 |
1722 | /@react-aria/switch@3.5.3(react@18.2.0):
1723 | resolution: {integrity: sha512-3sV78Oa12/aU+M9P7BqUDdp/zm2zZA2QvtLLdxykrH04AJp0hLNBnmaTDXJVaGPPiU0umOB0LWDquA3apkBiBA==}
1724 | peerDependencies:
1725 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1726 | dependencies:
1727 | '@react-aria/toggle': 3.7.0(react@18.2.0)
1728 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1729 | '@react-types/switch': 3.4.0(react@18.2.0)
1730 | '@swc/helpers': 0.5.1
1731 | react: 18.2.0
1732 | dev: false
1733 |
1734 | /@react-aria/table@3.11.0(react-dom@18.2.0)(react@18.2.0):
1735 | resolution: {integrity: sha512-kPIQWh1dIHFAzl+rzfUGgbpAZGerMwwW0zNvRwcLpBOl/nrOwV5Zg/wuCC5cSdkwgo3SghYbcUaM19teve0UcQ==}
1736 | peerDependencies:
1737 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1738 | react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1739 | dependencies:
1740 | '@react-aria/focus': 3.14.0(react@18.2.0)
1741 | '@react-aria/grid': 3.8.1(react-dom@18.2.0)(react@18.2.0)
1742 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1743 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1744 | '@react-aria/live-announcer': 3.3.1
1745 | '@react-aria/selection': 3.16.1(react@18.2.0)
1746 | '@react-aria/utils': 3.19.0(react@18.2.0)
1747 | '@react-aria/visually-hidden': 3.8.3(react@18.2.0)
1748 | '@react-stately/collections': 3.10.0(react@18.2.0)
1749 | '@react-stately/flags': 3.0.0
1750 | '@react-stately/table': 3.11.0(react@18.2.0)
1751 | '@react-stately/virtualizer': 3.6.1(react@18.2.0)
1752 | '@react-types/checkbox': 3.5.0(react@18.2.0)
1753 | '@react-types/grid': 3.2.0(react@18.2.0)
1754 | '@react-types/shared': 3.19.0(react@18.2.0)
1755 | '@react-types/table': 3.8.0(react@18.2.0)
1756 | '@swc/helpers': 0.5.1
1757 | react: 18.2.0
1758 | react-dom: 18.2.0(react@18.2.0)
1759 | dev: false
1760 |
1761 | /@react-aria/tabs@3.6.2(react@18.2.0):
1762 | resolution: {integrity: sha512-FjI0h1Z4TsLOvIODhdDrVLz0O8RAqxDi58DO88CwkdUrWwZspNEpSpHhDarzUT7MlX3X72lsAUwvQLqY1OmaBQ==}
1763 | peerDependencies:
1764 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1765 | dependencies:
1766 | '@react-aria/focus': 3.14.0(react@18.2.0)
1767 | '@react-aria/i18n': 3.8.1(react@18.2.0)
1768 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1769 | '@react-aria/selection': 3.16.1(react@18.2.0)
1770 | '@react-aria/utils': 3.19.0(react@18.2.0)
1771 | '@react-stately/list': 3.9.1(react@18.2.0)
1772 | '@react-stately/tabs': 3.5.1(react@18.2.0)
1773 | '@react-types/shared': 3.19.0(react@18.2.0)
1774 | '@react-types/tabs': 3.3.1(react@18.2.0)
1775 | '@swc/helpers': 0.5.1
1776 | react: 18.2.0
1777 | dev: false
1778 |
1779 | /@react-aria/textfield@3.11.0(react@18.2.0):
1780 | resolution: {integrity: sha512-07pHRuWeLmsmciWL8y9azUwcBYi1IBmOT9KxBgLdLK5NLejd7q2uqd0WEEgZkOc48i2KEtMDgBslc4hA+cmHow==}
1781 | peerDependencies:
1782 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1783 | dependencies:
1784 | '@react-aria/focus': 3.14.0(react@18.2.0)
1785 | '@react-aria/label': 3.6.1(react@18.2.0)
1786 | '@react-aria/utils': 3.19.0(react@18.2.0)
1787 | '@react-types/shared': 3.19.0(react@18.2.0)
1788 | '@react-types/textfield': 3.7.3(react@18.2.0)
1789 | '@swc/helpers': 0.5.1
1790 | react: 18.2.0
1791 | dev: false
1792 |
1793 | /@react-aria/toggle@3.7.0(react@18.2.0):
1794 | resolution: {integrity: sha512-8Rpqolm8dxesyHi03RSmX2MjfHO/YwdhyEpAMMO0nsajjdtZneGzIOXzyjdWCPWwwzahcpwRHOA4qfMiRz+axA==}
1795 | peerDependencies:
1796 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1797 | dependencies:
1798 | '@react-aria/focus': 3.14.0(react@18.2.0)
1799 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1800 | '@react-aria/utils': 3.19.0(react@18.2.0)
1801 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1802 | '@react-types/checkbox': 3.5.0(react@18.2.0)
1803 | '@react-types/shared': 3.19.0(react@18.2.0)
1804 | '@react-types/switch': 3.4.0(react@18.2.0)
1805 | '@swc/helpers': 0.5.1
1806 | react: 18.2.0
1807 | dev: false
1808 |
1809 | /@react-aria/tooltip@3.6.1(react@18.2.0):
1810 | resolution: {integrity: sha512-CVSmndGXhC5EkkGrKcC8EVdAKCbSLTyJibpojC/8uOCbGIQglq3xCAr68PElNNO8+sFDJ4fp9ZzEeDi0Qyxf0w==}
1811 | peerDependencies:
1812 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1813 | dependencies:
1814 | '@react-aria/focus': 3.14.0(react@18.2.0)
1815 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1816 | '@react-aria/utils': 3.19.0(react@18.2.0)
1817 | '@react-stately/tooltip': 3.4.3(react@18.2.0)
1818 | '@react-types/shared': 3.19.0(react@18.2.0)
1819 | '@react-types/tooltip': 3.4.3(react@18.2.0)
1820 | '@swc/helpers': 0.5.1
1821 | react: 18.2.0
1822 | dev: false
1823 |
1824 | /@react-aria/utils@3.19.0(react@18.2.0):
1825 | resolution: {integrity: sha512-5GXqTCrUQtr78aiLVHZoeeGPuAxO4lCM+udWbKpSCh5xLfCZ7zFlZV9Q9FS0ea+IQypUcY8ngXCLsf22nSu/yg==}
1826 | peerDependencies:
1827 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1828 | dependencies:
1829 | '@react-aria/ssr': 3.7.1(react@18.2.0)
1830 | '@react-stately/utils': 3.7.0(react@18.2.0)
1831 | '@react-types/shared': 3.19.0(react@18.2.0)
1832 | '@swc/helpers': 0.5.1
1833 | clsx: 1.2.1
1834 | react: 18.2.0
1835 | dev: false
1836 |
1837 | /@react-aria/visually-hidden@3.8.3(react@18.2.0):
1838 | resolution: {integrity: sha512-Ln3rqUnPF/UiiPjj8Xjc5FIagwNvG16qtAR2Diwnsju+X9o2xeDEZhN/5fg98PxH2JBS3IvtsmMZRzPT9mhpmg==}
1839 | peerDependencies:
1840 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1841 | dependencies:
1842 | '@react-aria/interactions': 3.17.0(react@18.2.0)
1843 | '@react-aria/utils': 3.19.0(react@18.2.0)
1844 | '@react-types/shared': 3.19.0(react@18.2.0)
1845 | '@swc/helpers': 0.5.1
1846 | clsx: 1.2.1
1847 | react: 18.2.0
1848 | dev: false
1849 |
1850 | /@react-stately/checkbox@3.4.4(react@18.2.0):
1851 | resolution: {integrity: sha512-TYNod4+4TmS73F+sbKXAMoBH810ZEBdpMfXlNttUCXfVkDXc38W7ucvpQxXPwF+d+ZhGk4DJZsUYqfVPyXXSGg==}
1852 | peerDependencies:
1853 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1854 | dependencies:
1855 | '@react-stately/toggle': 3.6.1(react@18.2.0)
1856 | '@react-stately/utils': 3.7.0(react@18.2.0)
1857 | '@react-types/checkbox': 3.5.0(react@18.2.0)
1858 | '@react-types/shared': 3.19.0(react@18.2.0)
1859 | '@swc/helpers': 0.5.1
1860 | react: 18.2.0
1861 | dev: false
1862 |
1863 | /@react-stately/collections@3.10.0(react@18.2.0):
1864 | resolution: {integrity: sha512-PyJEFmt9X0kDMF7D4StGnTdXX1hgyUcTXvvXU2fEw6OyXLtmfWFHmFARRtYbuelGKk6clmJojYmIEds0k8jdww==}
1865 | peerDependencies:
1866 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1867 | dependencies:
1868 | '@react-types/shared': 3.19.0(react@18.2.0)
1869 | '@swc/helpers': 0.5.1
1870 | react: 18.2.0
1871 | dev: false
1872 |
1873 | /@react-stately/flags@3.0.0:
1874 | resolution: {integrity: sha512-e3i2ItHbIa0eEwmSXAnPdD7K8syW76JjGe8ENxwFJPW/H1Pu9RJfjkCb/Mq0WSPN/TpxBb54+I9TgrGhbCoZ9w==}
1875 | dependencies:
1876 | '@swc/helpers': 0.4.36
1877 | dev: false
1878 |
1879 | /@react-stately/grid@3.8.0(react@18.2.0):
1880 | resolution: {integrity: sha512-+3Q6D3W5FTc9/t1Gz35sH0NRiJ2u95aDls9ogBNulC/kQvYaF31NT34QdvpstcfrcCFtF+D49+TkesklZRHJlw==}
1881 | peerDependencies:
1882 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1883 | dependencies:
1884 | '@react-stately/collections': 3.10.0(react@18.2.0)
1885 | '@react-stately/selection': 3.13.3(react@18.2.0)
1886 | '@react-types/grid': 3.2.0(react@18.2.0)
1887 | '@react-types/shared': 3.19.0(react@18.2.0)
1888 | '@swc/helpers': 0.5.1
1889 | react: 18.2.0
1890 | dev: false
1891 |
1892 | /@react-stately/list@3.9.1(react@18.2.0):
1893 | resolution: {integrity: sha512-GiKrxGakzMTZKe3mp410l4xKiHbZplJCGrtqlxq/+YRD0uCQwWGYpRG+z9A7tTCusruRD3m91/OjWsbfbGdiEw==}
1894 | peerDependencies:
1895 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1896 | dependencies:
1897 | '@react-stately/collections': 3.10.0(react@18.2.0)
1898 | '@react-stately/selection': 3.13.3(react@18.2.0)
1899 | '@react-stately/utils': 3.7.0(react@18.2.0)
1900 | '@react-types/shared': 3.19.0(react@18.2.0)
1901 | '@swc/helpers': 0.5.1
1902 | react: 18.2.0
1903 | dev: false
1904 |
1905 | /@react-stately/menu@3.5.4(react@18.2.0):
1906 | resolution: {integrity: sha512-+Q71fMDhMM1iARPFtwqpXY/8qkb0dN4PBJbcjwjGCumGs+ja2YbZxLBHCP0DYBElS9l6m3ssF47RKNMtF/Oi5w==}
1907 | peerDependencies:
1908 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1909 | dependencies:
1910 | '@react-stately/overlays': 3.6.1(react@18.2.0)
1911 | '@react-stately/utils': 3.7.0(react@18.2.0)
1912 | '@react-types/menu': 3.9.3(react@18.2.0)
1913 | '@react-types/shared': 3.19.0(react@18.2.0)
1914 | '@swc/helpers': 0.5.1
1915 | react: 18.2.0
1916 | dev: false
1917 |
1918 | /@react-stately/overlays@3.6.1(react@18.2.0):
1919 | resolution: {integrity: sha512-c/Mda4ZZmFO4e3XZFd7kqt5wuh6Q/7wYJ+0oG59MfDoQstFwGcJTUnx7S8EUMujbocIOCeOmVPA1eE3DNPC2/A==}
1920 | peerDependencies:
1921 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1922 | dependencies:
1923 | '@react-stately/utils': 3.7.0(react@18.2.0)
1924 | '@react-types/overlays': 3.8.1(react@18.2.0)
1925 | '@swc/helpers': 0.5.1
1926 | react: 18.2.0
1927 | dev: false
1928 |
1929 | /@react-stately/radio@3.8.3(react@18.2.0):
1930 | resolution: {integrity: sha512-3ovJ6tDWzl/Qap8065GZS9mQM7LbQwLc7EhhmQ3dn5+pH4pUCHo8Gb0TIcYFsvFMyHrNMg/r8+N3ICq/WDj5NQ==}
1931 | peerDependencies:
1932 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1933 | dependencies:
1934 | '@react-stately/utils': 3.7.0(react@18.2.0)
1935 | '@react-types/radio': 3.5.0(react@18.2.0)
1936 | '@react-types/shared': 3.19.0(react@18.2.0)
1937 | '@swc/helpers': 0.5.1
1938 | react: 18.2.0
1939 | dev: false
1940 |
1941 | /@react-stately/selection@3.13.3(react@18.2.0):
1942 | resolution: {integrity: sha512-+CmpZpyIXfbxEwd9eBvo5Jatc2MNX7HinBcW3X8GfvqNzkbgOXETsmXaW6jlKJekvLLE13Is78Ob8NNzZVxQYg==}
1943 | peerDependencies:
1944 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1945 | dependencies:
1946 | '@react-stately/collections': 3.10.0(react@18.2.0)
1947 | '@react-stately/utils': 3.7.0(react@18.2.0)
1948 | '@react-types/shared': 3.19.0(react@18.2.0)
1949 | '@swc/helpers': 0.5.1
1950 | react: 18.2.0
1951 | dev: false
1952 |
1953 | /@react-stately/table@3.11.0(react@18.2.0):
1954 | resolution: {integrity: sha512-mHv8KgNHm6scO0gntQc1ZVbQaAqLiNzYi4hxksz2lY+HN2CJbJkYGl/aRt4jmnfpi1xWpwYP5najXdncMAKpGA==}
1955 | peerDependencies:
1956 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1957 | dependencies:
1958 | '@react-stately/collections': 3.10.0(react@18.2.0)
1959 | '@react-stately/flags': 3.0.0
1960 | '@react-stately/grid': 3.8.0(react@18.2.0)
1961 | '@react-stately/selection': 3.13.3(react@18.2.0)
1962 | '@react-stately/utils': 3.7.0(react@18.2.0)
1963 | '@react-types/grid': 3.2.0(react@18.2.0)
1964 | '@react-types/shared': 3.19.0(react@18.2.0)
1965 | '@react-types/table': 3.8.0(react@18.2.0)
1966 | '@swc/helpers': 0.5.1
1967 | react: 18.2.0
1968 | dev: false
1969 |
1970 | /@react-stately/tabs@3.5.1(react@18.2.0):
1971 | resolution: {integrity: sha512-p1vZOuIS98GMF9jfEHQA6Pir1wYY6j+Gni6DcluNnWj90rLEubuwARNw7uscoOaXKlK/DiZIhkLKSDsA5tbadQ==}
1972 | peerDependencies:
1973 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1974 | dependencies:
1975 | '@react-stately/list': 3.9.1(react@18.2.0)
1976 | '@react-stately/utils': 3.7.0(react@18.2.0)
1977 | '@react-types/shared': 3.19.0(react@18.2.0)
1978 | '@react-types/tabs': 3.3.1(react@18.2.0)
1979 | '@swc/helpers': 0.5.1
1980 | react: 18.2.0
1981 | dev: false
1982 |
1983 | /@react-stately/toggle@3.6.1(react@18.2.0):
1984 | resolution: {integrity: sha512-UUWtuI6gZlX6wpF9/bxBikjyAW1yQojRPCJ4MPkjMMBQL0iveAm3WEQkXRLNycEiOCeoaVFBwAd1L9h9+fuCFg==}
1985 | peerDependencies:
1986 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1987 | dependencies:
1988 | '@react-stately/utils': 3.7.0(react@18.2.0)
1989 | '@react-types/checkbox': 3.5.0(react@18.2.0)
1990 | '@react-types/shared': 3.19.0(react@18.2.0)
1991 | '@swc/helpers': 0.5.1
1992 | react: 18.2.0
1993 | dev: false
1994 |
1995 | /@react-stately/tooltip@3.4.3(react@18.2.0):
1996 | resolution: {integrity: sha512-IX/XlLdwSQWy75TAOARm6hxajRWV0x/C7vGA54O+JNvvfZ212+nxVyTSduM+zjULzhOPICSSUFKmX4ZCV/aHSg==}
1997 | peerDependencies:
1998 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
1999 | dependencies:
2000 | '@react-stately/overlays': 3.6.1(react@18.2.0)
2001 | '@react-stately/utils': 3.7.0(react@18.2.0)
2002 | '@react-types/tooltip': 3.4.3(react@18.2.0)
2003 | '@swc/helpers': 0.5.1
2004 | react: 18.2.0
2005 | dev: false
2006 |
2007 | /@react-stately/tree@3.7.1(react@18.2.0):
2008 | resolution: {integrity: sha512-D0BWcLTRx7EOTdAJCgYV6zm18xpNDxmv4meKJ/WmYSFq1bkHPN75NLv7VPf5Uvsm66xshbO/B3A4HB2/ag1yPA==}
2009 | peerDependencies:
2010 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2011 | dependencies:
2012 | '@react-stately/collections': 3.10.0(react@18.2.0)
2013 | '@react-stately/selection': 3.13.3(react@18.2.0)
2014 | '@react-stately/utils': 3.7.0(react@18.2.0)
2015 | '@react-types/shared': 3.19.0(react@18.2.0)
2016 | '@swc/helpers': 0.5.1
2017 | react: 18.2.0
2018 | dev: false
2019 |
2020 | /@react-stately/utils@3.7.0(react@18.2.0):
2021 | resolution: {integrity: sha512-VbApRiUV2rhozOfk0Qj9xt0qjVbQfLTgAzXLdrfeZSBnyIgo1bFRnjDpnDZKZUUCeGQcJJI03I9niaUtY+kwJQ==}
2022 | peerDependencies:
2023 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2024 | dependencies:
2025 | '@swc/helpers': 0.5.1
2026 | react: 18.2.0
2027 | dev: false
2028 |
2029 | /@react-stately/virtualizer@3.6.1(react@18.2.0):
2030 | resolution: {integrity: sha512-Gq5gQ1YPgTakPCkWnmp9P6p5uGoVS+phm6Ie34lmZQ+E62lrkHK0XG0bkOuvMSdWwzql0oLg03E/SMOahI9vNA==}
2031 | peerDependencies:
2032 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2033 | dependencies:
2034 | '@react-aria/utils': 3.19.0(react@18.2.0)
2035 | '@react-types/shared': 3.19.0(react@18.2.0)
2036 | '@swc/helpers': 0.5.1
2037 | react: 18.2.0
2038 | dev: false
2039 |
2040 | /@react-types/accordion@3.0.0-alpha.15(react@18.2.0):
2041 | resolution: {integrity: sha512-BzR/9zVS1plc7s22szg5q2l15q+2pyyiM7S87Jfs9ROduM9GJjS3MwFvUyXAaYbh9t0Wkw+3ZZITUENimwFVPA==}
2042 | peerDependencies:
2043 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2044 | dependencies:
2045 | '@react-types/shared': 3.19.0(react@18.2.0)
2046 | react: 18.2.0
2047 | dev: false
2048 |
2049 | /@react-types/button@3.7.4(react@18.2.0):
2050 | resolution: {integrity: sha512-y1JOnJ3pqg2ezZz/fdwMMToPj+8fgj/He7z1NRWtIy1/I7HP+ilSK6S/MLO2jRsM2QfCq8KSw5MQEZBPiPWsjw==}
2051 | peerDependencies:
2052 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2053 | dependencies:
2054 | '@react-types/shared': 3.19.0(react@18.2.0)
2055 | react: 18.2.0
2056 | dev: false
2057 |
2058 | /@react-types/checkbox@3.5.0(react@18.2.0):
2059 | resolution: {integrity: sha512-fCisTdqFKkz7FvxNoexXIiVsTBt0ZwIyeIZz/S41M6hzIZM38nKbh6yS/lveQ+/877Dn7+ngvbpJ8QYnXYVrIQ==}
2060 | peerDependencies:
2061 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2062 | dependencies:
2063 | '@react-types/shared': 3.19.0(react@18.2.0)
2064 | react: 18.2.0
2065 | dev: false
2066 |
2067 | /@react-types/dialog@3.5.4(react@18.2.0):
2068 | resolution: {integrity: sha512-WCEkUf93XauGaPaF1efTJ8u04Z5iUgmmzRbFnGLrske7rQJYfryP3+26zCxtKKlOTgeFORq5AHeH6vqaMKOhhg==}
2069 | peerDependencies:
2070 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2071 | dependencies:
2072 | '@react-types/overlays': 3.8.1(react@18.2.0)
2073 | '@react-types/shared': 3.19.0(react@18.2.0)
2074 | react: 18.2.0
2075 | dev: false
2076 |
2077 | /@react-types/grid@3.2.0(react@18.2.0):
2078 | resolution: {integrity: sha512-ZIzFDbuBgqaPNvZ18/fOdm9Ol0m5rFPlhSxQfyAgUOXFaQhl/1+BsG8FsHla/Y6tTmxDt5cVrF5PX2CWzZmtOw==}
2079 | peerDependencies:
2080 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2081 | dependencies:
2082 | '@react-types/shared': 3.19.0(react@18.2.0)
2083 | react: 18.2.0
2084 | dev: false
2085 |
2086 | /@react-types/label@3.7.5(react@18.2.0):
2087 | resolution: {integrity: sha512-iNO5T1UYK7FPF23cwRLQJ4zth2rqoJWbz27Wikwt8Cw8VbVVzfLBPUBZoUyeBVZ0/zzTvEgZUW75OrmKb4gqhw==}
2088 | peerDependencies:
2089 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2090 | dependencies:
2091 | '@react-types/shared': 3.19.0(react@18.2.0)
2092 | react: 18.2.0
2093 | dev: false
2094 |
2095 | /@react-types/link@3.4.4(react@18.2.0):
2096 | resolution: {integrity: sha512-/FnKf7W6nCNZ2E96Yo1gaX63eSxERmtovQbkRRdsgPLfgRcqzQIVzQtNJThIbVNncOnAw3qvIyhrS0weUTFacQ==}
2097 | peerDependencies:
2098 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2099 | dependencies:
2100 | '@react-aria/interactions': 3.17.0(react@18.2.0)
2101 | '@react-types/shared': 3.19.0(react@18.2.0)
2102 | react: 18.2.0
2103 | dev: false
2104 |
2105 | /@react-types/listbox@3.4.3(react@18.2.0):
2106 | resolution: {integrity: sha512-AHOnx5z+q/uIsBnGqrNJ25OSTbOe2/kWXWUcPDdfZ29OBqoDZu86psAOA97glYod97w/KzU5xq8EaxDrWupKuQ==}
2107 | peerDependencies:
2108 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2109 | dependencies:
2110 | '@react-types/shared': 3.19.0(react@18.2.0)
2111 | react: 18.2.0
2112 | dev: false
2113 |
2114 | /@react-types/menu@3.9.3(react@18.2.0):
2115 | resolution: {integrity: sha512-0dgIIM9z3hzjFltT+1/L8Hj3oDEcdYkexQhaA+jv6xBHUI5Bqs4SaJAeSGrGz5u6tsrHBPEgf/TLk9Dg9c7XMA==}
2116 | peerDependencies:
2117 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2118 | dependencies:
2119 | '@react-types/overlays': 3.8.1(react@18.2.0)
2120 | '@react-types/shared': 3.19.0(react@18.2.0)
2121 | react: 18.2.0
2122 | dev: false
2123 |
2124 | /@react-types/overlays@3.8.1(react@18.2.0):
2125 | resolution: {integrity: sha512-aDI/K3E2XACkey8SCBmAerLhYSUFa8g8tML4SoQbfEJPRj+jJztbHbg9F7b3HKDUk4ZOjcUdQRfz1nFHORdbtQ==}
2126 | peerDependencies:
2127 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2128 | dependencies:
2129 | '@react-types/shared': 3.19.0(react@18.2.0)
2130 | react: 18.2.0
2131 | dev: false
2132 |
2133 | /@react-types/progress@3.4.2(react@18.2.0):
2134 | resolution: {integrity: sha512-UvnBt1OtjgQgOM3556KpuAXSdvSIVGSeD4+otTfkl05ieTcy6Lx7ef3TFI2KfQP45a9JeRBstTNpThBmuRe03A==}
2135 | peerDependencies:
2136 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2137 | dependencies:
2138 | '@react-types/shared': 3.19.0(react@18.2.0)
2139 | react: 18.2.0
2140 | dev: false
2141 |
2142 | /@react-types/radio@3.5.0(react@18.2.0):
2143 | resolution: {integrity: sha512-jpAG03eYxLvD1+zLoHXVUR7BCXfzbaQnOv5vu2R4EXhBA7t1/HBOAY/WHbUEgrnyDYa2na7dr/RbY81H9JqR0g==}
2144 | peerDependencies:
2145 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2146 | dependencies:
2147 | '@react-types/shared': 3.19.0(react@18.2.0)
2148 | react: 18.2.0
2149 | dev: false
2150 |
2151 | /@react-types/select@3.8.2(react@18.2.0):
2152 | resolution: {integrity: sha512-m11J/xBR8yFwPLuueoFHzr4DiLyY7nKLCbZCz1W2lwIyd8Tl2iJwcLcuJiyUTJwdSTcCDgvbkY4vdTfLOIktYQ==}
2153 | peerDependencies:
2154 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2155 | dependencies:
2156 | '@react-types/shared': 3.19.0(react@18.2.0)
2157 | react: 18.2.0
2158 | dev: false
2159 |
2160 | /@react-types/shared@3.19.0(react@18.2.0):
2161 | resolution: {integrity: sha512-h852l8bWhqUxbXIG8vH3ab7gE19nnP3U1kuWf6SNSMvgmqjiRN9jXKPIFxF/PbfdvnXXm0yZSgSMWfUCARF0Cg==}
2162 | peerDependencies:
2163 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2164 | dependencies:
2165 | react: 18.2.0
2166 | dev: false
2167 |
2168 | /@react-types/switch@3.4.0(react@18.2.0):
2169 | resolution: {integrity: sha512-vUA4Etm7ZiThYN3IotPXl99gHYZNJlc/f9o/SgAUSxtk5pBv5unOSmXLdrvk01Kd6TJ/MjL42IxRShygyr8mTQ==}
2170 | peerDependencies:
2171 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2172 | dependencies:
2173 | '@react-types/checkbox': 3.5.0(react@18.2.0)
2174 | '@react-types/shared': 3.19.0(react@18.2.0)
2175 | react: 18.2.0
2176 | dev: false
2177 |
2178 | /@react-types/table@3.8.0(react@18.2.0):
2179 | resolution: {integrity: sha512-/7IBG4ZlJHvEPQwND/q6ZFzfXq0Bc1ohaocDFzEOeNtVUrgQ2rFS64EY2p8G7BL9XDJFTY2R5dLYqjyGFojUvQ==}
2180 | peerDependencies:
2181 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2182 | dependencies:
2183 | '@react-types/grid': 3.2.0(react@18.2.0)
2184 | '@react-types/shared': 3.19.0(react@18.2.0)
2185 | react: 18.2.0
2186 | dev: false
2187 |
2188 | /@react-types/tabs@3.3.1(react@18.2.0):
2189 | resolution: {integrity: sha512-vPxSbLCU7RT+Rupvu/1uOAesxlR/53GD5ZbgLuQRr/oEZRbsjY8Cs3CE3LGv49VdvBWivXUvHiF5wSE7CdWs1w==}
2190 | peerDependencies:
2191 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2192 | dependencies:
2193 | '@react-types/shared': 3.19.0(react@18.2.0)
2194 | react: 18.2.0
2195 | dev: false
2196 |
2197 | /@react-types/textfield@3.7.3(react@18.2.0):
2198 | resolution: {integrity: sha512-M2u9NK3iqQEmTp4G1Dk36pCleyH/w1n+N52u5n0fRlxvucY/Od8W1zvk3w9uqJLFHSlzleHsfSvkaETDJn7FYw==}
2199 | peerDependencies:
2200 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2201 | dependencies:
2202 | '@react-types/shared': 3.19.0(react@18.2.0)
2203 | react: 18.2.0
2204 | dev: false
2205 |
2206 | /@react-types/tooltip@3.4.3(react@18.2.0):
2207 | resolution: {integrity: sha512-ne1SVhgofHRZNhoQM4iMCSjCstpdPBpM81B4KDJ7XmWax0+dP4qmdxMc7qvEm7GjuZLfYx5f44fWytKm1BkZmg==}
2208 | peerDependencies:
2209 | react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
2210 | dependencies:
2211 | '@react-types/overlays': 3.8.1(react@18.2.0)
2212 | '@react-types/shared': 3.19.0(react@18.2.0)
2213 | react: 18.2.0
2214 | dev: false
2215 |
2216 | /@rushstack/eslint-patch@1.3.3:
2217 | resolution: {integrity: sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==}
2218 | dev: false
2219 |
2220 | /@swc/helpers@0.4.14:
2221 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
2222 | dependencies:
2223 | tslib: 2.6.2
2224 | dev: false
2225 |
2226 | /@swc/helpers@0.4.36:
2227 | resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==}
2228 | dependencies:
2229 | legacy-swc-helpers: /@swc/helpers@0.4.14
2230 | tslib: 2.6.2
2231 | dev: false
2232 |
2233 | /@swc/helpers@0.5.1:
2234 | resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
2235 | dependencies:
2236 | tslib: 2.6.2
2237 | dev: false
2238 |
2239 | /@types/color-convert@2.0.0:
2240 | resolution: {integrity: sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==}
2241 | dependencies:
2242 | '@types/color-name': 1.1.1
2243 | dev: false
2244 |
2245 | /@types/color-name@1.1.1:
2246 | resolution: {integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==}
2247 | dev: false
2248 |
2249 | /@types/color@3.0.3:
2250 | resolution: {integrity: sha512-X//qzJ3d3Zj82J9sC/C18ZY5f43utPbAJ6PhYt/M7uG6etcF6MRpKdN880KBy43B0BMzSfeT96MzrsNjFI3GbA==}
2251 | dependencies:
2252 | '@types/color-convert': 2.0.0
2253 | dev: false
2254 |
2255 | /@types/flat@5.0.2:
2256 | resolution: {integrity: sha512-3zsplnP2djeps5P9OyarTxwRpMLoe5Ash8aL9iprw0JxB+FAHjY+ifn4yZUuW4/9hqtnmor6uvjSRzJhiVbrEQ==}
2257 | dev: false
2258 |
2259 | /@types/json5@0.0.29:
2260 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
2261 | dev: false
2262 |
2263 | /@types/lodash.foreach@4.5.7:
2264 | resolution: {integrity: sha512-YjBEB6/Bl19V+R70IpyB/MhMb2IvrSgD26maRNyqbGRNDTH9AnPrQoT+ECvhFJ/hwhQ+RgYWaZKvF+knCguMJw==}
2265 | dependencies:
2266 | '@types/lodash': 4.14.197
2267 | dev: false
2268 |
2269 | /@types/lodash.get@4.4.7:
2270 | resolution: {integrity: sha512-af34Mj+KdDeuzsJBxc/XeTtOx0SZHZNLd+hdrn+PcKGQs0EG2TJTzQAOTCZTgDJCArahlCzLWSy8c2w59JRz7Q==}
2271 | dependencies:
2272 | '@types/lodash': 4.14.197
2273 | dev: false
2274 |
2275 | /@types/lodash.kebabcase@4.1.7:
2276 | resolution: {integrity: sha512-qzrcpK5uiADZ9OyZaegalM0b9Y3WetoBQ04RAtP3xZFGC5ul1UxmbjZ3j6suCh0BDkvgQmoMh8t5e9cVrdJYMw==}
2277 | dependencies:
2278 | '@types/lodash': 4.14.197
2279 | dev: false
2280 |
2281 | /@types/lodash.mapkeys@4.6.7:
2282 | resolution: {integrity: sha512-mfK0jlh4Itdhmy69/7r/vYftWaltahoS9kCF62UyvbDtXzMkUjuypaf2IASeoeoUPqBo/heoJSZ/vntbXC6LAA==}
2283 | dependencies:
2284 | '@types/lodash': 4.14.197
2285 | dev: false
2286 |
2287 | /@types/lodash.omit@4.5.7:
2288 | resolution: {integrity: sha512-6q6cNg0tQ6oTWjSM+BcYMBhan54P/gLqBldG4AuXd3nKr0oeVekWNS4VrNEu3BhCSDXtGapi7zjhnna0s03KpA==}
2289 | dependencies:
2290 | '@types/lodash': 4.14.197
2291 | dev: false
2292 |
2293 | /@types/lodash@4.14.197:
2294 | resolution: {integrity: sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g==}
2295 | dev: false
2296 |
2297 | /@types/node@20.5.7:
2298 | resolution: {integrity: sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==}
2299 | dev: false
2300 |
2301 | /@types/prop-types@15.7.5:
2302 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
2303 | dev: false
2304 |
2305 | /@types/react-dom@18.2.7:
2306 | resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
2307 | dependencies:
2308 | '@types/react': 18.2.21
2309 | dev: false
2310 |
2311 | /@types/react@18.2.21:
2312 | resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==}
2313 | dependencies:
2314 | '@types/prop-types': 15.7.5
2315 | '@types/scheduler': 0.16.3
2316 | csstype: 3.1.2
2317 | dev: false
2318 |
2319 | /@types/scheduler@0.16.3:
2320 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
2321 | dev: false
2322 |
2323 | /@typescript-eslint/parser@6.5.0(eslint@8.48.0)(typescript@5.2.2):
2324 | resolution: {integrity: sha512-LMAVtR5GN8nY0G0BadkG0XIe4AcNMeyEy3DyhKGAh9k4pLSMBO7rF29JvDBpZGCmp5Pgz5RLHP6eCpSYZJQDuQ==}
2325 | engines: {node: ^16.0.0 || >=18.0.0}
2326 | peerDependencies:
2327 | eslint: ^7.0.0 || ^8.0.0
2328 | typescript: '*'
2329 | peerDependenciesMeta:
2330 | typescript:
2331 | optional: true
2332 | dependencies:
2333 | '@typescript-eslint/scope-manager': 6.5.0
2334 | '@typescript-eslint/types': 6.5.0
2335 | '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.2.2)
2336 | '@typescript-eslint/visitor-keys': 6.5.0
2337 | debug: 4.3.4
2338 | eslint: 8.48.0
2339 | typescript: 5.2.2
2340 | transitivePeerDependencies:
2341 | - supports-color
2342 | dev: false
2343 |
2344 | /@typescript-eslint/scope-manager@6.5.0:
2345 | resolution: {integrity: sha512-A8hZ7OlxURricpycp5kdPTH3XnjG85UpJS6Fn4VzeoH4T388gQJ/PGP4ole5NfKt4WDVhmLaQ/dBLNDC4Xl/Kw==}
2346 | engines: {node: ^16.0.0 || >=18.0.0}
2347 | dependencies:
2348 | '@typescript-eslint/types': 6.5.0
2349 | '@typescript-eslint/visitor-keys': 6.5.0
2350 | dev: false
2351 |
2352 | /@typescript-eslint/types@6.5.0:
2353 | resolution: {integrity: sha512-eqLLOEF5/lU8jW3Bw+8auf4lZSbbljHR2saKnYqON12G/WsJrGeeDHWuQePoEf9ro22+JkbPfWQwKEC5WwLQ3w==}
2354 | engines: {node: ^16.0.0 || >=18.0.0}
2355 | dev: false
2356 |
2357 | /@typescript-eslint/typescript-estree@6.5.0(typescript@5.2.2):
2358 | resolution: {integrity: sha512-q0rGwSe9e5Kk/XzliB9h2LBc9tmXX25G0833r7kffbl5437FPWb2tbpIV9wAATebC/018pGa9fwPDuvGN+LxWQ==}
2359 | engines: {node: ^16.0.0 || >=18.0.0}
2360 | peerDependencies:
2361 | typescript: '*'
2362 | peerDependenciesMeta:
2363 | typescript:
2364 | optional: true
2365 | dependencies:
2366 | '@typescript-eslint/types': 6.5.0
2367 | '@typescript-eslint/visitor-keys': 6.5.0
2368 | debug: 4.3.4
2369 | globby: 11.1.0
2370 | is-glob: 4.0.3
2371 | semver: 7.5.4
2372 | ts-api-utils: 1.0.2(typescript@5.2.2)
2373 | typescript: 5.2.2
2374 | transitivePeerDependencies:
2375 | - supports-color
2376 | dev: false
2377 |
2378 | /@typescript-eslint/visitor-keys@6.5.0:
2379 | resolution: {integrity: sha512-yCB/2wkbv3hPsh02ZS8dFQnij9VVQXJMN/gbQsaaY+zxALkZnxa/wagvLEFsAWMPv7d7lxQmNsIzGU1w/T/WyA==}
2380 | engines: {node: ^16.0.0 || >=18.0.0}
2381 | dependencies:
2382 | '@typescript-eslint/types': 6.5.0
2383 | eslint-visitor-keys: 3.4.3
2384 | dev: false
2385 |
2386 | /acorn-jsx@5.3.2(acorn@8.10.0):
2387 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
2388 | peerDependencies:
2389 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
2390 | dependencies:
2391 | acorn: 8.10.0
2392 | dev: false
2393 |
2394 | /acorn@8.10.0:
2395 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
2396 | engines: {node: '>=0.4.0'}
2397 | hasBin: true
2398 | dev: false
2399 |
2400 | /ajv@6.12.6:
2401 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
2402 | dependencies:
2403 | fast-deep-equal: 3.1.3
2404 | fast-json-stable-stringify: 2.1.0
2405 | json-schema-traverse: 0.4.1
2406 | uri-js: 4.4.1
2407 | dev: false
2408 |
2409 | /ansi-regex@5.0.1:
2410 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
2411 | engines: {node: '>=8'}
2412 | dev: false
2413 |
2414 | /ansi-styles@4.3.0:
2415 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
2416 | engines: {node: '>=8'}
2417 | dependencies:
2418 | color-convert: 2.0.1
2419 | dev: false
2420 |
2421 | /any-promise@1.3.0:
2422 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
2423 | dev: false
2424 |
2425 | /anymatch@3.1.3:
2426 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
2427 | engines: {node: '>= 8'}
2428 | dependencies:
2429 | normalize-path: 3.0.0
2430 | picomatch: 2.3.1
2431 | dev: false
2432 |
2433 | /arg@5.0.2:
2434 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
2435 | dev: false
2436 |
2437 | /argparse@2.0.1:
2438 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
2439 | dev: false
2440 |
2441 | /aria-query@5.3.0:
2442 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
2443 | dependencies:
2444 | dequal: 2.0.3
2445 | dev: false
2446 |
2447 | /array-buffer-byte-length@1.0.0:
2448 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
2449 | dependencies:
2450 | call-bind: 1.0.2
2451 | is-array-buffer: 3.0.2
2452 | dev: false
2453 |
2454 | /array-includes@3.1.6:
2455 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
2456 | engines: {node: '>= 0.4'}
2457 | dependencies:
2458 | call-bind: 1.0.2
2459 | define-properties: 1.2.0
2460 | es-abstract: 1.22.1
2461 | get-intrinsic: 1.2.1
2462 | is-string: 1.0.7
2463 | dev: false
2464 |
2465 | /array-union@2.1.0:
2466 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
2467 | engines: {node: '>=8'}
2468 | dev: false
2469 |
2470 | /array.prototype.findlastindex@1.2.2:
2471 | resolution: {integrity: sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==}
2472 | engines: {node: '>= 0.4'}
2473 | dependencies:
2474 | call-bind: 1.0.2
2475 | define-properties: 1.2.0
2476 | es-abstract: 1.22.1
2477 | es-shim-unscopables: 1.0.0
2478 | get-intrinsic: 1.2.1
2479 | dev: false
2480 |
2481 | /array.prototype.flat@1.3.1:
2482 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
2483 | engines: {node: '>= 0.4'}
2484 | dependencies:
2485 | call-bind: 1.0.2
2486 | define-properties: 1.2.0
2487 | es-abstract: 1.22.1
2488 | es-shim-unscopables: 1.0.0
2489 | dev: false
2490 |
2491 | /array.prototype.flatmap@1.3.1:
2492 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
2493 | engines: {node: '>= 0.4'}
2494 | dependencies:
2495 | call-bind: 1.0.2
2496 | define-properties: 1.2.0
2497 | es-abstract: 1.22.1
2498 | es-shim-unscopables: 1.0.0
2499 | dev: false
2500 |
2501 | /array.prototype.tosorted@1.1.1:
2502 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
2503 | dependencies:
2504 | call-bind: 1.0.2
2505 | define-properties: 1.2.0
2506 | es-abstract: 1.22.1
2507 | es-shim-unscopables: 1.0.0
2508 | get-intrinsic: 1.2.1
2509 | dev: false
2510 |
2511 | /arraybuffer.prototype.slice@1.0.1:
2512 | resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==}
2513 | engines: {node: '>= 0.4'}
2514 | dependencies:
2515 | array-buffer-byte-length: 1.0.0
2516 | call-bind: 1.0.2
2517 | define-properties: 1.2.0
2518 | get-intrinsic: 1.2.1
2519 | is-array-buffer: 3.0.2
2520 | is-shared-array-buffer: 1.0.2
2521 | dev: false
2522 |
2523 | /ast-types-flow@0.0.7:
2524 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
2525 | dev: false
2526 |
2527 | /asynciterator.prototype@1.0.0:
2528 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
2529 | dependencies:
2530 | has-symbols: 1.0.3
2531 | dev: false
2532 |
2533 | /autoprefixer@10.4.15(postcss@8.4.28):
2534 | resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==}
2535 | engines: {node: ^10 || ^12 || >=14}
2536 | hasBin: true
2537 | peerDependencies:
2538 | postcss: ^8.1.0
2539 | dependencies:
2540 | browserslist: 4.21.10
2541 | caniuse-lite: 1.0.30001524
2542 | fraction.js: 4.3.0
2543 | normalize-range: 0.1.2
2544 | picocolors: 1.0.0
2545 | postcss: 8.4.28
2546 | postcss-value-parser: 4.2.0
2547 | dev: false
2548 |
2549 | /available-typed-arrays@1.0.5:
2550 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
2551 | engines: {node: '>= 0.4'}
2552 | dev: false
2553 |
2554 | /axe-core@4.7.2:
2555 | resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==}
2556 | engines: {node: '>=4'}
2557 | dev: false
2558 |
2559 | /axobject-query@3.2.1:
2560 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
2561 | dependencies:
2562 | dequal: 2.0.3
2563 | dev: false
2564 |
2565 | /balanced-match@1.0.2:
2566 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
2567 | dev: false
2568 |
2569 | /binary-extensions@2.2.0:
2570 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
2571 | engines: {node: '>=8'}
2572 | dev: false
2573 |
2574 | /brace-expansion@1.1.11:
2575 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
2576 | dependencies:
2577 | balanced-match: 1.0.2
2578 | concat-map: 0.0.1
2579 | dev: false
2580 |
2581 | /braces@3.0.2:
2582 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
2583 | engines: {node: '>=8'}
2584 | dependencies:
2585 | fill-range: 7.0.1
2586 | dev: false
2587 |
2588 | /browserslist@4.21.10:
2589 | resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
2590 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
2591 | hasBin: true
2592 | dependencies:
2593 | caniuse-lite: 1.0.30001524
2594 | electron-to-chromium: 1.4.504
2595 | node-releases: 2.0.13
2596 | update-browserslist-db: 1.0.11(browserslist@4.21.10)
2597 | dev: false
2598 |
2599 | /busboy@1.6.0:
2600 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
2601 | engines: {node: '>=10.16.0'}
2602 | dependencies:
2603 | streamsearch: 1.1.0
2604 | dev: false
2605 |
2606 | /call-bind@1.0.2:
2607 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
2608 | dependencies:
2609 | function-bind: 1.1.1
2610 | get-intrinsic: 1.2.1
2611 | dev: false
2612 |
2613 | /callsites@3.1.0:
2614 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
2615 | engines: {node: '>=6'}
2616 | dev: false
2617 |
2618 | /camelcase-css@2.0.1:
2619 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
2620 | engines: {node: '>= 6'}
2621 | dev: false
2622 |
2623 | /caniuse-lite@1.0.30001524:
2624 | resolution: {integrity: sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==}
2625 | dev: false
2626 |
2627 | /chalk@4.1.2:
2628 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
2629 | engines: {node: '>=10'}
2630 | dependencies:
2631 | ansi-styles: 4.3.0
2632 | supports-color: 7.2.0
2633 | dev: false
2634 |
2635 | /chokidar@3.5.3:
2636 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
2637 | engines: {node: '>= 8.10.0'}
2638 | dependencies:
2639 | anymatch: 3.1.3
2640 | braces: 3.0.2
2641 | glob-parent: 5.1.2
2642 | is-binary-path: 2.1.0
2643 | is-glob: 4.0.3
2644 | normalize-path: 3.0.0
2645 | readdirp: 3.6.0
2646 | optionalDependencies:
2647 | fsevents: 2.3.3
2648 | dev: false
2649 |
2650 | /client-only@0.0.1:
2651 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
2652 | dev: false
2653 |
2654 | /clsx@1.2.1:
2655 | resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
2656 | engines: {node: '>=6'}
2657 | dev: false
2658 |
2659 | /color-convert@2.0.1:
2660 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
2661 | engines: {node: '>=7.0.0'}
2662 | dependencies:
2663 | color-name: 1.1.4
2664 | dev: false
2665 |
2666 | /color-name@1.1.4:
2667 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
2668 | dev: false
2669 |
2670 | /color-string@1.9.1:
2671 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
2672 | dependencies:
2673 | color-name: 1.1.4
2674 | simple-swizzle: 0.2.2
2675 | dev: false
2676 |
2677 | /color2k@2.0.2:
2678 | resolution: {integrity: sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==}
2679 | dev: false
2680 |
2681 | /color@4.2.3:
2682 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
2683 | engines: {node: '>=12.5.0'}
2684 | dependencies:
2685 | color-convert: 2.0.1
2686 | color-string: 1.9.1
2687 | dev: false
2688 |
2689 | /commander@4.1.1:
2690 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
2691 | engines: {node: '>= 6'}
2692 | dev: false
2693 |
2694 | /compute-scroll-into-view@3.0.3:
2695 | resolution: {integrity: sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==}
2696 | dev: false
2697 |
2698 | /concat-map@0.0.1:
2699 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
2700 | dev: false
2701 |
2702 | /cross-spawn@7.0.3:
2703 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
2704 | engines: {node: '>= 8'}
2705 | dependencies:
2706 | path-key: 3.1.1
2707 | shebang-command: 2.0.0
2708 | which: 2.0.2
2709 | dev: false
2710 |
2711 | /cssesc@3.0.0:
2712 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
2713 | engines: {node: '>=4'}
2714 | hasBin: true
2715 | dev: false
2716 |
2717 | /csstype@3.1.2:
2718 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
2719 | dev: false
2720 |
2721 | /damerau-levenshtein@1.0.8:
2722 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
2723 | dev: false
2724 |
2725 | /debug@3.2.7:
2726 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
2727 | peerDependencies:
2728 | supports-color: '*'
2729 | peerDependenciesMeta:
2730 | supports-color:
2731 | optional: true
2732 | dependencies:
2733 | ms: 2.1.3
2734 | dev: false
2735 |
2736 | /debug@4.3.4:
2737 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
2738 | engines: {node: '>=6.0'}
2739 | peerDependencies:
2740 | supports-color: '*'
2741 | peerDependenciesMeta:
2742 | supports-color:
2743 | optional: true
2744 | dependencies:
2745 | ms: 2.1.2
2746 | dev: false
2747 |
2748 | /deep-is@0.1.4:
2749 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
2750 | dev: false
2751 |
2752 | /deepmerge@4.3.1:
2753 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
2754 | engines: {node: '>=0.10.0'}
2755 | dev: false
2756 |
2757 | /define-properties@1.2.0:
2758 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
2759 | engines: {node: '>= 0.4'}
2760 | dependencies:
2761 | has-property-descriptors: 1.0.0
2762 | object-keys: 1.1.1
2763 | dev: false
2764 |
2765 | /dequal@2.0.3:
2766 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
2767 | engines: {node: '>=6'}
2768 | dev: false
2769 |
2770 | /detect-node-es@1.1.0:
2771 | resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
2772 | dev: false
2773 |
2774 | /didyoumean@1.2.2:
2775 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
2776 | dev: false
2777 |
2778 | /dir-glob@3.0.1:
2779 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
2780 | engines: {node: '>=8'}
2781 | dependencies:
2782 | path-type: 4.0.0
2783 | dev: false
2784 |
2785 | /dlv@1.1.3:
2786 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
2787 | dev: false
2788 |
2789 | /doctrine@2.1.0:
2790 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
2791 | engines: {node: '>=0.10.0'}
2792 | dependencies:
2793 | esutils: 2.0.3
2794 | dev: false
2795 |
2796 | /doctrine@3.0.0:
2797 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
2798 | engines: {node: '>=6.0.0'}
2799 | dependencies:
2800 | esutils: 2.0.3
2801 | dev: false
2802 |
2803 | /electron-to-chromium@1.4.504:
2804 | resolution: {integrity: sha512-cSMwIAd8yUh54VwitVRVvHK66QqHWE39C3DRj8SWiXitEpVSY3wNPD9y1pxQtLIi4w3UdzF9klLsmuPshz09DQ==}
2805 | dev: false
2806 |
2807 | /emoji-regex@9.2.2:
2808 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
2809 | dev: false
2810 |
2811 | /enhanced-resolve@5.15.0:
2812 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
2813 | engines: {node: '>=10.13.0'}
2814 | dependencies:
2815 | graceful-fs: 4.2.11
2816 | tapable: 2.2.1
2817 | dev: false
2818 |
2819 | /es-abstract@1.22.1:
2820 | resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==}
2821 | engines: {node: '>= 0.4'}
2822 | dependencies:
2823 | array-buffer-byte-length: 1.0.0
2824 | arraybuffer.prototype.slice: 1.0.1
2825 | available-typed-arrays: 1.0.5
2826 | call-bind: 1.0.2
2827 | es-set-tostringtag: 2.0.1
2828 | es-to-primitive: 1.2.1
2829 | function.prototype.name: 1.1.6
2830 | get-intrinsic: 1.2.1
2831 | get-symbol-description: 1.0.0
2832 | globalthis: 1.0.3
2833 | gopd: 1.0.1
2834 | has: 1.0.3
2835 | has-property-descriptors: 1.0.0
2836 | has-proto: 1.0.1
2837 | has-symbols: 1.0.3
2838 | internal-slot: 1.0.5
2839 | is-array-buffer: 3.0.2
2840 | is-callable: 1.2.7
2841 | is-negative-zero: 2.0.2
2842 | is-regex: 1.1.4
2843 | is-shared-array-buffer: 1.0.2
2844 | is-string: 1.0.7
2845 | is-typed-array: 1.1.12
2846 | is-weakref: 1.0.2
2847 | object-inspect: 1.12.3
2848 | object-keys: 1.1.1
2849 | object.assign: 4.1.4
2850 | regexp.prototype.flags: 1.5.0
2851 | safe-array-concat: 1.0.0
2852 | safe-regex-test: 1.0.0
2853 | string.prototype.trim: 1.2.7
2854 | string.prototype.trimend: 1.0.6
2855 | string.prototype.trimstart: 1.0.6
2856 | typed-array-buffer: 1.0.0
2857 | typed-array-byte-length: 1.0.0
2858 | typed-array-byte-offset: 1.0.0
2859 | typed-array-length: 1.0.4
2860 | unbox-primitive: 1.0.2
2861 | which-typed-array: 1.1.11
2862 | dev: false
2863 |
2864 | /es-iterator-helpers@1.0.14:
2865 | resolution: {integrity: sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==}
2866 | dependencies:
2867 | asynciterator.prototype: 1.0.0
2868 | call-bind: 1.0.2
2869 | define-properties: 1.2.0
2870 | es-abstract: 1.22.1
2871 | es-set-tostringtag: 2.0.1
2872 | function-bind: 1.1.1
2873 | get-intrinsic: 1.2.1
2874 | globalthis: 1.0.3
2875 | has-property-descriptors: 1.0.0
2876 | has-proto: 1.0.1
2877 | has-symbols: 1.0.3
2878 | internal-slot: 1.0.5
2879 | iterator.prototype: 1.1.0
2880 | safe-array-concat: 1.0.0
2881 | dev: false
2882 |
2883 | /es-set-tostringtag@2.0.1:
2884 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
2885 | engines: {node: '>= 0.4'}
2886 | dependencies:
2887 | get-intrinsic: 1.2.1
2888 | has: 1.0.3
2889 | has-tostringtag: 1.0.0
2890 | dev: false
2891 |
2892 | /es-shim-unscopables@1.0.0:
2893 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
2894 | dependencies:
2895 | has: 1.0.3
2896 | dev: false
2897 |
2898 | /es-to-primitive@1.2.1:
2899 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
2900 | engines: {node: '>= 0.4'}
2901 | dependencies:
2902 | is-callable: 1.2.7
2903 | is-date-object: 1.0.5
2904 | is-symbol: 1.0.4
2905 | dev: false
2906 |
2907 | /escalade@3.1.1:
2908 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
2909 | engines: {node: '>=6'}
2910 | dev: false
2911 |
2912 | /escape-string-regexp@4.0.0:
2913 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
2914 | engines: {node: '>=10'}
2915 | dev: false
2916 |
2917 | /eslint-config-next@13.4.19(eslint@8.48.0)(typescript@5.2.2):
2918 | resolution: {integrity: sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==}
2919 | peerDependencies:
2920 | eslint: ^7.23.0 || ^8.0.0
2921 | typescript: '>=3.3.1'
2922 | peerDependenciesMeta:
2923 | typescript:
2924 | optional: true
2925 | dependencies:
2926 | '@next/eslint-plugin-next': 13.4.19
2927 | '@rushstack/eslint-patch': 1.3.3
2928 | '@typescript-eslint/parser': 6.5.0(eslint@8.48.0)(typescript@5.2.2)
2929 | eslint: 8.48.0
2930 | eslint-import-resolver-node: 0.3.9
2931 | eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.48.0)
2932 | eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0)
2933 | eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0)
2934 | eslint-plugin-react: 7.33.2(eslint@8.48.0)
2935 | eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0)
2936 | typescript: 5.2.2
2937 | transitivePeerDependencies:
2938 | - eslint-import-resolver-webpack
2939 | - supports-color
2940 | dev: false
2941 |
2942 | /eslint-import-resolver-node@0.3.9:
2943 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
2944 | dependencies:
2945 | debug: 3.2.7
2946 | is-core-module: 2.13.0
2947 | resolve: 1.22.4
2948 | transitivePeerDependencies:
2949 | - supports-color
2950 | dev: false
2951 |
2952 | /eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.48.0):
2953 | resolution: {integrity: sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==}
2954 | engines: {node: ^14.18.0 || >=16.0.0}
2955 | peerDependencies:
2956 | eslint: '*'
2957 | eslint-plugin-import: '*'
2958 | dependencies:
2959 | debug: 4.3.4
2960 | enhanced-resolve: 5.15.0
2961 | eslint: 8.48.0
2962 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0)
2963 | eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0)
2964 | fast-glob: 3.3.1
2965 | get-tsconfig: 4.7.0
2966 | is-core-module: 2.13.0
2967 | is-glob: 4.0.3
2968 | transitivePeerDependencies:
2969 | - '@typescript-eslint/parser'
2970 | - eslint-import-resolver-node
2971 | - eslint-import-resolver-webpack
2972 | - supports-color
2973 | dev: false
2974 |
2975 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0):
2976 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
2977 | engines: {node: '>=4'}
2978 | peerDependencies:
2979 | '@typescript-eslint/parser': '*'
2980 | eslint: '*'
2981 | eslint-import-resolver-node: '*'
2982 | eslint-import-resolver-typescript: '*'
2983 | eslint-import-resolver-webpack: '*'
2984 | peerDependenciesMeta:
2985 | '@typescript-eslint/parser':
2986 | optional: true
2987 | eslint:
2988 | optional: true
2989 | eslint-import-resolver-node:
2990 | optional: true
2991 | eslint-import-resolver-typescript:
2992 | optional: true
2993 | eslint-import-resolver-webpack:
2994 | optional: true
2995 | dependencies:
2996 | '@typescript-eslint/parser': 6.5.0(eslint@8.48.0)(typescript@5.2.2)
2997 | debug: 3.2.7
2998 | eslint: 8.48.0
2999 | eslint-import-resolver-node: 0.3.9
3000 | eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.48.0)
3001 | transitivePeerDependencies:
3002 | - supports-color
3003 | dev: false
3004 |
3005 | /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0):
3006 | resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
3007 | engines: {node: '>=4'}
3008 | peerDependencies:
3009 | '@typescript-eslint/parser': '*'
3010 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
3011 | peerDependenciesMeta:
3012 | '@typescript-eslint/parser':
3013 | optional: true
3014 | dependencies:
3015 | '@typescript-eslint/parser': 6.5.0(eslint@8.48.0)(typescript@5.2.2)
3016 | array-includes: 3.1.6
3017 | array.prototype.findlastindex: 1.2.2
3018 | array.prototype.flat: 1.3.1
3019 | array.prototype.flatmap: 1.3.1
3020 | debug: 3.2.7
3021 | doctrine: 2.1.0
3022 | eslint: 8.48.0
3023 | eslint-import-resolver-node: 0.3.9
3024 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.48.0)
3025 | has: 1.0.3
3026 | is-core-module: 2.13.0
3027 | is-glob: 4.0.3
3028 | minimatch: 3.1.2
3029 | object.fromentries: 2.0.7
3030 | object.groupby: 1.0.1
3031 | object.values: 1.1.7
3032 | semver: 6.3.1
3033 | tsconfig-paths: 3.14.2
3034 | transitivePeerDependencies:
3035 | - eslint-import-resolver-typescript
3036 | - eslint-import-resolver-webpack
3037 | - supports-color
3038 | dev: false
3039 |
3040 | /eslint-plugin-jsx-a11y@6.7.1(eslint@8.48.0):
3041 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
3042 | engines: {node: '>=4.0'}
3043 | peerDependencies:
3044 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
3045 | dependencies:
3046 | '@babel/runtime': 7.22.11
3047 | aria-query: 5.3.0
3048 | array-includes: 3.1.6
3049 | array.prototype.flatmap: 1.3.1
3050 | ast-types-flow: 0.0.7
3051 | axe-core: 4.7.2
3052 | axobject-query: 3.2.1
3053 | damerau-levenshtein: 1.0.8
3054 | emoji-regex: 9.2.2
3055 | eslint: 8.48.0
3056 | has: 1.0.3
3057 | jsx-ast-utils: 3.3.5
3058 | language-tags: 1.0.5
3059 | minimatch: 3.1.2
3060 | object.entries: 1.1.7
3061 | object.fromentries: 2.0.7
3062 | semver: 6.3.1
3063 | dev: false
3064 |
3065 | /eslint-plugin-react-hooks@4.6.0(eslint@8.48.0):
3066 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
3067 | engines: {node: '>=10'}
3068 | peerDependencies:
3069 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
3070 | dependencies:
3071 | eslint: 8.48.0
3072 | dev: false
3073 |
3074 | /eslint-plugin-react@7.33.2(eslint@8.48.0):
3075 | resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
3076 | engines: {node: '>=4'}
3077 | peerDependencies:
3078 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
3079 | dependencies:
3080 | array-includes: 3.1.6
3081 | array.prototype.flatmap: 1.3.1
3082 | array.prototype.tosorted: 1.1.1
3083 | doctrine: 2.1.0
3084 | es-iterator-helpers: 1.0.14
3085 | eslint: 8.48.0
3086 | estraverse: 5.3.0
3087 | jsx-ast-utils: 3.3.5
3088 | minimatch: 3.1.2
3089 | object.entries: 1.1.7
3090 | object.fromentries: 2.0.7
3091 | object.hasown: 1.1.3
3092 | object.values: 1.1.7
3093 | prop-types: 15.8.1
3094 | resolve: 2.0.0-next.4
3095 | semver: 6.3.1
3096 | string.prototype.matchall: 4.0.9
3097 | dev: false
3098 |
3099 | /eslint-scope@7.2.2:
3100 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
3101 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3102 | dependencies:
3103 | esrecurse: 4.3.0
3104 | estraverse: 5.3.0
3105 | dev: false
3106 |
3107 | /eslint-visitor-keys@3.4.3:
3108 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
3109 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3110 | dev: false
3111 |
3112 | /eslint@8.48.0:
3113 | resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==}
3114 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3115 | hasBin: true
3116 | dependencies:
3117 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0)
3118 | '@eslint-community/regexpp': 4.8.0
3119 | '@eslint/eslintrc': 2.1.2
3120 | '@eslint/js': 8.48.0
3121 | '@humanwhocodes/config-array': 0.11.11
3122 | '@humanwhocodes/module-importer': 1.0.1
3123 | '@nodelib/fs.walk': 1.2.8
3124 | ajv: 6.12.6
3125 | chalk: 4.1.2
3126 | cross-spawn: 7.0.3
3127 | debug: 4.3.4
3128 | doctrine: 3.0.0
3129 | escape-string-regexp: 4.0.0
3130 | eslint-scope: 7.2.2
3131 | eslint-visitor-keys: 3.4.3
3132 | espree: 9.6.1
3133 | esquery: 1.5.0
3134 | esutils: 2.0.3
3135 | fast-deep-equal: 3.1.3
3136 | file-entry-cache: 6.0.1
3137 | find-up: 5.0.0
3138 | glob-parent: 6.0.2
3139 | globals: 13.21.0
3140 | graphemer: 1.4.0
3141 | ignore: 5.2.4
3142 | imurmurhash: 0.1.4
3143 | is-glob: 4.0.3
3144 | is-path-inside: 3.0.3
3145 | js-yaml: 4.1.0
3146 | json-stable-stringify-without-jsonify: 1.0.1
3147 | levn: 0.4.1
3148 | lodash.merge: 4.6.2
3149 | minimatch: 3.1.2
3150 | natural-compare: 1.4.0
3151 | optionator: 0.9.3
3152 | strip-ansi: 6.0.1
3153 | text-table: 0.2.0
3154 | transitivePeerDependencies:
3155 | - supports-color
3156 | dev: false
3157 |
3158 | /espree@9.6.1:
3159 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
3160 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3161 | dependencies:
3162 | acorn: 8.10.0
3163 | acorn-jsx: 5.3.2(acorn@8.10.0)
3164 | eslint-visitor-keys: 3.4.3
3165 | dev: false
3166 |
3167 | /esquery@1.5.0:
3168 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
3169 | engines: {node: '>=0.10'}
3170 | dependencies:
3171 | estraverse: 5.3.0
3172 | dev: false
3173 |
3174 | /esrecurse@4.3.0:
3175 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
3176 | engines: {node: '>=4.0'}
3177 | dependencies:
3178 | estraverse: 5.3.0
3179 | dev: false
3180 |
3181 | /estraverse@5.3.0:
3182 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
3183 | engines: {node: '>=4.0'}
3184 | dev: false
3185 |
3186 | /esutils@2.0.3:
3187 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
3188 | engines: {node: '>=0.10.0'}
3189 | dev: false
3190 |
3191 | /fast-deep-equal@3.1.3:
3192 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
3193 | dev: false
3194 |
3195 | /fast-glob@3.3.1:
3196 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
3197 | engines: {node: '>=8.6.0'}
3198 | dependencies:
3199 | '@nodelib/fs.stat': 2.0.5
3200 | '@nodelib/fs.walk': 1.2.8
3201 | glob-parent: 5.1.2
3202 | merge2: 1.4.1
3203 | micromatch: 4.0.5
3204 | dev: false
3205 |
3206 | /fast-json-stable-stringify@2.1.0:
3207 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
3208 | dev: false
3209 |
3210 | /fast-levenshtein@2.0.6:
3211 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
3212 | dev: false
3213 |
3214 | /fastq@1.15.0:
3215 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
3216 | dependencies:
3217 | reusify: 1.0.4
3218 | dev: false
3219 |
3220 | /file-entry-cache@6.0.1:
3221 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
3222 | engines: {node: ^10.12.0 || >=12.0.0}
3223 | dependencies:
3224 | flat-cache: 3.1.0
3225 | dev: false
3226 |
3227 | /fill-range@7.0.1:
3228 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
3229 | engines: {node: '>=8'}
3230 | dependencies:
3231 | to-regex-range: 5.0.1
3232 | dev: false
3233 |
3234 | /find-up@5.0.0:
3235 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
3236 | engines: {node: '>=10'}
3237 | dependencies:
3238 | locate-path: 6.0.0
3239 | path-exists: 4.0.0
3240 | dev: false
3241 |
3242 | /flat-cache@3.1.0:
3243 | resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==}
3244 | engines: {node: '>=12.0.0'}
3245 | dependencies:
3246 | flatted: 3.2.7
3247 | keyv: 4.5.3
3248 | rimraf: 3.0.2
3249 | dev: false
3250 |
3251 | /flat@5.0.2:
3252 | resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
3253 | hasBin: true
3254 | dev: false
3255 |
3256 | /flatted@3.2.7:
3257 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
3258 | dev: false
3259 |
3260 | /for-each@0.3.3:
3261 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
3262 | dependencies:
3263 | is-callable: 1.2.7
3264 | dev: false
3265 |
3266 | /fraction.js@4.3.0:
3267 | resolution: {integrity: sha512-btalnXjFelOv2cy86KzHWhUuMb622/AD8ce/MCH9C36xe7QRXjJZA+19fP+G5LT0fdRcbOHErMI3SPM11ZaVDg==}
3268 | dev: false
3269 |
3270 | /framer-motion@10.16.1(react-dom@18.2.0)(react@18.2.0):
3271 | resolution: {integrity: sha512-K6TXr5mZtitC/dxQCBdg7xzdN0d5IAIrlaqCPKtIQVdzVPGC0qBuJKXggHX1vjnP5gPOFwB1KbCCTWcnFc3kWg==}
3272 | peerDependencies:
3273 | react: ^18.0.0
3274 | react-dom: ^18.0.0
3275 | peerDependenciesMeta:
3276 | react:
3277 | optional: true
3278 | react-dom:
3279 | optional: true
3280 | dependencies:
3281 | react: 18.2.0
3282 | react-dom: 18.2.0(react@18.2.0)
3283 | tslib: 2.6.2
3284 | optionalDependencies:
3285 | '@emotion/is-prop-valid': 0.8.8
3286 | dev: false
3287 |
3288 | /fs.realpath@1.0.0:
3289 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
3290 | dev: false
3291 |
3292 | /fsevents@2.3.3:
3293 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
3294 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
3295 | os: [darwin]
3296 | requiresBuild: true
3297 | dev: false
3298 | optional: true
3299 |
3300 | /function-bind@1.1.1:
3301 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
3302 | dev: false
3303 |
3304 | /function.prototype.name@1.1.6:
3305 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
3306 | engines: {node: '>= 0.4'}
3307 | dependencies:
3308 | call-bind: 1.0.2
3309 | define-properties: 1.2.0
3310 | es-abstract: 1.22.1
3311 | functions-have-names: 1.2.3
3312 | dev: false
3313 |
3314 | /functions-have-names@1.2.3:
3315 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
3316 | dev: false
3317 |
3318 | /get-intrinsic@1.2.1:
3319 | resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
3320 | dependencies:
3321 | function-bind: 1.1.1
3322 | has: 1.0.3
3323 | has-proto: 1.0.1
3324 | has-symbols: 1.0.3
3325 | dev: false
3326 |
3327 | /get-nonce@1.0.1:
3328 | resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
3329 | engines: {node: '>=6'}
3330 | dev: false
3331 |
3332 | /get-symbol-description@1.0.0:
3333 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
3334 | engines: {node: '>= 0.4'}
3335 | dependencies:
3336 | call-bind: 1.0.2
3337 | get-intrinsic: 1.2.1
3338 | dev: false
3339 |
3340 | /get-tsconfig@4.7.0:
3341 | resolution: {integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==}
3342 | dependencies:
3343 | resolve-pkg-maps: 1.0.0
3344 | dev: false
3345 |
3346 | /glob-parent@5.1.2:
3347 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
3348 | engines: {node: '>= 6'}
3349 | dependencies:
3350 | is-glob: 4.0.3
3351 | dev: false
3352 |
3353 | /glob-parent@6.0.2:
3354 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
3355 | engines: {node: '>=10.13.0'}
3356 | dependencies:
3357 | is-glob: 4.0.3
3358 | dev: false
3359 |
3360 | /glob-to-regexp@0.4.1:
3361 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
3362 | dev: false
3363 |
3364 | /glob@7.1.6:
3365 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
3366 | dependencies:
3367 | fs.realpath: 1.0.0
3368 | inflight: 1.0.6
3369 | inherits: 2.0.4
3370 | minimatch: 3.1.2
3371 | once: 1.4.0
3372 | path-is-absolute: 1.0.1
3373 | dev: false
3374 |
3375 | /glob@7.1.7:
3376 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
3377 | dependencies:
3378 | fs.realpath: 1.0.0
3379 | inflight: 1.0.6
3380 | inherits: 2.0.4
3381 | minimatch: 3.1.2
3382 | once: 1.4.0
3383 | path-is-absolute: 1.0.1
3384 | dev: false
3385 |
3386 | /glob@7.2.3:
3387 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
3388 | dependencies:
3389 | fs.realpath: 1.0.0
3390 | inflight: 1.0.6
3391 | inherits: 2.0.4
3392 | minimatch: 3.1.2
3393 | once: 1.4.0
3394 | path-is-absolute: 1.0.1
3395 | dev: false
3396 |
3397 | /globals@13.21.0:
3398 | resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==}
3399 | engines: {node: '>=8'}
3400 | dependencies:
3401 | type-fest: 0.20.2
3402 | dev: false
3403 |
3404 | /globalthis@1.0.3:
3405 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
3406 | engines: {node: '>= 0.4'}
3407 | dependencies:
3408 | define-properties: 1.2.0
3409 | dev: false
3410 |
3411 | /globby@11.1.0:
3412 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
3413 | engines: {node: '>=10'}
3414 | dependencies:
3415 | array-union: 2.1.0
3416 | dir-glob: 3.0.1
3417 | fast-glob: 3.3.1
3418 | ignore: 5.2.4
3419 | merge2: 1.4.1
3420 | slash: 3.0.0
3421 | dev: false
3422 |
3423 | /gopd@1.0.1:
3424 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
3425 | dependencies:
3426 | get-intrinsic: 1.2.1
3427 | dev: false
3428 |
3429 | /graceful-fs@4.2.11:
3430 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
3431 | dev: false
3432 |
3433 | /graphemer@1.4.0:
3434 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
3435 | dev: false
3436 |
3437 | /has-bigints@1.0.2:
3438 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
3439 | dev: false
3440 |
3441 | /has-flag@4.0.0:
3442 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
3443 | engines: {node: '>=8'}
3444 | dev: false
3445 |
3446 | /has-property-descriptors@1.0.0:
3447 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
3448 | dependencies:
3449 | get-intrinsic: 1.2.1
3450 | dev: false
3451 |
3452 | /has-proto@1.0.1:
3453 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
3454 | engines: {node: '>= 0.4'}
3455 | dev: false
3456 |
3457 | /has-symbols@1.0.3:
3458 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
3459 | engines: {node: '>= 0.4'}
3460 | dev: false
3461 |
3462 | /has-tostringtag@1.0.0:
3463 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
3464 | engines: {node: '>= 0.4'}
3465 | dependencies:
3466 | has-symbols: 1.0.3
3467 | dev: false
3468 |
3469 | /has@1.0.3:
3470 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
3471 | engines: {node: '>= 0.4.0'}
3472 | dependencies:
3473 | function-bind: 1.1.1
3474 | dev: false
3475 |
3476 | /ignore@5.2.4:
3477 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
3478 | engines: {node: '>= 4'}
3479 | dev: false
3480 |
3481 | /import-fresh@3.3.0:
3482 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
3483 | engines: {node: '>=6'}
3484 | dependencies:
3485 | parent-module: 1.0.1
3486 | resolve-from: 4.0.0
3487 | dev: false
3488 |
3489 | /imurmurhash@0.1.4:
3490 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
3491 | engines: {node: '>=0.8.19'}
3492 | dev: false
3493 |
3494 | /inflight@1.0.6:
3495 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
3496 | dependencies:
3497 | once: 1.4.0
3498 | wrappy: 1.0.2
3499 | dev: false
3500 |
3501 | /inherits@2.0.4:
3502 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
3503 | dev: false
3504 |
3505 | /internal-slot@1.0.5:
3506 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
3507 | engines: {node: '>= 0.4'}
3508 | dependencies:
3509 | get-intrinsic: 1.2.1
3510 | has: 1.0.3
3511 | side-channel: 1.0.4
3512 | dev: false
3513 |
3514 | /intl-messageformat@10.5.0:
3515 | resolution: {integrity: sha512-AvojYuOaRb6r2veOKfTVpxH9TrmjSdc5iR9R5RgBwrDZYSmAAFVT+QLbW3C4V7Qsg0OguMp67Q/EoUkxZzXRGw==}
3516 | dependencies:
3517 | '@formatjs/ecma402-abstract': 1.17.0
3518 | '@formatjs/fast-memoize': 2.2.0
3519 | '@formatjs/icu-messageformat-parser': 2.6.0
3520 | tslib: 2.6.2
3521 | dev: false
3522 |
3523 | /invariant@2.2.4:
3524 | resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
3525 | dependencies:
3526 | loose-envify: 1.4.0
3527 | dev: false
3528 |
3529 | /is-array-buffer@3.0.2:
3530 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
3531 | dependencies:
3532 | call-bind: 1.0.2
3533 | get-intrinsic: 1.2.1
3534 | is-typed-array: 1.1.12
3535 | dev: false
3536 |
3537 | /is-arrayish@0.3.2:
3538 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
3539 | dev: false
3540 |
3541 | /is-async-function@2.0.0:
3542 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
3543 | engines: {node: '>= 0.4'}
3544 | dependencies:
3545 | has-tostringtag: 1.0.0
3546 | dev: false
3547 |
3548 | /is-bigint@1.0.4:
3549 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
3550 | dependencies:
3551 | has-bigints: 1.0.2
3552 | dev: false
3553 |
3554 | /is-binary-path@2.1.0:
3555 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
3556 | engines: {node: '>=8'}
3557 | dependencies:
3558 | binary-extensions: 2.2.0
3559 | dev: false
3560 |
3561 | /is-boolean-object@1.1.2:
3562 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
3563 | engines: {node: '>= 0.4'}
3564 | dependencies:
3565 | call-bind: 1.0.2
3566 | has-tostringtag: 1.0.0
3567 | dev: false
3568 |
3569 | /is-callable@1.2.7:
3570 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
3571 | engines: {node: '>= 0.4'}
3572 | dev: false
3573 |
3574 | /is-core-module@2.13.0:
3575 | resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
3576 | dependencies:
3577 | has: 1.0.3
3578 | dev: false
3579 |
3580 | /is-date-object@1.0.5:
3581 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
3582 | engines: {node: '>= 0.4'}
3583 | dependencies:
3584 | has-tostringtag: 1.0.0
3585 | dev: false
3586 |
3587 | /is-extglob@2.1.1:
3588 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
3589 | engines: {node: '>=0.10.0'}
3590 | dev: false
3591 |
3592 | /is-finalizationregistry@1.0.2:
3593 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
3594 | dependencies:
3595 | call-bind: 1.0.2
3596 | dev: false
3597 |
3598 | /is-generator-function@1.0.10:
3599 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
3600 | engines: {node: '>= 0.4'}
3601 | dependencies:
3602 | has-tostringtag: 1.0.0
3603 | dev: false
3604 |
3605 | /is-glob@4.0.3:
3606 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
3607 | engines: {node: '>=0.10.0'}
3608 | dependencies:
3609 | is-extglob: 2.1.1
3610 | dev: false
3611 |
3612 | /is-map@2.0.2:
3613 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
3614 | dev: false
3615 |
3616 | /is-negative-zero@2.0.2:
3617 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
3618 | engines: {node: '>= 0.4'}
3619 | dev: false
3620 |
3621 | /is-number-object@1.0.7:
3622 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
3623 | engines: {node: '>= 0.4'}
3624 | dependencies:
3625 | has-tostringtag: 1.0.0
3626 | dev: false
3627 |
3628 | /is-number@7.0.0:
3629 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
3630 | engines: {node: '>=0.12.0'}
3631 | dev: false
3632 |
3633 | /is-path-inside@3.0.3:
3634 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
3635 | engines: {node: '>=8'}
3636 | dev: false
3637 |
3638 | /is-regex@1.1.4:
3639 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
3640 | engines: {node: '>= 0.4'}
3641 | dependencies:
3642 | call-bind: 1.0.2
3643 | has-tostringtag: 1.0.0
3644 | dev: false
3645 |
3646 | /is-set@2.0.2:
3647 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
3648 | dev: false
3649 |
3650 | /is-shared-array-buffer@1.0.2:
3651 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
3652 | dependencies:
3653 | call-bind: 1.0.2
3654 | dev: false
3655 |
3656 | /is-string@1.0.7:
3657 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
3658 | engines: {node: '>= 0.4'}
3659 | dependencies:
3660 | has-tostringtag: 1.0.0
3661 | dev: false
3662 |
3663 | /is-symbol@1.0.4:
3664 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
3665 | engines: {node: '>= 0.4'}
3666 | dependencies:
3667 | has-symbols: 1.0.3
3668 | dev: false
3669 |
3670 | /is-typed-array@1.1.12:
3671 | resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
3672 | engines: {node: '>= 0.4'}
3673 | dependencies:
3674 | which-typed-array: 1.1.11
3675 | dev: false
3676 |
3677 | /is-weakmap@2.0.1:
3678 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
3679 | dev: false
3680 |
3681 | /is-weakref@1.0.2:
3682 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
3683 | dependencies:
3684 | call-bind: 1.0.2
3685 | dev: false
3686 |
3687 | /is-weakset@2.0.2:
3688 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
3689 | dependencies:
3690 | call-bind: 1.0.2
3691 | get-intrinsic: 1.2.1
3692 | dev: false
3693 |
3694 | /isarray@2.0.5:
3695 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
3696 | dev: false
3697 |
3698 | /isexe@2.0.0:
3699 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
3700 | dev: false
3701 |
3702 | /iterator.prototype@1.1.0:
3703 | resolution: {integrity: sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw==}
3704 | dependencies:
3705 | define-properties: 1.2.0
3706 | get-intrinsic: 1.2.1
3707 | has-symbols: 1.0.3
3708 | has-tostringtag: 1.0.0
3709 | reflect.getprototypeof: 1.0.3
3710 | dev: false
3711 |
3712 | /jiti@1.19.3:
3713 | resolution: {integrity: sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==}
3714 | hasBin: true
3715 | dev: false
3716 |
3717 | /js-tokens@4.0.0:
3718 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
3719 | dev: false
3720 |
3721 | /js-yaml@4.1.0:
3722 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
3723 | hasBin: true
3724 | dependencies:
3725 | argparse: 2.0.1
3726 | dev: false
3727 |
3728 | /json-buffer@3.0.1:
3729 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
3730 | dev: false
3731 |
3732 | /json-schema-traverse@0.4.1:
3733 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
3734 | dev: false
3735 |
3736 | /json-stable-stringify-without-jsonify@1.0.1:
3737 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
3738 | dev: false
3739 |
3740 | /json5@1.0.2:
3741 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
3742 | hasBin: true
3743 | dependencies:
3744 | minimist: 1.2.8
3745 | dev: false
3746 |
3747 | /jsx-ast-utils@3.3.5:
3748 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
3749 | engines: {node: '>=4.0'}
3750 | dependencies:
3751 | array-includes: 3.1.6
3752 | array.prototype.flat: 1.3.1
3753 | object.assign: 4.1.4
3754 | object.values: 1.1.7
3755 | dev: false
3756 |
3757 | /keyv@4.5.3:
3758 | resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==}
3759 | dependencies:
3760 | json-buffer: 3.0.1
3761 | dev: false
3762 |
3763 | /language-subtag-registry@0.3.22:
3764 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
3765 | dev: false
3766 |
3767 | /language-tags@1.0.5:
3768 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
3769 | dependencies:
3770 | language-subtag-registry: 0.3.22
3771 | dev: false
3772 |
3773 | /levn@0.4.1:
3774 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
3775 | engines: {node: '>= 0.8.0'}
3776 | dependencies:
3777 | prelude-ls: 1.2.1
3778 | type-check: 0.4.0
3779 | dev: false
3780 |
3781 | /lilconfig@2.1.0:
3782 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
3783 | engines: {node: '>=10'}
3784 | dev: false
3785 |
3786 | /lines-and-columns@1.2.4:
3787 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
3788 | dev: false
3789 |
3790 | /locate-path@6.0.0:
3791 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
3792 | engines: {node: '>=10'}
3793 | dependencies:
3794 | p-locate: 5.0.0
3795 | dev: false
3796 |
3797 | /lodash.foreach@4.5.0:
3798 | resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
3799 | dev: false
3800 |
3801 | /lodash.get@4.4.2:
3802 | resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
3803 | dev: false
3804 |
3805 | /lodash.kebabcase@4.1.1:
3806 | resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
3807 | dev: false
3808 |
3809 | /lodash.mapkeys@4.6.0:
3810 | resolution: {integrity: sha512-0Al+hxpYvONWtg+ZqHpa/GaVzxuN3V7Xeo2p+bY06EaK/n+Y9R7nBePPN2o1LxmL0TWQSwP8LYZ008/hc9JzhA==}
3811 | dev: false
3812 |
3813 | /lodash.merge@4.6.2:
3814 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
3815 | dev: false
3816 |
3817 | /lodash.omit@4.5.0:
3818 | resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==}
3819 | dev: false
3820 |
3821 | /loose-envify@1.4.0:
3822 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
3823 | hasBin: true
3824 | dependencies:
3825 | js-tokens: 4.0.0
3826 | dev: false
3827 |
3828 | /lru-cache@6.0.0:
3829 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
3830 | engines: {node: '>=10'}
3831 | dependencies:
3832 | yallist: 4.0.0
3833 | dev: false
3834 |
3835 | /merge2@1.4.1:
3836 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
3837 | engines: {node: '>= 8'}
3838 | dev: false
3839 |
3840 | /micromatch@4.0.5:
3841 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
3842 | engines: {node: '>=8.6'}
3843 | dependencies:
3844 | braces: 3.0.2
3845 | picomatch: 2.3.1
3846 | dev: false
3847 |
3848 | /minimatch@3.1.2:
3849 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
3850 | dependencies:
3851 | brace-expansion: 1.1.11
3852 | dev: false
3853 |
3854 | /minimist@1.2.8:
3855 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
3856 | dev: false
3857 |
3858 | /ms@2.1.2:
3859 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
3860 | dev: false
3861 |
3862 | /ms@2.1.3:
3863 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
3864 | dev: false
3865 |
3866 | /mz@2.7.0:
3867 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
3868 | dependencies:
3869 | any-promise: 1.3.0
3870 | object-assign: 4.1.1
3871 | thenify-all: 1.6.0
3872 | dev: false
3873 |
3874 | /nanoid@3.3.6:
3875 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
3876 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
3877 | hasBin: true
3878 | dev: false
3879 |
3880 | /natural-compare@1.4.0:
3881 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
3882 | dev: false
3883 |
3884 | /next-themes@0.2.1(next@13.4.19)(react-dom@18.2.0)(react@18.2.0):
3885 | resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
3886 | peerDependencies:
3887 | next: '*'
3888 | react: '*'
3889 | react-dom: '*'
3890 | dependencies:
3891 | next: 13.4.19(react-dom@18.2.0)(react@18.2.0)
3892 | react: 18.2.0
3893 | react-dom: 18.2.0(react@18.2.0)
3894 | dev: false
3895 |
3896 | /next@13.4.19(react-dom@18.2.0)(react@18.2.0):
3897 | resolution: {integrity: sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==}
3898 | engines: {node: '>=16.8.0'}
3899 | hasBin: true
3900 | peerDependencies:
3901 | '@opentelemetry/api': ^1.1.0
3902 | react: ^18.2.0
3903 | react-dom: ^18.2.0
3904 | sass: ^1.3.0
3905 | peerDependenciesMeta:
3906 | '@opentelemetry/api':
3907 | optional: true
3908 | sass:
3909 | optional: true
3910 | dependencies:
3911 | '@next/env': 13.4.19
3912 | '@swc/helpers': 0.5.1
3913 | busboy: 1.6.0
3914 | caniuse-lite: 1.0.30001524
3915 | postcss: 8.4.14
3916 | react: 18.2.0
3917 | react-dom: 18.2.0(react@18.2.0)
3918 | styled-jsx: 5.1.1(react@18.2.0)
3919 | watchpack: 2.4.0
3920 | zod: 3.21.4
3921 | optionalDependencies:
3922 | '@next/swc-darwin-arm64': 13.4.19
3923 | '@next/swc-darwin-x64': 13.4.19
3924 | '@next/swc-linux-arm64-gnu': 13.4.19
3925 | '@next/swc-linux-arm64-musl': 13.4.19
3926 | '@next/swc-linux-x64-gnu': 13.4.19
3927 | '@next/swc-linux-x64-musl': 13.4.19
3928 | '@next/swc-win32-arm64-msvc': 13.4.19
3929 | '@next/swc-win32-ia32-msvc': 13.4.19
3930 | '@next/swc-win32-x64-msvc': 13.4.19
3931 | transitivePeerDependencies:
3932 | - '@babel/core'
3933 | - babel-plugin-macros
3934 | dev: false
3935 |
3936 | /node-releases@2.0.13:
3937 | resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
3938 | dev: false
3939 |
3940 | /normalize-path@3.0.0:
3941 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
3942 | engines: {node: '>=0.10.0'}
3943 | dev: false
3944 |
3945 | /normalize-range@0.1.2:
3946 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
3947 | engines: {node: '>=0.10.0'}
3948 | dev: false
3949 |
3950 | /object-assign@4.1.1:
3951 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
3952 | engines: {node: '>=0.10.0'}
3953 | dev: false
3954 |
3955 | /object-hash@3.0.0:
3956 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
3957 | engines: {node: '>= 6'}
3958 | dev: false
3959 |
3960 | /object-inspect@1.12.3:
3961 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
3962 | dev: false
3963 |
3964 | /object-keys@1.1.1:
3965 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
3966 | engines: {node: '>= 0.4'}
3967 | dev: false
3968 |
3969 | /object.assign@4.1.4:
3970 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
3971 | engines: {node: '>= 0.4'}
3972 | dependencies:
3973 | call-bind: 1.0.2
3974 | define-properties: 1.2.0
3975 | has-symbols: 1.0.3
3976 | object-keys: 1.1.1
3977 | dev: false
3978 |
3979 | /object.entries@1.1.7:
3980 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
3981 | engines: {node: '>= 0.4'}
3982 | dependencies:
3983 | call-bind: 1.0.2
3984 | define-properties: 1.2.0
3985 | es-abstract: 1.22.1
3986 | dev: false
3987 |
3988 | /object.fromentries@2.0.7:
3989 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
3990 | engines: {node: '>= 0.4'}
3991 | dependencies:
3992 | call-bind: 1.0.2
3993 | define-properties: 1.2.0
3994 | es-abstract: 1.22.1
3995 | dev: false
3996 |
3997 | /object.groupby@1.0.1:
3998 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
3999 | dependencies:
4000 | call-bind: 1.0.2
4001 | define-properties: 1.2.0
4002 | es-abstract: 1.22.1
4003 | get-intrinsic: 1.2.1
4004 | dev: false
4005 |
4006 | /object.hasown@1.1.3:
4007 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
4008 | dependencies:
4009 | define-properties: 1.2.0
4010 | es-abstract: 1.22.1
4011 | dev: false
4012 |
4013 | /object.values@1.1.7:
4014 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
4015 | engines: {node: '>= 0.4'}
4016 | dependencies:
4017 | call-bind: 1.0.2
4018 | define-properties: 1.2.0
4019 | es-abstract: 1.22.1
4020 | dev: false
4021 |
4022 | /once@1.4.0:
4023 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
4024 | dependencies:
4025 | wrappy: 1.0.2
4026 | dev: false
4027 |
4028 | /optionator@0.9.3:
4029 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
4030 | engines: {node: '>= 0.8.0'}
4031 | dependencies:
4032 | '@aashutoshrathi/word-wrap': 1.2.6
4033 | deep-is: 0.1.4
4034 | fast-levenshtein: 2.0.6
4035 | levn: 0.4.1
4036 | prelude-ls: 1.2.1
4037 | type-check: 0.4.0
4038 | dev: false
4039 |
4040 | /p-limit@3.1.0:
4041 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
4042 | engines: {node: '>=10'}
4043 | dependencies:
4044 | yocto-queue: 0.1.0
4045 | dev: false
4046 |
4047 | /p-locate@5.0.0:
4048 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
4049 | engines: {node: '>=10'}
4050 | dependencies:
4051 | p-limit: 3.1.0
4052 | dev: false
4053 |
4054 | /parent-module@1.0.1:
4055 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
4056 | engines: {node: '>=6'}
4057 | dependencies:
4058 | callsites: 3.1.0
4059 | dev: false
4060 |
4061 | /path-exists@4.0.0:
4062 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
4063 | engines: {node: '>=8'}
4064 | dev: false
4065 |
4066 | /path-is-absolute@1.0.1:
4067 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
4068 | engines: {node: '>=0.10.0'}
4069 | dev: false
4070 |
4071 | /path-key@3.1.1:
4072 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
4073 | engines: {node: '>=8'}
4074 | dev: false
4075 |
4076 | /path-parse@1.0.7:
4077 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
4078 | dev: false
4079 |
4080 | /path-type@4.0.0:
4081 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
4082 | engines: {node: '>=8'}
4083 | dev: false
4084 |
4085 | /picocolors@1.0.0:
4086 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
4087 | dev: false
4088 |
4089 | /picomatch@2.3.1:
4090 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
4091 | engines: {node: '>=8.6'}
4092 | dev: false
4093 |
4094 | /pify@2.3.0:
4095 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
4096 | engines: {node: '>=0.10.0'}
4097 | dev: false
4098 |
4099 | /pirates@4.0.6:
4100 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
4101 | engines: {node: '>= 6'}
4102 | dev: false
4103 |
4104 | /postcss-import@15.1.0(postcss@8.4.28):
4105 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
4106 | engines: {node: '>=14.0.0'}
4107 | peerDependencies:
4108 | postcss: ^8.0.0
4109 | dependencies:
4110 | postcss: 8.4.28
4111 | postcss-value-parser: 4.2.0
4112 | read-cache: 1.0.0
4113 | resolve: 1.22.4
4114 | dev: false
4115 |
4116 | /postcss-js@4.0.1(postcss@8.4.28):
4117 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
4118 | engines: {node: ^12 || ^14 || >= 16}
4119 | peerDependencies:
4120 | postcss: ^8.4.21
4121 | dependencies:
4122 | camelcase-css: 2.0.1
4123 | postcss: 8.4.28
4124 | dev: false
4125 |
4126 | /postcss-load-config@4.0.1(postcss@8.4.28):
4127 | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
4128 | engines: {node: '>= 14'}
4129 | peerDependencies:
4130 | postcss: '>=8.0.9'
4131 | ts-node: '>=9.0.0'
4132 | peerDependenciesMeta:
4133 | postcss:
4134 | optional: true
4135 | ts-node:
4136 | optional: true
4137 | dependencies:
4138 | lilconfig: 2.1.0
4139 | postcss: 8.4.28
4140 | yaml: 2.3.2
4141 | dev: false
4142 |
4143 | /postcss-nested@6.0.1(postcss@8.4.28):
4144 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
4145 | engines: {node: '>=12.0'}
4146 | peerDependencies:
4147 | postcss: ^8.2.14
4148 | dependencies:
4149 | postcss: 8.4.28
4150 | postcss-selector-parser: 6.0.13
4151 | dev: false
4152 |
4153 | /postcss-selector-parser@6.0.13:
4154 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
4155 | engines: {node: '>=4'}
4156 | dependencies:
4157 | cssesc: 3.0.0
4158 | util-deprecate: 1.0.2
4159 | dev: false
4160 |
4161 | /postcss-value-parser@4.2.0:
4162 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
4163 | dev: false
4164 |
4165 | /postcss@8.4.14:
4166 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
4167 | engines: {node: ^10 || ^12 || >=14}
4168 | dependencies:
4169 | nanoid: 3.3.6
4170 | picocolors: 1.0.0
4171 | source-map-js: 1.0.2
4172 | dev: false
4173 |
4174 | /postcss@8.4.28:
4175 | resolution: {integrity: sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==}
4176 | engines: {node: ^10 || ^12 || >=14}
4177 | dependencies:
4178 | nanoid: 3.3.6
4179 | picocolors: 1.0.0
4180 | source-map-js: 1.0.2
4181 | dev: false
4182 |
4183 | /prelude-ls@1.2.1:
4184 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
4185 | engines: {node: '>= 0.8.0'}
4186 | dev: false
4187 |
4188 | /prettier-plugin-tailwindcss@0.5.3(prettier@3.0.3):
4189 | resolution: {integrity: sha512-M5K80V21yM+CTm/FEFYRv9/9LyInYbCSXpIoPAKMm8zy89IOwdiA2e4JVbcO7tvRtAQWz32zdj7/WKcsmFyAVg==}
4190 | engines: {node: '>=14.21.3'}
4191 | peerDependencies:
4192 | '@ianvs/prettier-plugin-sort-imports': '*'
4193 | '@prettier/plugin-pug': '*'
4194 | '@shopify/prettier-plugin-liquid': '*'
4195 | '@shufo/prettier-plugin-blade': '*'
4196 | '@trivago/prettier-plugin-sort-imports': '*'
4197 | prettier: ^3.0
4198 | prettier-plugin-astro: '*'
4199 | prettier-plugin-css-order: '*'
4200 | prettier-plugin-import-sort: '*'
4201 | prettier-plugin-jsdoc: '*'
4202 | prettier-plugin-marko: '*'
4203 | prettier-plugin-organize-attributes: '*'
4204 | prettier-plugin-organize-imports: '*'
4205 | prettier-plugin-style-order: '*'
4206 | prettier-plugin-svelte: '*'
4207 | prettier-plugin-twig-melody: '*'
4208 | peerDependenciesMeta:
4209 | '@ianvs/prettier-plugin-sort-imports':
4210 | optional: true
4211 | '@prettier/plugin-pug':
4212 | optional: true
4213 | '@shopify/prettier-plugin-liquid':
4214 | optional: true
4215 | '@shufo/prettier-plugin-blade':
4216 | optional: true
4217 | '@trivago/prettier-plugin-sort-imports':
4218 | optional: true
4219 | prettier-plugin-astro:
4220 | optional: true
4221 | prettier-plugin-css-order:
4222 | optional: true
4223 | prettier-plugin-import-sort:
4224 | optional: true
4225 | prettier-plugin-jsdoc:
4226 | optional: true
4227 | prettier-plugin-marko:
4228 | optional: true
4229 | prettier-plugin-organize-attributes:
4230 | optional: true
4231 | prettier-plugin-organize-imports:
4232 | optional: true
4233 | prettier-plugin-style-order:
4234 | optional: true
4235 | prettier-plugin-svelte:
4236 | optional: true
4237 | prettier-plugin-twig-melody:
4238 | optional: true
4239 | dependencies:
4240 | prettier: 3.0.3
4241 | dev: true
4242 |
4243 | /prettier@3.0.3:
4244 | resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==}
4245 | engines: {node: '>=14'}
4246 | hasBin: true
4247 | dev: true
4248 |
4249 | /prop-types@15.8.1:
4250 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
4251 | dependencies:
4252 | loose-envify: 1.4.0
4253 | object-assign: 4.1.1
4254 | react-is: 16.13.1
4255 | dev: false
4256 |
4257 | /punycode@2.3.0:
4258 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
4259 | engines: {node: '>=6'}
4260 | dev: false
4261 |
4262 | /queue-microtask@1.2.3:
4263 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
4264 | dev: false
4265 |
4266 | /react-dom@18.2.0(react@18.2.0):
4267 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
4268 | peerDependencies:
4269 | react: ^18.2.0
4270 | dependencies:
4271 | loose-envify: 1.4.0
4272 | react: 18.2.0
4273 | scheduler: 0.23.0
4274 | dev: false
4275 |
4276 | /react-is@16.13.1:
4277 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
4278 | dev: false
4279 |
4280 | /react-remove-scroll-bar@2.3.4(@types/react@18.2.21)(react@18.2.0):
4281 | resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
4282 | engines: {node: '>=10'}
4283 | peerDependencies:
4284 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
4285 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4286 | peerDependenciesMeta:
4287 | '@types/react':
4288 | optional: true
4289 | dependencies:
4290 | '@types/react': 18.2.21
4291 | react: 18.2.0
4292 | react-style-singleton: 2.2.1(@types/react@18.2.21)(react@18.2.0)
4293 | tslib: 2.6.2
4294 | dev: false
4295 |
4296 | /react-remove-scroll@2.5.6(@types/react@18.2.21)(react@18.2.0):
4297 | resolution: {integrity: sha512-bO856ad1uDYLefgArk559IzUNeQ6SWH4QnrevIUjH+GczV56giDfl3h0Idptf2oIKxQmd1p9BN25jleKodTALg==}
4298 | engines: {node: '>=10'}
4299 | peerDependencies:
4300 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
4301 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4302 | peerDependenciesMeta:
4303 | '@types/react':
4304 | optional: true
4305 | dependencies:
4306 | '@types/react': 18.2.21
4307 | react: 18.2.0
4308 | react-remove-scroll-bar: 2.3.4(@types/react@18.2.21)(react@18.2.0)
4309 | react-style-singleton: 2.2.1(@types/react@18.2.21)(react@18.2.0)
4310 | tslib: 2.6.2
4311 | use-callback-ref: 1.3.0(@types/react@18.2.21)(react@18.2.0)
4312 | use-sidecar: 1.1.2(@types/react@18.2.21)(react@18.2.0)
4313 | dev: false
4314 |
4315 | /react-style-singleton@2.2.1(@types/react@18.2.21)(react@18.2.0):
4316 | resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
4317 | engines: {node: '>=10'}
4318 | peerDependencies:
4319 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
4320 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4321 | peerDependenciesMeta:
4322 | '@types/react':
4323 | optional: true
4324 | dependencies:
4325 | '@types/react': 18.2.21
4326 | get-nonce: 1.0.1
4327 | invariant: 2.2.4
4328 | react: 18.2.0
4329 | tslib: 2.6.2
4330 | dev: false
4331 |
4332 | /react-textarea-autosize@8.5.3(@types/react@18.2.21)(react@18.2.0):
4333 | resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
4334 | engines: {node: '>=10'}
4335 | peerDependencies:
4336 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4337 | dependencies:
4338 | '@babel/runtime': 7.22.11
4339 | react: 18.2.0
4340 | use-composed-ref: 1.3.0(react@18.2.0)
4341 | use-latest: 1.2.1(@types/react@18.2.21)(react@18.2.0)
4342 | transitivePeerDependencies:
4343 | - '@types/react'
4344 | dev: false
4345 |
4346 | /react@18.2.0:
4347 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
4348 | engines: {node: '>=0.10.0'}
4349 | dependencies:
4350 | loose-envify: 1.4.0
4351 | dev: false
4352 |
4353 | /read-cache@1.0.0:
4354 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
4355 | dependencies:
4356 | pify: 2.3.0
4357 | dev: false
4358 |
4359 | /readdirp@3.6.0:
4360 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
4361 | engines: {node: '>=8.10.0'}
4362 | dependencies:
4363 | picomatch: 2.3.1
4364 | dev: false
4365 |
4366 | /reflect.getprototypeof@1.0.3:
4367 | resolution: {integrity: sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==}
4368 | engines: {node: '>= 0.4'}
4369 | dependencies:
4370 | call-bind: 1.0.2
4371 | define-properties: 1.2.0
4372 | es-abstract: 1.22.1
4373 | get-intrinsic: 1.2.1
4374 | globalthis: 1.0.3
4375 | which-builtin-type: 1.1.3
4376 | dev: false
4377 |
4378 | /regenerator-runtime@0.14.0:
4379 | resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
4380 | dev: false
4381 |
4382 | /regexp.prototype.flags@1.5.0:
4383 | resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
4384 | engines: {node: '>= 0.4'}
4385 | dependencies:
4386 | call-bind: 1.0.2
4387 | define-properties: 1.2.0
4388 | functions-have-names: 1.2.3
4389 | dev: false
4390 |
4391 | /resolve-from@4.0.0:
4392 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
4393 | engines: {node: '>=4'}
4394 | dev: false
4395 |
4396 | /resolve-pkg-maps@1.0.0:
4397 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
4398 | dev: false
4399 |
4400 | /resolve@1.22.4:
4401 | resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==}
4402 | hasBin: true
4403 | dependencies:
4404 | is-core-module: 2.13.0
4405 | path-parse: 1.0.7
4406 | supports-preserve-symlinks-flag: 1.0.0
4407 | dev: false
4408 |
4409 | /resolve@2.0.0-next.4:
4410 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
4411 | hasBin: true
4412 | dependencies:
4413 | is-core-module: 2.13.0
4414 | path-parse: 1.0.7
4415 | supports-preserve-symlinks-flag: 1.0.0
4416 | dev: false
4417 |
4418 | /reusify@1.0.4:
4419 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
4420 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
4421 | dev: false
4422 |
4423 | /rimraf@3.0.2:
4424 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
4425 | hasBin: true
4426 | dependencies:
4427 | glob: 7.2.3
4428 | dev: false
4429 |
4430 | /run-parallel@1.2.0:
4431 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
4432 | dependencies:
4433 | queue-microtask: 1.2.3
4434 | dev: false
4435 |
4436 | /safe-array-concat@1.0.0:
4437 | resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==}
4438 | engines: {node: '>=0.4'}
4439 | dependencies:
4440 | call-bind: 1.0.2
4441 | get-intrinsic: 1.2.1
4442 | has-symbols: 1.0.3
4443 | isarray: 2.0.5
4444 | dev: false
4445 |
4446 | /safe-regex-test@1.0.0:
4447 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
4448 | dependencies:
4449 | call-bind: 1.0.2
4450 | get-intrinsic: 1.2.1
4451 | is-regex: 1.1.4
4452 | dev: false
4453 |
4454 | /scheduler@0.23.0:
4455 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
4456 | dependencies:
4457 | loose-envify: 1.4.0
4458 | dev: false
4459 |
4460 | /scroll-into-view-if-needed@3.0.10:
4461 | resolution: {integrity: sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==}
4462 | dependencies:
4463 | compute-scroll-into-view: 3.0.3
4464 | dev: false
4465 |
4466 | /semver@6.3.1:
4467 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
4468 | hasBin: true
4469 | dev: false
4470 |
4471 | /semver@7.5.4:
4472 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
4473 | engines: {node: '>=10'}
4474 | hasBin: true
4475 | dependencies:
4476 | lru-cache: 6.0.0
4477 | dev: false
4478 |
4479 | /shebang-command@2.0.0:
4480 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
4481 | engines: {node: '>=8'}
4482 | dependencies:
4483 | shebang-regex: 3.0.0
4484 | dev: false
4485 |
4486 | /shebang-regex@3.0.0:
4487 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
4488 | engines: {node: '>=8'}
4489 | dev: false
4490 |
4491 | /side-channel@1.0.4:
4492 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
4493 | dependencies:
4494 | call-bind: 1.0.2
4495 | get-intrinsic: 1.2.1
4496 | object-inspect: 1.12.3
4497 | dev: false
4498 |
4499 | /simple-swizzle@0.2.2:
4500 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
4501 | dependencies:
4502 | is-arrayish: 0.3.2
4503 | dev: false
4504 |
4505 | /slash@3.0.0:
4506 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
4507 | engines: {node: '>=8'}
4508 | dev: false
4509 |
4510 | /source-map-js@1.0.2:
4511 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
4512 | engines: {node: '>=0.10.0'}
4513 | dev: false
4514 |
4515 | /streamsearch@1.1.0:
4516 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
4517 | engines: {node: '>=10.0.0'}
4518 | dev: false
4519 |
4520 | /string.prototype.matchall@4.0.9:
4521 | resolution: {integrity: sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==}
4522 | dependencies:
4523 | call-bind: 1.0.2
4524 | define-properties: 1.2.0
4525 | es-abstract: 1.22.1
4526 | get-intrinsic: 1.2.1
4527 | has-symbols: 1.0.3
4528 | internal-slot: 1.0.5
4529 | regexp.prototype.flags: 1.5.0
4530 | side-channel: 1.0.4
4531 | dev: false
4532 |
4533 | /string.prototype.trim@1.2.7:
4534 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
4535 | engines: {node: '>= 0.4'}
4536 | dependencies:
4537 | call-bind: 1.0.2
4538 | define-properties: 1.2.0
4539 | es-abstract: 1.22.1
4540 | dev: false
4541 |
4542 | /string.prototype.trimend@1.0.6:
4543 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
4544 | dependencies:
4545 | call-bind: 1.0.2
4546 | define-properties: 1.2.0
4547 | es-abstract: 1.22.1
4548 | dev: false
4549 |
4550 | /string.prototype.trimstart@1.0.6:
4551 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
4552 | dependencies:
4553 | call-bind: 1.0.2
4554 | define-properties: 1.2.0
4555 | es-abstract: 1.22.1
4556 | dev: false
4557 |
4558 | /strip-ansi@6.0.1:
4559 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
4560 | engines: {node: '>=8'}
4561 | dependencies:
4562 | ansi-regex: 5.0.1
4563 | dev: false
4564 |
4565 | /strip-bom@3.0.0:
4566 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
4567 | engines: {node: '>=4'}
4568 | dev: false
4569 |
4570 | /strip-json-comments@3.1.1:
4571 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
4572 | engines: {node: '>=8'}
4573 | dev: false
4574 |
4575 | /styled-jsx@5.1.1(react@18.2.0):
4576 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
4577 | engines: {node: '>= 12.0.0'}
4578 | peerDependencies:
4579 | '@babel/core': '*'
4580 | babel-plugin-macros: '*'
4581 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
4582 | peerDependenciesMeta:
4583 | '@babel/core':
4584 | optional: true
4585 | babel-plugin-macros:
4586 | optional: true
4587 | dependencies:
4588 | client-only: 0.0.1
4589 | react: 18.2.0
4590 | dev: false
4591 |
4592 | /sucrase@3.34.0:
4593 | resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==}
4594 | engines: {node: '>=8'}
4595 | hasBin: true
4596 | dependencies:
4597 | '@jridgewell/gen-mapping': 0.3.3
4598 | commander: 4.1.1
4599 | glob: 7.1.6
4600 | lines-and-columns: 1.2.4
4601 | mz: 2.7.0
4602 | pirates: 4.0.6
4603 | ts-interface-checker: 0.1.13
4604 | dev: false
4605 |
4606 | /supports-color@7.2.0:
4607 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
4608 | engines: {node: '>=8'}
4609 | dependencies:
4610 | has-flag: 4.0.0
4611 | dev: false
4612 |
4613 | /supports-preserve-symlinks-flag@1.0.0:
4614 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
4615 | engines: {node: '>= 0.4'}
4616 | dev: false
4617 |
4618 | /tailwind-merge@1.14.0:
4619 | resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
4620 | dev: false
4621 |
4622 | /tailwind-variants@0.1.13(tailwindcss@3.3.3):
4623 | resolution: {integrity: sha512-G2M7M74hjq0nAo6QdEfUJgF+0t9DecFUw91GC1P9YTnwMcfB3uChT5U5e2DuNU42xoOz15lzo7r0mPdMzZkylg==}
4624 | engines: {node: '>=16.x', pnpm: '>=7.x'}
4625 | peerDependencies:
4626 | tailwindcss: '*'
4627 | dependencies:
4628 | tailwind-merge: 1.14.0
4629 | tailwindcss: 3.3.3
4630 | dev: false
4631 |
4632 | /tailwindcss@3.3.3:
4633 | resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
4634 | engines: {node: '>=14.0.0'}
4635 | hasBin: true
4636 | dependencies:
4637 | '@alloc/quick-lru': 5.2.0
4638 | arg: 5.0.2
4639 | chokidar: 3.5.3
4640 | didyoumean: 1.2.2
4641 | dlv: 1.1.3
4642 | fast-glob: 3.3.1
4643 | glob-parent: 6.0.2
4644 | is-glob: 4.0.3
4645 | jiti: 1.19.3
4646 | lilconfig: 2.1.0
4647 | micromatch: 4.0.5
4648 | normalize-path: 3.0.0
4649 | object-hash: 3.0.0
4650 | picocolors: 1.0.0
4651 | postcss: 8.4.28
4652 | postcss-import: 15.1.0(postcss@8.4.28)
4653 | postcss-js: 4.0.1(postcss@8.4.28)
4654 | postcss-load-config: 4.0.1(postcss@8.4.28)
4655 | postcss-nested: 6.0.1(postcss@8.4.28)
4656 | postcss-selector-parser: 6.0.13
4657 | resolve: 1.22.4
4658 | sucrase: 3.34.0
4659 | transitivePeerDependencies:
4660 | - ts-node
4661 | dev: false
4662 |
4663 | /tapable@2.2.1:
4664 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
4665 | engines: {node: '>=6'}
4666 | dev: false
4667 |
4668 | /text-table@0.2.0:
4669 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
4670 | dev: false
4671 |
4672 | /thenify-all@1.6.0:
4673 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
4674 | engines: {node: '>=0.8'}
4675 | dependencies:
4676 | thenify: 3.3.1
4677 | dev: false
4678 |
4679 | /thenify@3.3.1:
4680 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
4681 | dependencies:
4682 | any-promise: 1.3.0
4683 | dev: false
4684 |
4685 | /to-regex-range@5.0.1:
4686 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
4687 | engines: {node: '>=8.0'}
4688 | dependencies:
4689 | is-number: 7.0.0
4690 | dev: false
4691 |
4692 | /ts-api-utils@1.0.2(typescript@5.2.2):
4693 | resolution: {integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==}
4694 | engines: {node: '>=16.13.0'}
4695 | peerDependencies:
4696 | typescript: '>=4.2.0'
4697 | dependencies:
4698 | typescript: 5.2.2
4699 | dev: false
4700 |
4701 | /ts-interface-checker@0.1.13:
4702 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
4703 | dev: false
4704 |
4705 | /tsconfig-paths@3.14.2:
4706 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
4707 | dependencies:
4708 | '@types/json5': 0.0.29
4709 | json5: 1.0.2
4710 | minimist: 1.2.8
4711 | strip-bom: 3.0.0
4712 | dev: false
4713 |
4714 | /tslib@2.6.2:
4715 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
4716 | dev: false
4717 |
4718 | /type-check@0.4.0:
4719 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
4720 | engines: {node: '>= 0.8.0'}
4721 | dependencies:
4722 | prelude-ls: 1.2.1
4723 | dev: false
4724 |
4725 | /type-fest@0.20.2:
4726 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
4727 | engines: {node: '>=10'}
4728 | dev: false
4729 |
4730 | /typed-array-buffer@1.0.0:
4731 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
4732 | engines: {node: '>= 0.4'}
4733 | dependencies:
4734 | call-bind: 1.0.2
4735 | get-intrinsic: 1.2.1
4736 | is-typed-array: 1.1.12
4737 | dev: false
4738 |
4739 | /typed-array-byte-length@1.0.0:
4740 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
4741 | engines: {node: '>= 0.4'}
4742 | dependencies:
4743 | call-bind: 1.0.2
4744 | for-each: 0.3.3
4745 | has-proto: 1.0.1
4746 | is-typed-array: 1.1.12
4747 | dev: false
4748 |
4749 | /typed-array-byte-offset@1.0.0:
4750 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
4751 | engines: {node: '>= 0.4'}
4752 | dependencies:
4753 | available-typed-arrays: 1.0.5
4754 | call-bind: 1.0.2
4755 | for-each: 0.3.3
4756 | has-proto: 1.0.1
4757 | is-typed-array: 1.1.12
4758 | dev: false
4759 |
4760 | /typed-array-length@1.0.4:
4761 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
4762 | dependencies:
4763 | call-bind: 1.0.2
4764 | for-each: 0.3.3
4765 | is-typed-array: 1.1.12
4766 | dev: false
4767 |
4768 | /typescript@5.2.2:
4769 | resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
4770 | engines: {node: '>=14.17'}
4771 | hasBin: true
4772 | dev: false
4773 |
4774 | /unbox-primitive@1.0.2:
4775 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
4776 | dependencies:
4777 | call-bind: 1.0.2
4778 | has-bigints: 1.0.2
4779 | has-symbols: 1.0.3
4780 | which-boxed-primitive: 1.0.2
4781 | dev: false
4782 |
4783 | /update-browserslist-db@1.0.11(browserslist@4.21.10):
4784 | resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
4785 | hasBin: true
4786 | peerDependencies:
4787 | browserslist: '>= 4.21.0'
4788 | dependencies:
4789 | browserslist: 4.21.10
4790 | escalade: 3.1.1
4791 | picocolors: 1.0.0
4792 | dev: false
4793 |
4794 | /uri-js@4.4.1:
4795 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
4796 | dependencies:
4797 | punycode: 2.3.0
4798 | dev: false
4799 |
4800 | /use-callback-ref@1.3.0(@types/react@18.2.21)(react@18.2.0):
4801 | resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
4802 | engines: {node: '>=10'}
4803 | peerDependencies:
4804 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
4805 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4806 | peerDependenciesMeta:
4807 | '@types/react':
4808 | optional: true
4809 | dependencies:
4810 | '@types/react': 18.2.21
4811 | react: 18.2.0
4812 | tslib: 2.6.2
4813 | dev: false
4814 |
4815 | /use-composed-ref@1.3.0(react@18.2.0):
4816 | resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
4817 | peerDependencies:
4818 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4819 | dependencies:
4820 | react: 18.2.0
4821 | dev: false
4822 |
4823 | /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.21)(react@18.2.0):
4824 | resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
4825 | peerDependencies:
4826 | '@types/react': '*'
4827 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4828 | peerDependenciesMeta:
4829 | '@types/react':
4830 | optional: true
4831 | dependencies:
4832 | '@types/react': 18.2.21
4833 | react: 18.2.0
4834 | dev: false
4835 |
4836 | /use-latest@1.2.1(@types/react@18.2.21)(react@18.2.0):
4837 | resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
4838 | peerDependencies:
4839 | '@types/react': '*'
4840 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4841 | peerDependenciesMeta:
4842 | '@types/react':
4843 | optional: true
4844 | dependencies:
4845 | '@types/react': 18.2.21
4846 | react: 18.2.0
4847 | use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@18.2.0)
4848 | dev: false
4849 |
4850 | /use-sidecar@1.1.2(@types/react@18.2.21)(react@18.2.0):
4851 | resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
4852 | engines: {node: '>=10'}
4853 | peerDependencies:
4854 | '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
4855 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
4856 | peerDependenciesMeta:
4857 | '@types/react':
4858 | optional: true
4859 | dependencies:
4860 | '@types/react': 18.2.21
4861 | detect-node-es: 1.1.0
4862 | react: 18.2.0
4863 | tslib: 2.6.2
4864 | dev: false
4865 |
4866 | /util-deprecate@1.0.2:
4867 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
4868 | dev: false
4869 |
4870 | /watchpack@2.4.0:
4871 | resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
4872 | engines: {node: '>=10.13.0'}
4873 | dependencies:
4874 | glob-to-regexp: 0.4.1
4875 | graceful-fs: 4.2.11
4876 | dev: false
4877 |
4878 | /which-boxed-primitive@1.0.2:
4879 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
4880 | dependencies:
4881 | is-bigint: 1.0.4
4882 | is-boolean-object: 1.1.2
4883 | is-number-object: 1.0.7
4884 | is-string: 1.0.7
4885 | is-symbol: 1.0.4
4886 | dev: false
4887 |
4888 | /which-builtin-type@1.1.3:
4889 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
4890 | engines: {node: '>= 0.4'}
4891 | dependencies:
4892 | function.prototype.name: 1.1.6
4893 | has-tostringtag: 1.0.0
4894 | is-async-function: 2.0.0
4895 | is-date-object: 1.0.5
4896 | is-finalizationregistry: 1.0.2
4897 | is-generator-function: 1.0.10
4898 | is-regex: 1.1.4
4899 | is-weakref: 1.0.2
4900 | isarray: 2.0.5
4901 | which-boxed-primitive: 1.0.2
4902 | which-collection: 1.0.1
4903 | which-typed-array: 1.1.11
4904 | dev: false
4905 |
4906 | /which-collection@1.0.1:
4907 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
4908 | dependencies:
4909 | is-map: 2.0.2
4910 | is-set: 2.0.2
4911 | is-weakmap: 2.0.1
4912 | is-weakset: 2.0.2
4913 | dev: false
4914 |
4915 | /which-typed-array@1.1.11:
4916 | resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==}
4917 | engines: {node: '>= 0.4'}
4918 | dependencies:
4919 | available-typed-arrays: 1.0.5
4920 | call-bind: 1.0.2
4921 | for-each: 0.3.3
4922 | gopd: 1.0.1
4923 | has-tostringtag: 1.0.0
4924 | dev: false
4925 |
4926 | /which@2.0.2:
4927 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
4928 | engines: {node: '>= 8'}
4929 | hasBin: true
4930 | dependencies:
4931 | isexe: 2.0.0
4932 | dev: false
4933 |
4934 | /wrappy@1.0.2:
4935 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
4936 | dev: false
4937 |
4938 | /yallist@4.0.0:
4939 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
4940 | dev: false
4941 |
4942 | /yaml@2.3.2:
4943 | resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
4944 | engines: {node: '>= 14'}
4945 | dev: false
4946 |
4947 | /yocto-queue@0.1.0:
4948 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
4949 | engines: {node: '>=10'}
4950 | dev: false
4951 |
4952 | /zod@3.21.4:
4953 | resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
4954 | dev: false
4955 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/images/shoe.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HamedBahram/next-ui/dc4764a3bd10cfc86b6bfc867de70b58b903a3c0/public/images/shoe.webp
--------------------------------------------------------------------------------
/public/next.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from 'tailwindcss'
2 | import { nextui } from '@nextui-org/react'
3 |
4 | const config: Config = {
5 | content: [
6 | './pages/**/*.{js,ts,jsx,tsx,mdx}',
7 | './components/**/*.{js,ts,jsx,tsx,mdx}',
8 | './app/**/*.{js,ts,jsx,tsx,mdx}',
9 | './node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
10 | ],
11 | darkMode: 'class',
12 | theme: {
13 | container: {
14 | center: true,
15 | padding: {
16 | DEFAULT: '1rem',
17 | md: '1.5rem',
18 | lg: '2rem'
19 | }
20 | }
21 | },
22 | plugins: [
23 | nextui({
24 | themes: {
25 | light: {
26 | layout: {}, // light theme layout tokens
27 | colors: {} // light theme colors
28 | },
29 | dark: {
30 | layout: {}, // dark theme layout tokens
31 | colors: {} // dark theme colors
32 | },
33 | modern: {
34 | extend: 'dark', // <- inherit default values from dark theme
35 | colors: {
36 | background: '#0D001A',
37 | foreground: '#ffffff',
38 | primary: {
39 | 50: '#3B096C',
40 | 100: '#520F83',
41 | 200: '#7318A2',
42 | 300: '#9823C2',
43 | 400: '#c031e2',
44 | 500: '#DD62ED',
45 | 600: '#F182F6',
46 | 700: '#FCADF9',
47 | 800: '#FDD5F9',
48 | 900: '#FEECFE',
49 | DEFAULT: '#DD62ED',
50 | foreground: '#ffffff'
51 | },
52 | focus: '#F182F6'
53 | },
54 | layout: {
55 | disabledOpacity: '0.3',
56 | radius: {
57 | small: '1px',
58 | medium: '2px',
59 | large: '4px'
60 | },
61 | borderWidth: {
62 | small: '1px',
63 | medium: '2px',
64 | large: '3px'
65 | }
66 | }
67 | }
68 | }
69 | })
70 | ]
71 | }
72 | export default config
73 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": true,
8 | "noEmit": true,
9 | "esModuleInterop": true,
10 | "module": "esnext",
11 | "moduleResolution": "bundler",
12 | "resolveJsonModule": true,
13 | "isolatedModules": true,
14 | "jsx": "preserve",
15 | "incremental": true,
16 | "plugins": [
17 | {
18 | "name": "next"
19 | }
20 | ],
21 | "paths": {
22 | "@/*": ["./*"]
23 | }
24 | },
25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26 | "exclude": ["node_modules"]
27 | }
28 |
--------------------------------------------------------------------------------