touchstudy-core 0.1.26 → 0.1.27

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.
@@ -69,6 +69,8 @@ export declare type ExamResult = {
69
69
  totalStudent: number;
70
70
  totalTime: any;
71
71
  type: string;
72
+ courseId?: number;
73
+ courseName?: string;
72
74
  };
73
75
  export declare type EffectSize = {
74
76
  id: number;
package/dist/index.js CHANGED
@@ -10923,7 +10923,13 @@ var ExamResultV2 = function ExamResultV2(_ref) {
10923
10923
  padding: "24px"
10924
10924
  }, React__default.createElement(material.Grid, {
10925
10925
  item: true
10926
- }, React__default.createElement(material.Box, {
10926
+ }, resultDatas.courseName && React__default.createElement(material.Stack, null, React__default.createElement(material.Typography, {
10927
+ sx: {
10928
+ fontSize: "14px",
10929
+ fontWeight: 600,
10930
+ color: "#C3C5FE"
10931
+ }
10932
+ }, resultDatas.courseName)), React__default.createElement(material.Box, {
10927
10933
  display: "flex",
10928
10934
  gap: "16px",
10929
10935
  flexDirection: "column"