@magmamath/students-features 0.8.6-rc.1 → 0.8.6-rc.2

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.
@@ -29,7 +29,7 @@ const getModalContainerSize = modalVariant => {
29
29
  return {
30
30
  container: {
31
31
  width: 550,
32
- height: 280
32
+ height: 325
33
33
  }
34
34
  };
35
35
  case _types.EOAModalVariant.HAS_GOOD_DRAWING:
@@ -25,7 +25,7 @@ export const getModalContainerSize = modalVariant => {
25
25
  return {
26
26
  container: {
27
27
  width: 550,
28
- height: 280
28
+ height: 325
29
29
  }
30
30
  };
31
31
  case EOAModalVariant.HAS_GOOD_DRAWING:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magmamath/students-features",
3
- "version": "0.8.6-rc.1",
3
+ "version": "0.8.6-rc.2",
4
4
  "description": "Magmamath features library",
5
5
  "source": "src/index.ts",
6
6
  "main": "src/index.ts",
@@ -11,7 +11,7 @@ export const getModalContainerSize = (modalVariant: EOAModalVariant) => {
11
11
  case EOAModalVariant.EXAM_SAFE_MODE_CHEAT_DETECTED:
12
12
  return { container: { width: 560, height: 338 } }
13
13
  case EOAModalVariant.EXAM_SAFE_MODE_LEAVE:
14
- return { container: { width: 550, height: 280 } }
14
+ return { container: { width: 550, height: 325 } }
15
15
  case EOAModalVariant.HAS_GOOD_DRAWING:
16
16
  return { container: { width: 957, height: 550 } }
17
17
  case EOAModalVariant.HAS_CORRECT_ANSWERS: