@lukeashford/aurelius 3.8.0 → 3.9.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/llms.md CHANGED
@@ -155,8 +155,8 @@ Import from `@lukeashford/aurelius`:
155
155
  | VideoCard | src, title, subtitle, aspectRatio (${number}/${number}), playing, controls, light, volume, muted, loop, mediaClassName, contentClassName, playerProps, loading |
156
156
  | ArtifactsPanel | nodes, loading, artifactCount, onExpand |
157
157
  | BranchNavigator | current, total, onPrevious, onNext, size, showIcon |
158
- | ChatInput | position (centered, bottom), placeholder, helperText, onSubmit, disabled, animate, isStreaming, onStop, attachments, onAttachmentsChange, showAttachmentButton, acceptedFileTypes, notice, onInputChange, initialInputValue, autoFocus |
159
- | ChatInterface | messages, conversationTree, onTreeChange, conversations, onMessageSubmit, onEditMessage, onRetryMessage, onStop, onSelectConversation, onNewChat, onRenameConversation, isStreaming, isThinking, placeholder, emptyStateHelper, emptyState, showAttachmentButton, enableMessageActions, attachments, onAttachmentsChange, artifactNodes, isArtifactsPanelOpen, onArtifactsPanelOpenChange, tasks, tasksTitle, onStopAllTasks |
158
+ | ChatInput | position (centered, bottom), placeholder, helperText, onSubmit, disabled, animate, isStreaming, onStop, attachments, onAttachmentsChange, onAttachmentRemove, showAttachmentButton, acceptedFileTypes, notice, onInputChange, initialInputValue, autoFocus |
159
+ | ChatInterface | messages, conversationTree, onTreeChange, conversations, onMessageSubmit, onEditMessage, onRetryMessage, onStop, onSelectConversation, onNewChat, onRenameConversation, isStreaming, isThinking, placeholder, emptyStateHelper, emptyState, showAttachmentButton, enableMessageActions, attachments, onAttachmentsChange, onAttachmentRemove, artifactNodes, isArtifactsPanelOpen, onArtifactsPanelOpenChange, tasks, tasksTitle, onStopAllTasks |
160
160
  | ChatView | messages, latestUserMessageIndex, isStreaming, isThinking, onScroll |
161
161
  | HistoryPanel | conversations, onSelectConversation, onNewChat, onRenameConversation |
162
162
  | MessageActions | variant (user, assistant), content, onEdit, onRetry, isEditing, onEditingChange, editValue |
@@ -390,6 +390,7 @@ Features:
390
390
  - **onStop**: * Called when the Stop button is clicked during streaming
391
391
  - **attachments**: * Current attachments (controlled mode)
392
392
  - **onAttachmentsChange**: * Called when attachments change (controlled mode)
393
+ - **onAttachmentRemove**: * Called when an attachment is removed by the user (clicking the "x")
393
394
  - **showAttachmentButton**: * Whether to show the attachment button
394
395
  - **acceptedFileTypes**: * Accepted file types for attachments
395
396
  - **notice**: * Optional notice displayed above the input (e.g. credit warnings or exhaustion messages)
@@ -418,10 +419,6 @@ Features:
418
419
  Artifacts are supplied as a tree of ArtifactNode objects via the
419
420
  artifactNodes prop.
420
421
 
421
- - **ChatMessage.id**: * Unique identifier for the message
422
- - **ChatMessage.variant**: * Whether the message is from the user or the assistant
423
- - **ChatMessage.content**: * Message content (Markdown supported)
424
- - **ChatMessage.isStreaming**: * Whether the message is currently streaming
425
422
  - **Conversation.id**: * Unique identifier for the conversation
426
423
  - **Conversation.title**: * Title shown as the first line of the row. Editable via the rename affordance.
427
424
  - **Conversation.project**: * Project this conversation belongs to. Shown as the second line of the row and collected into the project filter in the history panel.
@@ -447,6 +444,7 @@ artifactNodes prop.
447
444
  - **enableMessageActions**: * Whether to enable message-level actions (copy, edit, retry).
448
445
  - **attachments**: * Current attachments for the chat input (controlled).
449
446
  - **onAttachmentsChange**: * Called when attachments are added or removed in the chat input.
447
+ - **onAttachmentRemove**: * Called when an attachment is removed by the user (clicking the "x")
450
448
  - **artifactNodes**: * Top-level artifact tree nodes for the artifacts panel.
451
449
  - **isArtifactsPanelOpen**: * Whether the artifacts panel is currently open (controlled). When set, maps to the tool panel system — opens the artifacts tool.
452
450
  - **onArtifactsPanelOpenChange**: * Called when the artifacts panel is opened or closed (controlled).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukeashford/aurelius",
3
- "version": "3.8.0",
3
+ "version": "3.9.0",
4
4
  "description": "Design system for Aurelius applications — A cohesive visual language for creative technologists",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",