Skip to content

Commit a9fc7b6

Browse files
Merge pull request #206 from nocodb/bump-deps
2 parents a0d1b61 + 4d71c2c commit a9fc7b6

File tree

4 files changed

+366
-116
lines changed

4 files changed

+366
-116
lines changed

app/global.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@
517517
--color-fd-card-foreground: var(--color-grey-900);
518518
--color-fd-border: var(--color-grey-300);
519519
--color-fd-primary-foreground: var(--color-base-black);
520-
--color-fd-secondary: var(--color-grey-200);
520+
--color-fd-secondary: var(--color-grey-100);
521521
--color-fd-secondary-foreground: var(--color-grey-900);
522522
--color-fd-accent-foreground: var(--color-base-black);
523523
--color-fd-ring: var(--color-brand-500);
@@ -585,6 +585,17 @@
585585

586586

587587
.nc-docs-layout {
588+
[role="tablist"] {
589+
button:is([role="tab"]):is([aria-selected="true"]) {
590+
color: var(--color-brand-500) !important;
591+
border-color: var(--color-brand-500) !important;
592+
}
593+
594+
button:is([role="tab"]):is([aria-selected="false"]) {
595+
font-weight: 400 !important;
596+
}
597+
}
598+
588599
.prose {
589600
h1 {
590601
@apply text-nc-content-grey-emphasis text-[40px] leading-16 font-semibold;

components/blog/home/Navbar.tsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,22 @@ export function Navbar() {
2626
</DropdownMenuTrigger>
2727
<DropdownMenuContent>
2828
<DropdownMenuItem className="h-[44px] cursor-pointer !hover:bg-nc-background-grey-extra-light">
29-
<Link href="https://data-apis-v2.nocodb.com/">
29+
<Link href="https://nocodb.com/apis/v3/data">
30+
Data APIs <span className="text-fd-muted-foreground">(v3)</span>
31+
</Link>
32+
</DropdownMenuItem>
33+
<DropdownMenuItem className="h-[44px] cursor-pointer !hover:bg-nc-background-grey-extra-light">
34+
<Link href="https://nocodb.com/apis/v3/meta">
35+
Meta APIs <span className="text-fd-muted-foreground">(v3)</span>
36+
</Link>
37+
</DropdownMenuItem>
38+
<DropdownMenuItem className="h-[44px] cursor-pointer !hover:bg-nc-background-grey-extra-light">
39+
<Link href="https://nocodb.com/apis/v2/data">
3040
Data APIs <span className="text-fd-muted-foreground">(v2)</span>
3141
</Link>
3242
</DropdownMenuItem>
3343
<DropdownMenuItem className="h-[44px] cursor-pointer !hover:bg-nc-background-grey-extra-light">
34-
<Link href="https://meta-apis-v2.nocodb.com/">
44+
<Link href="https://nocodb.com/apis/v2/meta">
3545
Meta APIs <span className="text-fd-muted-foreground">(v2)</span>
3646
</Link>
3747
</DropdownMenuItem>

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"@types/jsdom": "^21.1.7",
2626
"class-variance-authority": "^0.7.1",
2727
"clsx": "^2.1.1",
28-
"fumadocs-core": "15.6.2",
29-
"fumadocs-mdx": "11.6.10",
30-
"fumadocs-ui": "15.6.2",
28+
"fumadocs-core": "15.6.8",
29+
"fumadocs-mdx": "11.7.3",
30+
"fumadocs-ui": "15.6.8",
3131
"jsdom": "^26.1.0",
3232
"lucide-react": "^0.536.0",
3333
"nc-analytics": "^0.0.9",
@@ -46,7 +46,7 @@
4646
"tw-animate-css": "^1.3.4",
4747
"typesense": "^2.0.3",
4848
"vaul": "^1.1.2",
49-
"zod": "^3.25.64"
49+
"zod": "^4.0.14"
5050
},
5151
"devDependencies": {
5252
"@tailwindcss/postcss": "^4.1.10",

0 commit comments

Comments
 (0)