mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-07-06 21:52:43 +08:00
* feat(settings): refine skills and MCP action controls * feat(settings): open add skill in dialog * fix(settings): stabilize add skill dialog size * fix(skills): scope success banner and add menu focus management Gate the skills install success banner behind a local just-installed flag so it no longer re-appears stale after reopening and cancelling the add dialog, and disable the cancel/close controls while an install is in flight. Add keyboard focus management to ActionMenu: focus the first item on open and restore focus to the trigger on Escape or item selection. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix: skill folder picker --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: Haile <118998054+blackmammoth@users.noreply.github.com>
21 lines
1.5 KiB
TypeScript
21 lines
1.5 KiB
TypeScript
export { Alert, AlertTitle, AlertDescription, alertVariants } from './Alert';
|
|
export { default as ActionMenu } from './ActionMenu';
|
|
export type { ActionMenuItem } from './ActionMenu';
|
|
export { Badge, badgeVariants } from './Badge';
|
|
export { Button, buttonVariants } from './Button';
|
|
export { Confirmation, ConfirmationTitle, ConfirmationRequest, ConfirmationAccepted, ConfirmationRejected, ConfirmationActions, ConfirmationAction } from './Confirmation';
|
|
export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter, CardAction } from './Card';
|
|
export { Collapsible, CollapsibleTrigger, CollapsibleContent } from './Collapsible';
|
|
export { Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandSeparator } from './Command';
|
|
export { default as DarkModeToggle } from './DarkModeToggle';
|
|
export { Dialog, DialogTrigger, DialogContent, DialogTitle } from './Dialog';
|
|
export { Input } from './Input';
|
|
export { ScrollArea } from './ScrollArea';
|
|
export { Reasoning, ReasoningTrigger, ReasoningContent, useReasoning } from './Reasoning';
|
|
export { Shimmer } from './Shimmer';
|
|
export { default as Tooltip } from './Tooltip';
|
|
export { PromptInput, PromptInputHeader, PromptInputBody, PromptInputTextarea, PromptInputFooter, PromptInputTools, PromptInputButton, PromptInputSubmit } from './PromptInput';
|
|
export { PillBar, Pill } from './PillBar';
|
|
export { Queue, QueueItem, QueueItemIndicator, QueueItemContent } from './Queue';
|
|
export type { QueueItemStatus } from './Queue';
|