Skip to content

Latest commit

 

History

History
81 lines (47 loc) · 3.89 KB

File metadata and controls

81 lines (47 loc) · 3.89 KB

@ArkEnv/fumadocs-ui

1.0.0-alpha.0

Major Changes

  • Initialize v1.0.0-alpha pre-releases #1165 0e86f0d @yamcodes

    Start the pre-release track for the official v1.0.0 release.

0.0.8

Patch changes

0.0.7

Patch changes

0.0.6

Patch changes

0.0.5

Patch changes

0.0.4

Patch changes

  • Add Header component #828 e1f3183 @yamcodes

    @arkenv/fumadocs-ui now exports a Header component for building site-wide navigation headers.

    import { Header } from "@arkenv/fumadocs-ui/components";
    
    <Header
      logo={<MyLogo />}
      links={[
        { text: "Docs", url: "/docs" },
        { text: "Blog", url: "/blog" },
      ]}
      actions={[<SearchToggle />, <ThemeToggle />]}
      menuActions={[<ThemeToggle />]}
      menuSocialActions={[<GitHubLink />]}
      sidebarTrigger={<MySidebarTrigger />}
    />;

    The header is fixed to the top of the viewport and adapts its appearance as the user scrolls — transparent when at the top of the page, blurred with a semi-transparent background once the user scrolls down.

    On mobile the header renders a full-screen dropdown menu. Nav links are stacked at the top, an "Appearance" row (label + menuActions) sits above a centered row of menuSocialActions. An optional sidebarTrigger slot renders left of the logo for layouts that have a docs sidebar.

  • Expand css/theme.css #828 e1f3183 @yamcodes

    @arkenv/fumadocs-ui/css/theme.css now includes a complete set of fumadocs override styles so any app importing the theme gets correct defaults out of the box: nav/header height variables, sidebar drawer positioning (left-side on mobile), z-index stack (header → backdrop → sidebar drawer → search dialog → Radix poppers), search bar colors, external link icons, link underline styles, and heading anchor alignment.

0.0.3

Patch changes

  • Fix misconfigured package.json a23997c @yamcodes

    Fix misconfigured package.json by adding the repository.url field. This fixes an issue with pkg-pr-new and adheres to best practices.

0.0.2

Patch changes

  • First release #775 bb34860 @yamcodes

    @arkenv/fumadocs-ui provides a theme, and components, for fumadocs-ui to replicate the "ArkEnv" website look.