@usetheo/ui 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +94 -0
- package/README.md +20 -19
- package/dist/chunk-6ZQKEY54.js +149 -0
- package/dist/chunk-6ZQKEY54.js.map +1 -0
- package/dist/chunk-AVPHVQZS.js +73 -0
- package/dist/chunk-AVPHVQZS.js.map +1 -0
- package/dist/chunk-GXBFGWQN.js +81 -0
- package/dist/chunk-GXBFGWQN.js.map +1 -0
- package/dist/chunk-I32I36LW.js +113 -0
- package/dist/chunk-I32I36LW.js.map +1 -0
- package/dist/chunk-JPTPIZ5V.js +120 -0
- package/dist/chunk-JPTPIZ5V.js.map +1 -0
- package/dist/{chunk-TO3UAT6O.js → chunk-K7PYLTMP.js} +3 -3
- package/dist/{chunk-TO3UAT6O.js.map → chunk-K7PYLTMP.js.map} +1 -1
- package/dist/{chunk-R2PAGRDP.js → chunk-MYEHGDC2.js} +2 -2
- package/dist/{chunk-R2PAGRDP.js.map → chunk-MYEHGDC2.js.map} +1 -1
- package/dist/{chunk-IPEYGWA7.js → chunk-PTHRL242.js} +4 -4
- package/dist/{chunk-IPEYGWA7.js.map → chunk-PTHRL242.js.map} +1 -1
- package/dist/chunk-RC5XME4T.js +33 -0
- package/dist/chunk-RC5XME4T.js.map +1 -0
- package/dist/chunk-UK27KR35.js +73 -0
- package/dist/chunk-UK27KR35.js.map +1 -0
- package/dist/chunk-UOMQPIB4.js +48 -0
- package/dist/chunk-UOMQPIB4.js.map +1 -0
- package/dist/{chunk-TNBJ36XJ.js → chunk-XZKEGEPT.js} +4 -4
- package/dist/{chunk-TNBJ36XJ.js.map → chunk-XZKEGEPT.js.map} +1 -1
- package/dist/components.css +1 -1
- package/dist/composites/agent-editor/index.js +2 -2
- package/dist/composites/rule-editor/index.js +3 -3
- package/dist/composites/skill-editor/index.js +3 -3
- package/dist/composites/stability-bundle-viewer/index.js +4 -0
- package/dist/composites/stability-bundle-viewer/index.js.map +1 -0
- package/dist/index.d.ts +162 -1
- package/dist/index.js +44 -36
- package/dist/index.js.map +1 -1
- package/dist/primitives/branch-indicator/index.js +4 -0
- package/dist/primitives/branch-indicator/index.js.map +1 -0
- package/dist/primitives/channel-card/index.js +4 -0
- package/dist/primitives/channel-card/index.js.map +1 -0
- package/dist/primitives/export-chat-dialog/index.js +4 -0
- package/dist/primitives/export-chat-dialog/index.js.map +1 -0
- package/dist/primitives/gateway-status-indicator/index.js +4 -0
- package/dist/primitives/gateway-status-indicator/index.js.map +1 -0
- package/dist/primitives/pin-input/index.js +1 -1
- package/dist/primitives/run-status-pill/index.js +4 -0
- package/dist/primitives/run-status-pill/index.js.map +1 -0
- package/dist/primitives/thinking-level-selector/index.js +4 -0
- package/dist/primitives/thinking-level-selector/index.js.map +1 -0
- package/dist/primitives/update-banner/index.js +4 -0
- package/dist/primitives/update-banner/index.js.map +1 -0
- package/package.json +123 -99
- package/registry/r/pin-input.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -842,6 +842,140 @@ declare const BadgeWithDot: typeof Badge & {
|
|
|
842
842
|
Dot: typeof Dot;
|
|
843
843
|
};
|
|
844
844
|
|
|
845
|
+
/**
|
|
846
|
+
* ThinkingLevelSelector — multi-state combobox for LLM reasoning budget.
|
|
847
|
+
*
|
|
848
|
+
* Mirrors the OpenClaw Control UI thinking selector. Values follow the SDK's
|
|
849
|
+
* `Agent.thinking` parameter ("minimal" | "low" | "medium" | "high" | "xhigh")
|
|
850
|
+
* plus a sentinel "off" and the special "inherited" mode that means "use the
|
|
851
|
+
* value resolved by the parent agent/session".
|
|
852
|
+
*
|
|
853
|
+
* Pure UI primitive. No backend dependency. Consumer wires `value` from agent
|
|
854
|
+
* state and persists `onChange` selections wherever it pleases.
|
|
855
|
+
*
|
|
856
|
+
* Phase 1 of `theokit-ui-parity-plan.md` (T1.1).
|
|
857
|
+
*/
|
|
858
|
+
type ThinkingLevel = "off" | "minimal" | "low" | "medium" | "high" | "xhigh";
|
|
859
|
+
type ThinkingLevelOrInherited = ThinkingLevel | "inherited";
|
|
860
|
+
interface ThinkingLevelSelectorProps {
|
|
861
|
+
value: ThinkingLevelOrInherited;
|
|
862
|
+
inheritedValue?: ThinkingLevel;
|
|
863
|
+
onChange: (value: ThinkingLevelOrInherited) => void;
|
|
864
|
+
disabled?: boolean;
|
|
865
|
+
className?: string;
|
|
866
|
+
"data-testid"?: string;
|
|
867
|
+
}
|
|
868
|
+
declare const ThinkingLevelSelector: react.ForwardRefExoticComponent<ThinkingLevelSelectorProps & react.RefAttributes<HTMLSelectElement>>;
|
|
869
|
+
|
|
870
|
+
/**
|
|
871
|
+
* RunStatusPill — compact status indicator for Run/Task lifecycle states.
|
|
872
|
+
* Mirrors OpenClaw's `Run status: In progress | Done | Interrupted` pill.
|
|
873
|
+
* Closed enum mirrors SDK `Task` state (D362).
|
|
874
|
+
*/
|
|
875
|
+
type RunStatus = "queued" | "in_progress" | "finished" | "error" | "cancelled" | "interrupted";
|
|
876
|
+
interface RunStatusPillProps extends Omit<HTMLAttributes<HTMLSpanElement>, "title"> {
|
|
877
|
+
status: RunStatus;
|
|
878
|
+
detail?: string;
|
|
879
|
+
"data-testid"?: string;
|
|
880
|
+
}
|
|
881
|
+
declare const RunStatusPill: react.ForwardRefExoticComponent<RunStatusPillProps & react.RefAttributes<HTMLSpanElement>>;
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* BranchIndicator — small "×N" pill that shows when a run was retried/branched.
|
|
885
|
+
*
|
|
886
|
+
* Renders `null` when `branchCount < 2` OR when not a positive integer.
|
|
887
|
+
* EC-10 guard: parametrized over [-1, 0, 0.5] in tests.
|
|
888
|
+
*/
|
|
889
|
+
interface BranchIndicatorProps extends HTMLAttributes<HTMLSpanElement> {
|
|
890
|
+
branchCount: number;
|
|
891
|
+
tooltipText?: string;
|
|
892
|
+
"data-testid"?: string;
|
|
893
|
+
}
|
|
894
|
+
declare const BranchIndicator: react.ForwardRefExoticComponent<BranchIndicatorProps & react.RefAttributes<HTMLSpanElement>>;
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* GatewayStatusIndicator — live connection-status dot for a gateway/server.
|
|
898
|
+
*
|
|
899
|
+
* Variants:
|
|
900
|
+
* - compact : colored dot only (sidebar footer use)
|
|
901
|
+
* - labeled : dot + label + optional latency text
|
|
902
|
+
*
|
|
903
|
+
* `reconnecting` state animates with `animate-pulse` and respects
|
|
904
|
+
* `prefers-reduced-motion` automatically (Tailwind defaults).
|
|
905
|
+
*/
|
|
906
|
+
type GatewayStatus = "online" | "offline" | "degraded" | "reconnecting";
|
|
907
|
+
interface GatewayStatusIndicatorProps extends Omit<HTMLAttributes<HTMLSpanElement>, "title"> {
|
|
908
|
+
status: GatewayStatus;
|
|
909
|
+
latencyMs?: number;
|
|
910
|
+
variant?: "compact" | "labeled";
|
|
911
|
+
"data-testid"?: string;
|
|
912
|
+
}
|
|
913
|
+
declare const GatewayStatusIndicator: react.ForwardRefExoticComponent<GatewayStatusIndicatorProps & react.RefAttributes<HTMLSpanElement>>;
|
|
914
|
+
|
|
915
|
+
/**
|
|
916
|
+
* UpdateBanner — top-of-app alert when a newer version is available.
|
|
917
|
+
*
|
|
918
|
+
* Controlled. Dismiss persistence (localStorage/cookie/etc) is the consumer's
|
|
919
|
+
* responsibility (per EC-16 DOCUMENT). Component just fires `onDismiss`.
|
|
920
|
+
*/
|
|
921
|
+
interface UpdateBannerProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
922
|
+
currentVersion: string;
|
|
923
|
+
latestVersion: string;
|
|
924
|
+
onUpdate: () => void;
|
|
925
|
+
onDismiss?: () => void;
|
|
926
|
+
severity?: "info" | "warn";
|
|
927
|
+
"data-testid"?: string;
|
|
928
|
+
}
|
|
929
|
+
declare const UpdateBanner: react.ForwardRefExoticComponent<UpdateBannerProps & react.RefAttributes<HTMLDivElement>>;
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* ExportChatDialog — modal letting users export a chat session in selectable
|
|
933
|
+
* formats. Async-aware: `onExport` returning a Promise disables the button
|
|
934
|
+
* until resolution.
|
|
935
|
+
*
|
|
936
|
+
* Controlled. Consumer renders the trigger and toggles `open`.
|
|
937
|
+
*/
|
|
938
|
+
type ExportFormat = "markdown" | "json" | "jsonl" | "sharegpt";
|
|
939
|
+
interface ExportChatDialogProps {
|
|
940
|
+
open: boolean;
|
|
941
|
+
onOpenChange: (open: boolean) => void;
|
|
942
|
+
onExport: (format: ExportFormat) => void | Promise<void>;
|
|
943
|
+
availableFormats?: ExportFormat[];
|
|
944
|
+
sessionLabel?: string;
|
|
945
|
+
className?: string;
|
|
946
|
+
"data-testid"?: string;
|
|
947
|
+
}
|
|
948
|
+
declare const ExportChatDialog: react.ForwardRefExoticComponent<ExportChatDialogProps & react.RefAttributes<HTMLDivElement>>;
|
|
949
|
+
|
|
950
|
+
/**
|
|
951
|
+
* StabilityBundleViewer — inspector for a stability-bundle JSON produced by a
|
|
952
|
+
* server crash. Sections (error, env, config, metadata) collapse independently.
|
|
953
|
+
*
|
|
954
|
+
* EC-9: handles bundles missing optional sections gracefully. Renderer DOES
|
|
955
|
+
* NOT redact env values — bundle writer is expected to redact at emit-time.
|
|
956
|
+
*/
|
|
957
|
+
type StabilitySeverity = "fatal" | "error" | "warn";
|
|
958
|
+
interface StabilityBundle {
|
|
959
|
+
timestamp: string;
|
|
960
|
+
severity: StabilitySeverity;
|
|
961
|
+
summary: string;
|
|
962
|
+
error?: {
|
|
963
|
+
name: string;
|
|
964
|
+
message: string;
|
|
965
|
+
stack?: string;
|
|
966
|
+
};
|
|
967
|
+
env?: Record<string, string>;
|
|
968
|
+
config?: Record<string, unknown>;
|
|
969
|
+
metadata?: Record<string, unknown>;
|
|
970
|
+
}
|
|
971
|
+
interface StabilityBundleViewerProps {
|
|
972
|
+
bundle: StabilityBundle;
|
|
973
|
+
onCopy?: () => void;
|
|
974
|
+
className?: string;
|
|
975
|
+
"data-testid"?: string;
|
|
976
|
+
}
|
|
977
|
+
declare const StabilityBundleViewer: react.ForwardRefExoticComponent<StabilityBundleViewerProps & react.RefAttributes<HTMLDivElement>>;
|
|
978
|
+
|
|
845
979
|
/**
|
|
846
980
|
* Card — surface container for grouping related content.
|
|
847
981
|
*
|
|
@@ -1691,6 +1825,33 @@ interface MCPServerCardProps extends HTMLAttributes<HTMLElement> {
|
|
|
1691
1825
|
*/
|
|
1692
1826
|
declare const MCPServerCard: react.ForwardRefExoticComponent<MCPServerCardProps & react.RefAttributes<HTMLElement>>;
|
|
1693
1827
|
|
|
1828
|
+
type ChannelPlatform = "telegram" | "discord" | "slack" | "whatsapp" | "webhook" | "mcp";
|
|
1829
|
+
type ChannelStatus = "disconnected" | "connecting" | "connected" | "error";
|
|
1830
|
+
interface Channel {
|
|
1831
|
+
id: string;
|
|
1832
|
+
name: string;
|
|
1833
|
+
platform: ChannelPlatform;
|
|
1834
|
+
status: ChannelStatus;
|
|
1835
|
+
description?: ReactNode;
|
|
1836
|
+
lastSeen?: string;
|
|
1837
|
+
messageCount?: number;
|
|
1838
|
+
}
|
|
1839
|
+
interface ChannelCardProps extends HTMLAttributes<HTMLElement> {
|
|
1840
|
+
channel: Channel;
|
|
1841
|
+
onConfigure?: (id: string) => void;
|
|
1842
|
+
onToggle?: (id: string, enabled: boolean) => void;
|
|
1843
|
+
}
|
|
1844
|
+
/**
|
|
1845
|
+
* ChannelCard — inbound gateway connection (Telegram, Discord, Slack, …)
|
|
1846
|
+
* showing its connection status, platform, and inline controls.
|
|
1847
|
+
*
|
|
1848
|
+
* EC absorbed: the toggle reflects the *current* status. "connected" implies
|
|
1849
|
+
* enabled (toggle off disconnects); "disconnected"/"error" implies disabled
|
|
1850
|
+
* (toggle on reconnects). "connecting" is a transient state — toggle is a
|
|
1851
|
+
* no-op (button disabled).
|
|
1852
|
+
*/
|
|
1853
|
+
declare const ChannelCard: react.ForwardRefExoticComponent<ChannelCardProps & react.RefAttributes<HTMLElement>>;
|
|
1854
|
+
|
|
1694
1855
|
interface ModelCapabilityFlag {
|
|
1695
1856
|
id: string;
|
|
1696
1857
|
label: string;
|
|
@@ -4458,4 +4619,4 @@ interface CommandPaletteProps {
|
|
|
4458
4619
|
*/
|
|
4459
4620
|
declare function CommandPalette({ open, onOpenChange, items, onSelect, placeholder, emptyMessage, filter, }: CommandPaletteProps): react_jsx_runtime.JSX.Element;
|
|
4460
4621
|
|
|
4461
|
-
export { ALL_MODES, AccountMenu, type AccountMenuProps, ActionBar, type ActionBarProps, AgentComposer, type AgentDraft, AgentEditor, AgentErrorCard, type AgentErrorKind, AgentEvent, type AgentEvent$1 as AgentEventModel, type AgentEventStatus, type AgentEventType, AgentHandoff, AgentProfile, type AgentProfileDescriptor, AgentStartingState, AgentStream, type AgentStreamItem, AgentStreaming, AgentTimeline, Alert, type AlertIntent, type AlertProps, ApprovalCard, type ApprovalSeverity, ArtifactPreview, type Attachment, AttachmentChip, type AuditActorKind, type AuditEntry, AuditLogEntry, type AuditSeverity, AutoCompactNotice, Avatar, BadgeWithDot as Badge, type BadgeProps, BrowserControls, BuildLogStream, Button, type ButtonProps, type Capability, CapabilityIndicator, type CapabilityState, Card, ChatComposer, ChatMessage, ChatMessageAction, type ChatMessageActionProps, ChatMessageActions, type ChatMessageActionsProps, ChatMessageBranch, ChatMessageBranchContent, type ChatMessageBranchContentProps, ChatMessageBranchNext, type ChatMessageBranchNextProps, ChatMessageBranchPage, type ChatMessageBranchPageProps, ChatMessageBranchPrevious, type ChatMessageBranchPreviousProps, type ChatMessageBranchProps, ChatMessageBranchSelector, type ChatMessageBranchSelectorProps, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContentVariant, type ChatMessageProps, ChatMessageResponse, type ChatMessageResponseProps, ChatMessageRoot, type ChatMessageRootProps, ChatMessageToolbar, type ChatMessageToolbarProps, ChatThread, Checkbox, CodeBlock, type CodeBlockProps, type ColorScale, type CommandItem, CommandPalette, type ComposerMode, ConfirmDialog, type ConfirmDialogProps, ContextCard, ContextWindowBar, CopyButton, type CopyButtonProps, CostMeter, type CreatedFile, CreatedFilesCard, type CronJob, CronJobCard, type CronJobStatus, CronJobsList, type CustomContentUIPart, DangerZone, type DangerZoneActionProps, type DangerZoneProps, DataPart, type DataPartProps, type DataRenderer, type DataRendererMap, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, type DataUIPart, type DefineThemeInput, type Density, type DensityContextValue, type Deployment, DeploymentRow, type DeploymentStatus, Dialog, type DiffHunk, type DiffLine, type DiffLineKind, DiffViewer, type Domain, DomainConfig, type DomainStatus, DropdownMenu, EmptyState, type EnvScope, type EnvVar, EnvVarEditor, FilePart, type FilePartProps, type FileUIPart, FolderContextCard, type FolderEntry, FolderSelector, FormField, HOOK_EVENTS, type HandoffParty, HookConfig, type HookEntry, type HookEvent, type HookEventEntry, HookEventLog, type HookEventResult, Input, type InputProps, type IntentOption, IntentSelector, Label$1 as Label, type Lane, LaneBoard, type LaneCard, type LaneState, type LogLevel, type LogLine, LoginSplit, type MCPServer, MCPServerCard, MCPServerList, type MCPServerStatus, MODE_LABEL, MemoryEditor, type MemoryLayer, type MemoryScope, type MentionItem, MentionMenu, type MentionTrigger, type MessageRole, type Metric, MetricsPanel, type Mode, type ModelCapabilityFlag, ModelCard, type ModelInfo, type ModelOption, ModelSelector, PageShell, type PageShellProps, Pagination, type PaginationProps, type PartRendererMap, type PermissionDecision, type PermissionDecisionKind, PermissionMatrix, PermissionModal, type PermissionOperation, type PermissionRequest, type PermissionRule, PinInput, type PinInputProps, PlanBadge, type PlanBadgeProps, type PlanNode, type PlanNodeStatus, type PlanTier, type PreviewEnv, PreviewEnvCard, PreviewPanel, type PreviewService, Progress, ProgressChecklist, type ProgressProps, type Project, ProjectCard, type ProjectStatus, ProjectSwitcher, type ProviderMetadata, type QuickAction, QuickActionChips, RadioGroup$1 as RadioGroup, type RailStep, type ReasoningFileUIPart, ReasoningPart, type ReasoningPartProps, type ReasoningUIPart, type RecentFolder, RecentFoldersList, type RenderPartOptions, type RollbackTarget, RollbackUI, type Rule, RuleCard, RuleEditor, type RuleScope, type RuleState, RunStats, type RunningTaskItem, type RunningTaskStatus, RunningTasksPanel, ScrollArea, Select, SessionListItem, type SessionMode, type SessionRunStatus, type SessionStatus, type SessionSummary, SessionTimeline, Sheet, Sidebar, Skeleton, type Skill, SkillCard, SkillEditor, type SkillSource, type SkillState, SkillsList, SocialAuthRow, type SocialProvider, SourceDocumentPart, type SourceDocumentPartProps, type SourceDocumentUIPart, SourceUrlPart, type SourceUrlPartProps, type SourceUrlUIPart, StatTile, type StatTileProps, StatusDot, type StatusDotProps, type StatusKind, type StepStartUIPart, StepsRail, SubAgentDispatch, type SubAgentRun, type SubAgentState, Switch, SystemPromptEditor, Table, type TableCellProps, type TableHeaderCellProps, type TableProps, Tabs, TaskHeader, TaskNode, TaskPlan, type TaskSource, type TaskStatus, type TaskStep, type TaskStepStatus, type TerminalLine, TerminalPanel, TextPart, type TextPartProps, type TextUIPart, Textarea, type TextareaProps, type Theme, type ThemeFonts, type ThemeMode, ThemeProvider, ThemeScript, ThemeSwitcher, TheoUIProvider, type TheoUIProviderProps, Timestamp, type TimestampProps, Toast, type ToastVariant, Toaster, TokenUsageChart, type TokenUsagePoint, ToolCall, ToolCallCard, ToolCallPart, type ToolCallPartProps, type ToolCallStatus, type ToolEnablement, type ToolEntry, type ToolInvocationState, ToolResult, type ToolUIPart, ToolsList, TooltipWithStatics as Tooltip, TopNav, type UIMessage, type UIMessagePart, UsageMeter, type UsageMeterProps, type UsageMetric, anthropicStyle, auroraTerminal, avatarVariants, badgeVariants, builtinThemes, buttonVariants, capabilityPresets, classicPaper, cn, computePageRange, defineTheme, dracula, githubDark, hex, isCustomContentUIPart, isDataUIPart, isFileUIPart, isReasoningFileUIPart, isReasoningUIPart, isSourceDocumentUIPart, isSourceUrlUIPart, isStepStartUIPart, isTextUIPart, isToolUIPart, linearGlass, modelCapabilityPresets, oneDark, openaiStyle, renderPart, rgb, sheetVariants, useDensity, useTheme, useToast, vercelMono, violetForge };
|
|
4622
|
+
export { ALL_MODES, AccountMenu, type AccountMenuProps, ActionBar, type ActionBarProps, AgentComposer, type AgentDraft, AgentEditor, AgentErrorCard, type AgentErrorKind, AgentEvent, type AgentEvent$1 as AgentEventModel, type AgentEventStatus, type AgentEventType, AgentHandoff, AgentProfile, type AgentProfileDescriptor, AgentStartingState, AgentStream, type AgentStreamItem, AgentStreaming, AgentTimeline, Alert, type AlertIntent, type AlertProps, ApprovalCard, type ApprovalSeverity, ArtifactPreview, type Attachment, AttachmentChip, type AuditActorKind, type AuditEntry, AuditLogEntry, type AuditSeverity, AutoCompactNotice, Avatar, BadgeWithDot as Badge, type BadgeProps, BranchIndicator, type BranchIndicatorProps, BrowserControls, BuildLogStream, Button, type ButtonProps, type Capability, CapabilityIndicator, type CapabilityState, Card, type Channel, ChannelCard, type ChannelPlatform, type ChannelStatus, ChatComposer, ChatMessage, ChatMessageAction, type ChatMessageActionProps, ChatMessageActions, type ChatMessageActionsProps, ChatMessageBranch, ChatMessageBranchContent, type ChatMessageBranchContentProps, ChatMessageBranchNext, type ChatMessageBranchNextProps, ChatMessageBranchPage, type ChatMessageBranchPageProps, ChatMessageBranchPrevious, type ChatMessageBranchPreviousProps, type ChatMessageBranchProps, ChatMessageBranchSelector, type ChatMessageBranchSelectorProps, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContentVariant, type ChatMessageProps, ChatMessageResponse, type ChatMessageResponseProps, ChatMessageRoot, type ChatMessageRootProps, ChatMessageToolbar, type ChatMessageToolbarProps, ChatThread, Checkbox, CodeBlock, type CodeBlockProps, type ColorScale, type CommandItem, CommandPalette, type ComposerMode, ConfirmDialog, type ConfirmDialogProps, ContextCard, ContextWindowBar, CopyButton, type CopyButtonProps, CostMeter, type CreatedFile, CreatedFilesCard, type CronJob, CronJobCard, type CronJobStatus, CronJobsList, type CustomContentUIPart, DangerZone, type DangerZoneActionProps, type DangerZoneProps, DataPart, type DataPartProps, type DataRenderer, type DataRendererMap, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, type DataUIPart, type DefineThemeInput, type Density, type DensityContextValue, type Deployment, DeploymentRow, type DeploymentStatus, Dialog, type DiffHunk, type DiffLine, type DiffLineKind, DiffViewer, type Domain, DomainConfig, type DomainStatus, DropdownMenu, EmptyState, type EnvScope, type EnvVar, EnvVarEditor, ExportChatDialog, type ExportChatDialogProps, type ExportFormat, FilePart, type FilePartProps, type FileUIPart, FolderContextCard, type FolderEntry, FolderSelector, FormField, type GatewayStatus, GatewayStatusIndicator, type GatewayStatusIndicatorProps, HOOK_EVENTS, type HandoffParty, HookConfig, type HookEntry, type HookEvent, type HookEventEntry, HookEventLog, type HookEventResult, Input, type InputProps, type IntentOption, IntentSelector, Label$1 as Label, type Lane, LaneBoard, type LaneCard, type LaneState, type LogLevel, type LogLine, LoginSplit, type MCPServer, MCPServerCard, MCPServerList, type MCPServerStatus, MODE_LABEL, MemoryEditor, type MemoryLayer, type MemoryScope, type MentionItem, MentionMenu, type MentionTrigger, type MessageRole, type Metric, MetricsPanel, type Mode, type ModelCapabilityFlag, ModelCard, type ModelInfo, type ModelOption, ModelSelector, PageShell, type PageShellProps, Pagination, type PaginationProps, type PartRendererMap, type PermissionDecision, type PermissionDecisionKind, PermissionMatrix, PermissionModal, type PermissionOperation, type PermissionRequest, type PermissionRule, PinInput, type PinInputProps, PlanBadge, type PlanBadgeProps, type PlanNode, type PlanNodeStatus, type PlanTier, type PreviewEnv, PreviewEnvCard, PreviewPanel, type PreviewService, Progress, ProgressChecklist, type ProgressProps, type Project, ProjectCard, type ProjectStatus, ProjectSwitcher, type ProviderMetadata, type QuickAction, QuickActionChips, RadioGroup$1 as RadioGroup, type RailStep, type ReasoningFileUIPart, ReasoningPart, type ReasoningPartProps, type ReasoningUIPart, type RecentFolder, RecentFoldersList, type RenderPartOptions, type RollbackTarget, RollbackUI, type Rule, RuleCard, RuleEditor, type RuleScope, type RuleState, RunStats, type RunStatus, RunStatusPill, type RunStatusPillProps, type RunningTaskItem, type RunningTaskStatus, RunningTasksPanel, ScrollArea, Select, SessionListItem, type SessionMode, type SessionRunStatus, type SessionStatus, type SessionSummary, SessionTimeline, Sheet, Sidebar, Skeleton, type Skill, SkillCard, SkillEditor, type SkillSource, type SkillState, SkillsList, SocialAuthRow, type SocialProvider, SourceDocumentPart, type SourceDocumentPartProps, type SourceDocumentUIPart, SourceUrlPart, type SourceUrlPartProps, type SourceUrlUIPart, type StabilityBundle, StabilityBundleViewer, type StabilityBundleViewerProps, type StabilitySeverity, StatTile, type StatTileProps, StatusDot, type StatusDotProps, type StatusKind, type StepStartUIPart, StepsRail, SubAgentDispatch, type SubAgentRun, type SubAgentState, Switch, SystemPromptEditor, Table, type TableCellProps, type TableHeaderCellProps, type TableProps, Tabs, TaskHeader, TaskNode, TaskPlan, type TaskSource, type TaskStatus, type TaskStep, type TaskStepStatus, type TerminalLine, TerminalPanel, TextPart, type TextPartProps, type TextUIPart, Textarea, type TextareaProps, type Theme, type ThemeFonts, type ThemeMode, ThemeProvider, ThemeScript, ThemeSwitcher, TheoUIProvider, type TheoUIProviderProps, type ThinkingLevel, type ThinkingLevelOrInherited, ThinkingLevelSelector, type ThinkingLevelSelectorProps, Timestamp, type TimestampProps, Toast, type ToastVariant, Toaster, TokenUsageChart, type TokenUsagePoint, ToolCall, ToolCallCard, ToolCallPart, type ToolCallPartProps, type ToolCallStatus, type ToolEnablement, type ToolEntry, type ToolInvocationState, ToolResult, type ToolUIPart, ToolsList, TooltipWithStatics as Tooltip, TopNav, type UIMessage, type UIMessagePart, UpdateBanner, type UpdateBannerProps, UsageMeter, type UsageMeterProps, type UsageMetric, anthropicStyle, auroraTerminal, avatarVariants, badgeVariants, builtinThemes, buttonVariants, capabilityPresets, classicPaper, cn, computePageRange, defineTheme, dracula, githubDark, hex, isCustomContentUIPart, isDataUIPart, isFileUIPart, isReasoningFileUIPart, isReasoningUIPart, isSourceDocumentUIPart, isSourceUrlUIPart, isStepStartUIPart, isTextUIPart, isToolUIPart, linearGlass, modelCapabilityPresets, oneDark, openaiStyle, renderPart, rgb, sheetVariants, useDensity, useTheme, useToast, vercelMono, violetForge };
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
export { PreviewPanel } from './chunk-BGKA6DI6.js';
|
|
2
1
|
export { ProjectCard } from './chunk-FLBTGNQI.js';
|
|
3
2
|
export { RollbackUI } from './chunk-V7OOTVK3.js';
|
|
4
|
-
export { RuleEditor } from './chunk-
|
|
5
|
-
export { SkillEditor } from './chunk-
|
|
3
|
+
export { RuleEditor } from './chunk-XZKEGEPT.js';
|
|
4
|
+
export { SkillEditor } from './chunk-PTHRL242.js';
|
|
6
5
|
export { SkillsList } from './chunk-AEVSVDT6.js';
|
|
6
|
+
export { StabilityBundleViewer } from './chunk-6ZQKEY54.js';
|
|
7
7
|
export { TaskHeader } from './chunk-BPUQWMBD.js';
|
|
8
8
|
export { UsageMeter } from './chunk-AC4MGCXI.js';
|
|
9
|
-
export { DataTable } from './chunk-DW247T3Q.js';
|
|
10
9
|
export { DeploymentRow } from './chunk-W2PVSIW3.js';
|
|
11
10
|
export { DomainConfig } from './chunk-DFADMEJK.js';
|
|
12
11
|
export { EnvVarEditor } from './chunk-WVPDQMC2.js';
|
|
@@ -14,98 +13,107 @@ export { MCPServerList } from './chunk-B75MEYNR.js';
|
|
|
14
13
|
export { PageShell } from './chunk-QJGGTIUN.js';
|
|
15
14
|
export { PermissionModal } from './chunk-QSOIJ6J3.js';
|
|
16
15
|
export { PreviewEnvCard } from './chunk-LIGWMGXM.js';
|
|
17
|
-
export {
|
|
16
|
+
export { PreviewPanel } from './chunk-BGKA6DI6.js';
|
|
18
17
|
import './chunk-ZXPDS6DH.js';
|
|
19
18
|
export { CodeBlock } from './chunk-ZESICCKK.js';
|
|
20
19
|
export { CommandPalette } from './chunk-BP2SETUC.js';
|
|
21
20
|
export { ConfirmDialog } from './chunk-GIEPEFRX.js';
|
|
22
21
|
export { CronJobsList } from './chunk-KQNKKV2C.js';
|
|
23
|
-
export {
|
|
24
|
-
export { ToolsList } from './chunk-JQXLPVWP.js';
|
|
22
|
+
export { DataTable } from './chunk-DW247T3Q.js';
|
|
25
23
|
export { TooltipWithStatics as Tooltip } from './chunk-FUT45NFW.js';
|
|
26
24
|
export { TopNav } from './chunk-74NZ5U3E.js';
|
|
25
|
+
export { UpdateBanner } from './chunk-GXBFGWQN.js';
|
|
27
26
|
export { AccountMenu } from './chunk-ZJRWCQEN.js';
|
|
28
27
|
export { AgentComposer } from './chunk-CDA6RYOX.js';
|
|
29
28
|
export { ChatComposer } from './chunk-HQFTW7SF.js';
|
|
30
|
-
export { AgentEditor } from './chunk-
|
|
29
|
+
export { AgentEditor } from './chunk-K7PYLTMP.js';
|
|
31
30
|
export { ALL_MODES, MODE_LABEL } from './chunk-VM4RMQQN.js';
|
|
32
31
|
export { AgentStream } from './chunk-DKQAHZG2.js';
|
|
33
32
|
export { ApprovalCard } from './chunk-SF6R5VMQ.js';
|
|
34
33
|
export { ChatMessage, ChatMessageAction, ChatMessageActions, ChatMessageBranch, ChatMessageBranchContent, ChatMessageBranchNext, ChatMessageBranchPage, ChatMessageBranchPrevious, ChatMessageBranchSelector, ChatMessageContent, ChatMessageResponse, ChatMessageRoot, ChatMessageToolbar, DataPart, FilePart, ReasoningPart, SourceDocumentPart, SourceUrlPart, TextPart, ToolCallPart, isCustomContentUIPart, isDataUIPart, isFileUIPart, isReasoningFileUIPart, isReasoningUIPart, isSourceDocumentUIPart, isSourceUrlUIPart, isStepStartUIPart, isTextUIPart, isToolUIPart, renderPart } from './chunk-VI5M7KJ2.js';
|
|
35
34
|
import { safeHref } from './chunk-673R3GSK.js';
|
|
36
|
-
export {
|
|
37
|
-
export {
|
|
38
|
-
export { Textarea } from './chunk-WWNH5ENT.js';
|
|
35
|
+
export { AgentTimeline } from './chunk-4UUSJJFZ.js';
|
|
36
|
+
export { ThinkingLevelSelector } from './chunk-UOMQPIB4.js';
|
|
39
37
|
export { Timestamp } from './chunk-4ZBZBRG5.js';
|
|
40
38
|
import { Toaster } from './chunk-I7WYM63C.js';
|
|
41
39
|
export { Toast, Toaster, useToast } from './chunk-I7WYM63C.js';
|
|
42
40
|
export { TokenUsageChart } from './chunk-AXKBNRZW.js';
|
|
43
41
|
export { ToolCall } from './chunk-SP4CP5HY.js';
|
|
44
42
|
export { ToolCallCard } from './chunk-CWFMFKDI.js';
|
|
45
|
-
export {
|
|
46
|
-
export {
|
|
47
|
-
export { StepsRail } from './chunk-LHRWVM3G.js';
|
|
43
|
+
export { ToolResult } from './chunk-HG4WEERE.js';
|
|
44
|
+
export { ToolsList } from './chunk-JQXLPVWP.js';
|
|
48
45
|
export { SubAgentDispatch } from './chunk-ZIKFOD6N.js';
|
|
49
46
|
export { Switch } from './chunk-3HOXC25T.js';
|
|
50
47
|
export { SystemPromptEditor } from './chunk-BNQAJGEN.js';
|
|
51
48
|
export { Table } from './chunk-YRSKXEOD.js';
|
|
52
49
|
export { Tabs } from './chunk-GBJB5WLT.js';
|
|
53
|
-
export {
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
50
|
+
export { TaskNode, TaskPlan } from './chunk-XUJYEADU.js';
|
|
51
|
+
export { TerminalPanel } from './chunk-LEEH63B2.js';
|
|
52
|
+
export { Textarea } from './chunk-WWNH5ENT.js';
|
|
56
53
|
export { Sheet, sheetVariants } from './chunk-CWVKSV7S.js';
|
|
57
54
|
export { Sidebar } from './chunk-RVOBP7PO.js';
|
|
58
55
|
export { Skeleton } from './chunk-K5ARID4S.js';
|
|
59
56
|
export { SkillCard } from './chunk-47QJVWW2.js';
|
|
60
57
|
export { SocialAuthRow } from './chunk-3QGO5SB3.js';
|
|
61
|
-
export {
|
|
62
|
-
export {
|
|
63
|
-
export {
|
|
64
|
-
export { RecentFoldersList } from './chunk-5FF5EUZP.js';
|
|
58
|
+
export { StatTile } from './chunk-XRKIEL5M.js';
|
|
59
|
+
export { StatusDot } from './chunk-NQZYY4LR.js';
|
|
60
|
+
export { StepsRail } from './chunk-LHRWVM3G.js';
|
|
65
61
|
export { RuleCard } from './chunk-UOXU7NDY.js';
|
|
66
62
|
export { RunStats } from './chunk-3GHLNCM3.js';
|
|
63
|
+
export { RunStatusPill } from './chunk-UK27KR35.js';
|
|
67
64
|
export { RunningTasksPanel } from './chunk-GUQFYUIC.js';
|
|
68
65
|
export { ScrollArea } from './chunk-AODIMN2N.js';
|
|
66
|
+
export { Select } from './chunk-EP25QJ4N.js';
|
|
67
|
+
export { SessionListItem } from './chunk-CIYGNPKT.js';
|
|
68
|
+
export { SessionTimeline } from './chunk-XVYNSIQC.js';
|
|
69
|
+
export { PinInput } from './chunk-MYEHGDC2.js';
|
|
70
|
+
export { PlanBadge } from './chunk-R63ZKLQM.js';
|
|
71
|
+
export { Progress } from './chunk-2XPWOUEH.js';
|
|
72
|
+
export { ProgressChecklist } from './chunk-CKXY4FTV.js';
|
|
73
|
+
export { ProjectSwitcher } from './chunk-62FT22CI.js';
|
|
74
|
+
export { QuickActionChips } from './chunk-K6RTLPIJ.js';
|
|
75
|
+
export { RadioGroup } from './chunk-E5A7HN6H.js';
|
|
76
|
+
export { RecentFoldersList } from './chunk-5FF5EUZP.js';
|
|
77
|
+
export { MCPServerCard } from './chunk-QB6BNHO3.js';
|
|
78
|
+
export { MemoryEditor } from './chunk-CVOKZITR.js';
|
|
79
|
+
export { MentionMenu } from './chunk-6VINZJBV.js';
|
|
80
|
+
export { MetricsPanel } from './chunk-UAYOOTRR.js';
|
|
69
81
|
export { ModelCard, modelCapabilityPresets } from './chunk-X5L62PXY.js';
|
|
70
82
|
export { ModelSelector } from './chunk-RTYYJPPE.js';
|
|
71
83
|
export { Pagination, computePageRange } from './chunk-YOGHS4UU.js';
|
|
72
84
|
export { PermissionMatrix } from './chunk-KRN4NE4U.js';
|
|
73
|
-
export {
|
|
74
|
-
export {
|
|
75
|
-
export {
|
|
76
|
-
export {
|
|
85
|
+
export { GatewayStatusIndicator } from './chunk-AVPHVQZS.js';
|
|
86
|
+
export { HOOK_EVENTS, HookConfig } from './chunk-PWXOXPFT.js';
|
|
87
|
+
export { HookEventLog } from './chunk-EI63GTN7.js';
|
|
88
|
+
export { Input } from './chunk-H3VJMFJQ.js';
|
|
77
89
|
export { IntentSelector } from './chunk-EU55O4P7.js';
|
|
78
90
|
export { Label } from './chunk-PR6OZF6D.js';
|
|
79
91
|
export { LaneBoard } from './chunk-L2BI762I.js';
|
|
80
92
|
export { LoginSplit } from './chunk-755NWSNW.js';
|
|
81
|
-
export {
|
|
82
|
-
export {
|
|
83
|
-
export { MentionMenu } from './chunk-6VINZJBV.js';
|
|
84
|
-
export { MetricsPanel } from './chunk-UAYOOTRR.js';
|
|
93
|
+
export { Dialog } from './chunk-2UJROWAG.js';
|
|
94
|
+
export { DiffViewer } from './chunk-ET44426Q.js';
|
|
85
95
|
export { DropdownMenu } from './chunk-MI5CXMZU.js';
|
|
86
96
|
export { EmptyState } from './chunk-SWJ4EUOI.js';
|
|
97
|
+
export { ExportChatDialog } from './chunk-I32I36LW.js';
|
|
87
98
|
export { FolderContextCard } from './chunk-BVDASR3Y.js';
|
|
88
99
|
export { FolderSelector } from './chunk-PPH5NTHV.js';
|
|
89
100
|
export { FormField } from './chunk-TK24HQJJ.js';
|
|
90
|
-
export {
|
|
91
|
-
export {
|
|
92
|
-
export { Input } from './chunk-H3VJMFJQ.js';
|
|
101
|
+
export { Checkbox } from './chunk-G3LWNTVZ.js';
|
|
102
|
+
export { ContextCard } from './chunk-WKLW7RC6.js';
|
|
93
103
|
export { ContextWindowBar } from './chunk-CG7O3A42.js';
|
|
94
104
|
export { CopyButton } from './chunk-F436537E.js';
|
|
95
105
|
export { CostMeter } from './chunk-LKYSX3QF.js';
|
|
96
106
|
export { CreatedFilesCard } from './chunk-UDTAMHXW.js';
|
|
97
107
|
export { CronJobCard } from './chunk-WKEUU2FU.js';
|
|
98
108
|
export { DangerZone } from './chunk-ZDAOHMCW.js';
|
|
99
|
-
export {
|
|
100
|
-
export { DiffViewer } from './chunk-ET44426Q.js';
|
|
109
|
+
export { BranchIndicator } from './chunk-RC5XME4T.js';
|
|
101
110
|
export { BrowserControls } from './chunk-VMMATOPE.js';
|
|
102
111
|
export { BuildLogStream } from './chunk-XGCV5E6W.js';
|
|
103
112
|
export { Button, buttonVariants } from './chunk-57NXT3OX.js';
|
|
104
113
|
export { CapabilityIndicator, capabilityPresets } from './chunk-CYOLRWOX.js';
|
|
105
114
|
export { Card } from './chunk-ZALLCR7X.js';
|
|
115
|
+
export { ChannelCard } from './chunk-JPTPIZ5V.js';
|
|
106
116
|
export { ChatThread } from './chunk-PASI2U2R.js';
|
|
107
|
-
export { Checkbox } from './chunk-G3LWNTVZ.js';
|
|
108
|
-
export { ContextCard } from './chunk-WKLW7RC6.js';
|
|
109
117
|
export { AgentStreaming } from './chunk-ETEIDY34.js';
|
|
110
118
|
export { Alert } from './chunk-W3DUDZDU.js';
|
|
111
119
|
export { ArtifactPreview } from './chunk-XWTISHXO.js';
|