Skip to content

Commit 1da89b2

Browse files
Merge pull request #466 from sei-protocol/Bump-versions
Bump all versions in package.json
2 parents eb22feb + 99fa3c7 commit 1da89b2

File tree

6 files changed

+613
-648
lines changed

6 files changed

+613
-648
lines changed

app/globals.css

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -311,72 +311,69 @@ aside,
311311
}
312312

313313
/* Info callout (blue) */
314-
.nextra-callout.x\\:border-blue-200 {
314+
.nextra-callout[class*='border-blue'] {
315315
--callout-code-bg: rgba(59, 130, 246, 0.1);
316316
border-color: rgba(59, 130, 246, 0.35) !important;
317317
color: rgba(30, 58, 138, 0.88) !important;
318318
}
319319

320-
.dark .nextra-callout.x\\:border-blue-200 {
320+
.dark .nextra-callout[class*='border-blue'] {
321321
--callout-code-bg: rgba(147, 197, 253, 0.12);
322322
border-color: rgba(147, 197, 253, 0.5) !important;
323323
color: rgba(224, 242, 254, 0.96) !important;
324324
}
325325

326-
.dark .nextra-callout.x\\:border-blue-200 svg {
326+
.dark .nextra-callout[class*='border-blue'] svg {
327327
color: rgba(147, 197, 253, 0.92) !important;
328328
}
329329

330330
/* Warning callout (yellow) */
331-
.nextra-callout.x\\:border-yellow-100,
332-
.nextra-callout.x\\:border-yellow-200 {
331+
.nextra-callout[class*='border-yellow'] {
333332
--callout-code-bg: rgba(234, 179, 8, 0.1);
334333
border-color: rgba(234, 179, 8, 0.42) !important;
335334
color: rgba(113, 63, 18, 0.85) !important;
336335
}
337336

338-
.dark .nextra-callout.x\\:border-yellow-100,
339-
.dark .nextra-callout.x\\:border-yellow-200 {
337+
.dark .nextra-callout[class*='border-yellow'] {
340338
--callout-code-bg: rgba(253, 224, 71, 0.12);
341339
border-color: rgba(253, 224, 71, 0.55) !important;
342340
color: rgba(254, 249, 195, 0.96) !important;
343341
}
344342

345-
.dark .nextra-callout.x\\:border-yellow-100 svg,
346-
.dark .nextra-callout.x\\:border-yellow-200 svg {
343+
.dark .nextra-callout[class*='border-yellow'] svg {
347344
color: rgba(253, 224, 71, 0.92) !important;
348345
}
349346

350347
/* Error callout (red) */
351-
.nextra-callout.x\\:border-red-200 {
348+
.nextra-callout[class*='border-red'] {
352349
--callout-code-bg: rgba(239, 68, 68, 0.1);
353350
border-color: rgba(239, 68, 68, 0.35) !important;
354351
color: rgba(127, 29, 29, 0.88) !important;
355352
}
356353

357-
.dark .nextra-callout.x\\:border-red-200 {
354+
.dark .nextra-callout[class*='border-red'] {
358355
--callout-code-bg: rgba(252, 165, 165, 0.12);
359356
border-color: rgba(252, 165, 165, 0.5) !important;
360357
color: rgba(254, 226, 226, 0.96) !important;
361358
}
362359

363-
.dark .nextra-callout.x\\:border-red-200 svg {
360+
.dark .nextra-callout[class*='border-red'] svg {
364361
color: rgba(252, 165, 165, 0.92) !important;
365362
}
366363

367364
/* Default/orange callout */
368-
.nextra-callout.x\\:border-orange-100 {
365+
.nextra-callout[class*='border-orange'] {
369366
--callout-code-bg: rgba(234, 88, 12, 0.1);
370367
border-color: rgba(234, 88, 12, 0.35) !important;
371368
color: rgba(124, 45, 18, 0.85) !important;
372369
}
373370

374-
.dark .nextra-callout.x\\:border-orange-100 {
371+
.dark .nextra-callout[class*='border-orange'] {
375372
--callout-code-bg: rgba(253, 186, 116, 0.12);
376373
border-color: rgba(253, 186, 116, 0.45) !important;
377374
color: rgba(254, 237, 213, 0.96) !important;
378375
}
379376

380-
.dark .nextra-callout.x\\:border-orange-100 svg {
377+
.dark .nextra-callout[class*='border-orange'] svg {
381378
color: rgba(253, 186, 116, 0.92) !important;
382379
}

next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
import './.next/types/routes.d.ts';
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

next.config.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,12 @@ export default withNextra({
342342
permanent: true
343343
},
344344
{
345-
source: '/sei-config-:rest*',
345+
source: '/sei-config-:rest(.*)',
346346
destination: '/node',
347347
permanent: true
348348
},
349349
{
350-
source: '/sei-data-:rest*',
350+
source: '/sei-data-:rest(.*)',
351351
destination: '/node',
352352
permanent: true
353353
},
@@ -357,7 +357,7 @@ export default withNextra({
357357
permanent: true
358358
},
359359
{
360-
source: '/priv_validator_:rest*',
360+
source: '/priv_validator_:rest(.*)',
361361
destination: '/node',
362362
permanent: true
363363
},
@@ -997,7 +997,7 @@ export default withNextra({
997997
permanent: true
998998
},
999999
{
1000-
source: '/sei-backup-:rest*',
1000+
source: '/sei-backup-:rest(.*)',
10011001
destination: '/node/troubleshooting',
10021002
permanent: true
10031003
},

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@
2323
},
2424
"license": "MIT",
2525
"dependencies": {
26-
"@hcaptcha/react-hcaptcha": "^1.12.1",
26+
"@hcaptcha/react-hcaptcha": "^1.17.1",
2727
"@radix-ui/themes": "^3.2.1",
2828
"@sei-js/evm": "^2.0.5",
29-
"@tabler/icons-react": "3.35.0",
30-
"@tailwindcss/postcss": "^4.1.14",
31-
"katex": "^0.16.22",
32-
"next": "15.2.8",
33-
"nextra": "^4.6.0",
34-
"nextra-theme-docs": "^4.6.0",
35-
"react": "^19.2.0",
36-
"react-dom": "^19.2.0",
37-
"sonner": "^2.0.1",
38-
"viem": "^2.30.5"
29+
"@tabler/icons-react": "3.36.0",
30+
"@tailwindcss/postcss": "^4.1.18",
31+
"katex": "^0.16.27",
32+
"next": "16.0.10",
33+
"nextra": "^4.6.1",
34+
"nextra-theme-docs": "^4.6.1",
35+
"react": "^19.2.3",
36+
"react-dom": "^19.2.3",
37+
"sonner": "^2.0.7",
38+
"viem": "^2.43.1"
3939
},
4040
"devDependencies": {
4141
"@playwright/test": "^1.56.1",
4242
"playwright": "^1.56.1",
4343
"@react-native-async-storage/async-storage": "^2.1.2",
4444
"@types/node": "18.11.10",
45-
"@types/react": "^18.2.0",
46-
"@types/react-dom": "^18.2.0",
47-
"autoprefixer": "^10.4.20",
45+
"@types/react": "^19.2.7",
46+
"@types/react-dom": "^19.2.3",
47+
"autoprefixer": "^10.4.23",
4848
"cssnano": "^6.1.2",
4949
"concurrently": "^9.1.2",
5050
"globby": "^14.1.0",
@@ -56,13 +56,13 @@
5656
"next-sitemap": "^4.2.3",
5757
"node-fetch": "^3.3.2",
5858
"pagefind": "^1.3.0",
59-
"postcss": "^8.5.3",
59+
"postcss": "^8.5.6",
6060
"postcss-simple-vars": "^7.0.1",
6161
"prettier": "^3.5.3",
62-
"puppeteer": "^24.33.0",
63-
"tailwindcss": "^4.1.17",
62+
"puppeteer": "^24.31.0",
63+
"tailwindcss": "^4.1.18",
6464
"tsx": "^4.19.3",
65-
"typescript": "^5.3.3",
65+
"typescript": "^5.9.3",
6666
"wait-on": "^9.0.1",
6767
"puppeteer-core": "^24.31.0",
6868
"pino-pretty": "^13.0.0",
@@ -71,15 +71,15 @@
7171
"terser": "^5.31.0"
7272
},
7373
"resolutions": {
74+
"@istanbuljs/load-nyc-config/js-yaml": "3.14.2",
75+
"cosmiconfig/js-yaml": "4.1.1",
7476
"@babel/traverse": "7.28.0",
7577
"axios": "1.12.2",
7678
"ws": "8.18.2",
7779
"nanoid": "3.3.9",
7880
"estree-util-value-to-estree": "3.3.3",
7981
"base-x": "4.0.1",
80-
"on-headers": "1.1.0",
81-
"**/@istanbuljs/load-nyc-config/js-yaml": "3.14.2",
82-
"**/cosmiconfig/js-yaml": "4.1.1"
82+
"on-headers": "1.1.0"
8383
},
8484
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
8585
"browserslist": {

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"moduleResolution": "bundler",
1414
"resolveJsonModule": true,
1515
"isolatedModules": true,
16-
"jsx": "preserve",
16+
"jsx": "react-jsx",
1717
"plugins": [
1818
{
1919
"name": "next"
@@ -25,6 +25,6 @@
2525
},
2626
"strictNullChecks": true
2727
},
28-
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts", "next-env.d.ts", ".next/types/**/*.ts"],
28+
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts", "next-env.d.ts", ".next/types/**/*.ts", ".next/dev/types/**/*.ts"],
2929
"exclude": ["node_modules"]
3030
}

0 commit comments

Comments
 (0)