odaptos_design_system 1.4.256 → 1.4.257

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.
@@ -29,7 +29,8 @@ export interface ControlsBarProps extends HTMLAttributes<HTMLDivElement> {
29
29
  tooltipDescription: string;
30
30
  buttonOneText: string;
31
31
  buttonTwoText: string;
32
+ isRecordingBtnDisplay?: string;
32
33
  buttonOneOnClick: () => void;
33
34
  buttonTwoOnClick: () => void;
34
35
  }
35
- export declare const ControlsBar: ({ className, isInterviewer, endInterview, enableScreenSharing, enableMicrophone, muteMicrophone, enableCamera, muteCamera, displayChat, displayTasks, startRecording, stopRecording, isChatOpen, areTasksOpen, isNewTask, isNewMessage, isMicrophoneActive, isCameraActive, isRecording, screenShareText, disabledRecording, disabledEndInterview, myTasksText, protocolText, endInterviewText, tooltipTitle, tooltipDescription, buttonOneText, buttonTwoText, buttonOneOnClick, buttonTwoOnClick, ...props }: ControlsBarProps) => React.JSX.Element;
36
+ export declare const ControlsBar: ({ className, isInterviewer, endInterview, enableScreenSharing, enableMicrophone, muteMicrophone, enableCamera, muteCamera, displayChat, displayTasks, startRecording, stopRecording, isChatOpen, areTasksOpen, isNewTask, isNewMessage, isMicrophoneActive, isCameraActive, isRecording, screenShareText, disabledRecording, disabledEndInterview, myTasksText, protocolText, endInterviewText, tooltipTitle, tooltipDescription, buttonOneText, buttonTwoText, isRecordingBtnDisplay, buttonOneOnClick, buttonTwoOnClick, ...props }: ControlsBarProps) => React.JSX.Element;
@@ -10302,6 +10302,7 @@ const ControlsBar = ({
10302
10302
  tooltipDescription,
10303
10303
  buttonOneText,
10304
10304
  buttonTwoText,
10305
+ isRecordingBtnDisplay,
10305
10306
  buttonOneOnClick,
10306
10307
  buttonTwoOnClick,
10307
10308
  ...props
@@ -10324,7 +10325,7 @@ const ControlsBar = ({
10324
10325
  }
10325
10326
  }), /*#__PURE__*/React__default.createElement("div", {
10326
10327
  className: styles$l.separator
10327
- }), isInterviewer && /*#__PURE__*/React__default.createElement(Tooltip, {
10328
+ }), isInterviewer && isRecordingBtnDisplay && /*#__PURE__*/React__default.createElement(Tooltip, {
10328
10329
  title: tooltipTitle,
10329
10330
  tooltipDescription: tooltipDescription,
10330
10331
  buttonOneVariant: "tertiary",