@lukeashford/aurelius 3.1.0 → 3.2.1
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/dist/index.d.mts +11 -60
- package/dist/index.d.ts +11 -60
- package/dist/index.js +261 -397
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +219 -354
- package/dist/index.mjs.map +1 -1
- package/llms.md +3 -19
- package/package.json +1 -1
package/llms.md
CHANGED
|
@@ -156,14 +156,14 @@ Import from `@lukeashford/aurelius`:
|
|
|
156
156
|
| ArtifactsPanel | nodes, loading, artifactCount, onExpand |
|
|
157
157
|
| BranchNavigator | current, total, onPrevious, onNext, size, showIcon |
|
|
158
158
|
| ChatInput | position (centered, bottom), placeholder, helperText, onSubmit, disabled, animate, isStreaming, onStop, attachments, onAttachmentsChange, showAttachmentButton, acceptedFileTypes |
|
|
159
|
-
| ChatInterface | messages, conversationTree, onTreeChange, conversations, onMessageSubmit, onEditMessage, onRetryMessage, onStop, onSelectConversation, onNewChat, isStreaming, isThinking, placeholder, emptyStateHelper,
|
|
159
|
+
| ChatInterface | messages, conversationTree, onTreeChange, conversations, onMessageSubmit, onEditMessage, onRetryMessage, onStop, onSelectConversation, onNewChat, isStreaming, isThinking, placeholder, emptyStateHelper, emptyState, showAttachmentButton, enableMessageActions, attachments, onAttachmentsChange, artifactNodes, isArtifactsPanelOpen, onArtifactsPanelOpenChange, tasks, tasksTitle, tools |
|
|
160
160
|
| ChatView | messages, latestUserMessageIndex, isStreaming, isThinking, onScroll |
|
|
161
|
-
| ConversationSidebar | conversations, isCollapsed, onSelectConversation, onNewChat, onToggleCollapse, width, onResizeStart, onExpand |
|
|
162
161
|
| MessageActions | variant (user, assistant), content, onEdit, onRetry, isEditing, onEditingChange, editValue |
|
|
163
162
|
| ThinkingIndicator | isVisible, phraseInterval, phrases |
|
|
164
163
|
| TodosList | tasks, title |
|
|
165
164
|
| ToolPanelContainer | topContent, bottomContent, width, onResizeStart, side |
|
|
166
165
|
| ToolSidebar | tools, activeTools, onToggleTool, side |
|
|
166
|
+
| ChatBubbleIcon | children |
|
|
167
167
|
| CheckSquareIcon | children |
|
|
168
168
|
| ChevronLeftIcon | children |
|
|
169
169
|
| ChevronRightIcon | children |
|
|
@@ -392,10 +392,9 @@ Features:
|
|
|
392
392
|
ChatInterface is the main orchestrator for a full-featured chat experience.
|
|
393
393
|
|
|
394
394
|
Features:
|
|
395
|
-
- ConversationSidebar (far left) — collapsible list of past conversations
|
|
396
395
|
- ChatView (center) — main conversation area with smart scrolling
|
|
397
396
|
- Dual tool sidebar system — IntelliJ-style tool sidebars on left and right:
|
|
398
|
-
- Left sidebar: History (top-left) + consumer tools (bottom-left)
|
|
397
|
+
- Left sidebar: History (top-left, conversation list + new chat) + consumer tools (bottom-left)
|
|
399
398
|
- Right sidebar: Artifacts (top-right) + Tasks (bottom-right) + consumer tools
|
|
400
399
|
- Tools in the same group are mutually exclusive
|
|
401
400
|
- Both panels can be open simultaneously — chat area shrinks to accommodate
|
|
@@ -428,7 +427,6 @@ artifactNodes prop.
|
|
|
428
427
|
- **isThinking**: * Whether to show the thinking indicator. Typically shown after a user message but before the first streaming token.
|
|
429
428
|
- **placeholder**: * Placeholder text for the main chat input.
|
|
430
429
|
- **emptyStateHelper**: * Helper text shown in the empty state (when there are no messages).
|
|
431
|
-
- **initialSidebarCollapsed**: * Whether the sidebar should be initially collapsed.
|
|
432
430
|
- **emptyState**: * Custom content to show when the conversation is empty. Overrides the default centered input and helper text.
|
|
433
431
|
- **showAttachmentButton**: * Whether to show the attachment (paperclip) button in the input.
|
|
434
432
|
- **enableMessageActions**: * Whether to enable message-level actions (copy, edit, retry).
|
|
@@ -457,20 +455,6 @@ Key behaviors:
|
|
|
457
455
|
- **isThinking**: * Whether to show the thinking indicator (between user message and response)
|
|
458
456
|
- **onScroll**: * Callback when the user scrolls manually
|
|
459
457
|
|
|
460
|
-
**ConversationSidebar**
|
|
461
|
-
ConversationSidebar displays a collapsible list of past conversations.
|
|
462
|
-
|
|
463
|
-
When collapsed, shows a thin strip with history icon at top.
|
|
464
|
-
When expanded, shows chevron at top-left to collapse.
|
|
465
|
-
|
|
466
|
-
- **conversations**: * List of conversations to display
|
|
467
|
-
- **isCollapsed**: * Whether the sidebar is collapsed
|
|
468
|
-
- **onSelectConversation**: * Callback when a conversation is selected
|
|
469
|
-
- **onNewChat**: * Callback when "New Chat" is clicked
|
|
470
|
-
- **onToggleCollapse**: * Callback to toggle collapse state
|
|
471
|
-
- **width**: * Current width of the sidebar (when expanded). Accepts CSS width value (e.g., "15vw", "256px").
|
|
472
|
-
- **onResizeStart**: * Callback to start resizing
|
|
473
|
-
|
|
474
458
|
**MessageActions**
|
|
475
459
|
- **variant**: * Whether this is for a user or assistant message
|
|
476
460
|
- **content**: * The message content for copy functionality
|
package/package.json
CHANGED