@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/esm/index.js
CHANGED
|
@@ -30212,7 +30212,7 @@ const prod_config = {
|
|
|
30212
30212
|
const config$1 = (configEnv) => {
|
|
30213
30213
|
let env = configEnv;
|
|
30214
30214
|
try {
|
|
30215
|
-
env !== null && env !== void 0 ? env : (env = "
|
|
30215
|
+
env !== null && env !== void 0 ? env : (env = "staging");
|
|
30216
30216
|
}
|
|
30217
30217
|
catch (_a) { }
|
|
30218
30218
|
switch (env) {
|
|
@@ -30231,8 +30231,8 @@ const configGenerator = () => {
|
|
|
30231
30231
|
let environment;
|
|
30232
30232
|
let release;
|
|
30233
30233
|
try {
|
|
30234
|
-
environment !== null && environment !== void 0 ? environment : (environment = "
|
|
30235
|
-
release !== null && release !== void 0 ? release : (release = "1.1.
|
|
30234
|
+
environment !== null && environment !== void 0 ? environment : (environment = "staging");
|
|
30235
|
+
release !== null && release !== void 0 ? release : (release = "1.1.27");
|
|
30236
30236
|
}
|
|
30237
30237
|
catch (_a) {
|
|
30238
30238
|
console.error('sentry configGenerator error');
|
|
@@ -44032,6 +44032,7 @@ const recorderMachineV2 = createMachine({
|
|
|
44032
44032
|
target: `#recorder.${STATES$6.INIT}`,
|
|
44033
44033
|
actions: [
|
|
44034
44034
|
ACTIONS$7.STOP_MEDIA_STREAM,
|
|
44035
|
+
ACTIONS$7.STOP_COUNT_DOWN_ACTOR,
|
|
44035
44036
|
ACTIONS$7.STOP_MICROPHONE_MACHINE,
|
|
44036
44037
|
ACTIONS$7.CHANGE_VIDEO_DEVICE,
|
|
44037
44038
|
ACTIONS$7.UPDATE_MACHINE_FOR_NEW_QUESTION,
|
|
@@ -44042,6 +44043,7 @@ const recorderMachineV2 = createMachine({
|
|
|
44042
44043
|
target: `#recorder.${STATES$6.INIT}`,
|
|
44043
44044
|
actions: [
|
|
44044
44045
|
ACTIONS$7.STOP_MEDIA_STREAM,
|
|
44046
|
+
ACTIONS$7.STOP_COUNT_DOWN_ACTOR,
|
|
44045
44047
|
ACTIONS$7.STOP_MICROPHONE_MACHINE,
|
|
44046
44048
|
ACTIONS$7.CHANGE_AUDIO_DEVICE,
|
|
44047
44049
|
ACTIONS$7.UPDATE_MACHINE_FOR_NEW_QUESTION,
|
|
@@ -44066,6 +44068,7 @@ const recorderMachineV2 = createMachine({
|
|
|
44066
44068
|
target: `#recorder.${STATES$6.ERROR}`,
|
|
44067
44069
|
actions: [
|
|
44068
44070
|
ACTIONS$7.STOP_MEDIA_STREAM,
|
|
44071
|
+
ACTIONS$7.STOP_COUNT_DOWN_ACTOR,
|
|
44069
44072
|
ACTIONS$7.STOP_MICROPHONE_MACHINE,
|
|
44070
44073
|
ACTIONS$7.RESET_MACHINE,
|
|
44071
44074
|
],
|
|
@@ -44277,13 +44280,13 @@ const recorderMachineV2 = createMachine({
|
|
|
44277
44280
|
[ACTIONS$7.INIT_COUNT_DOWN_ACTOR]: assign$2({
|
|
44278
44281
|
countDownRef: (context, event, meta) => spawn(counterMachine.withContext(Object.assign(Object.assign({}, counterMachine.context), { callback: meta.action.data.callback })), { name: 'countDownRef' }),
|
|
44279
44282
|
}),
|
|
44280
|
-
[ACTIONS$7.SET_ACTIVELY_STOPPED]: assign$2((context) => ({ isActivelyStopped: true })),
|
|
44281
44283
|
[ACTIONS$7.STOP_COUNT_DOWN_ACTOR]: assign$2((context) => {
|
|
44282
44284
|
context.countDownRef.stop();
|
|
44283
44285
|
return {
|
|
44284
44286
|
countDownRef: null,
|
|
44285
44287
|
};
|
|
44286
44288
|
}),
|
|
44289
|
+
[ACTIONS$7.SET_ACTIVELY_STOPPED]: assign$2((context) => ({ isActivelyStopped: true })),
|
|
44287
44290
|
[ACTIONS$7.SESSION_EVENT]: (context, event, meta) => {
|
|
44288
44291
|
if (meta.action.data.type === 'date')
|
|
44289
44292
|
registerDateEvent(meta.action.data.event).then(() => { });
|
|
@@ -47523,7 +47526,23 @@ var times_up$2 = {
|
|
|
47523
47526
|
var practice$2 = {
|
|
47524
47527
|
title: "סימולטור תרגול",
|
|
47525
47528
|
subtitle: "נסה את איזור התרגול שלנו בכדי לראות את זה עובד",
|
|
47526
|
-
label: "איזור תרגול"
|
|
47529
|
+
label: "איזור תרגול",
|
|
47530
|
+
questions: [
|
|
47531
|
+
{
|
|
47532
|
+
numOfRetakes: 2,
|
|
47533
|
+
thinkingTime: 0,
|
|
47534
|
+
partDuration: 60,
|
|
47535
|
+
question: "מדוע ברצונך לעבוד אצלנו?",
|
|
47536
|
+
description: ""
|
|
47537
|
+
},
|
|
47538
|
+
{
|
|
47539
|
+
numOfRetakes: 1,
|
|
47540
|
+
thinkingTime: 60,
|
|
47541
|
+
partDuration: 60,
|
|
47542
|
+
question: "מהן החוזקות והחולשות שלך?",
|
|
47543
|
+
description: ""
|
|
47544
|
+
}
|
|
47545
|
+
]
|
|
47527
47546
|
};
|
|
47528
47547
|
var preview$2 = {
|
|
47529
47548
|
title: "בחר/י את הוידאו שברצונך לשלוח",
|