touchstudy-core 0.1.43 → 0.1.45
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/Selects/partials/index.d.ts +4 -0
- package/dist/components/Selects/styles.d.ts +6 -0
- package/dist/components/Selects/theme/styles.d.ts +6 -0
- package/dist/containers/ExamResult/hooks/useExamResult.d.ts +1 -1
- package/dist/containers/Login/views/Login.d.ts +1 -1
- package/dist/index.css +4 -2
- package/dist/index.js +336 -136
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +336 -136
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { CategoryResponse, EffectSize, ExamResult, LongTimeSpendQuestion, TimelyOrderQuestion } from "../configs/types";
|
3
|
-
declare const useExamResult: (searchParam: string, navigate: Function, examSessionId: number | undefined, studentId: number | undefined, code: string | undefined, handleChangeTab: (newValue: number) => void) => {
|
3
|
+
declare const useExamResult: (searchParam: string, navigate: Function, examSessionId: number | undefined, studentId: number | undefined, code: string | undefined, handleChangeTab: (newValue: number) => void, selectedTab: number) => {
|
4
4
|
examTime: string;
|
5
5
|
series: {
|
6
6
|
name: any;
|
package/dist/index.css
CHANGED
@@ -1248,7 +1248,8 @@
|
|
1248
1248
|
._3Z1nV ._36Xpx {
|
1249
1249
|
display: flex;
|
1250
1250
|
align-items: center;
|
1251
|
-
justify-content: space-between;
|
1251
|
+
justify-content: space-between;
|
1252
|
+
margin-bottom: 8px; }
|
1252
1253
|
._3Z1nV ._36Xpx ._3ZJQW {
|
1253
1254
|
font-family: "Pretendard";
|
1254
1255
|
font-weight: 500;
|
@@ -1265,7 +1266,7 @@
|
|
1265
1266
|
width: 100%;
|
1266
1267
|
height: 12px;
|
1267
1268
|
background-color: transparent;
|
1268
|
-
border: 1px solid #
|
1269
|
+
border: 1px solid #C8F8DB;
|
1269
1270
|
border-radius: 12px;
|
1270
1271
|
padding: 1px 5px;
|
1271
1272
|
overflow-x: hidden; }
|
@@ -1275,6 +1276,7 @@
|
|
1275
1276
|
._3Z1nV ._1MPdO ._3CV_y {
|
1276
1277
|
width: 8px;
|
1277
1278
|
height: 8px;
|
1279
|
+
background: #18442A;
|
1278
1280
|
border-radius: 100%;
|
1279
1281
|
position: absolute;
|
1280
1282
|
top: 0;
|