sestek-component 0.0.49 → 0.0.50
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.cjs.js +6 -6
- package/dist/index.es.d.ts +2 -1
- package/dist/index.es.js +371 -370
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -518,7 +518,7 @@ export declare interface TaskDoneMomentProps {
|
|
|
518
518
|
askManagerTitle?: string;
|
|
519
519
|
}
|
|
520
520
|
|
|
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;
|
|
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, showTranslationButtonText, }: TranscriptProps) => JSX.Element;
|
|
522
522
|
|
|
523
523
|
export declare interface TranscriptProps {
|
|
524
524
|
isStandalone?: boolean;
|
|
@@ -542,6 +542,7 @@ export declare interface TranscriptProps {
|
|
|
542
542
|
targetLanguagePlaceholder?: string;
|
|
543
543
|
sourceLanguageTitle?: string;
|
|
544
544
|
targetLanguageTitle?: string;
|
|
545
|
+
showTranslationButtonText?: boolean;
|
|
545
546
|
}
|
|
546
547
|
|
|
547
548
|
export declare const UnhappyCustomerMoment: ({ id, title, message, timestamp, askGenAITitle, askManagerTitle, }: UnhappyCustomerMomentProps) => JSX.Element;
|