chore: upgrade npm dependencies in apps/web (#5669)

This commit is contained in:
Matti Nannt
2025-05-05 23:44:14 +02:00
committed by GitHub
parent bd22aaaa86
commit 3b1cddb9ce
5 changed files with 1413 additions and 1752 deletions

View File

@@ -196,8 +196,12 @@ export const UploadContactsCSVButton = ({
}
if (result?.validationErrors) {
if (result.validationErrors.csvData?._errors?.[0]) {
setErrror(result.validationErrors.csvData._errors?.[0]);
const csvDataErrors = Array.isArray(result.validationErrors.csvData)
? result.validationErrors.csvData[0]?._errors?.[0]
: result.validationErrors.csvData?._errors?.[0];
if (csvDataErrors) {
setErrror(csvDataErrors);
} else {
setErrror("An error occurred while uploading the contacts. Please try again later.");
}
@@ -293,7 +297,7 @@ export const UploadContactsCSVButton = ({
<div className="sticky top-0 flex h-full flex-col rounded-lg">
<button
className={cn(
"absolute top-0 right-0 hidden pt-4 pr-4 text-slate-400 hover:text-slate-500 focus:ring-0 focus:outline-none sm:block"
"absolute right-0 top-0 hidden pr-4 pt-4 text-slate-400 hover:text-slate-500 focus:outline-none focus:ring-0 sm:block"
)}
onClick={() => {
resetState(true);
@@ -339,7 +343,7 @@ export const UploadContactsCSVButton = ({
)}
onDragOver={(e) => handleDragOver(e)}
onDrop={(e) => handleDrop(e)}>
<div className="flex flex-col items-center justify-center pt-5 pb-6">
<div className="flex flex-col items-center justify-center pb-6 pt-5">
<ArrowUpFromLineIcon className="h-6 text-slate-500" />
<p className={cn("mt-2 text-center text-sm text-slate-500")}>
<span className="font-semibold">{t("common.upload_input_description")}</span>

View File

@@ -17,10 +17,10 @@
"generate-and-merge-api-specs": "npm run generate-api-specs && npm run merge-client-endpoints"
},
"dependencies": {
"@aws-sdk/client-s3": "3.782.0",
"@aws-sdk/s3-presigned-post": "3.782.0",
"@aws-sdk/s3-request-presigner": "3.782.0",
"@boxyhq/saml-jackson": "1.45.0",
"@aws-sdk/client-s3": "3.802.0",
"@aws-sdk/s3-presigned-post": "3.802.0",
"@aws-sdk/s3-request-presigner": "3.802.0",
"@boxyhq/saml-jackson": "1.45.2",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
@@ -34,13 +34,13 @@
"@hookform/resolvers": "5.0.1",
"@intercom/messenger-js-sdk": "0.0.14",
"@json2csv/node": "7.0.6",
"@lexical/code": "0.30.0",
"@lexical/link": "0.30.0",
"@lexical/list": "0.30.0",
"@lexical/markdown": "0.30.0",
"@lexical/react": "0.30.0",
"@lexical/rich-text": "0.30.0",
"@lexical/table": "0.30.0",
"@lexical/code": "0.31.0",
"@lexical/link": "0.31.0",
"@lexical/list": "0.31.0",
"@lexical/markdown": "0.31.0",
"@lexical/react": "0.31.0",
"@lexical/rich-text": "0.31.0",
"@lexical/table": "0.31.0",
"@opentelemetry/api-logs": "0.56.0",
"@opentelemetry/exporter-prometheus": "0.57.2",
"@opentelemetry/host-metrics": "0.35.5",
@@ -51,36 +51,36 @@
"@opentelemetry/sdk-metrics": "1.30.1",
"@paralleldrive/cuid2": "2.2.2",
"@prisma/client": "6.7.0",
"@radix-ui/react-accordion": "1.2.4",
"@radix-ui/react-checkbox": "1.1.5",
"@radix-ui/react-collapsible": "1.1.4",
"@radix-ui/react-dialog": "1.1.7",
"@radix-ui/react-dropdown-menu": "2.1.7",
"@radix-ui/react-label": "2.1.3",
"@radix-ui/react-popover": "1.1.7",
"@radix-ui/react-radio-group": "1.2.4",
"@radix-ui/react-select": "2.1.7",
"@radix-ui/react-separator": "1.1.3",
"@radix-ui/react-slider": "1.2.4",
"@radix-ui/react-accordion": "1.2.9",
"@radix-ui/react-checkbox": "1.3.0",
"@radix-ui/react-collapsible": "1.1.9",
"@radix-ui/react-dialog": "1.1.12",
"@radix-ui/react-dropdown-menu": "2.1.13",
"@radix-ui/react-label": "2.1.5",
"@radix-ui/react-popover": "1.1.12",
"@radix-ui/react-radio-group": "1.3.5",
"@radix-ui/react-select": "2.2.3",
"@radix-ui/react-separator": "1.1.5",
"@radix-ui/react-slider": "1.3.3",
"@radix-ui/react-slot": "1.2.0",
"@radix-ui/react-switch": "1.1.4",
"@radix-ui/react-tabs": "1.1.4",
"@radix-ui/react-toggle": "1.1.3",
"@radix-ui/react-toggle-group": "1.1.3",
"@radix-ui/react-tooltip": "1.2.0",
"@react-email/components": "0.0.36",
"@sentry/nextjs": "9.12.0",
"@t3-oss/env-nextjs": "0.12.0",
"@radix-ui/react-switch": "1.2.3",
"@radix-ui/react-tabs": "1.1.10",
"@radix-ui/react-toggle": "1.1.7",
"@radix-ui/react-toggle-group": "1.1.8",
"@radix-ui/react-tooltip": "1.2.5",
"@react-email/components": "0.0.38",
"@sentry/nextjs": "9.15.0",
"@t3-oss/env-nextjs": "0.13.4",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/typography": "0.5.16",
"@tanstack/react-table": "8.21.2",
"@tanstack/react-table": "8.21.3",
"@testing-library/jest-dom": "6.6.3",
"@tolgee/cli": "2.10.2",
"@tolgee/format-icu": "6.2.4",
"@tolgee/react": "6.2.4",
"@ungap/structured-clone": "1.3.0",
"@unkey/ratelimit": "0.5.5",
"@vercel/functions": "2.0.0",
"@vercel/functions": "2.0.1",
"@vercel/og": "0.6.8",
"autoprefixer": "10.4.21",
"bcryptjs": "3.0.2",
@@ -90,40 +90,40 @@
"cmdk": "1.1.1",
"csv-parse": "5.6.0",
"date-fns": "4.1.0",
"dotenv": "16.4.7",
"dotenv": "16.5.0",
"file-loader": "6.2.0",
"framer-motion": "12.6.3",
"framer-motion": "12.9.7",
"googleapis": "148.0.0",
"heic-convert": "2.1.0",
"https-proxy-agent": "7.0.6",
"jiti": "2.4.2",
"jsonwebtoken": "9.0.2",
"lexical": "0.30.0",
"lexical": "0.31.0",
"lodash": "4.17.21",
"lru-cache": "11.1.0",
"lucide-react": "0.487.0",
"lucide-react": "0.507.0",
"markdown-it": "14.1.0",
"mime-types": "3.0.1",
"nanoid": "5.1.5",
"next": "15.2.5",
"next": "15.3.1",
"next-auth": "4.24.11",
"next-safe-action": "7.10.5",
"next-safe-action": "7.10.8",
"node-fetch": "3.3.2",
"nodemailer": "6.10.0",
"nodemailer": "7.0.2",
"otplib": "12.0.1",
"papaparse": "5.5.2",
"postcss": "8.5.3",
"posthog-js": "1.235.0",
"posthog-node": "4.11.3",
"posthog-js": "1.239.1",
"posthog-node": "4.17.1",
"prismjs": "1.30.0",
"qrcode": "1.5.4",
"qr-code-styling": "1.9.1",
"qr-code-styling": "1.9.2",
"react": "19.1.0",
"react-colorful": "5.6.1",
"react-confetti": "6.4.0",
"react-day-picker": "9.6.5",
"react-day-picker": "9.6.7",
"react-dom": "19.1.0",
"react-hook-form": "7.55.0",
"react-hook-form": "7.56.2",
"react-hot-toast": "2.5.2",
"react-turnstile": "1.1.4",
"react-use": "17.6.0",
@@ -136,7 +136,7 @@
"tailwindcss": "3.4.16",
"ua-parser-js": "2.0.3",
"uuid": "11.1.0",
"webpack": "5.99.5",
"webpack": "5.99.7",
"xlsx": "0.18.5",
"zod": "3.24.1",
"zod-openapi": "4.2.4"
@@ -145,11 +145,11 @@
"@formbricks/config-typescript": "workspace:*",
"@formbricks/eslint-config": "workspace:*",
"@neshca/cache-handler": "1.9.0",
"@testing-library/react": "16.2.0",
"@testing-library/react": "16.3.0",
"@types/bcryptjs": "2.4.6",
"@types/heic-convert": "2.1.0",
"@types/jsonwebtoken": "9.0.9",
"@types/lodash": "4.17.13",
"@types/lodash": "4.17.16",
"@types/markdown-it": "14.1.2",
"@types/mime-types": "2.1.4",
"@types/nodemailer": "6.4.17",
@@ -157,13 +157,13 @@
"@types/qrcode": "1.5.5",
"@types/testing-library__react": "10.2.0",
"@types/ungap__structured-clone": "1.2.0",
"@vitest/coverage-v8": "3.1.1",
"dotenv": "16.4.7",
"@vitest/coverage-v8": "3.1.3",
"dotenv": "16.5.0",
"ts-node": "10.9.2",
"resize-observer-polyfill": "1.5.1",
"vite": "6.3.5",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.3",
"vitest-mock-extended": "3.0.1"
"vitest-mock-extended": "3.1.0"
}
}

View File

@@ -7,9 +7,9 @@
"clean": "rimraf node_modules dist turbo"
},
"devDependencies": {
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.2",
"@types/node": "22.15.3",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.3",
"typescript": "5.8.3"
}
}

View File

@@ -34,7 +34,7 @@
"devDependencies": {
"vite": "6.3.5",
"@formbricks/config-typescript": "workspace:*",
"vitest": "3.1.1",
"vitest": "3.1.3",
"@formbricks/eslint-config": "workspace:*",
"vite-plugin-dts": "4.5.3"
}

3045
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff