@uniteverses/shared 1.0.25 → 1.0.26
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.
|
@@ -54,6 +54,8 @@ export interface SatExamQuestion {
|
|
|
54
54
|
}
|
|
55
55
|
export type SatExamSectionDifficulty = 'standard' | 'easy' | 'hard';
|
|
56
56
|
export declare const DEFAULT_SECTION_DIFFICULTY: SatExamSectionDifficulty;
|
|
57
|
+
export declare const EASY_ROUTE_DIFFICULTY: SatExamSectionDifficulty;
|
|
58
|
+
export declare const HARD_ROUTE_DIFFICULTY: SatExamSectionDifficulty;
|
|
57
59
|
export declare const SECTION_DIFFICULTY_OPTIONS: {
|
|
58
60
|
value: SatExamSectionDifficulty;
|
|
59
61
|
label: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SECTION_DIFFICULTY_OPTIONS = exports.DEFAULT_SECTION_DIFFICULTY = exports.QUESTION_GUESSING_BOUNDS = exports.QUESTION_DISCRIMINATION_BOUNDS = exports.QUESTION_DIFFICULTY_VALUE_BOUNDS = exports.QUESTION_DIFFICULTY_OPTIONS = exports.DEFAULT_QUESTION_DIFFICULTY = void 0;
|
|
3
|
+
exports.SECTION_DIFFICULTY_OPTIONS = exports.HARD_ROUTE_DIFFICULTY = exports.EASY_ROUTE_DIFFICULTY = exports.DEFAULT_SECTION_DIFFICULTY = exports.QUESTION_GUESSING_BOUNDS = exports.QUESTION_DISCRIMINATION_BOUNDS = exports.QUESTION_DIFFICULTY_VALUE_BOUNDS = exports.QUESTION_DIFFICULTY_OPTIONS = exports.DEFAULT_QUESTION_DIFFICULTY = void 0;
|
|
4
4
|
exports.DEFAULT_QUESTION_DIFFICULTY = 'medium';
|
|
5
5
|
exports.QUESTION_DIFFICULTY_OPTIONS = [
|
|
6
6
|
{ value: 'easy', label: 'Easy' },
|
|
@@ -15,6 +15,8 @@ exports.QUESTION_DIFFICULTY_VALUE_BOUNDS = {
|
|
|
15
15
|
exports.QUESTION_DISCRIMINATION_BOUNDS = { min: 0.5, max: 2.5 };
|
|
16
16
|
exports.QUESTION_GUESSING_BOUNDS = { min: 0, max: 0.25 };
|
|
17
17
|
exports.DEFAULT_SECTION_DIFFICULTY = 'standard';
|
|
18
|
+
exports.EASY_ROUTE_DIFFICULTY = 'easy';
|
|
19
|
+
exports.HARD_ROUTE_DIFFICULTY = 'hard';
|
|
18
20
|
exports.SECTION_DIFFICULTY_OPTIONS = [
|
|
19
21
|
{ value: 'standard', label: 'Standard (Module 1)' },
|
|
20
22
|
{ value: 'easy', label: 'Easy (Module 2)' },
|