diff --git a/apps/builder/package.json b/apps/builder/package.json
index b2d54beb38..fb762ca328 100644
--- a/apps/builder/package.json
+++ b/apps/builder/package.json
@@ -14,14 +14,14 @@
},
"dependencies": {
"@braintree/sanitize-url": "7.0.1",
- "@chakra-ui/anatomy": "2.1.1",
- "@chakra-ui/react": "2.7.1",
- "@chakra-ui/theme-tools": "2.0.18",
+ "@chakra-ui/anatomy": "2.2.2",
+ "@chakra-ui/react": "2.8.2",
+ "@chakra-ui/theme-tools": "2.1.2",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.1",
- "@emotion/react": "11.11.1",
- "@emotion/styled": "11.11.0",
+ "@emotion/react": "11.11.4",
+ "@emotion/styled": "11.11.5",
"@faire/mjml-react": "3.3.0",
"@giphy/js-fetch-api": "5.0.0",
"@giphy/js-types": "4.4.0",
@@ -65,13 +65,13 @@
"dequal": "2.0.3",
"emojilib": "3.0.10",
"focus-visible": "5.2.0",
- "framer-motion": "10.3.0",
+ "framer-motion": "11.1.7",
"google-auth-library": "8.9.0",
"google-spreadsheet": "4.1.1",
"immer": "10.0.2",
"isolated-vm": "4.7.2",
"jsonwebtoken": "9.0.1",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"libphonenumber-js": "1.10.37",
"micro": "10.0.1",
"micro-cors": "0.1.1",
@@ -99,7 +99,7 @@
"zustand": "4.5.0"
},
"devDependencies": {
- "@chakra-ui/styled-system": "2.9.1",
+ "@chakra-ui/styled-system": "2.9.2",
"@playwright/test": "1.43.1",
"@typebot.io/billing": "workspace:*",
"@typebot.io/forge": "workspace:*",
diff --git a/apps/builder/src/components/EditableEmojiOrImageIcon.tsx b/apps/builder/src/components/EditableEmojiOrImageIcon.tsx
index 80df42ec01..5f49038f68 100644
--- a/apps/builder/src/components/EditableEmojiOrImageIcon.tsx
+++ b/apps/builder/src/components/EditableEmojiOrImageIcon.tsx
@@ -6,6 +6,7 @@ import {
PopoverContent,
Flex,
useColorModeValue,
+ Portal,
} from '@chakra-ui/react'
import React from 'react'
import { EmojiOrImageIcon } from './EmojiOrImageIcon'
@@ -55,16 +56,19 @@ export const EditableEmojiOrImageIcon = ({
-
-
-
+
+
+
+
+
>
)}
diff --git a/apps/builder/src/components/ImageUploadContent/ImageUploadContent.tsx b/apps/builder/src/components/ImageUploadContent/ImageUploadContent.tsx
index fc7cd0bd65..e6cd71a6aa 100644
--- a/apps/builder/src/components/ImageUploadContent/ImageUploadContent.tsx
+++ b/apps/builder/src/components/ImageUploadContent/ImageUploadContent.tsx
@@ -16,6 +16,7 @@ type Props = {
defaultUrl?: string
imageSize?: 'small' | 'regular' | 'thumb'
initialTab?: Tabs
+ linkWithVariableButton?: boolean
onSubmit: (url: string) => void
onClose?: () => void
} & (
@@ -43,6 +44,7 @@ export const ImageUploadContent = ({
imageSize = 'regular',
onClose,
initialTab,
+ linkWithVariableButton,
...props
}: Props) => {
const includedTabs =
@@ -128,6 +130,7 @@ export const ImageUploadContent = ({
imageSize={imageSize}
onSubmit={handleSubmit}
defaultUrl={defaultUrl}
+ linkWithVariableButton={linkWithVariableButton}
/>
)
@@ -138,12 +141,14 @@ const BodyContent = ({
tab,
defaultUrl,
imageSize,
+ linkWithVariableButton,
onSubmit,
}: {
uploadFileProps?: FilePathUploadProps
tab: Tabs
defaultUrl?: string
imageSize: 'small' | 'regular' | 'thumb'
+ linkWithVariableButton?: boolean
onSubmit: (url: string) => void
}) => {
switch (tab) {
@@ -157,7 +162,13 @@ const BodyContent = ({
)
}
case 'link':
- return
+ return (
+
+ )
case 'giphy':
return
case 'emoji':
@@ -194,7 +205,8 @@ const UploadFileContent = ({
const EmbedLinkContent = ({
defaultUrl,
onNewUrl,
-}: ContentProps & { defaultUrl?: string }) => {
+ withVariableButton,
+}: ContentProps & { defaultUrl?: string; withVariableButton?: boolean }) => {
const { t } = useTranslate()
return (
@@ -203,6 +215,7 @@ const EmbedLinkContent = ({
placeholder={t('editor.header.linkTab.searchInputPlaceholder.label')}
onChange={onNewUrl}
defaultValue={defaultUrl ?? ''}
+ withVariableButton={withVariableButton}
/>
)
diff --git a/apps/docs/package.json b/apps/docs/package.json
index ebee53e237..1c4850478e 100644
--- a/apps/docs/package.json
+++ b/apps/docs/package.json
@@ -9,7 +9,7 @@
},
"devDependencies": {
"mintlify": "4.0.75",
- "tsx": "^4.6.2",
+ "tsx": "4.6.2",
"dotenv-cli": "7.4.1"
}
-}
+}
\ No newline at end of file
diff --git a/apps/viewer/package.json b/apps/viewer/package.json
index cd88ac0c1a..e431f81f33 100644
--- a/apps/viewer/package.json
+++ b/apps/viewer/package.json
@@ -27,7 +27,7 @@
"google-spreadsheet": "4.1.1",
"got": "12.6.0",
"isolated-vm": "4.7.2",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"next": "14.1.0",
"nextjs-cors": "2.1.2",
"nodemailer": "6.9.8",
@@ -68,4 +68,4 @@
"typescript": "5.4.5",
"zod": "3.22.4"
}
-}
+}
\ No newline at end of file
diff --git a/ee/apps/landing-page/assets/icons/AccessibilityIcon.tsx b/ee/apps/landing-page/assets/icons/AccessibilityIcon.tsx
index 08e90f3989..eb96746bee 100644
--- a/ee/apps/landing-page/assets/icons/AccessibilityIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/AccessibilityIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const AccessibilityIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/ArrowRight.tsx b/ee/apps/landing-page/assets/icons/ArrowRight.tsx
index ffb6c50ece..465f91ac3e 100644
--- a/ee/apps/landing-page/assets/icons/ArrowRight.tsx
+++ b/ee/apps/landing-page/assets/icons/ArrowRight.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const ArrowRight = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/CaluclatorIcon.tsx b/ee/apps/landing-page/assets/icons/CaluclatorIcon.tsx
index c9e2e3352a..59cb3db2d3 100644
--- a/ee/apps/landing-page/assets/icons/CaluclatorIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/CaluclatorIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const CalculatorIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/CapterraIcon.tsx b/ee/apps/landing-page/assets/icons/CapterraIcon.tsx
index ae64bd6dfc..f4b61c7e7d 100644
--- a/ee/apps/landing-page/assets/icons/CapterraIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/CapterraIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
export const CapterraIcon = (props: IconProps) => (
(
diff --git a/ee/apps/landing-page/assets/icons/CheckIcon.tsx b/ee/apps/landing-page/assets/icons/CheckIcon.tsx
index 0ae59cc754..a1132b7abd 100644
--- a/ee/apps/landing-page/assets/icons/CheckIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/CheckIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
import { featherIconsBaseProps } from '.'
diff --git a/ee/apps/landing-page/assets/icons/ChevronDownIcon.tsx b/ee/apps/landing-page/assets/icons/ChevronDownIcon.tsx
index 996b649062..81d8469cee 100644
--- a/ee/apps/landing-page/assets/icons/ChevronDownIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/ChevronDownIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const ChevronDownIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/ChevronRightIcon.tsx b/ee/apps/landing-page/assets/icons/ChevronRightIcon.tsx
index 0b4402234b..64ba82f4c8 100644
--- a/ee/apps/landing-page/assets/icons/ChevronRightIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/ChevronRightIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const ChevronRightIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/ConditionIcon.tsx b/ee/apps/landing-page/assets/icons/ConditionIcon.tsx
index 182cd1f977..f8f531acd7 100644
--- a/ee/apps/landing-page/assets/icons/ConditionIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/ConditionIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const ConditionIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/DoIcon.tsx b/ee/apps/landing-page/assets/icons/DoIcon.tsx
index 0acce350fe..48b0f1a43d 100644
--- a/ee/apps/landing-page/assets/icons/DoIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/DoIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const DoIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/DocIcon.tsx b/ee/apps/landing-page/assets/icons/DocIcon.tsx
index 261f052f93..ff5ebc83cb 100644
--- a/ee/apps/landing-page/assets/icons/DocIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/DocIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const DocIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/DontIcon.tsx b/ee/apps/landing-page/assets/icons/DontIcon.tsx
index 469703dbaa..1b7d5f76ae 100644
--- a/ee/apps/landing-page/assets/icons/DontIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/DontIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const DontIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/EmailIcon.tsx b/ee/apps/landing-page/assets/icons/EmailIcon.tsx
index 651e8ee194..81b33b8b53 100644
--- a/ee/apps/landing-page/assets/icons/EmailIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/EmailIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import { featherIconsBaseProps } from './HamburgerIcon'
export const EmailIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/ExternalLinkIcon.tsx b/ee/apps/landing-page/assets/icons/ExternalLinkIcon.tsx
index 9bd3b3f960..00634ba815 100644
--- a/ee/apps/landing-page/assets/icons/ExternalLinkIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/ExternalLinkIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import { featherIconsBaseProps } from './HamburgerIcon'
export const ExternalLinkIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/FolderIcon.tsx b/ee/apps/landing-page/assets/icons/FolderIcon.tsx
index 3080e81ab7..5b41fa48e5 100644
--- a/ee/apps/landing-page/assets/icons/FolderIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/FolderIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const FolderIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/HamburgerIcon.tsx b/ee/apps/landing-page/assets/icons/HamburgerIcon.tsx
index 1d0ecb7575..ab723d621d 100644
--- a/ee/apps/landing-page/assets/icons/HamburgerIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/HamburgerIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const featherIconsBaseProps: IconProps = {
diff --git a/ee/apps/landing-page/assets/icons/Logo.tsx b/ee/apps/landing-page/assets/icons/Logo.tsx
index 4516e0cc87..cd29ee9ee6 100644
--- a/ee/apps/landing-page/assets/icons/Logo.tsx
+++ b/ee/apps/landing-page/assets/icons/Logo.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const Logo = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/MapIcon.tsx b/ee/apps/landing-page/assets/icons/MapIcon.tsx
index 495b13deeb..6e602c2e01 100644
--- a/ee/apps/landing-page/assets/icons/MapIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/MapIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const MapIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/NewspaperIcon.tsx b/ee/apps/landing-page/assets/icons/NewspaperIcon.tsx
new file mode 100644
index 0000000000..1dbc0cabd2
--- /dev/null
+++ b/ee/apps/landing-page/assets/icons/NewspaperIcon.tsx
@@ -0,0 +1,7 @@
+import { Icon } from '@chakra-ui/icon'
+
+export const NewspaperIcon = () => (
+
+
+
+)
diff --git a/ee/apps/landing-page/assets/icons/PeopleCircleIcon.tsx b/ee/apps/landing-page/assets/icons/PeopleCircleIcon.tsx
index f77365249a..87e261ec8b 100644
--- a/ee/apps/landing-page/assets/icons/PeopleCircleIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/PeopleCircleIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const PeopleCircleIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/PersonAddIcon.tsx b/ee/apps/landing-page/assets/icons/PersonAddIcon.tsx
index 3acb7b0eeb..69e5c57114 100644
--- a/ee/apps/landing-page/assets/icons/PersonAddIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/PersonAddIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
import React from 'react'
export const PersonAddIcon = (props: IconProps) => (
diff --git a/ee/apps/landing-page/assets/icons/ProductHuntIcon.tsx b/ee/apps/landing-page/assets/icons/ProductHuntIcon.tsx
index 9328268f74..96e90f1334 100644
--- a/ee/apps/landing-page/assets/icons/ProductHuntIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/ProductHuntIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
export const ProductHuntIcon = (props: IconProps) => (
(
diff --git a/ee/apps/landing-page/assets/icons/RedditIcon.tsx b/ee/apps/landing-page/assets/icons/RedditIcon.tsx
index fa197ec956..8eb39b02eb 100644
--- a/ee/apps/landing-page/assets/icons/RedditIcon.tsx
+++ b/ee/apps/landing-page/assets/icons/RedditIcon.tsx
@@ -1,4 +1,4 @@
-import Icon, { IconProps } from '@chakra-ui/icon'
+import { Icon, IconProps } from '@chakra-ui/icon'
export const RedditIcon = (props: IconProps) => (
(
diff --git a/ee/apps/landing-page/components/common/Header/_data.tsx b/ee/apps/landing-page/components/common/Header/_data.tsx
index 72e9eef669..c7a46434a8 100755
--- a/ee/apps/landing-page/components/common/Header/_data.tsx
+++ b/ee/apps/landing-page/components/common/Header/_data.tsx
@@ -1,6 +1,6 @@
import { GitHubIcon } from 'assets/icons'
import { DocIcon } from 'assets/icons/DocIcon'
-import { MapIcon } from 'assets/icons/MapIcon'
+import { NewspaperIcon } from 'assets/icons/NewspaperIcon'
import { PeopleCircleIcon } from 'assets/icons/PeopleCircleIcon'
import * as React from 'react'
@@ -22,11 +22,11 @@ export const links = [
icon: ,
},
{
- label: 'Roadmap',
+ label: 'Blog',
description:
- "Follow the development and make suggestions for which features you'd like to see",
- href: 'https://feedback.typebot.io/roadmap',
- icon: ,
+ 'Read the latest news and updates about Typebot and the chatbots ecosystem',
+ href: '/blog',
+ icon: ,
},
{
label: 'Community',
diff --git a/ee/apps/landing-page/package.json b/ee/apps/landing-page/package.json
index 1706659c03..879aefc9ac 100644
--- a/ee/apps/landing-page/package.json
+++ b/ee/apps/landing-page/package.json
@@ -11,11 +11,11 @@
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
- "@chakra-ui/icon": "3.0.15",
+ "@chakra-ui/icon": "3.2.0",
"@chakra-ui/next-js": "2.2.0",
- "@chakra-ui/react": "2.7.1",
- "@emotion/react": "11.11.1",
- "@emotion/styled": "11.11.0",
+ "@chakra-ui/react": "2.8.2",
+ "@emotion/react": "11.11.4",
+ "@emotion/styled": "11.11.5",
"@typebot.io/billing": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/nextjs": "workspace:*",
@@ -23,7 +23,7 @@
"@typebot.io/schemas": "workspace:*",
"aos": "2.3.4",
"focus-visible": "5.2.0",
- "framer-motion": "10.12.20",
+ "framer-motion": "11.1.7",
"next": "14.1.0",
"next-mdx-remote": "4.4.1",
"react": "18.2.0",
@@ -33,7 +33,7 @@
},
"devDependencies": {
"@babel/core": "7.22.9",
- "@chakra-ui/styled-system": "2.9.1",
+ "@chakra-ui/styled-system": "2.9.2",
"@tailwindcss/typography": "0.5.12",
"@typebot.io/env": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
diff --git a/packages/bot-engine/package.json b/packages/bot-engine/package.json
index df6ff4b5ee..c87f5e2256 100644
--- a/packages/bot-engine/package.json
+++ b/packages/bot-engine/package.json
@@ -26,7 +26,7 @@
"date-fns-tz": "2.0.0",
"google-auth-library": "8.9.0",
"google-spreadsheet": "4.1.1",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"libphonenumber-js": "1.10.37",
"node-html-parser": "6.1.5",
"nodemailer": "6.9.8",
@@ -42,4 +42,4 @@
"@types/nodemailer": "6.4.14",
"@types/qs": "6.9.7"
}
-}
+}
\ No newline at end of file
diff --git a/packages/deprecated/bot-engine/package.json b/packages/deprecated/bot-engine/package.json
index 050456df1c..32ae43c26c 100644
--- a/packages/deprecated/bot-engine/package.json
+++ b/packages/deprecated/bot-engine/package.json
@@ -11,9 +11,9 @@
},
"dependencies": {
"@stripe/react-stripe-js": "1.16.4",
- "@stripe/stripe-js": "1.46.0",
+ "@stripe/stripe-js": "1.54.1",
"prop-types": "15.8.1",
- "qs": "6.11.0",
+ "qs": "6.11.2",
"react-phone-number-input": "3.2.16",
"react-scroll": "1.8.9",
"react-transition-group": "4.4.5",
@@ -26,17 +26,17 @@
"@types/react-phone-number-input": "3.0.14",
"@types/react-scroll": "1.8.6",
"@types/react-transition-group": "4.4.5",
- "autoprefixer": "10.4.13",
+ "autoprefixer": "10.4.14",
"@typebot.io/prisma": "workspace:*",
- "esbuild": "0.17.5",
+ "esbuild": "0.19.5",
"eslint": "8.44.0",
"eslint-config-custom": "workspace:*",
"@typebot.io/schemas": "workspace:*",
- "postcss": "8.4.21",
- "prettier": "2.8.3",
+ "postcss": "8.4.26",
+ "prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
- "tailwindcss": "3.2.4",
+ "tailwindcss": "3.3.3",
"@typebot.io/tsconfig": "workspace:*",
"tsup": "6.5.0",
"typebot-js": "workspace:*",
@@ -49,4 +49,4 @@
"react": "18.0.0",
"react-dom": "18.0.0"
}
-}
+}
\ No newline at end of file
diff --git a/packages/deprecated/typebot-js/package.json b/packages/deprecated/typebot-js/package.json
index a4dbeadf56..1040d27039 100644
--- a/packages/deprecated/typebot-js/package.json
+++ b/packages/deprecated/typebot-js/package.json
@@ -16,9 +16,9 @@
"eslint-config-custom": "workspace:*",
"jest": "29.4.1",
"jest-environment-jsdom": "29.4.1",
- "prettier": "2.8.3",
+ "prettier": "2.8.8",
"ts-jest": "29.0.5",
"typescript": "5.4.5",
"@typebot.io/tsconfig": "workspace:*"
}
-}
+}
\ No newline at end of file
diff --git a/packages/emails/package.json b/packages/emails/package.json
index eeabea3e32..7c6ad5eac5 100644
--- a/packages/emails/package.json
+++ b/packages/emails/package.json
@@ -23,7 +23,7 @@
"http-server": "14.1.1",
"nodemailer": "6.9.8",
"react": "18.2.0",
- "tsx": "3.12.7",
+ "tsx": "4.6.2",
"@typebot.io/lib": "workspace:*",
"eslint": "8.44.0",
"eslint-config-custom": "workspace:*",
@@ -34,4 +34,4 @@
"@faire/mjml-react": "2.1.4",
"nodemailer": "6.7.8"
}
-}
+}
\ No newline at end of file
diff --git a/packages/embeds/js/package.json b/packages/embeds/js/package.json
index b39e3f5aa7..cfed7deb0e 100644
--- a/packages/embeds/js/package.json
+++ b/packages/embeds/js/package.json
@@ -16,7 +16,7 @@
"@stripe/stripe-js": "1.54.1",
"@udecode/plate-common": "30.4.5",
"dompurify": "3.0.6",
- "ky": "1.1.3",
+ "ky": "1.2.4",
"marked": "9.0.3",
"solid-element": "1.7.1",
"solid-js": "1.7.8"
@@ -48,4 +48,4 @@
"tailwindcss": "3.3.3",
"typescript": "5.4.5"
}
-}
+}
\ No newline at end of file
diff --git a/packages/embeds/nextjs/package.json b/packages/embeds/nextjs/package.json
index 11ff778ebb..32dd8b7196 100644
--- a/packages/embeds/nextjs/package.json
+++ b/packages/embeds/nextjs/package.json
@@ -34,7 +34,7 @@
"rollup": "3.26.2",
"rollup-plugin-typescript-paths": "1.4.0",
"tslib": "2.6.0",
- "tsx": "3.12.7",
+ "tsx": "4.6.2",
"typescript": "5.4.5",
"@rollup/plugin-typescript": "11.1.2"
},
@@ -42,4 +42,4 @@
"next": "12.x || 13.x || 14.x",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
-}
+}
\ No newline at end of file
diff --git a/packages/embeds/react/package.json b/packages/embeds/react/package.json
index 4918ef0645..947b518b56 100644
--- a/packages/embeds/react/package.json
+++ b/packages/embeds/react/package.json
@@ -38,11 +38,11 @@
"rollup": "3.26.2",
"rollup-plugin-typescript-paths": "1.4.0",
"tslib": "2.6.0",
- "tsx": "3.12.7",
+ "tsx": "4.6.2",
"typescript": "5.4.5",
"@rollup/plugin-typescript": "11.1.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
-}
+}
\ No newline at end of file
diff --git a/packages/env/package.json b/packages/env/package.json
index 2cddff3852..403e6d8f33 100644
--- a/packages/env/package.json
+++ b/packages/env/package.json
@@ -11,10 +11,10 @@
},
"devDependencies": {
"@typebot.io/tsconfig": "workspace:*",
- "@types/node": "20.4.9",
+ "@types/node": "20.4.2",
"esbuild": "0.19.5"
},
"scripts": {
"build": "esbuild env.ts --bundle --packages=external --format=esm --outfile=dist/env.mjs"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/anthropic/package.json b/packages/forge/blocks/anthropic/package.json
index a9df4cf1d5..ad1db6cc05 100644
--- a/packages/forge/blocks/anthropic/package.json
+++ b/packages/forge/blocks/anthropic/package.json
@@ -10,13 +10,13 @@
"@typebot.io/forge": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
- "@types/node": "^20.14.2",
+ "@types/node": "20.4.2",
"@types/react": "18.2.15",
"typescript": "5.4.5"
},
"dependencies": {
"@anthropic-ai/sdk": "0.20.6",
"ai": "3.1.12",
- "ky": "1.2.3"
+ "ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/calCom/package.json b/packages/forge/blocks/calCom/package.json
index df70c07b9b..883ad3f8a6 100644
--- a/packages/forge/blocks/calCom/package.json
+++ b/packages/forge/blocks/calCom/package.json
@@ -12,4 +12,4 @@
"typescript": "5.4.5",
"@typebot.io/lib": "workspace:*"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/chatNode/package.json b/packages/forge/blocks/chatNode/package.json
index 3afe4669d8..4eb7463a8f 100644
--- a/packages/forge/blocks/chatNode/package.json
+++ b/packages/forge/blocks/chatNode/package.json
@@ -11,6 +11,6 @@
"@typebot.io/tsconfig": "workspace:*",
"@types/react": "18.2.15",
"typescript": "5.4.5",
- "ky": "1.2.3"
+ "ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/difyAi/package.json b/packages/forge/blocks/difyAi/package.json
index 69dd0ea3d3..6e50d6f200 100644
--- a/packages/forge/blocks/difyAi/package.json
+++ b/packages/forge/blocks/difyAi/package.json
@@ -10,10 +10,10 @@
"@typebot.io/lib": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@types/react": "18.2.15",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"typescript": "5.4.5"
},
"dependencies": {
"ai": "3.1.12"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/elevenlabs/package.json b/packages/forge/blocks/elevenlabs/package.json
index 427b9aa687..befc7fbbd3 100644
--- a/packages/forge/blocks/elevenlabs/package.json
+++ b/packages/forge/blocks/elevenlabs/package.json
@@ -13,7 +13,7 @@
"typescript": "5.4.5"
},
"dependencies": {
- "ky": "1.2.3",
+ "ky": "1.2.4",
"@typebot.io/lib": "workspace:*"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/mistral/package.json b/packages/forge/blocks/mistral/package.json
index f169904822..52a1a215c1 100644
--- a/packages/forge/blocks/mistral/package.json
+++ b/packages/forge/blocks/mistral/package.json
@@ -18,4 +18,4 @@
"ai": "3.1.12",
"ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/nocodb/package.json b/packages/forge/blocks/nocodb/package.json
index b253c35d53..35cf938864 100644
--- a/packages/forge/blocks/nocodb/package.json
+++ b/packages/forge/blocks/nocodb/package.json
@@ -10,9 +10,9 @@
"@typebot.io/lib": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
"@types/react": "18.2.15",
- "typescript": "5.3.2"
+ "typescript": "5.4.5"
},
"dependencies": {
- "ky": "1.2.3"
+ "ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/openRouter/package.json b/packages/forge/blocks/openRouter/package.json
index cfac41ad84..9f3e9edbca 100644
--- a/packages/forge/blocks/openRouter/package.json
+++ b/packages/forge/blocks/openRouter/package.json
@@ -12,6 +12,6 @@
"typescript": "5.4.5",
"@typebot.io/lib": "workspace:*",
"@typebot.io/openai-block": "workspace:*",
- "ky": "1.2.3"
+ "ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/openai/package.json b/packages/forge/blocks/openai/package.json
index f309ab6679..ae9610a9bf 100644
--- a/packages/forge/blocks/openai/package.json
+++ b/packages/forge/blocks/openai/package.json
@@ -17,6 +17,6 @@
"typescript": "5.4.5",
"@typebot.io/lib": "workspace:*",
"@typebot.io/variables": "workspace:*",
- "ky": "1.2.3"
+ "ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/qrcode/package.json b/packages/forge/blocks/qrcode/package.json
index b3fadcf1fa..9b90fdfbb7 100644
--- a/packages/forge/blocks/qrcode/package.json
+++ b/packages/forge/blocks/qrcode/package.json
@@ -16,4 +16,4 @@
"dependencies": {
"qrcode": "^1.5.3"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/togetherAi/package.json b/packages/forge/blocks/togetherAi/package.json
index 6478f1d627..35eeff5362 100644
--- a/packages/forge/blocks/togetherAi/package.json
+++ b/packages/forge/blocks/togetherAi/package.json
@@ -14,4 +14,4 @@
"@types/react": "18.2.15",
"typescript": "5.4.5"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/blocks/zemanticAi/package.json b/packages/forge/blocks/zemanticAi/package.json
index 3e6fde996b..9154d14043 100644
--- a/packages/forge/blocks/zemanticAi/package.json
+++ b/packages/forge/blocks/zemanticAi/package.json
@@ -11,6 +11,6 @@
"@types/react": "18.2.15",
"typescript": "5.4.5",
"@typebot.io/lib": "workspace:*",
- "ky": "1.2.3"
+ "ky": "1.2.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/forge/cli/package.json b/packages/forge/cli/package.json
index f052fe87ef..09fe2780a7 100644
--- a/packages/forge/cli/package.json
+++ b/packages/forge/cli/package.json
@@ -13,7 +13,7 @@
"@clack/prompts": "^0.7.0",
"@typebot.io/tsconfig": "workspace:*",
"@types/node": "20.4.2",
- "tsx": "^4.6.1",
- "prettier": "3.0.0"
+ "tsx": "4.6.2",
+ "prettier": "2.8.8"
}
-}
+}
\ No newline at end of file
diff --git a/packages/lib/package.json b/packages/lib/package.json
index ac240d6cb5..e7df87d573 100644
--- a/packages/lib/package.json
+++ b/packages/lib/package.json
@@ -7,7 +7,7 @@
"types": "./index.ts",
"devDependencies": {
"@paralleldrive/cuid2": "2.2.1",
- "@playwright/test": "1.36.0",
+ "@playwright/test": "1.43.1",
"@typebot.io/env": "workspace:*",
"@typebot.io/prisma": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
@@ -38,7 +38,7 @@
"@udecode/plate-paragraph": "30.5.3",
"escape-html": "1.0.3",
"google-auth-library": "8.9.0",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"minio": "7.1.3",
"posthog-node": "3.1.1",
"remark-parse": "11.0.0",
@@ -48,4 +48,4 @@
"wildcard-match": "5.1.3",
"zod": "3.22.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/playwright/package.json b/packages/playwright/package.json
index 62012492b3..6047fef5b6 100644
--- a/packages/playwright/package.json
+++ b/packages/playwright/package.json
@@ -7,7 +7,7 @@
"author": "Baptiste Arnaud",
"license": "AGPL-3.0-or-later",
"dependencies": {
- "@playwright/test": "^1.42.1",
+ "@playwright/test": "1.43.1",
"@typebot.io/lib": "workspace:*",
"@typebot.io/prisma": "workspace:*",
"@typebot.io/schemas": "workspace:*"
@@ -16,4 +16,4 @@
"@types/node": "20.4.2",
"@typebot.io/tsconfig": "workspace:*"
}
-}
+}
\ No newline at end of file
diff --git a/packages/prisma/package.json b/packages/prisma/package.json
index 59da27411c..d47a9db4fb 100644
--- a/packages/prisma/package.json
+++ b/packages/prisma/package.json
@@ -22,7 +22,7 @@
"dotenv-cli": "7.4.1",
"prisma": "5.12.1",
"@typebot.io/tsconfig": "workspace:*",
- "tsx": "3.12.7",
+ "tsx": "4.6.2",
"typescript": "5.4.5"
}
-}
+}
\ No newline at end of file
diff --git a/packages/radar/package.json b/packages/radar/package.json
index 71717122ab..6870530413 100644
--- a/packages/radar/package.json
+++ b/packages/radar/package.json
@@ -15,4 +15,4 @@
"@typebot.io/env": "workspace:*",
"typescript": "5.4.5"
}
-}
+}
\ No newline at end of file
diff --git a/packages/schemas/package.json b/packages/schemas/package.json
index a8ce6c116b..41172a7884 100644
--- a/packages/schemas/package.json
+++ b/packages/schemas/package.json
@@ -16,4 +16,4 @@
"@typebot.io/tsconfig": "workspace:*",
"typescript": "5.4.5"
}
-}
+}
\ No newline at end of file
diff --git a/packages/scripts/package.json b/packages/scripts/package.json
index 658895cb37..d43c12dc53 100644
--- a/packages/scripts/package.json
+++ b/packages/scripts/package.json
@@ -42,10 +42,10 @@
"@types/papaparse": "5.3.7",
"@types/prompts": "2.4.4",
"deep-object-diff": "1.1.9",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"prompts": "2.4.2",
"stripe": "12.13.0",
- "tsx": "3.12.7",
+ "tsx": "4.6.2",
"typescript": "5.4.5",
"zod": "3.22.4"
},
@@ -58,4 +58,4 @@
"@typebot.io/billing": "workspace:*",
"@typebot.io/telemetry": "workspace:*"
}
-}
+}
\ No newline at end of file
diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json
index 41fa6cdcb1..24062c827c 100644
--- a/packages/telemetry/package.json
+++ b/packages/telemetry/package.json
@@ -8,11 +8,11 @@
"license": "AGPL-3.0-or-later",
"dependencies": {
"@typebot.io/schemas": "workspace:*",
- "ky": "1.2.3",
+ "ky": "1.2.4",
"posthog-node": "3.1.1",
"@typebot.io/env": "workspace:*"
},
"devDependencies": {
"@typebot.io/tsconfig": "workspace:*"
}
-}
+}
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2c6e5d0b9e..054e672bff 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -33,14 +33,14 @@ importers:
specifier: 7.0.1
version: 7.0.1
'@chakra-ui/anatomy':
- specifier: 2.1.1
- version: 2.1.1
+ specifier: 2.2.2
+ version: 2.2.2
'@chakra-ui/react':
- specifier: 2.7.1
- version: 2.7.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0)
+ specifier: 2.8.2
+ version: 2.8.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.15)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0)
'@chakra-ui/theme-tools':
- specifier: 2.0.18
- version: 2.0.18(@chakra-ui/styled-system@2.9.1)
+ specifier: 2.1.2
+ version: 2.1.2(@chakra-ui/styled-system@2.9.2)
'@dnd-kit/core':
specifier: 6.0.8
version: 6.0.8(react-dom@18.2.0)(react@18.2.0)
@@ -51,11 +51,11 @@ importers:
specifier: 3.2.1
version: 3.2.1(react@18.2.0)
'@emotion/react':
- specifier: 11.11.1
- version: 11.11.1(@types/react@18.2.15)(react@18.2.0)
+ specifier: 11.11.4
+ version: 11.11.4(@types/react@18.2.15)(react@18.2.0)
'@emotion/styled':
- specifier: 11.11.0
- version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
+ specifier: 11.11.5
+ version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
'@faire/mjml-react':
specifier: 3.3.0
version: 3.3.0(mjml@4.15.3)(react-dom@18.2.0)(react@18.2.0)
@@ -186,8 +186,8 @@ importers:
specifier: 5.2.0
version: 5.2.0
framer-motion:
- specifier: 10.3.0
- version: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ specifier: 11.1.7
+ version: 11.1.7(react-dom@18.2.0)(react@18.2.0)
google-auth-library:
specifier: 8.9.0
version: 8.9.0
@@ -204,8 +204,8 @@ importers:
specifier: 9.0.1
version: 9.0.1
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
libphonenumber-js:
specifier: 1.10.37
version: 1.10.37
@@ -283,8 +283,8 @@ importers:
version: 4.5.0(@types/react@18.2.15)(immer@10.0.2)(react@18.2.0)
devDependencies:
'@chakra-ui/styled-system':
- specifier: 2.9.1
- version: 2.9.1
+ specifier: 2.9.2
+ version: 2.9.2
'@playwright/test':
specifier: 1.43.1
version: 1.43.1
@@ -391,8 +391,8 @@ importers:
specifier: 4.0.75
version: 4.0.75(acorn@8.11.3)(axios@1.6.7)(openapi-types@12.1.3)
tsx:
- specifier: ^4.6.2
- version: 4.7.1
+ specifier: 4.6.2
+ version: 4.6.2
apps/viewer:
dependencies:
@@ -439,8 +439,8 @@ importers:
specifier: 4.7.2
version: 4.7.2
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
next:
specifier: 14.1.0
version: 14.1.0(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)
@@ -557,20 +557,20 @@ importers:
ee/apps/landing-page:
dependencies:
'@chakra-ui/icon':
- specifier: 3.0.15
- version: 3.0.15(@chakra-ui/system@2.6.2)(react@18.2.0)
+ specifier: 3.2.0
+ version: 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
'@chakra-ui/next-js':
specifier: 2.2.0
- version: 2.2.0(@chakra-ui/react@2.7.1)(@emotion/react@11.11.1)(next@14.1.0)(react@18.2.0)
+ version: 2.2.0(@chakra-ui/react@2.8.2)(@emotion/react@11.11.4)(next@14.1.0)(react@18.2.0)
'@chakra-ui/react':
- specifier: 2.7.1
- version: 2.7.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0)
+ specifier: 2.8.2
+ version: 2.8.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.15)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0)
'@emotion/react':
- specifier: 11.11.1
- version: 11.11.1(@types/react@18.2.15)(react@18.2.0)
+ specifier: 11.11.4
+ version: 11.11.4(@types/react@18.2.15)(react@18.2.0)
'@emotion/styled':
- specifier: 11.11.0
- version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
+ specifier: 11.11.5
+ version: 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
'@typebot.io/billing':
specifier: workspace:*
version: link:../../packages/billing
@@ -593,8 +593,8 @@ importers:
specifier: 5.2.0
version: 5.2.0
framer-motion:
- specifier: 10.12.20
- version: 10.12.20(react-dom@18.2.0)(react@18.2.0)
+ specifier: 11.1.7
+ version: 11.1.7(react-dom@18.2.0)(react@18.2.0)
next:
specifier: 14.1.0
version: 14.1.0(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)
@@ -618,8 +618,8 @@ importers:
specifier: 7.22.9
version: 7.22.9
'@chakra-ui/styled-system':
- specifier: 2.9.1
- version: 2.9.1
+ specifier: 2.9.2
+ version: 2.9.2
'@tailwindcss/typography':
specifier: 0.5.12
version: 0.5.12(tailwindcss@3.3.3)
@@ -775,8 +775,8 @@ importers:
specifier: 4.7.2
version: 4.7.2
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
libphonenumber-js:
specifier: 1.10.37
version: 1.10.37
@@ -825,16 +825,16 @@ importers:
dependencies:
'@stripe/react-stripe-js':
specifier: 1.16.4
- version: 1.16.4(@stripe/stripe-js@1.46.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.16.4(@stripe/stripe-js@1.54.1)(react-dom@18.2.0)(react@18.2.0)
'@stripe/stripe-js':
- specifier: 1.46.0
- version: 1.46.0
+ specifier: 1.54.1
+ version: 1.54.1
prop-types:
specifier: 15.8.1
version: 15.8.1
qs:
- specifier: 6.11.0
- version: 6.11.0
+ specifier: 6.11.2
+ version: 6.11.2
react-phone-number-input:
specifier: 3.2.16
version: 3.2.16(react-dom@18.2.0)(react@18.2.0)
@@ -882,11 +882,11 @@ importers:
specifier: 4.4.5
version: 4.4.5
autoprefixer:
- specifier: 10.4.13
- version: 10.4.13(postcss@8.4.21)
+ specifier: 10.4.14
+ version: 10.4.14(postcss@8.4.26)
esbuild:
- specifier: 0.17.5
- version: 0.17.5
+ specifier: 0.19.5
+ version: 0.19.5
eslint:
specifier: 8.44.0
version: 8.44.0
@@ -894,11 +894,11 @@ importers:
specifier: workspace:*
version: link:../../eslint-config-custom
postcss:
- specifier: 8.4.21
- version: 8.4.21
+ specifier: 8.4.26
+ version: 8.4.26
prettier:
- specifier: 2.8.3
- version: 2.8.3
+ specifier: 2.8.8
+ version: 2.8.8
react:
specifier: 18.2.0
version: 18.2.0
@@ -906,11 +906,11 @@ importers:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
tailwindcss:
- specifier: 3.2.4
- version: 3.2.4(postcss@8.4.21)
+ specifier: 3.3.3
+ version: 3.3.3
tsup:
specifier: 6.5.0
- version: 6.5.0(postcss@8.4.21)(typescript@5.4.5)
+ version: 6.5.0(postcss@8.4.26)(typescript@5.4.5)
typebot-js:
specifier: workspace:*
version: link:../typebot-js
@@ -939,14 +939,14 @@ importers:
specifier: 29.4.1
version: 29.4.1
prettier:
- specifier: 2.8.3
- version: 2.8.3
+ specifier: 2.8.8
+ version: 2.8.8
ts-jest:
specifier: 29.0.5
version: 29.0.5(@babel/core@7.22.9)(esbuild@0.15.18)(jest@29.4.1)(typescript@5.4.5)
tsup:
specifier: 6.5.0
- version: 6.5.0(typescript@5.4.5)
+ version: 6.5.0(postcss@8.4.26)(typescript@5.4.5)
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -993,8 +993,8 @@ importers:
specifier: 18.2.0
version: 18.2.0
tsx:
- specifier: 3.12.7
- version: 3.12.7
+ specifier: 4.6.2
+ version: 4.6.2
packages/embeds/js:
dependencies:
@@ -1008,8 +1008,8 @@ importers:
specifier: 3.0.6
version: 3.0.6
ky:
- specifier: 1.1.3
- version: 1.1.3
+ specifier: 1.2.4
+ version: 1.2.4
marked:
specifier: 9.0.3
version: 9.0.3
@@ -1163,8 +1163,8 @@ importers:
specifier: 2.6.0
version: 2.6.0
tsx:
- specifier: 3.12.7
- version: 3.12.7
+ specifier: 4.6.2
+ version: 4.6.2
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1233,8 +1233,8 @@ importers:
specifier: 2.6.0
version: 2.6.0
tsx:
- specifier: 3.12.7
- version: 3.12.7
+ specifier: 4.6.2
+ version: 4.6.2
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1254,8 +1254,8 @@ importers:
specifier: workspace:*
version: link:../tsconfig
'@types/node':
- specifier: 20.4.9
- version: 20.4.9
+ specifier: 20.4.2
+ version: 20.4.2
esbuild:
specifier: 0.19.5
version: 0.19.5
@@ -1291,8 +1291,8 @@ importers:
specifier: 3.1.12
version: 3.1.12(openai@4.47.1)(react@18.2.0)(solid-js@1.7.8)(svelte@4.2.12)(vue@3.4.21)(zod@3.22.4)
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
devDependencies:
'@typebot.io/forge':
specifier: workspace:*
@@ -1304,8 +1304,8 @@ importers:
specifier: workspace:*
version: link:../../../tsconfig
'@types/node':
- specifier: ^20.14.2
- version: 20.14.2
+ specifier: 20.4.2
+ version: 20.4.2
'@types/react':
specifier: 18.2.15
version: 18.2.15
@@ -1346,8 +1346,8 @@ importers:
specifier: 18.2.15
version: 18.2.15
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1371,8 +1371,8 @@ importers:
specifier: 18.2.15
version: 18.2.15
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1383,8 +1383,8 @@ importers:
specifier: workspace:*
version: link:../../../lib
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
devDependencies:
'@typebot.io/forge':
specifier: workspace:*
@@ -1433,8 +1433,8 @@ importers:
packages/forge/blocks/nocodb:
dependencies:
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
devDependencies:
'@typebot.io/forge':
specifier: workspace:*
@@ -1449,8 +1449,8 @@ importers:
specifier: 18.2.15
version: 18.2.15
typescript:
- specifier: 5.3.2
- version: 5.3.2
+ specifier: 5.4.5
+ version: 5.4.5
packages/forge/blocks/openRouter:
devDependencies:
@@ -1470,8 +1470,8 @@ importers:
specifier: 18.2.15
version: 18.2.15
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1501,8 +1501,8 @@ importers:
specifier: 18.2.15
version: 18.2.15
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1571,8 +1571,8 @@ importers:
specifier: 18.2.15
version: 18.2.15
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1589,11 +1589,11 @@ importers:
specifier: 20.4.2
version: 20.4.2
prettier:
- specifier: 3.0.0
- version: 3.0.0
+ specifier: 2.8.8
+ version: 2.8.8
tsx:
- specifier: ^4.6.1
- version: 4.7.1
+ specifier: 4.6.2
+ version: 4.6.2
packages/forge/core:
dependencies:
@@ -1695,8 +1695,8 @@ importers:
specifier: 8.9.0
version: 8.9.0
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
minio:
specifier: 7.1.3
version: 7.1.3
@@ -1726,8 +1726,8 @@ importers:
specifier: 2.2.1
version: 2.2.1
'@playwright/test':
- specifier: 1.36.0
- version: 1.36.0
+ specifier: 1.43.1
+ version: 1.43.1
'@typebot.io/env':
specifier: workspace:*
version: link:../env
@@ -1797,8 +1797,8 @@ importers:
packages/playwright:
dependencies:
'@playwright/test':
- specifier: ^1.42.1
- version: 1.42.1
+ specifier: 1.43.1
+ version: 1.43.1
'@typebot.io/lib':
specifier: workspace:*
version: link:../lib
@@ -1835,8 +1835,8 @@ importers:
specifier: 5.12.1
version: 5.12.1
tsx:
- specifier: 3.12.7
- version: 3.12.7
+ specifier: 4.6.2
+ version: 4.6.2
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1956,8 +1956,8 @@ importers:
specifier: 1.1.9
version: 1.1.9
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
prompts:
specifier: 2.4.2
version: 2.4.2
@@ -1965,8 +1965,8 @@ importers:
specifier: 12.13.0
version: 12.13.0
tsx:
- specifier: 3.12.7
- version: 3.12.7
+ specifier: 4.6.2
+ version: 4.6.2
typescript:
specifier: 5.4.5
version: 5.4.5
@@ -1983,8 +1983,8 @@ importers:
specifier: workspace:*
version: link:../schemas
ky:
- specifier: 1.2.3
- version: 1.2.3
+ specifier: 1.2.4
+ version: 1.2.4
posthog-node:
specifier: 3.1.1
version: 3.1.1
@@ -3463,94 +3463,67 @@ packages:
resolution: {integrity: sha512-URg8UM6lfC9ZYqFipItRSxYJdgpU5d2Z4KnjsJ+rj6tgAmGme7E+PQNCiud8g0HDaZKMovu2qjfa0f5Ge0Vlsg==}
dev: false
- /@chakra-ui/accordion@2.2.0(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0):
- resolution: {integrity: sha512-2IK1iLzTZ22u8GKPPPn65mqJdZidn4AvkgAbv17ISdKA07VHJ8jSd4QF1T5iCXjKfZ0XaXozmhP4kDhjwF2IbQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- dependencies:
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(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)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.12.20)(react@18.2.0)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/accordion@2.2.0(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0):
- resolution: {integrity: sha512-2IK1iLzTZ22u8GKPPPn65mqJdZidn4AvkgAbv17ISdKA07VHJ8jSd4QF1T5iCXjKfZ0XaXozmhP4kDhjwF2IbQ==}
+ /@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0):
+ resolution: {integrity: sha512-FSXRm8iClFyU+gVaXisOSEw0/4Q+qZbFRiuhIAkVU6Boj0FxAMrlo9a8AV5TuF77rgaHytCdHk0Ng+cyUijrag==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(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/descendant': 3.1.0(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.3.0)(react@18.2.0)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.1.7)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/alert@2.1.0(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-OcfHwoXI5VrmM+tHJTHT62Bx6TfyfCxSa0PWUOueJzSyhlUOKBND5we6UtrOB7D0jwX45qKKEDJOLG5yCG21jQ==}
+ /@chakra-ui/alert@2.2.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-jHg4LYMRNOJH830ViLuicjb3F+v6iriE/2G5T+Sd0Hna04nukNJ1MxUmBPE+vI22me2dIflfelu2v9wdB6Pojw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/anatomy@2.1.1:
- resolution: {integrity: sha512-LUHAoqJAgxAqmyckG5bUpBrfEo1FleEyY+1A8hkWciy58gZ+h3GoY9oBpHcdo7XdHPpy3G+3hieK/7i9NLwxAw==}
- dev: false
-
- /@chakra-ui/anatomy@2.1.2:
- resolution: {integrity: sha512-pKfOS/mztc4sUXHNc8ypJ1gPWSolWT770jrgVRfolVbYlki8y5Y+As996zMF6k5lewTu6j9DQequ7Cc9a69IVQ==}
- dev: false
-
/@chakra-ui/anatomy@2.2.2:
resolution: {integrity: sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg==}
dev: false
- /@chakra-ui/avatar@2.2.11(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-CJFkoWvlCTDJTUBrKA/aVyG5Zz6TBEIVmmsJtqC6VcQuVDTxkWod8ruXnjb0LT2DUveL7xR5qZM9a5IXcsH3zg==}
+ /@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-8gKSyLfygnaotbJbDMHDiJoF38OHXUYVme4gGxZ1fLnQEdPVEaIWfH+NndIjOM0z8S+YEFnT9KyGMUtvPrBk3g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/image': 2.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2)(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-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/breadcrumb@2.1.5(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog==}
+ /@chakra-ui/breadcrumb@2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-4cWCG24flYBxjruRi4RJREWTGF74L/KzI2CognAW/d/zWR0CjiScuJhf37Am3LFbCySP6WSoyBOtTIoTA4yLEA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
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/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
@@ -3560,79 +3533,70 @@ packages:
'@chakra-ui/shared-utils': 2.0.5
dev: false
- /@chakra-ui/button@2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-E3c99+lOm6ou4nQVOTLkG+IdOPMjsQK+Qe7VyP8A/xeAMFONuibrWPRPpprr4ZkB4kEoLMfNuyH2+aEza3ScUA==}
+ /@chakra-ui/button@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-95CplwlRKmmUXkdEp/21VkEWgnwcx2TOBG6NfYlsuLBDHSLlo5FKIiE2oSi4zXc4TLcopGcWPNcm/NDaSC5pvA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
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/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/card@2.1.6(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==}
+ /@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-xUB/k5MURj4CtPAhdSoXZidUbm8j3hci9vnc+eZJVDqhDOShNlD6QeniQNRPRys4lWAQLCbFcrwL29C8naDi6g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/checkbox@2.2.15(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-Ju2yQjX8azgFa5f6VLPuwdGYobZ+rdbcYqjiks848JvPc75UsPhpS05cb4XlrKT7M16I8txDA5rPJdqqFicHCA==}
+ /@chakra-ui/checkbox@2.3.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-85g38JIXMEv6M+AcyIGLh7igNtfpAN6KGQFYxY9tBj0eWvWk4NKQxvqqyVta0bSAyIl1rixNIIezNpNWk2iO4g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-callback-ref': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@zag-js/focus-visible': 0.2.2
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@zag-js/focus-visible': 0.16.0
react: 18.2.0
dev: false
- /@chakra-ui/clickable@2.0.14(react@18.2.0):
- resolution: {integrity: sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA==}
+ /@chakra-ui/clickable@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-flRA/ClPUGPYabu+/GLREZVZr9j2uyyazCAUHAdrTUEdDYCr31SVGhgh7dgKdtq23bOvAQJpIJjw/0Bs0WvbXw==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
react: 18.2.0
dev: false
- /@chakra-ui/close-button@2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==}
+ /@chakra-ui/close-button@2.1.1(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-gnpENKOanKexswSVpVz7ojZEALl2x5qjLYNqSQGbxz+aP9sOXPfUS56ebyBrre7T7exuWGiFeRwnM0oVeGPaiw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/color-mode@2.1.12(react@18.2.0):
- resolution: {integrity: sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw==}
- peerDependencies:
- react: '>=18'
- dependencies:
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
@@ -3645,44 +3609,44 @@ packages:
react: 18.2.0
dev: false
- /@chakra-ui/control-box@2.0.13(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==}
+ /@chakra-ui/control-box@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-gVrRDyXFdMd8E7rulL0SKeoljkLQiPITFnsyMO8EFHNZ+AHt5wK4LIguYVEq88APqAGZGfHFWXr79RYrNiE3Mg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/counter@2.0.14(react@18.2.0):
- resolution: {integrity: sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog==}
+ /@chakra-ui/counter@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-s6hZAEcWT5zzjNz2JIWUBzRubo9la/oof1W7EKZVVfPYHERnl5e16FmBC79Yfq8p09LQ+aqFKm/etYoJMMgghw==}
peerDependencies:
react: '>=18'
dependencies:
'@chakra-ui/number-utils': 2.0.7
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
react: 18.2.0
dev: false
- /@chakra-ui/css-reset@2.1.2(@emotion/react@11.11.1)(react@18.2.0):
- resolution: {integrity: sha512-4ySTLd+3iRpp4lX0yI9Yo2uQm2f+qwYGNOZF0cNcfN+4UJCd3IsaWxYRR/Anz+M51NVldZbYzC+TEYC/kpJc4A==}
+ /@chakra-ui/css-reset@2.3.0(@emotion/react@11.11.4)(react@18.2.0):
+ resolution: {integrity: sha512-cQwwBy5O0jzvl0K7PLTLgp8ijqLPKyuEMiDXwYzl95seD3AoeuoCLyzZcJtVqaUZ573PiBdAbY/IlZcwDOItWg==}
peerDependencies:
'@emotion/react': '>=10.0.35'
react: '>=18'
dependencies:
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/descendant@3.0.14(react@18.2.0):
- resolution: {integrity: sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang==}
+ /@chakra-ui/descendant@3.1.0(react@18.2.0):
+ resolution: {integrity: sha512-VxCIAir08g5w27klLyi7PVo8BxhW4tgU/lxQyujkmi4zx7hT9ZdrcQLAted/dAa+aSIZ14S1oV0Q9lGjsAdxUQ==}
peerDependencies:
react: '>=18'
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/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
@@ -3690,22 +3654,22 @@ packages:
resolution: {integrity: sha512-ZmF2qRa1QZ0CMLU8M1zCfmw29DmPNtfjR9iTo74U5FPr3i1aoAh7fbJ4qAlZ197Xw9eAW28tvzQuoVWeL5C7fQ==}
dev: false
- /@chakra-ui/editable@3.0.0(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-q/7C/TM3iLaoQKlEiM8AY565i9NoaXtS6N6N4HWIEL5mZJPbMeHKxrCHUZlHxYuQJqFOGc09ZPD9fAFx1GkYwQ==}
+ /@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-j2JLrUL9wgg4YA6jLlbU88370eCRyor7DZQD9lzpY95tSOXpTljeg3uF9eOmDnCs6fxp3zDWIfkgMm/ExhcGTg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-callback-ref': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-focus-on-pointer-down': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
@@ -3713,8 +3677,8 @@ packages:
resolution: {integrity: sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==}
dev: false
- /@chakra-ui/focus-lock@2.0.17(@types/react@18.2.15)(react@18.2.0):
- resolution: {integrity: sha512-V+m4Ml9E8QY66DUpHX/imInVvz5XJ5zx59Tl0aNancXgeVY1Rt/ZdxuZdPLCAmPC/MF3GUOgnEA+WU8i+VL6Gw==}
+ /@chakra-ui/focus-lock@2.1.0(@types/react@18.2.15)(react@18.2.0):
+ resolution: {integrity: sha512-EmGx4PhWGjm4dpjRqM4Aa+rCWBxP+Rq8Uc/nAVnD4YVqkEhBkrPTpui2lnjsuxqNaZ24fIAZ10cF1hlpemte/w==}
peerDependencies:
react: '>=18'
dependencies:
@@ -3725,95 +3689,84 @@ packages:
- '@types/react'
dev: false
- /@chakra-ui/form-control@2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ==}
+ /@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-wehLC1t4fafCVJ2RvJQT2jyqsAwX7KymmiGqBu7nQoQz8ApTkGABWpo/QwDh3F/dBLrouHDoOvGmYTqft3Mirw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/hooks@2.2.0(react@18.2.0):
- resolution: {integrity: sha512-GZE64mcr20w+3KbCUPqQJHHmiFnX5Rcp8jS3YntGA4D5X2qU85jka7QkjfBwv/iduZ5Ei0YpCMYGCpi91dhD1Q==}
+ /@chakra-ui/hooks@2.2.1(react@18.2.0):
+ resolution: {integrity: sha512-RQbTnzl6b1tBjbDPf9zGRo9rf/pQMholsOudTxjy4i9GfTfz6kgp5ValGjQm2z7ng6Z31N1cnjZ1AlSzQ//ZfQ==}
peerDependencies:
react: '>=18'
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
+ compute-scroll-into-view: 3.0.3
copy-to-clipboard: 3.3.3
react: 18.2.0
dev: false
- /@chakra-ui/icon@3.0.15(@chakra-ui/system@2.6.2)(react@18.2.0):
- resolution: {integrity: sha512-6RRppml4kW3hOMgMCtgeKc73nJhJEZXOvzDvmZKKW9WrLsDpWiI7WDQb5VIxUXqZlbrh88K5WVRY0YivIefCDA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- react: '>=18'
- dependencies:
- '@chakra-ui/shared-utils': 2.0.4
- '@chakra-ui/system': 2.6.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/icon@3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==}
+ /@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-xxjGLvlX2Ys4H0iHrI16t74rG9EBcpFvJ3Y3B7KMQTrnW34Kf7Da/UC8J67Gtx85mTHW020ml85SVPKORWNNKQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/image@2.0.16(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-iFypk1slgP3OK7VIPOtkB0UuiqVxNalgA59yoRM43xLIeZAEZpKngUVno4A2kFS61yKN0eIY4hXD3Xjm+25EJA==}
+ /@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-bskumBYKLiLMySIWDGcz0+D9Th0jPvmX6xnRMs4o92tT3Od/bW26lahmV2a2Op2ItXeCmRMY+XxJH5Gy1i46VA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/input@2.0.22(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-dCIC0/Q7mjZf17YqgoQsnXn0bus6vgriTRn8VmxOc+WcVl+KBSTBWujGrS5yu85WIFQ0aeqQvziDnDQybPqAbA==}
+ /@chakra-ui/input@2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-GiBbb3EqAA8Ph43yGa6Mc+kUPjh4Spmxp1Pkelr8qtudpc3p2PJOOebLpd90mcqw8UePPa+l6YhhPtp6o0irhw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(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/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/layout@2.2.0(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-WvfsWQjqzbCxv7pbpPGVKxj9eQr7MC2i37ag4Wn7ClIG7uPuwHYTUWOnjnu27O3H/zA4cRVZ4Hs3GpSPbojZFQ==}
+ /@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-nXuZ6WRbq0WdgnRgLw+QuxWAHuhDtVX8ElWqcTK+cSMFg/52eVP47czYBE5F35YhnoW2XBwfNoNgZ7+e8Z01Rg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(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/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
@@ -3821,126 +3774,73 @@ packages:
resolution: {integrity: sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==}
dev: false
- /@chakra-ui/live-region@2.0.13(react@18.2.0):
- resolution: {integrity: sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ==}
+ /@chakra-ui/live-region@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-ZOxFXwtaLIsXjqnszYYrVuswBhnIHHP+XIgK1vC6DePKtyK590Wg+0J0slDwThUAd4MSSIUa/nNX84x1GMphWw==}
peerDependencies:
react: '>=18'
dependencies:
react: 18.2.0
dev: false
- /@chakra-ui/media-query@3.2.12(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==}
+ /@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-IsTGgFLoICVoPRp9ykOgqmdMotJG0CnPsKvGQeSFOB/dZfIujdVb14TYxDU4+MURXry1MhJ7LzZhv+Ml7cr8/g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
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)(@emotion/styled@11.11.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/menu@2.1.15(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0):
- resolution: {integrity: sha512-+1fh7KBKZyhy8wi7Q6nQAzrvjM6xggyhGMnSna0rt6FJVA2jlfkjb5FozyIVPnkfJKjkKd8THVhrs9E7pHNV/w==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- 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/react-env': 3.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.12.20)(react@18.2.0)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/menu@2.1.15(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0):
- resolution: {integrity: sha512-+1fh7KBKZyhy8wi7Q6nQAzrvjM6xggyhGMnSna0rt6FJVA2jlfkjb5FozyIVPnkfJKjkKd8THVhrs9E7pHNV/w==}
+ /@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0):
+ resolution: {integrity: sha512-lJS7XEObzJxsOwWQh7yfG4H8FzFPRP5hVPN/CL+JzytEINCSBvsCDHrYPQGp7jzpCi8vnTqQQGQe0f8dwnXd2g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/clickable': 2.0.14(react@18.2.0)
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
+ '@chakra-ui/clickable': 2.1.0(react@18.2.0)
+ '@chakra-ui/descendant': 3.1.0(react@18.2.0)
'@chakra-ui/lazy-utils': 2.0.5
- '@chakra-ui/popper': 3.0.14(react@18.2.0)
+ '@chakra-ui/popper': 3.1.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/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)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.3.0)(react@18.2.0)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/modal@2.2.12(@chakra-ui/system@2.5.8)(@types/react@18.2.15)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-F1nNmYGvyqlmxidbwaBM3y57NhZ/Qeyc8BE9tb1FL1v9nxQhkfrPvMQ9miK0O1syPN6aZ5MMj+uD3AsRFE+/tA==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
- dependencies:
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/focus-lock': 2.0.17(@types/react@18.2.15)(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@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/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-animation-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-disclosure': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-focus-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-outside-click': 2.2.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.12.20)(react@18.2.0)
- aria-hidden: 1.2.3
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.1.7)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.7(@types/react@18.2.15)(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
dev: false
- /@chakra-ui/modal@2.2.12(@chakra-ui/system@2.5.8)(@types/react@18.2.15)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-F1nNmYGvyqlmxidbwaBM3y57NhZ/Qeyc8BE9tb1FL1v9nxQhkfrPvMQ9miK0O1syPN6aZ5MMj+uD3AsRFE+/tA==}
+ /@chakra-ui/modal@2.3.1(@chakra-ui/system@2.6.2)(@types/react@18.2.15)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-TQv1ZaiJMZN+rR9DK0snx/OPwmtaGH1HbZtlYt4W4s6CzyK541fxLRTjIXfEzIGpvNW+b6VFuFjbcR78p4DEoQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/focus-lock': 2.0.17(@types/react@18.2.15)(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/focus-lock': 2.1.0(@types/react@18.2.15)(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.3.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.1.7)(react@18.2.0)
aria-hidden: 1.2.3
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.15)(react@18.2.0)
@@ -3948,7 +3848,7 @@ packages:
- '@types/react'
dev: false
- /@chakra-ui/next-js@2.2.0(@chakra-ui/react@2.7.1)(@emotion/react@11.11.1)(next@14.1.0)(react@18.2.0):
+ /@chakra-ui/next-js@2.2.0(@chakra-ui/react@2.8.2)(@emotion/react@11.11.4)(next@14.1.0)(react@18.2.0):
resolution: {integrity: sha512-brCz0UEOlImX4Np2jDIaljZJkW6kiDSuXG5erxvYjZlklLhmti1zj0o1sSjt5yff1xndfgHoOJb+BYG5wx+vDg==}
peerDependencies:
'@chakra-ui/react': '>=2.4.0'
@@ -3956,32 +3856,32 @@ packages:
next: '>=13'
react: '>=18'
dependencies:
- '@chakra-ui/react': 2.7.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/react': 2.8.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.15)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0)
'@emotion/cache': 11.11.0
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
next: 14.1.0(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/number-input@2.0.19(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA==}
+ /@chakra-ui/number-input@2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-pfOdX02sqUN0qC2ysuvgVDiws7xZ20XDIlcNhva55Jgm095xjm8eVdIBfNm3SFbSUNxyXvLTW/YQanX74tKmuA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/counter': 2.0.14(react@18.2.0)
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/counter': 2.1.0(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-callback-ref': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-event-listener': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-interval': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
@@ -3993,134 +3893,111 @@ packages:
resolution: {integrity: sha512-tgIZOgLHaoti5PYGPTwK3t/cqtcycW0owaiOXoZOcpwwX/vlVb+H1jFsQyWiiwQVPt9RkoSLtxzXamx+aHH+bQ==}
dev: false
- /@chakra-ui/pin-input@2.0.20(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg==}
+ /@chakra-ui/pin-input@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-x4vBqLStDxJFMt+jdAHHS8jbh294O53CPQJoL4g228P513rHylV/uPscYUHrVJXRxsHfRztQO9k45jjTYaPRMw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
+ '@chakra-ui/descendant': 3.1.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/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)(@emotion/styled@11.11.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/popover@2.1.12(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0):
- resolution: {integrity: sha512-Corh8trA1f3ydcMQqomgSvYNNhAlpxiBpMY2sglwYazOJcueHA8CI05cJVD0T/wwoTob7BShabhCGFZThn61Ng==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- dependencies:
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(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/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/popover@2.1.12(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0):
- resolution: {integrity: sha512-Corh8trA1f3ydcMQqomgSvYNNhAlpxiBpMY2sglwYazOJcueHA8CI05cJVD0T/wwoTob7BShabhCGFZThn61Ng==}
+ /@chakra-ui/popover@2.2.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0):
+ resolution: {integrity: sha512-K+2ai2dD0ljvJnlrzesCDT9mNzLifE3noGKZ3QwLqd/K34Ym1W/0aL1ERSynrcG78NKoXS54SdEzkhCZ4Gn/Zg==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2)(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/popper': 3.1.0(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-animation-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-disclosure': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-focus-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-focus-on-pointer-down': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/popper@3.0.14(react@18.2.0):
- resolution: {integrity: sha512-RDMmmSfjsmHJbVn2agDyoJpTbQK33fxx//njwJdeyM0zTG/3/4xjI/Cxru3acJ2Y+1jFGmPqhO81stFjnbtfIw==}
+ /@chakra-ui/popper@3.1.0(react@18.2.0):
+ resolution: {integrity: sha512-ciDdpdYbeFG7og6/6J8lkTFxsSvwTdMLFkpVylAF6VNC22jssiWfquj2eyD4rJnzkRFPvIWJq8hvbfhsm+AjSg==}
peerDependencies:
react: '>=18'
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)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@popperjs/core': 2.11.8
react: 18.2.0
dev: false
- /@chakra-ui/portal@2.0.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ==}
+ /@chakra-ui/portal@2.1.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-9q9KWf6SArEcIq1gGofNcFPSWEyl+MfJjEUg/un1SMlQjaROOh3zYr+6JAwvcORiX7tyHosnmWC3d3wI2aPSQg==}
peerDependencies:
react: '>=18'
react-dom: '>=18'
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)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@chakra-ui/progress@2.1.6(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw==}
+ /@chakra-ui/progress@2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-qUXuKbuhN60EzDD9mHR7B67D7p/ZqNS2Aze4Pbl1qGGZfulPW0PY8Rof32qDtttDQBkzQIzFGE8d9QpAemToIQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/provider@2.3.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-vKgmjoLVS3NnHW8RSYwmhhda2ZTi3fQc1egkYSVwngGky4CsN15I+XDhxJitVd66H41cjah/UNJyoeq7ACseLA==}
+ /@chakra-ui/provider@2.4.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-w0Tef5ZCJK1mlJorcSjItCSbyvVuqpvyWdxZiVQmE6fvSJR83wZof42ux0+sfWD+I7rHSfj+f9nzhNaEWClysw==}
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
react: '>=18'
react-dom: '>=18'
dependencies:
- '@chakra-ui/css-reset': 2.1.2(@emotion/react@11.11.1)(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@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)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.11.4)(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/react-env': 3.1.0(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
'@chakra-ui/utils': 2.0.15
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@chakra-ui/radio@2.0.22(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-GsQ5WAnLwivWl6gPk8P1x+tCcpVakCt5R5T0HumF7DGPXKdJbjS+RaFySrbETmyTJsKY4QrfXn+g8CWVrMjPjw==}
+ /@chakra-ui/radio@2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-n10M46wJrMGbonaghvSRnZ9ToTv/q76Szz284gv4QUWvyljQACcGrXIONUnQ3BIwbOfkRqSk7Xl/JgZtVfll+w==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@zag-js/focus-visible': 0.2.2
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@zag-js/focus-visible': 0.16.0
react: 18.2.0
dev: false
@@ -4132,20 +4009,20 @@ packages:
react: 18.2.0
dev: false
- /@chakra-ui/react-context@2.0.8(react@18.2.0):
- resolution: {integrity: sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A==}
+ /@chakra-ui/react-context@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-iahyStvzQ4AOwKwdPReLGfDesGG+vWJfEsn0X/NoGph/SkN+HXtv2sCfYFFR9k7bb+Kvc6YfpLlSuLvKMHi2+w==}
peerDependencies:
react: '>=18'
dependencies:
react: 18.2.0
dev: false
- /@chakra-ui/react-env@3.0.0(react@18.2.0):
- resolution: {integrity: sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw==}
+ /@chakra-ui/react-env@3.1.0(react@18.2.0):
+ resolution: {integrity: sha512-Vr96GV2LNBth3+IKzr/rq1IcnkXv+MLmwjQH6C8BRtn3sNskgDFD5vLkVXcEhagzZMCh8FR3V/bzZPojBOyNhw==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
@@ -4157,127 +4034,119 @@ packages:
react: 18.2.0
dev: false
- /@chakra-ui/react-use-animation-state@2.0.9(react@18.2.0):
- resolution: {integrity: sha512-WFoD5OG03PBmzJCoRwM8rVfU442AvKBPPgA0yGGlKioH29OGuX7W78Ml+cYdXxonTiB03YSRZzUwaUnP4wAy1Q==}
+ /@chakra-ui/react-use-animation-state@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-CFZkQU3gmDBwhqy0vC1ryf90BVHxVN8cTLpSyCpdmExUEtSEInSCGMydj2fvn7QXsz/za8JNdO2xxgJwxpLMtg==}
peerDependencies:
react: '>=18'
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-event-listener': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-callback-ref@2.0.7(react@18.2.0):
- resolution: {integrity: sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw==}
+ /@chakra-ui/react-use-callback-ref@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-efnJrBtGDa4YaxDzDE90EnKD3Vkh5a1t3w7PhnRQmsphLy3g2UieasoKTlT2Hn118TwDjIv5ZjHJW6HbzXA9wQ==}
peerDependencies:
react: '>=18'
dependencies:
react: 18.2.0
dev: false
- /@chakra-ui/react-use-controllable-state@2.0.8(react@18.2.0):
- resolution: {integrity: sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q==}
+ /@chakra-ui/react-use-controllable-state@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-QR/8fKNokxZUs4PfxjXuwl0fj/d71WPrmLJvEpCTkHjnzu7LnYvzoe2wB867IdooQJL0G1zBxl0Dq+6W1P3jpg==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-disclosure@2.0.8(react@18.2.0):
- resolution: {integrity: sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ==}
+ /@chakra-ui/react-use-disclosure@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-Ax4pmxA9LBGMyEZJhhUZobg9C0t3qFE4jVF1tGBsrLDcdBeLR9fwOogIPY9Hf0/wqSlAryAimICbr5hkpa5GSw==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-event-listener@2.0.7(react@18.2.0):
- resolution: {integrity: sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g==}
+ /@chakra-ui/react-use-event-listener@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-U5greryDLS8ISP69DKDsYcsXRtAdnTQT+jjIlRYZ49K/XhUR/AqVZCK5BkR1spTDmO9H8SPhgeNKI70ODuDU/Q==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-focus-effect@2.0.11(react@18.2.0):
- resolution: {integrity: sha512-/zadgjaCWD50TfuYsO1vDS2zSBs2p/l8P2DPEIA8FuaowbBubKrk9shKQDWmbfDU7KArGxPxrvo+VXvskPPjHw==}
+ /@chakra-ui/react-use-focus-effect@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-xzVboNy7J64xveLcxTIJ3jv+lUJKDwRM7Szwn9tNzUIPD94O3qwjV7DDCUzN2490nSYDF4OBMt/wuDBtaR3kUQ==}
peerDependencies:
react: '>=18'
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)
+ '@chakra-ui/react-use-event-listener': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-focus-on-pointer-down@2.0.6(react@18.2.0):
- resolution: {integrity: sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ==}
+ /@chakra-ui/react-use-focus-on-pointer-down@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-2jzrUZ+aiCG/cfanrolsnSMDykCAbv9EK/4iUyZno6BYb3vziucmvgKuoXbMPAzWNtwUwtuMhkby8rc61Ue+Lg==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-event-listener': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-interval@2.0.5(react@18.2.0):
- resolution: {integrity: sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg==}
+ /@chakra-ui/react-use-interval@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-8iWj+I/+A0J08pgEXP1J1flcvhLBHkk0ln7ZvGIyXiEyM6XagOTJpwNhiu+Bmk59t3HoV/VyvyJTa+44sEApuw==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-latest-ref@2.0.5(react@18.2.0):
- resolution: {integrity: sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ==}
+ /@chakra-ui/react-use-latest-ref@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-m0kxuIYqoYB0va9Z2aW4xP/5b7BzlDeWwyXCH6QpT2PpW3/281L3hLCm1G0eOUcdVlayqrQqOeD6Mglq+5/xoQ==}
peerDependencies:
react: '>=18'
dependencies:
react: 18.2.0
dev: false
- /@chakra-ui/react-use-merge-refs@2.0.7(react@18.2.0):
- resolution: {integrity: sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw==}
+ /@chakra-ui/react-use-merge-refs@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-lERa6AWF1cjEtWSGjxWTaSMvneccnAVH4V4ozh8SYiN9fSPZLlSG3kNxfNzdFvMEhM7dnP60vynF7WjGdTgQbQ==}
peerDependencies:
react: '>=18'
dependencies:
react: 18.2.0
dev: false
- /@chakra-ui/react-use-outside-click@2.1.0(react@18.2.0):
- resolution: {integrity: sha512-JanCo4QtWvMl9ZZUpKJKV62RlMWDFdPCE0Q64a7eWTOQgWWcpyBW7TOYRunQTqrK30FqkYFJCOlAWOtn+6Rw7A==}
+ /@chakra-ui/react-use-outside-click@2.2.0(react@18.2.0):
+ resolution: {integrity: sha512-PNX+s/JEaMneijbgAM4iFL+f3m1ga9+6QK0E5Yh4s8KZJQ/bLwZzdhMz8J/+mL+XEXQ5J0N8ivZN28B82N1kNw==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-pan-event@2.0.9(react@18.2.0):
- resolution: {integrity: sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ==}
+ /@chakra-ui/react-use-pan-event@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-xmL2qOHiXqfcj0q7ZK5s9UjTh4Gz0/gL9jcWPA6GVf+A0Od5imEDa/Vz+533yQKWiNSm1QGrIj0eJAokc7O4fg==}
peerDependencies:
react: '>=18'
dependencies:
'@chakra-ui/event-utils': 2.0.8
- '@chakra-ui/react-use-latest-ref': 2.0.5(react@18.2.0)
+ '@chakra-ui/react-use-latest-ref': 2.1.0(react@18.2.0)
framesync: 6.1.2
react: 18.2.0
dev: false
- /@chakra-ui/react-use-previous@2.0.5(react@18.2.0):
- resolution: {integrity: sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw==}
- peerDependencies:
- react: '>=18'
- dependencies:
- react: 18.2.0
- dev: false
-
- /@chakra-ui/react-use-safe-layout-effect@2.0.5(react@18.2.0):
- resolution: {integrity: sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ==}
+ /@chakra-ui/react-use-previous@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-pjxGwue1hX8AFcmjZ2XfrQtIJgqbTF3Qs1Dy3d1krC77dEsiCUbQ9GzOBfDc8pfd60DrB5N2tg5JyHbypqh0Sg==}
peerDependencies:
react: '>=18'
dependencies:
@@ -4292,26 +4161,26 @@ packages:
react: 18.2.0
dev: false
- /@chakra-ui/react-use-size@2.0.10(react@18.2.0):
- resolution: {integrity: sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w==}
+ /@chakra-ui/react-use-size@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-tbLqrQhbnqOjzTaMlYytp7wY8BW1JpL78iG7Ru1DlV4EWGiAmXFGvtnEt9HftU0NJ0aJyjgymkxfVGI55/1Z4A==}
peerDependencies:
react: '>=18'
dependencies:
- '@zag-js/element-size': 0.3.2
+ '@zag-js/element-size': 0.10.5
react: 18.2.0
dev: false
- /@chakra-ui/react-use-timeout@2.0.5(react@18.2.0):
- resolution: {integrity: sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw==}
+ /@chakra-ui/react-use-timeout@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-cFN0sobKMM9hXUhyCofx3/Mjlzah6ADaEl/AXl5Y+GawB5rgedgAcu2ErAgarEkwvsKdP6c68CKjQ9dmTQlJxQ==}
peerDependencies:
react: '>=18'
dependencies:
- '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/react-use-update-effect@2.0.7(react@18.2.0):
- resolution: {integrity: sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg==}
+ /@chakra-ui/react-use-update-effect@2.1.0(react@18.2.0):
+ resolution: {integrity: sha512-ND4Q23tETaR2Qd3zwCKYOOS1dfssojPLJMLvUtUbW5M9uW1ejYWgGUobeAiOVfSplownG8QYMmHTP86p/v0lbA==}
peerDependencies:
react: '>=18'
dependencies:
@@ -4327,79 +4196,8 @@ packages:
react: 18.2.0
dev: false
- /@chakra-ui/react@2.7.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0):
- 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'
- dependencies:
- '@chakra-ui/accordion': 2.2.0(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0)
- '@chakra-ui/alert': 2.1.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/avatar': 2.2.11(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/breadcrumb': 2.1.5(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/button': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/card': 2.1.6(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/checkbox': 2.2.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/control-box': 2.0.13(@chakra-ui/system@2.5.8)(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)
- '@chakra-ui/editable': 3.0.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/focus-lock': 2.0.17(@types/react@18.2.15)(react@18.2.0)
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(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)(react@18.2.0)
- '@chakra-ui/image': 2.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/input': 2.0.22(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/layout': 2.2.0(@chakra-ui/system@2.5.8)(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)(react@18.2.0)
- '@chakra-ui/menu': 2.1.15(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0)
- '@chakra-ui/modal': 2.2.12(@chakra-ui/system@2.5.8)(@types/react@18.2.15)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/number-input': 2.0.19(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/pin-input': 2.0.20(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/popover': 2.1.12(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(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)
- '@chakra-ui/progress': 2.1.6(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/provider': 2.3.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/radio': 2.0.22(@chakra-ui/system@2.5.8)(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)(react@18.2.0)
- '@chakra-ui/skeleton': 2.0.24(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/skip-nav': 2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/slider': 2.0.25(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/stat': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/stepper': 2.2.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/switch': 2.0.27(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/table': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/tabs': 2.1.9(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/tag': 3.0.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/textarea': 2.0.19(@chakra-ui/system@2.5.8)(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)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/tooltip': 2.2.9(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.12.20)(react@18.2.0)
- '@chakra-ui/utils': 2.0.15
- '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
- dev: false
-
- /@chakra-ui/react@2.7.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.15)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-uIYIAg+gnUoRbgdCfSEVvQnrEz0oWWXATGGSQpxmuJovNVyZKnX/Xug7NkWQfBUJPYRSG+VB69ZmsAFpyLSMtA==}
+ /@chakra-ui/react@2.8.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(@types/react@18.2.15)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ==}
peerDependencies:
'@emotion/react': ^11.0.0
'@emotion/styled': ^11.0.0
@@ -4407,230 +4205,185 @@ packages:
react: '>=18'
react-dom: '>=18'
dependencies:
- '@chakra-ui/accordion': 2.2.0(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0)
- '@chakra-ui/alert': 2.1.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/avatar': 2.2.11(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/breadcrumb': 2.1.5(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/button': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/card': 2.1.6(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/checkbox': 2.2.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/control-box': 2.0.13(@chakra-ui/system@2.5.8)(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)
- '@chakra-ui/editable': 3.0.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/focus-lock': 2.0.17(@types/react@18.2.15)(react@18.2.0)
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(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)(react@18.2.0)
- '@chakra-ui/image': 2.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/input': 2.0.22(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/layout': 2.2.0(@chakra-ui/system@2.5.8)(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)(react@18.2.0)
- '@chakra-ui/menu': 2.1.15(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0)
- '@chakra-ui/modal': 2.2.12(@chakra-ui/system@2.5.8)(@types/react@18.2.15)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/number-input': 2.0.19(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/pin-input': 2.0.20(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/popover': 2.1.12(@chakra-ui/system@2.5.8)(framer-motion@10.3.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)
- '@chakra-ui/progress': 2.1.6(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/provider': 2.3.0(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/radio': 2.0.22(@chakra-ui/system@2.5.8)(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)(react@18.2.0)
- '@chakra-ui/skeleton': 2.0.24(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/skip-nav': 2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/slider': 2.0.25(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/stat': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/stepper': 2.2.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/switch': 2.0.27(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0)
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/table': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/tabs': 2.1.9(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/tag': 3.0.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/textarea': 2.0.19(@chakra-ui/system@2.5.8)(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)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/tooltip': 2.2.9(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/transition': 2.0.16(framer-motion@10.3.0)(react@18.2.0)
+ '@chakra-ui/accordion': 2.3.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0)
+ '@chakra-ui/alert': 2.2.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/avatar': 2.3.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/breadcrumb': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/button': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/card': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/control-box': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/counter': 2.1.0(react@18.2.0)
+ '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.11.4)(react@18.2.0)
+ '@chakra-ui/editable': 3.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/focus-lock': 2.1.0(@types/react@18.2.15)(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/hooks': 2.2.1(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/input': 2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/live-region': 2.1.0(react@18.2.0)
+ '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0)
+ '@chakra-ui/modal': 2.3.1(@chakra-ui/system@2.6.2)(@types/react@18.2.15)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/number-input': 2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/pin-input': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/popover': 2.2.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0)
+ '@chakra-ui/popper': 3.1.0(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/progress': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/provider': 2.4.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/radio': 2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-env': 3.1.0(react@18.2.0)
+ '@chakra-ui/select': 2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/skeleton': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/skip-nav': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/slider': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/stat': 2.1.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/stepper': 2.3.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/styled-system': 2.9.2
+ '@chakra-ui/switch': 2.1.2(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@chakra-ui/table': 2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/tabs': 3.0.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/tag': 3.1.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/textarea': 2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2)
+ '@chakra-ui/theme-utils': 2.0.21
+ '@chakra-ui/toast': 7.0.2(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/tooltip': 2.3.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@11.1.7)(react@18.2.0)
'@chakra-ui/utils': 2.0.15
- '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
- /@chakra-ui/select@2.0.19(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA==}
+ /@chakra-ui/select@2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-ZwCb7LqKCVLJhru3DXvKXpZ7Pbu1TDZ7N0PdQ0Zj1oyVLJyrpef1u9HR5u0amOpqcH++Ugt0f5JSmirjNlctjA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/shared-utils@2.0.4:
- resolution: {integrity: sha512-JGWr+BBj3PXGZQ2gxbKSD1wYjESbYsZjkCeE2nevyVk4rN3amV1wQzCnBAhsuJktMaZD6KC/lteo9ou9QUDzpA==}
- dev: false
-
/@chakra-ui/shared-utils@2.0.5:
resolution: {integrity: sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==}
- /@chakra-ui/skeleton@2.0.24(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==}
+ /@chakra-ui/skeleton@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-JNRuMPpdZGd6zFVKjVQ0iusu3tXAdI29n4ZENYwAJEMf/fN0l12sVeirOxkJ7oEL0yOx2AgEYFSKdbcAgfUsAQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-use-previous': 2.0.5(react@18.2.0)
+ '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-use-previous': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/skip-nav@2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-5UtmlnV4BmIgEk6lQ0h81JEYhPX04wJEk5ZMoilQ2zEQYL6TkVVHkhRXyc1Zfq76hmHuZPXZV/yJeTecj6jIrA==}
+ /@chakra-ui/skip-nav@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-Hk+FG+vadBSH0/7hwp9LJnLjkO0RPGnx7gBJWI4/SpoJf3e4tZlWYtwGj0toYY4aGKl93jVghuwGbDBEMoHDug==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/slider@2.0.25(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-FnWSi0AIXP+9sHMCPboOKGqm902k8dJtsJ7tu3D0AcKkE62WtYLZ2sTqvwJxCfSl4KqVI1i571SrF9WadnnJ8w==}
+ /@chakra-ui/slider@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-lUOBcLMCnFZiA/s2NONXhELJh6sY5WtbRykPtclGfynqqOo47lwWJx+VP7xaeuhDOPcWSSecWc9Y1BfPOCz9cQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
'@chakra-ui/number-utils': 2.0.7
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(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)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-latest-ref': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-pan-event': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-size': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/spinner@2.0.13(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==}
+ /@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-hczbnoXt+MMv/d3gE+hjQhmkzLiKuoTo42YhUG7Bs9OSv2lg1fZHW1fGNRFP3wTi6OIbD044U1P9HK+AOgFH3g==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/stat@2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA==}
+ /@chakra-ui/stat@2.1.1(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-LDn0d/LXQNbAn2KaR3F1zivsZCewY4Jsy1qShmfBMKwn6rI8yVlbvu6SiA3OpHS0FhxbsZxQI6HefEoIgtqY6Q==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/stepper@2.2.0(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-8ZLxV39oghSVtOUGK8dX8Z6sWVSQiKVmsK4c3OQDa8y2TvxP0VtFD0Z5U1xJlOjQMryZRWhGj9JBc3iQLukuGg==}
+ /@chakra-ui/stepper@2.3.1(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-ky77lZbW60zYkSXhYz7kbItUpAQfEdycT0Q4bkHLxfqbuiGMf8OmgZOQkOB9uM4v0zPwy2HXhe0vq4Dd0xa55Q==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/styled-system@2.9.1:
- resolution: {integrity: sha512-jhYKBLxwOPi9/bQt9kqV3ELa/4CjmNNruTyXlPp5M0v0+pDMUngPp48mVLoskm9RKZGE0h1qpvj/jZ3K7c7t8w==}
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- csstype: 3.1.3
- lodash.mergewith: 4.6.2
-
/@chakra-ui/styled-system@2.9.2:
resolution: {integrity: sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg==}
dependencies:
'@chakra-ui/shared-utils': 2.0.5
csstype: 3.1.3
lodash.mergewith: 4.6.2
- dev: false
-
- /@chakra-ui/switch@2.0.27(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react@18.2.0):
- resolution: {integrity: sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ==}
- peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
- framer-motion: '>=4.0.0'
- react: '>=18'
- dependencies:
- '@chakra-ui/checkbox': 2.2.15(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- dev: false
- /@chakra-ui/switch@2.0.27(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react@18.2.0):
- resolution: {integrity: sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ==}
+ /@chakra-ui/switch@2.1.2(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react@18.2.0):
+ resolution: {integrity: sha512-pgmi/CC+E1v31FcnQhsSGjJnOE2OcND4cKPyTE+0F+bmGm48Q/b5UmKD9Y+CmZsrt/7V3h8KNczowupfuBfIHA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/checkbox': 2.2.15(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2)(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/system@2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
- resolution: {integrity: sha512-Vy8UUaCxikOzOGE54IP8tKouvU38rEYU1HCSquU9+oe7Jd70HaiLa4vmUKvHyMUmxkOzDHIkgZLbVQCubSnN5w==}
- peerDependencies:
- '@emotion/react': ^11.0.0
- '@emotion/styled': ^11.0.0
- react: '>=18'
- 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(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
- react-fast-compare: 3.2.1
dev: false
- /@chakra-ui/system@2.6.2(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
+ /@chakra-ui/system@2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0):
resolution: {integrity: sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ==}
peerDependencies:
'@emotion/react': ^11.0.0
@@ -4643,78 +4396,67 @@ packages:
'@chakra-ui/styled-system': 2.9.2
'@chakra-ui/theme-utils': 2.0.21
'@chakra-ui/utils': 2.0.15
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/styled': 11.11.5(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
react: 18.2.0
react-fast-compare: 3.2.2
dev: false
- /@chakra-ui/table@2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A==}
+ /@chakra-ui/table@2.1.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-o5OrjoHCh5uCLdiUb0Oc0vq9rIAeHSIRScc2ExTC9Qg/uVZl2ygLrjToCaKfaaKl1oQexIeAcZDKvPG8tVkHyQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/react-context': 2.0.8(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/tabs@2.1.9(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg==}
+ /@chakra-ui/tabs@3.0.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-6Mlclp8L9lqXmsGWF5q5gmemZXOiOYuh0SGT/7PgJVNPz3LXREXlXg2an4MBUD8W5oTkduCX+3KTMCwRrVrDYw==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/clickable': 2.0.14(react@18.2.0)
- '@chakra-ui/descendant': 3.0.14(react@18.2.0)
+ '@chakra-ui/clickable': 2.1.0(react@18.2.0)
+ '@chakra-ui/descendant': 3.1.0(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/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/tag@3.0.0(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-YWdMmw/1OWRwNkG9pX+wVtZio+B89odaPj6XeMn5nfNN8+jyhIEpouWv34+CO9G0m1lupJTxPSfgLAd7cqXZMA==}
+ /@chakra-ui/tag@3.1.1(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-Bdel79Dv86Hnge2PKOU+t8H28nm/7Y3cKd4Kfk9k3lOpUh4+nkSGe58dhRzht59lEqa4N9waCgQiBdkydjvBXQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.8)(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)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/textarea@2.0.19(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA==}
+ /@chakra-ui/textarea@2.1.2(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-ip7tvklVCZUb2fOHDb23qPy/Fr2mzDOGdkrpbNi50hDCiV4hFX02jdQJdi3ydHZUyVgZVBKPOJ+lT9i7sKA2wA==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/form-control': 2.0.18(@chakra-ui/system@2.5.8)(react@18.2.0)
+ '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
- /@chakra-ui/theme-tools@2.0.18(@chakra-ui/styled-system@2.9.1):
- resolution: {integrity: sha512-MbiRuXb2tb41FbnW41zhsYYAU0znlpfYZnu0mxCf8U2otCwPekJCfESUGYypjq4JnydQ7TDOk+Kz/Wi974l4mw==}
- peerDependencies:
- '@chakra-ui/styled-system': '>=2.0.0'
- 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
- dev: false
-
/@chakra-ui/theme-tools@2.1.2(@chakra-ui/styled-system@2.9.2):
resolution: {integrity: sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA==}
peerDependencies:
@@ -4726,15 +4468,6 @@ packages:
color2k: 2.0.3
dev: false
- /@chakra-ui/theme-utils@2.0.18:
- resolution: {integrity: sha512-aSbkUUiFpc1NHC7lQdA6uYlr6EcZFXz6b4aJ7VRDpqTiywvqYnvfGzhmsB0z94vgtS9qXc6HoIwBp25jYGV2MA==}
- 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
- dev: false
-
/@chakra-ui/theme-utils@2.0.21:
resolution: {integrity: sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw==}
dependencies:
@@ -4744,17 +4477,6 @@ packages:
lodash.mergewith: 4.6.2
dev: false
- /@chakra-ui/theme@3.1.2(@chakra-ui/styled-system@2.9.1):
- resolution: {integrity: sha512-ebUXMS3LZw2OZxEQNYaFw3/XuA3jpyprhS/frjHMvZKSOaCjMW+c9z25S0jp1NnpQff08VGI8EWbyVZECXU1QA==}
- peerDependencies:
- '@chakra-ui/styled-system': '>=2.8.0'
- 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)
- dev: false
-
/@chakra-ui/theme@3.3.1(@chakra-ui/styled-system@2.9.2):
resolution: {integrity: sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ==}
peerDependencies:
@@ -4766,76 +4488,31 @@ packages:
'@chakra-ui/theme-tools': 2.1.2(@chakra-ui/styled-system@2.9.2)
dev: false
- /@chakra-ui/toast@6.1.4(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-wAcPHq/N/ar4jQxkUGhnsbp+lx2eKOpHxn1KaWdHXUkqCNUA1z09fvBsoMyzObSiiwbDuQPZG5RxsOhzfPZX4Q==}
- peerDependencies:
- '@chakra-ui/system': 2.5.8
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
- dependencies:
- '@chakra-ui/alert': 2.1.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@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)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/theme': 3.1.2(@chakra-ui/styled-system@2.9.1)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
-
- /@chakra-ui/toast@6.1.4(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-wAcPHq/N/ar4jQxkUGhnsbp+lx2eKOpHxn1KaWdHXUkqCNUA1z09fvBsoMyzObSiiwbDuQPZG5RxsOhzfPZX4Q==}
- peerDependencies:
- '@chakra-ui/system': 2.5.8
- framer-motion: '>=4.0.0'
- react: '>=18'
- react-dom: '>=18'
- dependencies:
- '@chakra-ui/alert': 2.1.0(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.8)(react@18.2.0)
- '@chakra-ui/portal': 2.0.16(react-dom@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)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/theme': 3.1.2(@chakra-ui/styled-system@2.9.1)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
-
- /@chakra-ui/tooltip@2.2.9(@chakra-ui/system@2.5.8)(framer-motion@10.12.20)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ZoksllanqXRUyMDaiogvUVJ+RdFXwZrfrwx3RV22fejYZIQ602hZ3QHtHLB5ZnKFLbvXKMZKM23HxFTSb0Ytqg==}
+ /@chakra-ui/toast@7.0.2(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-yvRP8jFKRs/YnkuE41BVTq9nB2v/KDRmje9u6dgDmE5+1bFt3bwjdf9gVbif4u5Ve7F7BGk5E093ARRVtvLvXA==}
peerDependencies:
- '@chakra-ui/system': '>=2.0.0'
+ '@chakra-ui/system': 2.6.2
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
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)
- '@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/alert': 2.2.2(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2)(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/react-context': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-timeout': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/styled-system': 2.9.2
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@chakra-ui/tooltip@2.2.9(@chakra-ui/system@2.5.8)(framer-motion@10.3.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ZoksllanqXRUyMDaiogvUVJ+RdFXwZrfrwx3RV22fejYZIQ602hZ3QHtHLB5ZnKFLbvXKMZKM23HxFTSb0Ytqg==}
+ /@chakra-ui/tooltip@2.3.1(@chakra-ui/system@2.6.2)(framer-motion@11.1.7)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Rh39GBn/bL4kZpuEMPPRwYNnccRCL+w9OqamWHIB3Qboxs6h8cOyXfIdGxjo72lvhu1QI/a4KFqkM3St+WfC0A==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
framer-motion: '>=4.0.0'
@@ -4843,38 +4520,27 @@ packages:
react-dom: '>=18'
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)
+ '@chakra-ui/popper': 3.1.0(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@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/react-use-disclosure': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-event-listener': 2.1.0(react@18.2.0)
+ '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@chakra-ui/transition@2.0.16(framer-motion@10.12.20)(react@18.2.0):
- resolution: {integrity: sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ==}
- peerDependencies:
- framer-motion: '>=4.0.0'
- react: '>=18'
- dependencies:
- '@chakra-ui/shared-utils': 2.0.5
- framer-motion: 10.12.20(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@chakra-ui/transition@2.0.16(framer-motion@10.3.0)(react@18.2.0):
- resolution: {integrity: sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ==}
+ /@chakra-ui/transition@2.1.0(framer-motion@11.1.7)(react@18.2.0):
+ resolution: {integrity: sha512-orkT6T/Dt+/+kVwJNy7zwJ+U2xAZ3EU7M3XCs45RBvUnZDr/u9vdmaM/3D/rOpmQJWgQBwKPJleUXrYWUagEDQ==}
peerDependencies:
framer-motion: '>=4.0.0'
react: '>=18'
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- framer-motion: 10.3.0(react-dom@18.2.0)(react@18.2.0)
+ framer-motion: 11.1.7(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
dev: false
@@ -4887,13 +4553,13 @@ packages:
lodash.mergewith: 4.6.2
dev: false
- /@chakra-ui/visually-hidden@2.0.15(@chakra-ui/system@2.5.8)(react@18.2.0):
- resolution: {integrity: sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==}
+ /@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.2)(react@18.2.0):
+ resolution: {integrity: sha512-KmKDg01SrQ7VbTD3+cPWf/UfpF5MSwm3v7MWi0n5t8HnnadT13MF0MJCDSXbBWnzLv1ZKJ6zlyAOeARWX+DpjQ==}
peerDependencies:
'@chakra-ui/system': '>=2.0.0'
react: '>=18'
dependencies:
- '@chakra-ui/system': 2.5.8(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.2(@emotion/react@11.11.4)(@emotion/styled@11.11.5)(react@18.2.0)
react: 18.2.0
dev: false
@@ -5288,7 +4954,7 @@ packages:
'@babel/runtime': 7.24.0
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
- '@emotion/serialize': 1.1.3
+ '@emotion/serialize': 1.1.4
babel-plugin-macros: 3.1.0
convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
@@ -5346,8 +5012,8 @@ packages:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
dev: false
- /@emotion/react@11.11.1(@types/react@18.2.15)(react@18.2.0):
- resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==}
+ /@emotion/react@11.11.4(@types/react@18.2.15)(react@18.2.0):
+ resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
@@ -5358,7 +5024,7 @@ packages:
'@babel/runtime': 7.24.0
'@emotion/babel-plugin': 11.11.0
'@emotion/cache': 11.11.0
- '@emotion/serialize': 1.1.3
+ '@emotion/serialize': 1.1.4
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.3.1
@@ -5410,6 +5076,16 @@ packages:
csstype: 3.1.3
dev: false
+ /@emotion/serialize@1.1.4:
+ resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==}
+ dependencies:
+ '@emotion/hash': 0.9.1
+ '@emotion/memoize': 0.8.1
+ '@emotion/unitless': 0.8.1
+ '@emotion/utils': 1.2.1
+ csstype: 3.1.3
+ dev: false
+
/@emotion/sheet@0.9.4:
resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==}
dev: false
@@ -5418,8 +5094,8 @@ packages:
resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
dev: false
- /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.15)(react@18.2.0):
- resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==}
+ /@emotion/styled@11.11.5(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0):
+ resolution: {integrity: sha512-/ZjjnaNKvuMPxcIiUkf/9SHoG4Q196DRl1w82hQ3WCsjo1IUR8uaGWrC6a87CrYAW0Kb/pK7hk8BnLgLRi9KoQ==}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
@@ -5431,8 +5107,8 @@ packages:
'@babel/runtime': 7.24.0
'@emotion/babel-plugin': 11.11.0
'@emotion/is-prop-valid': 1.2.2
- '@emotion/react': 11.11.1(@types/react@18.2.15)(react@18.2.0)
- '@emotion/serialize': 1.1.3
+ '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
+ '@emotion/serialize': 1.1.4
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@types/react': 18.2.15
@@ -5498,27 +5174,6 @@ packages:
resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
dev: false
- /@esbuild-kit/cjs-loader@2.4.4:
- resolution: {integrity: sha512-NfsJX4PdzhwSkfJukczyUiZGc7zNNWZcEAyqeISpDnn0PTfzMJR1aR8xAIPskBejIxBJbIgCCMzbaYa9SXepIg==}
- dependencies:
- '@esbuild-kit/core-utils': 3.3.2
- get-tsconfig: 4.7.3
- dev: true
-
- /@esbuild-kit/core-utils@3.3.2:
- resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
- dependencies:
- esbuild: 0.18.20
- source-map-support: 0.5.21
- dev: true
-
- /@esbuild-kit/esm-loader@2.6.5:
- resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
- dependencies:
- '@esbuild-kit/core-utils': 3.3.2
- get-tsconfig: 4.7.3
- dev: true
-
/@esbuild/aix-ppc64@0.19.11:
resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
engines: {node: '>=12'}
@@ -5528,24 +5183,6 @@ packages:
dev: false
optional: true
- /@esbuild/aix-ppc64@0.19.12:
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/android-arm64@0.17.5:
- resolution: {integrity: sha512-KHWkDqYAMmKZjY4RAN1PR96q6UOtfkWlTS8uEwWxdLtkRt/0F/csUhXIrVfaSIFxnscIBMPynGfhsMwQDRIBQw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm64@0.18.20:
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
@@ -5563,15 +5200,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-arm64@0.19.12:
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm64@0.19.5:
resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==}
engines: {node: '>=12'}
@@ -5590,15 +5218,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.17.5:
- resolution: {integrity: sha512-crmPUzgCmF+qZXfl1YkiFoUta2XAfixR1tEnr/gXIixE+WL8Z0BGqfydP5oox0EUOgQMMRgtATtakyAcClQVqQ==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm@0.18.20:
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
engines: {node: '>=12'}
@@ -5616,15 +5235,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-arm@0.19.12:
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm@0.19.5:
resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==}
engines: {node: '>=12'}
@@ -5634,15 +5244,6 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.17.5:
- resolution: {integrity: sha512-8fI/AnIdmWz/+1iza2WrCw8kwXK9wZp/yZY/iS8ioC+U37yJCeppi9EHY05ewJKN64ASoBIseufZROtcFnX5GA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-x64@0.18.20:
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
@@ -5660,15 +5261,6 @@ packages:
dev: false
optional: true
- /@esbuild/android-x64@0.19.12:
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-x64@0.19.5:
resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==}
engines: {node: '>=12'}
@@ -5678,15 +5270,6 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.17.5:
- resolution: {integrity: sha512-EAvaoyIySV6Iif3NQCglUNpnMfHSUgC5ugt2efl3+QDntucJe5spn0udNZjTgNi6tKVqSceOw9tQ32liNZc1Xw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-arm64@0.18.20:
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
@@ -5704,15 +5287,6 @@ packages:
dev: false
optional: true
- /@esbuild/darwin-arm64@0.19.12:
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-arm64@0.19.5:
resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==}
engines: {node: '>=12'}
@@ -5722,15 +5296,6 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.17.5:
- resolution: {integrity: sha512-ha7QCJh1fuSwwCgoegfdaljowwWozwTDjBgjD3++WAy/qwee5uUi1gvOg2WENJC6EUyHBOkcd3YmLDYSZ2TPPA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-x64@0.18.20:
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
@@ -5748,15 +5313,6 @@ packages:
dev: false
optional: true
- /@esbuild/darwin-x64@0.19.12:
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-x64@0.19.5:
resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==}
engines: {node: '>=12'}
@@ -5766,15 +5322,6 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.17.5:
- resolution: {integrity: sha512-VbdXJkn2aI2pQ/wxNEjEcnEDwPpxt3CWWMFYmO7CcdFBoOsABRy2W8F3kjbF9F/pecEUDcI3b5i2w+By4VQFPg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-arm64@0.18.20:
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
@@ -5792,15 +5339,6 @@ packages:
dev: false
optional: true
- /@esbuild/freebsd-arm64@0.19.12:
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-arm64@0.19.5:
resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==}
engines: {node: '>=12'}
@@ -5810,15 +5348,6 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.17.5:
- resolution: {integrity: sha512-olgGYND1/XnnWxwhjtY3/ryjOG/M4WfcA6XH8dBTH1cxMeBemMODXSFhkw71Kf4TeZFFTN25YOomaNh0vq2iXg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-x64@0.18.20:
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
@@ -5836,15 +5365,6 @@ packages:
dev: false
optional: true
- /@esbuild/freebsd-x64@0.19.12:
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-x64@0.19.5:
resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==}
engines: {node: '>=12'}
@@ -5854,15 +5374,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.17.5:
- resolution: {integrity: sha512-8a0bqSwu3OlLCfu2FBbDNgQyBYdPJh1B9PvNX7jMaKGC9/KopgHs37t+pQqeMLzcyRqG6z55IGNQAMSlCpBuqg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm64@0.18.20:
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
@@ -5880,15 +5391,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-arm64@0.19.12:
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm64@0.19.5:
resolution: {integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==}
engines: {node: '>=12'}
@@ -5898,15 +5400,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.17.5:
- resolution: {integrity: sha512-YBdCyQwA3OQupi6W2/WO4FnI+NWFWe79cZEtlbqSESOHEg7a73htBIRiE6uHPQe7Yp5E4aALv+JxkRLGEUL7tw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm@0.18.20:
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
@@ -5924,15 +5417,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-arm@0.19.12:
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm@0.19.5:
resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==}
engines: {node: '>=12'}
@@ -5942,15 +5426,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.17.5:
- resolution: {integrity: sha512-uCwm1r/+NdP7vndctgq3PoZrnmhmnecWAr114GWMRwg2QMFFX+kIWnp7IO220/JLgnXK/jP7VKAFBGmeOYBQYQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ia32@0.18.20:
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
@@ -5968,15 +5443,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-ia32@0.19.12:
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ia32@0.19.5:
resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==}
engines: {node: '>=12'}
@@ -5995,15 +5461,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.17.5:
- resolution: {integrity: sha512-3YxhSBl5Sb6TtBjJu+HP93poBruFzgXmf3PVfIe4xOXMj1XpxboYZyw3W8BhoX/uwxzZz4K1I99jTE/5cgDT1g==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-loong64@0.18.20:
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
engines: {node: '>=12'}
@@ -6021,15 +5478,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-loong64@0.19.12:
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-loong64@0.19.5:
resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==}
engines: {node: '>=12'}
@@ -6039,15 +5487,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.17.5:
- resolution: {integrity: sha512-Hy5Z0YVWyYHdtQ5mfmfp8LdhVwGbwVuq8mHzLqrG16BaMgEmit2xKO+iDakHs+OetEx0EN/2mUzDdfdktI+Nmg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-mips64el@0.18.20:
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
engines: {node: '>=12'}
@@ -6065,15 +5504,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-mips64el@0.19.12:
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-mips64el@0.19.5:
resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==}
engines: {node: '>=12'}
@@ -6083,15 +5513,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.17.5:
- resolution: {integrity: sha512-5dbQvBLbU/Y3Q4ABc9gi23hww1mQcM7KZ9KBqabB7qhJswYMf8WrDDOSw3gdf3p+ffmijMd28mfVMvFucuECyg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ppc64@0.18.20:
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
engines: {node: '>=12'}
@@ -6109,15 +5530,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-ppc64@0.19.12:
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ppc64@0.19.5:
resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==}
engines: {node: '>=12'}
@@ -6127,15 +5539,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.17.5:
- resolution: {integrity: sha512-fp/KUB/ZPzEWGTEUgz9wIAKCqu7CjH1GqXUO2WJdik1UNBQ7Xzw7myIajpxztE4Csb9504ERiFMxZg5KZ6HlZQ==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-riscv64@0.18.20:
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
engines: {node: '>=12'}
@@ -6153,15 +5556,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-riscv64@0.19.12:
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-riscv64@0.19.5:
resolution: {integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==}
engines: {node: '>=12'}
@@ -6171,15 +5565,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.17.5:
- resolution: {integrity: sha512-kRV3yw19YDqHTp8SfHXfObUFXlaiiw4o2lvT1XjsPZ++22GqZwSsYWJLjMi1Sl7j9qDlDUduWDze/nQx0d6Lzw==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-s390x@0.18.20:
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
engines: {node: '>=12'}
@@ -6197,15 +5582,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-s390x@0.19.12:
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-s390x@0.19.5:
resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==}
engines: {node: '>=12'}
@@ -6215,15 +5591,6 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.17.5:
- resolution: {integrity: sha512-vnxuhh9e4pbtABNLbT2ANW4uwQ/zvcHRCm1JxaYkzSehugoFd5iXyC4ci1nhXU13mxEwCnrnTIiiSGwa/uAF1g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-x64@0.18.20:
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
engines: {node: '>=12'}
@@ -6241,15 +5608,6 @@ packages:
dev: false
optional: true
- /@esbuild/linux-x64@0.19.12:
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-x64@0.19.5:
resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==}
engines: {node: '>=12'}
@@ -6259,15 +5617,6 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.17.5:
- resolution: {integrity: sha512-cigBpdiSx/vPy7doUyImsQQBnBjV5f1M99ZUlaJckDAJjgXWl6y9W17FIfJTy8TxosEF6MXq+fpLsitMGts2nA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/netbsd-x64@0.18.20:
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
engines: {node: '>=12'}
@@ -6285,15 +5634,6 @@ packages:
dev: false
optional: true
- /@esbuild/netbsd-x64@0.19.12:
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/netbsd-x64@0.19.5:
resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==}
engines: {node: '>=12'}
@@ -6303,15 +5643,6 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.17.5:
- resolution: {integrity: sha512-VdqRqPVIjjZfkf40LrqOaVuhw9EQiAZ/GNCSM2UplDkaIzYVsSnycxcFfAnHdWI8Gyt6dO15KHikbpxwx+xHbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/openbsd-x64@0.18.20:
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
engines: {node: '>=12'}
@@ -6329,15 +5660,6 @@ packages:
dev: false
optional: true
- /@esbuild/openbsd-x64@0.19.12:
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/openbsd-x64@0.19.5:
resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==}
engines: {node: '>=12'}
@@ -6347,15 +5669,6 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.17.5:
- resolution: {integrity: sha512-ItxPaJ3MBLtI4nK+mALLEoUs6amxsx+J1ibnfcYMkqaCqHST1AkF4aENpBehty3czqw64r/XqL+W9WqU6kc2Qw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/sunos-x64@0.18.20:
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
engines: {node: '>=12'}
@@ -6373,15 +5686,6 @@ packages:
dev: false
optional: true
- /@esbuild/sunos-x64@0.19.12:
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/sunos-x64@0.19.5:
resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==}
engines: {node: '>=12'}
@@ -6391,15 +5695,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.17.5:
- resolution: {integrity: sha512-4u2Q6qsJTYNFdS9zHoAi80spzf78C16m2wla4eJPh4kSbRv+BpXIfl6TmBSWupD8e47B1NrTfrOlEuco7mYQtg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-arm64@0.18.20:
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
@@ -6417,15 +5712,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-arm64@0.19.12:
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-arm64@0.19.5:
resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==}
engines: {node: '>=12'}
@@ -6435,15 +5721,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.17.5:
- resolution: {integrity: sha512-KYlm+Xu9TXsfTWAcocLuISRtqxKp/Y9ZBVg6CEEj0O5J9mn7YvBKzAszo2j1ndyzUPk+op+Tie2PJeN+BnXGqQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-ia32@0.18.20:
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
engines: {node: '>=12'}
@@ -6461,15 +5738,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-ia32@0.19.12:
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-ia32@0.19.5:
resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==}
engines: {node: '>=12'}
@@ -6479,15 +5747,6 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.17.5:
- resolution: {integrity: sha512-XgA9qWRqby7xdYXuF6KALsn37QGBMHsdhmnpjfZtYxKxbTOwfnDM6MYi2WuUku5poNaX2n9XGVr20zgT/2QwCw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-x64@0.18.20:
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
engines: {node: '>=12'}
@@ -6505,15 +5764,6 @@ packages:
dev: false
optional: true
- /@esbuild/win32-x64@0.19.12:
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-x64@0.19.5:
resolution: {integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==}
engines: {node: '>=12'}
@@ -6929,7 +6179,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -6950,14 +6200,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.4.9)
+ jest-config: 29.7.0(@types/node@20.4.2)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -6985,7 +6235,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
jest-mock: 29.7.0
dev: true
@@ -7012,7 +6262,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -7045,7 +6295,7 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -7133,7 +6383,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
'@types/yargs': 17.0.32
chalk: 4.1.2
dev: true
@@ -7933,32 +7183,12 @@ packages:
engines: {node: '>=16'}
dev: false
- /@playwright/test@1.36.0:
- resolution: {integrity: sha512-yN+fvMYtiyLFDCQos+lWzoX4XW3DNuaxjBu68G0lkgLgC6BP+m/iTxJQoSicz/x2G5EsrqlZTqTIP9sTgLQerg==}
- engines: {node: '>=16'}
- hasBin: true
- dependencies:
- '@types/node': 20.4.9
- playwright-core: 1.36.0
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /@playwright/test@1.42.1:
- resolution: {integrity: sha512-Gq9rmS54mjBL/7/MvBaNOBwbfnh7beHvS6oS4srqXFcQHpQCV1+c8JXWE8VLPyRDhgS3H8x8A7hztqI9VnwrAQ==}
- engines: {node: '>=16'}
- hasBin: true
- dependencies:
- playwright: 1.42.1
- dev: false
-
/@playwright/test@1.43.1:
resolution: {integrity: sha512-HgtQzFgNEEo4TE22K/X7sYTYNqEMMTZmFS8kTq6m8hXj+m1D8TgwgIbumHddJa9h4yl4GkKb8/bgAl2+g7eDgA==}
engines: {node: '>=16'}
hasBin: true
dependencies:
playwright: 1.43.1
- dev: true
/@popperjs/core@2.11.8:
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
@@ -9163,23 +8393,19 @@ packages:
/@socket.io/component-emitter@3.1.0:
resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
- /@stripe/react-stripe-js@1.16.4(@stripe/stripe-js@1.46.0)(react-dom@18.2.0)(react@18.2.0):
+ /@stripe/react-stripe-js@1.16.4(@stripe/stripe-js@1.54.1)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-x+Zstd3mHctNbSATOdbA2rOVXqGhbLU1ziNgcWqYCaFXj2dPKzjkBiUJfDhoARJVXVGOts0oZ8teTkOFY/ZRzQ==}
peerDependencies:
'@stripe/stripe-js': ^1.44.1
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@stripe/stripe-js': 1.46.0
+ '@stripe/stripe-js': 1.54.1
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@stripe/stripe-js@1.46.0:
- resolution: {integrity: sha512-dkm0zCEoRLu5rTnsIgwDf/QG2DKcalOT2dk1IVgMySOHWTChLyOvQwMYhEduGgLvyYWTwNhAUV4WOLPQvjwLwA==}
- dev: false
-
/@stripe/stripe-js@1.54.1:
resolution: {integrity: sha512-smEXPu1GKMcAj9g2luT16+oXfg2jAwyc68t2Dm5wdtYl3p8PqQaZEiI8tQmboaQAjgF8pIGma6byz1T1vgmpbA==}
dev: false
@@ -9545,7 +8771,7 @@ packages:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: false
/@types/canvas-confetti@1.6.0:
@@ -9555,13 +8781,13 @@ packages:
/@types/cli-progress@3.11.5:
resolution: {integrity: sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: true
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: false
/@types/content-type@1.1.8:
@@ -9620,7 +8846,7 @@ packages:
/@types/express-serve-static-core@4.17.43:
resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
'@types/qs': 6.9.7
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -9638,7 +8864,7 @@ packages:
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: true
/@types/hast@2.3.10:
@@ -9696,7 +8922,7 @@ packages:
/@types/jsdom@20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
'@types/tough-cookie': 4.0.5
parse5: 7.1.2
dev: true
@@ -9751,7 +8977,7 @@ packages:
/@types/micro@7.3.7:
resolution: {integrity: sha512-MFsX7eCj0Tg3TtphOQvANNvNtFpya+s/rYOCdV6o+DFjOQPFi2EVRbBALjbbgZTXUaJP1Q281MJiJOD40d0UxQ==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: true
/@types/mime@1.3.5:
@@ -9772,7 +8998,7 @@ packages:
/@types/node-fetch@2.6.11:
resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
dependencies:
- '@types/node': 20.14.2
+ '@types/node': 20.4.2
form-data: 4.0.0
dev: false
@@ -9780,16 +9006,11 @@ packages:
resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
dev: false
- /@types/node@20.12.4:
- resolution: {integrity: sha512-E+Fa9z3wSQpzgYQdYmme5X3OTuejnnTx88A6p6vkkJosR3KBz+HpE3kqNm98VE6cfLFcISx7zW7MsJkH6KwbTw==}
- dependencies:
- undici-types: 5.26.5
- dev: false
-
/@types/node@20.14.2:
resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==}
dependencies:
undici-types: 5.26.5
+ dev: false
/@types/node@20.4.2:
resolution: {integrity: sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==}
@@ -9831,7 +9052,7 @@ packages:
/@types/prompts@2.4.4:
resolution: {integrity: sha512-p5N9uoTH76lLvSAaYSZtBCdEXzpOOufsRjnhjVSrZGXikVGHX9+cc9ERtHRV4hvBKHyZb1bg4K+56Bd2TqUn4A==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
kleur: 3.0.3
dev: true
@@ -9841,7 +9062,7 @@ packages:
/@types/qrcode@1.5.5:
resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: true
/@types/qs@6.9.7:
@@ -9897,7 +9118,7 @@ packages:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: false
/@types/serve-static@1.15.5:
@@ -9905,7 +9126,7 @@ packages:
dependencies:
'@types/http-errors': 2.0.4
'@types/mime': 3.0.4
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
dev: false
/@types/stack-utils@2.0.3:
@@ -9937,7 +9158,7 @@ packages:
/@types/webpack@5.28.5(@swc/core@1.3.101)(esbuild@0.19.11):
resolution: {integrity: sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
tapable: 2.2.1
webpack: 5.90.3(@swc/core@1.3.101)(esbuild@0.19.11)
transitivePeerDependencies:
@@ -10958,12 +10179,18 @@ packages:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
dev: false
- /@zag-js/element-size@0.3.2:
- resolution: {integrity: sha512-bVvvigUGvAuj7PCkE5AbzvTJDTw5f3bg9nQdv+ErhVN8SfPPppLJEmmWdxqsRzrHXgx8ypJt/+Ty0kjtISVDsQ==}
+ /@zag-js/dom-query@0.16.0:
+ resolution: {integrity: sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ==}
dev: false
- /@zag-js/focus-visible@0.2.2:
- resolution: {integrity: sha512-0j2gZq8HiZ51z4zNnSkF1iSkqlwRDvdH+son3wHdoz+7IUdMN/5Exd4TxMJ+gq2Of1DiXReYLL9qqh2PdQ4wgA==}
+ /@zag-js/element-size@0.10.5:
+ resolution: {integrity: sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w==}
+ dev: false
+
+ /@zag-js/focus-visible@0.16.0:
+ resolution: {integrity: sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA==}
+ dependencies:
+ '@zag-js/dom-query': 0.16.0
dev: false
/@zxing/text-encoding@0.9.0:
@@ -11017,30 +10244,11 @@ packages:
dependencies:
acorn: 8.11.3
- /acorn-node@1.8.2:
- resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
- dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
- xtend: 4.0.2
- dev: true
-
- /acorn-walk@7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
- dev: true
-
/acorn-walk@8.3.2:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn@7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: true
-
/acorn@8.11.3:
resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
@@ -11403,22 +10611,6 @@ packages:
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- /autoprefixer@10.4.13(postcss@8.4.21):
- resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001597
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.21
- postcss-value-parser: 4.2.0
- dev: true
-
/autoprefixer@10.4.14(postcss@8.4.26):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -12372,8 +11564,8 @@ packages:
resolution: {integrity: sha512-/0u8ov0WPWi2FL78rgB9aFOcfY8pJT4jP/l9NTOukGNLVQ6hk35sEJE1RkEnNQU3yk48Qr7HlDQjRQKEVfgeWg==}
dev: false
- /compute-scroll-into-view@1.0.20:
- resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
+ /compute-scroll-into-view@3.0.3:
+ resolution: {integrity: sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==}
dev: false
/compute-scroll-into-view@3.1.0:
@@ -12542,7 +11734,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.4.9)
+ jest-config: 29.7.0(@types/node@20.4.2)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -12933,10 +12125,6 @@ packages:
has-property-descriptors: 1.0.2
object-keys: 1.1.1
- /defined@1.0.1:
- resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
- dev: true
-
/defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
dev: false
@@ -12996,16 +12184,6 @@ packages:
- supports-color
dev: true
- /detective@5.2.1:
- resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
- engines: {node: '>=0.8.0'}
- hasBin: true
- dependencies:
- acorn-node: 1.8.2
- defined: 1.0.1
- minimist: 1.2.8
- dev: true
-
/devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
dependencies:
@@ -13252,7 +12430,7 @@ packages:
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.13
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
@@ -13624,36 +12802,6 @@ packages:
esbuild-windows-arm64: 0.15.18
dev: true
- /esbuild@0.17.5:
- resolution: {integrity: sha512-Bu6WLCc9NMsNoMJUjGl3yBzTjVLXdysMltxQWiLAypP+/vQrf+3L1Xe8fCXzxaECus2cEJ9M7pk4yKatEwQMqQ==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.17.5
- '@esbuild/android-arm64': 0.17.5
- '@esbuild/android-x64': 0.17.5
- '@esbuild/darwin-arm64': 0.17.5
- '@esbuild/darwin-x64': 0.17.5
- '@esbuild/freebsd-arm64': 0.17.5
- '@esbuild/freebsd-x64': 0.17.5
- '@esbuild/linux-arm': 0.17.5
- '@esbuild/linux-arm64': 0.17.5
- '@esbuild/linux-ia32': 0.17.5
- '@esbuild/linux-loong64': 0.17.5
- '@esbuild/linux-mips64el': 0.17.5
- '@esbuild/linux-ppc64': 0.17.5
- '@esbuild/linux-riscv64': 0.17.5
- '@esbuild/linux-s390x': 0.17.5
- '@esbuild/linux-x64': 0.17.5
- '@esbuild/netbsd-x64': 0.17.5
- '@esbuild/openbsd-x64': 0.17.5
- '@esbuild/sunos-x64': 0.17.5
- '@esbuild/win32-arm64': 0.17.5
- '@esbuild/win32-ia32': 0.17.5
- '@esbuild/win32-x64': 0.17.5
- dev: true
-
/esbuild@0.18.20:
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
engines: {node: '>=12'}
@@ -13714,37 +12862,6 @@ packages:
'@esbuild/win32-x64': 0.19.11
dev: false
- /esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
- dev: true
-
/esbuild@0.19.5:
resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==}
engines: {node: '>=12'}
@@ -14585,24 +13702,6 @@ packages:
/fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- /framer-motion@10.12.20(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-O4ODHTlov2cGHWjtMSuZhm2wX0eM33VK8+vCxren2uw9g3k/RubPCa0/tT6PtLzCvYgAhgKmaczVbY2qEJVWOw==}
- peerDependencies:
- react: ^18.0.0
- react-dom: ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
- dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.0
- optionalDependencies:
- '@emotion/is-prop-valid': 0.8.8
- dev: false
-
/framer-motion@10.17.4(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-CYBSs6cWfzcasAX8aofgKFZootmkQtR4qxbfTOksBLny/lbUfkGbQAFOS3qnl6Uau1N9y8tUpI7mVIrHgkFjLQ==}
peerDependencies:
@@ -14621,12 +13720,15 @@ packages:
'@emotion/is-prop-valid': 0.8.8
dev: false
- /framer-motion@10.3.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-nHOQr2LPUw6wBfILdvdOgfz3F403RpWxGj1R3t6YfyL7nB3K1o7ZAwTXp/jT8xnKYIH3QWm7+3DaBRScFTLD9A==}
+ /framer-motion@11.1.7(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-cW11Pu53eDAXUEhv5hEiWuIXWhfkbV32PlgVISn7jRdcAiVrJ1S03YQQ0/DzoswGYYwKi4qYmHHjCzAH52eSdQ==}
peerDependencies:
+ '@emotion/is-prop-valid': '*'
react: ^18.0.0
react-dom: ^18.0.0
peerDependenciesMeta:
+ '@emotion/is-prop-valid':
+ optional: true
react:
optional: true
react-dom:
@@ -14635,8 +13737,6 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.0
- optionalDependencies:
- '@emotion/is-prop-valid': 0.8.8
dev: false
/framesync@6.1.2:
@@ -16000,7 +15100,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
@@ -16038,7 +15138,7 @@ packages:
create-jest: 29.7.0
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.4.9)
+ jest-config: 29.7.0(@types/node@20.4.2)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -16049,7 +15149,7 @@ packages:
- ts-node
dev: true
- /jest-config@29.7.0(@types/node@20.4.9):
+ /jest-config@29.7.0(@types/node@20.4.2):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -16064,7 +15164,7 @@ packages:
'@babel/core': 7.22.9
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
babel-jest: 29.7.0(@babel/core@7.22.9)
chalk: 4.1.2
ci-info: 3.9.0
@@ -16147,7 +15247,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
jest-mock: 29.7.0
jest-util: 29.7.0
dev: true
@@ -16163,7 +15263,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -16214,7 +15314,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
jest-util: 29.7.0
dev: true
@@ -16269,7 +15369,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -16300,7 +15400,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -16352,7 +15452,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -16377,7 +15477,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -16389,7 +15489,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
@@ -16398,7 +15498,7 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.4.9
+ '@types/node': 20.4.2
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -16721,19 +15821,9 @@ packages:
resolution: {integrity: sha512-RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==}
dev: true
- /ky@1.1.3:
- resolution: {integrity: sha512-t7q8sJfazzHbfYxiCtuLIH4P+pWoCgunDll17O/GBZBqMt2vHjGSx5HzSxhOc2BDEg3YN/EmeA7VKrHnwuWDag==}
- engines: {node: '>=18'}
- dev: false
-
- /ky@1.2.3:
- resolution: {integrity: sha512-2IM3VssHfG2zYz2FsHRUqIp8chhLc9uxDMcK2THxgFfv8pQhnMfN8L0ul+iW4RdBl5AglF8ooPIflRm3yNH0IA==}
- engines: {node: '>=18'}
-
/ky@1.2.4:
resolution: {integrity: sha512-CfSrf4a0yj1n6WgPT6kQNQOopIGLkQzqSAXo05oKByaH7G3SiqW4a8jGox0p9whMXqO49H7ljgigivrMyycAVA==}
engines: {node: '>=18'}
- dev: false
/language-subtag-registry@0.3.22:
resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
@@ -18632,7 +17722,7 @@ packages:
engines: {node: '>=14'}
dependencies:
'@types/express': 4.17.21
- '@types/node': 20.12.4
+ '@types/node': 20.14.2
accepts: 1.3.8
content-disposition: 0.5.4
depd: 1.1.2
@@ -19134,33 +18224,10 @@ packages:
find-up: 4.1.0
dev: true
- /playwright-core@1.36.0:
- resolution: {integrity: sha512-7RTr8P6YJPAqB+8j5ATGHqD6LvLLM39sYVNsslh78g8QeLcBs5750c6+msjrHUwwGt+kEbczBj1XB22WMwn+WA==}
- engines: {node: '>=16'}
- hasBin: true
- dev: true
-
- /playwright-core@1.42.1:
- resolution: {integrity: sha512-mxz6zclokgrke9p1vtdy/COWBH+eOZgYUVVU34C73M+4j4HLlQJHtfcqiqqxpP0o8HhMkflvfbquLX5dg6wlfA==}
- engines: {node: '>=16'}
- hasBin: true
- dev: false
-
/playwright-core@1.43.1:
resolution: {integrity: sha512-EI36Mto2Vrx6VF7rm708qSnesVQKbxEWvPrfA1IPY6HgczBplDx7ENtx+K2n4kJ41sLLkuGfmb0ZLSSXlDhqPg==}
engines: {node: '>=16'}
hasBin: true
- dev: true
-
- /playwright@1.42.1:
- resolution: {integrity: sha512-PgwB03s2DZBcNRoW+1w9E+VkLBxweib6KTXM0M3tkiT4jVxKSi6PmVJ591J+0u10LUrgxB7dLRbiJqO5s2QPMg==}
- engines: {node: '>=16'}
- hasBin: true
- dependencies:
- playwright-core: 1.42.1
- optionalDependencies:
- fsevents: 2.3.2
- dev: false
/playwright@1.43.1:
resolution: {integrity: sha512-V7SoH0ai2kNt1Md9E3Gwas5B9m8KR2GVvwZnAI6Pg0m3sh7UvgiYhRrhsziCmqMJNouPckiOhk8T+9bSAK0VIA==}
@@ -19170,7 +18237,6 @@ packages:
playwright-core: 1.43.1
optionalDependencies:
fsevents: 2.3.2
- dev: true
/pngjs@5.0.0:
resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
@@ -19262,18 +18328,6 @@ packages:
postcss: 8.4.26
dev: true
- /postcss-import@14.1.0(postcss@8.4.21):
- resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- postcss: ^8.0.0
- dependencies:
- postcss: 8.4.21
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.8
- dev: true
-
/postcss-import@15.1.0(postcss@8.4.26):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -19285,16 +18339,6 @@ packages:
read-cache: 1.0.0
resolve: 1.22.8
- /postcss-js@4.0.1(postcss@8.4.21):
- resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
- engines: {node: ^12 || ^14 || >= 16}
- peerDependencies:
- postcss: ^8.4.21
- dependencies:
- camelcase-css: 2.0.1
- postcss: 8.4.21
- dev: true
-
/postcss-js@4.0.1(postcss@8.4.26):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
@@ -19304,23 +18348,6 @@ packages:
camelcase-css: 2.0.1
postcss: 8.4.26
- /postcss-load-config@3.1.4(postcss@8.4.21):
- resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
- engines: {node: '>= 10'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
- dependencies:
- lilconfig: 2.1.0
- postcss: 8.4.21
- yaml: 1.10.2
- dev: true
-
/postcss-load-config@3.1.4(postcss@8.4.26):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
@@ -19479,16 +18506,6 @@ packages:
string-hash: 1.1.3
dev: true
- /postcss-nested@6.0.0(postcss@8.4.21):
- resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
- dependencies:
- postcss: 8.4.21
- postcss-selector-parser: 6.0.15
- dev: true
-
/postcss-nested@6.0.1(postcss@8.4.26):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
@@ -19660,15 +18677,6 @@ packages:
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss@8.4.21:
- resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.0.2
- dev: true
-
/postcss@8.4.26:
resolution: {integrity: sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==}
engines: {node: ^10 || ^12 || >=14}
@@ -19755,12 +18763,6 @@ packages:
hasBin: true
dev: true
- /prettier@2.8.3:
- resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- dev: true
-
/prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
@@ -20074,10 +19076,6 @@ packages:
- webpack-cli
dev: false
- /react-fast-compare@3.2.1:
- resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
- dev: false
-
/react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
dev: false
@@ -21776,40 +20774,6 @@ packages:
'@babel/runtime': 7.24.0
dev: false
- /tailwindcss@3.2.4(postcss@8.4.21):
- resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==}
- engines: {node: '>=12.13.0'}
- hasBin: true
- peerDependencies:
- postcss: ^8.0.9
- dependencies:
- arg: 5.0.2
- chokidar: 3.6.0
- color-name: 1.1.4
- detective: 5.2.1
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- is-glob: 4.0.3
- lilconfig: 2.1.0
- micromatch: 4.0.5
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.21
- postcss-import: 14.1.0(postcss@8.4.21)
- postcss-js: 4.0.1(postcss@8.4.21)
- postcss-load-config: 3.1.4(postcss@8.4.21)
- postcss-nested: 6.0.0(postcss@8.4.21)
- postcss-selector-parser: 6.0.15
- postcss-value-parser: 4.2.0
- quick-lru: 5.1.1
- resolve: 1.22.8
- transitivePeerDependencies:
- - ts-node
- dev: true
-
/tailwindcss@3.3.3:
resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
engines: {node: '>=14.0.0'}
@@ -22173,44 +21137,7 @@ packages:
/tslib@2.6.0:
resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
- /tsup@6.5.0(postcss@8.4.21)(typescript@5.4.5):
- resolution: {integrity: sha512-36u82r7rYqRHFkD15R20Cd4ercPkbYmuvRkz3Q1LCm5BsiFNUgpo36zbjVhCOgvjyxNBWNKHsaD5Rl8SykfzNA==}
- engines: {node: '>=14'}
- hasBin: true
- peerDependencies:
- '@swc/core': ^1
- postcss: ^8.4.12
- typescript: ^4.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- postcss:
- optional: true
- typescript:
- optional: true
- dependencies:
- bundle-require: 3.1.2(esbuild@0.15.18)
- cac: 6.7.14
- chokidar: 3.6.0
- debug: 4.3.4
- esbuild: 0.15.18
- execa: 5.1.1
- globby: 11.1.0
- joycon: 3.1.1
- postcss: 8.4.21
- postcss-load-config: 3.1.4(postcss@8.4.21)
- resolve-from: 5.0.0
- rollup: 3.26.2
- source-map: 0.8.0-beta.0
- sucrase: 3.35.0
- tree-kill: 1.2.2
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
- - ts-node
- dev: true
-
- /tsup@6.5.0(typescript@5.4.5):
+ /tsup@6.5.0(postcss@8.4.26)(typescript@5.4.5):
resolution: {integrity: sha512-36u82r7rYqRHFkD15R20Cd4ercPkbYmuvRkz3Q1LCm5BsiFNUgpo36zbjVhCOgvjyxNBWNKHsaD5Rl8SykfzNA==}
engines: {node: '>=14'}
hasBin: true
@@ -22234,6 +21161,7 @@ packages:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
+ postcss: 8.4.26
postcss-load-config: 3.1.4(postcss@8.4.26)
resolve-from: 5.0.0
rollup: 3.26.2
@@ -22255,23 +21183,12 @@ packages:
tslib: 1.14.1
typescript: 5.4.5
- /tsx@3.12.7:
- resolution: {integrity: sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==}
- hasBin: true
- dependencies:
- '@esbuild-kit/cjs-loader': 2.4.4
- '@esbuild-kit/core-utils': 3.3.2
- '@esbuild-kit/esm-loader': 2.6.5
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /tsx@4.7.1:
- resolution: {integrity: sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==}
+ /tsx@4.6.2:
+ resolution: {integrity: sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==}
engines: {node: '>=18.0.0'}
hasBin: true
dependencies:
- esbuild: 0.19.12
+ esbuild: 0.18.20
get-tsconfig: 4.7.3
optionalDependencies:
fsevents: 2.3.3
@@ -22439,12 +21356,6 @@ packages:
hasBin: true
dev: false
- /typescript@5.3.2:
- resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==}
- engines: {node: '>=14.17'}
- hasBin: true
- dev: true
-
/typescript@5.4.5:
resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
engines: {node: '>=14.17'}
@@ -22473,6 +21384,7 @@ packages:
/undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ dev: false
/undici@5.28.3:
resolution: {integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==}
@@ -23306,11 +22218,6 @@ packages:
resolution: {integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==}
dev: true
- /xtend@4.0.2:
- resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
- engines: {node: '>=0.4'}
- dev: true
-
/y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
dev: false