Skip to content

Commit 43dbf31

Browse files
Release cleanup (#174)
* Bump deps * Update package.json * Update shadcn/ui * Run Ultracite * Run Ultracite * Fix unit tests * Update prompt-input.tsx * Build fixes * Modify docs styles * Fix terminal titles * Update code-block.mdx * Add tool-approval docs and examples * Rename ToolApproval to Confirmation * Fix confirmation * Misc fixes * Update test.yml * Downgrade jsdom * Update confirmation.test.tsx
1 parent 2135d80 commit 43dbf31

33 files changed

+1266
-1152
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,5 @@ jobs:
3232
- name: Install Dependencies
3333
run: pnpm i
3434

35-
- name: Run Check
36-
run: pnpm check
37-
3835
- name: Run Tests
3936
run: pnpm test

apps/docs/app/(docs)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const Layout = ({ children }: LayoutProps<"/">) => (
1414
sidebar={{
1515
collapsible: false,
1616
tabs: [],
17-
className: "bg-background! transition-none!",
17+
className: "bg-background! transition-none! border-none!",
1818
}}
1919
tree={source.pageTree}
2020
>

apps/docs/app/global.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
@import 'tailwindcss';
2-
@import 'fumadocs-ui/css/shadcn.css';
3-
@import 'fumadocs-ui/css/preset.css';
1+
@import "tailwindcss";
2+
@import "fumadocs-ui/css/shadcn.css";
3+
@import "fumadocs-ui/css/preset.css";
44
@import "tw-animate-css";
55

66
@source "../**/*.{ts,tsx,mdx}";
@@ -55,7 +55,7 @@
5555
--card-foreground: oklch(0.145 0 0);
5656
--popover: oklch(1 0 0);
5757
--popover-foreground: oklch(0.145 0 0);
58-
--primary: oklch(57.61% .2508 258.23);
58+
--primary: oklch(57.61% 0.2508 258.23);
5959
--primary-foreground: oklch(1 0 0);
6060
--secondary: oklch(0.97 0 0);
6161
--secondary-foreground: oklch(0.205 0 0);
@@ -91,7 +91,7 @@
9191
--card-foreground: oklch(0.985 0 0);
9292
--popover: oklch(0.205 0 0);
9393
--popover-foreground: oklch(0.985 0 0);
94-
--primary: oklch(57.61% .2508 258.23);
94+
--primary: oklch(57.61% 0.2508 258.23);
9595
--primary-foreground: oklch(1 0 0);
9696
--secondary: oklch(0.269 0 0);
9797
--secondary-foreground: oklch(0.985 0 0);
@@ -161,7 +161,7 @@
161161
@apply fill-none;
162162
}
163163

164-
.prose h1,
164+
.prose h1,
165165
.prose h2,
166166
.prose h3,
167167
.prose h4,
@@ -174,4 +174,4 @@
174174
--fd-nav-height: 57px;
175175
--fd-page-width: 100%;
176176
--fd-layout-width: 100%;
177-
}
177+
}

apps/docs/components/navbar/client-navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const LogoGithub = () => (
4949
);
5050

5151
export const ClientNavbar = ({ pages }: { pages: NavPageItem[] }) => (
52-
<div className="fixed top-0 right-0 left-0 z-40 flex items-center justify-between border-b bg-background py-2.5">
52+
<div className="fixed top-0 right-0 left-0 z-40 flex items-center justify-between bg-background/80 backdrop-blur-sm py-2.5">
5353
<div className="flex select-none flex-row items-center">
5454
<div className="flex shrink-0 flex-row items-center gap-2">
5555
<HomeLinks />

apps/docs/content/docs/components/(chatbot)/code-block.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: Code Block
33
description: Provides syntax highlighting, line numbers, and copy to clipboard functionality for code blocks.
44
path: elements/components/code-block
5-
icon: Braces
65
---
76

87
The `CodeBlock` component provides syntax highlighting, line numbers, and copy to clipboard functionality for code blocks.

0 commit comments

Comments
 (0)