@myinterview/widget-react 1.1.2 → 1.1.3-beta-7ebee77-beb93e3
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/dist/cjs/components/AssessmentController.d.ts +1 -1
- package/dist/cjs/components/Explanation.d.ts +4 -0
- package/dist/cjs/components/TimesUp.d.ts +6 -0
- package/dist/cjs/i18n/config.d.ts +189 -18
- package/dist/cjs/index.js +5980 -6069
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/widgetInterface.d.ts +3 -1
- package/dist/esm/components/AssessmentController.d.ts +1 -1
- package/dist/esm/components/Explanation.d.ts +4 -0
- package/dist/esm/components/TimesUp.d.ts +6 -0
- package/dist/esm/i18n/config.d.ts +189 -18
- package/dist/esm/index.js +5981 -6070
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/widgetInterface.d.ts +3 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ interface IProps {
|
|
|
6
6
|
currentQuestion: number;
|
|
7
7
|
numberOfQuestions: number;
|
|
8
8
|
timer: number;
|
|
9
|
-
onSubmitAssessment: (answer: IMultipleAnswer[] | string) => void;
|
|
9
|
+
onSubmitAssessment: (answer: IMultipleAnswer[] | string, isValidAnswer: boolean) => void;
|
|
10
10
|
}
|
|
11
11
|
export declare const AssessmentController: React.FC<IProps>;
|
|
12
12
|
export {};
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { ANSWER_TYPES } from '../interfaces/jobInterface';
|
|
2
3
|
interface IProps {
|
|
3
4
|
isVideoQuestion: boolean;
|
|
4
5
|
isAssessment: boolean;
|
|
5
6
|
timeLimit: number;
|
|
7
|
+
answerType: `${ANSWER_TYPES}`;
|
|
8
|
+
duration: number;
|
|
9
|
+
takes?: number;
|
|
6
10
|
}
|
|
7
11
|
export declare const Explanation: React.FC<IProps>;
|
|
8
12
|
export {};
|
|
@@ -53,6 +53,16 @@ export declare const resources: {
|
|
|
53
53
|
INCOGNITO: string;
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
|
+
parameters_answer_type: {
|
|
57
|
+
video: string;
|
|
58
|
+
text: string;
|
|
59
|
+
multi_choice: string;
|
|
60
|
+
};
|
|
61
|
+
assessment_instructions: {
|
|
62
|
+
text: string;
|
|
63
|
+
single: string;
|
|
64
|
+
multi: string;
|
|
65
|
+
};
|
|
56
66
|
time: {
|
|
57
67
|
unlimited: string;
|
|
58
68
|
minuteLeft_one: string;
|
|
@@ -62,6 +72,10 @@ export declare const resources: {
|
|
|
62
72
|
second_one: string;
|
|
63
73
|
second_other: string;
|
|
64
74
|
};
|
|
75
|
+
times_up: {
|
|
76
|
+
title: string;
|
|
77
|
+
text: string;
|
|
78
|
+
};
|
|
65
79
|
practice: {
|
|
66
80
|
title: string;
|
|
67
81
|
subtitle: string;
|
|
@@ -88,12 +102,15 @@ export declare const resources: {
|
|
|
88
102
|
remaining_take_other: string;
|
|
89
103
|
question: {
|
|
90
104
|
name: string;
|
|
105
|
+
videoQuestionHeader: string;
|
|
91
106
|
title: string;
|
|
92
107
|
questionThinkingTime: string;
|
|
108
|
+
questionDuration: string;
|
|
109
|
+
isVideoQuestion: string;
|
|
110
|
+
checkSpeakers: string;
|
|
111
|
+
cannotPauseSkip: string;
|
|
93
112
|
videoQuestionThinkingTime: string;
|
|
94
113
|
videoQuestionNoThinkingTime: string;
|
|
95
|
-
questionDuration: string;
|
|
96
|
-
videoQuestionDuration: string;
|
|
97
114
|
showQuestion_btn: string;
|
|
98
115
|
watchQuestion_btn: string;
|
|
99
116
|
};
|
|
@@ -143,7 +160,9 @@ export declare const resources: {
|
|
|
143
160
|
buttons: {
|
|
144
161
|
btn_watch_question: string;
|
|
145
162
|
btn_show_question: string;
|
|
163
|
+
button_next_question: string;
|
|
146
164
|
btn_start_recording: string;
|
|
165
|
+
btn_start_assessment: string;
|
|
147
166
|
btn_stop_recording: string;
|
|
148
167
|
btn_try_again: string;
|
|
149
168
|
btn_internet_test_again: string;
|
|
@@ -215,6 +234,16 @@ export declare const resources: {
|
|
|
215
234
|
INCOGNITO: string;
|
|
216
235
|
};
|
|
217
236
|
};
|
|
237
|
+
parameters_answer_type: {
|
|
238
|
+
video: string;
|
|
239
|
+
text: string;
|
|
240
|
+
multi_choice: string;
|
|
241
|
+
};
|
|
242
|
+
assessment_instructions: {
|
|
243
|
+
text: string;
|
|
244
|
+
single: string;
|
|
245
|
+
multi: string;
|
|
246
|
+
};
|
|
218
247
|
time: {
|
|
219
248
|
unlimited: string;
|
|
220
249
|
minuteLeft_one: string;
|
|
@@ -224,6 +253,10 @@ export declare const resources: {
|
|
|
224
253
|
second_one: string;
|
|
225
254
|
second_other: string;
|
|
226
255
|
};
|
|
256
|
+
times_up: {
|
|
257
|
+
title: string;
|
|
258
|
+
text: string;
|
|
259
|
+
};
|
|
227
260
|
practice: {
|
|
228
261
|
title: string;
|
|
229
262
|
subtitle: string;
|
|
@@ -250,12 +283,15 @@ export declare const resources: {
|
|
|
250
283
|
remaining_take_other: string;
|
|
251
284
|
question: {
|
|
252
285
|
name: string;
|
|
286
|
+
videoQuestionHeader: string;
|
|
253
287
|
title: string;
|
|
254
288
|
questionThinkingTime: string;
|
|
289
|
+
questionDuration: string;
|
|
290
|
+
isVideoQuestion: string;
|
|
291
|
+
checkSpeakers: string;
|
|
292
|
+
cannotPauseSkip: string;
|
|
255
293
|
videoQuestionThinkingTime: string;
|
|
256
294
|
videoQuestionNoThinkingTime: string;
|
|
257
|
-
questionDuration: string;
|
|
258
|
-
videoQuestionDuration: string;
|
|
259
295
|
showQuestion_btn: string;
|
|
260
296
|
watchQuestion_btn: string;
|
|
261
297
|
};
|
|
@@ -305,7 +341,9 @@ export declare const resources: {
|
|
|
305
341
|
buttons: {
|
|
306
342
|
btn_watch_question: string;
|
|
307
343
|
btn_show_question: string;
|
|
344
|
+
button_next_question: string;
|
|
308
345
|
btn_start_recording: string;
|
|
346
|
+
btn_start_assessment: string;
|
|
309
347
|
btn_stop_recording: string;
|
|
310
348
|
btn_try_again: string;
|
|
311
349
|
btn_internet_test_again: string;
|
|
@@ -377,6 +415,16 @@ export declare const resources: {
|
|
|
377
415
|
INCOGNITO: string;
|
|
378
416
|
};
|
|
379
417
|
};
|
|
418
|
+
parameters_answer_type: {
|
|
419
|
+
video: string;
|
|
420
|
+
text: string;
|
|
421
|
+
multi_choice: string;
|
|
422
|
+
};
|
|
423
|
+
assessment_instructions: {
|
|
424
|
+
text: string;
|
|
425
|
+
single: string;
|
|
426
|
+
multi: string;
|
|
427
|
+
};
|
|
380
428
|
time: {
|
|
381
429
|
unlimited: string;
|
|
382
430
|
minuteLeft_one: string;
|
|
@@ -386,6 +434,10 @@ export declare const resources: {
|
|
|
386
434
|
second_one: string;
|
|
387
435
|
second_other: string;
|
|
388
436
|
};
|
|
437
|
+
times_up: {
|
|
438
|
+
title: string;
|
|
439
|
+
text: string;
|
|
440
|
+
};
|
|
389
441
|
practice: {
|
|
390
442
|
title: string;
|
|
391
443
|
subtitle: string;
|
|
@@ -412,12 +464,15 @@ export declare const resources: {
|
|
|
412
464
|
remaining_take_other: string;
|
|
413
465
|
question: {
|
|
414
466
|
name: string;
|
|
467
|
+
videoQuestionHeader: string;
|
|
415
468
|
title: string;
|
|
416
469
|
questionThinkingTime: string;
|
|
470
|
+
questionDuration: string;
|
|
471
|
+
isVideoQuestion: string;
|
|
472
|
+
checkSpeakers: string;
|
|
473
|
+
cannotPauseSkip: string;
|
|
417
474
|
videoQuestionThinkingTime: string;
|
|
418
475
|
videoQuestionNoThinkingTime: string;
|
|
419
|
-
questionDuration: string;
|
|
420
|
-
videoQuestionDuration: string;
|
|
421
476
|
showQuestion_btn: string;
|
|
422
477
|
watchQuestion_btn: string;
|
|
423
478
|
};
|
|
@@ -467,7 +522,9 @@ export declare const resources: {
|
|
|
467
522
|
buttons: {
|
|
468
523
|
btn_watch_question: string;
|
|
469
524
|
btn_show_question: string;
|
|
525
|
+
button_next_question: string;
|
|
470
526
|
btn_start_recording: string;
|
|
527
|
+
btn_start_assessment: string;
|
|
471
528
|
btn_stop_recording: string;
|
|
472
529
|
btn_try_again: string;
|
|
473
530
|
btn_internet_test_again: string;
|
|
@@ -539,6 +596,20 @@ export declare const resources: {
|
|
|
539
596
|
INCOGNITO: string;
|
|
540
597
|
};
|
|
541
598
|
};
|
|
599
|
+
parameters_answer_type: {
|
|
600
|
+
video: string;
|
|
601
|
+
text: string;
|
|
602
|
+
multi_choice: string;
|
|
603
|
+
};
|
|
604
|
+
assessment_instructions: {
|
|
605
|
+
text: string;
|
|
606
|
+
single: string;
|
|
607
|
+
multi: string;
|
|
608
|
+
};
|
|
609
|
+
times_up: {
|
|
610
|
+
title: string;
|
|
611
|
+
text: string;
|
|
612
|
+
};
|
|
542
613
|
time: {
|
|
543
614
|
unlimited: string;
|
|
544
615
|
less_than_one_left: string;
|
|
@@ -581,12 +652,15 @@ export declare const resources: {
|
|
|
581
652
|
remaining_take_other: string;
|
|
582
653
|
question: {
|
|
583
654
|
name: string;
|
|
655
|
+
videoQuestionHeader: string;
|
|
584
656
|
title: string;
|
|
585
657
|
questionThinkingTime: string;
|
|
658
|
+
questionDuration: string;
|
|
659
|
+
isVideoQuestion: string;
|
|
660
|
+
checkSpeakers: string;
|
|
661
|
+
cannotPauseSkip: string;
|
|
586
662
|
videoQuestionThinkingTime: string;
|
|
587
663
|
videoQuestionNoThinkingTime: string;
|
|
588
|
-
questionDuration: string;
|
|
589
|
-
videoQuestionDuration: string;
|
|
590
664
|
showQuestion_btn: string;
|
|
591
665
|
watchQuestion_btn: string;
|
|
592
666
|
};
|
|
@@ -645,6 +719,7 @@ export declare const resources: {
|
|
|
645
719
|
buttons: {
|
|
646
720
|
btn_watch_question: string;
|
|
647
721
|
btn_show_question: string;
|
|
722
|
+
button_next_question: string;
|
|
648
723
|
btn_start_recording: string;
|
|
649
724
|
btn_start_assessment: string;
|
|
650
725
|
btn_stop_recording: string;
|
|
@@ -718,6 +793,16 @@ export declare const resources: {
|
|
|
718
793
|
INCOGNITO: string;
|
|
719
794
|
};
|
|
720
795
|
};
|
|
796
|
+
parameters_answer_type: {
|
|
797
|
+
video: string;
|
|
798
|
+
text: string;
|
|
799
|
+
multi_choice: string;
|
|
800
|
+
};
|
|
801
|
+
assessment_instructions: {
|
|
802
|
+
text: string;
|
|
803
|
+
single: string;
|
|
804
|
+
multi: string;
|
|
805
|
+
};
|
|
721
806
|
time: {
|
|
722
807
|
unlimited: string;
|
|
723
808
|
less_than_one_left: string;
|
|
@@ -727,6 +812,10 @@ export declare const resources: {
|
|
|
727
812
|
second_one: string;
|
|
728
813
|
second_other: string;
|
|
729
814
|
};
|
|
815
|
+
times_up: {
|
|
816
|
+
title: string;
|
|
817
|
+
text: string;
|
|
818
|
+
};
|
|
730
819
|
practice: {
|
|
731
820
|
title: string;
|
|
732
821
|
subtitle: string;
|
|
@@ -753,12 +842,15 @@ export declare const resources: {
|
|
|
753
842
|
remaining_take_other: string;
|
|
754
843
|
question: {
|
|
755
844
|
name: string;
|
|
845
|
+
videoQuestionHeader: string;
|
|
756
846
|
title: string;
|
|
757
847
|
questionThinkingTime: string;
|
|
848
|
+
questionDuration: string;
|
|
849
|
+
isVideoQuestion: string;
|
|
850
|
+
checkSpeakers: string;
|
|
851
|
+
cannotPauseSkip: string;
|
|
758
852
|
videoQuestionThinkingTime: string;
|
|
759
853
|
videoQuestionNoThinkingTime: string;
|
|
760
|
-
questionDuration: string;
|
|
761
|
-
videoQuestionDuration: string;
|
|
762
854
|
showQuestion_btn: string;
|
|
763
855
|
watchQuestion_btn: string;
|
|
764
856
|
};
|
|
@@ -808,7 +900,9 @@ export declare const resources: {
|
|
|
808
900
|
buttons: {
|
|
809
901
|
btn_watch_question: string;
|
|
810
902
|
btn_show_question: string;
|
|
903
|
+
button_next_question: string;
|
|
811
904
|
btn_start_recording: string;
|
|
905
|
+
btn_start_assessment: string;
|
|
812
906
|
btn_stop_recording: string;
|
|
813
907
|
btn_try_again: string;
|
|
814
908
|
btn_internet_test_again: string;
|
|
@@ -881,6 +975,16 @@ export declare const resources: {
|
|
|
881
975
|
INCOGNITO: string;
|
|
882
976
|
};
|
|
883
977
|
};
|
|
978
|
+
parameters_answer_type: {
|
|
979
|
+
video: string;
|
|
980
|
+
text: string;
|
|
981
|
+
multi_choice: string;
|
|
982
|
+
};
|
|
983
|
+
assessment_instructions: {
|
|
984
|
+
text: string;
|
|
985
|
+
single: string;
|
|
986
|
+
multi: string;
|
|
987
|
+
};
|
|
884
988
|
time: {
|
|
885
989
|
unlimited: string;
|
|
886
990
|
less_than_one_left: string;
|
|
@@ -890,6 +994,10 @@ export declare const resources: {
|
|
|
890
994
|
second_one: string;
|
|
891
995
|
second_other: string;
|
|
892
996
|
};
|
|
997
|
+
times_up: {
|
|
998
|
+
title: string;
|
|
999
|
+
text: string;
|
|
1000
|
+
};
|
|
893
1001
|
practice: {
|
|
894
1002
|
title: string;
|
|
895
1003
|
subtitle: string;
|
|
@@ -923,12 +1031,15 @@ export declare const resources: {
|
|
|
923
1031
|
remaining_take_other: string;
|
|
924
1032
|
question: {
|
|
925
1033
|
name: string;
|
|
1034
|
+
videoQuestionHeader: string;
|
|
926
1035
|
title: string;
|
|
927
1036
|
questionThinkingTime: string;
|
|
1037
|
+
questionDuration: string;
|
|
1038
|
+
isVideoQuestion: string;
|
|
1039
|
+
checkSpeakers: string;
|
|
1040
|
+
cannotPauseSkip: string;
|
|
928
1041
|
videoQuestionThinkingTime: string;
|
|
929
1042
|
videoQuestionNoThinkingTime: string;
|
|
930
|
-
questionDuration: string;
|
|
931
|
-
videoQuestionDuration: string;
|
|
932
1043
|
showQuestion_btn: string;
|
|
933
1044
|
watchQuestion_btn: string;
|
|
934
1045
|
};
|
|
@@ -978,7 +1089,9 @@ export declare const resources: {
|
|
|
978
1089
|
buttons: {
|
|
979
1090
|
btn_watch_question: string;
|
|
980
1091
|
btn_show_question: string;
|
|
1092
|
+
button_next_question: string;
|
|
981
1093
|
btn_start_recording: string;
|
|
1094
|
+
btn_start_assessment: string;
|
|
982
1095
|
btn_stop_recording: string;
|
|
983
1096
|
btn_try_again: string;
|
|
984
1097
|
btn_internet_test_again: string;
|
|
@@ -1050,16 +1163,31 @@ export declare const resources: {
|
|
|
1050
1163
|
INCOGNITO: string;
|
|
1051
1164
|
};
|
|
1052
1165
|
};
|
|
1166
|
+
parameters_answer_type: {
|
|
1167
|
+
video: string;
|
|
1168
|
+
text: string;
|
|
1169
|
+
multi_choice: string;
|
|
1170
|
+
};
|
|
1171
|
+
assessment_instructions: {
|
|
1172
|
+
text: string;
|
|
1173
|
+
single: string;
|
|
1174
|
+
multi: string;
|
|
1175
|
+
};
|
|
1053
1176
|
time: {
|
|
1054
1177
|
unlimited: string;
|
|
1055
1178
|
minuteLeft_one: string;
|
|
1056
1179
|
minuteLeft_other: string;
|
|
1057
1180
|
minute_one: string;
|
|
1181
|
+
minute_two: string;
|
|
1058
1182
|
minute_other: string;
|
|
1059
1183
|
second_one: string;
|
|
1060
1184
|
second_other: string;
|
|
1061
1185
|
second_many: string;
|
|
1062
1186
|
};
|
|
1187
|
+
times_up: {
|
|
1188
|
+
title: string;
|
|
1189
|
+
text: string;
|
|
1190
|
+
};
|
|
1063
1191
|
practice: {
|
|
1064
1192
|
title: string;
|
|
1065
1193
|
subtitle: string;
|
|
@@ -1088,12 +1216,15 @@ export declare const resources: {
|
|
|
1088
1216
|
remaining_take_other: string;
|
|
1089
1217
|
question: {
|
|
1090
1218
|
name: string;
|
|
1219
|
+
videoQuestionHeader: string;
|
|
1091
1220
|
title: string;
|
|
1092
1221
|
questionThinkingTime: string;
|
|
1222
|
+
questionDuration: string;
|
|
1223
|
+
isVideoQuestion: string;
|
|
1224
|
+
checkSpeakers: string;
|
|
1225
|
+
cannotPauseSkip: string;
|
|
1093
1226
|
videoQuestionThinkingTime: string;
|
|
1094
1227
|
videoQuestionNoThinkingTime: string;
|
|
1095
|
-
questionDuration: string;
|
|
1096
|
-
videoQuestionDuration: string;
|
|
1097
1228
|
showQuestion_btn: string;
|
|
1098
1229
|
watchQuestion_btn: string;
|
|
1099
1230
|
};
|
|
@@ -1143,7 +1274,9 @@ export declare const resources: {
|
|
|
1143
1274
|
buttons: {
|
|
1144
1275
|
btn_watch_question: string;
|
|
1145
1276
|
btn_show_question: string;
|
|
1277
|
+
button_next_question: string;
|
|
1146
1278
|
btn_start_recording: string;
|
|
1279
|
+
btn_start_assessment: string;
|
|
1147
1280
|
btn_stop_recording: string;
|
|
1148
1281
|
btn_try_again: string;
|
|
1149
1282
|
btn_internet_test_again: string;
|
|
@@ -1215,6 +1348,16 @@ export declare const resources: {
|
|
|
1215
1348
|
INCOGNITO: string;
|
|
1216
1349
|
};
|
|
1217
1350
|
};
|
|
1351
|
+
parameters_answer_type: {
|
|
1352
|
+
video: string;
|
|
1353
|
+
text: string;
|
|
1354
|
+
multi_choice: string;
|
|
1355
|
+
};
|
|
1356
|
+
assessment_instructions: {
|
|
1357
|
+
text: string;
|
|
1358
|
+
single: string;
|
|
1359
|
+
multi: string;
|
|
1360
|
+
};
|
|
1218
1361
|
time: {
|
|
1219
1362
|
unlimited: string;
|
|
1220
1363
|
minuteLeft_one: string;
|
|
@@ -1224,6 +1367,10 @@ export declare const resources: {
|
|
|
1224
1367
|
second_one: string;
|
|
1225
1368
|
second_other: string;
|
|
1226
1369
|
};
|
|
1370
|
+
times_up: {
|
|
1371
|
+
title: string;
|
|
1372
|
+
text: string;
|
|
1373
|
+
};
|
|
1227
1374
|
practice: {
|
|
1228
1375
|
title: string;
|
|
1229
1376
|
subtitle: string;
|
|
@@ -1250,12 +1397,15 @@ export declare const resources: {
|
|
|
1250
1397
|
remaining_take_other: string;
|
|
1251
1398
|
question: {
|
|
1252
1399
|
name: string;
|
|
1400
|
+
videoQuestionHeader: string;
|
|
1253
1401
|
title: string;
|
|
1254
1402
|
questionThinkingTime: string;
|
|
1403
|
+
questionDuration: string;
|
|
1404
|
+
isVideoQuestion: string;
|
|
1405
|
+
checkSpeakers: string;
|
|
1406
|
+
cannotPauseSkip: string;
|
|
1255
1407
|
videoQuestionThinkingTime: string;
|
|
1256
1408
|
videoQuestionNoThinkingTime: string;
|
|
1257
|
-
questionDuration: string;
|
|
1258
|
-
videoQuestionDuration: string;
|
|
1259
1409
|
showQuestion_btn: string;
|
|
1260
1410
|
watchQuestion_btn: string;
|
|
1261
1411
|
};
|
|
@@ -1305,7 +1455,9 @@ export declare const resources: {
|
|
|
1305
1455
|
buttons: {
|
|
1306
1456
|
btn_watch_question: string;
|
|
1307
1457
|
btn_show_question: string;
|
|
1458
|
+
button_next_question: string;
|
|
1308
1459
|
btn_start_recording: string;
|
|
1460
|
+
btn_start_assessment: string;
|
|
1309
1461
|
btn_stop_recording: string;
|
|
1310
1462
|
btn_try_again: string;
|
|
1311
1463
|
btn_internet_test_again: string;
|
|
@@ -1377,6 +1529,16 @@ export declare const resources: {
|
|
|
1377
1529
|
INCOGNITO: string;
|
|
1378
1530
|
};
|
|
1379
1531
|
};
|
|
1532
|
+
parameters_answer_type: {
|
|
1533
|
+
video: string;
|
|
1534
|
+
text: string;
|
|
1535
|
+
multi_choice: string;
|
|
1536
|
+
};
|
|
1537
|
+
assessment_instructions: {
|
|
1538
|
+
text: string;
|
|
1539
|
+
single: string;
|
|
1540
|
+
multi: string;
|
|
1541
|
+
};
|
|
1380
1542
|
time: {
|
|
1381
1543
|
unlimited: string;
|
|
1382
1544
|
minuteLeft_one: string;
|
|
@@ -1386,6 +1548,10 @@ export declare const resources: {
|
|
|
1386
1548
|
second_one: string;
|
|
1387
1549
|
second_other: string;
|
|
1388
1550
|
};
|
|
1551
|
+
times_up: {
|
|
1552
|
+
title: string;
|
|
1553
|
+
text: string;
|
|
1554
|
+
};
|
|
1389
1555
|
practice: {
|
|
1390
1556
|
title: string;
|
|
1391
1557
|
subtitle: string;
|
|
@@ -1412,12 +1578,15 @@ export declare const resources: {
|
|
|
1412
1578
|
remaining_take_other: string;
|
|
1413
1579
|
question: {
|
|
1414
1580
|
name: string;
|
|
1581
|
+
videoQuestionHeader: string;
|
|
1415
1582
|
title: string;
|
|
1416
1583
|
questionThinkingTime: string;
|
|
1584
|
+
questionDuration: string;
|
|
1585
|
+
isVideoQuestion: string;
|
|
1586
|
+
checkSpeakers: string;
|
|
1587
|
+
cannotPauseSkip: string;
|
|
1417
1588
|
videoQuestionThinkingTime: string;
|
|
1418
1589
|
videoQuestionNoThinkingTime: string;
|
|
1419
|
-
questionDuration: string;
|
|
1420
|
-
videoQuestionDuration: string;
|
|
1421
1590
|
showQuestion_btn: string;
|
|
1422
1591
|
watchQuestion_btn: string;
|
|
1423
1592
|
};
|
|
@@ -1467,7 +1636,9 @@ export declare const resources: {
|
|
|
1467
1636
|
buttons: {
|
|
1468
1637
|
btn_watch_question: string;
|
|
1469
1638
|
btn_show_question: string;
|
|
1639
|
+
button_next_question: string;
|
|
1470
1640
|
btn_start_recording: string;
|
|
1641
|
+
btn_start_assessment: string;
|
|
1471
1642
|
btn_stop_recording: string;
|
|
1472
1643
|
btn_try_again: string;
|
|
1473
1644
|
btn_internet_test_again: string;
|