mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-22 19:39:01 -05:00
chore: update all npm dependencies (#4486)
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com> Co-authored-by: Anshuman Pandey <54475686+pandeymangg@users.noreply.github.com>
This commit is contained in:
@@ -51,7 +51,9 @@ export const POST = async (request: Request, context: Context): Promise<Response
|
||||
);
|
||||
}
|
||||
|
||||
const agent = UAParser(request.headers.get("user-agent"));
|
||||
const userAgent = request.headers.get("user-agent") || undefined;
|
||||
const agent = new UAParser(userAgent);
|
||||
|
||||
const country =
|
||||
requestHeaders.get("CF-IPCountry") ||
|
||||
requestHeaders.get("X-Vercel-IP-Country") ||
|
||||
@@ -89,9 +91,9 @@ export const POST = async (request: Request, context: Context): Promise<Response
|
||||
source: responseInputData?.meta?.source,
|
||||
url: responseInputData?.meta?.url,
|
||||
userAgent: {
|
||||
browser: agent?.browser.name,
|
||||
device: agent?.device.type || "desktop",
|
||||
os: agent?.os.name,
|
||||
browser: agent.getBrowser().name,
|
||||
device: agent.getDevice().type || "desktop",
|
||||
os: agent.getOS().name,
|
||||
},
|
||||
country: country,
|
||||
action: responseInputData?.meta?.action,
|
||||
|
||||
@@ -11,7 +11,7 @@ type SurveyLinkUsedProps = {
|
||||
singleUseMessage: TSurveySingleUse | null;
|
||||
};
|
||||
|
||||
export const SurveyLinkUsed = async ({ singleUseMessage }: SurveyLinkUsedProps) => {
|
||||
export const SurveyLinkUsed = ({ singleUseMessage }: SurveyLinkUsedProps) => {
|
||||
const t = useTranslations();
|
||||
const defaultHeading = t("s.survey_already_answered_heading");
|
||||
const defaultSubheading = t("s.survey_already_answered_subheading");
|
||||
|
||||
@@ -527,8 +527,11 @@ export const ToolbarPlugin = (props: TextEditorProps & { container: HTMLElement
|
||||
className={isLink ? "bg-subtle active-button" : "inactive-button"}>
|
||||
<Link />
|
||||
</Button>
|
||||
{isLink &&
|
||||
createPortal(<FloatingLinkEditor editor={editor} />, props.container ?? document.body)}{" "}
|
||||
{isLink ? (
|
||||
createPortal(<FloatingLinkEditor editor={editor} />, props.container ?? document.body)
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</>
|
||||
|
||||
+69
-69
@@ -12,10 +12,10 @@
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ai-sdk/azure": "0.0.52",
|
||||
"@dnd-kit/core": "6.1.0",
|
||||
"@dnd-kit/modifiers": "7.0.0",
|
||||
"@dnd-kit/sortable": "8.0.0",
|
||||
"@ai-sdk/azure": "1.0.10",
|
||||
"@dnd-kit/core": "6.3.1",
|
||||
"@dnd-kit/modifiers": "9.0.0",
|
||||
"@dnd-kit/sortable": "10.0.0",
|
||||
"@dnd-kit/utilities": "3.2.2",
|
||||
"@formbricks/api": "workspace:*",
|
||||
"@formbricks/database": "workspace:*",
|
||||
@@ -24,107 +24,107 @@
|
||||
"@formbricks/lib": "workspace:*",
|
||||
"@formbricks/surveys": "workspace:*",
|
||||
"@formbricks/types": "workspace:*",
|
||||
"@hookform/resolvers": "3.9.0",
|
||||
"@hookform/resolvers": "3.9.1",
|
||||
"@intercom/messenger-js-sdk": "0.0.14",
|
||||
"@json2csv/node": "7.0.6",
|
||||
"@lexical/code": "0.17.0",
|
||||
"@lexical/link": "0.17.0",
|
||||
"@lexical/list": "0.17.0",
|
||||
"@lexical/markdown": "0.17.0",
|
||||
"@lexical/react": "0.17.0",
|
||||
"@lexical/rich-text": "0.17.0",
|
||||
"@lexical/table": "0.17.0",
|
||||
"@opentelemetry/api-logs": "0.53.0",
|
||||
"@opentelemetry/instrumentation": "0.53.0",
|
||||
"@opentelemetry/sdk-logs": "0.53.0",
|
||||
"@lexical/code": "0.21.0",
|
||||
"@lexical/link": "0.21.0",
|
||||
"@lexical/list": "0.21.0",
|
||||
"@lexical/markdown": "0.21.0",
|
||||
"@lexical/react": "0.21.0",
|
||||
"@lexical/rich-text": "0.21.0",
|
||||
"@lexical/table": "0.21.0",
|
||||
"@opentelemetry/api-logs": "0.56.0",
|
||||
"@opentelemetry/instrumentation": "0.56.0",
|
||||
"@opentelemetry/sdk-logs": "0.56.0",
|
||||
"@paralleldrive/cuid2": "2.2.2",
|
||||
"@prisma/client": "5.20.0",
|
||||
"@radix-ui/react-accordion": "1.2.0",
|
||||
"@radix-ui/react-checkbox": "1.1.1",
|
||||
"@radix-ui/react-collapsible": "1.1.1",
|
||||
"@radix-ui/react-dialog": "1.1.1",
|
||||
"@radix-ui/react-dropdown-menu": "2.1.1",
|
||||
"@radix-ui/react-label": "2.1.0",
|
||||
"@radix-ui/react-popover": "1.1.1",
|
||||
"@radix-ui/react-radio-group": "1.2.0",
|
||||
"@radix-ui/react-select": "2.1.1",
|
||||
"@radix-ui/react-separator": "1.1.0",
|
||||
"@radix-ui/react-slider": "1.2.0",
|
||||
"@radix-ui/react-slot": "1.1.0",
|
||||
"@radix-ui/react-switch": "1.1.0",
|
||||
"@radix-ui/react-tabs": "1.1.1",
|
||||
"@radix-ui/react-toggle": "1.1.0",
|
||||
"@radix-ui/react-toggle-group": "1.1.0",
|
||||
"@radix-ui/react-tooltip": "1.1.2",
|
||||
"@react-email/components": "0.0.25",
|
||||
"@sentry/nextjs": "8.34.0",
|
||||
"@prisma/client": "6.0.1",
|
||||
"@radix-ui/react-accordion": "1.2.2",
|
||||
"@radix-ui/react-checkbox": "1.1.3",
|
||||
"@radix-ui/react-collapsible": "1.1.2",
|
||||
"@radix-ui/react-dialog": "1.1.3",
|
||||
"@radix-ui/react-dropdown-menu": "2.1.3",
|
||||
"@radix-ui/react-label": "2.1.1",
|
||||
"@radix-ui/react-popover": "1.1.3",
|
||||
"@radix-ui/react-radio-group": "1.2.2",
|
||||
"@radix-ui/react-select": "2.1.3",
|
||||
"@radix-ui/react-separator": "1.1.1",
|
||||
"@radix-ui/react-slider": "1.2.2",
|
||||
"@radix-ui/react-slot": "1.1.1",
|
||||
"@radix-ui/react-switch": "1.1.2",
|
||||
"@radix-ui/react-tabs": "1.1.2",
|
||||
"@radix-ui/react-toggle": "1.1.1",
|
||||
"@radix-ui/react-toggle-group": "1.1.1",
|
||||
"@radix-ui/react-tooltip": "1.1.5",
|
||||
"@react-email/components": "0.0.31",
|
||||
"@sentry/nextjs": "8.45.1",
|
||||
"@tailwindcss/forms": "0.5.9",
|
||||
"@tailwindcss/typography": "0.5.13",
|
||||
"@tanstack/react-table": "8.20.5",
|
||||
"@vercel/functions": "1.5.0",
|
||||
"@vercel/og": "0.6.3",
|
||||
"@tailwindcss/typography": "0.5.15",
|
||||
"@tanstack/react-table": "8.20.6",
|
||||
"@vercel/functions": "1.5.2",
|
||||
"@vercel/og": "0.6.4",
|
||||
"@vercel/otel": "1.10.0",
|
||||
"@vercel/speed-insights": "1.0.12",
|
||||
"ai": "3.4.33",
|
||||
"@vercel/speed-insights": "1.1.0",
|
||||
"ai": "4.0.18",
|
||||
"autoprefixer": "10.4.20",
|
||||
"bcryptjs": "2.4.3",
|
||||
"boring-avatars": "1.10.2",
|
||||
"class-variance-authority": "0.7.0",
|
||||
"boring-avatars": "1.11.2",
|
||||
"class-variance-authority": "0.7.1",
|
||||
"clsx": "2.1.1",
|
||||
"cmdk": "1.0.0",
|
||||
"csv-parse": "5.5.6",
|
||||
"dotenv": "16.4.5",
|
||||
"cmdk": "1.0.4",
|
||||
"csv-parse": "5.6.0",
|
||||
"dotenv": "16.4.7",
|
||||
"encoding": "0.1.13",
|
||||
"file-loader": "6.2.0",
|
||||
"framer-motion": "11.11.8",
|
||||
"framer-motion": "11.15.0",
|
||||
"googleapis": "144.0.0",
|
||||
"https-proxy-agent": "7.0.5",
|
||||
"jiti": "2.3.3",
|
||||
"https-proxy-agent": "7.0.6",
|
||||
"jiti": "2.4.1",
|
||||
"jsonwebtoken": "9.0.2",
|
||||
"langfuse-vercel": "3.27.0",
|
||||
"lexical": "0.17.0",
|
||||
"langfuse-vercel": "3.31.3",
|
||||
"lexical": "0.21.0",
|
||||
"lodash": "4.17.21",
|
||||
"lru-cache": "11.0.1",
|
||||
"lucide-react": "0.452.0",
|
||||
"lru-cache": "11.0.2",
|
||||
"lucide-react": "0.468.0",
|
||||
"mime": "4.0.4",
|
||||
"next": "15.1.0",
|
||||
"next-auth": "4.24.10",
|
||||
"next-intl": "3.20.0",
|
||||
"next-safe-action": "7.10.1",
|
||||
"next-auth": "4.24.11",
|
||||
"next-intl": "3.26.1",
|
||||
"next-safe-action": "7.10.2",
|
||||
"optional": "0.1.4",
|
||||
"otplib": "12.0.1",
|
||||
"papaparse": "5.4.1",
|
||||
"posthog-js": "1.167.0",
|
||||
"posthog-js": "1.200.2",
|
||||
"prismjs": "1.29.0",
|
||||
"react": "19.0.0",
|
||||
"react-colorful": "5.6.1",
|
||||
"react-confetti": "6.1.0",
|
||||
"react-day-picker": "9.0.8",
|
||||
"react-day-picker": "9.4.4",
|
||||
"react-dom": "19.0.0",
|
||||
"react-hook-form": "7.53.0",
|
||||
"react-hook-form": "7.54.1",
|
||||
"react-hot-toast": "2.4.1",
|
||||
"react-icons": "5.3.0",
|
||||
"react-icons": "5.4.0",
|
||||
"react-radio-group": "3.0.3",
|
||||
"react-use": "17.5.1",
|
||||
"react-use": "17.6.0",
|
||||
"redis": "4.7.0",
|
||||
"sharp": "0.33.5",
|
||||
"stripe": "16.7.0",
|
||||
"tailwind-merge": "2.5.2",
|
||||
"tailwindcss": "3.4.13",
|
||||
"ua-parser-js": "1.0.39",
|
||||
"webpack": "5.95.0",
|
||||
"tailwind-merge": "2.5.5",
|
||||
"tailwindcss": "3.4.16",
|
||||
"ua-parser-js": "2.0.0",
|
||||
"webpack": "5.97.1",
|
||||
"xlsx": "0.18.5",
|
||||
"zod": "3.23.8"
|
||||
"zod": "3.24.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@formbricks/config-typescript": "workspace:*",
|
||||
"@formbricks/eslint-config": "workspace:*",
|
||||
"@neshca/cache-handler": "1.7.4",
|
||||
"@neshca/cache-handler": "1.9.0",
|
||||
"@types/bcryptjs": "2.4.6",
|
||||
"@types/lodash": "4.17.10",
|
||||
"@types/lodash": "4.17.13",
|
||||
"@types/markdown-it": "14.1.2",
|
||||
"@types/nodemailer": "6.4.17",
|
||||
"@types/papaparse": "5.3.14",
|
||||
"@types/papaparse": "5.3.15",
|
||||
"@types/qrcode": "1.5.5",
|
||||
"nodemailer": "6.9.16"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user