interview-widget 1.0.10 → 1.0.12

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
@@ -241,6 +241,10 @@ Pass this object to `InterviewWidgetProvider` via the `config` prop. Tables list
241
241
  | Prop | Type | Default | Description |
242
242
  | ------- | --------- | ------- | --------------------------------------------------------- |
243
243
  | enabled | `boolean` | true | Enable/disable proctoring and cheating detection features |
244
+ | gazeAnalysisEnabled | `boolean` | true | Enable/disable gaze tracking and analysis |
245
+ | showControls | `boolean` | false | Show/hide proctoring control panel |
246
+ | showEngagementBar | `boolean` | true | Show/hide engagement metrics bar |
247
+ | showLandmarks | `boolean` | false | Show/hide facial landmark visualization |
244
248
 
245
249
  ## How it works
246
250
 
@@ -1,10 +1,13 @@
1
+ import { default as React } from 'react';
1
2
  export interface VideoFeedHandle {
2
3
  setReference: () => void;
4
+ faceLandmarkerRef?: React.RefObject<any>;
3
5
  }
4
6
  interface VideoFeedProps {
5
7
  className?: string;
6
8
  interviewId?: string;
7
9
  interview_duration?: number | undefined;
10
+ showProctoringUI?: boolean;
8
11
  }
9
- declare const VideoFeed: import('react').ForwardRefExoticComponent<VideoFeedProps & import('react').RefAttributes<VideoFeedHandle>>;
12
+ declare const VideoFeed: React.ForwardRefExoticComponent<VideoFeedProps & React.RefAttributes<VideoFeedHandle>>;
10
13
  export default VideoFeed;
@@ -7,6 +7,8 @@ interface PermissionModalProps {
7
7
  onClose?: () => void;
8
8
  gazeEnabled?: boolean;
9
9
  videoFeedRef?: React.Ref<VideoFeedHandle>;
10
+ interviewId?: string;
11
+ interview_duration?: number | undefined;
10
12
  }
11
13
  declare const OnboardingModal: React.FC<PermissionModalProps>;
12
14
  export default OnboardingModal;