Skip to content

Commit 94abbb0

Browse files
committed
Merge branch 'main' of https://github.com/thirdweb-dev/js into winston/cnct-2497-unlink-auth-method-for-enclave-wallets
2 parents f332e47 + 46b2071 commit 94abbb0

File tree

571 files changed

+19021
-12857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

571 files changed

+19021
-12857
lines changed

.changeset/curly-ligers-exist.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ packages/tw-tsconfig/ @jnsdls @joaquim-verges
1717

1818
# apps
1919
apps/ @jnsdls @joaquim-verges
20-
apps/dashboard/ @jnsdls @MananTank @joaquim-verges
21-
apps/playground-web/ @joaquim-verges @gregfromstl @jnsdls @joaquim-verges
22-
apps/wallet-ui/ @gregfromstl @jnsdls @joaquim-verges @MananTank
20+
apps/dashboard/ @jnsdls @MananTank @joaquim-verges @jakubkrehel
21+
apps/playground-web/ @joaquim-verges @gregfromstl @jnsdls @joaquim-verges @jakubkrehel
22+
apps/wallet-ui/ @gregfromstl @jnsdls @joaquim-verges @MananTank @jakubkrehel
2323
apps/portal/ @thirdweb-dev/product @thirdweb-dev/platform @thirdweb-dev/infra
2424

2525
# .github folder + .changeset + turbo config is owned by jonas for now

.github/workflows/auto-assign.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Auto Author Assign
2+
3+
on:
4+
pull_request:
5+
types: [ opened, reopened ]
6+
7+
permissions:
8+
pull-requests: write
9+
10+
jobs:
11+
assign-author:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: toshimaru/[email protected]

.github/workflows/issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [opened, edited]
66

77
env:
8-
VALID_ISSUE_PREFIXES: "CNCT|DASH"
8+
VALID_ISSUE_PREFIXES: "CNCT|DASH|PROT|INSIGHT"
99

1010
jobs:
1111
linear:

apps/dashboard/.env.example

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,7 @@ NEXT_PUBLIC_TURNSTILE_SITE_KEY=""
9494
TURNSTILE_SECRET_KEY=""
9595
REDIS_URL=""
9696

97-
ANALYTICS_SERVICE_URL=""
97+
ANALYTICS_SERVICE_URL=""
98+
99+
# Required for Nebula Chat
100+
NEXT_PUBLIC_NEBULA_URL=""

apps/dashboard/framer-rewrites.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = [
55
"/pricing",
66
// -- product landing pages --
77
// -- connect
8+
"/connect",
89
"/connect/sign-in",
910
// -- nebula
1011
"/nebula",
@@ -27,4 +28,7 @@ module.exports = [
2728
// -- TPP --
2829
"/trusted-partner-program",
2930
"/trusted-partner-program/:partner_slug",
31+
// -- legal --
32+
"/terms",
33+
"/privacy-policy",
3034
];

apps/dashboard/next-sitemap.config.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,14 @@ module.exports = {
4848
policies: [
4949
{
5050
userAgent: "*",
51-
[process.env.VERCEL_ENV !== "preview" &&
52-
process.env.VERCEL_ENV !== "development"
53-
? "allow"
54-
: "disallow"]: "/",
51+
// allow all if production
52+
allow: process.env.VERCEL_ENV === "production" ? ["/"] : [],
53+
// disallow all if not production
54+
disallow:
55+
process.env.VERCEL_ENV !== "production"
56+
? ["/"]
57+
: // disallow `/team` and `/team/*` if production
58+
["/team", "/team/*"],
5559
},
5660
],
5761
},

apps/dashboard/package.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"@chakra-ui/react": "^2.8.2",
2626
"@chakra-ui/styled-system": "^2.9.2",
2727
"@chakra-ui/theme-tools": "^2.1.2",
28-
"@emotion/react": "11.13.5",
29-
"@emotion/styled": "11.13.5",
28+
"@emotion/react": "11.14.0",
29+
"@emotion/styled": "11.14.0",
3030
"@hookform/resolvers": "^3.9.1",
3131
"@marsidev/react-turnstile": "^1.1.0",
3232
"@n8tb1t/use-scroll-position": "^2.0.3",
@@ -48,49 +48,49 @@
4848
"@radix-ui/react-tooltip": "1.1.4",
4949
"@sentry/nextjs": "8.42.0",
5050
"@shazow/whatsabi": "^0.17.0",
51-
"@tanstack/react-query": "5.62.1",
51+
"@tanstack/react-query": "5.62.3",
5252
"@tanstack/react-table": "^8.17.3",
5353
"@thirdweb-dev/service-utils": "workspace:*",
5454
"@vercel/functions": "^1.5.1",
5555
"@vercel/og": "^0.6.4",
56-
"abitype": "1.0.6",
56+
"abitype": "1.0.7",
5757
"chakra-react-select": "^4.7.6",
5858
"class-variance-authority": "^0.7.1",
5959
"clsx": "^2.1.1",
6060
"color": "^4.2.3",
6161
"compare-versions": "^6.1.0",
6262
"date-fns": "4.1.0",
63+
"fetch-event-stream": "0.1.5",
6364
"flat": "^6.0.1",
64-
"framer-motion": "11.12.0",
65+
"framer-motion": "11.13.3",
6566
"fuse.js": "7.0.0",
6667
"input-otp": "^1.4.1",
6768
"ioredis": "^5.4.1",
6869
"ipaddr.js": "^2.2.0",
69-
"lucide-react": "0.462.0",
70-
"next": "15.0.3",
70+
"lucide-react": "0.468.0",
71+
"next": "15.0.4",
7172
"next-plausible": "^3.12.4",
7273
"next-seo": "^6.5.0",
73-
"next-themes": "^0.4.3",
74+
"next-themes": "^0.4.4",
7475
"nextjs-toploader": "^1.6.12",
7576
"papaparse": "^5.4.1",
7677
"pluralize": "^8.0.0",
7778
"posthog-js": "1.67.1",
7879
"qrcode": "^1.5.3",
79-
"react": "19.0.0-rc-69d4b800-20241021",
80+
"react": "19.0.0",
8081
"react-children-utilities": "^2.10.0",
8182
"react-day-picker": "^8.10.1",
82-
"react-dom": "19.0.0-rc-69d4b800-20241021",
83+
"react-dom": "19.0.0",
8384
"react-dropzone": "^14.3.5",
8485
"react-error-boundary": "^4.1.2",
8586
"react-hook-form": "7.53.2",
8687
"react-markdown": "^9.0.1",
87-
"react-responsive-carousel": "^3.2.23",
8888
"react-table": "^7.8.0",
8989
"recharts": "^2.13.3",
9090
"remark-gfm": "^4.0.0",
9191
"server-only": "^0.0.1",
92-
"shiki": "1.22.2",
93-
"sonner": "^1.7.0",
92+
"shiki": "1.24.1",
93+
"sonner": "^1.7.1",
9494
"spdx-correct": "^3.2.0",
9595
"swagger-ui-react": "^5.18.2",
9696
"tailwind-merge": "^2.5.5",
@@ -103,25 +103,25 @@
103103
"devDependencies": {
104104
"@chakra-ui/cli": "^2.4.1",
105105
"@chromatic-com/storybook": "3.2.2",
106-
"@next/bundle-analyzer": "15.0.3",
107-
"@next/eslint-plugin-next": "15.0.3",
108-
"@playwright/test": "1.49.0",
109-
"@storybook/addon-essentials": "8.4.6",
110-
"@storybook/addon-interactions": "8.4.6",
111-
"@storybook/addon-links": "8.4.6",
112-
"@storybook/addon-onboarding": "8.4.6",
113-
"@storybook/addon-viewport": "8.4.6",
114-
"@storybook/blocks": "8.4.6",
115-
"@storybook/nextjs": "8.4.6",
116-
"@storybook/react": "8.4.6",
117-
"@storybook/test": "8.4.6",
106+
"@next/bundle-analyzer": "15.0.4",
107+
"@next/eslint-plugin-next": "15.0.4",
108+
"@playwright/test": "1.49.1",
109+
"@storybook/addon-essentials": "8.4.7",
110+
"@storybook/addon-interactions": "8.4.7",
111+
"@storybook/addon-links": "8.4.7",
112+
"@storybook/addon-onboarding": "8.4.7",
113+
"@storybook/addon-viewport": "8.4.7",
114+
"@storybook/blocks": "8.4.7",
115+
"@storybook/nextjs": "8.4.7",
116+
"@storybook/react": "8.4.7",
117+
"@storybook/test": "8.4.7",
118118
"@types/color": "4.2.0",
119119
"@types/node": "22.10.1",
120120
"@types/papaparse": "^5.3.15",
121121
"@types/pluralize": "^0.0.33",
122122
"@types/qrcode": "^1.5.5",
123-
"@types/react": "npm:types-react@19.0.0-rc.1",
124-
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
123+
"@types/react": "19.0.1",
124+
"@types/react-dom": "19.0.2",
125125
"@types/react-table": "^7.7.20",
126126
"@types/spdx-correct": "^3.1.3",
127127
"@types/swagger-ui-react": "^4.18.3",
@@ -133,11 +133,11 @@
133133
"eslint-config-biome": "1.9.4",
134134
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
135135
"eslint-plugin-storybook": "^0.11.1",
136-
"knip": "5.39.0",
136+
"knip": "5.39.2",
137137
"next-sitemap": "^4.2.3",
138138
"postcss": "8.4.49",
139-
"storybook": "8.4.6",
140-
"tailwindcss": "3.4.15",
139+
"storybook": "8.4.7",
140+
"tailwindcss": "3.4.16",
141141
"typescript": "5.7.2"
142142
}
143143
}
-91.1 KB
Binary file not shown.
-133 KB
Binary file not shown.

0 commit comments

Comments
 (0)