@digabi/exam-engine-core 19.1.0-alpha.0 → 19.1.0

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.
Files changed (133) hide show
  1. package/dist/__tests__/tsconfig.tsbuildinfo +1 -1
  2. package/dist/components/grading/AnnotationPopup.d.ts +11 -0
  3. package/dist/components/grading/AnnotationPopup.d.ts.map +1 -0
  4. package/dist/components/grading/AnnotationPopup.js +20 -0
  5. package/dist/components/grading/AnnotationPopup.js.map +1 -0
  6. package/dist/components/grading/AnswerCharacterCounter.d.ts +6 -0
  7. package/dist/components/grading/AnswerCharacterCounter.d.ts.map +1 -0
  8. package/dist/components/grading/AnswerCharacterCounter.js +21 -0
  9. package/dist/components/grading/AnswerCharacterCounter.js.map +1 -0
  10. package/dist/components/grading/AnswerWithAnnotations.d.ts +11 -0
  11. package/dist/components/grading/AnswerWithAnnotations.d.ts.map +1 -0
  12. package/dist/components/grading/AnswerWithAnnotations.js +15 -0
  13. package/dist/components/grading/AnswerWithAnnotations.js.map +1 -0
  14. package/dist/components/grading/ChoiceAnswer.d.ts +6 -0
  15. package/dist/components/grading/ChoiceAnswer.d.ts.map +1 -0
  16. package/dist/components/grading/ChoiceAnswer.js +57 -0
  17. package/dist/components/grading/ChoiceAnswer.js.map +1 -0
  18. package/dist/components/grading/DropdownAnswer.d.ts +6 -0
  19. package/dist/components/grading/DropdownAnswer.d.ts.map +1 -0
  20. package/dist/components/grading/DropdownAnswer.js +43 -0
  21. package/dist/components/grading/DropdownAnswer.js.map +1 -0
  22. package/dist/components/grading/Grading.d.ts +4 -0
  23. package/dist/components/grading/Grading.d.ts.map +1 -0
  24. package/dist/components/grading/Grading.js +81 -0
  25. package/dist/components/grading/Grading.js.map +1 -0
  26. package/dist/components/grading/GradingAnswer.d.ts +22 -0
  27. package/dist/components/grading/GradingAnswer.d.ts.map +1 -0
  28. package/dist/components/grading/GradingAnswer.js +242 -0
  29. package/dist/components/grading/GradingAnswer.js.map +1 -0
  30. package/dist/components/grading/GradingAnswerAnnotationList.d.ts +9 -0
  31. package/dist/components/grading/GradingAnswerAnnotationList.d.ts.map +1 -0
  32. package/dist/components/grading/GradingAnswerAnnotationList.js +19 -0
  33. package/dist/components/grading/GradingAnswerAnnotationList.js.map +1 -0
  34. package/dist/components/grading/MultiLineAnswer.d.ts +14 -0
  35. package/dist/components/grading/MultiLineAnswer.d.ts.map +1 -0
  36. package/dist/components/grading/MultiLineAnswer.js +61 -0
  37. package/dist/components/grading/MultiLineAnswer.js.map +1 -0
  38. package/dist/components/grading/Question.d.ts +5 -0
  39. package/dist/components/grading/Question.d.ts.map +1 -0
  40. package/dist/components/grading/Question.js +23 -0
  41. package/dist/components/grading/Question.js.map +1 -0
  42. package/dist/components/grading/QuestionTitle.d.ts +6 -0
  43. package/dist/components/grading/QuestionTitle.d.ts.map +1 -0
  44. package/dist/components/grading/QuestionTitle.js +21 -0
  45. package/dist/components/grading/QuestionTitle.js.map +1 -0
  46. package/dist/components/grading/Results.d.ts +15 -0
  47. package/dist/components/grading/Results.d.ts.map +1 -0
  48. package/dist/components/grading/Results.js +77 -0
  49. package/dist/components/grading/Results.js.map +1 -0
  50. package/dist/components/grading/ScoredTextAnswer.d.ts +6 -0
  51. package/dist/components/grading/ScoredTextAnswer.d.ts.map +1 -0
  52. package/dist/components/grading/ScoredTextAnswer.js +22 -0
  53. package/dist/components/grading/ScoredTextAnswer.js.map +1 -0
  54. package/dist/components/grading/Section.d.ts +5 -0
  55. package/dist/components/grading/Section.d.ts.map +1 -0
  56. package/dist/components/grading/Section.js +18 -0
  57. package/dist/components/grading/Section.js.map +1 -0
  58. package/dist/components/grading/SingleLineAnswer.d.ts +12 -0
  59. package/dist/components/grading/SingleLineAnswer.d.ts.map +1 -0
  60. package/dist/components/grading/SingleLineAnswer.js +23 -0
  61. package/dist/components/grading/SingleLineAnswer.js.map +1 -0
  62. package/dist/components/grading/TextAnswer.d.ts +7 -0
  63. package/dist/components/grading/TextAnswer.d.ts.map +1 -0
  64. package/dist/components/grading/TextAnswer.js +53 -0
  65. package/dist/components/grading/TextAnswer.js.map +1 -0
  66. package/dist/components/grading/editAnnotations.d.ts +26 -0
  67. package/dist/components/grading/editAnnotations.d.ts.map +1 -0
  68. package/dist/components/grading/editAnnotations.js +177 -0
  69. package/dist/components/grading/editAnnotations.js.map +1 -0
  70. package/dist/components/grading/internal/AnnotationList.d.ts +5 -0
  71. package/dist/components/grading/internal/AnnotationList.d.ts.map +1 -0
  72. package/dist/components/grading/internal/AnnotationList.js +43 -0
  73. package/dist/components/grading/internal/AnnotationList.js.map +1 -0
  74. package/dist/components/grading/internal/QuestionAutoScore.d.ts +10 -0
  75. package/dist/components/grading/internal/QuestionAutoScore.d.ts.map +1 -0
  76. package/dist/components/grading/internal/QuestionAutoScore.js +17 -0
  77. package/dist/components/grading/internal/QuestionAutoScore.js.map +1 -0
  78. package/dist/components/grading/internal/QuestionManualScore.d.ts +12 -0
  79. package/dist/components/grading/internal/QuestionManualScore.d.ts.map +1 -0
  80. package/dist/components/grading/internal/QuestionManualScore.js +61 -0
  81. package/dist/components/grading/internal/QuestionManualScore.js.map +1 -0
  82. package/dist/components/grading/internal/QuestionScoresContainer.d.ts +10 -0
  83. package/dist/components/grading/internal/QuestionScoresContainer.d.ts.map +1 -0
  84. package/dist/components/grading/internal/QuestionScoresContainer.js +12 -0
  85. package/dist/components/grading/internal/QuestionScoresContainer.js.map +1 -0
  86. package/dist/components/grading/largeImageDetector.d.ts +3 -0
  87. package/dist/components/grading/largeImageDetector.d.ts.map +1 -0
  88. package/dist/components/grading/largeImageDetector.js +43 -0
  89. package/dist/components/grading/largeImageDetector.js.map +1 -0
  90. package/dist/components/grading/largeImageResizer.d.ts +2 -0
  91. package/dist/components/grading/largeImageResizer.d.ts.map +1 -0
  92. package/dist/components/grading/largeImageResizer.js +33 -0
  93. package/dist/components/grading/largeImageResizer.js.map +1 -0
  94. package/dist/components/results/Results2.d.ts +15 -0
  95. package/dist/components/results/Results2.d.ts.map +1 -0
  96. package/dist/components/results/Results2.js +79 -0
  97. package/dist/components/results/Results2.js.map +1 -0
  98. package/dist/components/results/internal/AnnotationList.d.ts +1 -1
  99. package/dist/components/results/internal/AnnotationList.d.ts.map +1 -1
  100. package/dist/components/results/internal/AnnotationList.js +3 -14
  101. package/dist/components/results/internal/AnnotationList.js.map +1 -1
  102. package/dist/components/shared/AnnotationListComponent.d.ts +1 -0
  103. package/dist/components/shared/AnnotationListComponent.d.ts.map +1 -0
  104. package/dist/components/shared/AnnotationListComponent.js +2 -0
  105. package/dist/components/shared/AnnotationListComponent.js.map +1 -0
  106. package/dist/components/shared/AnnotationLists.d.ts +13 -0
  107. package/dist/components/shared/AnnotationLists.d.ts.map +1 -0
  108. package/dist/components/shared/AnnotationLists.js +17 -0
  109. package/dist/components/shared/AnnotationLists.js.map +1 -0
  110. package/dist/editAnnotations.d.ts +2 -0
  111. package/dist/editAnnotations.d.ts.map +1 -0
  112. package/dist/editAnnotations.js +8 -0
  113. package/dist/editAnnotations.js.map +1 -0
  114. package/dist/editAnnotationsOld.d.ts +3 -0
  115. package/dist/editAnnotationsOld.d.ts.map +1 -0
  116. package/dist/editAnnotationsOld.js +340 -0
  117. package/dist/editAnnotationsOld.js.map +1 -0
  118. package/dist/i18n/fi-FI.d.ts +1 -0
  119. package/dist/i18n/fi-FI.d.ts.map +1 -1
  120. package/dist/i18n/fi-FI.js +1 -0
  121. package/dist/i18n/fi-FI.js.map +1 -1
  122. package/dist/i18n/index.d.ts +1 -0
  123. package/dist/i18n/index.d.ts.map +1 -1
  124. package/dist/i18n/sv-FI.d.ts.map +1 -1
  125. package/dist/i18n/sv-FI.js +1 -0
  126. package/dist/i18n/sv-FI.js.map +1 -1
  127. package/dist/main-bundle.js +1 -1
  128. package/dist/main.css +1 -1
  129. package/dist/renderAnnotations.d.ts +6 -2
  130. package/dist/renderAnnotations.d.ts.map +1 -1
  131. package/dist/renderAnnotations.js +61 -41
  132. package/dist/renderAnnotations.js.map +1 -1
  133. package/package.json +2 -2
@@ -0,0 +1,177 @@
1
+ import * as _ from 'lodash-es';
2
+ export function textAnnotationFromRange(answerTextNode, range) {
3
+ const answerNodes = allNodesUnder(answerTextNode);
4
+ const charactersBefore = charactersBeforeContainer(range.startContainer, range.startOffset);
5
+ const charactersUntilEnd = charactersBeforeContainer(range.endContainer, range.endOffset);
6
+ return {
7
+ startIndex: charactersBefore,
8
+ length: charactersUntilEnd - charactersBefore,
9
+ };
10
+ function charactersBeforeContainer(rangeContainer, offset) {
11
+ const containerIsTag = rangeContainer === answerTextNode;
12
+ const container = containerIsTag ? rangeContainer.childNodes[offset] : rangeContainer;
13
+ const offsetInside = containerIsTag ? 0 : offset;
14
+ const nodesBeforeContainer = _.takeWhile(answerNodes, (node) => node !== container);
15
+ return offsetInside + _.sum(nodesBeforeContainer.map(toNodeLength));
16
+ }
17
+ }
18
+ export function getOverlappingMessages(currentAnnotations, start, length) {
19
+ const textAnnotations = currentAnnotations.filter((a) => a.type === 'text');
20
+ return getOverlappingMessagesFromTextAnnotations(textAnnotations, start, length);
21
+ }
22
+ export function getOverlappingMessagesFromTextAnnotations(currentAnnotations, start, length) {
23
+ const parted = getOverlappingAnnotations(currentAnnotations, { startIndex: start, length, message: '' });
24
+ return _.compact(parted.overlapping.map((anno) => anno.message)).reduceRight((msg, str) => `${str} / ${msg}`, '');
25
+ }
26
+ export function toNodeLength(node) {
27
+ var _a;
28
+ return node.nodeType === Node.TEXT_NODE ? (_a = node.textContent) === null || _a === void 0 ? void 0 : _a.length : node.nodeName === 'IMG' ? 1 : 0;
29
+ }
30
+ export function allNodesUnder(el, documentObject = document) {
31
+ let n = null;
32
+ const a = [];
33
+ const walk = documentObject.createTreeWalker(el, NodeFilter.SHOW_TEXT + NodeFilter.SHOW_ELEMENT, null);
34
+ while ((n = walk.nextNode())) {
35
+ a.push(n);
36
+ }
37
+ return a;
38
+ }
39
+ export function showAndPositionElement(annotationRect, container, popup) {
40
+ const style = popup.style;
41
+ if (container) {
42
+ style.display = 'block';
43
+ const containerRect = container.getBoundingClientRect();
44
+ const popupRect = popup.getBoundingClientRect();
45
+ const left = annotationRect.left - containerRect.left;
46
+ const top = annotationRect.bottom - containerRect.top + 25;
47
+ style.top = String(top) + 'px';
48
+ style.left =
49
+ String(left + popupRect.width < containerRect.width ? left + 20 : containerRect.width - popupRect.width + 15) +
50
+ 'px';
51
+ }
52
+ }
53
+ export function hasTextSelectedInAnswerText() {
54
+ const selection = window.getSelection();
55
+ return (selection !== null &&
56
+ selectionInAnswerText(selection) &&
57
+ (isRangeSelection(selection) || textSelectedInRange(selection)));
58
+ function selectionInAnswerText(sel) {
59
+ var _a, _b, _c;
60
+ if (sel.type === 'None' || sel.type === 'Caret' || sel.rangeCount === 0)
61
+ return false;
62
+ const startContainer = sel.getRangeAt(0).startContainer;
63
+ const endContainer = sel.getRangeAt(0).endContainer;
64
+ return (sel.rangeCount > 0 &&
65
+ ((_a = startContainer.parentElement) === null || _a === void 0 ? void 0 : _a.closest('.e-grading-answer')) !== null &&
66
+ ((_b = endContainer.parentElement) === null || _b === void 0 ? void 0 : _b.closest('.e-grading-answer')) !== null &&
67
+ ((_c = startContainer.parentElement) === null || _c === void 0 ? void 0 : _c.closest('.remove-annotation-popup')) === null);
68
+ }
69
+ function isRangeSelection(sel) {
70
+ return (sel === null || sel === void 0 ? void 0 : sel.type) === 'Range';
71
+ }
72
+ function textSelectedInRange(sel) {
73
+ const range = sel.getRangeAt(0);
74
+ return (!!sel.rangeCount &&
75
+ (range.toString().length > 0 ||
76
+ isParentContainer(range.startContainer) ||
77
+ isParentContainer(range.endContainer)));
78
+ }
79
+ function isParentContainer(container) {
80
+ return container.classList.contains('answer');
81
+ }
82
+ }
83
+ export function selectionHasNothingToUnderline(range) {
84
+ var _a;
85
+ const contents = range.cloneContents();
86
+ const hasImages = Array.from(contents.childNodes)
87
+ .map((x) => (x instanceof Element ? x.tagName : null))
88
+ .includes('IMG');
89
+ return ((_a = contents.textContent) === null || _a === void 0 ? void 0 : _a.length) === 0 && !hasImages;
90
+ }
91
+ export function mergeAnnotation($answerText, newAnnotation, annotations) {
92
+ // @ts-ignore
93
+ const parted = getOverlappingAnnotations(annotations, newAnnotation);
94
+ if (parted.overlapping.length > 0) {
95
+ parted.overlapping.push(newAnnotation);
96
+ const mergedStart = _.minBy(parted.overlapping, (range) => range.startIndex);
97
+ const mergedEnd = _.maxBy(parted.overlapping, (range) => range.startIndex + range.length);
98
+ const mergedRange = {
99
+ startIndex: mergedStart.startIndex,
100
+ length: mergedEnd.startIndex + mergedEnd.length - mergedStart.startIndex,
101
+ message: newAnnotation.message,
102
+ };
103
+ parted.nonOverlapping.push(mergedRange);
104
+ }
105
+ else {
106
+ parted.nonOverlapping.push(newAnnotation);
107
+ }
108
+ return _.sortBy(parted.nonOverlapping, (a) => a.type === 'line' || a.type === 'rect'
109
+ ? getImageStartIndex(findAttachment($answerText, a.attachmentIndex), $answerText)
110
+ : a.startIndex, (a) => (a.type === 'rect' ? a.y : a.type === 'line' ? a.y1 : undefined), (a) => (a.type === 'rect' ? a.x : a.type === 'line' ? a.x1 : undefined));
111
+ }
112
+ function findAttachment(container, index) {
113
+ return container.querySelectorAll('img').item(index);
114
+ }
115
+ function getOverlappingAnnotations(annotations, newAnnotation) {
116
+ const partitioned = _.partition(annotations, (other) => {
117
+ const newEnd = newAnnotation.startIndex + newAnnotation.length;
118
+ const otherEnd = other.startIndex + other.length;
119
+ return ((newAnnotation.startIndex >= other.startIndex && newAnnotation.startIndex <= otherEnd) ||
120
+ (newEnd >= other.startIndex && newEnd <= otherEnd) ||
121
+ (newAnnotation.startIndex <= other.startIndex && newEnd >= otherEnd));
122
+ });
123
+ return { overlapping: partitioned[0], nonOverlapping: partitioned[1] };
124
+ }
125
+ export function getImageStartIndex($image, $answerText) {
126
+ const range = document.createRange();
127
+ const referenceNode = $image;
128
+ range.selectNode(referenceNode);
129
+ return textAnnotationFromRange($answerText, range).startIndex;
130
+ }
131
+ export function annotationFromMousePosition(e, { bbox, attachmentIndex, startX, startY, clientX, clientY }) {
132
+ const lineThresholdPx = 10;
133
+ const currentX = clamp((e.clientX - bbox.left) / bbox.width);
134
+ const currentY = clamp((e.clientY - bbox.top) / bbox.height);
135
+ const isVerticalLine = Math.abs(clientX - e.clientX) <= lineThresholdPx;
136
+ const isHorizontalLine = Math.abs(clientY - e.clientY) <= lineThresholdPx;
137
+ const type = isVerticalLine || isHorizontalLine ? 'line' : 'rect';
138
+ switch (type) {
139
+ case 'rect': {
140
+ return {
141
+ type: 'rect',
142
+ attachmentIndex,
143
+ x: Math.min(startX, currentX),
144
+ y: Math.min(startY, currentY),
145
+ width: Math.abs(currentX - startX),
146
+ height: Math.abs(currentY - startY),
147
+ message: '',
148
+ };
149
+ }
150
+ case 'line': {
151
+ return {
152
+ type: 'line',
153
+ attachmentIndex,
154
+ x1: isVerticalLine ? startX : Math.min(startX, currentX),
155
+ y1: isHorizontalLine ? startY : Math.min(startY, currentY),
156
+ x2: isVerticalLine ? startX : Math.max(startX, currentX),
157
+ y2: isHorizontalLine ? startY : Math.max(startY, currentY),
158
+ message: '',
159
+ };
160
+ }
161
+ }
162
+ }
163
+ export function imageAnnotationMouseDownInfo(e, image) {
164
+ const targetAnswerText = image.closest('.e-grading-answer');
165
+ const attachmentIndex = Array.from(targetAnswerText.querySelectorAll('img')).findIndex((img) => img === image);
166
+ const attachmentWrapper = targetAnswerText.querySelectorAll('.e-annotation-wrapper').item(attachmentIndex);
167
+ const bbox = attachmentWrapper.getBoundingClientRect();
168
+ const clientX = e.clientX;
169
+ const startX = clamp((clientX - bbox.left) / bbox.width);
170
+ const clientY = e.clientY;
171
+ const startY = clamp((clientY - bbox.top) / bbox.height);
172
+ return { attachmentIndex, bbox, startX, startY, clientX, clientY };
173
+ }
174
+ function clamp(n) {
175
+ return _.clamp(n, 0, 1);
176
+ }
177
+ //# sourceMappingURL=editAnnotations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"editAnnotations.js","sourceRoot":"","sources":["../../../src/components/grading/editAnnotations.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ declare function ResultsAnnotationList(): JSX.Element | null;
3
+ declare const _default: React.MemoExoticComponent<typeof ResultsAnnotationList>;
4
+ export default _default;
5
+ //# sourceMappingURL=AnnotationList.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnnotationList.d.ts","sourceRoot":"","sources":["../../../../src/components/grading/internal/AnnotationList.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAA;AA0CzC,iBAAS,qBAAqB,uBAoD7B;;AAED,wBAAgD"}
@@ -0,0 +1,43 @@
1
+ import * as _ from 'lodash-es';
2
+ import React, { useContext } from 'react';
3
+ import { getNumericAttribute } from '../../../dom-utils';
4
+ import { useExamTranslation } from '../../../i18n';
5
+ import { shortDisplayNumber } from '../../../shortDisplayNumber';
6
+ import { mapMaybe } from '../../../utils';
7
+ import { QuestionContext } from '../../context/QuestionContext';
8
+ import { findScore, ResultsContext } from '../../context/ResultsContext';
9
+ const hasAnnotations = (score) => { var _a, _b, _c, _d; return Boolean(((_b = (_a = score === null || score === void 0 ? void 0 : score.pregrading) === null || _a === void 0 ? void 0 : _a.annotations) === null || _b === void 0 ? void 0 : _b.length) || ((_d = (_c = score === null || score === void 0 ? void 0 : score.censoring) === null || _c === void 0 ? void 0 : _c.annotations) === null || _d === void 0 ? void 0 : _d.length)); };
10
+ const getPrefix = (answers, answer) => answers.length > 1 ? shortDisplayNumber(answer.getAttribute('display-number')) : '';
11
+ const AnnotationListComponent = ({ i18nTitleKey, annotations }) => {
12
+ const { t } = useExamTranslation();
13
+ return annotations ? (React.createElement(React.Fragment, null,
14
+ i18nTitleKey && React.createElement("h5", null, t(i18nTitleKey)),
15
+ React.createElement("ol", { className: "e-list-data e-pad-l-0 e-font-size-s" }, annotations.map(({ numbering, message }) => (React.createElement("li", { "data-list-number": numbering, key: numbering }, message)))))) : null;
16
+ };
17
+ function ResultsAnnotationList() {
18
+ const { answers } = useContext(QuestionContext);
19
+ const { scores, singleGrading } = useContext(ResultsContext);
20
+ const answersAndScores = mapMaybe(answers, (answer) => {
21
+ const questionId = getNumericAttribute(answer, 'question-id');
22
+ const score = findScore(scores, questionId);
23
+ return score && answer && hasAnnotations(score) ? [answer, score] : undefined;
24
+ });
25
+ const getListOfAnnotations = (answerElementAndScores, annotationsFrom, listNumberOffset = 0) => _.flatMap(answerElementAndScores, ([answer, score]) => {
26
+ var _a, _b, _c;
27
+ return (_c = (_b = (_a = score[annotationsFrom]) === null || _a === void 0 ? void 0 : _a.annotations) === null || _b === void 0 ? void 0 : _b.filter((a) => a.message.length).map((annotation, i) => {
28
+ const numbering = getPrefix(answers, answer) + String(listNumberOffset + i + 1) + ')';
29
+ const message = annotation.message;
30
+ return { numbering, message };
31
+ })) !== null && _c !== void 0 ? _c : [];
32
+ });
33
+ const pregradingAnnotations = getListOfAnnotations(answersAndScores, 'pregrading');
34
+ const censoringAnnotations = getListOfAnnotations(answersAndScores, 'censoring', pregradingAnnotations.length);
35
+ return pregradingAnnotations.length || censoringAnnotations.length ? (React.createElement("div", { className: "e-annotation-list e-columns e-mrg-t-2" }, singleGrading ? (React.createElement("div", { className: "e-column e-column--10" },
36
+ React.createElement(AnnotationListComponent, { annotations: pregradingAnnotations }))) : (React.createElement(React.Fragment, null,
37
+ React.createElement("div", { className: "e-column e-column--6" },
38
+ React.createElement(AnnotationListComponent, { i18nTitleKey: 'grading.pregrading-annotations', annotations: pregradingAnnotations })),
39
+ React.createElement("div", { className: "e-column e-column--6" },
40
+ React.createElement(AnnotationListComponent, { i18nTitleKey: 'grading.censor-annotations', annotations: censoringAnnotations })))))) : null;
41
+ }
42
+ export default React.memo(ResultsAnnotationList);
43
+ //# sourceMappingURL=AnnotationList.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AnnotationList.js","sourceRoot":"","sources":["../../../../src/components/grading/internal/AnnotationList.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface QuestionAutoScoreProps {
3
+ score?: number;
4
+ maxScore?: number;
5
+ displayNumber?: string;
6
+ }
7
+ declare function QuestionAutoScore({ score, maxScore, displayNumber }: QuestionAutoScoreProps): JSX.Element;
8
+ declare const _default: React.MemoExoticComponent<typeof QuestionAutoScore>;
9
+ export default _default;
10
+ //# sourceMappingURL=QuestionAutoScore.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuestionAutoScore.d.ts","sourceRoot":"","sources":["../../../../src/components/grading/internal/QuestionAutoScore.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAA;AAKzC,MAAM,WAAW,sBAAsB;IACrC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB;AAED,iBAAS,iBAAiB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,aAAa,EAAE,EAAE,sBAAsB,eAUpF;;AAED,wBAA4C"}
@@ -0,0 +1,17 @@
1
+ import React, { useContext } from 'react';
2
+ import { useExamTranslation } from '../../../i18n';
3
+ import { QuestionContext } from '../../context/QuestionContext';
4
+ import ResultsExamQuestionScoresContainer from './QuestionScoresContainer';
5
+ function QuestionAutoScore({ score, maxScore, displayNumber }) {
6
+ const { answers } = useContext(QuestionContext);
7
+ const { t } = useExamTranslation();
8
+ const containerProps = { answers, displayNumber };
9
+ return (React.createElement(ResultsExamQuestionScoresContainer, { ...containerProps },
10
+ typeof score === 'number' ? React.createElement("b", null, score) : React.createElement("div", { className: "e-result-scorecount-empty" }),
11
+ ' ',
12
+ maxScore ? `/ ${maxScore} ` : null,
13
+ " ",
14
+ t('points', { count: '' })));
15
+ }
16
+ export default React.memo(QuestionAutoScore);
17
+ //# sourceMappingURL=QuestionAutoScore.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuestionAutoScore.js","sourceRoot":"","sources":["../../../../src/components/grading/internal/QuestionAutoScore.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,kCAAkC,MAAM,2BAA2B,CAAA;AAQ1E,SAAS,iBAAiB,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,aAAa,EAA0B;IACnF,MAAM,EAAE,OAAO,EAAE,GAAG,UAAU,CAAC,eAAe,CAAC,CAAA;IAC/C,MAAM,EAAE,CAAC,EAAE,GAAG,kBAAkB,EAAE,CAAA;IAClC,MAAM,cAAc,GAAG,EAAE,OAAO,EAAE,aAAa,EAAE,CAAA;IACjD,OAAO,CACL,oBAAC,kCAAkC,OAAK,cAAc;QACnD,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,+BAAI,KAAK,CAAK,CAAC,CAAC,CAAC,6BAAK,SAAS,EAAC,2BAA2B,GAAG;QAAE,GAAG;QAC/F,QAAQ,CAAC,CAAC,CAAC,KAAK,QAAQ,GAAG,CAAC,CAAC,CAAC,IAAI;;QAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,EAAmB,EAAE,CAAC,CAC9C,CACtC,CAAA;AACH,CAAC;AAED,eAAe,KAAK,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAA"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { Score } from '../../../index';
3
+ export interface QuestionManualScoreProps {
4
+ scores?: Score;
5
+ maxScore?: number;
6
+ displayNumber?: string;
7
+ multilineAnswer?: boolean;
8
+ }
9
+ declare function QuestionManualScore({ scores, maxScore, displayNumber, multilineAnswer }: QuestionManualScoreProps): JSX.Element;
10
+ declare const _default: React.MemoExoticComponent<typeof QuestionManualScore>;
11
+ export default _default;
12
+ //# sourceMappingURL=QuestionManualScore.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuestionManualScore.d.ts","sourceRoot":"","sources":["../../../../src/components/grading/internal/QuestionManualScore.tsx"],"names":[],"mappings":"AACA,OAAO,KAAqB,MAAM,OAAO,CAAA;AACzC,OAAO,EAAoD,KAAK,EAAE,MAAM,gBAAgB,CAAA;AAKxF,MAAM,WAAW,wBAAwB;IACvC,MAAM,CAAC,EAAE,KAAK,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B;AAQD,iBAAS,mBAAmB,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,aAAa,EAAE,eAAe,EAAE,EAAE,wBAAwB,eAiB1G;;AAoFD,wBAA8C"}
@@ -0,0 +1,61 @@
1
+ import classNames from 'classnames';
2
+ import React, { useContext } from 'react';
3
+ import { useExamTranslation } from '../../../i18n';
4
+ import { QuestionContext } from '../../context/QuestionContext';
5
+ import ResultsExamQuestionScoresContainer from './QuestionScoresContainer';
6
+ function QuestionManualScore({ scores, maxScore, displayNumber, multilineAnswer }) {
7
+ var _a, _b, _c, _d, _e;
8
+ const { answers } = useContext(QuestionContext);
9
+ const containerProps = { answers, displayNumber, multilineAnswer };
10
+ const shortCode = (_b = (_a = scores === null || scores === void 0 ? void 0 : scores.censoring) === null || _a === void 0 ? void 0 : _a.nonAnswerDetails) === null || _b === void 0 ? void 0 : _b.shortCode;
11
+ return (React.createElement(ResultsExamQuestionScoresContainer, { ...containerProps }, ((_c = scores === null || scores === void 0 ? void 0 : scores.pregrading) === null || _c === void 0 ? void 0 : _c.score) == null && !((_e = (_d = scores === null || scores === void 0 ? void 0 : scores.censoring) === null || _d === void 0 ? void 0 : _d.scores) === null || _e === void 0 ? void 0 : _e.length) ? (React.createElement(NoPregrading, { ...{ maxScore } })) : (React.createElement(React.Fragment, null,
12
+ renderNormalizedScores(scores, maxScore),
13
+ shortCode && React.createElement(NonAnswer, { shortCode: shortCode })))));
14
+ }
15
+ function renderNormalizedScores(scores, maxScore) {
16
+ const normalizedScores = [
17
+ scores.inspection && normalizeInspectionScore(scores.inspection),
18
+ ...(scores.censoring ? normalizeCensoringScores(scores.censoring) : []),
19
+ scores.pregrading && normalizePregradingScore(scores.pregrading),
20
+ ].filter(Boolean);
21
+ return normalizedScores.map((score, i) => React.createElement(ScoreRow, { key: i, ...score, latest: i === 0, maxScore: maxScore }));
22
+ }
23
+ function NoPregrading({ maxScore }) {
24
+ const { t } = useExamTranslation();
25
+ return (React.createElement(React.Fragment, null,
26
+ React.createElement("span", { className: "e-result-scorecount-empty" }),
27
+ maxScore && ` / ${maxScore} `,
28
+ t('points', { count: '' })));
29
+ }
30
+ function NonAnswer({ shortCode }) {
31
+ return (React.createElement("div", { className: "e-color-darkgrey e-columns e-columns--center-v" },
32
+ React.createElement("span", { className: "e-font-size-xxxl e-light e-mrg-r-1" }, "\u00D7"),
33
+ React.createElement("span", null, shortCode)));
34
+ }
35
+ function ScoreRow({ score, shortCode, type, maxScore, latest }) {
36
+ return (React.createElement("div", { className: latest ? 'e-color-black' : 'e-color-darkgrey e-font-size-xs' },
37
+ React.createElement(ScoreColumn, { className: classNames('e-nowrap', { 'e-font-size-m': latest }) },
38
+ latest ? React.createElement("b", null, score) : score,
39
+ latest && maxScore ? ` / ${maxScore}` : '',
40
+ ` p.`),
41
+ React.createElement(ScoreColumn, { className: "e-result-scorecount-shortcode" }, shortCode),
42
+ React.createElement(ScoreColumn, { className: "e-mrg-r-0" }, type)));
43
+ }
44
+ function ScoreColumn({ className, children }) {
45
+ return React.createElement("span", { className: classNames('e-mrg-r-1 e-nowrap', className) }, children);
46
+ }
47
+ function normalizePregradingScore({ score }) {
48
+ return score !== undefined ? { score, shortCode: '', type: 'va' } : null;
49
+ }
50
+ function normalizeCensoringScores(score) {
51
+ return score.scores.map((s, i) => ({
52
+ score: s.score,
53
+ shortCode: s.shortCode || '',
54
+ type: `${score.scores.length - i}.s`,
55
+ }));
56
+ }
57
+ function normalizeInspectionScore(score) {
58
+ return { score: score.score, shortCode: score.shortCodes ? score.shortCodes.join(', ') : '', type: 'ta' };
59
+ }
60
+ export default React.memo(QuestionManualScore);
61
+ //# sourceMappingURL=QuestionManualScore.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuestionManualScore.js","sourceRoot":"","sources":["../../../../src/components/grading/internal/QuestionManualScore.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ declare function QuestionScoresContainer({ answers, displayNumber, children, multilineAnswer, }: {
3
+ answers: Element[];
4
+ displayNumber?: string;
5
+ children: React.ReactNode;
6
+ multilineAnswer?: boolean;
7
+ }): JSX.Element;
8
+ declare const _default: React.MemoExoticComponent<typeof QuestionScoresContainer>;
9
+ export default _default;
10
+ //# sourceMappingURL=QuestionScoresContainer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuestionScoresContainer.d.ts","sourceRoot":"","sources":["../../../../src/components/grading/internal/QuestionScoresContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,iBAAS,uBAAuB,CAAC,EAC/B,OAAO,EACP,aAAa,EACb,QAAQ,EACR,eAAe,GAChB,EAAE;IACD,OAAO,EAAE,OAAO,EAAE,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B,eAiBA;;AAED,wBAAkD"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import classnames from 'classnames';
3
+ function QuestionScoresContainer({ answers, displayNumber, children, multilineAnswer, }) {
4
+ return (React.createElement("div", { className: classnames('e-result-scorecount', 'e-float-right', {
5
+ 'e-result-scorecount-multiline-answer': multilineAnswer,
6
+ }) },
7
+ React.createElement("div", { className: "e-result-scorecount-border-wrap" },
8
+ answers.length > 1 && displayNumber && (React.createElement("sup", { className: "e-result-scorecount-sup e-mrg-r-1", "aria-hidden": "true" }, displayNumber)),
9
+ children)));
10
+ }
11
+ export default React.memo(QuestionScoresContainer);
12
+ //# sourceMappingURL=QuestionScoresContainer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QuestionScoresContainer.js","sourceRoot":"","sources":["../../../../src/components/grading/internal/QuestionScoresContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,UAAU,MAAM,YAAY,CAAA;AAEnC,SAAS,uBAAuB,CAAC,EAC/B,OAAO,EACP,aAAa,EACb,QAAQ,EACR,eAAe,GAMhB;IACC,OAAO,CACL,6BACE,SAAS,EAAE,UAAU,CAAC,qBAAqB,EAAE,eAAe,EAAE;YAC5D,sCAAsC,EAAE,eAAe;SACxD,CAAC;QAEF,6BAAK,SAAS,EAAC,iCAAiC;YAC7C,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,aAAa,IAAI,CACtC,6BAAK,SAAS,EAAC,mCAAmC,iBAAa,MAAM,IAClE,aAAa,CACV,CACP;YACA,QAAQ,CACL,CACF,CACP,CAAA;AACH,CAAC;AAED,eAAe,KAAK,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAA"}
@@ -0,0 +1,3 @@
1
+ export declare function waitUntilImagesDone(): Promise<void>;
2
+ export declare function updateLargeImageWarnings(answer: Element): void;
3
+ //# sourceMappingURL=largeImageDetector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"largeImageDetector.d.ts","sourceRoot":"","sources":["../../../src/components/grading/largeImageDetector.ts"],"names":[],"mappings":"AAEA,wBAAsB,mBAAmB,kBAWxC;AACD,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,OAAO,QAUvD"}
@@ -0,0 +1,43 @@
1
+ let remainingImages;
2
+ export async function waitUntilImagesDone() {
3
+ let tries = 1000;
4
+ while (tries > 0) {
5
+ tries--;
6
+ if (remainingImages === 0) {
7
+ return;
8
+ }
9
+ else {
10
+ await new Promise((resolve) => setTimeout(resolve, 100));
11
+ }
12
+ }
13
+ throw Error('Images not loaded');
14
+ }
15
+ export function updateLargeImageWarnings(answer) {
16
+ const images = answer.querySelectorAll('img');
17
+ remainingImages = images.length;
18
+ images.forEach((img) => {
19
+ if (img.complete) {
20
+ setTimeout(() => updateImageStatus(img), 0);
21
+ }
22
+ else {
23
+ img.addEventListener('load', () => updateImageStatus(img));
24
+ }
25
+ });
26
+ }
27
+ function updateImageStatus(img) {
28
+ remainingImages--;
29
+ const wrapper = img.parentElement;
30
+ const nextSibling = wrapper === null || wrapper === void 0 ? void 0 : wrapper.nextSibling;
31
+ const hasFullSizeLink = nextSibling instanceof HTMLElement && nextSibling.classList.contains('full-size-image');
32
+ if (img.naturalWidth > img.width) {
33
+ if (!hasFullSizeLink) {
34
+ wrapper === null || wrapper === void 0 ? void 0 : wrapper.insertAdjacentHTML('afterend', `<div class="full-size-image"><a target="_blank" href="${img.src}"></a>`);
35
+ }
36
+ }
37
+ else {
38
+ if (hasFullSizeLink) {
39
+ nextSibling === null || nextSibling === void 0 ? void 0 : nextSibling.remove();
40
+ }
41
+ }
42
+ }
43
+ //# sourceMappingURL=largeImageDetector.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"largeImageDetector.js","sourceRoot":"","sources":["../../../src/components/grading/largeImageDetector.ts"],"names":[],"mappings":"AAAA,IAAI,eAAuB,CAAA;AAE3B,MAAM,CAAC,KAAK,UAAU,mBAAmB;IACvC,IAAI,KAAK,GAAG,IAAI,CAAA;IAChB,OAAO,KAAK,GAAG,CAAC,EAAE;QAChB,KAAK,EAAE,CAAA;QACP,IAAI,eAAe,KAAK,CAAC,EAAE;YACzB,OAAM;SACP;aAAM;YACL,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAA;SACzD;KACF;IACD,MAAM,KAAK,CAAC,mBAAmB,CAAC,CAAA;AAClC,CAAC;AACD,MAAM,UAAU,wBAAwB,CAAC,MAAe;IACtD,MAAM,MAAM,GAAG,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAA;IAC7C,eAAe,GAAG,MAAM,CAAC,MAAM,CAAA;IAC/B,MAAM,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;QACrB,IAAI,GAAG,CAAC,QAAQ,EAAE;YAChB,UAAU,CAAC,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;SAC5C;aAAM;YACL,GAAG,CAAC,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAA;SAC3D;IACH,CAAC,CAAC,CAAA;AACJ,CAAC;AACD,SAAS,iBAAiB,CAAC,GAAqB;IAC9C,eAAe,EAAE,CAAA;IACjB,MAAM,OAAO,GAAG,GAAG,CAAC,aAAa,CAAA;IACjC,MAAM,WAAW,GAAG,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,WAAW,CAAA;IACxC,MAAM,eAAe,GAAG,WAAW,YAAY,WAAW,IAAI,WAAW,CAAC,SAAS,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAA;IAC/G,IAAI,GAAG,CAAC,YAAY,GAAG,GAAG,CAAC,KAAK,EAAE;QAChC,IAAI,CAAC,eAAe,EAAE;YACpB,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,kBAAkB,CAAC,UAAU,EAAE,yDAAyD,GAAG,CAAC,GAAG,QAAQ,CAAC,CAAA;SAClH;KACF;SAAM;QACL,IAAI,eAAe,EAAE;YACnB,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,MAAM,EAAE,CAAA;SACtB;KACF;AACH,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function updateLargeImageWarnings(answer: Element): void;
2
+ //# sourceMappingURL=largeImageResizer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"largeImageResizer.d.ts","sourceRoot":"","sources":["../../../src/components/grading/largeImageResizer.ts"],"names":[],"mappings":"AAAA,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,OAAO,QAWvD"}
@@ -0,0 +1,33 @@
1
+ export function updateLargeImageWarnings(answer) {
2
+ console.log('updateWarnings');
3
+ const images = answer.querySelectorAll('img');
4
+ images.forEach((img) => {
5
+ console.log('img', img, img.complete);
6
+ if (img.complete) {
7
+ setTimeout(() => updateImageStatus(img), 0);
8
+ }
9
+ else {
10
+ img.addEventListener('load', () => updateImageStatus(img));
11
+ }
12
+ });
13
+ }
14
+ function updateImageStatus(img) {
15
+ const wrapper = img.parentElement;
16
+ console.log('wrapper', wrapper);
17
+ const nextSibling = wrapper.nextSibling;
18
+ console.log(nextSibling, '\n=== nextSibling');
19
+ const hasFullSizeLink = nextSibling instanceof HTMLElement && nextSibling.classList.contains('full-size-image');
20
+ console.log(hasFullSizeLink, '\n=== hasFullSizeLink');
21
+ if (img.naturalWidth > img.width) {
22
+ if (!hasFullSizeLink) {
23
+ console.log('insert...');
24
+ wrapper.insertAdjacentHTML('afterend', `<div class="full-size-image"><a target="_blank" href="${img.src}"></a>`);
25
+ }
26
+ }
27
+ else {
28
+ if (hasFullSizeLink) {
29
+ nextSibling.remove();
30
+ }
31
+ }
32
+ }
33
+ //# sourceMappingURL=largeImageResizer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"largeImageResizer.js","sourceRoot":"","sources":["../../../src/components/grading/largeImageResizer.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,wBAAwB,CAAC,MAAe;IACtD,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;IAC7B,MAAM,MAAM,GAAG,MAAM,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAA;IAC7C,MAAM,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;QACrB,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAA;QACrC,IAAI,GAAG,CAAC,QAAQ,EAAE;YAChB,UAAU,CAAC,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;SAC5C;aAAM;YACL,GAAG,CAAC,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAA;SAC3D;IACH,CAAC,CAAC,CAAA;AACJ,CAAC;AACD,SAAS,iBAAiB,CAAC,GAAqB;IAC9C,MAAM,OAAO,GAAG,GAAG,CAAC,aAAc,CAAA;IAClC,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;IAC/B,MAAM,WAAW,GAAG,OAAO,CAAC,WAAW,CAAA;IACvC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,mBAAmB,CAAC,CAAA;IAC7C,MAAM,eAAe,GAAG,WAAW,YAAY,WAAW,IAAI,WAAW,CAAC,SAAS,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAA;IAC/G,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,uBAAuB,CAAC,CAAA;IACrD,IAAI,GAAG,CAAC,YAAY,GAAG,GAAG,CAAC,KAAK,EAAE;QAChC,IAAI,CAAC,eAAe,EAAE;YACpB,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAA;YACxB,OAAO,CAAC,kBAAkB,CAAC,UAAU,EAAE,yDAAyD,GAAG,CAAC,GAAG,QAAQ,CAAC,CAAA;SACjH;KACF;SAAM;QACL,IAAI,eAAe,EAAE;YACnB,WAAW,CAAC,MAAM,EAAE,CAAA;SACrB;KACF;AACH,CAAC"}
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { GradingStructure, Score } from '../..';
3
+ import { CommonExamProps } from '../exam/Exam';
4
+ export interface ResultsProps extends CommonExamProps {
5
+ /** Contains grading structure for the exam, and in addition scores and metadata (comments and annotations) */
6
+ gradingStructure: GradingStructure;
7
+ /** Custom grading text to be displayed for the whole exam. For example total grade for the exam. */
8
+ gradingText?: string;
9
+ /** Scores for exam answers */
10
+ scores: Score[];
11
+ singleGrading?: boolean;
12
+ }
13
+ declare const _default: React.MemoExoticComponent<React.ComponentType<any>>;
14
+ export default _default;
15
+ //# sourceMappingURL=Results2.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Results2.d.ts","sourceRoot":"","sources":["../../../src/components/results/Results2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAA;AAEpD,OAAO,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAU/C,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAgB9C,MAAM,WAAW,YAAa,SAAQ,eAAe;IACnD,8GAA8G;IAC9G,gBAAgB,EAAE,gBAAgB,CAAA;IAClC,oGAAoG;IACpG,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,8BAA8B;IAC9B,MAAM,EAAE,KAAK,EAAE,CAAA;IACf,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB;;AAgFD,wBAA8E"}