@myinterview/widget-react 1.1.54 → 1.1.55-development-08dc601

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.
@@ -13,8 +13,9 @@ interface IProps {
13
13
  currentIndex: number;
14
14
  numberOfVideos: number;
15
15
  isPreviewMode: boolean;
16
- onPreviewMode: (dimensions: IDimensions) => void;
17
16
  myinterviewRef: React.RefObject<HTMLDivElement>;
17
+ onPreviewMode: (dimensions: IDimensions) => void;
18
+ onFocusCapture: (e: React.FocusEvent<HTMLButtonElement>) => void;
18
19
  }
19
20
  export declare const PreviewItem: React.FC<IProps>;
20
21
  export {};
@@ -6,6 +6,7 @@ interface IProps {
6
6
  isVideoQuestionState: boolean;
7
7
  isVideoQuestion: boolean;
8
8
  isAssessment: boolean;
9
+ tabIndex?: number;
9
10
  }
10
11
  export declare const StartRecordingButton: React.FC<IProps>;
11
12
  export {};
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  interface IProps {
3
3
  onClick: () => void;
4
4
  disabled: boolean;
5
+ tabIndex?: number;
5
6
  }
6
7
  export declare const StopRecordingButton: React.FC<IProps>;
7
8
  export {};