@myinterview/widget-react 1.1.22-development-2bfa0c3 → 1.1.23-development-94da5c1

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,8 +1,8 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  interface CountDownProps {
3
3
  countDown: number;
4
4
  forceMobileCounter?: boolean;
5
5
  numberOfSecondsToHighlight?: number;
6
6
  }
7
- export declare const CountDown: ({ countDown, forceMobileCounter, numberOfSecondsToHighlight }: CountDownProps) => JSX.Element;
7
+ export declare const CountDown: ({ countDown, forceMobileCounter, numberOfSecondsToHighlight }: CountDownProps) => React.JSX.Element;
8
8
  export {};
@@ -1,8 +1,8 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  interface CounterProps {
3
3
  counter: number;
4
4
  limit: number;
5
5
  isRecording: boolean;
6
6
  }
7
- export declare const Counter: ({ counter, limit, isRecording }: CounterProps) => JSX.Element;
7
+ export declare const Counter: ({ counter, limit, isRecording }: CounterProps) => React.JSX.Element;
8
8
  export {};
@@ -7,5 +7,6 @@ export interface IDeviceSelectorProps {
7
7
  selectedAudioDevice?: MediaDeviceInfo;
8
8
  selectedVideoDevice?: MediaDeviceInfo;
9
9
  myinterviewRef: React.RefObject<HTMLDivElement>;
10
+ recordWithoutVideo?: boolean;
10
11
  }
11
- export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, }: IDeviceSelectorProps) => JSX.Element;
12
+ export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, recordWithoutVideo, }: IDeviceSelectorProps) => React.JSX.Element;
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import { IWidgetMachineProps } from '../interfaces/widgetInterface';
3
3
  interface IProps extends IWidgetMachineProps {
4
4
  isPracticeDisabled: boolean;
5
+ recordWithoutVideo?: boolean;
5
6
  }
6
7
  export declare const Setup: React.FC<IProps>;
7
8
  export {};
@@ -9,6 +9,7 @@ interface IProps {
9
9
  };
10
10
  canRetrySpeedTest: boolean;
11
11
  onRetry: () => void;
12
+ recordWithoutVideo?: boolean;
12
13
  }
13
14
  export declare const SetupChecks: React.FC<IProps>;
14
15
  export {};
@@ -26,6 +26,7 @@ interface IProps extends IDeviceSelectorProps {
26
26
  isQuestionDisplayed: boolean;
27
27
  myinterviewRef: React.RefObject<HTMLDivElement>;
28
28
  isAssessment: boolean;
29
+ recordWithoutVideo?: boolean;
29
30
  }
30
31
  export declare const VideoCamera: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLVideoElement>>;
31
32
  export {};