interview-widget 1.0.14 → 1.0.16
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 +308 -306
- package/dist/components/interview/interview-controller.d.ts +1 -0
- package/dist/components/interview/interview-header.d.ts +1 -0
- package/dist/components/media/video-feed.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/utils/helper.d.ts +1 -0
- package/dist/widget.es.js +2145 -2110
- package/dist/widget.umd.js +7 -7
- package/package.json +66 -66
|
@@ -6,6 +6,7 @@ interface VideoFeedProps {
|
|
|
6
6
|
interviewId?: string;
|
|
7
7
|
interview_duration?: number | undefined;
|
|
8
8
|
showProctoringUI?: boolean;
|
|
9
|
+
onSetReference?: () => void;
|
|
9
10
|
}
|
|
10
11
|
declare const VideoFeed: import('react').ForwardRefExoticComponent<VideoFeedProps & import('react').RefAttributes<VideoFeedHandle>>;
|
|
11
12
|
export default VideoFeed;
|
package/dist/types.d.ts
CHANGED
package/dist/utils/helper.d.ts
CHANGED
|
@@ -6,3 +6,4 @@ export declare function sleep(ms: number): Promise<void>;
|
|
|
6
6
|
export declare function generateButtonGradient(baseColor: string): string;
|
|
7
7
|
export declare const generateUniqueId: () => string;
|
|
8
8
|
export declare function decodeJwt(token: string): Record<string, any> | null;
|
|
9
|
+
export declare const getFirstCapital: (str: string | null | undefined) => string;
|