sestek-component 0.0.47 → 0.0.49

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.
@@ -136,6 +136,12 @@ export declare interface ChatListProps {
136
136
  onClick: (id: string) => void;
137
137
  }
138
138
 
139
+ declare interface ComboboxOption {
140
+ value: string;
141
+ label: string;
142
+ disabled?: boolean;
143
+ }
144
+
139
145
  declare interface ConversationSummaryProps {
140
146
  icon?: ReactNode;
141
147
  title?: string;
@@ -512,7 +518,7 @@ export declare interface TaskDoneMomentProps {
512
518
  askManagerTitle?: string;
513
519
  }
514
520
 
515
- export declare const Transcript: ({ isStandalone, messages, onClickTranslation, conversationSummary, isTranslationShown, translationStatus, title, startTranslationText, stopTranslationText, }: TranscriptProps) => JSX.Element;
521
+ export declare const Transcript: ({ isStandalone, messages, onClickTranslation, conversationSummary, isTranslationShown, translationStatus, title, startTranslationText, stopTranslationText, sourceLanguagePlaceholder, targetLanguagePlaceholder, sourceLanguageTitle, targetLanguageTitle, sourceLanguageSearchPlaceholder, targetLanguageSearchPlaceholder, sourceLanguageOptions, targetLanguageOptions, sourceLanguage, targetLanguage, onSourceLanguageChange, onTargetLanguageChange, }: TranscriptProps) => JSX.Element;
516
522
 
517
523
  export declare interface TranscriptProps {
518
524
  isStandalone?: boolean;
@@ -524,6 +530,18 @@ export declare interface TranscriptProps {
524
530
  title?: string;
525
531
  startTranslationText?: string;
526
532
  stopTranslationText?: string;
533
+ sourceLanguageSearchPlaceholder?: string;
534
+ targetLanguageSearchPlaceholder?: string;
535
+ sourceLanguageOptions?: ComboboxOption[];
536
+ targetLanguageOptions?: ComboboxOption[];
537
+ sourceLanguage?: string;
538
+ targetLanguage?: string;
539
+ onSourceLanguageChange?: (value: string) => void;
540
+ onTargetLanguageChange?: (value: string) => void;
541
+ sourceLanguagePlaceholder?: string;
542
+ targetLanguagePlaceholder?: string;
543
+ sourceLanguageTitle?: string;
544
+ targetLanguageTitle?: string;
527
545
  }
528
546
 
529
547
  export declare const UnhappyCustomerMoment: ({ id, title, message, timestamp, askGenAITitle, askManagerTitle, }: UnhappyCustomerMomentProps) => JSX.Element;