Обзор
Компоненты
- 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
Ресурсы
File Preview Skeleton
Скелетоны загрузки превью файлов — markdown, docx, xlsx и обычный текст.
import { MarkdownSkeleton } from "@/components/ui/file-preview-skeleton";
export default function Particle() {
return (
<div className="h-72 w-full overflow-hidden rounded-lg border">
<MarkdownSkeleton />
</div>
);
}
Установка
pnpm dlx shadcn@latest add @oracul/file-preview-skeleton
Использование
import {
MarkdownSkeleton,
DocxSkeleton,
XlsxSkeleton,
TextSkeleton,
} from "@/components/ui/file-preview-skeleton";
{loading ? <XlsxSkeleton /> : <SheetPreview … />}API
Презентационные скелетоны для разных типов превью, пока тяжёлый рендерер
подгружается. Построены на DS-примитиве Skeleton, поэтому шиммер совпадает со
всей системой.
| Компонент | Параметры | Описание |
|---|---|---|
MarkdownSkeleton | className | Заголовок + абзацы + блок. |
DocxSkeleton | className | Лист документа в карточке. |
XlsxSkeleton | className, cols, rows | Сетка таблицы. |
TextSkeleton | className | Простые строки текста. |
Примеры
Markdown
import { MarkdownSkeleton } from "@/components/ui/file-preview-skeleton";
export default function Particle() {
return (
<div className="h-72 w-full overflow-hidden rounded-lg border">
<MarkdownSkeleton />
</div>
);
}
DOCX
import { DocxSkeleton } from "@/components/ui/file-preview-skeleton";
export default function Particle() {
return (
<div className="h-72 w-full overflow-hidden rounded-lg border">
<DocxSkeleton />
</div>
);
}
XLSX
import { XlsxSkeleton } from "@/components/ui/file-preview-skeleton";
export default function Particle() {
return (
<div className="h-72 w-full overflow-hidden rounded-lg border">
<XlsxSkeleton />
</div>
);
}
Текст
import { TextSkeleton } from "@/components/ui/file-preview-skeleton";
export default function Particle() {
return (
<div className="h-72 w-full overflow-hidden rounded-lg border">
<TextSkeleton />
</div>
);
}