From 3c18bfa4573dc1cc9e993d57a8075277ec15c16d Mon Sep 17 00:00:00 2001 From: gitfromwildan <> Date: Sun, 1 Jun 2025 20:49:57 +0700 Subject: [PATCH] version 1.13.6 : improve search and sheetleftbar --- app/page.tsx | 2 +- components/leftbar.tsx | 4 ++-- components/search.tsx | 4 ++-- contents/docs/changelog/version-1/index.mdx | 12 ++++++++++++ .../getting-started/project-structure/index.mdx | 2 +- .../getting-started/theme-colors/coffee/index.mdx | 2 -- .../getting-started/theme-colors/default/index.mdx | 3 --- .../theme-colors/freshlime/index.mdx | 3 --- .../getting-started/theme-colors/llms/index.mdx | 13 ++++++++++++- package.json | 2 +- 10 files changed, 31 insertions(+), 16 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 78b3779..2a1152d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -25,7 +25,7 @@ export default function Home() { )} > - 🚀 New Version - Release v1.13.5 + 🚀 New Version - Release v1.13.6 diff --git a/components/leftbar.tsx b/components/leftbar.tsx index eac2533..2264751 100644 --- a/components/leftbar.tsx +++ b/components/leftbar.tsx @@ -9,7 +9,7 @@ import { } from "@/components/ui/sheet"; import { Logo, NavMenu } from "@/components/navbar"; import { Button } from "@/components/ui/button"; -import { AlignLeftIcon, PanelLeftClose, PanelLeftOpen } from "lucide-react"; +import { LayoutGrid, PanelLeftClose, PanelLeftOpen } from "lucide-react"; import { DialogTitle, DialogDescription } from "@/components/ui/dialog"; import { ScrollArea } from "@/components/ui/scroll-area"; import DocsMenu from "@/components/docs-menu"; @@ -70,7 +70,7 @@ export function SheetLeftbar() { diff --git a/components/search.tsx b/components/search.tsx index 17eea5f..7509d88 100644 --- a/components/search.tsx +++ b/components/search.tsx @@ -132,10 +132,10 @@ export default function Search() {
- +
- + +
+### v 1.13.6 +
+ + + + - Improve sheet leftbar and search icon + - color scheme for sheet leftbar + - color scheme for search icon + + +
### v 1.13.5
diff --git a/contents/docs/getting-started/project-structure/index.mdx b/contents/docs/getting-started/project-structure/index.mdx index 4321840..2de9246 100644 --- a/contents/docs/getting-started/project-structure/index.mdx +++ b/contents/docs/getting-started/project-structure/index.mdx @@ -6,7 +6,7 @@ date: 29-11-2024 ## app -This folder contains the main application code for Next.js, managing layouts, routing, and specific content pages. It is organized to support both the `docs` and `blog` sections, with dedicated pages and layouts for each section. +This folder contains the main application code for Next.js, managing layouts, routing, and specific content pages. It is organized to support both the `docs` sections, with dedicated pages and layouts for each section. ``` app // Main Next.js application folder diff --git a/contents/docs/getting-started/theme-colors/coffee/index.mdx b/contents/docs/getting-started/theme-colors/coffee/index.mdx index 1822c1d..456ecba 100644 --- a/contents/docs/getting-started/theme-colors/coffee/index.mdx +++ b/contents/docs/getting-started/theme-colors/coffee/index.mdx @@ -6,8 +6,6 @@ date: 2025-05-30 ## Styles -DocuBook comes with a carefully designed color system that ensures consistency and accessibility across your documentation. The theme includes both light and dark modes, automatically adapting to the user's system preferences. - You can override the default styles by adding your own CSS variables in the `globals.css` and `syntax.css` files. diff --git a/contents/docs/getting-started/theme-colors/default/index.mdx b/contents/docs/getting-started/theme-colors/default/index.mdx index 40e9f9b..de9e2ed 100644 --- a/contents/docs/getting-started/theme-colors/default/index.mdx +++ b/contents/docs/getting-started/theme-colors/default/index.mdx @@ -5,9 +5,6 @@ date: 2025-05-20 --- ## Styles - -DocuBook comes with a carefully designed color system that ensures consistency and accessibility across your documentation. The theme includes both light and dark modes, automatically adapting to the user's system preferences. - You can override the default styles by adding your own CSS variables in the `globals.css` and `syntax.css` files. diff --git a/contents/docs/getting-started/theme-colors/freshlime/index.mdx b/contents/docs/getting-started/theme-colors/freshlime/index.mdx index de6ef5f..afd863e 100644 --- a/contents/docs/getting-started/theme-colors/freshlime/index.mdx +++ b/contents/docs/getting-started/theme-colors/freshlime/index.mdx @@ -5,9 +5,6 @@ date: 2025-05-30 --- ## Styles - -DocuBook comes with a carefully designed color system that ensures consistency and accessibility across your documentation. The theme includes both light and dark modes, automatically adapting to the user's system preferences. - You can override the default styles by adding your own CSS variables in the `globals.css` and `syntax.css` files. diff --git a/contents/docs/getting-started/theme-colors/llms/index.mdx b/contents/docs/getting-started/theme-colors/llms/index.mdx index 52a1e9f..b3e5563 100644 --- a/contents/docs/getting-started/theme-colors/llms/index.mdx +++ b/contents/docs/getting-started/theme-colors/llms/index.mdx @@ -7,6 +7,14 @@ date: 2025-05-31 ## Introduction This document explains how to create and implement custom color themes using AI with LLMS context. The context includes a consistent color palette for both light and dark modes, along with syntax highlighting colors for code. +## File Structure + + + + + + + ## Generate New Theme @@ -24,11 +32,14 @@ This document explains how to create and implement custom color themes using AI ```markdown Create a new color theme based on the provided context with the following requirements: - 1. Different primary color `#2281E3` - changes to your brand color + 1. Different primary color #2281E3 2. Maintain good contrast for accessibility 3. Include variants for both light and dark modes 4. Keep the same structure as the provided context ``` + +changes the value of Hex color `#2281E3` into your brand colors. + diff --git a/package.json b/package.json index 6ce6aba..4ba5e8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docubook", - "version": "1.13.5", + "version": "1.13.6", "private": true, "scripts": { "dev": "next dev",