@myinterview/widget-react 1.1.23-that-was-21 → 1.1.23-touch-fix-attempt-01
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 +3 -7
- package/dist/cjs/components/DeviceSelector.d.ts +2 -1
- package/dist/cjs/components/Setup.d.ts +1 -0
- package/dist/cjs/components/SetupChecks.d.ts +1 -0
- package/dist/cjs/components/VideoCamera.d.ts +1 -0
- package/dist/cjs/index.js +385 -326
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/configInterface.d.ts +1 -0
- package/dist/cjs/interfaces/recorderInterface.d.ts +4 -1
- package/dist/cjs/interfaces/widgetInterface.d.ts +9 -2
- package/dist/cjs/services/event.service.d.ts +6 -1
- package/dist/cjs/utils/constants.utils.d.ts +1 -0
- package/dist/cjs/utils/debug.utils.d.ts +1 -0
- package/dist/cjs/utils/device.utils.d.ts +2 -0
- package/dist/cjs/utils/messages.utils.d.ts +1 -0
- package/dist/esm/components/DeviceSelector.d.ts +2 -1
- package/dist/esm/components/Setup.d.ts +1 -0
- package/dist/esm/components/SetupChecks.d.ts +1 -0
- package/dist/esm/components/VideoCamera.d.ts +1 -0
- package/dist/esm/index.js +370 -311
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/configInterface.d.ts +1 -0
- package/dist/esm/interfaces/recorderInterface.d.ts +4 -1
- package/dist/esm/interfaces/widgetInterface.d.ts +9 -2
- package/dist/esm/services/event.service.d.ts +6 -1
- package/dist/esm/utils/constants.utils.d.ts +1 -0
- package/dist/esm/utils/debug.utils.d.ts +1 -0
- package/dist/esm/utils/device.utils.d.ts +2 -0
- package/dist/esm/utils/messages.utils.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +44 -44
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The myInterview widget for [React](https://reactjs.com).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
For more detailed documentation with all Props, Methods and Customisation possibilities, please visit our website https://documentation.myinterview.com/docs/intro
|
|
6
6
|
|
|
7
7
|
# Installation and usage
|
|
8
8
|
|
|
@@ -47,12 +47,8 @@ const App = () => {
|
|
|
47
47
|
|
|
48
48
|
# Documentation
|
|
49
49
|
|
|
50
|
-
> **For more detailed documentation with all
|
|
51
|
-
|
|
52
|
-
# Thanks
|
|
53
|
-
|
|
54
|
-
Just want to say thank you to everyone who has made it happen.
|
|
50
|
+
> **For more detailed documentation with all Props, Methods and Customisation possibilities, please visit our website https://documentation.myinterview.com/docs/intro**
|
|
55
51
|
|
|
56
52
|
## License
|
|
57
53
|
|
|
58
|
-
MIT Licensed.
|
|
54
|
+
MIT Licensed.
|
|
@@ -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) => React.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 {};
|
|
@@ -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 {};
|