Обзор
Компоненты
- Accordion
- Alert
- Alert Dialog
- Autocomplete
- Auth Surface
- Avatar
- Badge
- Browse Catalog Dialog
- Button
- Card
- Checkbox
- Checkbox Group
- Collapsible
- Combobox
- Command
- Connector Setup Dialog
- Cookie Banner
- Dialog
- Directory Card
- Directory Detail
- Directory Skeleton
- DrawerНовое
- Token Parts Input
- Empty
- Field
- Fieldset
- File Preview Modal
- File Preview Skeleton
- Form
- Frame
- Group
- Icon
- Input
- Input Group
- Kbd
- Label
- Legal Shell
- Menu
- Mermaid Diagram
- Mind Map Diagram
- Not Found Screen
- Onboarding Frame
- Popover
- PDF Thumbnail
- Personalization Landing
- Preview Card
- Pricing Page
- Progress
- Radio Group
- Ring Spinner
- Scroll Area
- Select
- Separator
- Settings Page
- Settings Skills
- Settings Connectors
- Settings Capabilities
- Settings Usage
- Settings Account
- Settings Billing
- Sheet
- Sidebar
- Skeleton
- Skill Create Dialog
- Slider
- Spinner
- Stat
- Switch
- Table
- Tabs
- Textarea
- Toast
- Toggle
- Tooltip
AI-компоненты
- Компоненты AI
- Chat Conversation
- Chat Message
- Chat Response
- Chat Suggestion
- Chat Prompt Input
- Slash Highlighted Textarea
- Chat Search Dialog
- Chat Skill Doc
- Chat Connector Detail
- Chat Attachments
- Chat File Card
- Chat Token Chip
- Chat Code Block
- Chat Image
- Chat Inline Citation
- Chat Sources
- Chat Web Search
- Chat Research
- Chat Source
- Chat Actions
- Chat Context
- Chat Loader
- Chat Compaction
- Chat Timeline
- Chat Snippet
- Chat Terminal
- Chat Stack Trace
- Chat Test Results
- Chat File Tree
- Chat Environment Variables
- Chat Audio Player
- Chat Transcription
- Chat Speech Input
- Chat Mic Selector
- Chat Voice Selector
- Chat Agent
- Chat Persona
- Chat Connection
- Chat Connector Suggestion
- Chat Queue
- Chat Checkpoint
- Chat Confirmation
- Chat Artifact
- Chat JSX Preview
- Chat Schema Display
- Chat Package Info
- Chat Commit
- Chat Plan
- Chat Open In Chat
- Chat Sandbox
- Chat Model Selector
- Chat Canvas
- Chat Node
- Chat Edge
Ресурсы
Chat Snippet
Inline копируемый сниппет команды — для shell-однострочников.
$npm install @oracul/ui
$bunx --bun shadcn@latest add @oracul/chat-message
$git checkout -b feature/ai-chat
import { ChatSnippet } from "@/components/ui/chat-snippet";
export default function Particle() {
return (
<div className="flex w-full max-w-md flex-col gap-2 p-4">
<ChatSnippet code="npm install @oracul/ui" />
<ChatSnippet code="bunx --bun shadcn@latest add @oracul/chat-message" />
<ChatSnippet code="git checkout -b feature/ai-chat" />
</div>
);
}
Установка
pnpm dlx shadcn@latest add @oracul/chat-snippet
Использование
import {
ChatSnippet,
ChatSnippetCode,
ChatSnippetCopyButton,
ChatSnippetText,
} from "@/components/ui/chat-snippet";
<ChatSnippet code="npm install @oracul/ui" />
// или с кастомным префиксом
<ChatSnippet code="bun add @oracul/ui">
<ChatSnippetText>$</ChatSnippetText>
<ChatSnippetCode />
<ChatSnippetCopyButton />
</ChatSnippet>Когда брать ChatSnippet vs ChatCodeBlock:
ChatSnippet— короткий read-only one-liner (команда, URL). Inline-ширина, без подсветки.ChatCodeBlock— многострочный код с shiki-подсветкой, header, filename, line numbers.
На этой странице