odaptos_design_system 1.4.303 → 1.4.304

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.
@@ -24,5 +24,13 @@ export interface ChatProps extends HTMLAttributes<HTMLDivElement> {
24
24
  customContentClassname?: string;
25
25
  disabledTask?: boolean;
26
26
  disabledScenario?: boolean;
27
+ areAllTasksSend?: boolean;
28
+ isRecordingFinished?: boolean;
29
+ stopRecTitle: string;
30
+ stopRecDescription: string;
31
+ stopRecCTA: string;
32
+ SusExplanationTitle: string;
33
+ SusExplanationDescription: string;
34
+ stopRecording: () => void;
27
35
  }
28
- export declare const Chat: ({ chatTitle, welcomeTitle, welcomeDescription, startInterviewTitle, startInterviewBtnTitle, startInterviewIcon, startInterview, tasks, sendTask, currentTask, chatInputPlaceholder, chatInputValue, chatInputonChange, sendMessage, className, isTaskMode, isInterviewer, messages, idsTasksAlreadySent, customScrollingClassname, customContentClassname, disabledTask, disabledScenario, ...props }: ChatProps) => React.JSX.Element;
36
+ export declare const Chat: ({ chatTitle, welcomeTitle, welcomeDescription, startInterviewTitle, startInterviewBtnTitle, startInterviewIcon, startInterview, tasks, sendTask, currentTask, chatInputPlaceholder, chatInputValue, chatInputonChange, sendMessage, className, isTaskMode, isInterviewer, messages, idsTasksAlreadySent, customScrollingClassname, customContentClassname, disabledTask, disabledScenario, areAllTasksSend, isRecordingFinished, stopRecTitle, stopRecDescription, stopRecCTA, SusExplanationTitle, SusExplanationDescription, stopRecording, ...props }: ChatProps) => React.JSX.Element;
@@ -0,0 +1,8 @@
1
+ import React, { HTMLAttributes } from 'react';
2
+ export interface EndRecordingProps extends HTMLAttributes<HTMLDivElement> {
3
+ stopRecTitle: string;
4
+ stopRecDescription: string;
5
+ stopRecCTA: string;
6
+ stopRecording: () => void;
7
+ }
8
+ export declare const EndRecording: ({ stopRecTitle, stopRecDescription, stopRecCTA, stopRecording, }: EndRecordingProps) => React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React, { HTMLAttributes } from 'react';
2
+ export interface SusExplanationProps extends HTMLAttributes<HTMLDivElement> {
3
+ title: string;
4
+ description: string;
5
+ }
6
+ export declare const SusExplanation: ({ title, description }: SusExplanationProps) => React.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -13,10 +13,12 @@ export * from './FeaturesTable/FeaturesTable';
13
13
  export * from './Form/FormQuestions/FormQuestions';
14
14
  export * from './Form/QuestionButton/QuestionButton';
15
15
  export * from './Icons';
16
+ export * from './Interviews/SusExplanation';
16
17
  export * from './Interviews/Chat';
17
18
  export * from './Interviews/ChatInput';
18
19
  export * from './Interviews/CircledIconButton';
19
20
  export * from './Interviews/ControlsBar';
21
+ export * from './Interviews/EndRecording';
20
22
  export * from './Interviews/GoBack';
21
23
  export * from './Interviews/InterviewButton';
22
24
  export * from './Interviews/MarkUpBar';
@@ -65,6 +67,6 @@ export * from './Typography/TextForButton';
65
67
  export * from './Typography/TextForDropDownItem';
66
68
  export * from './Typography/TextWithLink';
67
69
  export * from './Typography/Title';
70
+ export * from './utils/changeColorLuminance';
68
71
  export * from './utils/getIconSize';
69
72
  export * from './utils/getReadableTextColor';
70
- export * from './utils/changeColorLuminance';