@magmamath/students-features 0.9.5-rc.1 → 0.9.5

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 (266) hide show
  1. package/dist/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js +44 -0
  2. package/dist/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js.map +1 -0
  3. package/dist/commonjs/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.js +10 -3
  4. package/dist/commonjs/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.js.map +1 -1
  5. package/dist/commonjs/features/endOfAssignment/components/EOAModal.js +2 -4
  6. package/dist/commonjs/features/endOfAssignment/components/EOAModal.js.map +1 -1
  7. package/dist/commonjs/features/endOfAssignment/components/ExamPaused/ExamPaused.js +5 -3
  8. package/dist/commonjs/features/endOfAssignment/components/ExamPaused/ExamPaused.js.map +1 -1
  9. package/dist/commonjs/features/endOfAssignment/components/ExamSubmit/ExamSubmit.js +2 -1
  10. package/dist/commonjs/features/endOfAssignment/components/ExamSubmit/ExamSubmit.js.map +1 -1
  11. package/dist/commonjs/features/endOfAssignment/components/NoAnswer/NoAnswer.js +9 -2
  12. package/dist/commonjs/features/endOfAssignment/components/NoAnswer/NoAnswer.js.map +1 -1
  13. package/dist/commonjs/features/endOfAssignment/helpers.js +10 -3
  14. package/dist/commonjs/features/endOfAssignment/helpers.js.map +1 -1
  15. package/dist/commonjs/features/endOfAssignment/model/model.js +7 -0
  16. package/dist/commonjs/features/endOfAssignment/model/model.js.map +1 -1
  17. package/dist/commonjs/features/endOfAssignment/ui/PracticeButtonGroup.js +2 -2
  18. package/dist/commonjs/features/endOfAssignment/ui/PracticeButtonGroup.js.map +1 -1
  19. package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +9 -2
  20. package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
  21. package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js +13 -3
  22. package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -1
  23. package/dist/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.js +1 -5
  24. package/dist/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.js.map +1 -1
  25. package/dist/commonjs/features/keyboard/components/Keyboard.js +4 -4
  26. package/dist/commonjs/features/keyboard/components/Keyboard.js.map +1 -1
  27. package/dist/commonjs/features/keyboard/components/MainLayout.js +74 -0
  28. package/dist/commonjs/features/keyboard/components/MainLayout.js.map +1 -0
  29. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js +24 -0
  30. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js.map +1 -0
  31. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.js +13 -0
  32. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.js.map +1 -0
  33. package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.js +6 -2
  34. package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.js.map +1 -1
  35. package/dist/commonjs/features/keyboard/components/UnitsLayout/helpers.js +10 -3
  36. package/dist/commonjs/features/keyboard/components/UnitsLayout/helpers.js.map +1 -1
  37. package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js +3 -21
  38. package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js.map +1 -1
  39. package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js +27 -0
  40. package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js.map +1 -1
  41. package/dist/commonjs/features/keyboard/types/keyboardGroupIds.js +1 -1
  42. package/dist/commonjs/features/keyboard/types/types.js +1 -0
  43. package/dist/commonjs/features/keyboard/types/types.js.map +1 -1
  44. package/dist/commonjs/lib/helpers/helpers.js +5 -28
  45. package/dist/commonjs/lib/helpers/helpers.js.map +1 -1
  46. package/dist/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js +34 -0
  47. package/dist/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js.map +1 -0
  48. package/dist/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js +34 -0
  49. package/dist/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js.map +1 -0
  50. package/dist/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js +34 -0
  51. package/dist/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js.map +1 -0
  52. package/dist/commonjs/shared/translation/constants.js +1 -3
  53. package/dist/commonjs/shared/translation/constants.js.map +1 -1
  54. package/dist/commonjs/shared/translation/localization/ca.json +5 -5
  55. package/dist/commonjs/shared/translation/localization/en.json +5 -5
  56. package/dist/commonjs/shared/translation/localization/gb.json +5 -5
  57. package/dist/commonjs/shared/translation/localization/sct.json +5 -5
  58. package/dist/commonjs/shared/translation/localization/sw.json +5 -5
  59. package/dist/commonjs/shared/translation/types.js +0 -1
  60. package/dist/commonjs/shared/translation/types.js.map +1 -1
  61. package/dist/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js +38 -0
  62. package/dist/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js.map +1 -0
  63. package/dist/module/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.js +10 -3
  64. package/dist/module/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.js.map +1 -1
  65. package/dist/module/features/endOfAssignment/components/EOAModal.js +2 -4
  66. package/dist/module/features/endOfAssignment/components/EOAModal.js.map +1 -1
  67. package/dist/module/features/endOfAssignment/components/ExamPaused/ExamPaused.js +6 -4
  68. package/dist/module/features/endOfAssignment/components/ExamPaused/ExamPaused.js.map +1 -1
  69. package/dist/module/features/endOfAssignment/components/ExamSubmit/ExamSubmit.js +3 -2
  70. package/dist/module/features/endOfAssignment/components/ExamSubmit/ExamSubmit.js.map +1 -1
  71. package/dist/module/features/endOfAssignment/components/NoAnswer/NoAnswer.js +9 -2
  72. package/dist/module/features/endOfAssignment/components/NoAnswer/NoAnswer.js.map +1 -1
  73. package/dist/module/features/endOfAssignment/helpers.js +8 -2
  74. package/dist/module/features/endOfAssignment/helpers.js.map +1 -1
  75. package/dist/module/features/endOfAssignment/model/model.js +7 -0
  76. package/dist/module/features/endOfAssignment/model/model.js.map +1 -1
  77. package/dist/module/features/endOfAssignment/ui/PracticeButtonGroup.js +2 -2
  78. package/dist/module/features/endOfAssignment/ui/PracticeButtonGroup.js.map +1 -1
  79. package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +9 -2
  80. package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
  81. package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js +13 -3
  82. package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -1
  83. package/dist/module/features/keyboard/components/BasicLayout/keyboardGroups.js +0 -4
  84. package/dist/module/features/keyboard/components/BasicLayout/keyboardGroups.js.map +1 -1
  85. package/dist/module/features/keyboard/components/Keyboard.js +4 -4
  86. package/dist/module/features/keyboard/components/Keyboard.js.map +1 -1
  87. package/dist/module/features/keyboard/components/MainLayout.js +67 -0
  88. package/dist/module/features/keyboard/components/MainLayout.js.map +1 -0
  89. package/dist/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js +18 -0
  90. package/dist/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js.map +1 -0
  91. package/dist/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.js +9 -0
  92. package/dist/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.js.map +1 -0
  93. package/dist/module/features/keyboard/components/UnitsLayout/UnitsLayout.js +6 -2
  94. package/dist/module/features/keyboard/components/UnitsLayout/UnitsLayout.js.map +1 -1
  95. package/dist/module/features/keyboard/components/UnitsLayout/helpers.js +10 -3
  96. package/dist/module/features/keyboard/components/UnitsLayout/helpers.js.map +1 -1
  97. package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js +4 -22
  98. package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js.map +1 -1
  99. package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js +27 -0
  100. package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js.map +1 -1
  101. package/dist/module/features/keyboard/types/keyboardGroupIds.js +1 -1
  102. package/dist/module/features/keyboard/types/types.js +1 -0
  103. package/dist/module/features/keyboard/types/types.js.map +1 -1
  104. package/dist/module/lib/helpers/helpers.js +5 -28
  105. package/dist/module/lib/helpers/helpers.js.map +1 -1
  106. package/dist/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js +26 -0
  107. package/dist/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js.map +1 -0
  108. package/dist/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js +26 -0
  109. package/dist/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js.map +1 -0
  110. package/dist/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js +26 -0
  111. package/dist/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js.map +1 -0
  112. package/dist/module/shared/translation/constants.js +1 -3
  113. package/dist/module/shared/translation/constants.js.map +1 -1
  114. package/dist/module/shared/translation/localization/ca.json +5 -5
  115. package/dist/module/shared/translation/localization/en.json +5 -5
  116. package/dist/module/shared/translation/localization/gb.json +5 -5
  117. package/dist/module/shared/translation/localization/sct.json +5 -5
  118. package/dist/module/shared/translation/localization/sw.json +5 -5
  119. package/dist/module/shared/translation/types.js +0 -1
  120. package/dist/module/shared/translation/types.js.map +1 -1
  121. package/dist/typescript/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.d.ts +10 -0
  122. package/dist/typescript/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.d.ts.map +1 -0
  123. package/dist/typescript/commonjs/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.d.ts.map +1 -1
  124. package/dist/typescript/commonjs/features/endOfAssignment/components/EOAModal.d.ts +1 -3
  125. package/dist/typescript/commonjs/features/endOfAssignment/components/EOAModal.d.ts.map +1 -1
  126. package/dist/typescript/commonjs/features/endOfAssignment/components/ExamPaused/ExamPaused.d.ts +1 -1
  127. package/dist/typescript/commonjs/features/endOfAssignment/components/ExamPaused/ExamPaused.d.ts.map +1 -1
  128. package/dist/typescript/commonjs/features/endOfAssignment/components/ExamSubmit/ExamSubmit.d.ts.map +1 -1
  129. package/dist/typescript/commonjs/features/endOfAssignment/components/NoAnswer/NoAnswer.d.ts.map +1 -1
  130. package/dist/typescript/commonjs/features/endOfAssignment/helpers.d.ts +3 -1
  131. package/dist/typescript/commonjs/features/endOfAssignment/helpers.d.ts.map +1 -1
  132. package/dist/typescript/commonjs/features/endOfAssignment/model/model.d.ts +5 -0
  133. package/dist/typescript/commonjs/features/endOfAssignment/model/model.d.ts.map +1 -1
  134. package/dist/typescript/commonjs/features/endOfAssignment/types.d.ts +2 -2
  135. package/dist/typescript/commonjs/features/endOfAssignment/types.d.ts.map +1 -1
  136. package/dist/typescript/commonjs/features/endOfAssignment/ui/PracticeButtonGroup.d.ts +3 -2
  137. package/dist/typescript/commonjs/features/endOfAssignment/ui/PracticeButtonGroup.d.ts.map +1 -1
  138. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
  139. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
  140. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts +6 -1
  141. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +1 -1
  142. package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.d.ts +0 -1
  143. package/dist/typescript/commonjs/features/keyboard/components/BasicLayout/keyboardGroups.d.ts.map +1 -1
  144. package/dist/typescript/commonjs/features/keyboard/components/Keyboard.d.ts +1 -0
  145. package/dist/typescript/commonjs/features/keyboard/components/Keyboard.d.ts.map +1 -1
  146. package/dist/typescript/commonjs/features/keyboard/components/MainLayout.d.ts +15 -0
  147. package/dist/typescript/commonjs/features/keyboard/components/MainLayout.d.ts.map +1 -0
  148. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts +4 -0
  149. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts.map +1 -0
  150. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts +3 -0
  151. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts.map +1 -0
  152. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts +1 -1
  153. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts.map +1 -1
  154. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/helpers.d.ts +2 -1
  155. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/helpers.d.ts.map +1 -1
  156. package/dist/typescript/commonjs/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +1 -1
  157. package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts +2 -2
  158. package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.d.ts +18 -0
  159. package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.d.ts.map +1 -1
  160. package/dist/typescript/commonjs/features/keyboard/types/keyboardGroupIds.d.ts +1 -1
  161. package/dist/typescript/commonjs/features/keyboard/types/keyboardGroupIds.d.ts.map +1 -1
  162. package/dist/typescript/commonjs/features/keyboard/types/types.d.ts +3 -1
  163. package/dist/typescript/commonjs/features/keyboard/types/types.d.ts.map +1 -1
  164. package/dist/typescript/commonjs/lib/helpers/helpers.d.ts.map +1 -1
  165. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts +4 -0
  166. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts.map +1 -0
  167. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts +4 -0
  168. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts.map +1 -0
  169. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts +4 -0
  170. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts.map +1 -0
  171. package/dist/typescript/commonjs/shared/translation/constants.d.ts +0 -42
  172. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  173. package/dist/typescript/commonjs/shared/translation/types.d.ts +1 -2
  174. package/dist/typescript/commonjs/shared/translation/types.d.ts.map +1 -1
  175. package/dist/typescript/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.d.ts +10 -0
  176. package/dist/typescript/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.d.ts.map +1 -0
  177. package/dist/typescript/module/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.d.ts.map +1 -1
  178. package/dist/typescript/module/features/endOfAssignment/components/EOAModal.d.ts +1 -3
  179. package/dist/typescript/module/features/endOfAssignment/components/EOAModal.d.ts.map +1 -1
  180. package/dist/typescript/module/features/endOfAssignment/components/ExamPaused/ExamPaused.d.ts +1 -1
  181. package/dist/typescript/module/features/endOfAssignment/components/ExamPaused/ExamPaused.d.ts.map +1 -1
  182. package/dist/typescript/module/features/endOfAssignment/components/ExamSubmit/ExamSubmit.d.ts.map +1 -1
  183. package/dist/typescript/module/features/endOfAssignment/components/NoAnswer/NoAnswer.d.ts.map +1 -1
  184. package/dist/typescript/module/features/endOfAssignment/helpers.d.ts +3 -1
  185. package/dist/typescript/module/features/endOfAssignment/helpers.d.ts.map +1 -1
  186. package/dist/typescript/module/features/endOfAssignment/model/model.d.ts +5 -0
  187. package/dist/typescript/module/features/endOfAssignment/model/model.d.ts.map +1 -1
  188. package/dist/typescript/module/features/endOfAssignment/types.d.ts +2 -2
  189. package/dist/typescript/module/features/endOfAssignment/types.d.ts.map +1 -1
  190. package/dist/typescript/module/features/endOfAssignment/ui/PracticeButtonGroup.d.ts +3 -2
  191. package/dist/typescript/module/features/endOfAssignment/ui/PracticeButtonGroup.d.ts.map +1 -1
  192. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
  193. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
  194. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts +6 -1
  195. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +1 -1
  196. package/dist/typescript/module/features/keyboard/components/BasicLayout/keyboardGroups.d.ts +0 -1
  197. package/dist/typescript/module/features/keyboard/components/BasicLayout/keyboardGroups.d.ts.map +1 -1
  198. package/dist/typescript/module/features/keyboard/components/Keyboard.d.ts +1 -0
  199. package/dist/typescript/module/features/keyboard/components/Keyboard.d.ts.map +1 -1
  200. package/dist/typescript/module/features/keyboard/components/MainLayout.d.ts +15 -0
  201. package/dist/typescript/module/features/keyboard/components/MainLayout.d.ts.map +1 -0
  202. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts +4 -0
  203. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts.map +1 -0
  204. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts +3 -0
  205. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts.map +1 -0
  206. package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts +1 -1
  207. package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts.map +1 -1
  208. package/dist/typescript/module/features/keyboard/components/UnitsLayout/helpers.d.ts +2 -1
  209. package/dist/typescript/module/features/keyboard/components/UnitsLayout/helpers.d.ts.map +1 -1
  210. package/dist/typescript/module/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +1 -1
  211. package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts +2 -2
  212. package/dist/typescript/module/features/keyboard/types/MathKeysGroups/basicOperators.d.ts +18 -0
  213. package/dist/typescript/module/features/keyboard/types/MathKeysGroups/basicOperators.d.ts.map +1 -1
  214. package/dist/typescript/module/features/keyboard/types/keyboardGroupIds.d.ts +1 -1
  215. package/dist/typescript/module/features/keyboard/types/keyboardGroupIds.d.ts.map +1 -1
  216. package/dist/typescript/module/features/keyboard/types/types.d.ts +3 -1
  217. package/dist/typescript/module/features/keyboard/types/types.d.ts.map +1 -1
  218. package/dist/typescript/module/lib/helpers/helpers.d.ts.map +1 -1
  219. package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts +4 -0
  220. package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts.map +1 -0
  221. package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts +4 -0
  222. package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts.map +1 -0
  223. package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts +4 -0
  224. package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts.map +1 -0
  225. package/dist/typescript/module/shared/translation/constants.d.ts +0 -42
  226. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  227. package/dist/typescript/module/shared/translation/types.d.ts +1 -2
  228. package/dist/typescript/module/shared/translation/types.d.ts.map +1 -1
  229. package/package.json +2 -2
  230. package/src/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.tsx +43 -0
  231. package/src/features/endOfAssignment/components/CorrectAnswer/CorrectAnswer.tsx +20 -10
  232. package/src/features/endOfAssignment/components/EOAModal.tsx +2 -9
  233. package/src/features/endOfAssignment/components/ExamPaused/ExamPaused.tsx +6 -6
  234. package/src/features/endOfAssignment/components/ExamSubmit/ExamSubmit.tsx +2 -2
  235. package/src/features/endOfAssignment/components/NoAnswer/NoAnswer.tsx +17 -6
  236. package/src/features/endOfAssignment/helpers.ts +10 -3
  237. package/src/features/endOfAssignment/model/model.ts +5 -1
  238. package/src/features/endOfAssignment/types.ts +2 -1
  239. package/src/features/endOfAssignment/ui/PracticeButtonGroup.tsx +4 -3
  240. package/src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx +2 -2
  241. package/src/features/keyboard/components/AlgebraLayout/helpers.tsx +19 -6
  242. package/src/features/keyboard/components/BasicLayout/keyboardGroups.ts +0 -4
  243. package/src/features/keyboard/components/Keyboard.tsx +4 -4
  244. package/src/features/keyboard/components/MainLayout.tsx +80 -0
  245. package/src/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.tsx +12 -0
  246. package/src/features/keyboard/components/UnderlinedLayout/keyboardGroups.ts +12 -0
  247. package/src/features/keyboard/components/UnitsLayout/UnitsLayout.tsx +2 -1
  248. package/src/features/keyboard/components/UnitsLayout/helpers.tsx +10 -2
  249. package/src/features/keyboard/constants/keyboardGroupsByLocale.ts +2 -21
  250. package/src/features/keyboard/types/MathKeysGroups/basicOperators.tsx +21 -0
  251. package/src/features/keyboard/types/keyboardGroupIds.ts +1 -1
  252. package/src/features/keyboard/types/types.ts +2 -0
  253. package/src/lib/helpers/helpers.ts +8 -23
  254. package/src/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.tsx +17 -0
  255. package/src/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.tsx +20 -0
  256. package/src/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.tsx +20 -0
  257. package/src/shared/translation/constants.ts +0 -2
  258. package/src/shared/translation/localization/ca.json +5 -5
  259. package/src/shared/translation/localization/en.json +5 -5
  260. package/src/shared/translation/localization/gb.json +5 -5
  261. package/src/shared/translation/localization/sct.json +5 -5
  262. package/src/shared/translation/localization/sw.json +5 -5
  263. package/src/shared/translation/types.ts +0 -4
  264. package/dist/commonjs/shared/translation/localization/de.json +0 -42
  265. package/dist/module/shared/translation/localization/de.json +0 -42
  266. package/src/shared/translation/localization/de.json +0 -42
@@ -3,15 +3,15 @@
3
3
  "teacherFeedback.noComments": "No comments yet",
4
4
  "time.justNow": "just now",
5
5
  "time.minuteAgo": "minute ago",
6
- "time.minutesAgo": "{{count}} minutes ago",
6
+ "time.minutesAgo": "minutes ago",
7
7
  "time.hourAgo": "hour ago",
8
- "time.hoursAgo": "{{count}} hours ago",
8
+ "time.hoursAgo": "hours ago",
9
9
  "time.dayAgo": "day ago",
10
- "time.daysAgo": "{{count}} days ago",
10
+ "time.daysAgo": "days ago",
11
11
  "time.monthAgo": "month ago",
12
- "time.monthsAgo": "{{count}} months ago",
12
+ "time.monthsAgo": "months ago",
13
13
  "time.yearAgo": "year ago",
14
- "time.yearsAgo": "{{count}} years ago",
14
+ "time.yearsAgo": "years ago",
15
15
  "chat": {
16
16
  "anotherHint": "Give me another hint",
17
17
  "giveHint": "I need a hint",
@@ -3,15 +3,15 @@
3
3
  "teacherFeedback.noComments": "Inga kommentarer än",
4
4
  "time.justNow": "alldeles nyss",
5
5
  "time.minuteAgo": "minut sedan",
6
- "time.minutesAgo": "{{count}} minuter sedan",
6
+ "time.minutesAgo": "minuter sedan",
7
7
  "time.hourAgo": "timme sedan",
8
- "time.hoursAgo": "{{count}} timmar sedan",
8
+ "time.hoursAgo": "timmar sedan",
9
9
  "time.dayAgo": "dag sedan",
10
- "time.daysAgo": "{{count}} dagar sedan",
10
+ "time.daysAgo": "dagar sedan",
11
11
  "time.monthAgo": "månad sedan",
12
- "time.monthsAgo": "{{count}} månader sedan",
12
+ "time.monthsAgo": "månader sedan",
13
13
  "time.yearAgo": "år sedan",
14
- "time.yearsAgo": "{{count}} år sedan",
14
+ "time.yearsAgo": "år sedan",
15
15
  "chat": {
16
16
  "anotherHint": "Ge mig en till ledtråd",
17
17
  "giveHint": "Ge mig en ledtråd",
@@ -3,8 +3,6 @@ import swTranslations from './localization/sw.json'
3
3
  import gbTranslations from './localization/gb.json'
4
4
  import caTranslations from './localization/ca.json'
5
5
  import sctTranslations from './localization/sct.json'
6
- import deTranslations from "./localization/de.json"
7
-
8
6
  import { RetrieveKeys } from '../../lib/types/keys'
9
7
  import { ISValidTranslation } from './validation.types'
10
8
 
@@ -18,7 +16,6 @@ export enum Locale {
18
16
  GB = 'en-GB',
19
17
  CA = 'en-CA',
20
18
  SCT = 'en-SCT',
21
- DE = 'de-DE'
22
19
  }
23
20
 
24
21
  // Validation of translations, do not remove
@@ -27,4 +24,3 @@ type ISValidSW = ISValidTranslation<typeof swTranslations>
27
24
  type ISValidGB = ISValidTranslation<typeof gbTranslations>
28
25
  type ISValidCA = ISValidTranslation<typeof caTranslations>
29
26
  type ISValidSCT = ISValidTranslation<typeof sctTranslations>
30
- type ISValidDE = ISValidTranslation<typeof deTranslations>
@@ -1,42 +0,0 @@
1
- {
2
- "locale": "de-DE",
3
- "teacherFeedback.noComments": "Noch keine Kommentare",
4
- "time.justNow": "gerade eben",
5
- "time.minuteAgo": "vor einer Minute",
6
- "time.minutesAgo": "vor {{count}} Minuten",
7
- "time.hourAgo": "vor einer Stunde",
8
- "time.hoursAgo": "vor {{count}} Stunden",
9
- "time.dayAgo": "vor einem Tag",
10
- "time.daysAgo": "vor {{count}} Tagen",
11
- "time.monthAgo": "vor einem Monat",
12
- "time.monthsAgo": "vor {{count}} Monaten",
13
- "time.yearAgo": "vor einem Jahr",
14
- "time.yearsAgo": "vor {{count}} Jahren",
15
- "chat": {
16
- "anotherHint": "Gib mir noch einen Hinweis",
17
- "giveHint": "Ich brauche einen Hinweis",
18
- "giveHintOpenChat": "Ich brauche einen Hinweis",
19
- "answerAgain": "Noch einmal antworten, um einen weiteren Hinweis zu bekommen!",
20
- "errorMessage": "Etwas ist schiefgelaufen! Versuch es erneut",
21
- "howCanIHelp": "Hi! Möchtest du Hilfe?",
22
- "showError": "Fehler anzeigen",
23
- "inputPlaceholder": "Tippe..."
24
- },
25
- "gifCelebrations": {
26
- "greatStart": "Toller Start!",
27
- "onTheWay": "Auf dem Weg!",
28
- "almostThere": "Fast geschafft"
29
- },
30
- "exampleSolution": {
31
- "exampleSolution": "Beispiellösung",
32
- "letMeThink": "Lass mich nachdenken...",
33
- "aha": "Aha!",
34
- "errorMessage": "Beim Erstellen einer Beispiellösung ist etwas schiefgelaufen"
35
- },
36
- "keyboard": {
37
- "length": "Länge",
38
- "area": "Fläche",
39
- "volume": "Volumen",
40
- "weight": "Gewicht"
41
- }
42
- }
@@ -1,42 +0,0 @@
1
- {
2
- "locale": "de-DE",
3
- "teacherFeedback.noComments": "Noch keine Kommentare",
4
- "time.justNow": "gerade eben",
5
- "time.minuteAgo": "vor einer Minute",
6
- "time.minutesAgo": "vor {{count}} Minuten",
7
- "time.hourAgo": "vor einer Stunde",
8
- "time.hoursAgo": "vor {{count}} Stunden",
9
- "time.dayAgo": "vor einem Tag",
10
- "time.daysAgo": "vor {{count}} Tagen",
11
- "time.monthAgo": "vor einem Monat",
12
- "time.monthsAgo": "vor {{count}} Monaten",
13
- "time.yearAgo": "vor einem Jahr",
14
- "time.yearsAgo": "vor {{count}} Jahren",
15
- "chat": {
16
- "anotherHint": "Gib mir noch einen Hinweis",
17
- "giveHint": "Ich brauche einen Hinweis",
18
- "giveHintOpenChat": "Ich brauche einen Hinweis",
19
- "answerAgain": "Noch einmal antworten, um einen weiteren Hinweis zu bekommen!",
20
- "errorMessage": "Etwas ist schiefgelaufen! Versuch es erneut",
21
- "howCanIHelp": "Hi! Möchtest du Hilfe?",
22
- "showError": "Fehler anzeigen",
23
- "inputPlaceholder": "Tippe..."
24
- },
25
- "gifCelebrations": {
26
- "greatStart": "Toller Start!",
27
- "onTheWay": "Auf dem Weg!",
28
- "almostThere": "Fast geschafft"
29
- },
30
- "exampleSolution": {
31
- "exampleSolution": "Beispiellösung",
32
- "letMeThink": "Lass mich nachdenken...",
33
- "aha": "Aha!",
34
- "errorMessage": "Beim Erstellen einer Beispiellösung ist etwas schiefgelaufen"
35
- },
36
- "keyboard": {
37
- "length": "Länge",
38
- "area": "Fläche",
39
- "volume": "Volumen",
40
- "weight": "Gewicht"
41
- }
42
- }
@@ -1,42 +0,0 @@
1
- {
2
- "locale": "de-DE",
3
- "teacherFeedback.noComments": "Noch keine Kommentare",
4
- "time.justNow": "gerade eben",
5
- "time.minuteAgo": "vor einer Minute",
6
- "time.minutesAgo": "vor {{count}} Minuten",
7
- "time.hourAgo": "vor einer Stunde",
8
- "time.hoursAgo": "vor {{count}} Stunden",
9
- "time.dayAgo": "vor einem Tag",
10
- "time.daysAgo": "vor {{count}} Tagen",
11
- "time.monthAgo": "vor einem Monat",
12
- "time.monthsAgo": "vor {{count}} Monaten",
13
- "time.yearAgo": "vor einem Jahr",
14
- "time.yearsAgo": "vor {{count}} Jahren",
15
- "chat": {
16
- "anotherHint": "Gib mir noch einen Hinweis",
17
- "giveHint": "Ich brauche einen Hinweis",
18
- "giveHintOpenChat": "Ich brauche einen Hinweis",
19
- "answerAgain": "Noch einmal antworten, um einen weiteren Hinweis zu bekommen!",
20
- "errorMessage": "Etwas ist schiefgelaufen! Versuch es erneut",
21
- "howCanIHelp": "Hi! Möchtest du Hilfe?",
22
- "showError": "Fehler anzeigen",
23
- "inputPlaceholder": "Tippe..."
24
- },
25
- "gifCelebrations": {
26
- "greatStart": "Toller Start!",
27
- "onTheWay": "Auf dem Weg!",
28
- "almostThere": "Fast geschafft"
29
- },
30
- "exampleSolution": {
31
- "exampleSolution": "Beispiellösung",
32
- "letMeThink": "Lass mich nachdenken...",
33
- "aha": "Aha!",
34
- "errorMessage": "Beim Erstellen einer Beispiellösung ist etwas schiefgelaufen"
35
- },
36
- "keyboard": {
37
- "length": "Länge",
38
- "area": "Fläche",
39
- "volume": "Volumen",
40
- "weight": "Gewicht"
41
- }
42
- }