@@ -58,7 +63,7 @@ export default function About() {
/>
-
diff --git a/app/admin/settings/preferences/page.tsx b/app/admin/settings/preferences/page.tsx
index 5487f9f4..e6893c16 100644
--- a/app/admin/settings/preferences/page.tsx
+++ b/app/admin/settings/preferences/page.tsx
@@ -6,6 +6,7 @@ import { fetcher } from '~/lib/utils/fetcher'
import { toast } from 'sonner'
import { ReloadIcon } from '@radix-ui/react-icons'
import { Button } from '~/components/ui/button'
+import { Switch } from '~/components/ui/switch'
export default function Preferences() {
const [title, setTitle] = useState('')
@@ -14,10 +15,23 @@ export default function Preferences() {
const [feedId, setFeedId] = useState('')
const [userId, setUserId] = useState('')
const [loading, setLoading] = useState(false)
+ const [previewImageMaxWidth, setPreviewImageMaxWidth] = useState('0')
+ const [enablePreviewImageMaxWidthLimit, setPreviewImageMaxWidthLimitEnabled] = useState(false)
+ const [previewQualityInput, setPreviewQualityInput] = useState('0.2')
- const { data, isValidating, isLoading } = useSWR('/api/v1/settings/get-custom-info', fetcher)
+ const { data, isValidating, isLoading } = useSWR<{ config_key: string, config_value: string }[]>('/api/v1/settings/get-custom-info', fetcher)
async function updateInfo() {
+ const maxWidth = parseInt(previewImageMaxWidth)
+ if (isNaN(maxWidth) || maxWidth < 0) {
+ toast.error('预览图最大宽度限制不能小于 0')
+ return
+ }
+ const previewQuality = parseFloat(previewQualityInput)
+ if (isNaN(previewQuality) || previewQuality <= 0 || previewQuality > 1) {
+ toast.error('预览图压缩质量只支持0-1,大于0')
+ return
+ }
try {
setLoading(true)
await fetch('/api/v1/settings/update-custom-info', {
@@ -31,6 +45,9 @@ export default function Preferences() {
customAuthor: customAuthor,
feedId: feedId,
userId: userId,
+ enablePreviewImageMaxWidthLimit,
+ previewImageMaxWidth: maxWidth,
+ previewQuality,
}),
}).then(res => res.json())
toast.success('修改成功!')
@@ -42,11 +59,14 @@ export default function Preferences() {
}
useEffect(() => {
- setTitle(data?.find((item: any) => item.config_key === 'custom_title')?.config_value || '')
- setCustomFaviconUrl(data?.find((item: any) => item.config_key === 'custom_favicon_url')?.config_value || '')
- setCustomAuthor(data?.find((item: any) => item.config_key === 'custom_author')?.config_value || '')
- setFeedId(data?.find((item: any) => item.config_key === 'rss_feed_id')?.config_value || '')
- setUserId(data?.find((item: any) => item.config_key === 'rss_user_id')?.config_value || '')
+ setTitle(data?.find((item) => item.config_key === 'custom_title')?.config_value || '')
+ setCustomFaviconUrl(data?.find((item) => item.config_key === 'custom_favicon_url')?.config_value || '')
+ setCustomAuthor(data?.find((item) => item.config_key === 'custom_author')?.config_value || '')
+ setFeedId(data?.find((item) => item.config_key === 'rss_feed_id')?.config_value || '')
+ setUserId(data?.find((item) => item.config_key === 'rss_user_id')?.config_value || '')
+ setPreviewImageMaxWidth(data?.find((item) => item.config_key === 'preview_max_width_limit')?.config_value?.toString() || '0')
+ setPreviewImageMaxWidthLimitEnabled(data?.find((item) => item.config_key === 'preview_max_width_limit_switch')?.config_value === '1')
+ setPreviewQualityInput(data?.find((item) => item.config_key === 'preview_quality')?.config_value || '0.2')
}, [data])
return (
@@ -131,6 +151,55 @@ export default function Preferences() {
className="mt-1 w-full border-none p-0 focus:border-transparent focus:outline-none focus:ring-0 sm:text-sm"
/>
+
+
+
+
+
)
-}
\ No newline at end of file
+}
diff --git a/components/admin/upload/FileUpload.tsx b/components/admin/upload/FileUpload.tsx
index 631815b8..f28144e9 100644
--- a/components/admin/upload/FileUpload.tsx
+++ b/components/admin/upload/FileUpload.tsx
@@ -53,6 +53,11 @@ export default function FileUpload() {
)
const { data, isLoading } = useSWR('/api/v1/albums/get', fetcher)
+ const { data: configs } = useSWR<{ config_key: string, config_value: string }[]>('/api/v1/settings/get-custom-info', fetcher)
+
+ const previewImageMaxWidthLimitSwitchOn = configs?.find(config => config.config_key === 'preview_max_width_limit_switch')?.config_value === '1'
+ const previewImageMaxWidthLimit = parseInt(configs?.find(config => config.config_key === 'preview_max_width_limit')?.config_value || '0')
+ const previewCompressQuality = parseFloat(configs?.find(config => config.config_key === 'preview_quality')?.config_value || '0.2')
async function loadExif(file: any, outputBuffer: any, flag: boolean) {
try {
@@ -409,9 +414,10 @@ export default function FileUpload() {
async function uploadPreviewImage(option: any, type: string, url: string, flag: boolean, outputBuffer: any) {
new Compressor(flag ? outputBuffer : option.file, {
- quality: 0.2,
+ quality: previewCompressQuality,
checkOrientation: false,
mimeType: 'image/webp',
+ maxWidth: previewImageMaxWidthLimitSwitchOn && previewImageMaxWidthLimit > 0 ? previewImageMaxWidthLimit : undefined,
async success(compressedFile) {
if (compressedFile instanceof File) {
const res = await uploadFile(compressedFile, type)
@@ -492,9 +498,10 @@ export default function FileUpload() {
outputBuffer.name = fileName + '.jpg'
// @ts-ignore
new Compressor(outputBuffer, {
- quality: 0.2,
+ quality: previewCompressQuality,
checkOrientation: false,
mimeType: 'image/jpeg',
+ maxWidth: previewImageMaxWidthLimitSwitchOn && previewImageMaxWidthLimit > 0 ? previewImageMaxWidthLimit : undefined,
async success(compressedFile) {
if (compressedFile instanceof File) {
await uploadFile(compressedFile, album).then(async (res) => {
diff --git a/hono/settings.ts b/hono/settings.ts
index 7d606893..0fce31b5 100644
--- a/hono/settings.ts
+++ b/hono/settings.ts
@@ -14,7 +14,10 @@ app.get('/get-custom-info', async (c) => {
'custom_favicon_url',
'custom_author',
'rss_feed_id',
- 'rss_user_id'
+ 'rss_user_id',
+ 'preview_max_width_limit',
+ 'preview_max_width_limit_switch',
+ 'preview_quality',
]);
return c.json(data)
})
@@ -88,9 +91,18 @@ app.put('/update-s3-info', async (c) => {
})
app.put('/update-custom-info', async (c) => {
- const query = await c.req.json()
+ const query = await c.req.json() satisfies {
+ title: string
+ customFaviconUrl: string
+ customAuthor: string
+ feedId: string
+ userId: string
+ enablePreviewImageMaxWidthLimit: boolean
+ previewImageMaxWidth: number
+ previewQuality: number
+ }
try {
- await updateCustomInfo(query.title, query.customFaviconUrl, query.customAuthor, query.feedId, query.userId);
+ await updateCustomInfo(query);
return c.json({
code: 200,
message: '更新成功!'
@@ -139,4 +151,4 @@ app.put('/update-password', async (c) => {
}
})
-export default app
\ No newline at end of file
+export default app
diff --git a/instrumentation.ts b/instrumentation.ts
index 09d101ec..57fa2ac8 100644
--- a/instrumentation.ts
+++ b/instrumentation.ts
@@ -43,6 +43,9 @@ export async function register() {
{ config_key: 'custom_author', config_value: '', detail: '网站归属者名称' },
{ config_key: 'rss_feed_id', config_value: '', detail: 'Follow feedId' },
{ config_key: 'rss_user_id', config_value: '', detail: 'Follow userId' },
+ { config_key: 'preview_max_width_limit', config_value: '0', detail: '预览图最大宽度限制' },
+ { config_key: 'preview_max_width_limit_switch', config_value: '0', detail: '预览图最大宽度限制开关' },
+ { config_key: 'preview_quality', config_value: '0.2', detail: '预览图压缩质量' },
],
skipDuplicates: true,
})
@@ -60,4 +63,4 @@ export async function register() {
} catch (e) {
console.error('初始化失败,请您先尝试排查问题,如无法解决请携带日志去提交反馈:https://github.com/besscroft/PicImpact/issues', e)
}
-}
\ No newline at end of file
+}
diff --git a/next-env.d.ts b/next-env.d.ts
index 1b3be084..40c3d680 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
+// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
diff --git a/package.json b/package.json
index 7fd9946e..cf868fd3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "picimpact",
- "version": "2.0.5",
+ "version": "2.0.6",
"private": true,
"author": "Bess Croft
",
"packageManager": "pnpm@9.7.1",
@@ -20,11 +20,11 @@
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.1",
- "@auth/prisma-adapter": "^2.7.2",
- "@aws-sdk/client-s3": "^3.679.0",
- "@hono/node-server": "^1.13.3",
+ "@auth/prisma-adapter": "^2.7.4",
+ "@aws-sdk/client-s3": "^3.705.0",
+ "@hono/node-server": "^1.13.7",
"@hookform/resolvers": "^3.9.1",
- "@prisma/client": "^5.21.1",
+ "@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
@@ -41,56 +41,56 @@
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
- "antd": "^5.21.6",
- "class-variance-authority": "^0.7.0",
+ "antd": "^5.22.3",
+ "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
- "cmdk": "1.0.0",
+ "cmdk": "1.0.4",
"compressorjs": "^1.2.1",
"crypto-js": "^4.2.0",
"cuid": "^3.0.0",
"dayjs": "^1.11.13",
- "emblor": "^1.4.6",
+ "emblor": "^1.4.7",
"exifreader": "^4.25.0",
- "framer-motion": "^11.11.17",
+ "framer-motion": "^11.13.1",
"heic2any": "^0.0.4",
- "hono": "^4.6.11",
- "input-otp": "^1.2.4",
+ "hono": "^4.6.13",
+ "input-otp": "^1.4.1",
"livephotoskit": "^1.5.6",
- "lucide-react": "^0.454.0",
- "next": "^15.0.4-canary.5",
+ "lucide-react": "^0.468.0",
+ "next": "^15.0.4",
"next-auth": "^5.0.0-beta.25",
- "next-nprogress-bar": "^2.3.14",
+ "next-nprogress-bar": "^2.3.15",
"next-qrcode": "^2.5.1",
- "next-themes": "^0.3.0",
- "otpauth": "^9.3.4",
- "react": "19.0.0-rc-5c56b873-20241107",
- "react-dom": "19.0.0-rc-5c56b873-20241107",
- "react-hook-form": "^7.53.1",
+ "next-themes": "^0.4.4",
+ "otpauth": "^9.3.5",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-hook-form": "^7.54.0",
"react-photo-album": "^3.0.2",
"rss": "^1.2.2",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
- "sonner": "^1.5.0",
+ "sonner": "^1.7.1",
"swr": "^2.2.5",
- "tailwind-merge": "^2.5.4",
+ "tailwind-merge": "^2.5.5",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
- "vaul": "^1.1.0",
+ "vaul": "^1.1.1",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
- "@types/node": "^20.17.1",
- "@types/react": "^18.3.12",
- "@types/react-dom": "^18.3.1",
+ "@types/node": "^20.17.9",
+ "@types/react": "^19.0.1",
+ "@types/react-dom": "^19.0.1",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
- "eslint-config-next": "^15.0.3",
- "postcss": "^8.4.47",
- "prisma": "^5.21.1",
- "tailwindcss": "^3.4.14",
- "typescript": "^5.6.3"
+ "eslint-config-next": "^15.0.4",
+ "postcss": "^8.4.49",
+ "prisma": "^5.22.0",
+ "tailwindcss": "^3.4.16",
+ "typescript": "^5.7.2"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 20e2dbdb..58b6465b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,82 +10,82 @@ importers:
dependencies:
'@ant-design/nextjs-registry':
specifier: ^1.0.1
- version: 1.0.1(@ant-design/cssinjs@1.21.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(antd@5.21.6(date-fns@3.6.0)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(next@15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.0.1(@ant-design/cssinjs@1.21.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(antd@5.22.3(date-fns@3.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(next@15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@auth/prisma-adapter':
- specifier: ^2.7.2
- version: 2.7.2(@prisma/client@5.21.1(prisma@5.21.1))
+ specifier: ^2.7.4
+ version: 2.7.4(@prisma/client@5.22.0(prisma@5.22.0))
'@aws-sdk/client-s3':
- specifier: ^3.679.0
- version: 3.679.0
+ specifier: ^3.705.0
+ version: 3.705.0
'@hono/node-server':
- specifier: ^1.13.3
- version: 1.13.3(hono@4.6.11)
+ specifier: ^1.13.7
+ version: 1.13.7(hono@4.6.13)
'@hookform/resolvers':
specifier: ^3.9.1
- version: 3.9.1(react-hook-form@7.53.1(react@19.0.0-rc-5c56b873-20241107))
+ version: 3.9.1(react-hook-form@7.54.0(react@19.0.0))
'@prisma/client':
- specifier: ^5.21.1
- version: 5.21.1(prisma@5.21.1)
+ specifier: ^5.22.0
+ version: 5.22.0(prisma@5.22.0)
'@radix-ui/react-alert-dialog':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-avatar':
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-checkbox':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-collapsible':
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-dialog':
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.1
- version: 2.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-icons':
specifier: ^1.3.0
- version: 1.3.0(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.3.0(react@19.0.0)
'@radix-ui/react-label':
specifier: ^2.1.0
- version: 2.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 2.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-popover':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-progress':
specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-select':
specifier: ^2.1.1
- version: 2.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-separator':
specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-slot':
specifier: ^1.1.0
- version: 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.0(@types/react@19.0.1)(react@19.0.0)
'@radix-ui/react-switch':
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-tabs':
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@radix-ui/react-tooltip':
specifier: ^1.1.3
- version: 1.1.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
antd:
- specifier: ^5.21.6
- version: 5.21.6(date-fns@3.6.0)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^5.22.3
+ version: 5.22.3(date-fns@3.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
class-variance-authority:
- specifier: ^0.7.0
- version: 0.7.0
+ specifier: ^0.7.1
+ version: 0.7.1
clsx:
specifier: ^2.1.1
version: 2.1.1
cmdk:
- specifier: 1.0.0
- version: 1.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: 1.0.4
+ version: 1.0.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
compressorjs:
specifier: ^1.2.1
version: 1.2.1
@@ -99,59 +99,59 @@ importers:
specifier: ^1.11.13
version: 1.11.13
emblor:
- specifier: ^1.4.6
- version: 1.4.6(@types/react-dom@18.3.1)(@types/react@18.3.12)(postcss@8.4.47)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)(typescript@5.6.3)
+ specifier: ^1.4.7
+ version: 1.4.7(@types/react-dom@19.0.1)(@types/react@19.0.1)(postcss@8.4.49)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2)
exifreader:
specifier: ^4.25.0
version: 4.25.0
framer-motion:
- specifier: ^11.11.17
- version: 11.11.17(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^11.13.1
+ version: 11.13.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
heic2any:
specifier: ^0.0.4
version: 0.0.4
hono:
- specifier: ^4.6.11
- version: 4.6.11
+ specifier: ^4.6.13
+ version: 4.6.13
input-otp:
- specifier: ^1.2.4
- version: 1.2.4(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^1.4.1
+ version: 1.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
livephotoskit:
specifier: ^1.5.6
version: 1.5.6
lucide-react:
- specifier: ^0.454.0
- version: 0.454.0(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^0.468.0
+ version: 0.468.0(react@19.0.0)
next:
- specifier: ^15.0.4-canary.5
- version: 15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^15.0.4
+ version: 15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
next-auth:
specifier: ^5.0.0-beta.25
- version: 5.0.0-beta.25(next@15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ version: 5.0.0-beta.25(next@15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)
next-nprogress-bar:
- specifier: ^2.3.14
- version: 2.3.14
+ specifier: ^2.3.15
+ version: 2.3.15
next-qrcode:
specifier: ^2.5.1
- version: 2.5.1(react@19.0.0-rc-5c56b873-20241107)
+ version: 2.5.1(react@19.0.0)
next-themes:
- specifier: ^0.3.0
- version: 0.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^0.4.4
+ version: 0.4.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
otpauth:
- specifier: ^9.3.4
- version: 9.3.4
+ specifier: ^9.3.5
+ version: 9.3.5
react:
- specifier: 19.0.0-rc-5c56b873-20241107
- version: 19.0.0-rc-5c56b873-20241107
+ specifier: ^19.0.0
+ version: 19.0.0
react-dom:
- specifier: 19.0.0-rc-5c56b873-20241107
- version: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^19.0.0
+ version: 19.0.0(react@19.0.0)
react-hook-form:
- specifier: ^7.53.1
- version: 7.53.1(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^7.54.0
+ version: 7.54.0(react@19.0.0)
react-photo-album:
specifier: ^3.0.2
- version: 3.0.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ version: 3.0.2(@types/react@19.0.1)(react@19.0.0)
rss:
specifier: ^1.2.2
version: 1.2.2
@@ -162,66 +162,66 @@ importers:
specifier: ^0.33.5
version: 0.33.5
sonner:
- specifier: ^1.5.0
- version: 1.5.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^1.7.1
+ version: 1.7.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
swr:
specifier: ^2.2.5
- version: 2.2.5(react@19.0.0-rc-5c56b873-20241107)
+ version: 2.2.5(react@19.0.0)
tailwind-merge:
- specifier: ^2.5.4
- version: 2.5.4
+ specifier: ^2.5.5
+ version: 2.5.5
tailwind-scrollbar-hide:
specifier: ^1.1.7
version: 1.1.7
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.14)
+ version: 1.0.7(tailwindcss@3.4.16)
vaul:
- specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ specifier: ^1.1.1
+ version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
zod:
specifier: ^3.23.8
version: 3.23.8
zustand:
specifier: ^4.5.5
- version: 4.5.5(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ version: 4.5.5(@types/react@19.0.1)(react@19.0.0)
devDependencies:
'@types/crypto-js':
specifier: ^4.2.2
version: 4.2.2
'@types/node':
- specifier: ^20.17.1
- version: 20.17.1
+ specifier: ^20.17.9
+ version: 20.17.9
'@types/react':
- specifier: ^18.3.12
- version: 18.3.12
+ specifier: ^19.0.1
+ version: 19.0.1
'@types/react-dom':
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: ^19.0.1
+ version: 19.0.1
'@types/rss':
specifier: ^0.0.32
version: 0.0.32
autoprefixer:
specifier: ^10.4.20
- version: 10.4.20(postcss@8.4.47)
+ version: 10.4.20(postcss@8.4.49)
eslint:
specifier: ^8.57.1
version: 8.57.1
eslint-config-next:
- specifier: ^15.0.3
- version: 15.0.3(eslint@8.57.1)(typescript@5.6.3)
+ specifier: ^15.0.4
+ version: 15.0.4(eslint@8.57.1)(typescript@5.7.2)
postcss:
- specifier: ^8.4.47
- version: 8.4.47
+ specifier: ^8.4.49
+ version: 8.4.49
prisma:
- specifier: ^5.21.1
- version: 5.21.1
+ specifier: ^5.22.0
+ version: 5.22.0
tailwindcss:
- specifier: ^3.4.14
- version: 3.4.14
+ specifier: ^3.4.16
+ version: 3.4.16
typescript:
- specifier: ^5.6.3
- version: 5.6.3
+ specifier: ^5.7.2
+ version: 5.7.2
packages:
@@ -251,8 +251,8 @@ packages:
'@ant-design/icons-svg@4.4.2':
resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==}
- '@ant-design/icons@5.5.1':
- resolution: {integrity: sha512-0UrM02MA2iDIgvLatWrj6YTCYe0F/cwXvVE0E2SqGrL7PZireQwgEKTKBisWpZyal5eXZLvuM98kju6YtYne8w==}
+ '@ant-design/icons@5.5.2':
+ resolution: {integrity: sha512-xc53rjVBl9v2BqFxUjZGti/RfdDeA8/6KYglmInM2PNqSXc/WfuGDTifJI/ZsokJK0aeKvOIbXc9y2g8ILAhEA==}
engines: {node: '>=8'}
peerDependencies:
react: '>=16.0.0'
@@ -286,8 +286,22 @@ packages:
nodemailer:
optional: true
- '@auth/prisma-adapter@2.7.2':
- resolution: {integrity: sha512-orznIVt6aQMoJ4/rfWFSpRPU8LoZn6jVtDuEkZgLud2xSnCalq6x+hX+rqlk4E5LM13NW1GIJojOPQnM4aM4Gw==}
+ '@auth/core@0.37.4':
+ resolution: {integrity: sha512-HOXJwXWXQRhbBDHlMU0K/6FT1v+wjtzdKhsNg0ZN7/gne6XPsIrjZ4daMcFnbq0Z/vsAbYBinQhhua0d77v7qw==}
+ peerDependencies:
+ '@simplewebauthn/browser': ^9.0.1
+ '@simplewebauthn/server': ^9.0.2
+ nodemailer: ^6.8.0
+ peerDependenciesMeta:
+ '@simplewebauthn/browser':
+ optional: true
+ '@simplewebauthn/server':
+ optional: true
+ nodemailer:
+ optional: true
+
+ '@auth/prisma-adapter@2.7.4':
+ resolution: {integrity: sha512-3T/X94R9J1sxOLQtsD3ijIZ0JGHPXlZQxRr/8NpnZBJ3KGxun/mNsZ1MwMRhTxy0mmn9JWXk7u9+xCcVn0pu3A==}
peerDependencies:
'@prisma/client': '>=2.26.0 || >=3 || >=4 || >=5'
@@ -314,135 +328,135 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-s3@3.679.0':
- resolution: {integrity: sha512-P93tUbJXiDtSPgBfFpnjaijLV38hyPlE3g0XybsPTmSYNV6A9Jt1TUIF6vX+o6LdFuq3FerCiagUjhfDANWkAw==}
+ '@aws-sdk/client-s3@3.705.0':
+ resolution: {integrity: sha512-Fm0Cbc4zr0yG0DnNycz7ywlL5tQFdLSb7xCIPfzrxJb3YQiTXWxH5eu61SSsP/Z6RBNRolmRPvst/iNgX0fWvA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/client-sso-oidc@3.679.0':
- resolution: {integrity: sha512-/dBYWcCwbA/id4sFCIVZvf0UsvzHCC68SryxeNQk/PDkY9N4n5yRcMUkZDaEyQCjowc3kY4JOXp2AdUP037nhA==}
+ '@aws-sdk/client-sso-oidc@3.699.0':
+ resolution: {integrity: sha512-u8a1GorY5D1l+4FQAf4XBUC1T10/t7neuwT21r0ymrtMFSK2a9QqVHKMoLkvavAwyhJnARSBM9/UQC797PFOFw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.679.0
+ '@aws-sdk/client-sts': ^3.699.0
- '@aws-sdk/client-sso@3.679.0':
- resolution: {integrity: sha512-/0cAvYnpOZTo/Y961F1kx2fhDDLUYZ0SQQ5/75gh3xVImLj7Zw+vp74ieqFbqWLYGMaq8z1Arr9A8zG95mbLdg==}
+ '@aws-sdk/client-sso@3.696.0':
+ resolution: {integrity: sha512-q5TTkd08JS0DOkHfUL853tuArf7NrPeqoS5UOvqJho8ibV9Ak/a/HO4kNvy9Nj3cib/toHYHsQIEtecUPSUUrQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/client-sts@3.679.0':
- resolution: {integrity: sha512-3CvrT8w1RjFu1g8vKA5Azfr5V83r2/b68Ock43WE003Bq/5Y38mwmYX7vk0fPHzC3qejt4YMAWk/C3fSKOy25g==}
+ '@aws-sdk/client-sts@3.699.0':
+ resolution: {integrity: sha512-++lsn4x2YXsZPIzFVwv3fSUVM55ZT0WRFmPeNilYIhZClxHLmVAWKH4I55cY9ry60/aTKYjzOXkWwyBKGsGvQg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/core@3.679.0':
- resolution: {integrity: sha512-CS6PWGX8l4v/xyvX8RtXnBisdCa5+URzKd0L6GvHChype9qKUVxO/Gg6N/y43Hvg7MNWJt9FBPNWIxUB+byJwg==}
+ '@aws-sdk/core@3.696.0':
+ resolution: {integrity: sha512-3c9III1k03DgvRZWg8vhVmfIXPG6hAciN9MzQTzqGngzWAELZF/WONRTRQuDFixVtarQatmLHYVw/atGeA2Byw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-env@3.679.0':
- resolution: {integrity: sha512-EdlTYbzMm3G7VUNAMxr9S1nC1qUNqhKlAxFU8E7cKsAe8Bp29CD5HAs3POc56AVo9GC4yRIS+/mtlZSmrckzUA==}
+ '@aws-sdk/credential-provider-env@3.696.0':
+ resolution: {integrity: sha512-T9iMFnJL7YTlESLpVFT3fg1Lkb1lD+oiaIC8KMpepb01gDUBIpj9+Y+pA/cgRWW0yRxmkDXNazAE2qQTVFGJzA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-http@3.679.0':
- resolution: {integrity: sha512-ZoKLubW5DqqV1/2a3TSn+9sSKg0T8SsYMt1JeirnuLJF0mCoYFUaWMyvxxKuxPoqvUsaycxKru4GkpJ10ltNBw==}
+ '@aws-sdk/credential-provider-http@3.696.0':
+ resolution: {integrity: sha512-GV6EbvPi2eq1+WgY/o2RFA3P7HGmnkIzCNmhwtALFlqMroLYWKE7PSeHw66Uh1dFQeVESn0/+hiUNhu1mB0emA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-ini@3.679.0':
- resolution: {integrity: sha512-Rg7t8RwUzKcumpipG4neZqaeJ6DF+Bco1+FHn5BZB68jpvwvjBjcQUuWkxj18B6ctYHr1fkunnzeKEn/+vy7+w==}
+ '@aws-sdk/credential-provider-ini@3.699.0':
+ resolution: {integrity: sha512-dXmCqjJnKmG37Q+nLjPVu22mNkrGHY8hYoOt3Jo9R2zr5MYV7s/NHsCHr+7E+BZ+tfZYLRPeB1wkpTeHiEcdRw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.679.0
+ '@aws-sdk/client-sts': ^3.699.0
- '@aws-sdk/credential-provider-node@3.679.0':
- resolution: {integrity: sha512-E3lBtaqCte8tWs6Rkssc8sLzvGoJ10TLGvpkijOlz43wPd6xCRh1YLwg6zolf9fVFtEyUs/GsgymiASOyxhFtw==}
+ '@aws-sdk/credential-provider-node@3.699.0':
+ resolution: {integrity: sha512-MmEmNDo1bBtTgRmdNfdQksXu4uXe66s0p1hi1YPrn1h59Q605eq/xiWbGL6/3KdkViH6eGUuABeV2ODld86ylg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-process@3.679.0':
- resolution: {integrity: sha512-u/p4TV8kQ0zJWDdZD4+vdQFTMhkDEJFws040Gm113VHa/Xo1SYOjbpvqeuFoz6VmM0bLvoOWjxB9MxnSQbwKpQ==}
+ '@aws-sdk/credential-provider-process@3.696.0':
+ resolution: {integrity: sha512-mL1RcFDe9sfmyU5K1nuFkO8UiJXXxLX4JO1gVaDIOvPqwStpUAwi3A1BoeZhWZZNQsiKI810RnYGo0E0WB/hUA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-sso@3.679.0':
- resolution: {integrity: sha512-SAtWonhi9asxn0ukEbcE81jkyanKgqpsrtskvYPpO9Z9KOednM4Cqt6h1bfcS9zaHjN2zu815Gv8O7WiV+F/DQ==}
+ '@aws-sdk/credential-provider-sso@3.699.0':
+ resolution: {integrity: sha512-Ekp2cZG4pl9D8+uKWm4qO1xcm8/MeiI8f+dnlZm8aQzizeC+aXYy9GyoclSf6daK8KfRPiRfM7ZHBBL5dAfdMA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.679.0':
- resolution: {integrity: sha512-a74tLccVznXCaBefWPSysUcLXYJiSkeUmQGtalNgJ1vGkE36W5l/8czFiiowdWdKWz7+x6xf0w+Kjkjlj42Ung==}
+ '@aws-sdk/credential-provider-web-identity@3.696.0':
+ resolution: {integrity: sha512-XJ/CVlWChM0VCoc259vWguFUjJDn/QwDqHwbx+K9cg3v6yrqXfK5ai+p/6lx0nQpnk4JzPVeYYxWRpaTsGC9rg==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.679.0
+ '@aws-sdk/client-sts': ^3.696.0
- '@aws-sdk/middleware-bucket-endpoint@3.679.0':
- resolution: {integrity: sha512-5EpiPhhGgnF+uJR4DzWUk6Lx3pOn9oM6JGXxeHsiynfoBfq7vHMleq+uABHHSQS+y7XzbyZ7x8tXNQlliMwOsg==}
+ '@aws-sdk/middleware-bucket-endpoint@3.696.0':
+ resolution: {integrity: sha512-V07jishKHUS5heRNGFpCWCSTjRJyQLynS/ncUeE8ZYtG66StOOQWftTwDfFOSoXlIqrXgb4oT9atryzXq7Z4LQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-expect-continue@3.679.0':
- resolution: {integrity: sha512-nYsh9PdWrF4EahTRdXHGlNud82RPc508CNGdh1lAGfPU3tNveGfMBX3PcGBtPOse3p9ebNKRWVmUc9eXSjGvHA==}
+ '@aws-sdk/middleware-expect-continue@3.696.0':
+ resolution: {integrity: sha512-vpVukqY3U2pb+ULeX0shs6L0aadNep6kKzjme/MyulPjtUDJpD3AekHsXRrCCGLmOqSKqRgQn5zhV9pQhHsb6Q==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-flexible-checksums@3.679.0':
- resolution: {integrity: sha512-2Nf3rnrcog3GRRdXxc623wkQPH3WXhz8oZ+KHuXBeBKX01zbp7bz22QAZKqw3Oo2lv+LQNEDzIfQYn7leXLZGQ==}
+ '@aws-sdk/middleware-flexible-checksums@3.701.0':
+ resolution: {integrity: sha512-adNaPCyTT+CiVM0ufDiO1Fe7nlRmJdI9Hcgj0M9S6zR7Dw70Ra5z8Lslkd7syAccYvZaqxLklGjPQH/7GNxwTA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-host-header@3.679.0':
- resolution: {integrity: sha512-y176HuQ8JRY3hGX8rQzHDSbCl9P5Ny9l16z4xmaiLo+Qfte7ee4Yr3yaAKd7GFoJ3/Mhud2XZ37fR015MfYl2w==}
+ '@aws-sdk/middleware-host-header@3.696.0':
+ resolution: {integrity: sha512-zELJp9Ta2zkX7ELggMN9qMCgekqZhFC5V2rOr4hJDEb/Tte7gpfKSObAnw/3AYiVqt36sjHKfdkoTsuwGdEoDg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-location-constraint@3.679.0':
- resolution: {integrity: sha512-SA1C1D3XgoKTGxyNsOqd016ONpk46xJLWDgJUd00Zb21Ox5wYCoY6aDRKiaMRW+1VfCJdezs1Do3XLyIU9KxyA==}
+ '@aws-sdk/middleware-location-constraint@3.696.0':
+ resolution: {integrity: sha512-FgH12OB0q+DtTrP2aiDBddDKwL4BPOrm7w3VV9BJrSdkqQCNBPz8S1lb0y5eVH4tBG+2j7gKPlOv1wde4jF/iw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-logger@3.679.0':
- resolution: {integrity: sha512-0vet8InEj7nvIvGKk+ch7bEF5SyZ7Us9U7YTEgXPrBNStKeRUsgwRm0ijPWWd0a3oz2okaEwXsFl7G/vI0XiEA==}
+ '@aws-sdk/middleware-logger@3.696.0':
+ resolution: {integrity: sha512-KhkHt+8AjCxcR/5Zp3++YPJPpFQzxpr+jmONiT/Jw2yqnSngZ0Yspm5wGoRx2hS1HJbyZNuaOWEGuJoxLeBKfA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.679.0':
- resolution: {integrity: sha512-sQoAZFsQiW/LL3DfKMYwBoGjYDEnMbA9WslWN8xneCmBAwKo6IcSksvYs23PP8XMIoBGe2I2J9BSr654XWygTQ==}
+ '@aws-sdk/middleware-recursion-detection@3.696.0':
+ resolution: {integrity: sha512-si/maV3Z0hH7qa99f9ru2xpS5HlfSVcasRlNUXKSDm611i7jFMWwGNLUOXFAOLhXotPX5G3Z6BLwL34oDeBMug==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-sdk-s3@3.679.0':
- resolution: {integrity: sha512-4zcT193F7RkEfqlS6ZdwyNQ0UUp9s66msNXgItugasTbjf7oqfWDas7N+BG8ADB/Ql3wvRUh9I+zdrVkxxw3BQ==}
+ '@aws-sdk/middleware-sdk-s3@3.696.0':
+ resolution: {integrity: sha512-M7fEiAiN7DBMHflzOFzh1I2MNSlLpbiH2ubs87bdRc2wZsDPSbs4l3v6h3WLhxoQK0bq6vcfroudrLBgvCuX3Q==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-ssec@3.679.0':
- resolution: {integrity: sha512-4GNUxXbs1M71uFHRiCAZtN0/g23ogI9YjMe5isAuYMHXwDB3MhqF7usKf954mBP6tplvN44vYlbJ84faaLrTtg==}
+ '@aws-sdk/middleware-ssec@3.696.0':
+ resolution: {integrity: sha512-w/d6O7AOZ7Pg3w2d3BxnX5RmGNWb5X4RNxF19rJqcgu/xqxxE/QwZTNd5a7eTsqLXAUIfbbR8hh0czVfC1pJLA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-user-agent@3.679.0':
- resolution: {integrity: sha512-4hdeXhPDURPqQLPd9jCpUEo9fQITXl3NM3W1MwcJpE0gdUM36uXkQOYsTPeeU/IRCLVjK8Htlh2oCaM9iJrLCA==}
+ '@aws-sdk/middleware-user-agent@3.696.0':
+ resolution: {integrity: sha512-Lvyj8CTyxrHI6GHd2YVZKIRI5Fmnugt3cpJo0VrKKEgK5zMySwEZ1n4dqPK6czYRWKd5+WnYHYAuU+Wdk6Jsjw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/region-config-resolver@3.679.0':
- resolution: {integrity: sha512-Ybx54P8Tg6KKq5ck7uwdjiKif7n/8g1x+V0V9uTjBjRWqaIgiqzXwKWoPj6NCNkE7tJNtqI4JrNxp/3S3HvmRw==}
+ '@aws-sdk/region-config-resolver@3.696.0':
+ resolution: {integrity: sha512-7EuH142lBXjI8yH6dVS/CZeiK/WZsmb/8zP6bQbVYpMrppSTgB3MzZZdxVZGzL5r8zPQOU10wLC4kIMy0qdBVQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.679.0':
- resolution: {integrity: sha512-g1D57e7YBhgXihCWIRBcTUvKquS3FS27xuA24EynY9teiTIq7vHkASxxDnMMMcmKHnCKLI5pkznjk0PuDJ4uJw==}
+ '@aws-sdk/signature-v4-multi-region@3.696.0':
+ resolution: {integrity: sha512-ijPkoLjXuPtgxAYlDoYls8UaG/VKigROn9ebbvPL/orEY5umedd3iZTcS9T+uAf4Ur3GELLxMQiERZpfDKaz3g==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/token-providers@3.679.0':
- resolution: {integrity: sha512-1/+Zso/x2jqgutKixYFQEGli0FELTgah6bm7aB+m2FAWH4Hz7+iMUsazg6nSWm714sG9G3h5u42Dmpvi9X6/hA==}
+ '@aws-sdk/token-providers@3.699.0':
+ resolution: {integrity: sha512-kuiEW9DWs7fNos/SM+y58HCPhcIzm1nEZLhe2/7/6+TvAYLuEWURYsbK48gzsxXlaJ2k/jGY3nIsA7RptbMOwA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sso-oidc': ^3.679.0
+ '@aws-sdk/client-sso-oidc': ^3.699.0
- '@aws-sdk/types@3.679.0':
- resolution: {integrity: sha512-NwVq8YvInxQdJ47+zz4fH3BRRLC6lL+WLkvr242PVBbUOLRyK/lkwHlfiKUoeVIMyK5NF+up6TRg71t/8Bny6Q==}
+ '@aws-sdk/types@3.696.0':
+ resolution: {integrity: sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-arn-parser@3.679.0':
- resolution: {integrity: sha512-CwzEbU8R8rq9bqUFryO50RFBlkfufV9UfMArHPWlo+lmsC+NlSluHQALoj6Jkq3zf5ppn1CN0c1DDLrEqdQUXg==}
+ '@aws-sdk/util-arn-parser@3.693.0':
+ resolution: {integrity: sha512-WC8x6ca+NRrtpAH64rWu+ryDZI3HuLwlEr8EU6/dbC/pt+r/zC0PBoC15VEygUaBA+isppCikQpGyEDu0Yj7gQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-endpoints@3.679.0':
- resolution: {integrity: sha512-YL6s4Y/1zC45OvddvgE139fjeWSKKPgLlnfrvhVL7alNyY9n7beR4uhoDpNrt5mI6sn9qiBF17790o+xLAXjjg==}
+ '@aws-sdk/util-endpoints@3.696.0':
+ resolution: {integrity: sha512-T5s0IlBVX+gkb9g/I6CLt4yAZVzMSiGnbUqWihWsHvQR1WOoIcndQy/Oz/IJXT9T2ipoy7a80gzV6a5mglrioA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-locate-window@3.568.0':
resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-user-agent-browser@3.679.0':
- resolution: {integrity: sha512-CusSm2bTBG1kFypcsqU8COhnYc6zltobsqs3nRrvYqYaOqtMnuE46K4XTWpnzKgwDejgZGOE+WYyprtAxrPvmQ==}
+ '@aws-sdk/util-user-agent-browser@3.696.0':
+ resolution: {integrity: sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==}
- '@aws-sdk/util-user-agent-node@3.679.0':
- resolution: {integrity: sha512-Bw4uXZ+NU5ed6TNfo4tBbhBSW+2eQxXYjYBGl5gLUNUpg2pDFToQAP6rXBFiwcG52V2ny5oLGiD82SoYuYkAVg==}
+ '@aws-sdk/util-user-agent-node@3.696.0':
+ resolution: {integrity: sha512-KhKqcfyXIB0SCCt+qsu4eJjsfiOrNzK5dCV7RAW2YIpp+msxGUUX0NdRE9rkzjiv+3EMktgJm3eEIS+yxtlVdQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -450,18 +464,18 @@ packages:
aws-crt:
optional: true
- '@aws-sdk/xml-builder@3.679.0':
- resolution: {integrity: sha512-nPmhVZb39ty5bcQ7mAwtjezBcsBqTYZ9A2D9v/lE92KCLdu5RhSkPH7O71ZqbZx1mUSg9fAOxHPiG79U5VlpLQ==}
+ '@aws-sdk/xml-builder@3.696.0':
+ resolution: {integrity: sha512-dn1mX+EeqivoLYnY7p2qLrir0waPnCgS/0YdRCAVU2x14FgfUYCH6Im3w3oi2dMwhxfKY5lYVB5NKvZu7uI9lQ==}
engines: {node: '>=16.0.0'}
- '@babel/runtime@7.25.0':
- resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.25.6':
resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
+ engines: {node: '>=6.9.0'}
+
'@ctrl/tinycolor@3.6.1':
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
@@ -640,8 +654,8 @@ packages:
'@floating-ui/utils@0.2.7':
resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==}
- '@hono/node-server@1.13.3':
- resolution: {integrity: sha512-tEo3hcyQ6chvSnJ3tKzfX4z2sd7Q+ZkBwwBdW1Ya8Mz29dukxC2xcWiB/lAMwGJrYMW8QTgknIsLu1AsnMBe7A==}
+ '@hono/node-server@1.13.7':
+ resolution: {integrity: sha512-kTfUMsoloVKtRA2fLiGSd9qBddmru9KadNyhJCwgKBxTiNkaAJEwkVN9KV/rS4HtmmNRtUh6P+YpmjRMl0d9vQ==}
engines: {node: '>=18.14.1'}
peerDependencies:
hono: ^4
@@ -803,60 +817,60 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@next/env@15.0.4-canary.5':
- resolution: {integrity: sha512-wVj9Gsa2Jlncxp6R74cF7NX7fbb+iuXigg0sPEcfcOTdVYOPNte/Zshyaw6bQf6gF6Jnal0Lx5kAC5i/sN4yOw==}
+ '@next/env@15.0.4':
+ resolution: {integrity: sha512-WNRvtgnRVDD4oM8gbUcRc27IAhaL4eXQ/2ovGbgLnPGUvdyDr8UdXP4Q/IBDdAdojnD2eScryIDirv0YUCjUVw==}
- '@next/eslint-plugin-next@15.0.3':
- resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==}
+ '@next/eslint-plugin-next@15.0.4':
+ resolution: {integrity: sha512-rbsF17XGzHtR7SDWzWpavSfum3/UdnF8bAaisnKwP//si3KWPTedVUsflAdjyK1zW3rweBjbALfKcavFneLGvg==}
- '@next/swc-darwin-arm64@15.0.4-canary.5':
- resolution: {integrity: sha512-9N6FZd6Cik7+08cT2GDON5l148wqvauw7u75iixqZ1Tz8BBHT70qCbDJGonWGM60PphgDNqBxCXGuJSTBjQHow==}
+ '@next/swc-darwin-arm64@15.0.4':
+ resolution: {integrity: sha512-QecQXPD0yRHxSXWL5Ff80nD+A56sUXZG9koUsjWJwA2Z0ZgVQfuy7gd0/otjxoOovPVHR2eVEvPMHbtZP+pf9w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@15.0.4-canary.5':
- resolution: {integrity: sha512-Rox0ihBOKV1Er7AGZj+q/WhNemobEsXMTwrwyELza9VoAoOBH6XJXD+/KSCTXKcWLont+xiJK7gxsZkc+rYR+w==}
+ '@next/swc-darwin-x64@15.0.4':
+ resolution: {integrity: sha512-pb7Bye3y1Og3PlCtnz2oO4z+/b3pH2/HSYkLbL0hbVuTGil7fPen8/3pyyLjdiTLcFJ+ymeU3bck5hd4IPFFCA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@15.0.4-canary.5':
- resolution: {integrity: sha512-S+BjJl3lLEsiuMadXXHWgzL3A/RYXiv8Ngx2IbmWrCVIEGBfnXWJcbGFVN4PwPUiLK8Ymdg0mqgybOSUcHG4Ng==}
+ '@next/swc-linux-arm64-gnu@15.0.4':
+ resolution: {integrity: sha512-12oSaBFjGpB227VHzoXF3gJoK2SlVGmFJMaBJSu5rbpaoT5OjP5OuCLuR9/jnyBF1BAWMs/boa6mLMoJPRriMA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-arm64-musl@15.0.4-canary.5':
- resolution: {integrity: sha512-OMt5j/zVueGy4vr2nYvsApjedt5vcDOnQ3V5s96jrpvNnSgPknmLYe5nZo7EXpnEnIWqNr7KqqwQuVvXoqUr1w==}
+ '@next/swc-linux-arm64-musl@15.0.4':
+ resolution: {integrity: sha512-QARO88fR/a+wg+OFC3dGytJVVviiYFEyjc/Zzkjn/HevUuJ7qGUUAUYy5PGVWY1YgTzeRYz78akQrVQ8r+sMjw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@next/swc-linux-x64-gnu@15.0.4-canary.5':
- resolution: {integrity: sha512-/2wQvZHDYfL4xqp5ltl6eHLr3tlj587WwpVtqZjGMJ2grihGMb9CrK5MxUXqgzxUBTjMRR2OtRuJo9A6rPvm8Q==}
+ '@next/swc-linux-x64-gnu@15.0.4':
+ resolution: {integrity: sha512-Z50b0gvYiUU1vLzfAMiChV8Y+6u/T2mdfpXPHraqpypP7yIT2UV9YBBhcwYkxujmCvGEcRTVWOj3EP7XW/wUnw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-x64-musl@15.0.4-canary.5':
- resolution: {integrity: sha512-dncDPb0cAnNHxBiI5Yon9zm3Aw83fZJybekQeA6b5P+YNR69IZnRYmpDUxgfwNPUyV5fh2kqEAAFH4ZmlQSmCw==}
+ '@next/swc-linux-x64-musl@15.0.4':
+ resolution: {integrity: sha512-7H9C4FAsrTAbA/ENzvFWsVytqRYhaJYKa2B3fyQcv96TkOGVMcvyS6s+sj4jZlacxxTcn7ygaMXUPkEk7b78zw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@next/swc-win32-arm64-msvc@15.0.4-canary.5':
- resolution: {integrity: sha512-WtTJ2PuzLPkq4PTWik6ZK+jdY2SDpkIXkRwnB9K501GS7f5wvl/OExO81r+StwlKnFjHBq5MSsPVNAJfIKjdnw==}
+ '@next/swc-win32-arm64-msvc@15.0.4':
+ resolution: {integrity: sha512-Z/v3WV5xRaeWlgJzN9r4PydWD8sXV35ywc28W63i37G2jnUgScA4OOgS8hQdiXLxE3gqfSuHTicUhr7931OXPQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-x64-msvc@15.0.4-canary.5':
- resolution: {integrity: sha512-QuaB5A2IQj9K+B2oTl61LYPISYan/x+biwnRD7DbyBEIDWkzJPjMpxKqP62Kkmv91GfhqCql3WlOWbqW+WemRg==}
+ '@next/swc-win32-x64-msvc@15.0.4':
+ resolution: {integrity: sha512-NGLchGruagh8lQpDr98bHLyWJXOBSmkEAfK980OiNBa7vNm6PsNoPvzTfstT78WyOeMRQphEQ455rggd7Eo+Dw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -884,8 +898,8 @@ packages:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@prisma/client@5.21.1':
- resolution: {integrity: sha512-3n+GgbAZYjaS/k0M03yQsQfR1APbr411r74foknnsGpmhNKBG49VuUkxIU6jORgvJPChoD4WC4PqoHImN1FP0w==}
+ '@prisma/client@5.22.0':
+ resolution: {integrity: sha512-M0SVXfyHnQREBKxCgyo7sffrKttwE6R8PMq330MIUF0pTwjUhLbW84pFDlf06B27XyCR++VtjugEnIHdr07SVA==}
engines: {node: '>=16.13'}
peerDependencies:
prisma: '*'
@@ -893,20 +907,20 @@ packages:
prisma:
optional: true
- '@prisma/debug@5.21.1':
- resolution: {integrity: sha512-uY8SAhcnORhvgtOrNdvWS98Aq/nkQ9QDUxrWAgW8XrCZaI3j2X7zb7Xe6GQSh6xSesKffFbFlkw0c2luHQviZA==}
+ '@prisma/debug@5.22.0':
+ resolution: {integrity: sha512-AUt44v3YJeggO2ZU5BkXI7M4hu9BF2zzH2iF2V5pyXT/lRTyWiElZ7It+bRH1EshoMRxHgpYg4VB6rCM+mG5jQ==}
- '@prisma/engines-version@5.21.1-1.bf0e5e8a04cada8225617067eaa03d041e2bba36':
- resolution: {integrity: sha512-qvnEflL0//lh44S/T9NcvTMxfyowNeUxTunPcDfKPjyJNrCNf2F1zQLcUv5UHAruECpX+zz21CzsC7V2xAeM7Q==}
+ '@prisma/engines-version@5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2':
+ resolution: {integrity: sha512-2PTmxFR2yHW/eB3uqWtcgRcgAbG1rwG9ZriSvQw+nnb7c4uCr3RAcGMb6/zfE88SKlC1Nj2ziUvc96Z379mHgQ==}
- '@prisma/engines@5.21.1':
- resolution: {integrity: sha512-hGVTldUkIkTwoV8//hmnAAiAchi4oMEKD3aW5H2RrnI50tTdwza7VQbTTAyN3OIHWlK5DVg6xV7X8N/9dtOydA==}
+ '@prisma/engines@5.22.0':
+ resolution: {integrity: sha512-UNjfslWhAt06kVL3CjkuYpHAWSO6L4kDCVPegV6itt7nD1kSJavd3vhgAEhjglLJJKEdJ7oIqDJ+yHk6qO8gPA==}
- '@prisma/fetch-engine@5.21.1':
- resolution: {integrity: sha512-70S31vgpCGcp9J+mh/wHtLCkVezLUqe/fGWk3J3JWZIN7prdYSlr1C0niaWUyNK2VflLXYi8kMjAmSxUVq6WGQ==}
+ '@prisma/fetch-engine@5.22.0':
+ resolution: {integrity: sha512-bkrD/Mc2fSvkQBV5EpoFcZ87AvOgDxbG99488a5cexp5Ccny+UM6MAe/UFkUC0wLYD9+9befNOqGiIJhhq+HbA==}
- '@prisma/get-platform@5.21.1':
- resolution: {integrity: sha512-sRxjL3Igst3ct+e8ya/x//cDXmpLbZQ5vfps2N4tWl4VGKQAmym77C/IG/psSMsQKszc8uFC/q1dgmKFLUgXZQ==}
+ '@prisma/get-platform@5.22.0':
+ resolution: {integrity: sha512-pHhpQdr1UPFpt+zFfnPazhulaZYCUqeIcPpJViYoq9R+D/yw4fjE+CtnsnKzPYm0ddUbeXUzjGVGIRVgPDCk4Q==}
'@radix-ui/number@1.1.0':
resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
@@ -1072,19 +1086,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dialog@1.0.5':
- resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-dialog@1.1.1':
resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==}
peerDependencies:
@@ -1139,19 +1140,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dismissable-layer@1.0.5':
- resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-dismissable-layer@1.1.0':
resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
peerDependencies:
@@ -1242,19 +1230,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-scope@1.0.4':
- resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-focus-scope@1.1.0':
resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==}
peerDependencies:
@@ -1367,19 +1342,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.0.4':
- resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-portal@1.1.1':
resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==}
peerDependencies:
@@ -1780,8 +1742,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/trigger@2.2.3':
- resolution: {integrity: sha512-X1oFIpKoXAMXNDYCviOmTfuNuYxE4h5laBsyCqVAVMjNHxoF3/uiyA7XdegK1XbCvBbCZ6P6byWrEoDRpKL8+A==}
+ '@rc-component/trigger@2.2.5':
+ resolution: {integrity: sha512-F1EJ4KjFpGAHAjuKvOyZB/6IZDkVx0bHl0M4fQM5wXcmm7lgTgVSSnR3bXwdmS6jOJGHOqfDxIJW3WUvwMIXhQ==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
@@ -1793,8 +1755,8 @@ packages:
'@rushstack/eslint-patch@1.10.4':
resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
- '@smithy/abort-controller@3.1.6':
- resolution: {integrity: sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==}
+ '@smithy/abort-controller@3.1.8':
+ resolution: {integrity: sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==}
engines: {node: '>=16.0.0'}
'@smithy/chunked-blob-reader-native@3.0.1':
@@ -1803,56 +1765,53 @@ packages:
'@smithy/chunked-blob-reader@4.0.0':
resolution: {integrity: sha512-jSqRnZvkT4egkq/7b6/QRCNXmmYVcHwnJldqJ3IhVpQE2atObVJ137xmGeuGFhjFUr8gCEVAOKwSY79OvpbDaQ==}
- '@smithy/config-resolver@3.0.10':
- resolution: {integrity: sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==}
+ '@smithy/config-resolver@3.0.12':
+ resolution: {integrity: sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==}
engines: {node: '>=16.0.0'}
- '@smithy/core@2.5.1':
- resolution: {integrity: sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==}
+ '@smithy/core@2.5.4':
+ resolution: {integrity: sha512-iFh2Ymn2sCziBRLPuOOxRPkuCx/2gBdXtBGuCUFLUe6bWYjKnhHyIPqGeNkLZ5Aco/5GjebRTBFiWID3sDbrKw==}
engines: {node: '>=16.0.0'}
- '@smithy/credential-provider-imds@3.2.5':
- resolution: {integrity: sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==}
+ '@smithy/credential-provider-imds@3.2.7':
+ resolution: {integrity: sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-codec@3.1.7':
- resolution: {integrity: sha512-kVSXScIiRN7q+s1x7BrQtZ1Aa9hvvP9FeCqCdBxv37GimIHgBCOnZ5Ip80HLt0DhnAKpiobFdGqTFgbaJNrazA==}
+ '@smithy/eventstream-codec@3.1.9':
+ resolution: {integrity: sha512-F574nX0hhlNOjBnP+noLtsPFqXnWh2L0+nZKCwcu7P7J8k+k+rdIDs+RMnrMwrzhUE4mwMgyN0cYnEn0G8yrnQ==}
- '@smithy/eventstream-serde-browser@3.0.11':
- resolution: {integrity: sha512-Pd1Wnq3CQ/v2SxRifDUihvpXzirJYbbtXfEnnLV/z0OGCTx/btVX74P86IgrZkjOydOASBGXdPpupYQI+iO/6A==}
+ '@smithy/eventstream-serde-browser@3.0.13':
+ resolution: {integrity: sha512-Nee9m+97o9Qj6/XeLz2g2vANS2SZgAxV4rDBMKGHvFJHU/xz88x2RwCkwsvEwYjSX4BV1NG1JXmxEaDUzZTAtw==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-config-resolver@3.0.8':
- resolution: {integrity: sha512-zkFIG2i1BLbfoGQnf1qEeMqX0h5qAznzaZmMVNnvPZz9J5AWBPkOMckZWPedGUPcVITacwIdQXoPcdIQq5FRcg==}
+ '@smithy/eventstream-serde-config-resolver@3.0.10':
+ resolution: {integrity: sha512-K1M0x7P7qbBUKB0UWIL5KOcyi6zqV5mPJoL0/o01HPJr0CSq3A9FYuJC6e11EX6hR8QTIR++DBiGrYveOu6trw==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-node@3.0.10':
- resolution: {integrity: sha512-hjpU1tIsJ9qpcoZq9zGHBJPBOeBGYt+n8vfhDwnITPhEre6APrvqq/y3XMDEGUT2cWQ4ramNqBPRbx3qn55rhw==}
+ '@smithy/eventstream-serde-node@3.0.12':
+ resolution: {integrity: sha512-kiZymxXvZ4tnuYsPSMUHe+MMfc4FTeFWJIc0Q5wygJoUQM4rVHNghvd48y7ppuulNMbuYt95ah71pYc2+o4JOA==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-universal@3.0.10':
- resolution: {integrity: sha512-ewG1GHbbqsFZ4asaq40KmxCmXO+AFSM1b+DcO2C03dyJj/ZH71CiTg853FSE/3SHK9q3jiYQIFjlGSwfxQ9kww==}
+ '@smithy/eventstream-serde-universal@3.0.12':
+ resolution: {integrity: sha512-1i8ifhLJrOZ+pEifTlF0EfZzMLUGQggYQ6WmZ4d5g77zEKf7oZ0kvh1yKWHPjofvOwqrkwRDVuxuYC8wVd662A==}
engines: {node: '>=16.0.0'}
- '@smithy/fetch-http-handler@3.2.9':
- resolution: {integrity: sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==}
-
- '@smithy/fetch-http-handler@4.0.0':
- resolution: {integrity: sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==}
+ '@smithy/fetch-http-handler@4.1.1':
+ resolution: {integrity: sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==}
- '@smithy/hash-blob-browser@3.1.7':
- resolution: {integrity: sha512-4yNlxVNJifPM5ThaA5HKnHkn7JhctFUHvcaz6YXxHlYOSIrzI6VKQPTN8Gs1iN5nqq9iFcwIR9THqchUCouIfg==}
+ '@smithy/hash-blob-browser@3.1.9':
+ resolution: {integrity: sha512-wOu78omaUuW5DE+PVWXiRKWRZLecARyP3xcq5SmkXUw9+utgN8HnSnBfrjL2B/4ZxgqPjaAJQkC/+JHf1ITVaQ==}
- '@smithy/hash-node@3.0.8':
- resolution: {integrity: sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==}
+ '@smithy/hash-node@3.0.10':
+ resolution: {integrity: sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==}
engines: {node: '>=16.0.0'}
- '@smithy/hash-stream-node@3.1.7':
- resolution: {integrity: sha512-xMAsvJ3hLG63lsBVi1Hl6BBSfhd8/Qnp8fC06kjOpJvyyCEXdwHITa5Kvdsk6gaAXLhbZMhQMIGvgUbfnJDP6Q==}
+ '@smithy/hash-stream-node@3.1.9':
+ resolution: {integrity: sha512-3XfHBjSP3oDWxLmlxnt+F+FqXpL3WlXs+XXaB6bV9Wo8BBu87fK1dSEsyH7Z4ZHRmwZ4g9lFMdf08m9hoX1iRA==}
engines: {node: '>=16.0.0'}
- '@smithy/invalid-dependency@3.0.8':
- resolution: {integrity: sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==}
+ '@smithy/invalid-dependency@3.0.10':
+ resolution: {integrity: sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
@@ -1862,75 +1821,75 @@ packages:
resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
engines: {node: '>=16.0.0'}
- '@smithy/md5-js@3.0.8':
- resolution: {integrity: sha512-LwApfTK0OJ/tCyNUXqnWCKoE2b4rDSr4BJlDAVCkiWYeHESr+y+d5zlAanuLW6fnitVJRD/7d9/kN/ZM9Su4mA==}
+ '@smithy/md5-js@3.0.10':
+ resolution: {integrity: sha512-m3bv6dApflt3fS2Y1PyWPUtRP7iuBlvikEOGwu0HsCZ0vE7zcIX+dBoh3e+31/rddagw8nj92j0kJg2TfV+SJA==}
- '@smithy/middleware-content-length@3.0.10':
- resolution: {integrity: sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==}
+ '@smithy/middleware-content-length@3.0.12':
+ resolution: {integrity: sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-endpoint@3.2.1':
- resolution: {integrity: sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==}
+ '@smithy/middleware-endpoint@3.2.4':
+ resolution: {integrity: sha512-TybiW2LA3kYVd3e+lWhINVu1o26KJbBwOpADnf0L4x/35vLVica77XVR5hvV9+kWeTGeSJ3IHTcYxbRxlbwhsg==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-retry@3.0.25':
- resolution: {integrity: sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==}
+ '@smithy/middleware-retry@3.0.28':
+ resolution: {integrity: sha512-vK2eDfvIXG1U64FEUhYxoZ1JSj4XFbYWkK36iz02i3pFwWiDz1Q7jKhGTBCwx/7KqJNk4VS7d7cDLXFOvP7M+g==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-serde@3.0.8':
- resolution: {integrity: sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==}
+ '@smithy/middleware-serde@3.0.10':
+ resolution: {integrity: sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-stack@3.0.8':
- resolution: {integrity: sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==}
+ '@smithy/middleware-stack@3.0.10':
+ resolution: {integrity: sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==}
engines: {node: '>=16.0.0'}
- '@smithy/node-config-provider@3.1.9':
- resolution: {integrity: sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==}
+ '@smithy/node-config-provider@3.1.11':
+ resolution: {integrity: sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==}
engines: {node: '>=16.0.0'}
- '@smithy/node-http-handler@3.2.5':
- resolution: {integrity: sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==}
+ '@smithy/node-http-handler@3.3.1':
+ resolution: {integrity: sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==}
engines: {node: '>=16.0.0'}
- '@smithy/property-provider@3.1.8':
- resolution: {integrity: sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==}
+ '@smithy/property-provider@3.1.10':
+ resolution: {integrity: sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==}
engines: {node: '>=16.0.0'}
- '@smithy/protocol-http@4.1.5':
- resolution: {integrity: sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==}
+ '@smithy/protocol-http@4.1.7':
+ resolution: {integrity: sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==}
engines: {node: '>=16.0.0'}
- '@smithy/querystring-builder@3.0.8':
- resolution: {integrity: sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==}
+ '@smithy/querystring-builder@3.0.10':
+ resolution: {integrity: sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==}
engines: {node: '>=16.0.0'}
- '@smithy/querystring-parser@3.0.8':
- resolution: {integrity: sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==}
+ '@smithy/querystring-parser@3.0.10':
+ resolution: {integrity: sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==}
engines: {node: '>=16.0.0'}
- '@smithy/service-error-classification@3.0.8':
- resolution: {integrity: sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==}
+ '@smithy/service-error-classification@3.0.10':
+ resolution: {integrity: sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==}
engines: {node: '>=16.0.0'}
- '@smithy/shared-ini-file-loader@3.1.9':
- resolution: {integrity: sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==}
+ '@smithy/shared-ini-file-loader@3.1.11':
+ resolution: {integrity: sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==}
engines: {node: '>=16.0.0'}
- '@smithy/signature-v4@4.2.1':
- resolution: {integrity: sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==}
+ '@smithy/signature-v4@4.2.3':
+ resolution: {integrity: sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==}
engines: {node: '>=16.0.0'}
- '@smithy/smithy-client@3.4.2':
- resolution: {integrity: sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==}
+ '@smithy/smithy-client@3.4.5':
+ resolution: {integrity: sha512-k0sybYT9zlP79sIKd1XGm4TmK0AS1nA2bzDHXx7m0nGi3RQ8dxxQUs4CPkSmQTKAo+KF9aINU3KzpGIpV7UoMw==}
engines: {node: '>=16.0.0'}
- '@smithy/types@3.6.0':
- resolution: {integrity: sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==}
+ '@smithy/types@3.7.1':
+ resolution: {integrity: sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==}
engines: {node: '>=16.0.0'}
- '@smithy/url-parser@3.0.8':
- resolution: {integrity: sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==}
+ '@smithy/url-parser@3.0.10':
+ resolution: {integrity: sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==}
'@smithy/util-base64@3.0.0':
resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
@@ -1955,32 +1914,32 @@ packages:
resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
engines: {node: '>=16.0.0'}
- '@smithy/util-defaults-mode-browser@3.0.25':
- resolution: {integrity: sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==}
+ '@smithy/util-defaults-mode-browser@3.0.28':
+ resolution: {integrity: sha512-6bzwAbZpHRFVJsOztmov5PGDmJYsbNSoIEfHSJJyFLzfBGCCChiO3od9k7E/TLgrCsIifdAbB9nqbVbyE7wRUw==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-defaults-mode-node@3.0.25':
- resolution: {integrity: sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==}
+ '@smithy/util-defaults-mode-node@3.0.28':
+ resolution: {integrity: sha512-78ENJDorV1CjOQselGmm3+z7Yqjj5HWCbjzh0Ixuq736dh1oEnD9sAttSBNSLlpZsX8VQnmERqA2fEFlmqWn8w==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-endpoints@2.1.4':
- resolution: {integrity: sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==}
+ '@smithy/util-endpoints@2.1.6':
+ resolution: {integrity: sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==}
engines: {node: '>=16.0.0'}
'@smithy/util-hex-encoding@3.0.0':
resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
engines: {node: '>=16.0.0'}
- '@smithy/util-middleware@3.0.8':
- resolution: {integrity: sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==}
+ '@smithy/util-middleware@3.0.10':
+ resolution: {integrity: sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==}
engines: {node: '>=16.0.0'}
- '@smithy/util-retry@3.0.8':
- resolution: {integrity: sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==}
+ '@smithy/util-retry@3.0.10':
+ resolution: {integrity: sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==}
engines: {node: '>=16.0.0'}
- '@smithy/util-stream@3.2.1':
- resolution: {integrity: sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==}
+ '@smithy/util-stream@3.3.1':
+ resolution: {integrity: sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==}
engines: {node: '>=16.0.0'}
'@smithy/util-uri-escape@3.0.0':
@@ -1995,8 +1954,8 @@ packages:
resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==}
engines: {node: '>=16.0.0'}
- '@smithy/util-waiter@3.1.7':
- resolution: {integrity: sha512-d5yGlQtmN/z5eoTtIYgkvOw27US2Ous4VycnXatyoImIF9tzlcpnKqQ/V7qhvJmb2p6xZne1NopCLakdTnkBBQ==}
+ '@smithy/util-waiter@3.1.9':
+ resolution: {integrity: sha512-/aMXPANhMOlMPjfPtSrDfPeVP8l56SJlz93xeiLmhLe5xvlXA5T3abZ2ilEsDEPeY9T/wnN/vNGn9wa1SbufWA==}
engines: {node: '>=16.0.0'}
'@swc/counter@0.1.3':
@@ -2014,17 +1973,14 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/node@20.17.1':
- resolution: {integrity: sha512-j2VlPv1NnwPJbaCNv69FO/1z4lId0QmGvpT41YxitRtWlg96g/j8qcv2RKsLKe2F6OJgyXhupN1Xo17b2m139Q==}
+ '@types/node@20.17.9':
+ resolution: {integrity: sha512-0JOXkRyLanfGPE2QRCwgxhzlBAvaRdCNMcvbd7jFfpmD4eEXll7LRwy5ymJmyeZqk7Nh7eD2LeUyQ68BbndmXw==}
- '@types/prop-types@15.7.12':
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+ '@types/react-dom@19.0.1':
+ resolution: {integrity: sha512-hljHij7MpWPKF6u5vojuyfV0YA4YURsQG7KT6SzV0Zs2BXAtgdTxG6A229Ub/xiWV4w/7JL8fi6aAyjshH4meA==}
- '@types/react-dom@18.3.1':
- resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
-
- '@types/react@18.3.12':
- resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
+ '@types/react@19.0.1':
+ resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==}
'@types/rss@0.0.32':
resolution: {integrity: sha512-2oKNqKyUY4RSdvl5eZR1n2Q9yvw3XTe3mQHsFPn9alaNBxfPnbXBtGP8R0SV8pK1PrVnLul0zx7izbm5/gF5Qw==}
@@ -2143,8 +2099,8 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- antd@5.21.6:
- resolution: {integrity: sha512-EviOde/VEu+OsIKH5t6YXTMmmNeg9R85m0W5zXAo+Np8Latg9q10691JvAqOTMpnrRmbdeKUQL1Krp69Bzbe/g==}
+ antd@5.22.3:
+ resolution: {integrity: sha512-YyJ9PhsWkTqJzEo1cZ6wBFk8Ofrfs5O3uGsW8vWcpqBLq/w/yPM/nqZkEDoPFeZ1H+nAhuPF/oWmE/sfj3uYeg==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -2182,9 +2138,6 @@ packages:
resolution: {integrity: sha512-H3Of6NIn2nNU1gsVDqDnYKY/LCdWvCMMOWifNGhKcVQgiZ6nOek39aESOvro6zmueP07exSl93YLvkN4fZOkSg==}
engines: {node: '>=10'}
- array-tree-filter@2.1.0:
- resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==}
-
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
@@ -2304,9 +2257,6 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- class-variance-authority@0.7.0:
- resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
-
class-variance-authority@0.7.1:
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
@@ -2319,10 +2269,6 @@ packages:
cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
- clsx@2.0.0:
- resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
- engines: {node: '>=6'}
-
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -2333,11 +2279,11 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
- cmdk@1.0.0:
- resolution: {integrity: sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==}
+ cmdk@1.0.4:
+ resolution: {integrity: sha512-AnsjfHyHpQ/EFeAnG216WY7A5LiYCoZzCSygiLvfXC3H3LFGCprErteUcszaVluGOhuOTbJS3jWHrSDYPBBygg==}
peerDependencies:
- react: ^18.0.0
- react-dom: ^18.0.0
+ react: ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^18 || ^19 || ^19.0.0-rc
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
@@ -2479,8 +2425,8 @@ packages:
electron-to-chromium@1.5.8:
resolution: {integrity: sha512-4Nx0gP2tPNBLTrFxBMHpkQbtn2hidPVr/+/FTtcCiBYTucqc70zRyVZiOLj17Ui3wTO7SQ1/N+hkHYzJjBzt6A==}
- emblor@1.4.6:
- resolution: {integrity: sha512-ay0Y74xdsnuxI662153ps65wPTBC7l457NPQm+eTUrrtwMzs+Pg4taULQrGvjHoBeMOZ4W2q6/KvNg8mur3PTA==}
+ emblor@1.4.7:
+ resolution: {integrity: sha512-sFrZ96ALdRwsoiWM/fZ2liM6z4CF4iOqPMwi72wDlFm9nIP4wUN01f7dSajrT+L4FAbUf3+e73UWtWXzAOj8zQ==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
@@ -2539,8 +2485,8 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- eslint-config-next@15.0.3:
- resolution: {integrity: sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==}
+ eslint-config-next@15.0.4:
+ resolution: {integrity: sha512-97mLaAhbJKVQYXUBBrenRtEUAA6bNDPxWfaFEd6mEhKfpajP4wJrW4l7BUlHuYWxR8oQa9W014qBJpumpJQwWA==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
typescript: '>=3.3.1'
@@ -2704,8 +2650,8 @@ packages:
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- framer-motion@11.11.17:
- resolution: {integrity: sha512-O8QzvoKiuzI5HSAHbcYuL6xU+ZLXbrH7C8Akaato4JzQbX2ULNeniqC2Vo5eiCtFktX9XsJ+7nUhxcl2E2IjpA==}
+ framer-motion@11.13.1:
+ resolution: {integrity: sha512-F40tpGTHByhn9h3zdBQPcEro+pSLtzARcocbNqAyfBI+u9S+KZuHH/7O9+z+GEkoF3eqFxfvVw0eBDytohwqmQ==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0
@@ -2825,8 +2771,8 @@ packages:
heic2any@0.0.4:
resolution: {integrity: sha512-3lLnZiDELfabVH87htnRolZ2iehX9zwpRyGNz22GKXIu0fznlblf0/ftppXKNqS26dqFSeqfIBhAmAj/uSp0cA==}
- hono@4.6.11:
- resolution: {integrity: sha512-f0LwJQFKdUUrCUAVowxSvNCjyzI7ZLt8XWYU/EApyeq5FfOvHFarBaE5rjU9HTNFk4RI0FkdB2edb3p/7xZjzQ==}
+ hono@4.6.13:
+ resolution: {integrity: sha512-haV0gaMdSjy9URCRN9hxBPlqHa7fMm/T72kAImIxvw4eQLbNz1rgjN4hHElLJSieDiNuiIAXC//cC6YGz2KCbg==}
engines: {node: '>=16.9.0'}
human-signals@2.1.0:
@@ -2852,11 +2798,11 @@ packages:
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- input-otp@1.2.4:
- resolution: {integrity: sha512-md6rhmD+zmMnUh5crQNSQxq3keBRYvE3odbr4Qb9g2NWzQv9azi+t1a3X4TBTbh98fsGHgEEJlzbe1q860uGCA==}
+ input-otp@1.4.1:
+ resolution: {integrity: sha512-+yvpmKYKHi9jIGngxagY9oWiiblPB7+nEO75F2l2o4vs+6vpPZZmUl4tBNYuTCvQjhvEIbdNeJu70bhfYP2nbw==}
peerDependencies:
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
internal-slot@1.0.7:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
@@ -2895,10 +2841,6 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-core-module@2.15.0:
- resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==}
- engines: {node: '>= 0.4'}
-
is-core-module@2.15.1:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
@@ -3057,8 +2999,8 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- lilconfig@3.1.2:
- resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
+ lilconfig@3.1.3:
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -3092,8 +3034,8 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lucide-react@0.454.0:
- resolution: {integrity: sha512-hw7zMDwykCLnEzgncEEjHeA6+45aeEzRYuKHuyRSOPkhko+J3ySGjGIzu+mmMfDFG1vazHepMaYFYHbTFAZAAQ==}
+ lucide-react@0.468.0:
+ resolution: {integrity: sha512-6koYRhnM2N0GGZIdXzSeiNwguv1gt/FAjZOiPl76roBi3xKEXa4WmfpxgQwTTL4KipXjefrnf3oV4IsYhi4JFA==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
@@ -3108,6 +3050,10 @@ packages:
resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
engines: {node: '>=8.6'}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
mime-db@1.25.0:
resolution: {integrity: sha512-5k547tI4Cy+Lddr/hdjNbBEWBwSl8EBc5aSdKvedav8DReADgWJzcYiktaRIw3GtGC1jjwldXtTzvqJZmtvC7w==}
engines: {node: '>= 0.6'}
@@ -3138,6 +3084,12 @@ packages:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
+ motion-dom@11.13.0:
+ resolution: {integrity: sha512-Oc1MLGJQ6nrvXccXA89lXtOqFyBmvHtaDcTRGT66o8Czl7nuA8BeHAd9MQV1pQKX0d2RHFBFaw5g3k23hQJt0w==}
+
+ motion-utils@11.13.0:
+ resolution: {integrity: sha512-lq6TzXkH5c/ysJQBxgLXgM01qwBH1b4goTPh57VvZWJbVJZF/0SB31UWEn4EIqbVPf3au88n2rvK17SpDTja1A==}
+
ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
@@ -3171,8 +3123,8 @@ packages:
nodemailer:
optional: true
- next-nprogress-bar@2.3.14:
- resolution: {integrity: sha512-r2zdo5SFakm1CSYLBo2/+9X2F5NRnbV/LI1b/Iu3mFLa9ln+Dlwx3vjJc3kVHI4i42jRC0an++obVHeWkYU6gA==}
+ next-nprogress-bar@2.3.15:
+ resolution: {integrity: sha512-8s8slKMUXvDrl7wWzKyWt6BJQThOJREpCicdbi66xAOzQ23DeIauEzMGPg1BMixnqlIRY3ayUO/ey9dafkgWcA==}
next-qrcode@2.5.1:
resolution: {integrity: sha512-ibiS1+p+myjurC1obVIgo7UCjFhxm0SNYTkikahQVmnyzlfREOdUCf2f77Vbz6W6q2zfx5Eww2/20vbgkLNdLw==}
@@ -3180,22 +3132,22 @@ packages:
peerDependencies:
react: '>=17.0.0'
- next-themes@0.3.0:
- resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==}
+ next-themes@0.4.4:
+ resolution: {integrity: sha512-LDQ2qIOJF0VnuVrrMSMLrWGjRMkq+0mpgl6e0juCLqdJ+oo8Q84JRWT6Wh11VDQKkMMe+dVzDKLWs5n87T+PkQ==}
peerDependencies:
- react: ^16.8 || ^17 || ^18
- react-dom: ^16.8 || ^17 || ^18
+ react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
- next@15.0.4-canary.5:
- resolution: {integrity: sha512-0Xb0tjDadaH3KNonyZnT97+fGOet13WlVAGhTfGLNkz3BZ4GvD88vT7Qx2pkoPgPN0Cr9mxQrNNwpZ0sLbVxHg==}
+ next@15.0.4:
+ resolution: {integrity: sha512-nuy8FH6M1FG0lktGotamQDCXhh5hZ19Vo0ht1AOIQWrYJLP598TIUagKtvJrfJ5AGwB/WmDqkKaKhMpVifvGPA==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
'@playwright/test': ^1.41.2
babel-plugin-react-compiler: '*'
- react: ^18.2.0 || 19.0.0-rc-66855b96-20241106
- react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106
+ react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 || ^19.0.0
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
@@ -3275,8 +3227,8 @@ packages:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- otpauth@9.3.4:
- resolution: {integrity: sha512-qXv+lpsCUO9ewitLYfeDKbLYt7UUCivnU/fwGK2OqhgrCBsRkTUNKWsgKAhkXG3aistOY+jEeuL90JEBu6W3mQ==}
+ otpauth@9.3.5:
+ resolution: {integrity: sha512-jQyqOuQExeIl4YIiOUz4TdEcamgAgPX6UYeeS9Iit4lkvs7bwHb0JNDqchGRccbRfvWHV6oRwH36tOsVmc+7hQ==}
p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
@@ -3334,6 +3286,9 @@ packages:
picocolors@1.1.0:
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
@@ -3407,8 +3362,8 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.47:
- resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
preact-render-to-string@5.2.3:
@@ -3416,9 +3371,17 @@ packages:
peerDependencies:
preact: '>=10'
+ preact-render-to-string@6.5.11:
+ resolution: {integrity: sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==}
+ peerDependencies:
+ preact: '>=10'
+
preact@10.11.3:
resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==}
+ preact@10.24.3:
+ resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -3426,8 +3389,8 @@ packages:
pretty-format@3.8.0:
resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==}
- prisma@5.21.1:
- resolution: {integrity: sha512-PB+Iqzld/uQBPaaw2UVIk84kb0ITsLajzsxzsadxxl54eaU5Gyl2/L02ysivHxK89t7YrfQJm+Ggk37uvM70oQ==}
+ prisma@5.22.0:
+ resolution: {integrity: sha512-vtpjW3XuYCSnMsNVBjLMNkTj6OZbudcPPTPYHqX0CJfpcdWciI1dM8uHETwmDxxiqEwCIE6WvXucWUetJgfu/A==}
engines: {node: '>=16.13'}
hasBin: true
@@ -3446,8 +3409,8 @@ packages:
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- rc-cascader@3.28.2:
- resolution: {integrity: sha512-8f+JgM83iLTvjgdkgU7GfI4qY8icXOBP0cGZjOdx2iJAkEe8ucobxDQAVE69UD/c3ehCxZlcgEHeD5hFmypbUw==}
+ rc-cascader@3.30.0:
+ resolution: {integrity: sha512-rrzSbk1Bdqbu+pDwiLCLHu72+lwX9BZ28+JKzoi0DWZ4N29QYFeip8Gctl33QVd2Xg3Rf14D3yAOG76ElJw16w==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -3458,8 +3421,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-collapse@3.8.0:
- resolution: {integrity: sha512-YVBkssrKPBG09TGfcWWGj8zJBYD9G3XuTy89t5iUmSXrIXEAnO1M+qjUxRW6b4Qi0+wNWG6MHJF/+US+nmIlzA==}
+ rc-collapse@3.9.0:
+ resolution: {integrity: sha512-swDdz4QZ4dFTo4RAUMLL50qP0EY62N2kvmk2We5xYdRwcRn8WcYtuetCJpwpaCbUfUt5+huLpVxhvmnK+PHrkA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -3482,8 +3445,8 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
- rc-field-form@2.4.0:
- resolution: {integrity: sha512-XZ/lF9iqf9HXApIHQHqzJK5v2w4mkUMsVqAzOyWVzoiwwXEavY6Tpuw7HavgzIoD+huVff4JghSGcgEfX6eycg==}
+ rc-field-form@2.6.0:
+ resolution: {integrity: sha512-qU7ei+G/nZ5nkx7TFLRoPtcMR0s0R0yG/2O+iWqA/CX65tJmgODpJvTYYzGMPW/Psj+gy5QHbcZUrNVcPXKjLQ==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
@@ -3495,26 +3458,26 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-input-number@9.2.0:
- resolution: {integrity: sha512-5XZFhBCV5f9UQ62AZ2hFbEY8iZT/dm23Q1kAg0H8EvOgD3UDbYYJAayoVIkM3lQaCqYAW5gV0yV3vjw1XtzWHg==}
+ rc-input-number@9.3.0:
+ resolution: {integrity: sha512-JQ363ywqRyxwgVxpg2z2kja3CehTpYdqR7emJ/6yJjRdbvo+RvfE83fcpBCIJRq3zLp8SakmEXq60qzWyZ7Usw==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-input@1.6.3:
- resolution: {integrity: sha512-wI4NzuqBS8vvKr8cljsvnTUqItMfG1QbJoxovCgL+DX4eVUcHIjVwharwevIxyy7H/jbLryh+K7ysnJr23aWIA==}
+ rc-input@1.6.4:
+ resolution: {integrity: sha512-lBZhfRD4NSAUW0zOKLUeI6GJuXkxeZYi0hr8VcJgJpyTNOvHw1ysrKWAHcEOAAHj7guxgmWYSi6xWrEdfrSAsA==}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
- rc-mentions@2.16.1:
- resolution: {integrity: sha512-GnhSTGP9Mtv6pqFFGQze44LlrtWOjHNrUUAcsdo9DnNAhN4pwVPEWy4z+2jpjkiGlJ3VoXdvMHcNDQdfI9fEaw==}
+ rc-mentions@2.17.0:
+ resolution: {integrity: sha512-sfHy+qLvc+p8jx8GUsujZWXDOIlIimp6YQz7N5ONQ6bHsa2kyG+BLa5k2wuxgebBbH97is33wxiyq5UkiXRpHA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-menu@9.15.1:
- resolution: {integrity: sha512-UKporqU6LPfHnpPmtP6hdEK4iO5Q+b7BRv/uRpxdIyDGplZy9jwUjsnpev5bs3PQKB0H0n34WAPDfjAfn3kAPA==}
+ rc-menu@9.16.0:
+ resolution: {integrity: sha512-vAL0yqPkmXWk3+YKRkmIR8TYj3RVdEt3ptG2jCJXWNAvQbT0VJJdRyHZ7kG/l1JsZlB+VJq/VcYOo69VR4oD+w==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -3544,8 +3507,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-picker@4.6.15:
- resolution: {integrity: sha512-OWZ1yrMie+KN2uEUfYCfS4b2Vu6RC1FWwNI0s+qypsc3wRt7g+peuZKVIzXCTaJwyyZruo80+akPg2+GmyiJjw==}
+ rc-picker@4.8.3:
+ resolution: {integrity: sha512-hJ45qoEs4mfxXPAJdp1n3sKwADul874Cd0/HwnsEOE60H+tgiJUGgbOD62As3EG/rFVNS5AWRfBCDJJfmRqOVQ==}
engines: {node: '>=8.x'}
peerDependencies:
date-fns: '>= 2.x'
@@ -3589,8 +3552,8 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
- rc-select@14.15.2:
- resolution: {integrity: sha512-oNoXlaFmpqXYcQDzcPVLrEqS2J9c+/+oJuGrlXeVVX/gVgrbHa5YcyiRUXRydFjyuA7GP3elRuLF7Y3Tfwltlw==}
+ rc-select@14.16.4:
+ resolution: {integrity: sha512-jP6qf7+vjnxGvPpfPWbGYfFlSl3h8L2XcD4O7g2GYXmEeBC0mw+nPD7i++OOE8v3YGqP8xtYjRKAWCMLfjgxlw==}
engines: {node: '>=8.x'}
peerDependencies:
react: '*'
@@ -3616,15 +3579,15 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-table@7.47.5:
- resolution: {integrity: sha512-fzq+V9j/atbPIcvs3emuclaEoXulwQpIiJA6/7ey52j8+9cJ4P8DGmp4YzfUVDrb3qhgedcVeD6eRgUrokwVEQ==}
+ rc-table@7.49.0:
+ resolution: {integrity: sha512-/FoPLX94muAQOxVpi1jhnpKjOIqUbT81eELQPAzSXOke4ky4oCWYUXOcVpL31ZCO90xScwVSXRd7coqtgtB1Ng==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-tabs@15.3.0:
- resolution: {integrity: sha512-lzE18r+zppT/jZWOAWS6ntdkDUKHOLJzqMi5UAij1LeKwOaQaupupAoI9Srn73GRzVpmGznkECMRrzkRusC40A==}
+ rc-tabs@15.4.0:
+ resolution: {integrity: sha512-llKuyiAVqmXm2z7OrmhX5cNb2ueZaL8ZyA2P4R+6/72NYYcbEgOXibwHiQCFY2RiN3swXl53SIABi2CumUS02g==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
@@ -3642,14 +3605,14 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-tree-select@5.23.0:
- resolution: {integrity: sha512-aQGi2tFSRw1WbXv0UVXPzHm09E0cSvUVZMLxQtMv3rnZZpNmdRXWrnd9QkLNlVH31F+X5rgghmdSFF3yZW0N9A==}
+ rc-tree-select@5.24.5:
+ resolution: {integrity: sha512-PnyR8LZJWaiEFw0SHRqo4MNQWyyZsyMs8eNmo68uXZWjxc7QqeWcjPPoONN0rc90c3HZqGF9z+Roz+GLzY5GXA==}
peerDependencies:
react: '*'
react-dom: '*'
- rc-tree@5.9.0:
- resolution: {integrity: sha512-CPrgOvm9d/9E+izTONKSngNzQdIEjMox2PBufWjS1wf7vxtvmCWzK1SlpHbRY6IaBfJIeZ+88RkcIevf729cRg==}
+ rc-tree@5.10.1:
+ resolution: {integrity: sha512-FPXb3tT/u39mgjr6JNlHaUTYfHkVGW56XaGDahDpEFLGsnPxGcVLNTjcqoQb/GNbSCycl7tD7EvIymwOTP0+Yw==}
engines: {node: '>=10.x'}
peerDependencies:
react: '*'
@@ -3674,10 +3637,10 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- react-dom@19.0.0-rc-5c56b873-20241107:
- resolution: {integrity: sha512-z60mK7HC5Cs3dz5dHLauTcnNe0LgeQNSX4BilnjBnV0BhHitQniPgmV87QhR2v4fryS4WRL2RF4NklwIhSCbCA==}
+ react-dom@19.0.0:
+ resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
peerDependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: ^19.0.0
react-easy-sort@1.6.0:
resolution: {integrity: sha512-zd9Nn90wVlZPEwJrpqElN87sf9GZnFR1StfjgNQVbSpR5QTSzCHjEYK6REuwq49Ip+76KOMSln9tg/ST2KLelg==}
@@ -3686,8 +3649,8 @@ packages:
react: '>=16.4.0'
react-dom: '>=16.4.0'
- react-hook-form@7.53.1:
- resolution: {integrity: sha512-6aiQeBda4zjcuaugWvim9WsGqisoUk+etmFEsSUMm451/Ic8L/UAb7sRtMj3V+Hdzm6mMjU1VhiSzYUZeBm0Vg==}
+ react-hook-form@7.54.0:
+ resolution: {integrity: sha512-PS05+UQy/IdSbJNojBypxAo9wllhHgGmyr8/dyGQcPoiMf3e7Dfb9PWYVRco55bLbxH9S+1yDDJeTdlYCSxO3A==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
@@ -3768,8 +3731,8 @@ packages:
'@types/react':
optional: true
- react@19.0.0-rc-5c56b873-20241107:
- resolution: {integrity: sha512-cFT1p+jDiT5MSDCOAlllNC9cN6532458CNGZMw+8u33ffZuX3yf2XJtSwar/G9t47nEmqsurdvtIjqb603735g==}
+ react@19.0.0:
+ resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -3847,8 +3810,8 @@ packages:
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
- scheduler@0.25.0-rc-5c56b873-20241107:
- resolution: {integrity: sha512-rt9KBjQg9XWMfNl0jNAKTRReFiuAG1U5Pi7b9IMZIMXSEfu5wSCPzqvygzvO38piDJag/ljLcFULHo7oLVDh7w==}
+ scheduler@0.25.0:
+ resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
scroll-into-view-if-needed@3.1.0:
resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
@@ -3906,11 +3869,11 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- sonner@1.5.0:
- resolution: {integrity: sha512-FBjhG/gnnbN6FY0jaNnqZOMmB73R+5IiyYAw8yBj7L54ER7HB3fOSE5OFiQiE2iXWxeXKvg6fIP4LtVppHEdJA==}
+ sonner@1.7.1:
+ resolution: {integrity: sha512-b6LHBfH32SoVasRFECrdY8p8s7hXPDn3OHUFbZZbiB1ctLS9Gdh6rpX2dVrpQA0kiL5jcRzDDldwwLkSKk3+QQ==}
peerDependencies:
- react: ^18.0.0
- react-dom: ^18.0.0
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
@@ -4014,9 +3977,6 @@ packages:
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0
- tailwind-merge@2.5.4:
- resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==}
-
tailwind-merge@2.5.5:
resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==}
@@ -4028,8 +3988,8 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
- tailwindcss@3.4.14:
- resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==}
+ tailwindcss@3.4.16:
+ resolution: {integrity: sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -4123,8 +4083,8 @@ packages:
resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
- typescript@5.6.3:
- resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
+ typescript@5.7.2:
+ resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
engines: {node: '>=14.17'}
hasBin: true
@@ -4175,11 +4135,11 @@ packages:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
- vaul@1.1.0:
- resolution: {integrity: sha512-YhO/bikcauk48hzhMhvIvT+U87cuCbNbKk9fF4Ou5UkI9t2KkBMernmdP37pCzF15hrv55fcny1YhexK8h6GVQ==}
+ vaul@1.1.1:
+ resolution: {integrity: sha512-+ejzF6ffQKPcfgS7uOrGn017g39F8SO4yLPXbBhpC7a0H+oPqPna8f1BUfXaz8eU4+pxbQcmjxW+jWBSbxjaFg==}
peerDependencies:
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0
webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
@@ -4282,56 +4242,56 @@ snapshots:
dependencies:
'@ctrl/tinycolor': 3.6.1
- '@ant-design/cssinjs-utils@1.1.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@ant-design/cssinjs-utils@1.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@ant-design/cssinjs': 1.21.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@babel/runtime': 7.25.6
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@ant-design/cssinjs': 1.21.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@babel/runtime': 7.26.0
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@ant-design/cssinjs@1.21.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@ant-design/cssinjs@1.21.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
classnames: 2.5.1
csstype: 3.1.3
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
stylis: 4.3.4
'@ant-design/fast-color@2.0.6':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@ant-design/icons-svg@4.4.2': {}
- '@ant-design/icons@5.5.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@ant-design/icons@5.5.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@ant-design/colors': 7.1.0
'@ant-design/icons-svg': 4.4.2
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@ant-design/nextjs-registry@1.0.1(@ant-design/cssinjs@1.21.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(antd@5.21.6(date-fns@3.6.0)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(next@15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@ant-design/nextjs-registry@1.0.1(@ant-design/cssinjs@1.21.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(antd@5.22.3(date-fns@3.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(next@15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@ant-design/cssinjs': 1.21.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- antd: 5.21.6(date-fns@3.6.0)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- next: 15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@ant-design/cssinjs': 1.21.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ antd: 5.22.3(date-fns@3.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ next: 15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@ant-design/react-slick@1.1.2(react@19.0.0-rc-5c56b873-20241107)':
+ '@ant-design/react-slick@1.1.2(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
json2mq: 0.2.0
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
resize-observer-polyfill: 1.5.1
throttle-debounce: 5.0.2
@@ -4345,10 +4305,18 @@ snapshots:
preact: 10.11.3
preact-render-to-string: 5.2.3(preact@10.11.3)
- '@auth/prisma-adapter@2.7.2(@prisma/client@5.21.1(prisma@5.21.1))':
+ '@auth/core@0.37.4':
dependencies:
- '@auth/core': 0.37.2
- '@prisma/client': 5.21.1(prisma@5.21.1)
+ '@panva/hkdf': 1.2.1
+ jose: 5.9.6
+ oauth4webapi: 3.1.2
+ preact: 10.24.3
+ preact-render-to-string: 6.5.11(preact@10.24.3)
+
+ '@auth/prisma-adapter@2.7.4(@prisma/client@5.22.0(prisma@5.22.0))':
+ dependencies:
+ '@auth/core': 0.37.4
+ '@prisma/client': 5.22.0(prisma@5.22.0)
transitivePeerDependencies:
- '@simplewebauthn/browser'
- '@simplewebauthn/server'
@@ -4357,20 +4325,20 @@ snapshots:
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.679.0
+ '@aws-sdk/types': 3.696.0
tslib: 2.6.3
'@aws-crypto/crc32c@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.679.0
+ '@aws-sdk/types': 3.696.0
tslib: 2.6.3
'@aws-crypto/sha1-browser@5.2.0':
dependencies:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.679.0
+ '@aws-sdk/types': 3.696.0
'@aws-sdk/util-locate-window': 3.568.0
'@smithy/util-utf8': 2.3.0
tslib: 2.6.3
@@ -4380,7 +4348,7 @@ snapshots:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.679.0
+ '@aws-sdk/types': 3.696.0
'@aws-sdk/util-locate-window': 3.568.0
'@smithy/util-utf8': 2.3.0
tslib: 2.6.3
@@ -4388,7 +4356,7 @@ snapshots:
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.679.0
+ '@aws-sdk/types': 3.696.0
tslib: 2.6.3
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -4397,473 +4365,475 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.679.0
+ '@aws-sdk/types': 3.696.0
'@smithy/util-utf8': 2.3.0
tslib: 2.6.3
- '@aws-sdk/client-s3@3.679.0':
+ '@aws-sdk/client-s3@3.705.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/client-sts': 3.679.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/middleware-bucket-endpoint': 3.679.0
- '@aws-sdk/middleware-expect-continue': 3.679.0
- '@aws-sdk/middleware-flexible-checksums': 3.679.0
- '@aws-sdk/middleware-host-header': 3.679.0
- '@aws-sdk/middleware-location-constraint': 3.679.0
- '@aws-sdk/middleware-logger': 3.679.0
- '@aws-sdk/middleware-recursion-detection': 3.679.0
- '@aws-sdk/middleware-sdk-s3': 3.679.0
- '@aws-sdk/middleware-ssec': 3.679.0
- '@aws-sdk/middleware-user-agent': 3.679.0
- '@aws-sdk/region-config-resolver': 3.679.0
- '@aws-sdk/signature-v4-multi-region': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-endpoints': 3.679.0
- '@aws-sdk/util-user-agent-browser': 3.679.0
- '@aws-sdk/util-user-agent-node': 3.679.0
- '@aws-sdk/xml-builder': 3.679.0
- '@smithy/config-resolver': 3.0.10
- '@smithy/core': 2.5.1
- '@smithy/eventstream-serde-browser': 3.0.11
- '@smithy/eventstream-serde-config-resolver': 3.0.8
- '@smithy/eventstream-serde-node': 3.0.10
- '@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-blob-browser': 3.1.7
- '@smithy/hash-node': 3.0.8
- '@smithy/hash-stream-node': 3.1.7
- '@smithy/invalid-dependency': 3.0.8
- '@smithy/md5-js': 3.0.8
- '@smithy/middleware-content-length': 3.0.10
- '@smithy/middleware-endpoint': 3.2.1
- '@smithy/middleware-retry': 3.0.25
- '@smithy/middleware-serde': 3.0.8
- '@smithy/middleware-stack': 3.0.8
- '@smithy/node-config-provider': 3.1.9
- '@smithy/node-http-handler': 3.2.5
- '@smithy/protocol-http': 4.1.5
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/url-parser': 3.0.8
+ '@aws-sdk/client-sso-oidc': 3.699.0(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/client-sts': 3.699.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/middleware-bucket-endpoint': 3.696.0
+ '@aws-sdk/middleware-expect-continue': 3.696.0
+ '@aws-sdk/middleware-flexible-checksums': 3.701.0
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-location-constraint': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-sdk-s3': 3.696.0
+ '@aws-sdk/middleware-ssec': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/signature-v4-multi-region': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@aws-sdk/xml-builder': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/eventstream-serde-browser': 3.0.13
+ '@smithy/eventstream-serde-config-resolver': 3.0.10
+ '@smithy/eventstream-serde-node': 3.0.12
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-blob-browser': 3.1.9
+ '@smithy/hash-node': 3.0.10
+ '@smithy/hash-stream-node': 3.1.9
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/md5-js': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.25
- '@smithy/util-defaults-mode-node': 3.0.25
- '@smithy/util-endpoints': 2.1.4
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-retry': 3.0.8
- '@smithy/util-stream': 3.2.1
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-stream': 3.3.1
'@smithy/util-utf8': 3.0.0
- '@smithy/util-waiter': 3.1.7
+ '@smithy/util-waiter': 3.1.9
tslib: 2.6.3
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0)':
+ '@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0)':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sts': 3.679.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/middleware-host-header': 3.679.0
- '@aws-sdk/middleware-logger': 3.679.0
- '@aws-sdk/middleware-recursion-detection': 3.679.0
- '@aws-sdk/middleware-user-agent': 3.679.0
- '@aws-sdk/region-config-resolver': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-endpoints': 3.679.0
- '@aws-sdk/util-user-agent-browser': 3.679.0
- '@aws-sdk/util-user-agent-node': 3.679.0
- '@smithy/config-resolver': 3.0.10
- '@smithy/core': 2.5.1
- '@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-node': 3.0.8
- '@smithy/invalid-dependency': 3.0.8
- '@smithy/middleware-content-length': 3.0.10
- '@smithy/middleware-endpoint': 3.2.1
- '@smithy/middleware-retry': 3.0.25
- '@smithy/middleware-serde': 3.0.8
- '@smithy/middleware-stack': 3.0.8
- '@smithy/node-config-provider': 3.1.9
- '@smithy/node-http-handler': 3.2.5
- '@smithy/protocol-http': 4.1.5
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/url-parser': 3.0.8
+ '@aws-sdk/client-sts': 3.699.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.25
- '@smithy/util-defaults-mode-node': 3.0.25
- '@smithy/util-endpoints': 2.1.4
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-retry': 3.0.8
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.679.0':
+ '@aws-sdk/client-sso@3.696.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/middleware-host-header': 3.679.0
- '@aws-sdk/middleware-logger': 3.679.0
- '@aws-sdk/middleware-recursion-detection': 3.679.0
- '@aws-sdk/middleware-user-agent': 3.679.0
- '@aws-sdk/region-config-resolver': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-endpoints': 3.679.0
- '@aws-sdk/util-user-agent-browser': 3.679.0
- '@aws-sdk/util-user-agent-node': 3.679.0
- '@smithy/config-resolver': 3.0.10
- '@smithy/core': 2.5.1
- '@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-node': 3.0.8
- '@smithy/invalid-dependency': 3.0.8
- '@smithy/middleware-content-length': 3.0.10
- '@smithy/middleware-endpoint': 3.2.1
- '@smithy/middleware-retry': 3.0.25
- '@smithy/middleware-serde': 3.0.8
- '@smithy/middleware-stack': 3.0.8
- '@smithy/node-config-provider': 3.1.9
- '@smithy/node-http-handler': 3.2.5
- '@smithy/protocol-http': 4.1.5
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/url-parser': 3.0.8
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.25
- '@smithy/util-defaults-mode-node': 3.0.25
- '@smithy/util-endpoints': 2.1.4
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-retry': 3.0.8
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sts@3.679.0':
+ '@aws-sdk/client-sts@3.699.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/middleware-host-header': 3.679.0
- '@aws-sdk/middleware-logger': 3.679.0
- '@aws-sdk/middleware-recursion-detection': 3.679.0
- '@aws-sdk/middleware-user-agent': 3.679.0
- '@aws-sdk/region-config-resolver': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-endpoints': 3.679.0
- '@aws-sdk/util-user-agent-browser': 3.679.0
- '@aws-sdk/util-user-agent-node': 3.679.0
- '@smithy/config-resolver': 3.0.10
- '@smithy/core': 2.5.1
- '@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-node': 3.0.8
- '@smithy/invalid-dependency': 3.0.8
- '@smithy/middleware-content-length': 3.0.10
- '@smithy/middleware-endpoint': 3.2.1
- '@smithy/middleware-retry': 3.0.25
- '@smithy/middleware-serde': 3.0.8
- '@smithy/middleware-stack': 3.0.8
- '@smithy/node-config-provider': 3.1.9
- '@smithy/node-http-handler': 3.2.5
- '@smithy/protocol-http': 4.1.5
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/url-parser': 3.0.8
+ '@aws-sdk/client-sso-oidc': 3.699.0(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.25
- '@smithy/util-defaults-mode-node': 3.0.25
- '@smithy/util-endpoints': 2.1.4
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-retry': 3.0.8
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/core@3.679.0':
- dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/core': 2.5.1
- '@smithy/node-config-provider': 3.1.9
- '@smithy/property-provider': 3.1.8
- '@smithy/protocol-http': 4.1.5
- '@smithy/signature-v4': 4.2.1
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/util-middleware': 3.0.8
+ '@aws-sdk/core@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/core': 2.5.4
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
fast-xml-parser: 4.4.1
tslib: 2.6.3
- '@aws-sdk/credential-provider-env@3.679.0':
+ '@aws-sdk/credential-provider-env@3.696.0':
dependencies:
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@smithy/property-provider': 3.1.8
- '@smithy/types': 3.6.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/credential-provider-http@3.679.0':
- dependencies:
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@smithy/fetch-http-handler': 3.2.9
- '@smithy/node-http-handler': 3.2.5
- '@smithy/property-provider': 3.1.8
- '@smithy/protocol-http': 4.1.5
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/util-stream': 3.2.1
+ '@aws-sdk/credential-provider-http@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/property-provider': 3.1.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-stream': 3.3.1
tslib: 2.6.3
- '@aws-sdk/credential-provider-ini@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)':
- dependencies:
- '@aws-sdk/client-sts': 3.679.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/credential-provider-env': 3.679.0
- '@aws-sdk/credential-provider-http': 3.679.0
- '@aws-sdk/credential-provider-process': 3.679.0
- '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
- '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/types': 3.679.0
- '@smithy/credential-provider-imds': 3.2.5
- '@smithy/property-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/credential-provider-ini@3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))(@aws-sdk/client-sts@3.699.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.699.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-env': 3.696.0
+ '@aws-sdk/credential-provider-http': 3.696.0
+ '@aws-sdk/credential-provider-process': 3.696.0
+ '@aws-sdk/credential-provider-sso': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))
+ '@aws-sdk/credential-provider-web-identity': 3.696.0(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-node@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.679.0
- '@aws-sdk/credential-provider-http': 3.679.0
- '@aws-sdk/credential-provider-ini': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/credential-provider-process': 3.679.0
- '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
- '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/types': 3.679.0
- '@smithy/credential-provider-imds': 3.2.5
- '@smithy/property-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/credential-provider-node@3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))(@aws-sdk/client-sts@3.699.0)':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.696.0
+ '@aws-sdk/credential-provider-http': 3.696.0
+ '@aws-sdk/credential-provider-ini': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/credential-provider-process': 3.696.0
+ '@aws-sdk/credential-provider-sso': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))
+ '@aws-sdk/credential-provider-web-identity': 3.696.0(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- '@aws-sdk/client-sts'
- aws-crt
- '@aws-sdk/credential-provider-process@3.679.0':
+ '@aws-sdk/credential-provider-process@3.696.0':
dependencies:
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@smithy/property-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/credential-provider-sso@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))':
+ '@aws-sdk/credential-provider-sso@3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))':
dependencies:
- '@aws-sdk/client-sso': 3.679.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/token-providers': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
- '@aws-sdk/types': 3.679.0
- '@smithy/property-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/client-sso': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/token-providers': 3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.679.0(@aws-sdk/client-sts@3.679.0)':
+ '@aws-sdk/credential-provider-web-identity@3.696.0(@aws-sdk/client-sts@3.699.0)':
dependencies:
- '@aws-sdk/client-sts': 3.679.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@smithy/property-provider': 3.1.8
- '@smithy/types': 3.6.0
+ '@aws-sdk/client-sts': 3.699.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-bucket-endpoint@3.679.0':
+ '@aws-sdk/middleware-bucket-endpoint@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-arn-parser': 3.679.0
- '@smithy/node-config-provider': 3.1.9
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-arn-parser': 3.693.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
'@smithy/util-config-provider': 3.0.0
tslib: 2.6.3
- '@aws-sdk/middleware-expect-continue@3.679.0':
+ '@aws-sdk/middleware-expect-continue@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-flexible-checksums@3.679.0':
+ '@aws-sdk/middleware-flexible-checksums@3.701.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
'@aws-crypto/crc32c': 5.2.0
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
'@smithy/is-array-buffer': 3.0.0
- '@smithy/node-config-provider': 3.1.9
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
- '@smithy/util-middleware': 3.0.8
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@aws-sdk/middleware-host-header@3.679.0':
+ '@aws-sdk/middleware-host-header@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-location-constraint@3.679.0':
+ '@aws-sdk/middleware-location-constraint@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-logger@3.679.0':
+ '@aws-sdk/middleware-logger@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-recursion-detection@3.679.0':
+ '@aws-sdk/middleware-recursion-detection@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-sdk-s3@3.679.0':
- dependencies:
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-arn-parser': 3.679.0
- '@smithy/core': 2.5.1
- '@smithy/node-config-provider': 3.1.9
- '@smithy/protocol-http': 4.1.5
- '@smithy/signature-v4': 4.2.1
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
+ '@aws-sdk/middleware-sdk-s3@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-arn-parser': 3.693.0
+ '@smithy/core': 2.5.4
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-stream': 3.2.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@aws-sdk/middleware-ssec@3.679.0':
+ '@aws-sdk/middleware-ssec@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/middleware-user-agent@3.679.0':
+ '@aws-sdk/middleware-user-agent@3.696.0':
dependencies:
- '@aws-sdk/core': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@aws-sdk/util-endpoints': 3.679.0
- '@smithy/core': 2.5.1
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@smithy/core': 2.5.4
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/region-config-resolver@3.679.0':
+ '@aws-sdk/region-config-resolver@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/node-config-provider': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.8
+ '@smithy/util-middleware': 3.0.10
tslib: 2.6.3
- '@aws-sdk/signature-v4-multi-region@3.679.0':
+ '@aws-sdk/signature-v4-multi-region@3.696.0':
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@smithy/protocol-http': 4.1.5
- '@smithy/signature-v4': 4.2.1
- '@smithy/types': 3.6.0
+ '@aws-sdk/middleware-sdk-s3': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/token-providers@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))':
+ '@aws-sdk/token-providers@3.699.0(@aws-sdk/client-sso-oidc@3.699.0(@aws-sdk/client-sts@3.699.0))':
dependencies:
- '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
- '@aws-sdk/types': 3.679.0
- '@smithy/property-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/client-sso-oidc': 3.699.0(@aws-sdk/client-sts@3.699.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/types@3.679.0':
+ '@aws-sdk/types@3.696.0':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/util-arn-parser@3.679.0':
+ '@aws-sdk/util-arn-parser@3.693.0':
dependencies:
tslib: 2.6.3
- '@aws-sdk/util-endpoints@3.679.0':
+ '@aws-sdk/util-endpoints@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/types': 3.6.0
- '@smithy/util-endpoints': 2.1.4
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
+ '@smithy/util-endpoints': 2.1.6
tslib: 2.6.3
'@aws-sdk/util-locate-window@3.568.0':
dependencies:
tslib: 2.6.3
- '@aws-sdk/util-user-agent-browser@3.679.0':
+ '@aws-sdk/util-user-agent-browser@3.696.0':
dependencies:
- '@aws-sdk/types': 3.679.0
- '@smithy/types': 3.6.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
bowser: 2.11.0
tslib: 2.6.3
- '@aws-sdk/util-user-agent-node@3.679.0':
+ '@aws-sdk/util-user-agent-node@3.696.0':
dependencies:
- '@aws-sdk/middleware-user-agent': 3.679.0
- '@aws-sdk/types': 3.679.0
- '@smithy/node-config-provider': 3.1.9
- '@smithy/types': 3.6.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@aws-sdk/xml-builder@3.679.0':
+ '@aws-sdk/xml-builder@3.696.0':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@babel/runtime@7.25.0':
+ '@babel/runtime@7.25.6':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.25.6':
+ '@babel/runtime@7.26.0':
dependencies:
regenerator-runtime: 0.14.1
@@ -4976,21 +4946,21 @@ snapshots:
'@floating-ui/core': 1.6.7
'@floating-ui/utils': 0.2.7
- '@floating-ui/react-dom@2.1.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@floating-ui/react-dom@2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@floating-ui/dom': 1.6.10
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
'@floating-ui/utils@0.2.7': {}
- '@hono/node-server@1.13.3(hono@4.6.11)':
+ '@hono/node-server@1.13.7(hono@4.6.13)':
dependencies:
- hono: 4.6.11
+ hono: 4.6.13
- '@hookform/resolvers@3.9.1(react-hook-form@7.53.1(react@19.0.0-rc-5c56b873-20241107))':
+ '@hookform/resolvers@3.9.1(react-hook-form@7.54.0(react@19.0.0))':
dependencies:
- react-hook-form: 7.53.1(react@19.0.0-rc-5c56b873-20241107)
+ react-hook-form: 7.54.0(react@19.0.0)
'@humanwhocodes/config-array@0.13.0':
dependencies:
@@ -5105,34 +5075,34 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@next/env@15.0.4-canary.5': {}
+ '@next/env@15.0.4': {}
- '@next/eslint-plugin-next@15.0.3':
+ '@next/eslint-plugin-next@15.0.4':
dependencies:
fast-glob: 3.3.1
- '@next/swc-darwin-arm64@15.0.4-canary.5':
+ '@next/swc-darwin-arm64@15.0.4':
optional: true
- '@next/swc-darwin-x64@15.0.4-canary.5':
+ '@next/swc-darwin-x64@15.0.4':
optional: true
- '@next/swc-linux-arm64-gnu@15.0.4-canary.5':
+ '@next/swc-linux-arm64-gnu@15.0.4':
optional: true
- '@next/swc-linux-arm64-musl@15.0.4-canary.5':
+ '@next/swc-linux-arm64-musl@15.0.4':
optional: true
- '@next/swc-linux-x64-gnu@15.0.4-canary.5':
+ '@next/swc-linux-x64-gnu@15.0.4':
optional: true
- '@next/swc-linux-x64-musl@15.0.4-canary.5':
+ '@next/swc-linux-x64-musl@15.0.4':
optional: true
- '@next/swc-win32-arm64-msvc@15.0.4-canary.5':
+ '@next/swc-win32-arm64-msvc@15.0.4':
optional: true
- '@next/swc-win32-x64-msvc@15.0.4-canary.5':
+ '@next/swc-win32-x64-msvc@15.0.4':
optional: true
'@noble/hashes@1.5.0': {}
@@ -5154,30 +5124,30 @@ snapshots:
'@pkgjs/parseargs@0.11.0':
optional: true
- '@prisma/client@5.21.1(prisma@5.21.1)':
+ '@prisma/client@5.22.0(prisma@5.22.0)':
optionalDependencies:
- prisma: 5.21.1
+ prisma: 5.22.0
- '@prisma/debug@5.21.1': {}
+ '@prisma/debug@5.22.0': {}
- '@prisma/engines-version@5.21.1-1.bf0e5e8a04cada8225617067eaa03d041e2bba36': {}
+ '@prisma/engines-version@5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2': {}
- '@prisma/engines@5.21.1':
+ '@prisma/engines@5.22.0':
dependencies:
- '@prisma/debug': 5.21.1
- '@prisma/engines-version': 5.21.1-1.bf0e5e8a04cada8225617067eaa03d041e2bba36
- '@prisma/fetch-engine': 5.21.1
- '@prisma/get-platform': 5.21.1
+ '@prisma/debug': 5.22.0
+ '@prisma/engines-version': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
+ '@prisma/fetch-engine': 5.22.0
+ '@prisma/get-platform': 5.22.0
- '@prisma/fetch-engine@5.21.1':
+ '@prisma/fetch-engine@5.22.0':
dependencies:
- '@prisma/debug': 5.21.1
- '@prisma/engines-version': 5.21.1-1.bf0e5e8a04cada8225617067eaa03d041e2bba36
- '@prisma/get-platform': 5.21.1
+ '@prisma/debug': 5.22.0
+ '@prisma/engines-version': 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2
+ '@prisma/get-platform': 5.22.0
- '@prisma/get-platform@5.21.1':
+ '@prisma/get-platform@5.22.0':
dependencies:
- '@prisma/debug': 5.21.1
+ '@prisma/debug': 5.22.0
'@radix-ui/number@1.1.0': {}
@@ -5187,932 +5157,873 @@ snapshots:
'@radix-ui/primitive@1.0.1':
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-alert-dialog@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-alert-dialog@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dialog': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dialog': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-arrow@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-avatar@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-avatar@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-checkbox@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-checkbox@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-collapsible@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-collapsible@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-compose-refs@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-context@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-context@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- '@radix-ui/react-context@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-context@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-context@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-context@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-context@1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-context@1.1.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-dialog@1.0.0(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dialog@1.0.0(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
+ '@radix-ui/react-context': 1.0.0(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.0.0(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.0.0(react@19.0.0)
+ '@radix-ui/react-portal': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.0.0(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.5.4(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.5.4(@types/react@19.0.1)(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@radix-ui/react-dialog@1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dialog@1.0.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@19.0.1)(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.5.5(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.5.5(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
- dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.5.5(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
-
- '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dialog@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.5.7(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.5.7(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-dialog@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dialog@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.6.0(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-direction@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
- dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
-
- '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-menu': 2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-focus-guards@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-guards@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-guards@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-guards@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-focus-scope@1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-scope@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
-
- '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
- dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-icons@1.3.0(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- '@radix-ui/react-id@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-id@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0)
+ react: 19.0.0
- '@radix-ui/react-id@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-id@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-id@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-id@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-label@2.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-label@2.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-menu@2.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-menu@2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.5.7(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.5.7(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-popover@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-popover@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.6.0(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
-
- '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
- dependencies:
- '@floating-ui/react-dom': 2.1.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
+
+ '@radix-ui/react-popper@1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-arrow': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
'@radix-ui/rect': 1.1.0
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-portal@1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-portal@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-portal@1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-portal@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-portal@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-presence@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-presence@1.0.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
-
- '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
- dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-presence@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-presence@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-primitive@1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-primitive@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-slot': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-slot': 1.0.0(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-primitive@1.0.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-slot': 1.0.2(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-progress@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-progress@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-select@2.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-select@2.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
aria-hidden: 1.2.4
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-remove-scroll: 2.5.7(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-remove-scroll: 2.5.7(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-separator@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-slot@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-slot@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0)
+ react: 19.0.0
- '@radix-ui/react-slot@1.0.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-slot@1.0.2(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-slot@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-slot@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-switch@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-switch@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-tabs@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-tabs@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-tooltip@1.1.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-tooltip@1.1.3(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
- '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-callback-ref@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
+ react: 19.0.0
- '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-controllable-state@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-escape-keydown@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-escape-keydown@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0)
+ react: 19.0.0
- '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0)':
dependencies:
'@babel/runtime': 7.25.6
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-layout-effect@1.0.1(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.0
- react: 19.0.0-rc-5c56b873-20241107
+ '@babel/runtime': 7.25.6
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
'@radix-ui/rect': 1.1.0
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-use-size@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-use-size@1.1.0(@types/react@19.0.1)(react@19.0.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- '@types/react-dom': 18.3.1
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.1
'@radix-ui/rect@1.1.0': {}
'@rc-component/async-validator@5.0.4':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
- '@rc-component/color-picker@2.0.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/color-picker@2.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
'@ant-design/fast-color': 2.0.6
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@rc-component/context@1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/context@1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
'@rc-component/mini-decimal@1.1.0':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
- '@rc-component/mutate-observer@1.1.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/mutate-observer@1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@rc-component/portal@1.1.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/portal@1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@rc-component/qrcode@1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/qrcode@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@rc-component/tour@1.15.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/tour@1.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/portal': 1.1.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/portal': 1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- '@rc-component/trigger@2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)':
+ '@rc-component/trigger@2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/portal': 1.1.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/portal': 1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
'@rtsao/scc@1.1.0': {}
'@rushstack/eslint-patch@1.10.4': {}
- '@smithy/abort-controller@3.1.6':
+ '@smithy/abort-controller@3.1.8':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
'@smithy/chunked-blob-reader-native@3.0.1':
@@ -6124,102 +6035,94 @@ snapshots:
dependencies:
tslib: 2.6.3
- '@smithy/config-resolver@3.0.10':
+ '@smithy/config-resolver@3.0.12':
dependencies:
- '@smithy/node-config-provider': 3.1.9
- '@smithy/types': 3.6.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.8
+ '@smithy/util-middleware': 3.0.10
tslib: 2.6.3
- '@smithy/core@2.5.1':
+ '@smithy/core@2.5.4':
dependencies:
- '@smithy/middleware-serde': 3.0.8
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
'@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-stream': 3.2.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@smithy/credential-provider-imds@3.2.5':
+ '@smithy/credential-provider-imds@3.2.7':
dependencies:
- '@smithy/node-config-provider': 3.1.9
- '@smithy/property-provider': 3.1.8
- '@smithy/types': 3.6.0
- '@smithy/url-parser': 3.0.8
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
tslib: 2.6.3
- '@smithy/eventstream-codec@3.1.7':
+ '@smithy/eventstream-codec@3.1.9':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
'@smithy/util-hex-encoding': 3.0.0
tslib: 2.6.3
- '@smithy/eventstream-serde-browser@3.0.11':
+ '@smithy/eventstream-serde-browser@3.0.13':
dependencies:
- '@smithy/eventstream-serde-universal': 3.0.10
- '@smithy/types': 3.6.0
+ '@smithy/eventstream-serde-universal': 3.0.12
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/eventstream-serde-config-resolver@3.0.8':
+ '@smithy/eventstream-serde-config-resolver@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/eventstream-serde-node@3.0.10':
+ '@smithy/eventstream-serde-node@3.0.12':
dependencies:
- '@smithy/eventstream-serde-universal': 3.0.10
- '@smithy/types': 3.6.0
+ '@smithy/eventstream-serde-universal': 3.0.12
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/eventstream-serde-universal@3.0.10':
+ '@smithy/eventstream-serde-universal@3.0.12':
dependencies:
- '@smithy/eventstream-codec': 3.1.7
- '@smithy/types': 3.6.0
+ '@smithy/eventstream-codec': 3.1.9
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/fetch-http-handler@3.2.9':
+ '@smithy/fetch-http-handler@4.1.1':
dependencies:
- '@smithy/protocol-http': 4.1.5
- '@smithy/querystring-builder': 3.0.8
- '@smithy/types': 3.6.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
'@smithy/util-base64': 3.0.0
tslib: 2.6.3
- '@smithy/fetch-http-handler@4.0.0':
- dependencies:
- '@smithy/protocol-http': 4.1.5
- '@smithy/querystring-builder': 3.0.8
- '@smithy/types': 3.6.0
- '@smithy/util-base64': 3.0.0
- tslib: 2.6.3
-
- '@smithy/hash-blob-browser@3.1.7':
+ '@smithy/hash-blob-browser@3.1.9':
dependencies:
'@smithy/chunked-blob-reader': 4.0.0
'@smithy/chunked-blob-reader-native': 3.0.1
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/hash-node@3.0.8':
+ '@smithy/hash-node@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@smithy/hash-stream-node@3.1.7':
+ '@smithy/hash-stream-node@3.1.9':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@smithy/invalid-dependency@3.0.8':
+ '@smithy/invalid-dependency@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
'@smithy/is-array-buffer@2.2.0':
@@ -6230,125 +6133,125 @@ snapshots:
dependencies:
tslib: 2.6.3
- '@smithy/md5-js@3.0.8':
+ '@smithy/md5-js@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@smithy/middleware-content-length@3.0.10':
+ '@smithy/middleware-content-length@3.0.12':
dependencies:
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/middleware-endpoint@3.2.1':
+ '@smithy/middleware-endpoint@3.2.4':
dependencies:
- '@smithy/core': 2.5.1
- '@smithy/middleware-serde': 3.0.8
- '@smithy/node-config-provider': 3.1.9
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
- '@smithy/url-parser': 3.0.8
- '@smithy/util-middleware': 3.0.8
+ '@smithy/core': 2.5.4
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-middleware': 3.0.10
tslib: 2.6.3
- '@smithy/middleware-retry@3.0.25':
+ '@smithy/middleware-retry@3.0.28':
dependencies:
- '@smithy/node-config-provider': 3.1.9
- '@smithy/protocol-http': 4.1.5
- '@smithy/service-error-classification': 3.0.8
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
- '@smithy/util-middleware': 3.0.8
- '@smithy/util-retry': 3.0.8
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/service-error-classification': 3.0.10
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
tslib: 2.6.3
uuid: 9.0.1
- '@smithy/middleware-serde@3.0.8':
+ '@smithy/middleware-serde@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/middleware-stack@3.0.8':
+ '@smithy/middleware-stack@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/node-config-provider@3.1.9':
+ '@smithy/node-config-provider@3.1.11':
dependencies:
- '@smithy/property-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.9
- '@smithy/types': 3.6.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/node-http-handler@3.2.5':
+ '@smithy/node-http-handler@3.3.1':
dependencies:
- '@smithy/abort-controller': 3.1.6
- '@smithy/protocol-http': 4.1.5
- '@smithy/querystring-builder': 3.0.8
- '@smithy/types': 3.6.0
+ '@smithy/abort-controller': 3.1.8
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/property-provider@3.1.8':
+ '@smithy/property-provider@3.1.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/protocol-http@4.1.5':
+ '@smithy/protocol-http@4.1.7':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/querystring-builder@3.0.8':
+ '@smithy/querystring-builder@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
'@smithy/util-uri-escape': 3.0.0
tslib: 2.6.3
- '@smithy/querystring-parser@3.0.8':
+ '@smithy/querystring-parser@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/service-error-classification@3.0.8':
+ '@smithy/service-error-classification@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
- '@smithy/shared-ini-file-loader@3.1.9':
+ '@smithy/shared-ini-file-loader@3.1.11':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/signature-v4@4.2.1':
+ '@smithy/signature-v4@4.2.3':
dependencies:
'@smithy/is-array-buffer': 3.0.0
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
'@smithy/util-hex-encoding': 3.0.0
- '@smithy/util-middleware': 3.0.8
+ '@smithy/util-middleware': 3.0.10
'@smithy/util-uri-escape': 3.0.0
'@smithy/util-utf8': 3.0.0
tslib: 2.6.3
- '@smithy/smithy-client@3.4.2':
+ '@smithy/smithy-client@3.4.5':
dependencies:
- '@smithy/core': 2.5.1
- '@smithy/middleware-endpoint': 3.2.1
- '@smithy/middleware-stack': 3.0.8
- '@smithy/protocol-http': 4.1.5
- '@smithy/types': 3.6.0
- '@smithy/util-stream': 3.2.1
+ '@smithy/core': 2.5.4
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-stream': 3.3.1
tslib: 2.6.3
- '@smithy/types@3.6.0':
+ '@smithy/types@3.7.1':
dependencies:
tslib: 2.6.3
- '@smithy/url-parser@3.0.8':
+ '@smithy/url-parser@3.0.10':
dependencies:
- '@smithy/querystring-parser': 3.0.8
- '@smithy/types': 3.6.0
+ '@smithy/querystring-parser': 3.0.10
+ '@smithy/types': 3.7.1
tslib: 2.6.3
'@smithy/util-base64@3.0.0':
@@ -6379,50 +6282,50 @@ snapshots:
dependencies:
tslib: 2.6.3
- '@smithy/util-defaults-mode-browser@3.0.25':
+ '@smithy/util-defaults-mode-browser@3.0.28':
dependencies:
- '@smithy/property-provider': 3.1.8
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
bowser: 2.11.0
tslib: 2.6.3
- '@smithy/util-defaults-mode-node@3.0.25':
+ '@smithy/util-defaults-mode-node@3.0.28':
dependencies:
- '@smithy/config-resolver': 3.0.10
- '@smithy/credential-provider-imds': 3.2.5
- '@smithy/node-config-provider': 3.1.9
- '@smithy/property-provider': 3.1.8
- '@smithy/smithy-client': 3.4.2
- '@smithy/types': 3.6.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/util-endpoints@2.1.4':
+ '@smithy/util-endpoints@2.1.6':
dependencies:
- '@smithy/node-config-provider': 3.1.9
- '@smithy/types': 3.6.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
tslib: 2.6.3
'@smithy/util-hex-encoding@3.0.0':
dependencies:
tslib: 2.6.3
- '@smithy/util-middleware@3.0.8':
+ '@smithy/util-middleware@3.0.10':
dependencies:
- '@smithy/types': 3.6.0
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/util-retry@3.0.8':
+ '@smithy/util-retry@3.0.10':
dependencies:
- '@smithy/service-error-classification': 3.0.8
- '@smithy/types': 3.6.0
+ '@smithy/service-error-classification': 3.0.10
+ '@smithy/types': 3.7.1
tslib: 2.6.3
- '@smithy/util-stream@3.2.1':
+ '@smithy/util-stream@3.3.1':
dependencies:
- '@smithy/fetch-http-handler': 4.0.0
- '@smithy/node-http-handler': 3.2.5
- '@smithy/types': 3.6.0
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/types': 3.7.1
'@smithy/util-base64': 3.0.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-hex-encoding': 3.0.0
@@ -6443,10 +6346,10 @@ snapshots:
'@smithy/util-buffer-from': 3.0.0
tslib: 2.6.3
- '@smithy/util-waiter@3.1.7':
+ '@smithy/util-waiter@3.1.9':
dependencies:
- '@smithy/abort-controller': 3.1.6
- '@smithy/types': 3.6.0
+ '@smithy/abort-controller': 3.1.8
+ '@smithy/types': 3.7.1
tslib: 2.6.3
'@swc/counter@0.1.3': {}
@@ -6461,51 +6364,48 @@ snapshots:
'@types/json5@0.0.29': {}
- '@types/node@20.17.1':
+ '@types/node@20.17.9':
dependencies:
undici-types: 6.19.8
- '@types/prop-types@15.7.12': {}
-
- '@types/react-dom@18.3.1':
+ '@types/react-dom@19.0.1':
dependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- '@types/react@18.3.12':
+ '@types/react@19.0.1':
dependencies:
- '@types/prop-types': 15.7.12
csstype: 3.1.3
'@types/rss@0.0.32': {}
- '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.7.2)
'@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/type-utils': 8.7.0(eslint@8.57.1)(typescript@5.6.3)
- '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 8.7.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 8.7.0
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2)':
dependencies:
'@typescript-eslint/scope-manager': 7.2.0
'@typescript-eslint/types': 7.2.0
- '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 7.2.0
debug: 4.3.6
eslint: 8.57.1
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
@@ -6519,14 +6419,14 @@ snapshots:
'@typescript-eslint/types': 8.7.0
'@typescript-eslint/visitor-keys': 8.7.0
- '@typescript-eslint/type-utils@8.7.0(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.7.0(eslint@8.57.1)(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.3)
- '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.7.2)
debug: 4.3.6
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- eslint
- supports-color
@@ -6535,7 +6435,7 @@ snapshots:
'@typescript-eslint/types@8.7.0': {}
- '@typescript-eslint/typescript-estree@7.2.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@7.2.0(typescript@5.7.2)':
dependencies:
'@typescript-eslint/types': 7.2.0
'@typescript-eslint/visitor-keys': 7.2.0
@@ -6544,13 +6444,13 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.7.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.7.0(typescript@5.7.2)':
dependencies:
'@typescript-eslint/types': 8.7.0
'@typescript-eslint/visitor-keys': 8.7.0
@@ -6559,18 +6459,18 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.7.0(eslint@8.57.1)(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.7.0(eslint@8.57.1)(typescript@5.7.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
'@typescript-eslint/scope-manager': 8.7.0
'@typescript-eslint/types': 8.7.0
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.7.2)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
@@ -6614,57 +6514,57 @@ snapshots:
ansi-styles@6.2.1: {}
- antd@5.21.6(date-fns@3.6.0)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ antd@5.22.3(date-fns@3.6.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
'@ant-design/colors': 7.1.0
- '@ant-design/cssinjs': 1.21.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@ant-design/cssinjs-utils': 1.1.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@ant-design/icons': 5.5.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@ant-design/react-slick': 1.1.2(react@19.0.0-rc-5c56b873-20241107)
- '@babel/runtime': 7.25.6
+ '@ant-design/cssinjs': 1.21.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@ant-design/cssinjs-utils': 1.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@ant-design/icons': 5.5.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@ant-design/react-slick': 1.1.2(react@19.0.0)
+ '@babel/runtime': 7.26.0
'@ctrl/tinycolor': 3.6.1
- '@rc-component/color-picker': 2.0.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@rc-component/mutate-observer': 1.1.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@rc-component/qrcode': 1.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@rc-component/tour': 1.15.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@rc-component/color-picker': 2.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rc-component/mutate-observer': 1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rc-component/qrcode': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rc-component/tour': 1.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
copy-to-clipboard: 3.3.3
dayjs: 1.11.13
- rc-cascader: 3.28.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-checkbox: 3.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-collapse: 3.8.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-dialog: 9.6.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-drawer: 7.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-dropdown: 4.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-field-form: 2.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-image: 7.11.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-input: 1.6.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-input-number: 9.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-mentions: 2.16.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-menu: 9.15.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-notification: 5.6.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-pagination: 4.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-picker: 4.6.15(date-fns@3.6.0)(dayjs@1.11.13)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-progress: 4.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-rate: 2.13.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-segmented: 2.5.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-select: 14.15.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-slider: 11.1.7(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-steps: 6.0.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-switch: 4.1.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-table: 7.47.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-tabs: 15.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-textarea: 1.8.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-tooltip: 6.2.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-tree: 5.9.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-tree-select: 5.23.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-upload: 4.8.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-cascader: 3.30.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-checkbox: 3.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-collapse: 3.9.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-dialog: 9.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-drawer: 7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-dropdown: 4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-field-form: 2.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-image: 7.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-input: 1.6.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-input-number: 9.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-mentions: 2.17.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-menu: 9.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-notification: 5.6.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-pagination: 4.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-picker: 4.8.3(date-fns@3.6.0)(dayjs@1.11.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-progress: 4.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-rate: 2.13.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-segmented: 2.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-select: 14.16.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-slider: 11.1.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-steps: 6.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-switch: 4.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-table: 7.49.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-tabs: 15.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-textarea: 1.8.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-tooltip: 6.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-tree: 5.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-tree-select: 5.24.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-upload: 4.8.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
scroll-into-view-if-needed: 3.1.0
throttle-debounce: 5.0.2
transitivePeerDependencies:
@@ -6705,8 +6605,6 @@ snapshots:
array-move@3.0.1: {}
- array-tree-filter@2.1.0: {}
-
array-union@2.1.0: {}
array.prototype.findlast@1.2.5:
@@ -6762,14 +6660,14 @@ snapshots:
ast-types-flow@0.0.8: {}
- autoprefixer@10.4.20(postcss@8.4.47):
+ autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
browserslist: 4.23.3
caniuse-lite: 1.0.30001651
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.1
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -6852,10 +6750,6 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- class-variance-authority@0.7.0:
- dependencies:
- clsx: 2.0.0
-
class-variance-authority@0.7.1:
dependencies:
clsx: 2.1.1
@@ -6870,24 +6764,24 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
- clsx@2.0.0: {}
-
clsx@2.1.1: {}
- cmdk@0.2.1(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ cmdk@0.2.1(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@radix-ui/react-dialog': 1.0.0(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-dialog': 1.0.0(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- cmdk@1.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ cmdk@1.0.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-dialog': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ use-sync-external-store: 1.2.2(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -7014,19 +6908,19 @@ snapshots:
electron-to-chromium@1.5.8: {}
- emblor@1.4.6(@types/react-dom@18.3.1)(@types/react@18.3.12)(postcss@8.4.47)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)(typescript@5.6.3):
+ emblor@1.4.7(@types/react-dom@19.0.1)(@types/react@19.0.1)(postcss@8.4.49)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.2):
dependencies:
- '@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-popover': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-dialog': 1.0.4(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-popover': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0)
class-variance-authority: 0.7.1
clsx: 2.1.1
- cmdk: 0.2.1(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- react-easy-sort: 1.6.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ cmdk: 0.2.1(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ react-easy-sort: 1.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
tailwind-merge: 2.5.5
- tsup: 6.7.0(postcss@8.4.47)(typescript@5.6.3)
+ tsup: 6.7.0(postcss@8.4.49)(typescript@5.7.2)
transitivePeerDependencies:
- '@swc/core'
- '@types/react'
@@ -7166,21 +7060,21 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-next@15.0.3(eslint@8.57.1)(typescript@5.6.3):
+ eslint-config-next@15.0.4(eslint@8.57.1)(typescript@5.7.2):
dependencies:
- '@next/eslint-plugin-next': 15.0.3
+ '@next/eslint-plugin-next': 15.0.4
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.7.2)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
eslint-plugin-react: 7.35.0(eslint@8.57.1)
eslint-plugin-react-hooks: 5.0.0(eslint@8.57.1)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
@@ -7193,13 +7087,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies:
debug: 4.3.6
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.7.6
is-core-module: 2.15.1
@@ -7210,18 +7104,18 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.7.2)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -7232,7 +7126,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -7244,7 +7138,7 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.1)(typescript@5.7.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -7395,7 +7289,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -7446,12 +7340,14 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@11.11.17(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ framer-motion@11.13.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
+ motion-dom: 11.13.0
+ motion-utils: 11.13.0
tslib: 2.6.3
optionalDependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
fs.realpath@1.0.0: {}
@@ -7567,7 +7463,7 @@ snapshots:
heic2any@0.0.4: {}
- hono@4.6.11: {}
+ hono@4.6.13: {}
human-signals@2.1.0: {}
@@ -7587,10 +7483,10 @@ snapshots:
inherits@2.0.4: {}
- input-otp@1.2.4(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ input-otp@1.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
internal-slot@1.0.7:
dependencies:
@@ -7630,10 +7526,6 @@ snapshots:
is-callable@1.2.7: {}
- is-core-module@2.15.0:
- dependencies:
- hasown: 2.0.2
-
is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -7778,7 +7670,7 @@ snapshots:
lilconfig@2.1.0: {}
- lilconfig@3.1.2: {}
+ lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -7804,9 +7696,9 @@ snapshots:
lru-cache@10.4.3: {}
- lucide-react@0.454.0(react@19.0.0-rc-5c56b873-20241107):
+ lucide-react@0.468.0(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
merge-stream@2.0.0: {}
@@ -7817,6 +7709,11 @@ snapshots:
braces: 3.0.3
picomatch: 2.3.1
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
+
mime-db@1.25.0: {}
mime-types@2.1.13:
@@ -7841,6 +7738,10 @@ snapshots:
minipass@7.1.2: {}
+ motion-dom@11.13.0: {}
+
+ motion-utils@11.13.0: {}
+
ms@2.1.2: {}
ms@2.1.3: {}
@@ -7855,46 +7756,46 @@ snapshots:
natural-compare@1.4.0: {}
- next-auth@5.0.0-beta.25(next@15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ next-auth@5.0.0-beta.25(next@15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0):
dependencies:
'@auth/core': 0.37.2
- next: 15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
+ next: 15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
- next-nprogress-bar@2.3.14:
+ next-nprogress-bar@2.3.15:
dependencies:
nprogress: 0.2.0
- next-qrcode@2.5.1(react@19.0.0-rc-5c56b873-20241107):
+ next-qrcode@2.5.1(react@19.0.0):
dependencies:
qrcode: 1.5.4
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
- next-themes@0.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ next-themes@0.4.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- next@15.0.4-canary.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ next@15.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@next/env': 15.0.4-canary.5
+ '@next/env': 15.0.4
'@swc/counter': 0.1.3
'@swc/helpers': 0.5.13
busboy: 1.6.0
caniuse-lite: 1.0.30001651
postcss: 8.4.31
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
- styled-jsx: 5.1.6(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ styled-jsx: 5.1.6(react@19.0.0)
optionalDependencies:
- '@next/swc-darwin-arm64': 15.0.4-canary.5
- '@next/swc-darwin-x64': 15.0.4-canary.5
- '@next/swc-linux-arm64-gnu': 15.0.4-canary.5
- '@next/swc-linux-arm64-musl': 15.0.4-canary.5
- '@next/swc-linux-x64-gnu': 15.0.4-canary.5
- '@next/swc-linux-x64-musl': 15.0.4-canary.5
- '@next/swc-win32-arm64-msvc': 15.0.4-canary.5
- '@next/swc-win32-x64-msvc': 15.0.4-canary.5
+ '@next/swc-darwin-arm64': 15.0.4
+ '@next/swc-darwin-x64': 15.0.4
+ '@next/swc-linux-arm64-gnu': 15.0.4
+ '@next/swc-linux-arm64-musl': 15.0.4
+ '@next/swc-linux-x64-gnu': 15.0.4
+ '@next/swc-linux-x64-musl': 15.0.4
+ '@next/swc-win32-arm64-msvc': 15.0.4
+ '@next/swc-win32-x64-msvc': 15.0.4
sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
@@ -7971,7 +7872,7 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- otpauth@9.3.4:
+ otpauth@9.3.5:
dependencies:
'@noble/hashes': 1.5.0
@@ -8018,6 +7919,8 @@ snapshots:
picocolors@1.1.0: {}
+ picocolors@1.1.1: {}
+
picomatch@2.3.1: {}
pify@2.3.0: {}
@@ -8028,35 +7931,35 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-import@15.1.0(postcss@8.4.47):
+ postcss-import@15.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.47):
+ postcss-js@4.0.1(postcss@8.4.49):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-load-config@3.1.4(postcss@8.4.47):
+ postcss-load-config@3.1.4(postcss@8.4.49):
dependencies:
lilconfig: 2.1.0
yaml: 1.10.2
optionalDependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-load-config@4.0.2(postcss@8.4.47):
+ postcss-load-config@4.0.2(postcss@8.4.49):
dependencies:
- lilconfig: 3.1.2
+ lilconfig: 3.1.3
yaml: 2.5.0
optionalDependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
- postcss-nested@6.2.0(postcss@8.4.47):
+ postcss-nested@6.2.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.47
+ postcss: 8.4.49
postcss-selector-parser: 6.1.2
postcss-selector-parser@6.1.2:
@@ -8072,10 +7975,10 @@ snapshots:
picocolors: 1.1.0
source-map-js: 1.2.1
- postcss@8.4.47:
+ postcss@8.4.49:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
preact-render-to-string@5.2.3(preact@10.11.3):
@@ -8083,15 +7986,21 @@ snapshots:
preact: 10.11.3
pretty-format: 3.8.0
+ preact-render-to-string@6.5.11(preact@10.24.3):
+ dependencies:
+ preact: 10.24.3
+
preact@10.11.3: {}
+ preact@10.24.3: {}
+
prelude-ls@1.2.1: {}
pretty-format@3.8.0: {}
- prisma@5.21.1:
+ prisma@5.22.0:
dependencies:
- '@prisma/engines': 5.21.1
+ '@prisma/engines': 5.22.0
optionalDependencies:
fsevents: 2.3.3
@@ -8111,414 +8020,413 @@ snapshots:
queue-microtask@1.2.3: {}
- rc-cascader@3.28.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-cascader@3.30.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- array-tree-filter: 2.1.0
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-select: 14.15.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-tree: 5.9.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-select: 14.16.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-tree: 5.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-checkbox@3.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-checkbox@3.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-collapse@3.8.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-collapse@3.9.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-dialog@9.6.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-dialog@9.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/portal': 1.1.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/portal': 1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-drawer@7.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-drawer@7.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/portal': 1.1.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/portal': 1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-dropdown@4.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-dropdown@4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-field-form@2.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-field-form@2.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@rc-component/async-validator': 5.0.4
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-image@7.11.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-image@7.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/portal': 1.1.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/portal': 1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-dialog: 9.6.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-dialog: 9.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-input-number@9.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-input-number@9.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@rc-component/mini-decimal': 1.1.0
classnames: 2.5.1
- rc-input: 1.6.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-input: 1.6.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-input@1.6.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-input@1.6.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-mentions@2.16.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-mentions@2.17.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-input: 1.6.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-menu: 9.15.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-textarea: 1.8.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-input: 1.6.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-menu: 9.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-textarea: 1.8.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-menu@9.15.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-menu@9.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-overflow: 1.3.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-overflow: 1.3.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-motion@2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-motion@2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-notification@5.6.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-notification@5.6.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-overflow@1.3.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-overflow@1.3.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-pagination@4.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-pagination@4.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-picker@4.6.15(date-fns@3.6.0)(dayjs@1.11.13)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-picker@4.8.3(date-fns@3.6.0)(dayjs@1.11.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-overflow: 1.3.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-overflow: 1.3.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
optionalDependencies:
date-fns: 3.6.0
dayjs: 1.11.13
- rc-progress@4.0.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-progress@4.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-rate@2.13.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-rate@2.13.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-resize-observer@1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-resize-observer@1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
resize-observer-polyfill: 1.5.1
- rc-segmented@2.5.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-segmented@2.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-select@14.15.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-select@14.16.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-overflow: 1.3.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-virtual-list: 3.14.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-overflow: 1.3.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-virtual-list: 3.14.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-slider@11.1.7(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-slider@11.1.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-steps@6.0.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-steps@6.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-switch@4.1.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-switch@4.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-table@7.47.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-table@7.49.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/context': 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/context': 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-virtual-list: 3.14.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-virtual-list: 3.14.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-tabs@15.3.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-tabs@15.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-dropdown: 4.2.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-menu: 9.15.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-dropdown: 4.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-menu: 9.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-textarea@1.8.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-textarea@1.8.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-input: 1.6.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-input: 1.6.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-tooltip@6.2.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-tooltip@6.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- '@rc-component/trigger': 2.2.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ '@rc-component/trigger': 2.2.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
classnames: 2.5.1
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-tree-select@5.23.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-tree-select@5.24.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-select: 14.15.2(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-tree: 5.9.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-select: 14.16.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-tree: 5.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-tree@5.9.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-tree@5.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-motion: 2.9.3(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-virtual-list: 3.14.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-motion: 2.9.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-virtual-list: 3.14.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-upload@4.8.1(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-upload@4.8.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- rc-util@5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-util@5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@babel/runtime': 7.26.0
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
react-is: 18.3.1
- rc-virtual-list@3.14.5(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ rc-virtual-list@3.14.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
classnames: 2.5.1
- rc-resize-observer: 1.4.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- rc-util: 5.43.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ rc-resize-observer: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ rc-util: 5.43.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
- react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107):
+ react-dom@19.0.0(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- scheduler: 0.25.0-rc-5c56b873-20241107
+ react: 19.0.0
+ scheduler: 0.25.0
- react-easy-sort@1.6.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ react-easy-sort@1.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
array-move: 3.0.1
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
tslib: 2.0.1
- react-hook-form@7.53.1(react@19.0.0-rc-5c56b873-20241107):
+ react-hook-form@7.54.0(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
react-is@16.13.1: {}
react-is@18.3.1: {}
- react-photo-album@3.0.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-photo-album@3.0.2(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react-remove-scroll-bar@2.3.6(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-remove-scroll-bar@2.3.6(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-style-singleton: 2.2.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0)
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react-remove-scroll@2.5.4(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-remove-scroll@2.5.4(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react-style-singleton: 2.2.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.6(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0)
tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- use-sidecar: 1.1.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ use-callback-ref: 1.3.2(@types/react@19.0.1)(react@19.0.0)
+ use-sidecar: 1.1.2(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react-remove-scroll@2.5.5(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-remove-scroll@2.5.5(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react-style-singleton: 2.2.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.6(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0)
tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- use-sidecar: 1.1.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ use-callback-ref: 1.3.2(@types/react@19.0.1)(react@19.0.0)
+ use-sidecar: 1.1.2(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react-remove-scroll@2.5.7(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-remove-scroll@2.5.7(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react-style-singleton: 2.2.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.6(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0)
tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- use-sidecar: 1.1.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ use-callback-ref: 1.3.2(@types/react@19.0.1)(react@19.0.0)
+ use-sidecar: 1.1.2(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react-remove-scroll@2.6.0(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-remove-scroll@2.6.0(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- react-style-singleton: 2.2.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-remove-scroll-bar: 2.3.6(@types/react@19.0.1)(react@19.0.0)
+ react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0)
tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
- use-sidecar: 1.1.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107)
+ use-callback-ref: 1.3.2(@types/react@19.0.1)(react@19.0.0)
+ use-sidecar: 1.1.2(@types/react@19.0.1)(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react-style-singleton@2.2.1(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ react-style-singleton@2.2.1(@types/react@19.0.1)(react@19.0.0):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- react@19.0.0-rc-5c56b873-20241107: {}
+ react@19.0.0: {}
read-cache@1.0.0:
dependencies:
@@ -8561,7 +8469,7 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -8603,7 +8511,7 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.1.4
- scheduler@0.25.0-rc-5c56b873-20241107: {}
+ scheduler@0.25.0: {}
scroll-into-view-if-needed@3.1.0:
dependencies:
@@ -8682,10 +8590,10 @@ snapshots:
slash@3.0.0: {}
- sonner@1.5.0(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ sonner@1.7.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
source-map-js@1.2.1: {}
@@ -8770,10 +8678,10 @@ snapshots:
strnum@1.0.5: {}
- styled-jsx@5.1.6(react@19.0.0-rc-5c56b873-20241107):
+ styled-jsx@5.1.6(react@19.0.0):
dependencies:
client-only: 0.0.1
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
stylis@4.3.4: {}
@@ -8793,23 +8701,21 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- swr@2.2.5(react@19.0.0-rc-5c56b873-20241107):
+ swr@2.2.5(react@19.0.0):
dependencies:
client-only: 0.0.1
- react: 19.0.0-rc-5c56b873-20241107
- use-sync-external-store: 1.2.2(react@19.0.0-rc-5c56b873-20241107)
-
- tailwind-merge@2.5.4: {}
+ react: 19.0.0
+ use-sync-external-store: 1.2.2(react@19.0.0)
tailwind-merge@2.5.5: {}
tailwind-scrollbar-hide@1.1.7: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.14):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.16):
dependencies:
- tailwindcss: 3.4.14
+ tailwindcss: 3.4.16
- tailwindcss@3.4.14:
+ tailwindcss@3.4.16:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -8820,16 +8726,16 @@ snapshots:
glob-parent: 6.0.2
is-glob: 4.0.3
jiti: 1.21.6
- lilconfig: 2.1.0
- micromatch: 4.0.7
+ lilconfig: 3.1.3
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.1.0
- postcss: 8.4.47
- postcss-import: 15.1.0(postcss@8.4.47)
- postcss-js: 4.0.1(postcss@8.4.47)
- postcss-load-config: 4.0.2(postcss@8.4.47)
- postcss-nested: 6.2.0(postcss@8.4.47)
+ picocolors: 1.1.1
+ postcss: 8.4.49
+ postcss-import: 15.1.0(postcss@8.4.49)
+ postcss-js: 4.0.1(postcss@8.4.49)
+ postcss-load-config: 4.0.2(postcss@8.4.49)
+ postcss-nested: 6.2.0(postcss@8.4.49)
postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
@@ -8862,9 +8768,9 @@ snapshots:
tree-kill@1.2.2: {}
- ts-api-utils@1.3.0(typescript@5.6.3):
+ ts-api-utils@1.3.0(typescript@5.7.2):
dependencies:
- typescript: 5.6.3
+ typescript: 5.7.2
ts-interface-checker@0.1.13: {}
@@ -8879,7 +8785,7 @@ snapshots:
tslib@2.6.3: {}
- tsup@6.7.0(postcss@8.4.47)(typescript@5.6.3):
+ tsup@6.7.0(postcss@8.4.49)(typescript@5.7.2):
dependencies:
bundle-require: 4.2.1(esbuild@0.17.19)
cac: 6.7.14
@@ -8889,15 +8795,15 @@ snapshots:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 3.1.4(postcss@8.4.47)
+ postcss-load-config: 3.1.4(postcss@8.4.49)
resolve-from: 5.0.0
rollup: 3.29.5
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
optionalDependencies:
- postcss: 8.4.47
- typescript: 5.6.3
+ postcss: 8.4.49
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- ts-node
@@ -8940,7 +8846,7 @@ snapshots:
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- typescript@5.6.3: {}
+ typescript@5.7.2: {}
unbox-primitive@1.0.2:
dependencies:
@@ -8961,34 +8867,34 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ use-callback-ref@1.3.2(@types/react@19.0.1)(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- use-sidecar@1.1.2(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ use-sidecar@1.1.2(@types/react@19.0.1)(react@19.0.0):
dependencies:
detect-node-es: 1.1.0
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.12
+ '@types/react': 19.0.1
- use-sync-external-store@1.2.2(react@19.0.0-rc-5c56b873-20241107):
+ use-sync-external-store@1.2.2(react@19.0.0):
dependencies:
- react: 19.0.0-rc-5c56b873-20241107
+ react: 19.0.0
util-deprecate@1.0.2: {}
uuid@9.0.1: {}
- vaul@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107):
+ vaul@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107))(react@19.0.0-rc-5c56b873-20241107)
- react: 19.0.0-rc-5c56b873-20241107
- react-dom: 19.0.0-rc-5c56b873-20241107(react@19.0.0-rc-5c56b873-20241107)
+ '@radix-ui/react-dialog': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -9098,9 +9004,9 @@ snapshots:
zod@3.23.8: {}
- zustand@4.5.5(@types/react@18.3.12)(react@19.0.0-rc-5c56b873-20241107):
+ zustand@4.5.5(@types/react@19.0.1)(react@19.0.0):
dependencies:
- use-sync-external-store: 1.2.2(react@19.0.0-rc-5c56b873-20241107)
+ use-sync-external-store: 1.2.2(react@19.0.0)
optionalDependencies:
- '@types/react': 18.3.12
- react: 19.0.0-rc-5c56b873-20241107
+ '@types/react': 19.0.1
+ react: 19.0.0
diff --git a/server/db/operate.ts b/server/db/operate.ts
index 272e3e0f..dece3c88 100644
--- a/server/db/operate.ts
+++ b/server/db/operate.ts
@@ -374,7 +374,26 @@ export async function updateCopyrightShow(id: string, show: number) {
})
}
-export async function updateCustomInfo(title: string, customFaviconUrl: string, customAuthor: string, feedId: string, userId: string) {
+export async function updateCustomInfo(payload: {
+ title: string
+ customFaviconUrl: string
+ customAuthor: string
+ feedId: string
+ userId: string
+ enablePreviewImageMaxWidthLimit?: boolean
+ previewImageMaxWidth?: number
+ previewQuality?: number
+}) {
+ const {
+ title,
+ customFaviconUrl,
+ customAuthor,
+ feedId,
+ userId,
+ enablePreviewImageMaxWidthLimit,
+ previewImageMaxWidth,
+ previewQuality,
+ } = payload
await db.$transaction(async (tx) => {
await tx.configs.update({
where: {
@@ -421,6 +440,39 @@ export async function updateCustomInfo(title: string, customFaviconUrl: string,
updatedAt: new Date()
}
})
+ if (typeof enablePreviewImageMaxWidthLimit === 'boolean') {
+ await tx.configs.update({
+ where: {
+ config_key: 'preview_max_width_limit_switch'
+ },
+ data: {
+ config_value: enablePreviewImageMaxWidthLimit ? '1' : '0',
+ updatedAt: new Date(),
+ }
+ })
+ }
+ if (typeof previewImageMaxWidth === 'number' && previewImageMaxWidth > 0) {
+ await tx.configs.update({
+ where: {
+ config_key: 'preview_max_width_limit'
+ },
+ data: {
+ config_value: previewImageMaxWidth.toString(),
+ updatedAt: new Date(),
+ }
+ })
+ }
+ if (typeof previewQuality === 'number' && previewQuality > 0) {
+ await tx.configs.update({
+ where: {
+ config_key: 'preview_quality'
+ },
+ data: {
+ config_value: previewQuality.toString(),
+ updatedAt: new Date(),
+ }
+ })
+ }
})
}
@@ -489,4 +541,4 @@ export async function deleteAuthSecret() {
}
})
})
-}
\ No newline at end of file
+}