e30e75b5d4
Code Quality / Oxlint + Oxfmt (push) Waiting to run
Code Quality / Template Sync (push) Waiting to run
Code Quality / Build Changed Packages (push) Waiting to run
Code Quality / Test Changed Packages (push) Waiting to run
Deploy Expo Example / Deploy Production (push) Waiting to run
Deploy Ink Example / Deploy Production (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.12) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Waiting to run
Deploy Shadcn Registry / Deploy Production (push) Waiting to run
Template Metrics / LOC + Bundle Size (push) Waiting to run
Changesets / Create Version PR (push) Has been cancelled
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import type { MDXComponents } from "mdx/types";
|
|
import type { ComponentProps } from "react";
|
|
import { Accordion, Accordions } from "fumadocs-ui/components/accordion";
|
|
import { Callout } from "@/components/docs/fumadocs/callout";
|
|
import { Card, Cards } from "@/components/docs/fumadocs/card";
|
|
import { Step, Steps } from "@/components/docs/fumadocs/steps";
|
|
import { Tab, Tabs } from "@/components/docs/fumadocs/tabs";
|
|
import defaultComponents from "fumadocs-ui/mdx";
|
|
import {
|
|
CodeBlock,
|
|
type CodeBlockProps,
|
|
Pre,
|
|
} from "fumadocs-ui/components/codeblock";
|
|
import { InstallCommand } from "@/components/docs/fumadocs/install/install-command";
|
|
import { ParametersTable } from "@/components/docs/parameters-table";
|
|
import {
|
|
PlatformAwareCode,
|
|
PlatformOnly,
|
|
PlatformTabs,
|
|
} from "@/components/docs/platform/mdx";
|
|
import { PrimitivesTypeTable } from "@/components/docs/primitives-type-table";
|
|
import { SourceLink } from "@/components/docs/source-link";
|
|
import { DemoIframe } from "@/components/docs/demo-iframe";
|
|
import { Flow } from "@/components/assistant-ui/flow";
|
|
import { MermaidDiagram } from "@/components/docs/mermaid-diagram";
|
|
|
|
function Kbd({ children, ...props }: ComponentProps<"kbd">) {
|
|
return (
|
|
<kbd
|
|
className="bg-muted text-muted-foreground inline-flex h-5 min-w-5 items-center justify-center rounded-sm px-1.5 font-mono text-xs"
|
|
{...props}
|
|
>
|
|
{children}
|
|
</kbd>
|
|
);
|
|
}
|
|
|
|
function Code({ children, ...props }: ComponentProps<"code">) {
|
|
return (
|
|
<code
|
|
className="bg-muted rounded-md px-1.5 py-0.5 font-mono text-[0.85em] font-medium"
|
|
{...props}
|
|
>
|
|
{children}
|
|
</code>
|
|
);
|
|
}
|
|
|
|
export function getMDXComponents(components: MDXComponents): MDXComponents {
|
|
return {
|
|
...(defaultComponents as MDXComponents),
|
|
pre: (props: CodeBlockProps) => (
|
|
<CodeBlock {...props}>
|
|
<Pre className="max-h-87.5">
|
|
<PlatformAwareCode>{props.children}</PlatformAwareCode>
|
|
</Pre>
|
|
</CodeBlock>
|
|
),
|
|
Tabs,
|
|
Tab,
|
|
PlatformTabs,
|
|
Callout,
|
|
Card,
|
|
Cards,
|
|
Step,
|
|
Steps,
|
|
Accordion,
|
|
Accordions,
|
|
Kbd,
|
|
PlatformOnly,
|
|
InstallCommand,
|
|
ParametersTable,
|
|
PrimitivesTypeTable,
|
|
SourceLink,
|
|
DemoIframe,
|
|
Flow,
|
|
MermaidDiagram,
|
|
Code,
|
|
blockquote: (props) => <Callout>{props.children}</Callout>,
|
|
...components,
|
|
};
|
|
}
|