diff --git a/Makefile b/Makefile
index f53b9f1..811cf4b 100644
--- a/Makefile
+++ b/Makefile
@@ -87,7 +87,7 @@ docker-logs:
docker compose logs -f
clean:
- rm -rf node_modules backend/node_modules frontend/node_modules legacy-frontend/node_modules legacy-frontend/.next
+ rm -rf node_modules backend/node_modules frontend/node_modules
clean-db:
rm -f data/data.db
diff --git a/legacy-frontend/.env b/legacy-frontend/.env
deleted file mode 100644
index f79492d..0000000
--- a/legacy-frontend/.env
+++ /dev/null
@@ -1,4 +0,0 @@
-
-# The URL where your API can be reached on the web.
-NEXT_PUBLIC_DIRECTUS_API_URL="http://localhost:8055"
-NEXT_PUBLIC_GLOBALS_ID="4f8d9e66-ec95-4bdd-a5e7-34df8ea68a45"
diff --git a/legacy-frontend/.env.production b/legacy-frontend/.env.production
deleted file mode 100644
index be8d377..0000000
--- a/legacy-frontend/.env.production
+++ /dev/null
@@ -1,4 +0,0 @@
-
-# The URL where your API can be reached on the web.
-NEXT_PUBLIC_DIRECTUS_API_URL=https://admin.pca-pijac.dev.civokram.com
-NEXT_PUBLIC_GLOBALS_ID=4f8d9e66-ec95-4bdd-a5e7-34df8ea68a45
diff --git a/legacy-frontend/.gitignore b/legacy-frontend/.gitignore
deleted file mode 100644
index 8f322f0..0000000
--- a/legacy-frontend/.gitignore
+++ /dev/null
@@ -1,35 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# next.js
-/.next/
-/out/
-
-# production
-/build
-
-# misc
-.DS_Store
-*.pem
-
-# debug
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-
-# local env files
-.env*.local
-
-# vercel
-.vercel
-
-# typescript
-*.tsbuildinfo
-next-env.d.ts
diff --git a/legacy-frontend/components/footer.js b/legacy-frontend/components/footer.js
deleted file mode 100644
index 09dbd17..0000000
--- a/legacy-frontend/components/footer.js
+++ /dev/null
@@ -1,40 +0,0 @@
-import { Link } from '@chakra-ui/next-js'
-import { Box, Flex, Stack, Text, useColorModeValue } from '@chakra-ui/react'
-
-export default function Footer({ menu, globals }) {
- return (
-
-
-
- {globals.copyright}
-
-
- )
-}
-
-const FooterMenu = ({ items }) => {
- const linkColor = useColorModeValue('gray.600', 'gray.200')
- const linkHoverColor = useColorModeValue('gray.800', 'white')
-
- return (
-
- {items.map((navItem) => (
-
-
- {navItem.label}
-
-
- ))}
-
- )
-}
diff --git a/legacy-frontend/components/header.js b/legacy-frontend/components/header.js
deleted file mode 100644
index 81f7b41..0000000
--- a/legacy-frontend/components/header.js
+++ /dev/null
@@ -1,53 +0,0 @@
-import { MoonIcon, SunIcon } from '@chakra-ui/icons'
-import { Box, Button, Flex, Heading, Spacer, Stack, useColorMode, useColorModeValue } from '@chakra-ui/react'
-import { Link } from '@chakra-ui/next-js'
-
-export default function Header({ menu, globals }) {
- const { colorMode, toggleColorMode } = useColorMode()
-
- return (
- <>
-
-
- {globals.site_name}
-
-
-
-
-
-
-
-
-
-
-
- >
- )
-}
-
-const MainMenu = ({ items }) => {
- const linkColor = useColorModeValue('gray.600', 'gray.200')
- const linkHoverColor = useColorModeValue('gray.800', 'white')
-
- return (
-
- {items.map((navItem) => (
-
-
- {navItem.label}
-
-
- ))}
-
- )
-}
diff --git a/legacy-frontend/components/layout.js b/legacy-frontend/components/layout.js
deleted file mode 100644
index d24fa17..0000000
--- a/legacy-frontend/components/layout.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import { Container, Box } from '@chakra-ui/react'
-import Footer from '~/components/footer'
-import Header from '~/components/header'
-
-export default function Layout({ globals, menus, children }) {
- return (
-
- m.id === 'MAIN_MENU')} globals={globals} />
- {children}
-
- )
-}
diff --git a/legacy-frontend/components/pagination.js b/legacy-frontend/components/pagination.js
deleted file mode 100644
index 27c7206..0000000
--- a/legacy-frontend/components/pagination.js
+++ /dev/null
@@ -1,78 +0,0 @@
-import { Flex, Link, Select, Text } from '@chakra-ui/react'
-import clsx from 'clsx'
-import NextLink from 'next/link'
-import { useRouter } from 'next/router'
-import { Fragment } from 'react'
-
-export default function Pagination({ page = 1, itemsPerPage = 12, totalItems = 0, limit = 3 }) {
- const router = useRouter()
-
- const totalPages = Math.ceil(totalItems / itemsPerPage)
-
- if (totalPages === 1) return <>>
-
- const links = new Array(totalPages)
- .fill(true)
- .map((_v, i) => (i < limit || i >= totalPages - limit || (i >= page - limit && i < page + limit - 1)) && i + 1)
- .filter((i) => i !== false)
-
- return (
- <>
-
-
- ← Previous
-
-
- {links.map((v, i) => (
-
- {v > 1 && v - 1 !== links[i - 1] && (
-
- …
-
- )}
-
- {v}
-
-
- ))}
-
-
-
- Next →
-
-
- >
- )
-}
diff --git a/legacy-frontend/jsconfig.json b/legacy-frontend/jsconfig.json
deleted file mode 100644
index 555103d..0000000
--- a/legacy-frontend/jsconfig.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "compilerOptions": {
- "paths": {
- "~/*": ["./*"]
- }
- }
-}
diff --git a/legacy-frontend/next.config.js b/legacy-frontend/next.config.js
deleted file mode 100644
index 767719f..0000000
--- a/legacy-frontend/next.config.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/** @type {import('next').NextConfig} */
-const nextConfig = {}
-
-module.exports = nextConfig
diff --git a/legacy-frontend/package.json b/legacy-frontend/package.json
deleted file mode 100644
index 1f510fb..0000000
--- a/legacy-frontend/package.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "name": "frontend",
- "version": "0.1.0",
- "private": true,
- "engines": {
- "node": ">=22",
- "pnpm": ">=10"
- },
- "packageManager": "pnpm@10.33.2",
- "scripts": {
- "dev": "next dev",
- "build": "next build",
- "start": "next start",
- "lint": "next lint"
- },
- "dependencies": {
- "@chakra-ui/icons": "2.0.19",
- "@chakra-ui/next-js": "2.1.4",
- "@chakra-ui/react": "2.7.1",
- "@emotion/react": "11.11.1",
- "@emotion/styled": "11.11.0",
- "@react-hookz/web": "23.1.0",
- "clsx": "1.2.1",
- "iso-3166": "4.2.0",
- "next": "13.4.9",
- "react": "18.2.0",
- "react-dom": "18.2.0",
- "react-icons": "4.10.1",
- "sass": "1.63.6",
- "swr": "2.2.0"
- },
- "pnpm": {
- "onlyBuiltDependencies": [
- "sharp",
- "esbuild"
- ]
- }
-}
diff --git a/legacy-frontend/pages/404.js b/legacy-frontend/pages/404.js
deleted file mode 100644
index 74154f5..0000000
--- a/legacy-frontend/pages/404.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import { Alert, AlertDescription, AlertTitle } from '@chakra-ui/react'
-import { TbMoodSad } from 'react-icons/tb'
-
-export default function Custom404() {
- return (
-
-
-
- 404: Page Not Found
-
- Try going back or something …
-
- )
-}
diff --git a/legacy-frontend/pages/500.js b/legacy-frontend/pages/500.js
deleted file mode 100644
index 9fabec9..0000000
--- a/legacy-frontend/pages/500.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import { Alert, AlertDescription, AlertTitle } from '@chakra-ui/react'
-import { TbMoodSad } from 'react-icons/tb'
-
-export default function Custom500() {
- return (
-
-
-
- 500: Server-side error occurred
-
- Something happened that was totally unexpected …
-
- )
-}
diff --git a/legacy-frontend/pages/[slug]/index.js b/legacy-frontend/pages/[slug]/index.js
deleted file mode 100644
index 2b3e243..0000000
--- a/legacy-frontend/pages/[slug]/index.js
+++ /dev/null
@@ -1,41 +0,0 @@
-import { Box, Heading } from '@chakra-ui/react'
-import Head from 'next/head'
-
-export const getStaticPaths = async () => {
- const url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/pages`)
- url.searchParams.append('fields[]', 'slug')
- url.searchParams.append('limit', -1)
- const res = await fetch(url.toString())
-
- const { data: pages } = await res.json()
-
- return {
- paths: pages.map((p) => ({ params: { slug: p.slug } })),
- fallback: false, // false or "blocking"
- }
-}
-
-export const getStaticProps = async ({ params: { slug } }) => {
- const url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/pages`)
- url.searchParams.append('fields[]', 'title')
- url.searchParams.append('fields[]', 'content')
- url.searchParams.append('limit', 1)
- url.searchParams.append('filter', JSON.stringify({ slug: { _eq: slug } }))
- const res = await fetch(url.toString())
-
- const {
- data: [page],
- } = await res.json()
-
- return { props: { page } }
-}
-
-export default function Page({ globals, page }) {
- return (
-
- {page.title && {[page.title, globals.meta_title].join(' — ')}}
- {page.title}
-
-
- )
-}
diff --git a/legacy-frontend/pages/_app.js b/legacy-frontend/pages/_app.js
deleted file mode 100644
index 57e511e..0000000
--- a/legacy-frontend/pages/_app.js
+++ /dev/null
@@ -1,49 +0,0 @@
-import { ChakraProvider } from '@chakra-ui/react'
-import App from 'next/app'
-import Head from 'next/head'
-import Layout from '~/components/layout'
-import '~/src/style.scss'
-import theme from '~/src/theme'
-
-export default function MyApp({ Component, pageProps, globals, menus }) {
- return (
-
-
- {globals.meta_title}
-
-
-
-
-
-
- )
-}
-
-MyApp.getInitialProps = async (context) => {
- const pageProps = await App.getInitialProps(context)
-
- let url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/globals`)
- url.searchParams.append('fields[]', '*')
- url.searchParams.append('limit', 1)
- const resG = await fetch(url.toString())
- let { data: globals } = await resG.json()
-
- url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/menus`)
- url.searchParams.append('fields[]', '*')
- url.searchParams.append('fields[]', 'menus_menu_items.sort')
- url.searchParams.append('fields[]', 'menus_menu_items.menu_items_id.label')
- url.searchParams.append('fields[]', 'menus_menu_items.menu_items_id.url')
- url.searchParams.append('fields[]', 'menus_menu_items.menu_items_id.sort')
- url.searchParams.append('limit', -1)
- const resM = await fetch(url.toString())
- const { data: menus } = await resM.json()
-
- return {
- ...pageProps,
- globals,
- menus: menus.map((m) => ({
- id: m.id,
- items: m.menus_menu_items.sort((a, b) => a.sort - b.sort).map((mm) => mm.menu_items_id),
- })),
- }
-}
diff --git a/legacy-frontend/pages/_error.js b/legacy-frontend/pages/_error.js
deleted file mode 100644
index 572cb07..0000000
--- a/legacy-frontend/pages/_error.js
+++ /dev/null
@@ -1,8 +0,0 @@
-export default function Error(props) {
- return (
- <>
-
Oops, there is an error!
- {JSON.stringify(props, null, 2)}
- >
- )
-}
diff --git a/legacy-frontend/pages/index.js b/legacy-frontend/pages/index.js
deleted file mode 100644
index e5bd243..0000000
--- a/legacy-frontend/pages/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import Page, { getStaticProps as gsp } from '~/pages/[slug]'
-
-export const getStaticProps = async () => {
- return gsp({ params: { slug: 'home' } })
-}
-
-export default function Home(props) {
- return
-}
diff --git a/legacy-frontend/pages/vendors/[slug]/index.js b/legacy-frontend/pages/vendors/[slug]/index.js
deleted file mode 100644
index 26e48bf..0000000
--- a/legacy-frontend/pages/vendors/[slug]/index.js
+++ /dev/null
@@ -1,164 +0,0 @@
-import { Link } from '@chakra-ui/next-js'
-import { Box, Button, Flex, Heading, Image, List, ListIcon, ListItem, SimpleGrid, Text } from '@chakra-ui/react'
-import { iso31661 } from 'iso-3166'
-import Head from 'next/head'
-import { FaFacebookSquare, FaLinkedin, FaTwitterSquare } from 'react-icons/fa'
-import { TbWorldWww } from 'react-icons/tb'
-
-export const getStaticPaths = async () => {
- const url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/vendors`)
- url.searchParams.append('fields[]', 'slug')
- url.searchParams.append('limit', -1)
- const res = await fetch(url.toString())
-
- const { data: vendors } = await res.json()
-
- return {
- paths: vendors.map((v) => ({ params: { slug: v.slug } })),
- fallback: false, // false or "blocking"
- }
-}
-
-export const getStaticProps = async ({ params: { slug } }) => {
- const url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/vendors`)
- url.searchParams.append('fields[]', '*')
- url.searchParams.append('fields[]', 'categories.categories_id.slug')
- url.searchParams.append('fields[]', 'categories.categories_id.name')
- url.searchParams.append('fields[]', 'categories.categories_id.parent_id')
- url.searchParams.append('fields[]', 'categories.categories_id.subcategories.slug')
- url.searchParams.append('fields[]', 'categories.categories_id.subcategories.name')
- url.searchParams.append('limit', 1)
- url.searchParams.append('filter', JSON.stringify({ slug: { _eq: slug } }))
-
- const res = await fetch(url.toString())
-
- const {
- data: [vendor],
- } = await res.json()
-
- return {
- props: { vendor: { ...vendor, country: iso31661.find((iso) => iso.alpha3 === vendor.country)?.name || '' } },
- }
-}
-
-export default function VendorPage({ globals, vendor }) {
- return (
-
-
- {[vendor.name, globals.meta_title].join(' — ')}
-
-
- {vendor.name}
-
-
-
-
-
-
-
- Address
-
-
- {vendor.address_line_1 && (
- <>
- {vendor.address_line_1}
-
- >
- )}
- {vendor.address_line_2 && (
- <>
- {vendor.address_line_2}
-
- >
- )}
- {vendor.city && (
- <>
- {vendor.city}
-
- >
- )}
- {vendor.state && (
- <>
- {vendor.state}
-
- >
- )}
- {vendor.country && <>{vendor.country}>}
-
-
-
- {(vendor.website || vendor.facebook || vendor.linkedin || vendor.twitter) && (
- <>
-
- Social
-
-
- {vendor.website && (
-
-
- {vendor.website}
-
- )}
- {vendor.linkedin && (
-
-
- {vendor.linkedin}
-
- )}
- {vendor.twitter && (
-
-
- {vendor.twitter}
-
- )}
- {vendor.facebook && (
-
-
- {vendor.facebook}
-
- )}
-
- >
- )}
-
-
- {vendor.categories.length > 0 && (
- <>
-
- Categories
-
-
- {vendor.categories.map((cat) => (
-
-
-
- ))}
-
- >
- )}
-
-
-
- )
-}
diff --git a/legacy-frontend/pages/vendors/index.js b/legacy-frontend/pages/vendors/index.js
deleted file mode 100644
index f8ed198..0000000
--- a/legacy-frontend/pages/vendors/index.js
+++ /dev/null
@@ -1,310 +0,0 @@
-import { Link } from '@chakra-ui/next-js'
-import {
- Alert,
- AlertDescription,
- AlertIcon,
- AlertTitle,
- Box,
- Button,
- ButtonGroup,
- Card,
- CardBody,
- Flex,
- HStack,
- Heading,
- IconButton,
- Image,
- Input,
- InputGroup,
- InputLeftElement,
- InputRightElement,
- LinkBox,
- LinkOverlay,
- Menu,
- MenuButton,
- MenuDivider,
- MenuItem,
- MenuList,
- SimpleGrid,
- Skeleton,
- Spinner,
- Table,
- Tbody,
- Td,
- Text,
- Tr,
-} from '@chakra-ui/react'
-import { useDebouncedCallback, useLocalStorageValue } from '@react-hookz/web'
-import Head from 'next/head'
-import { useRouter } from 'next/router'
-import { TbCheck, TbFilter, TbFilterEdit, TbLayoutGrid, TbLayoutList, TbMoodSad, TbSearch, TbX } from 'react-icons/tb'
-import useSWR from 'swr'
-import Pagination from '~/components/pagination'
-
-const PER_PAGE = 12
-
-export const getStaticProps = async () => {
- const url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/categories`)
- url.searchParams.append('fields[]', 'slug')
- url.searchParams.append('fields[]', 'name')
- url.searchParams.append('fields[]', 'subcategories.slug')
- url.searchParams.append('fields[]', 'subcategories.name')
- url.searchParams.append('sort', 'name')
- url.searchParams.append('limit', -1)
- url.searchParams.append(
- 'filter',
- JSON.stringify({
- parent_id: {
- _null: true,
- },
- })
- )
-
- const res = await fetch(url.toString())
-
- const { data: categories } = await res.json()
-
- return { props: { categories } }
-}
-
-export default function VendorsPage({ globals, categories }) {
- const router = useRouter()
- const {
- query: { page = 1, category = '', q: search = '' },
- } = router
-
- const { value: perPage, set: setPerPage } = useLocalStorageValue('perPage', {
- defaultValue: PER_PAGE,
- initializeWithValue: false,
- })
-
- const { value: layout, set: setLayout } = useLocalStorageValue('layout', {
- defaultValue: 'GRID',
- initializeWithValue: false,
- })
-
- const setSearch = useDebouncedCallback(
- (q) => {
- router.replace({ query: { ...router.query, q } })
- },
- [router],
- 500
- )
-
- const { data, error, isLoading, isValidating } = useSWR(['vendors', page, perPage, search, category], async () => {
- if (!perPage) return
-
- const url = new URL(`${process.env.NEXT_PUBLIC_DIRECTUS_API_URL}/items/vendors`)
- url.searchParams.append('fields[]', '*')
- url.searchParams.append('limit', perPage)
- url.searchParams.append('page', page)
- url.searchParams.append('sort', 'name')
- url.searchParams.append('meta[]', 'filter_count')
-
- if (search !== '' || category !== '') {
- url.searchParams.append(
- 'filter',
- JSON.stringify({
- _and: [
- category !== '' ? { categories: { categories_id: { slug: { _eq: category } } } } : {},
- search !== ''
- ? {
- _or: ['name', 'description', 'long_description', 'city'].map((s) => ({
- [s]: { _contains: search },
- })),
- }
- : {},
- ],
- })
- )
- }
-
- const res = await fetch(url.toString())
- if (!res.ok) {
- throw new Error('Oops')
- }
- return res.json()
- })
-
- const { meta, data: vendors } = data || { meta: {}, data: [] }
-
- const lastPage = Math.max(1, Math.ceil(meta.filter_count / perPage))
- if (!isNaN(lastPage) && page > lastPage) {
- router.replace({ query: { ...router.query, page: lastPage } })
- }
-
- return (
-
-
- {['Vendors', globals.meta_title].join(' — ')}
-
-
- Vendors
- {isValidating && }
-
-
-
-
-
- setSearch(ev.target.value.toLowerCase())} />
- {
- ev.currentTarget.parentNode.childNodes[1].value = ''
- setSearch('')
- }}
- >
- {search !== '' && }
-
-
-
-
- } onClick={() => setLayout('GRID')} isDisabled={layout === 'GRID'} />
- } onClick={() => setLayout('LIST')} isDisabled={layout === 'LIST'} />
-
-
-
-
- {error && (
-
-
- There was an error processing your request
-
- )}
-
- {layout === 'GRID' && (
-
- {isLoading &&
- new Array(perPage).fill(true).map((v, k) => (
-
-
-
-
-
-
-
-
- ))}
- {!isLoading &&
- vendors.map((v) => (
-
-
-
-
-
- {v.name}
-
-
- {v?.description?.substring(0, v?.description?.substring(0, 80).lastIndexOf(' '))} …
-
-
-
-
- ))}
-
- )}
-
- {layout === 'LIST' && (
- <>
- {isLoading && (
-
-
- {new Array(perPage).fill(true).map((v, k) => (
-
- |
-
- |
-
-
- |
-
-
- |
-
- ))}
-
-
- )}
- {!isLoading && (
-
-
- {vendors.map((v) => (
-
-
- |
-
- |
- {v.name} |
-
-
- {v?.description?.substring(0, v?.description?.substring(0, 80).lastIndexOf(' '))} …
-
- |
-
-
- ))}
-
-
- )}
- >
- )}
-
- {meta.filter_count === 0 && (
-
-
-
-
- No results found.
-
- Try refining your search term and filters …
-
-
- )}
-
- {meta.filter_count > perPage && (
- <>
-
-
- Results per page:
-
- {[12, 24, 48].map((n) => (
-
- ))}
-
-
- >
- )}
-
- )
-}
diff --git a/legacy-frontend/pnpm-lock.yaml b/legacy-frontend/pnpm-lock.yaml
deleted file mode 100644
index 18226ba..0000000
--- a/legacy-frontend/pnpm-lock.yaml
+++ /dev/null
@@ -1,2488 +0,0 @@
-lockfileVersion: '9.0'
-
-settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
-
-importers:
-
- .:
- dependencies:
- '@chakra-ui/icons':
- specifier: 2.0.19
- version: 2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/next-js':
- specifier: 2.1.4
- version: 2.1.4(@chakra-ui/react@2.7.1(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@emotion/react@11.11.1(react@18.2.0))(next@13.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.63.6))(react@18.2.0)
- '@chakra-ui/react':
- specifier: 2.7.1
- version: 2.7.1(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@emotion/react':
- specifier: 11.11.1
- version: 11.11.1(react@18.2.0)
- '@emotion/styled':
- specifier: 11.11.0
- version: 11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)
- '@react-hookz/web':
- specifier: 23.1.0
- version: 23.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- clsx:
- specifier: 1.2.1
- version: 1.2.1
- iso-3166:
- specifier: 4.2.0
- version: 4.2.0
- next:
- specifier: 13.4.9
- version: 13.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.63.6)
- react:
- specifier: 18.2.0
- version: 18.2.0
- react-dom:
- specifier: 18.2.0
- version: 18.2.0(react@18.2.0)
- react-icons:
- specifier: 4.10.1
- version: 4.10.1(react@18.2.0)
- sass:
- specifier: 1.63.6
- version: 1.63.6
- swr:
- specifier: 2.2.0
- version: 2.2.0(react@18.2.0)
-
-packages:
-
- '@babel/code-frame@7.29.0':
- resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.29.1':
- resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-globals@7.28.0':
- resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.28.6':
- resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.27.1':
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.28.5':
- resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.29.2':
- resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/runtime@7.29.2':
- resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.28.6':
- resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.29.0':
- resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/types@7.29.0':
- resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
- engines: {node: '>=6.9.0'}
-
- '@chakra-ui/accordion@2.2.0':
- resolution: {integrity: sha512-2IK1iLzTZ22u8GKPPPn65mqJdZidn4AvkgAbv17ISdKA07VHJ8jSd4QF1T5iCXjKfZ0XaXozmhP4kDhjwF2IbQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
-
- '@chakra-ui/alert@2.1.0':
- resolution: {integrity: sha512-OcfHwoXI5VrmM+tHJTHT62Bx6TfyfCxSa0PWUOueJzSyhlUOKBND5we6UtrOB7D0jwX45qKKEDJOLG5yCG21jQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/anatomy@2.1.2':
- resolution: {integrity: sha512-pKfOS/mztc4sUXHNc8ypJ1gPWSolWT770jrgVRfolVbYlki8y5Y+As996zMF6k5lewTu6j9DQequ7Cc9a69IVQ==}
-
- '@chakra-ui/avatar@2.2.11':
- resolution: {integrity: sha512-CJFkoWvlCTDJTUBrKA/aVyG5Zz6TBEIVmmsJtqC6VcQuVDTxkWod8ruXnjb0LT2DUveL7xR5qZM9a5IXcsH3zg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/breadcrumb@2.1.5':
- resolution: {integrity: sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/breakpoint-utils@2.0.8':
- resolution: {integrity: sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA==}
-
- '@chakra-ui/button@2.0.18':
- resolution: {integrity: sha512-E3c99+lOm6ou4nQVOTLkG+IdOPMjsQK+Qe7VyP8A/xeAMFONuibrWPRPpprr4ZkB4kEoLMfNuyH2+aEza3ScUA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/card@2.1.6':
- resolution: {integrity: sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/checkbox@2.2.15':
- resolution: {integrity: sha512-Ju2yQjX8azgFa5f6VLPuwdGYobZ+rdbcYqjiks848JvPc75UsPhpS05cb4XlrKT7M16I8txDA5rPJdqqFicHCA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/clickable@2.0.14':
- resolution: {integrity: sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/close-button@2.0.17':
- resolution: {integrity: sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/color-mode@2.1.12':
- resolution: {integrity: sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/control-box@2.0.13':
- resolution: {integrity: sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/counter@2.0.14':
- resolution: {integrity: sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/css-reset@2.1.2':
- resolution: {integrity: sha512-4ySTLd+3iRpp4lX0yI9Yo2uQm2f+qwYGNOZF0cNcfN+4UJCd3IsaWxYRR/Anz+M51NVldZbYzC+TEYC/kpJc4A==}
- peerDependencies:
- '@emotion/react': '>=10.0.35'
- react: '>=18'
-
- '@chakra-ui/descendant@3.0.14':
- resolution: {integrity: sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/dom-utils@2.1.0':
- resolution: {integrity: sha512-ZmF2qRa1QZ0CMLU8M1zCfmw29DmPNtfjR9iTo74U5FPr3i1aoAh7fbJ4qAlZ197Xw9eAW28tvzQuoVWeL5C7fQ==}
-
- '@chakra-ui/editable@3.0.0':
- resolution: {integrity: sha512-q/7C/TM3iLaoQKlEiM8AY565i9NoaXtS6N6N4HWIEL5mZJPbMeHKxrCHUZlHxYuQJqFOGc09ZPD9fAFx1GkYwQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/event-utils@2.0.8':
- resolution: {integrity: sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==}
-
- '@chakra-ui/focus-lock@2.0.17':
- resolution: {integrity: sha512-V+m4Ml9E8QY66DUpHX/imInVvz5XJ5zx59Tl0aNancXgeVY1Rt/ZdxuZdPLCAmPC/MF3GUOgnEA+WU8i+VL6Gw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/form-control@2.0.18':
- resolution: {integrity: sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/hooks@2.2.0':
- resolution: {integrity: sha512-GZE64mcr20w+3KbCUPqQJHHmiFnX5Rcp8jS3YntGA4D5X2qU85jka7QkjfBwv/iduZ5Ei0YpCMYGCpi91dhD1Q==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/icon@3.0.16':
- resolution: {integrity: sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/icons@2.0.19':
- resolution: {integrity: sha512-0A6U1ZBZhLIxh3QgdjuvIEhAZi3B9v8g6Qvlfa3mu6vSnXQn2CHBZXmJwxpXxO40NK/2gj/gKXrLeUaFR6H/Qw==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/image@2.0.16':
- resolution: {integrity: sha512-iFypk1slgP3OK7VIPOtkB0UuiqVxNalgA59yoRM43xLIeZAEZpKngUVno4A2kFS61yKN0eIY4hXD3Xjm+25EJA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/input@2.0.22':
- resolution: {integrity: sha512-dCIC0/Q7mjZf17YqgoQsnXn0bus6vgriTRn8VmxOc+WcVl+KBSTBWujGrS5yu85WIFQ0aeqQvziDnDQybPqAbA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/layout@2.2.0':
- resolution: {integrity: sha512-WvfsWQjqzbCxv7pbpPGVKxj9eQr7MC2i37ag4Wn7ClIG7uPuwHYTUWOnjnu27O3H/zA4cRVZ4Hs3GpSPbojZFQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/lazy-utils@2.0.5':
- resolution: {integrity: sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==}
-
- '@chakra-ui/live-region@2.0.13':
- resolution: {integrity: sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/media-query@3.2.12':
- resolution: {integrity: sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/menu@2.1.15':
- resolution: {integrity: sha512-+1fh7KBKZyhy8wi7Q6nQAzrvjM6xggyhGMnSna0rt6FJVA2jlfkjb5FozyIVPnkfJKjkKd8THVhrs9E7pHNV/w==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
-
- '@chakra-ui/modal@2.2.12':
- resolution: {integrity: sha512-F1nNmYGvyqlmxidbwaBM3y57NhZ/Qeyc8BE9tb1FL1v9nxQhkfrPvMQ9miK0O1syPN6aZ5MMj+uD3AsRFE+/tA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
-
- '@chakra-ui/next-js@2.1.4':
- resolution: {integrity: sha512-qPmpZSA6ONozcD8gC8fyuEPqweZqk1Y4ar/hbfUDLMdCCRsU+aigN6ay2HBBn3kPzzMOE6BUlkgvij8uB8smxQ==}
- peerDependencies:
- '@chakra-ui/react': '>=2.4.0'
- '@emotion/react': '>=11'
- next: '>=13'
- react: '>=18'
-
- '@chakra-ui/number-input@2.0.19':
- resolution: {integrity: sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/number-utils@2.0.7':
- resolution: {integrity: sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg==}
-
- '@chakra-ui/object-utils@2.1.0':
- resolution: {integrity: sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ==}
-
- '@chakra-ui/pin-input@2.0.20':
- resolution: {integrity: sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/popover@2.1.12':
- resolution: {integrity: sha512-Corh8trA1f3ydcMQqomgSvYNNhAlpxiBpMY2sglwYazOJcueHA8CI05cJVD0T/wwoTob7BShabhCGFZThn61Ng==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
-
- '@chakra-ui/popper@3.0.14':
- resolution: {integrity: sha512-RDMmmSfjsmHJbVn2agDyoJpTbQK33fxx//njwJdeyM0zTG/3/4xjI/Cxru3acJ2Y+1jFGmPqhO81stFjnbtfIw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/portal@2.0.16':
- resolution: {integrity: sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ==}
- peerDependencies:
- react: '>=18'
- react-dom: '>=18'
-
- '@chakra-ui/progress@2.1.6':
- resolution: {integrity: sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/provider@2.3.0':
- resolution: {integrity: sha512-vKgmjoLVS3NnHW8RSYwmhhda2ZTi3fQc1egkYSVwngGky4CsN15I+XDhxJitVd66H41cjah/UNJyoeq7ACseLA==}
- peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- react: '>=18'
- react-dom: '>=18'
-
- '@chakra-ui/radio@2.0.22':
- resolution: {integrity: sha512-GsQ5WAnLwivWl6gPk8P1x+tCcpVakCt5R5T0HumF7DGPXKdJbjS+RaFySrbETmyTJsKY4QrfXn+g8CWVrMjPjw==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/react-children-utils@2.0.6':
- resolution: {integrity: sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-context@2.0.8':
- resolution: {integrity: sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-env@3.0.0':
- resolution: {integrity: sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-types@2.0.7':
- resolution: {integrity: sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-animation-state@2.0.9':
- resolution: {integrity: sha512-WFoD5OG03PBmzJCoRwM8rVfU442AvKBPPgA0yGGlKioH29OGuX7W78Ml+cYdXxonTiB03YSRZzUwaUnP4wAy1Q==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-callback-ref@2.0.7':
- resolution: {integrity: sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-controllable-state@2.0.8':
- resolution: {integrity: sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-disclosure@2.0.8':
- resolution: {integrity: sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-event-listener@2.0.7':
- resolution: {integrity: sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-focus-effect@2.0.11':
- resolution: {integrity: sha512-/zadgjaCWD50TfuYsO1vDS2zSBs2p/l8P2DPEIA8FuaowbBubKrk9shKQDWmbfDU7KArGxPxrvo+VXvskPPjHw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-focus-on-pointer-down@2.0.6':
- resolution: {integrity: sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-interval@2.0.5':
- resolution: {integrity: sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-latest-ref@2.0.5':
- resolution: {integrity: sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-merge-refs@2.0.7':
- resolution: {integrity: sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-outside-click@2.1.0':
- resolution: {integrity: sha512-JanCo4QtWvMl9ZZUpKJKV62RlMWDFdPCE0Q64a7eWTOQgWWcpyBW7TOYRunQTqrK30FqkYFJCOlAWOtn+6Rw7A==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-pan-event@2.0.9':
- resolution: {integrity: sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-previous@2.0.5':
- resolution: {integrity: sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-safe-layout-effect@2.0.5':
- resolution: {integrity: sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-size@2.0.10':
- resolution: {integrity: sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-timeout@2.0.5':
- resolution: {integrity: sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-use-update-effect@2.0.7':
- resolution: {integrity: sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react-utils@2.0.12':
- resolution: {integrity: sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==}
- peerDependencies:
- react: '>=18'
-
- '@chakra-ui/react@2.7.1':
- resolution: {integrity: sha512-uIYIAg+gnUoRbgdCfSEVvQnrEz0oWWXATGGSQpxmuJovNVyZKnX/Xug7NkWQfBUJPYRSG+VB69ZmsAFpyLSMtA==}
- peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
-
- '@chakra-ui/select@2.0.19':
- resolution: {integrity: sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/shared-utils@2.0.5':
- resolution: {integrity: sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==}
-
- '@chakra-ui/skeleton@2.0.24':
- resolution: {integrity: sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/skip-nav@2.0.15':
- resolution: {integrity: sha512-5UtmlnV4BmIgEk6lQ0h81JEYhPX04wJEk5ZMoilQ2zEQYL6TkVVHkhRXyc1Zfq76hmHuZPXZV/yJeTecj6jIrA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/slider@2.0.25':
- resolution: {integrity: sha512-FnWSi0AIXP+9sHMCPboOKGqm902k8dJtsJ7tu3D0AcKkE62WtYLZ2sTqvwJxCfSl4KqVI1i571SrF9WadnnJ8w==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/spinner@2.0.13':
- resolution: {integrity: sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/stat@2.0.18':
- resolution: {integrity: sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/stepper@2.2.0':
- resolution: {integrity: sha512-8ZLxV39oghSVtOUGK8dX8Z6sWVSQiKVmsK4c3OQDa8y2TvxP0VtFD0Z5U1xJlOjQMryZRWhGj9JBc3iQLukuGg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/styled-system@2.9.1':
- resolution: {integrity: sha512-jhYKBLxwOPi9/bQt9kqV3ELa/4CjmNNruTyXlPp5M0v0+pDMUngPp48mVLoskm9RKZGE0h1qpvj/jZ3K7c7t8w==}
-
- '@chakra-ui/switch@2.0.27':
- resolution: {integrity: sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
-
- '@chakra-ui/system@2.5.8':
- resolution: {integrity: sha512-Vy8UUaCxikOzOGE54IP8tKouvU38rEYU1HCSquU9+oe7Jd70HaiLa4vmUKvHyMUmxkOzDHIkgZLbVQCubSnN5w==}
- peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- react: '>=18'
-
- '@chakra-ui/table@2.0.17':
- resolution: {integrity: sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/tabs@2.1.9':
- resolution: {integrity: sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/tag@3.0.0':
- resolution: {integrity: sha512-YWdMmw/1OWRwNkG9pX+wVtZio+B89odaPj6XeMn5nfNN8+jyhIEpouWv34+CO9G0m1lupJTxPSfgLAd7cqXZMA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/textarea@2.0.19':
- resolution: {integrity: sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@chakra-ui/theme-tools@2.0.18':
- resolution: {integrity: sha512-MbiRuXb2tb41FbnW41zhsYYAU0znlpfYZnu0mxCf8U2otCwPekJCfESUGYypjq4JnydQ7TDOk+Kz/Wi974l4mw==}
- peerDependencies:
- '@chakra-ui/styled-system': '>=2.0.0'
-
- '@chakra-ui/theme-utils@2.0.18':
- resolution: {integrity: sha512-aSbkUUiFpc1NHC7lQdA6uYlr6EcZFXz6b4aJ7VRDpqTiywvqYnvfGzhmsB0z94vgtS9qXc6HoIwBp25jYGV2MA==}
-
- '@chakra-ui/theme@3.1.2':
- resolution: {integrity: sha512-ebUXMS3LZw2OZxEQNYaFw3/XuA3jpyprhS/frjHMvZKSOaCjMW+c9z25S0jp1NnpQff08VGI8EWbyVZECXU1QA==}
- peerDependencies:
- '@chakra-ui/styled-system': '>=2.8.0'
-
- '@chakra-ui/toast@6.1.4':
- resolution: {integrity: sha512-wAcPHq/N/ar4jQxkUGhnsbp+lx2eKOpHxn1KaWdHXUkqCNUA1z09fvBsoMyzObSiiwbDuQPZG5RxsOhzfPZX4Q==}
- peerDependencies:
- '@chakra-ui/system': 2.5.8
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
-
- '@chakra-ui/tooltip@2.2.9':
- resolution: {integrity: sha512-ZoksllanqXRUyMDaiogvUVJ+RdFXwZrfrwx3RV22fejYZIQ602hZ3QHtHLB5ZnKFLbvXKMZKM23HxFTSb0Ytqg==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
-
- '@chakra-ui/transition@2.0.16':
- resolution: {integrity: sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ==}
- peerDependencies:
- framer-motion: '>=4.0.0'
- react: '>=18'
-
- '@chakra-ui/utils@2.0.15':
- resolution: {integrity: sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==}
-
- '@chakra-ui/visually-hidden@2.0.15':
- resolution: {integrity: sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
-
- '@emotion/babel-plugin@11.13.5':
- resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
-
- '@emotion/cache@11.14.0':
- resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}
-
- '@emotion/hash@0.9.2':
- resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
-
- '@emotion/is-prop-valid@1.4.0':
- resolution: {integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==}
-
- '@emotion/memoize@0.9.0':
- resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
-
- '@emotion/react@11.11.1':
- resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==}
- peerDependencies:
- '@types/react': '*'
- react: '>=16.8.0'
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@emotion/serialize@1.3.3':
- resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
-
- '@emotion/sheet@1.4.0':
- resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
-
- '@emotion/styled@11.11.0':
- resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==}
- peerDependencies:
- '@emotion/react': ^11.0.0-rc.0
- '@types/react': '*'
- react: '>=16.8.0'
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@emotion/unitless@0.10.0':
- resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
-
- '@emotion/use-insertion-effect-with-fallbacks@1.2.0':
- resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==}
- peerDependencies:
- react: '>=16.8.0'
-
- '@emotion/utils@1.4.2':
- resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
-
- '@emotion/weak-memoize@0.3.1':
- resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
-
- '@emotion/weak-memoize@0.4.0':
- resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
-
- '@jridgewell/gen-mapping@0.3.13':
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
-
- '@jridgewell/resolve-uri@3.1.2':
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
- engines: {node: '>=6.0.0'}
-
- '@jridgewell/sourcemap-codec@1.5.5':
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
-
- '@jridgewell/trace-mapping@0.3.31':
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
-
- '@next/env@13.4.9':
- resolution: {integrity: sha512-vuDRK05BOKfmoBYLNi2cujG2jrYbEod/ubSSyqgmEx9n/W3eZaJQdRNhTfumO+qmq/QTzLurW487n/PM/fHOkw==}
-
- '@next/swc-darwin-arm64@13.4.9':
- resolution: {integrity: sha512-TVzGHpZoVBk3iDsTOQA/R6MGmFp0+17SWXMEWd6zG30AfuELmSSMe2SdPqxwXU0gbpWkJL1KgfLzy5ReN0crqQ==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
-
- '@next/swc-darwin-x64@13.4.9':
- resolution: {integrity: sha512-aSfF1fhv28N2e7vrDZ6zOQ+IIthocfaxuMWGReB5GDriF0caTqtHttAvzOMgJgXQtQx6XhyaJMozLTSEXeNN+A==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
-
- '@next/swc-linux-arm64-gnu@13.4.9':
- resolution: {integrity: sha512-JhKoX5ECzYoTVyIy/7KykeO4Z2lVKq7HGQqvAH+Ip9UFn1MOJkOnkPRB7v4nmzqAoY+Je05Aj5wNABR1N18DMg==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@next/swc-linux-arm64-musl@13.4.9':
- resolution: {integrity: sha512-OOn6zZBIVkm/4j5gkPdGn4yqQt+gmXaLaSjRSO434WplV8vo2YaBNbSHaTM9wJpZTHVDYyjzuIYVEzy9/5RVZw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@next/swc-linux-x64-gnu@13.4.9':
- resolution: {integrity: sha512-iA+fJXFPpW0SwGmx/pivVU+2t4zQHNOOAr5T378PfxPHY6JtjV6/0s1vlAJUdIHeVpX98CLp9k5VuKgxiRHUpg==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@next/swc-linux-x64-musl@13.4.9':
- resolution: {integrity: sha512-rlNf2WUtMM+GAQrZ9gMNdSapkVi3koSW3a+dmBVp42lfugWVvnyzca/xJlN48/7AGx8qu62WyO0ya1ikgOxh6A==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@next/swc-win32-arm64-msvc@13.4.9':
- resolution: {integrity: sha512-5T9ybSugXP77nw03vlgKZxD99AFTHaX8eT1ayKYYnGO9nmYhJjRPxcjU5FyYI+TdkQgEpIcH7p/guPLPR0EbKA==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
-
- '@next/swc-win32-ia32-msvc@13.4.9':
- resolution: {integrity: sha512-ojZTCt1lP2ucgpoiFgrFj07uq4CZsq4crVXpLGgQfoFq00jPKRPgesuGPaz8lg1yLfvafkU3Jd1i8snKwYR3LA==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
- '@next/swc-win32-x64-msvc@13.4.9':
- resolution: {integrity: sha512-QbT03FXRNdpuL+e9pLnu+XajZdm/TtIXVYY4lA9t+9l0fLZbHXDYEKitAqxrOj37o3Vx5ufxiRAniaIebYDCgw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
-
- '@popperjs/core@2.11.8':
- resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
-
- '@react-hookz/deep-equal@1.0.4':
- resolution: {integrity: sha512-N56fTrAPUDz/R423pag+n6TXWbvlBZDtTehaGFjK0InmN+V2OFWLE/WmORhmn6Ce7dlwH5+tQN1LJFw3ngTJVg==}
- deprecated: PACKAGE IS DEPRECATED AND WILL BE DETED SOON, USE @ver0/deep-equal INSTEAD
-
- '@react-hookz/web@23.1.0':
- resolution: {integrity: sha512-fvbURdsa1ukttbLR1ASE/XmqXP09vZ1PiCYppYeR1sNMzCrdkG0iBnjxniFSVjJ8gIw2fRs6nqMTbeBz2uAkuA==}
- peerDependencies:
- js-cookie: ^3.0.5
- react: ^16.8 || ^17 || ^18
- react-dom: ^16.8 || ^17 || ^18
- peerDependenciesMeta:
- js-cookie:
- optional: true
-
- '@swc/helpers@0.5.1':
- resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
-
- '@types/lodash.mergewith@4.6.7':
- resolution: {integrity: sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==}
-
- '@types/lodash@4.17.24':
- resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
-
- '@types/parse-json@4.0.2':
- resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
-
- '@zag-js/element-size@0.3.2':
- resolution: {integrity: sha512-bVvvigUGvAuj7PCkE5AbzvTJDTw5f3bg9nQdv+ErhVN8SfPPppLJEmmWdxqsRzrHXgx8ypJt/+Ty0kjtISVDsQ==}
-
- '@zag-js/focus-visible@0.2.2':
- resolution: {integrity: sha512-0j2gZq8HiZ51z4zNnSkF1iSkqlwRDvdH+son3wHdoz+7IUdMN/5Exd4TxMJ+gq2Of1DiXReYLL9qqh2PdQ4wgA==}
-
- anymatch@3.1.3:
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
- engines: {node: '>= 8'}
-
- aria-hidden@1.2.6:
- resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
- engines: {node: '>=10'}
-
- babel-plugin-macros@3.1.0:
- resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
- engines: {node: '>=10', npm: '>=6'}
-
- binary-extensions@2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
- engines: {node: '>=8'}
-
- braces@3.0.3:
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
- engines: {node: '>=8'}
-
- busboy@1.6.0:
- resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
- engines: {node: '>=10.16.0'}
-
- callsites@3.1.0:
- resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
- engines: {node: '>=6'}
-
- caniuse-lite@1.0.30001790:
- resolution: {integrity: sha512-bOoxfJPyYo+ds6W0YfptaCWbFnJYjh2Y1Eow5lRv+vI2u8ganPZqNm1JwNh0t2ELQCqIWg4B3dWEusgAmsoyOw==}
-
- chokidar@3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
-
- client-only@0.0.1:
- resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
-
- clsx@1.2.1:
- resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
- engines: {node: '>=6'}
-
- color2k@2.0.3:
- resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==}
-
- compute-scroll-into-view@1.0.20:
- resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
-
- convert-source-map@1.9.0:
- resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
-
- copy-to-clipboard@3.3.3:
- resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
-
- cosmiconfig@7.1.0:
- resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
- engines: {node: '>=10'}
-
- css-box-model@1.2.1:
- resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==}
-
- csstype@3.2.3:
- resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
-
- debug@4.4.3:
- resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
- detect-node-es@1.1.0:
- resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
-
- error-ex@1.3.4:
- resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
-
- es-errors@1.3.0:
- resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
- engines: {node: '>= 0.4'}
-
- escape-string-regexp@4.0.0:
- resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
- engines: {node: '>=10'}
-
- fill-range@7.1.1:
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
- engines: {node: '>=8'}
-
- find-root@1.1.0:
- resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
-
- focus-lock@1.3.6:
- resolution: {integrity: sha512-Ik/6OCk9RQQ0T5Xw+hKNLWrjSMtv51dD4GRmJjbD5a58TIEpI5a5iXagKVl3Z5UuyslMCA8Xwnu76jQob62Yhg==}
- engines: {node: '>=10'}
-
- framer-motion@12.38.0:
- resolution: {integrity: sha512-rFYkY/pigbcswl1XQSb7q424kSTQ8q6eAC+YUsSKooHQYuLdzdHjrt6uxUC+PRAO++q5IS7+TamgIw1AphxR+g==}
- peerDependencies:
- '@emotion/is-prop-valid': '*'
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@emotion/is-prop-valid':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
-
- framesync@6.1.2:
- resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
-
- fsevents@2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
-
- function-bind@1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
-
- get-nonce@1.0.1:
- resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
- engines: {node: '>=6'}
-
- glob-parent@5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
- engines: {node: '>= 6'}
-
- glob-to-regexp@0.4.1:
- resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
-
- graceful-fs@4.2.11:
- resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
-
- hasown@2.0.3:
- resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
- engines: {node: '>= 0.4'}
-
- hoist-non-react-statics@3.3.2:
- resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
-
- immutable@4.3.8:
- resolution: {integrity: sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==}
-
- import-fresh@3.3.1:
- resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
- engines: {node: '>=6'}
-
- is-arrayish@0.2.1:
- resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
-
- is-binary-path@2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
-
- is-core-module@2.16.1:
- resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
- engines: {node: '>= 0.4'}
-
- is-extglob@2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
- engines: {node: '>=0.10.0'}
-
- is-glob@4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
- engines: {node: '>=0.10.0'}
-
- is-number@7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
- engines: {node: '>=0.12.0'}
-
- iso-3166@4.2.0:
- resolution: {integrity: sha512-5G+RqnIYIbgQwNmL3bslEbG0apSPJqu4g3wTaQOOYx2VANv1m6I4PM1KtlvcG5OubW1QmDNpk6icwkS7B+lT1g==}
-
- js-tokens@4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
-
- jsesc@3.1.0:
- resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
- engines: {node: '>=6'}
- hasBin: true
-
- json-parse-even-better-errors@2.3.1:
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
-
- lines-and-columns@1.2.4:
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
-
- lodash.mergewith@4.6.2:
- resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
-
- loose-envify@1.4.0:
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
-
- motion-dom@12.38.0:
- resolution: {integrity: sha512-pdkHLD8QYRp8VfiNLb8xIBJis1byQ9gPT3Jnh2jqfFtAsWUA3dEepDlsWe/xMpO8McV+VdpKVcp+E+TGJEtOoA==}
-
- motion-utils@12.36.0:
- resolution: {integrity: sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg==}
-
- ms@2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
-
- nanoid@3.3.11:
- resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
- next@13.4.9:
- resolution: {integrity: sha512-vtefFm/BWIi/eWOqf1GsmKG3cjKw1k3LjuefKRcL3iiLl3zWzFdPG3as6xtxrGO6gwTzzaO1ktL4oiHt/uvTjA==}
- engines: {node: '>=16.8.0'}
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.1.0
- fibers: '>= 3.1.0'
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- fibers:
- optional: true
- sass:
- optional: true
-
- normalize-path@3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
-
- object-assign@4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
- engines: {node: '>=0.10.0'}
-
- parent-module@1.0.1:
- resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
- engines: {node: '>=6'}
-
- parse-json@5.2.0:
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
- engines: {node: '>=8'}
-
- path-parse@1.0.7:
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
-
- path-type@4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
-
- picocolors@1.1.1:
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
-
- picomatch@2.3.2:
- resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
- engines: {node: '>=8.6'}
-
- postcss@8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
- engines: {node: ^10 || ^12 || >=14}
-
- prop-types@15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
-
- react-clientside-effect@1.2.8:
- resolution: {integrity: sha512-ma2FePH0z3px2+WOu6h+YycZcEvFmmxIlAb62cF52bG86eMySciO/EQZeQMXd07kPCYB0a1dWDT5J+KE9mCDUw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
-
- react-dom@18.2.0:
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
- peerDependencies:
- react: ^18.2.0
-
- react-fast-compare@3.2.1:
- resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
-
- react-focus-lock@2.13.7:
- resolution: {integrity: sha512-20lpZHEQrXPb+pp1tzd4ULL6DyO5D2KnR0G69tTDdydrmNhU7pdFmbQUYVyHUgp+xN29IuFR0PVuhOmvaZL9Og==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-icons@4.10.1:
- resolution: {integrity: sha512-/ngzDP/77tlCfqthiiGNZeYFACw85fUjZtLbedmJ5DTlNDIwETxhwBzdOJ21zj4iJdvc0J3y7yOsX3PpxAJzrw==}
- peerDependencies:
- react: '*'
-
- react-is@16.13.1:
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
-
- react-remove-scroll-bar@2.3.8:
- resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-remove-scroll@2.7.2:
- resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-style-singleton@2.2.3:
- resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
- engines: {node: '>=0.10.0'}
-
- readdirp@3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
-
- resolve-from@4.0.0:
- resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
- engines: {node: '>=4'}
-
- resolve@1.22.12:
- resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
- engines: {node: '>= 0.4'}
- hasBin: true
-
- sass@1.63.6:
- resolution: {integrity: sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- scheduler@0.23.2:
- resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
-
- source-map-js@1.2.1:
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
- engines: {node: '>=0.10.0'}
-
- source-map@0.5.7:
- resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
- engines: {node: '>=0.10.0'}
-
- streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
-
- styled-jsx@5.1.1:
- resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@babel/core': '*'
- babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- babel-plugin-macros:
- optional: true
-
- stylis@4.2.0:
- resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
-
- supports-preserve-symlinks-flag@1.0.0:
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
- engines: {node: '>= 0.4'}
-
- swr@2.2.0:
- resolution: {integrity: sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==}
- peerDependencies:
- react: ^16.11.0 || ^17.0.0 || ^18.0.0
-
- tiny-invariant@1.3.3:
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
-
- to-regex-range@5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
- engines: {node: '>=8.0'}
-
- toggle-selection@1.0.6:
- resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
-
- tslib@2.4.0:
- resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
-
- tslib@2.8.1:
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
-
- use-callback-ref@1.3.3:
- resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sidecar@1.1.3:
- resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sync-external-store@1.6.0:
- resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
- watchpack@2.4.0:
- resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
- engines: {node: '>=10.13.0'}
-
- yaml@1.10.3:
- resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==}
- engines: {node: '>= 6'}
-
- zod@3.21.4:
- resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
-
-snapshots:
-
- '@babel/code-frame@7.29.0':
- dependencies:
- '@babel/helper-validator-identifier': 7.28.5
- js-tokens: 4.0.0
- picocolors: 1.1.1
-
- '@babel/generator@7.29.1':
- dependencies:
- '@babel/parser': 7.29.2
- '@babel/types': 7.29.0
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
- jsesc: 3.1.0
-
- '@babel/helper-globals@7.28.0': {}
-
- '@babel/helper-module-imports@7.28.6':
- dependencies:
- '@babel/traverse': 7.29.0
- '@babel/types': 7.29.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-string-parser@7.27.1': {}
-
- '@babel/helper-validator-identifier@7.28.5': {}
-
- '@babel/parser@7.29.2':
- dependencies:
- '@babel/types': 7.29.0
-
- '@babel/runtime@7.29.2': {}
-
- '@babel/template@7.28.6':
- dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/parser': 7.29.2
- '@babel/types': 7.29.0
-
- '@babel/traverse@7.29.0':
- dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/generator': 7.29.1
- '@babel/helper-globals': 7.28.0
- '@babel/parser': 7.29.2
- '@babel/template': 7.28.6
- '@babel/types': 7.29.0
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
- '@babel/types@7.29.0':
- dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
-
- '@chakra-ui/accordion@2.2.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/alert@2.1.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/anatomy@2.1.2': {}
-
- '@chakra-ui/avatar@2.2.11(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/image': 2.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/breadcrumb@2.1.5(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/breakpoint-utils@2.0.8':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
-
- '@chakra-ui/button@2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/card@2.1.6(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/checkbox@2.2.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@zag-js/focus-visible': 0.2.2
- react: 18.2.0
-
- '@chakra-ui/clickable@2.0.14(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- react: 18.2.0
-
- '@chakra-ui/close-button@2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/color-mode@2.1.12(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/control-box@2.0.13(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/counter@2.0.14(react@18.2.0)':
- dependencies:
- '@chakra-ui/number-utils': 2.0.7
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- react: 18.2.0
-
- '@chakra-ui/css-reset@2.1.2(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@emotion/react': 11.11.1(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/descendant@3.0.14(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/dom-utils@2.1.0': {}
-
- '@chakra-ui/editable@3.0.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/event-utils@2.0.8': {}
-
- '@chakra-ui/focus-lock@2.0.17(react@18.2.0)':
- dependencies:
- '@chakra-ui/dom-utils': 2.1.0
- react: 18.2.0
- react-focus-lock: 2.13.7(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
-
- '@chakra-ui/form-control@2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/hooks@2.2.0(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-utils': 2.0.12(react@18.2.0)
- '@chakra-ui/utils': 2.0.15
- compute-scroll-into-view: 1.0.20
- copy-to-clipboard: 3.3.3
- react: 18.2.0
-
- '@chakra-ui/icon@3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/icons@2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/image@2.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/input@2.0.22(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/object-utils': 2.1.0
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/layout@2.2.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/breakpoint-utils': 2.0.8
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/object-utils': 2.1.0
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/lazy-utils@2.0.5': {}
-
- '@chakra-ui/live-region@2.0.13(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/media-query@3.2.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/breakpoint-utils': 2.0.8
- '@chakra-ui/react-env': 3.0.0(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/menu@2.1.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/clickable': 2.0.14(react@18.2.0)
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
- '@chakra-ui/lazy-utils': 2.0.5
- '@chakra-ui/popper': 3.0.14(react@18.2.0)
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-animation-state': 2.0.9(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-focus-effect': 2.0.11(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-outside-click': 2.1.0(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/modal@2.2.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/focus-lock': 2.0.17(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- aria-hidden: 1.2.6
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.7.2(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
-
- '@chakra-ui/next-js@2.1.4(@chakra-ui/react@2.7.1(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@emotion/react@11.11.1(react@18.2.0))(next@13.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.63.6))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react': 2.7.1(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@emotion/cache': 11.14.0
- '@emotion/react': 11.11.1(react@18.2.0)
- next: 13.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.63.6)
- react: 18.2.0
-
- '@chakra-ui/number-input@2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/counter': 2.0.14(react@18.2.0)
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-interval': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/number-utils@2.0.7': {}
-
- '@chakra-ui/object-utils@2.1.0': {}
-
- '@chakra-ui/pin-input@2.0.20(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/popover@2.1.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/lazy-utils': 2.0.5
- '@chakra-ui/popper': 3.0.14(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-animation-state': 2.0.9(react@18.2.0)
- '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-focus-effect': 2.0.11(react@18.2.0)
- '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/popper@3.0.14(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@popperjs/core': 2.11.8
- react: 18.2.0
-
- '@chakra-ui/portal@2.0.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@chakra-ui/progress@2.1.6(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/provider@2.3.0(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/css-reset': 2.1.2(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-env': 3.0.0(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/utils': 2.0.15
- '@emotion/react': 11.11.1(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@chakra-ui/radio@2.0.22(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@zag-js/focus-visible': 0.2.2
- react: 18.2.0
-
- '@chakra-ui/react-children-utils@2.0.6(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-context@2.0.8(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-env@3.0.0(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-types@2.0.7(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-use-animation-state@2.0.9(react@18.2.0)':
- dependencies:
- '@chakra-ui/dom-utils': 2.1.0
- '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-callback-ref@2.0.7(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-use-controllable-state@2.0.8(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-disclosure@2.0.8(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-event-listener@2.0.7(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-focus-effect@2.0.11(react@18.2.0)':
- dependencies:
- '@chakra-ui/dom-utils': 2.1.0
- '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-focus-on-pointer-down@2.0.6(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-interval@2.0.5(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-latest-ref@2.0.5(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-use-merge-refs@2.0.7(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-use-outside-click@2.1.0(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-pan-event@2.0.9(react@18.2.0)':
- dependencies:
- '@chakra-ui/event-utils': 2.0.8
- '@chakra-ui/react-use-latest-ref': 2.0.5(react@18.2.0)
- framesync: 6.1.2
- react: 18.2.0
-
- '@chakra-ui/react-use-previous@2.0.5(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-use-safe-layout-effect@2.0.5(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-use-size@2.0.10(react@18.2.0)':
- dependencies:
- '@zag-js/element-size': 0.3.2
- react: 18.2.0
-
- '@chakra-ui/react-use-timeout@2.0.5(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/react-use-update-effect@2.0.7(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@chakra-ui/react-utils@2.0.12(react@18.2.0)':
- dependencies:
- '@chakra-ui/utils': 2.0.15
- react: 18.2.0
-
- '@chakra-ui/react@2.7.1(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/accordion': 2.2.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/alert': 2.1.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/avatar': 2.2.11(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/breadcrumb': 2.1.5(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/button': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/card': 2.1.6(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/checkbox': 2.2.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/control-box': 2.0.13(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/counter': 2.0.14(react@18.2.0)
- '@chakra-ui/css-reset': 2.1.2(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)
- '@chakra-ui/editable': 3.0.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/focus-lock': 2.0.17(react@18.2.0)
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/hooks': 2.2.0(react@18.2.0)
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/image': 2.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/input': 2.0.22(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/layout': 2.2.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/live-region': 2.0.13(react@18.2.0)
- '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/menu': 2.1.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/modal': 2.2.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/number-input': 2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/pin-input': 2.0.20(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/popover': 2.1.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/popper': 3.0.14(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/progress': 2.1.6(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/provider': 2.3.0(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/radio': 2.0.22(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-env': 3.0.0(react@18.2.0)
- '@chakra-ui/select': 2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/skeleton': 2.0.24(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/skip-nav': 2.0.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/slider': 2.0.25(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/stat': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/stepper': 2.2.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/switch': 2.0.27(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/table': 2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/tabs': 2.1.9(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/tag': 3.0.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/textarea': 2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/theme': 3.1.2(@chakra-ui/styled-system@2.9.1)
- '@chakra-ui/theme-utils': 2.0.18
- '@chakra-ui/toast': 6.1.4(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/tooltip': 2.2.9(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/utils': 2.0.15
- '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@emotion/react': 11.11.1(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
-
- '@chakra-ui/select@2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/shared-utils@2.0.5': {}
-
- '@chakra-ui/skeleton@2.0.24(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-use-previous': 2.0.5(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/skip-nav@2.0.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/slider@2.0.25(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/number-utils': 2.0.7
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-latest-ref': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-pan-event': 2.0.9(react@18.2.0)
- '@chakra-ui/react-use-size': 2.0.10(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/spinner@2.0.13(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/stat@2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/stepper@2.2.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/styled-system@2.9.1':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- csstype: 3.2.3
- lodash.mergewith: 4.6.2
-
- '@chakra-ui/switch@2.0.27(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/checkbox': 2.2.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/color-mode': 2.1.12(react@18.2.0)
- '@chakra-ui/object-utils': 2.1.0
- '@chakra-ui/react-utils': 2.0.12(react@18.2.0)
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/theme-utils': 2.0.18
- '@chakra-ui/utils': 2.0.15
- '@emotion/react': 11.11.1(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-fast-compare: 3.2.1
-
- '@chakra-ui/table@2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/tabs@2.1.9(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/clickable': 2.0.14(react@18.2.0)
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
- '@chakra-ui/lazy-utils': 2.0.5
- '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/tag@3.0.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/textarea@2.0.19(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/theme-tools@2.0.18(@chakra-ui/styled-system@2.9.1)':
- dependencies:
- '@chakra-ui/anatomy': 2.1.2
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/styled-system': 2.9.1
- color2k: 2.0.3
-
- '@chakra-ui/theme-utils@2.0.18':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/theme': 3.1.2(@chakra-ui/styled-system@2.9.1)
- lodash.mergewith: 4.6.2
-
- '@chakra-ui/theme@3.1.2(@chakra-ui/styled-system@2.9.1)':
- dependencies:
- '@chakra-ui/anatomy': 2.1.2
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/theme-tools': 2.0.18(@chakra-ui/styled-system@2.9.1)
-
- '@chakra-ui/toast@6.1.4(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/alert': 2.1.0(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-timeout': 2.0.5(react@18.2.0)
- '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- '@chakra-ui/theme': 3.1.2(@chakra-ui/styled-system@2.9.1)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@chakra-ui/tooltip@2.2.9(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/dom-utils': 2.1.0
- '@chakra-ui/popper': 3.0.14(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@chakra-ui/react-types': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0)
- '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@chakra-ui/transition@2.0.16(framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- framer-motion: 12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@chakra-ui/utils@2.0.15':
- dependencies:
- '@types/lodash.mergewith': 4.6.7
- css-box-model: 1.2.1
- framesync: 6.1.2
- lodash.mergewith: 4.6.2
-
- '@chakra-ui/visually-hidden@2.0.15(@chakra-ui/system@2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0))(react@18.2.0)
- react: 18.2.0
-
- '@emotion/babel-plugin@11.13.5':
- dependencies:
- '@babel/helper-module-imports': 7.28.6
- '@babel/runtime': 7.29.2
- '@emotion/hash': 0.9.2
- '@emotion/memoize': 0.9.0
- '@emotion/serialize': 1.3.3
- babel-plugin-macros: 3.1.0
- convert-source-map: 1.9.0
- escape-string-regexp: 4.0.0
- find-root: 1.1.0
- source-map: 0.5.7
- stylis: 4.2.0
- transitivePeerDependencies:
- - supports-color
-
- '@emotion/cache@11.14.0':
- dependencies:
- '@emotion/memoize': 0.9.0
- '@emotion/sheet': 1.4.0
- '@emotion/utils': 1.4.2
- '@emotion/weak-memoize': 0.4.0
- stylis: 4.2.0
-
- '@emotion/hash@0.9.2': {}
-
- '@emotion/is-prop-valid@1.4.0':
- dependencies:
- '@emotion/memoize': 0.9.0
-
- '@emotion/memoize@0.9.0': {}
-
- '@emotion/react@11.11.1(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.29.2
- '@emotion/babel-plugin': 11.13.5
- '@emotion/cache': 11.14.0
- '@emotion/serialize': 1.3.3
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.2.0)
- '@emotion/utils': 1.4.2
- '@emotion/weak-memoize': 0.3.1
- hoist-non-react-statics: 3.3.2
- react: 18.2.0
- transitivePeerDependencies:
- - supports-color
-
- '@emotion/serialize@1.3.3':
- dependencies:
- '@emotion/hash': 0.9.2
- '@emotion/memoize': 0.9.0
- '@emotion/unitless': 0.10.0
- '@emotion/utils': 1.4.2
- csstype: 3.2.3
-
- '@emotion/sheet@1.4.0': {}
-
- '@emotion/styled@11.11.0(@emotion/react@11.11.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.29.2
- '@emotion/babel-plugin': 11.13.5
- '@emotion/is-prop-valid': 1.4.0
- '@emotion/react': 11.11.1(react@18.2.0)
- '@emotion/serialize': 1.3.3
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.2.0)
- '@emotion/utils': 1.4.2
- react: 18.2.0
- transitivePeerDependencies:
- - supports-color
-
- '@emotion/unitless@0.10.0': {}
-
- '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.2.0)':
- dependencies:
- react: 18.2.0
-
- '@emotion/utils@1.4.2': {}
-
- '@emotion/weak-memoize@0.3.1': {}
-
- '@emotion/weak-memoize@0.4.0': {}
-
- '@jridgewell/gen-mapping@0.3.13':
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- '@jridgewell/trace-mapping': 0.3.31
-
- '@jridgewell/resolve-uri@3.1.2': {}
-
- '@jridgewell/sourcemap-codec@1.5.5': {}
-
- '@jridgewell/trace-mapping@0.3.31':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.5
-
- '@next/env@13.4.9': {}
-
- '@next/swc-darwin-arm64@13.4.9':
- optional: true
-
- '@next/swc-darwin-x64@13.4.9':
- optional: true
-
- '@next/swc-linux-arm64-gnu@13.4.9':
- optional: true
-
- '@next/swc-linux-arm64-musl@13.4.9':
- optional: true
-
- '@next/swc-linux-x64-gnu@13.4.9':
- optional: true
-
- '@next/swc-linux-x64-musl@13.4.9':
- optional: true
-
- '@next/swc-win32-arm64-msvc@13.4.9':
- optional: true
-
- '@next/swc-win32-ia32-msvc@13.4.9':
- optional: true
-
- '@next/swc-win32-x64-msvc@13.4.9':
- optional: true
-
- '@popperjs/core@2.11.8': {}
-
- '@react-hookz/deep-equal@1.0.4': {}
-
- '@react-hookz/web@23.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-hookz/deep-equal': 1.0.4
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@swc/helpers@0.5.1':
- dependencies:
- tslib: 2.8.1
-
- '@types/lodash.mergewith@4.6.7':
- dependencies:
- '@types/lodash': 4.17.24
-
- '@types/lodash@4.17.24': {}
-
- '@types/parse-json@4.0.2': {}
-
- '@zag-js/element-size@0.3.2': {}
-
- '@zag-js/focus-visible@0.2.2': {}
-
- anymatch@3.1.3:
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.2
-
- aria-hidden@1.2.6:
- dependencies:
- tslib: 2.8.1
-
- babel-plugin-macros@3.1.0:
- dependencies:
- '@babel/runtime': 7.29.2
- cosmiconfig: 7.1.0
- resolve: 1.22.12
-
- binary-extensions@2.3.0: {}
-
- braces@3.0.3:
- dependencies:
- fill-range: 7.1.1
-
- busboy@1.6.0:
- dependencies:
- streamsearch: 1.1.0
-
- callsites@3.1.0: {}
-
- caniuse-lite@1.0.30001790: {}
-
- chokidar@3.6.0:
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
- client-only@0.0.1: {}
-
- clsx@1.2.1: {}
-
- color2k@2.0.3: {}
-
- compute-scroll-into-view@1.0.20: {}
-
- convert-source-map@1.9.0: {}
-
- copy-to-clipboard@3.3.3:
- dependencies:
- toggle-selection: 1.0.6
-
- cosmiconfig@7.1.0:
- dependencies:
- '@types/parse-json': 4.0.2
- import-fresh: 3.3.1
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.3
-
- css-box-model@1.2.1:
- dependencies:
- tiny-invariant: 1.3.3
-
- csstype@3.2.3: {}
-
- debug@4.4.3:
- dependencies:
- ms: 2.1.3
-
- detect-node-es@1.1.0: {}
-
- error-ex@1.3.4:
- dependencies:
- is-arrayish: 0.2.1
-
- es-errors@1.3.0: {}
-
- escape-string-regexp@4.0.0: {}
-
- fill-range@7.1.1:
- dependencies:
- to-regex-range: 5.0.1
-
- find-root@1.1.0: {}
-
- focus-lock@1.3.6:
- dependencies:
- tslib: 2.8.1
-
- framer-motion@12.38.0(@emotion/is-prop-valid@1.4.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- motion-dom: 12.38.0
- motion-utils: 12.36.0
- tslib: 2.8.1
- optionalDependencies:
- '@emotion/is-prop-valid': 1.4.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- framesync@6.1.2:
- dependencies:
- tslib: 2.4.0
-
- fsevents@2.3.3:
- optional: true
-
- function-bind@1.1.2: {}
-
- get-nonce@1.0.1: {}
-
- glob-parent@5.1.2:
- dependencies:
- is-glob: 4.0.3
-
- glob-to-regexp@0.4.1: {}
-
- graceful-fs@4.2.11: {}
-
- hasown@2.0.3:
- dependencies:
- function-bind: 1.1.2
-
- hoist-non-react-statics@3.3.2:
- dependencies:
- react-is: 16.13.1
-
- immutable@4.3.8: {}
-
- import-fresh@3.3.1:
- dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
-
- is-arrayish@0.2.1: {}
-
- is-binary-path@2.1.0:
- dependencies:
- binary-extensions: 2.3.0
-
- is-core-module@2.16.1:
- dependencies:
- hasown: 2.0.3
-
- is-extglob@2.1.1: {}
-
- is-glob@4.0.3:
- dependencies:
- is-extglob: 2.1.1
-
- is-number@7.0.0: {}
-
- iso-3166@4.2.0: {}
-
- js-tokens@4.0.0: {}
-
- jsesc@3.1.0: {}
-
- json-parse-even-better-errors@2.3.1: {}
-
- lines-and-columns@1.2.4: {}
-
- lodash.mergewith@4.6.2: {}
-
- loose-envify@1.4.0:
- dependencies:
- js-tokens: 4.0.0
-
- motion-dom@12.38.0:
- dependencies:
- motion-utils: 12.36.0
-
- motion-utils@12.36.0: {}
-
- ms@2.1.3: {}
-
- nanoid@3.3.11: {}
-
- next@13.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.63.6):
- dependencies:
- '@next/env': 13.4.9
- '@swc/helpers': 0.5.1
- busboy: 1.6.0
- caniuse-lite: 1.0.30001790
- postcss: 8.4.14
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(react@18.2.0)
- watchpack: 2.4.0
- zod: 3.21.4
- optionalDependencies:
- '@next/swc-darwin-arm64': 13.4.9
- '@next/swc-darwin-x64': 13.4.9
- '@next/swc-linux-arm64-gnu': 13.4.9
- '@next/swc-linux-arm64-musl': 13.4.9
- '@next/swc-linux-x64-gnu': 13.4.9
- '@next/swc-linux-x64-musl': 13.4.9
- '@next/swc-win32-arm64-msvc': 13.4.9
- '@next/swc-win32-ia32-msvc': 13.4.9
- '@next/swc-win32-x64-msvc': 13.4.9
- sass: 1.63.6
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
-
- normalize-path@3.0.0: {}
-
- object-assign@4.1.1: {}
-
- parent-module@1.0.1:
- dependencies:
- callsites: 3.1.0
-
- parse-json@5.2.0:
- dependencies:
- '@babel/code-frame': 7.29.0
- error-ex: 1.3.4
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
-
- path-parse@1.0.7: {}
-
- path-type@4.0.0: {}
-
- picocolors@1.1.1: {}
-
- picomatch@2.3.2: {}
-
- postcss@8.4.14:
- dependencies:
- nanoid: 3.3.11
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
- prop-types@15.8.1:
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
-
- react-clientside-effect@1.2.8(react@18.2.0):
- dependencies:
- '@babel/runtime': 7.29.2
- react: 18.2.0
-
- react-dom@18.2.0(react@18.2.0):
- dependencies:
- loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.2
-
- react-fast-compare@3.2.1: {}
-
- react-focus-lock@2.13.7(react@18.2.0):
- dependencies:
- '@babel/runtime': 7.29.2
- focus-lock: 1.3.6
- prop-types: 15.8.1
- react: 18.2.0
- react-clientside-effect: 1.2.8(react@18.2.0)
- use-callback-ref: 1.3.3(react@18.2.0)
- use-sidecar: 1.1.3(react@18.2.0)
-
- react-icons@4.10.1(react@18.2.0):
- dependencies:
- react: 18.2.0
-
- react-is@16.13.1: {}
-
- react-remove-scroll-bar@2.3.8(react@18.2.0):
- dependencies:
- react: 18.2.0
- react-style-singleton: 2.2.3(react@18.2.0)
- tslib: 2.8.1
-
- react-remove-scroll@2.7.2(react@18.2.0):
- dependencies:
- react: 18.2.0
- react-remove-scroll-bar: 2.3.8(react@18.2.0)
- react-style-singleton: 2.2.3(react@18.2.0)
- tslib: 2.8.1
- use-callback-ref: 1.3.3(react@18.2.0)
- use-sidecar: 1.1.3(react@18.2.0)
-
- react-style-singleton@2.2.3(react@18.2.0):
- dependencies:
- get-nonce: 1.0.1
- react: 18.2.0
- tslib: 2.8.1
-
- react@18.2.0:
- dependencies:
- loose-envify: 1.4.0
-
- readdirp@3.6.0:
- dependencies:
- picomatch: 2.3.2
-
- resolve-from@4.0.0: {}
-
- resolve@1.22.12:
- dependencies:
- es-errors: 1.3.0
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
- sass@1.63.6:
- dependencies:
- chokidar: 3.6.0
- immutable: 4.3.8
- source-map-js: 1.2.1
-
- scheduler@0.23.2:
- dependencies:
- loose-envify: 1.4.0
-
- source-map-js@1.2.1: {}
-
- source-map@0.5.7: {}
-
- streamsearch@1.1.0: {}
-
- styled-jsx@5.1.1(react@18.2.0):
- dependencies:
- client-only: 0.0.1
- react: 18.2.0
-
- stylis@4.2.0: {}
-
- supports-preserve-symlinks-flag@1.0.0: {}
-
- swr@2.2.0(react@18.2.0):
- dependencies:
- react: 18.2.0
- use-sync-external-store: 1.6.0(react@18.2.0)
-
- tiny-invariant@1.3.3: {}
-
- to-regex-range@5.0.1:
- dependencies:
- is-number: 7.0.0
-
- toggle-selection@1.0.6: {}
-
- tslib@2.4.0: {}
-
- tslib@2.8.1: {}
-
- use-callback-ref@1.3.3(react@18.2.0):
- dependencies:
- react: 18.2.0
- tslib: 2.8.1
-
- use-sidecar@1.1.3(react@18.2.0):
- dependencies:
- detect-node-es: 1.1.0
- react: 18.2.0
- tslib: 2.8.1
-
- use-sync-external-store@1.6.0(react@18.2.0):
- dependencies:
- react: 18.2.0
-
- watchpack@2.4.0:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
- yaml@1.10.3: {}
-
- zod@3.21.4: {}
diff --git a/legacy-frontend/src/style.scss b/legacy-frontend/src/style.scss
deleted file mode 100644
index 47acc37..0000000
--- a/legacy-frontend/src/style.scss
+++ /dev/null
@@ -1,29 +0,0 @@
-.page {
-
- h1,
- h2,
- h3,
- h4,
- h5 {
- font-family: var(--chakra-fonts-heading);
- font-weight: var(--chakra-fontWeights-bold);
- margin-top: var(--chakra-space-6);
- margin-bottom: var(--chakra-space-1);
- }
-
-
- ul {
- margin-left: 2rem;
- }
-}
-
-.vendor {
-
- h5 {
- font-size: var(--chakra-fontSizes-xl);
- font-family: var(--chakra-fonts-heading);
- font-weight: var(--chakra-fontWeights-bold);
- margin-top: var(--chakra-space-6);
- margin-bottom: var(--chakra-space-1);
- }
-}
diff --git a/legacy-frontend/src/theme.js b/legacy-frontend/src/theme.js
deleted file mode 100644
index 9f30bd2..0000000
--- a/legacy-frontend/src/theme.js
+++ /dev/null
@@ -1,40 +0,0 @@
-import { extendTheme } from '@chakra-ui/react'
-import { defineStyle, defineStyleConfig } from '@chakra-ui/react'
-
-const pagination = defineStyle({
- whiteSpace: 'nowrap',
- bg: 'transparent',
- gap: 3,
- paddingInlineStart: 3,
- paddingInlineEnd: 3,
- lineHeight: 10,
- borderRadius: 'md',
- border: '1px solid',
- borderColor: 'inherit',
- width: '100%',
- _hover: {
- textDecor: 'none',
- },
- '&.current': {
- bg: 'var(--chakra-colors-gray-300)',
- border: '1px solid transparent',
- },
- _dark: {
- bg: 'var(--chakra-colors-gray-900)',
- '&.current': {
- bg: 'var(--chakra-colors-gray-700)',
- },
- },
-})
-
-const linkTheme = defineStyleConfig({
- variants: { pagination },
-})
-
-const theme = extendTheme({
- components: {
- Link: linkTheme,
- },
-})
-
-export default theme