@myinterview/widget-react 1.1.26 → 1.1.27-development-4d8390d
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/i18n/config.d.ts +7 -0
- package/dist/cjs/index.js +24 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/i18n/config.d.ts +7 -0
- package/dist/esm/index.js +24 -5
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1312,6 +1312,13 @@ export declare const resources: {
|
|
|
1312
1312
|
title: string;
|
|
1313
1313
|
subtitle: string;
|
|
1314
1314
|
label: string;
|
|
1315
|
+
questions: {
|
|
1316
|
+
numOfRetakes: number;
|
|
1317
|
+
thinkingTime: number;
|
|
1318
|
+
partDuration: number;
|
|
1319
|
+
question: string;
|
|
1320
|
+
description: string;
|
|
1321
|
+
}[];
|
|
1315
1322
|
};
|
|
1316
1323
|
preview: {
|
|
1317
1324
|
title: string;
|
package/dist/cjs/index.js
CHANGED
|
@@ -30238,7 +30238,7 @@ const prod_config = {
|
|
|
30238
30238
|
const config$1 = (configEnv) => {
|
|
30239
30239
|
let env = configEnv;
|
|
30240
30240
|
try {
|
|
30241
|
-
env !== null && env !== void 0 ? env : (env = "
|
|
30241
|
+
env !== null && env !== void 0 ? env : (env = "staging");
|
|
30242
30242
|
}
|
|
30243
30243
|
catch (_a) { }
|
|
30244
30244
|
switch (env) {
|
|
@@ -30257,8 +30257,8 @@ const configGenerator = () => {
|
|
|
30257
30257
|
let environment;
|
|
30258
30258
|
let release;
|
|
30259
30259
|
try {
|
|
30260
|
-
environment !== null && environment !== void 0 ? environment : (environment = "
|
|
30261
|
-
release !== null && release !== void 0 ? release : (release = "1.1.
|
|
30260
|
+
environment !== null && environment !== void 0 ? environment : (environment = "staging");
|
|
30261
|
+
release !== null && release !== void 0 ? release : (release = "1.1.27");
|
|
30262
30262
|
}
|
|
30263
30263
|
catch (_a) {
|
|
30264
30264
|
console.error('sentry configGenerator error');
|
|
@@ -44058,6 +44058,7 @@ const recorderMachineV2 = createMachine({
|
|
|
44058
44058
|
target: `#recorder.${STATES$6.INIT}`,
|
|
44059
44059
|
actions: [
|
|
44060
44060
|
ACTIONS$7.STOP_MEDIA_STREAM,
|
|
44061
|
+
ACTIONS$7.STOP_COUNT_DOWN_ACTOR,
|
|
44061
44062
|
ACTIONS$7.STOP_MICROPHONE_MACHINE,
|
|
44062
44063
|
ACTIONS$7.CHANGE_VIDEO_DEVICE,
|
|
44063
44064
|
ACTIONS$7.UPDATE_MACHINE_FOR_NEW_QUESTION,
|
|
@@ -44068,6 +44069,7 @@ const recorderMachineV2 = createMachine({
|
|
|
44068
44069
|
target: `#recorder.${STATES$6.INIT}`,
|
|
44069
44070
|
actions: [
|
|
44070
44071
|
ACTIONS$7.STOP_MEDIA_STREAM,
|
|
44072
|
+
ACTIONS$7.STOP_COUNT_DOWN_ACTOR,
|
|
44071
44073
|
ACTIONS$7.STOP_MICROPHONE_MACHINE,
|
|
44072
44074
|
ACTIONS$7.CHANGE_AUDIO_DEVICE,
|
|
44073
44075
|
ACTIONS$7.UPDATE_MACHINE_FOR_NEW_QUESTION,
|
|
@@ -44092,6 +44094,7 @@ const recorderMachineV2 = createMachine({
|
|
|
44092
44094
|
target: `#recorder.${STATES$6.ERROR}`,
|
|
44093
44095
|
actions: [
|
|
44094
44096
|
ACTIONS$7.STOP_MEDIA_STREAM,
|
|
44097
|
+
ACTIONS$7.STOP_COUNT_DOWN_ACTOR,
|
|
44095
44098
|
ACTIONS$7.STOP_MICROPHONE_MACHINE,
|
|
44096
44099
|
ACTIONS$7.RESET_MACHINE,
|
|
44097
44100
|
],
|
|
@@ -44303,13 +44306,13 @@ const recorderMachineV2 = createMachine({
|
|
|
44303
44306
|
[ACTIONS$7.INIT_COUNT_DOWN_ACTOR]: assign$2({
|
|
44304
44307
|
countDownRef: (context, event, meta) => spawn(counterMachine.withContext(Object.assign(Object.assign({}, counterMachine.context), { callback: meta.action.data.callback })), { name: 'countDownRef' }),
|
|
44305
44308
|
}),
|
|
44306
|
-
[ACTIONS$7.SET_ACTIVELY_STOPPED]: assign$2((context) => ({ isActivelyStopped: true })),
|
|
44307
44309
|
[ACTIONS$7.STOP_COUNT_DOWN_ACTOR]: assign$2((context) => {
|
|
44308
44310
|
context.countDownRef.stop();
|
|
44309
44311
|
return {
|
|
44310
44312
|
countDownRef: null,
|
|
44311
44313
|
};
|
|
44312
44314
|
}),
|
|
44315
|
+
[ACTIONS$7.SET_ACTIVELY_STOPPED]: assign$2((context) => ({ isActivelyStopped: true })),
|
|
44313
44316
|
[ACTIONS$7.SESSION_EVENT]: (context, event, meta) => {
|
|
44314
44317
|
if (meta.action.data.type === 'date')
|
|
44315
44318
|
registerDateEvent(meta.action.data.event).then(() => { });
|
|
@@ -47549,7 +47552,23 @@ var times_up$2 = {
|
|
|
47549
47552
|
var practice$2 = {
|
|
47550
47553
|
title: "סימולטור תרגול",
|
|
47551
47554
|
subtitle: "נסה את איזור התרגול שלנו בכדי לראות את זה עובד",
|
|
47552
|
-
label: "איזור תרגול"
|
|
47555
|
+
label: "איזור תרגול",
|
|
47556
|
+
questions: [
|
|
47557
|
+
{
|
|
47558
|
+
numOfRetakes: 2,
|
|
47559
|
+
thinkingTime: 0,
|
|
47560
|
+
partDuration: 60,
|
|
47561
|
+
question: "מדוע ברצונך לעבוד אצלנו?",
|
|
47562
|
+
description: ""
|
|
47563
|
+
},
|
|
47564
|
+
{
|
|
47565
|
+
numOfRetakes: 1,
|
|
47566
|
+
thinkingTime: 60,
|
|
47567
|
+
partDuration: 60,
|
|
47568
|
+
question: "מהן החוזקות והחולשות שלך?",
|
|
47569
|
+
description: ""
|
|
47570
|
+
}
|
|
47571
|
+
]
|
|
47553
47572
|
};
|
|
47554
47573
|
var preview$2 = {
|
|
47555
47574
|
title: "בחר/י את הוידאו שברצונך לשלוח",
|