@myinterview/widget-react 1.1.23-binary-010 → 1.1.23-bli-chupchik

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  The myInterview widget for [React](https://reactjs.com).
4
4
 
5
- For more detailed documentation with all Props, Methods and Customisation possibilities, please visit our website https://documentation.myinterview.com/docs/intro
5
+ See [myinterview.com](https://www.myinterview.com) for an examples and comprehensive docs.
6
6
 
7
7
  # Installation and usage
8
8
 
@@ -47,8 +47,12 @@ const App = () => {
47
47
 
48
48
  # Documentation
49
49
 
50
- > **For more detailed documentation with all Props, Methods and Customisation possibilities, please visit our website https://documentation.myinterview.com/docs/intro**
50
+ > **For more detailed documentation with all explanation about possible (Props, Methods and Customisation ) please visit your website [myinterview.com](https://www.myinterview.com)**
51
+
52
+ # Thanks
53
+
54
+ Just want to say thank you to everyone who has made it happen.
51
55
 
52
56
  ## License
53
57
 
54
- MIT Licensed.
58
+ MIT Licensed.
@@ -7,6 +7,5 @@ export interface IDeviceSelectorProps {
7
7
  selectedAudioDevice?: MediaDeviceInfo;
8
8
  selectedVideoDevice?: MediaDeviceInfo;
9
9
  myinterviewRef: React.RefObject<HTMLDivElement>;
10
- recordWithoutVideo?: boolean;
11
10
  }
12
- export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, recordWithoutVideo, }: IDeviceSelectorProps) => JSX.Element;
11
+ export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, }: IDeviceSelectorProps) => JSX.Element;
@@ -2,7 +2,6 @@ import React from 'react';
2
2
  import { IWidgetMachineProps } from '../interfaces/widgetInterface';
3
3
  interface IProps extends IWidgetMachineProps {
4
4
  isPracticeDisabled: boolean;
5
- recordWithoutVideo?: boolean;
6
5
  }
7
6
  export declare const Setup: React.FC<IProps>;
8
7
  export {};
@@ -9,7 +9,6 @@ interface IProps {
9
9
  };
10
10
  canRetrySpeedTest: boolean;
11
11
  onRetry: () => void;
12
- recordWithoutVideo?: boolean;
13
12
  }
14
13
  export declare const SetupChecks: React.FC<IProps>;
15
14
  export {};
@@ -26,7 +26,6 @@ interface IProps extends IDeviceSelectorProps {
26
26
  isQuestionDisplayed: boolean;
27
27
  myinterviewRef: React.RefObject<HTMLDivElement>;
28
28
  isAssessment: boolean;
29
- recordWithoutVideo?: boolean;
30
29
  }
31
30
  export declare const VideoCamera: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLVideoElement>>;
32
31
  export {};