@tracktor/design-system 4.26.0 → 4.27.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.
@@ -1,3 +1,3 @@
1
1
  import { ChatConversationDetailProps } from '../types';
2
- declare const ChatConversationDetail: ({ threadId, participants, isLoading, messages, currentUserId, onDeleteConversation, onNewConversation, onSendMessage, onAddParticipants, onSearchParticipants, searchResults, isSearchingParticipants, avatarSrcResolver, renderAfterBubble, labels, formatDayLabel, }: ChatConversationDetailProps) => import("@emotion/react/jsx-runtime").JSX.Element;
2
+ declare const ChatConversationDetail: ({ threadId, participants, isLoading, messages, currentUserId, onDeleteConversation, onNewConversation, onSendMessage, onAddParticipants, onSearchParticipants, searchResults, isSearchingParticipants, avatarSrcResolver, renderAfterBubble, labels, formatDayLabel, isSending, }: ChatConversationDetailProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
3
  export default ChatConversationDetail;
@@ -1,3 +1,3 @@
1
1
  import { ChatMessageInputProps } from '../types';
2
- declare const ChatMessageInput: ({ onSend, labels, autoFocusKey }: ChatMessageInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
2
+ declare const ChatMessageInput: ({ onSend, labels, autoFocusKey, isSending }: ChatMessageInputProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
3
  export default ChatMessageInput;
@@ -82,6 +82,7 @@ export interface ChatConversationDetailProps {
82
82
  renderAfterBubble?: (message: ChatMessage, urls: string[]) => ReactNode;
83
83
  labels?: ChatConversationDetailLabels;
84
84
  formatDayLabel?: (date: string) => string;
85
+ isSending?: boolean;
85
86
  }
86
87
  export interface ChatMessageBubbleProps {
87
88
  isOwn: boolean;
@@ -95,6 +96,7 @@ export interface ChatMessageInputProps {
95
96
  onSend: (message: string) => void;
96
97
  labels?: ChatMessageInputLabels;
97
98
  autoFocusKey?: string;
99
+ isSending?: boolean;
98
100
  }
99
101
  export interface ChatParticipantDialogProps {
100
102
  open: boolean;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "4.26.0",
5
+ "version": "4.27.0",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",