touchstudy-core 0.1.80 → 0.1.82
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/components/Print/configs/constants.d.ts +4 -0
- package/dist/containers/ExamResult/configs/types.d.ts +1 -0
- package/dist/containers/ExamResult/hooks/usePrintView.d.ts +2 -0
- package/dist/containers/ExamResult/views/PrintExamResult.d.ts +2 -0
- package/dist/index.css +8 -8
- package/dist/index.js +217 -71
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +217 -71
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
@@ -10,6 +10,8 @@ declare const usePrintView: ({ examSessionId, studentId, code, setNotFound, resu
|
|
10
10
|
}) => {
|
11
11
|
fileName: string;
|
12
12
|
isDone: boolean;
|
13
|
+
status: string;
|
14
|
+
isShow: (value: number) => boolean;
|
13
15
|
handelPrintSuccess: () => void;
|
14
16
|
handelPrintError: (errorMessage?: string | undefined) => void;
|
15
17
|
};
|
@@ -4,6 +4,8 @@ interface Props {
|
|
4
4
|
contentRef: RefObject<HTMLElement>;
|
5
5
|
resultData: ExamResult;
|
6
6
|
examTime: string;
|
7
|
+
status?: string;
|
8
|
+
isShow?: (value: number) => boolean;
|
7
9
|
isStudent: boolean;
|
8
10
|
categoryResponses: CategoryResponse[];
|
9
11
|
timelyOrderQuestions: TimelyOrderQuestion[];
|
package/dist/index.css
CHANGED
@@ -1417,11 +1417,11 @@
|
|
1417
1417
|
100% {
|
1418
1418
|
transform: translateY(-8px); } }
|
1419
1419
|
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1420
|
+
._35kyG {
|
1421
|
+
page-break-before: always; }
|
1422
|
+
|
1423
|
+
._1PFgl {
|
1424
|
+
print-color-adjust: exact; }
|
1425
|
+
|
1426
|
+
._3rPGh {
|
1427
|
+
page-break-inside: avoid; }
|