@magmamath/students-features 1.2.1-rc.48 → 1.2.1-rc.6

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 (576) hide show
  1. package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js +1 -2
  2. package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js.map +1 -1
  3. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageContent.js +1 -2
  4. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageContent.js.map +1 -1
  5. package/dist/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.js +0 -1
  6. package/dist/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.js.map +1 -1
  7. package/dist/commonjs/features/chatbot/helpers.js +0 -3
  8. package/dist/commonjs/features/chatbot/helpers.js.map +1 -1
  9. package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js +8 -40
  10. package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
  11. package/dist/commonjs/features/chatbot/model/ThreadItem.js +13 -51
  12. package/dist/commonjs/features/chatbot/model/ThreadItem.js.map +1 -1
  13. package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -1
  14. package/dist/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js +1 -1
  15. package/dist/commonjs/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js.map +1 -1
  16. package/dist/commonjs/features/openEnded/components/OpenEndedScoreLabel.js +1 -3
  17. package/dist/commonjs/features/openEnded/components/OpenEndedScoreLabel.js.map +1 -1
  18. package/dist/commonjs/features/voice/constants.js +8 -2
  19. package/dist/commonjs/features/voice/constants.js.map +1 -1
  20. package/dist/commonjs/features/voice/recording/components/VoiceRecord.js +16 -5
  21. package/dist/commonjs/features/voice/recording/components/VoiceRecord.js.map +1 -1
  22. package/dist/commonjs/features/voice/recording/components/VoiceRecordButton.js +71 -20
  23. package/dist/commonjs/features/voice/recording/components/VoiceRecordButton.js.map +1 -1
  24. package/dist/commonjs/features/voice/recording/components/VoiceRecordDeleteButton.js +2 -2
  25. package/dist/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.js +2 -2
  26. package/dist/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.js.map +1 -1
  27. package/dist/commonjs/features/voice/recording/model/VoiceRecord.model.js +5 -0
  28. package/dist/commonjs/features/voice/recording/model/VoiceRecord.model.js.map +1 -1
  29. package/dist/commonjs/features/voice/types.js +6 -0
  30. package/dist/commonjs/features/voice/types.js.map +1 -1
  31. package/dist/commonjs/index.js +3 -15
  32. package/dist/commonjs/index.js.map +1 -1
  33. package/dist/commonjs/shared/translation/localization/ca.json +0 -24
  34. package/dist/commonjs/shared/translation/localization/de.json +0 -24
  35. package/dist/commonjs/shared/translation/localization/en.json +0 -24
  36. package/dist/commonjs/shared/translation/localization/gb.json +0 -24
  37. package/dist/commonjs/shared/translation/localization/sct.json +0 -24
  38. package/dist/commonjs/shared/translation/localization/sw.json +0 -24
  39. package/dist/module/features/chatbot/components/ChatInput/ChatInput.js +1 -2
  40. package/dist/module/features/chatbot/components/ChatInput/ChatInput.js.map +1 -1
  41. package/dist/module/features/chatbot/components/ChatMessage/MessageContent.js +1 -2
  42. package/dist/module/features/chatbot/components/ChatMessage/MessageContent.js.map +1 -1
  43. package/dist/module/features/chatbot/errorSpotting/ErrorSpottingModel.js +0 -1
  44. package/dist/module/features/chatbot/errorSpotting/ErrorSpottingModel.js.map +1 -1
  45. package/dist/module/features/chatbot/helpers.js +0 -3
  46. package/dist/module/features/chatbot/helpers.js.map +1 -1
  47. package/dist/module/features/chatbot/model/ChatBotThreadManager.js +8 -40
  48. package/dist/module/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
  49. package/dist/module/features/chatbot/model/ThreadItem.js +13 -51
  50. package/dist/module/features/chatbot/model/ThreadItem.js.map +1 -1
  51. package/dist/module/features/chatbot/types/model.types.js.map +1 -1
  52. package/dist/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js +2 -2
  53. package/dist/module/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.js.map +1 -1
  54. package/dist/module/features/openEnded/components/OpenEndedScoreLabel.js +1 -3
  55. package/dist/module/features/openEnded/components/OpenEndedScoreLabel.js.map +1 -1
  56. package/dist/module/features/voice/constants.js +8 -2
  57. package/dist/module/features/voice/constants.js.map +1 -1
  58. package/dist/module/features/voice/recording/components/VoiceRecord.js +17 -6
  59. package/dist/module/features/voice/recording/components/VoiceRecord.js.map +1 -1
  60. package/dist/module/features/voice/recording/components/VoiceRecordButton.js +72 -21
  61. package/dist/module/features/voice/recording/components/VoiceRecordButton.js.map +1 -1
  62. package/dist/module/features/voice/recording/components/VoiceRecordDeleteButton.js +2 -2
  63. package/dist/module/features/voice/recording/hooks/useVoiceRecorderAnimation.js +2 -2
  64. package/dist/module/features/voice/recording/hooks/useVoiceRecorderAnimation.js.map +1 -1
  65. package/dist/module/features/voice/recording/model/VoiceRecord.model.js +5 -0
  66. package/dist/module/features/voice/recording/model/VoiceRecord.model.js.map +1 -1
  67. package/dist/module/features/voice/types.js +5 -1
  68. package/dist/module/features/voice/types.js.map +1 -1
  69. package/dist/module/index.js +0 -1
  70. package/dist/module/index.js.map +1 -1
  71. package/dist/module/shared/translation/localization/ca.json +0 -24
  72. package/dist/module/shared/translation/localization/de.json +0 -24
  73. package/dist/module/shared/translation/localization/en.json +0 -24
  74. package/dist/module/shared/translation/localization/gb.json +0 -24
  75. package/dist/module/shared/translation/localization/sct.json +0 -24
  76. package/dist/module/shared/translation/localization/sw.json +0 -24
  77. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -1
  78. package/dist/typescript/commonjs/features/chatbot/components/ChatMessage/MessageContent.d.ts.map +1 -1
  79. package/dist/typescript/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts +1 -2
  80. package/dist/typescript/commonjs/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts.map +1 -1
  81. package/dist/typescript/commonjs/features/chatbot/helpers.d.ts.map +1 -1
  82. package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts +0 -1
  83. package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
  84. package/dist/typescript/commonjs/features/chatbot/model/ThreadItem.d.ts +12 -50
  85. package/dist/typescript/commonjs/features/chatbot/model/ThreadItem.d.ts.map +1 -1
  86. package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts +2 -10
  87. package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts.map +1 -1
  88. package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +2 -5
  89. package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -1
  90. package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts +0 -22
  91. package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts.map +1 -1
  92. package/dist/typescript/commonjs/features/openEnded/components/OpenEndedScoreLabel.d.ts +1 -2
  93. package/dist/typescript/commonjs/features/openEnded/components/OpenEndedScoreLabel.d.ts.map +1 -1
  94. package/dist/typescript/commonjs/features/voice/constants.d.ts +8 -2
  95. package/dist/typescript/commonjs/features/voice/constants.d.ts.map +1 -1
  96. package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecord.d.ts.map +1 -1
  97. package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecordButton.d.ts +1 -3
  98. package/dist/typescript/commonjs/features/voice/recording/components/VoiceRecordButton.d.ts.map +1 -1
  99. package/dist/typescript/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts +2 -1
  100. package/dist/typescript/commonjs/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts.map +1 -1
  101. package/dist/typescript/commonjs/features/voice/recording/model/VoiceRecord.model.d.ts +3 -1
  102. package/dist/typescript/commonjs/features/voice/recording/model/VoiceRecord.model.d.ts.map +1 -1
  103. package/dist/typescript/commonjs/features/voice/types.d.ts +4 -0
  104. package/dist/typescript/commonjs/features/voice/types.d.ts.map +1 -1
  105. package/dist/typescript/commonjs/index.d.ts +0 -1
  106. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  107. package/dist/typescript/commonjs/shared/translation/constants.d.ts +0 -144
  108. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  109. package/dist/typescript/commonjs/shared/translation/model.d.ts +0 -48
  110. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
  111. package/dist/typescript/module/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -1
  112. package/dist/typescript/module/features/chatbot/components/ChatMessage/MessageContent.d.ts.map +1 -1
  113. package/dist/typescript/module/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts +1 -2
  114. package/dist/typescript/module/features/chatbot/errorSpotting/ErrorSpottingModel.d.ts.map +1 -1
  115. package/dist/typescript/module/features/chatbot/helpers.d.ts.map +1 -1
  116. package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts +0 -1
  117. package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
  118. package/dist/typescript/module/features/chatbot/model/ThreadItem.d.ts +12 -50
  119. package/dist/typescript/module/features/chatbot/model/ThreadItem.d.ts.map +1 -1
  120. package/dist/typescript/module/features/chatbot/types/api.types.d.ts +2 -10
  121. package/dist/typescript/module/features/chatbot/types/api.types.d.ts.map +1 -1
  122. package/dist/typescript/module/features/chatbot/types/model.types.d.ts +2 -5
  123. package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -1
  124. package/dist/typescript/module/features/chatbot/types/units.types.d.ts +0 -22
  125. package/dist/typescript/module/features/chatbot/types/units.types.d.ts.map +1 -1
  126. package/dist/typescript/module/features/openEnded/components/OpenEndedScoreLabel.d.ts +1 -2
  127. package/dist/typescript/module/features/openEnded/components/OpenEndedScoreLabel.d.ts.map +1 -1
  128. package/dist/typescript/module/features/voice/constants.d.ts +8 -2
  129. package/dist/typescript/module/features/voice/constants.d.ts.map +1 -1
  130. package/dist/typescript/module/features/voice/recording/components/VoiceRecord.d.ts.map +1 -1
  131. package/dist/typescript/module/features/voice/recording/components/VoiceRecordButton.d.ts +1 -3
  132. package/dist/typescript/module/features/voice/recording/components/VoiceRecordButton.d.ts.map +1 -1
  133. package/dist/typescript/module/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts +2 -1
  134. package/dist/typescript/module/features/voice/recording/hooks/useVoiceRecorderAnimation.d.ts.map +1 -1
  135. package/dist/typescript/module/features/voice/recording/model/VoiceRecord.model.d.ts +3 -1
  136. package/dist/typescript/module/features/voice/recording/model/VoiceRecord.model.d.ts.map +1 -1
  137. package/dist/typescript/module/features/voice/types.d.ts +4 -0
  138. package/dist/typescript/module/features/voice/types.d.ts.map +1 -1
  139. package/dist/typescript/module/index.d.ts +0 -1
  140. package/dist/typescript/module/index.d.ts.map +1 -1
  141. package/dist/typescript/module/shared/translation/constants.d.ts +0 -144
  142. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  143. package/dist/typescript/module/shared/translation/model.d.ts +0 -48
  144. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
  145. package/package.json +13 -21
  146. package/src/features/chatbot/components/ChatInput/ChatInput.tsx +1 -2
  147. package/src/features/chatbot/components/ChatMessage/MessageContent.tsx +1 -2
  148. package/src/features/chatbot/errorSpotting/ErrorSpottingModel.ts +1 -3
  149. package/src/features/chatbot/helpers.ts +0 -1
  150. package/src/features/chatbot/model/ChatBotThreadManager.ts +9 -44
  151. package/src/features/chatbot/model/ThreadItem.ts +19 -68
  152. package/src/features/chatbot/types/api.types.ts +2 -17
  153. package/src/features/chatbot/types/model.types.ts +2 -12
  154. package/src/features/chatbot/types/units.types.ts +0 -26
  155. package/src/features/endOfAssignment/components/AssessmentScoreCard/AssessmentScoreCard.tsx +2 -2
  156. package/src/features/openEnded/components/OpenEndedScoreLabel.tsx +0 -3
  157. package/src/features/voice/constants.ts +8 -2
  158. package/src/features/voice/recording/components/VoiceRecord.tsx +26 -5
  159. package/src/features/voice/recording/components/VoiceRecordButton.tsx +98 -29
  160. package/src/features/voice/recording/components/VoiceRecordDeleteButton.tsx +2 -2
  161. package/src/features/voice/recording/hooks/useVoiceRecorderAnimation.ts +7 -3
  162. package/src/features/voice/recording/model/VoiceRecord.model.ts +7 -0
  163. package/src/features/voice/types.ts +5 -0
  164. package/src/index.ts +0 -1
  165. package/src/shared/translation/localization/ca.json +0 -24
  166. package/src/shared/translation/localization/de.json +0 -24
  167. package/src/shared/translation/localization/en.json +0 -24
  168. package/src/shared/translation/localization/gb.json +0 -24
  169. package/src/shared/translation/localization/sct.json +0 -24
  170. package/src/shared/translation/localization/sw.json +0 -24
  171. package/dist/commonjs/features/pmProgress/PmProgress.js +0 -42
  172. package/dist/commonjs/features/pmProgress/PmProgress.js.map +0 -1
  173. package/dist/commonjs/features/pmProgress/components/chart/chart.helpers.js +0 -24
  174. package/dist/commonjs/features/pmProgress/components/chart/chart.helpers.js.map +0 -1
  175. package/dist/commonjs/features/pmProgress/components/chart/chart.types.js +0 -2
  176. package/dist/commonjs/features/pmProgress/components/chart/chart.types.js.map +0 -1
  177. package/dist/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.js +0 -44
  178. package/dist/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.js.map +0 -1
  179. package/dist/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.js +0 -26
  180. package/dist/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.js.map +0 -1
  181. package/dist/commonjs/features/pmProgress/components/chart/components/SlicesPaths.js +0 -91
  182. package/dist/commonjs/features/pmProgress/components/chart/components/SlicesPaths.js.map +0 -1
  183. package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.js +0 -38
  184. package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.js.map +0 -1
  185. package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js +0 -21
  186. package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js.map +0 -1
  187. package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.js +0 -55
  188. package/dist/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.js.map +0 -1
  189. package/dist/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.js +0 -49
  190. package/dist/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.js.map +0 -1
  191. package/dist/commonjs/features/pmProgress/components/chart/model/PieChartManager.js +0 -23
  192. package/dist/commonjs/features/pmProgress/components/chart/model/PieChartManager.js.map +0 -1
  193. package/dist/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.js +0 -79
  194. package/dist/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.js.map +0 -1
  195. package/dist/commonjs/features/pmProgress/components/content/PmContent.js +0 -50
  196. package/dist/commonjs/features/pmProgress/components/content/PmContent.js.map +0 -1
  197. package/dist/commonjs/features/pmProgress/components/header/NextUp.js +0 -127
  198. package/dist/commonjs/features/pmProgress/components/header/NextUp.js.map +0 -1
  199. package/dist/commonjs/features/pmProgress/components/header/PmProgressHeader.js +0 -133
  200. package/dist/commonjs/features/pmProgress/components/header/PmProgressHeader.js.map +0 -1
  201. package/dist/commonjs/features/pmProgress/components/header/StartButton.js +0 -126
  202. package/dist/commonjs/features/pmProgress/components/header/StartButton.js.map +0 -1
  203. package/dist/commonjs/features/pmProgress/components/insights/PmInsights.js +0 -70
  204. package/dist/commonjs/features/pmProgress/components/insights/PmInsights.js.map +0 -1
  205. package/dist/commonjs/features/pmProgress/components/insights/PmTimeframeStats.js +0 -99
  206. package/dist/commonjs/features/pmProgress/components/insights/PmTimeframeStats.js.map +0 -1
  207. package/dist/commonjs/features/pmProgress/components/insights/StatsCard.js +0 -72
  208. package/dist/commonjs/features/pmProgress/components/insights/StatsCard.js.map +0 -1
  209. package/dist/commonjs/features/pmProgress/components/list/Fluency.js +0 -82
  210. package/dist/commonjs/features/pmProgress/components/list/Fluency.js.map +0 -1
  211. package/dist/commonjs/features/pmProgress/components/list/ListCard.js +0 -207
  212. package/dist/commonjs/features/pmProgress/components/list/ListCard.js.map +0 -1
  213. package/dist/commonjs/features/pmProgress/components/list/ListItem.js +0 -139
  214. package/dist/commonjs/features/pmProgress/components/list/ListItem.js.map +0 -1
  215. package/dist/commonjs/features/pmProgress/components/list/PmDomainList.js +0 -96
  216. package/dist/commonjs/features/pmProgress/components/list/PmDomainList.js.map +0 -1
  217. package/dist/commonjs/features/pmProgress/components/locked/PmStatusOverlay.js +0 -101
  218. package/dist/commonjs/features/pmProgress/components/locked/PmStatusOverlay.js.map +0 -1
  219. package/dist/commonjs/features/pmProgress/components/recs/PmTeacherRecs.js +0 -134
  220. package/dist/commonjs/features/pmProgress/components/recs/PmTeacherRecs.js.map +0 -1
  221. package/dist/commonjs/features/pmProgress/components/standard/StandardTag.js +0 -203
  222. package/dist/commonjs/features/pmProgress/components/standard/StandardTag.js.map +0 -1
  223. package/dist/commonjs/features/pmProgress/context/PmProgressContext.js +0 -18
  224. package/dist/commonjs/features/pmProgress/context/PmProgressContext.js.map +0 -1
  225. package/dist/commonjs/features/pmProgress/index.js +0 -64
  226. package/dist/commonjs/features/pmProgress/index.js.map +0 -1
  227. package/dist/commonjs/features/pmProgress/model/PmHighlightModel.js +0 -15
  228. package/dist/commonjs/features/pmProgress/model/PmHighlightModel.js.map +0 -1
  229. package/dist/commonjs/features/pmProgress/model/PmInsightsModel.js +0 -22
  230. package/dist/commonjs/features/pmProgress/model/PmInsightsModel.js.map +0 -1
  231. package/dist/commonjs/features/pmProgress/model/PmProgressApi.js +0 -18
  232. package/dist/commonjs/features/pmProgress/model/PmProgressApi.js.map +0 -1
  233. package/dist/commonjs/features/pmProgress/model/PmProgressModel.js +0 -43
  234. package/dist/commonjs/features/pmProgress/model/PmProgressModel.js.map +0 -1
  235. package/dist/commonjs/features/pmProgress/model/PmRecommendationsModel.js +0 -47
  236. package/dist/commonjs/features/pmProgress/model/PmRecommendationsModel.js.map +0 -1
  237. package/dist/commonjs/features/pmProgress/model/PmSolvingFlowModel.js +0 -104
  238. package/dist/commonjs/features/pmProgress/model/PmSolvingFlowModel.js.map +0 -1
  239. package/dist/commonjs/features/pmProgress/model/PmTreeModel.js +0 -176
  240. package/dist/commonjs/features/pmProgress/model/PmTreeModel.js.map +0 -1
  241. package/dist/commonjs/features/pmProgress/shared/TreeNormalizer.js +0 -52
  242. package/dist/commonjs/features/pmProgress/shared/TreeNormalizer.js.map +0 -1
  243. package/dist/commonjs/features/pmProgress/shared/pmProgress.constants.js +0 -65
  244. package/dist/commonjs/features/pmProgress/shared/pmProgress.constants.js.map +0 -1
  245. package/dist/commonjs/features/pmProgress/shared/pmProgress.helpers.js +0 -234
  246. package/dist/commonjs/features/pmProgress/shared/pmProgress.helpers.js.map +0 -1
  247. package/dist/commonjs/features/pmProgress/shared/pmProgress.types.js +0 -12
  248. package/dist/commonjs/features/pmProgress/shared/pmProgress.types.js.map +0 -1
  249. package/dist/commonjs/shared/icons/MenuIcon.js +0 -30
  250. package/dist/commonjs/shared/icons/MenuIcon.js.map +0 -1
  251. package/dist/commonjs/shared/icons/PentagonIcon.js +0 -29
  252. package/dist/commonjs/shared/icons/PentagonIcon.js.map +0 -1
  253. package/dist/commonjs/shared/icons/SketchArrowRight.js +0 -33
  254. package/dist/commonjs/shared/icons/SketchArrowRight.js.map +0 -1
  255. package/dist/commonjs/shared/icons/SliceDiamondIcon.js +0 -29
  256. package/dist/commonjs/shared/icons/SliceDiamondIcon.js.map +0 -1
  257. package/dist/commonjs/shared/icons/StarIcon.js +0 -32
  258. package/dist/commonjs/shared/icons/StarIcon.js.map +0 -1
  259. package/dist/commonjs/shared/icons/TimerIcon.js +0 -35
  260. package/dist/commonjs/shared/icons/TimerIcon.js.map +0 -1
  261. package/dist/module/features/pmProgress/PmProgress.js +0 -36
  262. package/dist/module/features/pmProgress/PmProgress.js.map +0 -1
  263. package/dist/module/features/pmProgress/components/chart/chart.helpers.js +0 -17
  264. package/dist/module/features/pmProgress/components/chart/chart.helpers.js.map +0 -1
  265. package/dist/module/features/pmProgress/components/chart/chart.types.js +0 -2
  266. package/dist/module/features/pmProgress/components/chart/chart.types.js.map +0 -1
  267. package/dist/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.js +0 -38
  268. package/dist/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.js.map +0 -1
  269. package/dist/module/features/pmProgress/components/chart/components/SlicesClipPaths.js +0 -20
  270. package/dist/module/features/pmProgress/components/chart/components/SlicesClipPaths.js.map +0 -1
  271. package/dist/module/features/pmProgress/components/chart/components/SlicesPaths.js +0 -85
  272. package/dist/module/features/pmProgress/components/chart/components/SlicesPaths.js.map +0 -1
  273. package/dist/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.js +0 -32
  274. package/dist/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.js.map +0 -1
  275. package/dist/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js +0 -15
  276. package/dist/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.js.map +0 -1
  277. package/dist/module/features/pmProgress/components/chart/components/layers/SliceFillColor.js +0 -49
  278. package/dist/module/features/pmProgress/components/chart/components/layers/SliceFillColor.js.map +0 -1
  279. package/dist/module/features/pmProgress/components/chart/model/ArcPatternGenerator.js +0 -44
  280. package/dist/module/features/pmProgress/components/chart/model/ArcPatternGenerator.js.map +0 -1
  281. package/dist/module/features/pmProgress/components/chart/model/PieChartManager.js +0 -18
  282. package/dist/module/features/pmProgress/components/chart/model/PieChartManager.js.map +0 -1
  283. package/dist/module/features/pmProgress/components/chart/model/SliceShapeGenerator.js +0 -74
  284. package/dist/module/features/pmProgress/components/chart/model/SliceShapeGenerator.js.map +0 -1
  285. package/dist/module/features/pmProgress/components/content/PmContent.js +0 -44
  286. package/dist/module/features/pmProgress/components/content/PmContent.js.map +0 -1
  287. package/dist/module/features/pmProgress/components/header/NextUp.js +0 -121
  288. package/dist/module/features/pmProgress/components/header/NextUp.js.map +0 -1
  289. package/dist/module/features/pmProgress/components/header/PmProgressHeader.js +0 -126
  290. package/dist/module/features/pmProgress/components/header/PmProgressHeader.js.map +0 -1
  291. package/dist/module/features/pmProgress/components/header/StartButton.js +0 -119
  292. package/dist/module/features/pmProgress/components/header/StartButton.js.map +0 -1
  293. package/dist/module/features/pmProgress/components/insights/PmInsights.js +0 -63
  294. package/dist/module/features/pmProgress/components/insights/PmInsights.js.map +0 -1
  295. package/dist/module/features/pmProgress/components/insights/PmTimeframeStats.js +0 -94
  296. package/dist/module/features/pmProgress/components/insights/PmTimeframeStats.js.map +0 -1
  297. package/dist/module/features/pmProgress/components/insights/StatsCard.js +0 -66
  298. package/dist/module/features/pmProgress/components/insights/StatsCard.js.map +0 -1
  299. package/dist/module/features/pmProgress/components/list/Fluency.js +0 -76
  300. package/dist/module/features/pmProgress/components/list/Fluency.js.map +0 -1
  301. package/dist/module/features/pmProgress/components/list/ListCard.js +0 -200
  302. package/dist/module/features/pmProgress/components/list/ListCard.js.map +0 -1
  303. package/dist/module/features/pmProgress/components/list/ListItem.js +0 -132
  304. package/dist/module/features/pmProgress/components/list/ListItem.js.map +0 -1
  305. package/dist/module/features/pmProgress/components/list/PmDomainList.js +0 -90
  306. package/dist/module/features/pmProgress/components/list/PmDomainList.js.map +0 -1
  307. package/dist/module/features/pmProgress/components/locked/PmStatusOverlay.js +0 -95
  308. package/dist/module/features/pmProgress/components/locked/PmStatusOverlay.js.map +0 -1
  309. package/dist/module/features/pmProgress/components/recs/PmTeacherRecs.js +0 -128
  310. package/dist/module/features/pmProgress/components/recs/PmTeacherRecs.js.map +0 -1
  311. package/dist/module/features/pmProgress/components/standard/StandardTag.js +0 -197
  312. package/dist/module/features/pmProgress/components/standard/StandardTag.js.map +0 -1
  313. package/dist/module/features/pmProgress/context/PmProgressContext.js +0 -13
  314. package/dist/module/features/pmProgress/context/PmProgressContext.js.map +0 -1
  315. package/dist/module/features/pmProgress/index.js +0 -9
  316. package/dist/module/features/pmProgress/index.js.map +0 -1
  317. package/dist/module/features/pmProgress/model/PmHighlightModel.js +0 -10
  318. package/dist/module/features/pmProgress/model/PmHighlightModel.js.map +0 -1
  319. package/dist/module/features/pmProgress/model/PmInsightsModel.js +0 -17
  320. package/dist/module/features/pmProgress/model/PmInsightsModel.js.map +0 -1
  321. package/dist/module/features/pmProgress/model/PmProgressApi.js +0 -13
  322. package/dist/module/features/pmProgress/model/PmProgressApi.js.map +0 -1
  323. package/dist/module/features/pmProgress/model/PmProgressModel.js +0 -38
  324. package/dist/module/features/pmProgress/model/PmProgressModel.js.map +0 -1
  325. package/dist/module/features/pmProgress/model/PmRecommendationsModel.js +0 -42
  326. package/dist/module/features/pmProgress/model/PmRecommendationsModel.js.map +0 -1
  327. package/dist/module/features/pmProgress/model/PmSolvingFlowModel.js +0 -99
  328. package/dist/module/features/pmProgress/model/PmSolvingFlowModel.js.map +0 -1
  329. package/dist/module/features/pmProgress/model/PmTreeModel.js +0 -171
  330. package/dist/module/features/pmProgress/model/PmTreeModel.js.map +0 -1
  331. package/dist/module/features/pmProgress/shared/TreeNormalizer.js +0 -47
  332. package/dist/module/features/pmProgress/shared/TreeNormalizer.js.map +0 -1
  333. package/dist/module/features/pmProgress/shared/pmProgress.constants.js +0 -62
  334. package/dist/module/features/pmProgress/shared/pmProgress.constants.js.map +0 -1
  335. package/dist/module/features/pmProgress/shared/pmProgress.helpers.js +0 -214
  336. package/dist/module/features/pmProgress/shared/pmProgress.helpers.js.map +0 -1
  337. package/dist/module/features/pmProgress/shared/pmProgress.types.js +0 -8
  338. package/dist/module/features/pmProgress/shared/pmProgress.types.js.map +0 -1
  339. package/dist/module/shared/icons/MenuIcon.js +0 -22
  340. package/dist/module/shared/icons/MenuIcon.js.map +0 -1
  341. package/dist/module/shared/icons/PentagonIcon.js +0 -21
  342. package/dist/module/shared/icons/PentagonIcon.js.map +0 -1
  343. package/dist/module/shared/icons/SketchArrowRight.js +0 -25
  344. package/dist/module/shared/icons/SketchArrowRight.js.map +0 -1
  345. package/dist/module/shared/icons/SliceDiamondIcon.js +0 -21
  346. package/dist/module/shared/icons/SliceDiamondIcon.js.map +0 -1
  347. package/dist/module/shared/icons/StarIcon.js +0 -24
  348. package/dist/module/shared/icons/StarIcon.js.map +0 -1
  349. package/dist/module/shared/icons/TimerIcon.js +0 -27
  350. package/dist/module/shared/icons/TimerIcon.js.map +0 -1
  351. package/dist/typescript/commonjs/features/pmProgress/PmProgress.d.ts +0 -9
  352. package/dist/typescript/commonjs/features/pmProgress/PmProgress.d.ts.map +0 -1
  353. package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.helpers.d.ts +0 -4
  354. package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.helpers.d.ts.map +0 -1
  355. package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.types.d.ts +0 -36
  356. package/dist/typescript/commonjs/features/pmProgress/components/chart/chart.types.d.ts.map +0 -1
  357. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts +0 -9
  358. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts.map +0 -1
  359. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts +0 -10
  360. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts.map +0 -1
  361. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesPaths.d.ts +0 -11
  362. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/SlicesPaths.d.ts.map +0 -1
  363. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts +0 -12
  364. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts.map +0 -1
  365. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts +0 -8
  366. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts.map +0 -1
  367. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts +0 -14
  368. package/dist/typescript/commonjs/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts.map +0 -1
  369. package/dist/typescript/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts +0 -12
  370. package/dist/typescript/commonjs/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts.map +0 -1
  371. package/dist/typescript/commonjs/features/pmProgress/components/chart/model/PieChartManager.d.ts +0 -14
  372. package/dist/typescript/commonjs/features/pmProgress/components/chart/model/PieChartManager.d.ts.map +0 -1
  373. package/dist/typescript/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts +0 -17
  374. package/dist/typescript/commonjs/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts.map +0 -1
  375. package/dist/typescript/commonjs/features/pmProgress/components/content/PmContent.d.ts +0 -3
  376. package/dist/typescript/commonjs/features/pmProgress/components/content/PmContent.d.ts.map +0 -1
  377. package/dist/typescript/commonjs/features/pmProgress/components/header/NextUp.d.ts +0 -3
  378. package/dist/typescript/commonjs/features/pmProgress/components/header/NextUp.d.ts.map +0 -1
  379. package/dist/typescript/commonjs/features/pmProgress/components/header/PmProgressHeader.d.ts +0 -3
  380. package/dist/typescript/commonjs/features/pmProgress/components/header/PmProgressHeader.d.ts.map +0 -1
  381. package/dist/typescript/commonjs/features/pmProgress/components/header/StartButton.d.ts +0 -11
  382. package/dist/typescript/commonjs/features/pmProgress/components/header/StartButton.d.ts.map +0 -1
  383. package/dist/typescript/commonjs/features/pmProgress/components/insights/PmInsights.d.ts +0 -3
  384. package/dist/typescript/commonjs/features/pmProgress/components/insights/PmInsights.d.ts.map +0 -1
  385. package/dist/typescript/commonjs/features/pmProgress/components/insights/PmTimeframeStats.d.ts +0 -3
  386. package/dist/typescript/commonjs/features/pmProgress/components/insights/PmTimeframeStats.d.ts.map +0 -1
  387. package/dist/typescript/commonjs/features/pmProgress/components/insights/StatsCard.d.ts +0 -12
  388. package/dist/typescript/commonjs/features/pmProgress/components/insights/StatsCard.d.ts.map +0 -1
  389. package/dist/typescript/commonjs/features/pmProgress/components/list/Fluency.d.ts +0 -8
  390. package/dist/typescript/commonjs/features/pmProgress/components/list/Fluency.d.ts.map +0 -1
  391. package/dist/typescript/commonjs/features/pmProgress/components/list/ListCard.d.ts +0 -31
  392. package/dist/typescript/commonjs/features/pmProgress/components/list/ListCard.d.ts.map +0 -1
  393. package/dist/typescript/commonjs/features/pmProgress/components/list/ListItem.d.ts +0 -12
  394. package/dist/typescript/commonjs/features/pmProgress/components/list/ListItem.d.ts.map +0 -1
  395. package/dist/typescript/commonjs/features/pmProgress/components/list/PmDomainList.d.ts +0 -3
  396. package/dist/typescript/commonjs/features/pmProgress/components/list/PmDomainList.d.ts.map +0 -1
  397. package/dist/typescript/commonjs/features/pmProgress/components/locked/PmStatusOverlay.d.ts +0 -8
  398. package/dist/typescript/commonjs/features/pmProgress/components/locked/PmStatusOverlay.d.ts.map +0 -1
  399. package/dist/typescript/commonjs/features/pmProgress/components/recs/PmTeacherRecs.d.ts +0 -3
  400. package/dist/typescript/commonjs/features/pmProgress/components/recs/PmTeacherRecs.d.ts.map +0 -1
  401. package/dist/typescript/commonjs/features/pmProgress/components/standard/StandardTag.d.ts +0 -9
  402. package/dist/typescript/commonjs/features/pmProgress/components/standard/StandardTag.d.ts.map +0 -1
  403. package/dist/typescript/commonjs/features/pmProgress/context/PmProgressContext.d.ts +0 -15
  404. package/dist/typescript/commonjs/features/pmProgress/context/PmProgressContext.d.ts.map +0 -1
  405. package/dist/typescript/commonjs/features/pmProgress/index.d.ts +0 -7
  406. package/dist/typescript/commonjs/features/pmProgress/index.d.ts.map +0 -1
  407. package/dist/typescript/commonjs/features/pmProgress/model/PmHighlightModel.d.ts +0 -7
  408. package/dist/typescript/commonjs/features/pmProgress/model/PmHighlightModel.d.ts.map +0 -1
  409. package/dist/typescript/commonjs/features/pmProgress/model/PmInsightsModel.d.ts +0 -14
  410. package/dist/typescript/commonjs/features/pmProgress/model/PmInsightsModel.d.ts.map +0 -1
  411. package/dist/typescript/commonjs/features/pmProgress/model/PmProgressApi.d.ts +0 -17
  412. package/dist/typescript/commonjs/features/pmProgress/model/PmProgressApi.d.ts.map +0 -1
  413. package/dist/typescript/commonjs/features/pmProgress/model/PmProgressModel.d.ts +0 -23
  414. package/dist/typescript/commonjs/features/pmProgress/model/PmProgressModel.d.ts.map +0 -1
  415. package/dist/typescript/commonjs/features/pmProgress/model/PmRecommendationsModel.d.ts +0 -102
  416. package/dist/typescript/commonjs/features/pmProgress/model/PmRecommendationsModel.d.ts.map +0 -1
  417. package/dist/typescript/commonjs/features/pmProgress/model/PmSolvingFlowModel.d.ts +0 -22
  418. package/dist/typescript/commonjs/features/pmProgress/model/PmSolvingFlowModel.d.ts.map +0 -1
  419. package/dist/typescript/commonjs/features/pmProgress/model/PmTreeModel.d.ts +0 -25
  420. package/dist/typescript/commonjs/features/pmProgress/model/PmTreeModel.d.ts.map +0 -1
  421. package/dist/typescript/commonjs/features/pmProgress/shared/TreeNormalizer.d.ts +0 -17
  422. package/dist/typescript/commonjs/features/pmProgress/shared/TreeNormalizer.d.ts.map +0 -1
  423. package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.constants.d.ts +0 -49
  424. package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.constants.d.ts.map +0 -1
  425. package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.helpers.d.ts +0 -73
  426. package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.helpers.d.ts.map +0 -1
  427. package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.types.d.ts +0 -193
  428. package/dist/typescript/commonjs/features/pmProgress/shared/pmProgress.types.d.ts.map +0 -1
  429. package/dist/typescript/commonjs/shared/icons/MenuIcon.d.ts +0 -4
  430. package/dist/typescript/commonjs/shared/icons/MenuIcon.d.ts.map +0 -1
  431. package/dist/typescript/commonjs/shared/icons/PentagonIcon.d.ts +0 -4
  432. package/dist/typescript/commonjs/shared/icons/PentagonIcon.d.ts.map +0 -1
  433. package/dist/typescript/commonjs/shared/icons/SketchArrowRight.d.ts +0 -4
  434. package/dist/typescript/commonjs/shared/icons/SketchArrowRight.d.ts.map +0 -1
  435. package/dist/typescript/commonjs/shared/icons/SliceDiamondIcon.d.ts +0 -4
  436. package/dist/typescript/commonjs/shared/icons/SliceDiamondIcon.d.ts.map +0 -1
  437. package/dist/typescript/commonjs/shared/icons/StarIcon.d.ts +0 -4
  438. package/dist/typescript/commonjs/shared/icons/StarIcon.d.ts.map +0 -1
  439. package/dist/typescript/commonjs/shared/icons/TimerIcon.d.ts +0 -4
  440. package/dist/typescript/commonjs/shared/icons/TimerIcon.d.ts.map +0 -1
  441. package/dist/typescript/module/features/pmProgress/PmProgress.d.ts +0 -9
  442. package/dist/typescript/module/features/pmProgress/PmProgress.d.ts.map +0 -1
  443. package/dist/typescript/module/features/pmProgress/components/chart/chart.helpers.d.ts +0 -4
  444. package/dist/typescript/module/features/pmProgress/components/chart/chart.helpers.d.ts.map +0 -1
  445. package/dist/typescript/module/features/pmProgress/components/chart/chart.types.d.ts +0 -36
  446. package/dist/typescript/module/features/pmProgress/components/chart/chart.types.d.ts.map +0 -1
  447. package/dist/typescript/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts +0 -9
  448. package/dist/typescript/module/features/pmProgress/components/chart/components/PracticeProgressPieChart.d.ts.map +0 -1
  449. package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts +0 -10
  450. package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesClipPaths.d.ts.map +0 -1
  451. package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesPaths.d.ts +0 -11
  452. package/dist/typescript/module/features/pmProgress/components/chart/components/SlicesPaths.d.ts.map +0 -1
  453. package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts +0 -12
  454. package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceArcPattern.d.ts.map +0 -1
  455. package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts +0 -8
  456. package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.d.ts.map +0 -1
  457. package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts +0 -14
  458. package/dist/typescript/module/features/pmProgress/components/chart/components/layers/SliceFillColor.d.ts.map +0 -1
  459. package/dist/typescript/module/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts +0 -12
  460. package/dist/typescript/module/features/pmProgress/components/chart/model/ArcPatternGenerator.d.ts.map +0 -1
  461. package/dist/typescript/module/features/pmProgress/components/chart/model/PieChartManager.d.ts +0 -14
  462. package/dist/typescript/module/features/pmProgress/components/chart/model/PieChartManager.d.ts.map +0 -1
  463. package/dist/typescript/module/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts +0 -17
  464. package/dist/typescript/module/features/pmProgress/components/chart/model/SliceShapeGenerator.d.ts.map +0 -1
  465. package/dist/typescript/module/features/pmProgress/components/content/PmContent.d.ts +0 -3
  466. package/dist/typescript/module/features/pmProgress/components/content/PmContent.d.ts.map +0 -1
  467. package/dist/typescript/module/features/pmProgress/components/header/NextUp.d.ts +0 -3
  468. package/dist/typescript/module/features/pmProgress/components/header/NextUp.d.ts.map +0 -1
  469. package/dist/typescript/module/features/pmProgress/components/header/PmProgressHeader.d.ts +0 -3
  470. package/dist/typescript/module/features/pmProgress/components/header/PmProgressHeader.d.ts.map +0 -1
  471. package/dist/typescript/module/features/pmProgress/components/header/StartButton.d.ts +0 -11
  472. package/dist/typescript/module/features/pmProgress/components/header/StartButton.d.ts.map +0 -1
  473. package/dist/typescript/module/features/pmProgress/components/insights/PmInsights.d.ts +0 -3
  474. package/dist/typescript/module/features/pmProgress/components/insights/PmInsights.d.ts.map +0 -1
  475. package/dist/typescript/module/features/pmProgress/components/insights/PmTimeframeStats.d.ts +0 -3
  476. package/dist/typescript/module/features/pmProgress/components/insights/PmTimeframeStats.d.ts.map +0 -1
  477. package/dist/typescript/module/features/pmProgress/components/insights/StatsCard.d.ts +0 -12
  478. package/dist/typescript/module/features/pmProgress/components/insights/StatsCard.d.ts.map +0 -1
  479. package/dist/typescript/module/features/pmProgress/components/list/Fluency.d.ts +0 -8
  480. package/dist/typescript/module/features/pmProgress/components/list/Fluency.d.ts.map +0 -1
  481. package/dist/typescript/module/features/pmProgress/components/list/ListCard.d.ts +0 -31
  482. package/dist/typescript/module/features/pmProgress/components/list/ListCard.d.ts.map +0 -1
  483. package/dist/typescript/module/features/pmProgress/components/list/ListItem.d.ts +0 -12
  484. package/dist/typescript/module/features/pmProgress/components/list/ListItem.d.ts.map +0 -1
  485. package/dist/typescript/module/features/pmProgress/components/list/PmDomainList.d.ts +0 -3
  486. package/dist/typescript/module/features/pmProgress/components/list/PmDomainList.d.ts.map +0 -1
  487. package/dist/typescript/module/features/pmProgress/components/locked/PmStatusOverlay.d.ts +0 -8
  488. package/dist/typescript/module/features/pmProgress/components/locked/PmStatusOverlay.d.ts.map +0 -1
  489. package/dist/typescript/module/features/pmProgress/components/recs/PmTeacherRecs.d.ts +0 -3
  490. package/dist/typescript/module/features/pmProgress/components/recs/PmTeacherRecs.d.ts.map +0 -1
  491. package/dist/typescript/module/features/pmProgress/components/standard/StandardTag.d.ts +0 -9
  492. package/dist/typescript/module/features/pmProgress/components/standard/StandardTag.d.ts.map +0 -1
  493. package/dist/typescript/module/features/pmProgress/context/PmProgressContext.d.ts +0 -15
  494. package/dist/typescript/module/features/pmProgress/context/PmProgressContext.d.ts.map +0 -1
  495. package/dist/typescript/module/features/pmProgress/index.d.ts +0 -7
  496. package/dist/typescript/module/features/pmProgress/index.d.ts.map +0 -1
  497. package/dist/typescript/module/features/pmProgress/model/PmHighlightModel.d.ts +0 -7
  498. package/dist/typescript/module/features/pmProgress/model/PmHighlightModel.d.ts.map +0 -1
  499. package/dist/typescript/module/features/pmProgress/model/PmInsightsModel.d.ts +0 -14
  500. package/dist/typescript/module/features/pmProgress/model/PmInsightsModel.d.ts.map +0 -1
  501. package/dist/typescript/module/features/pmProgress/model/PmProgressApi.d.ts +0 -17
  502. package/dist/typescript/module/features/pmProgress/model/PmProgressApi.d.ts.map +0 -1
  503. package/dist/typescript/module/features/pmProgress/model/PmProgressModel.d.ts +0 -23
  504. package/dist/typescript/module/features/pmProgress/model/PmProgressModel.d.ts.map +0 -1
  505. package/dist/typescript/module/features/pmProgress/model/PmRecommendationsModel.d.ts +0 -102
  506. package/dist/typescript/module/features/pmProgress/model/PmRecommendationsModel.d.ts.map +0 -1
  507. package/dist/typescript/module/features/pmProgress/model/PmSolvingFlowModel.d.ts +0 -22
  508. package/dist/typescript/module/features/pmProgress/model/PmSolvingFlowModel.d.ts.map +0 -1
  509. package/dist/typescript/module/features/pmProgress/model/PmTreeModel.d.ts +0 -25
  510. package/dist/typescript/module/features/pmProgress/model/PmTreeModel.d.ts.map +0 -1
  511. package/dist/typescript/module/features/pmProgress/shared/TreeNormalizer.d.ts +0 -17
  512. package/dist/typescript/module/features/pmProgress/shared/TreeNormalizer.d.ts.map +0 -1
  513. package/dist/typescript/module/features/pmProgress/shared/pmProgress.constants.d.ts +0 -49
  514. package/dist/typescript/module/features/pmProgress/shared/pmProgress.constants.d.ts.map +0 -1
  515. package/dist/typescript/module/features/pmProgress/shared/pmProgress.helpers.d.ts +0 -73
  516. package/dist/typescript/module/features/pmProgress/shared/pmProgress.helpers.d.ts.map +0 -1
  517. package/dist/typescript/module/features/pmProgress/shared/pmProgress.types.d.ts +0 -193
  518. package/dist/typescript/module/features/pmProgress/shared/pmProgress.types.d.ts.map +0 -1
  519. package/dist/typescript/module/shared/icons/MenuIcon.d.ts +0 -4
  520. package/dist/typescript/module/shared/icons/MenuIcon.d.ts.map +0 -1
  521. package/dist/typescript/module/shared/icons/PentagonIcon.d.ts +0 -4
  522. package/dist/typescript/module/shared/icons/PentagonIcon.d.ts.map +0 -1
  523. package/dist/typescript/module/shared/icons/SketchArrowRight.d.ts +0 -4
  524. package/dist/typescript/module/shared/icons/SketchArrowRight.d.ts.map +0 -1
  525. package/dist/typescript/module/shared/icons/SliceDiamondIcon.d.ts +0 -4
  526. package/dist/typescript/module/shared/icons/SliceDiamondIcon.d.ts.map +0 -1
  527. package/dist/typescript/module/shared/icons/StarIcon.d.ts +0 -4
  528. package/dist/typescript/module/shared/icons/StarIcon.d.ts.map +0 -1
  529. package/dist/typescript/module/shared/icons/TimerIcon.d.ts +0 -4
  530. package/dist/typescript/module/shared/icons/TimerIcon.d.ts.map +0 -1
  531. package/src/features/pmProgress/PmProgress.tsx +0 -30
  532. package/src/features/pmProgress/__tests__/.keep +0 -0
  533. package/src/features/pmProgress/components/chart/chart.helpers.ts +0 -16
  534. package/src/features/pmProgress/components/chart/chart.types.ts +0 -37
  535. package/src/features/pmProgress/components/chart/components/PracticeProgressPieChart.tsx +0 -32
  536. package/src/features/pmProgress/components/chart/components/SlicesClipPaths.tsx +0 -22
  537. package/src/features/pmProgress/components/chart/components/SlicesPaths.tsx +0 -90
  538. package/src/features/pmProgress/components/chart/components/layers/SliceArcPattern.tsx +0 -44
  539. package/src/features/pmProgress/components/chart/components/layers/SliceBackgroundColor.tsx +0 -11
  540. package/src/features/pmProgress/components/chart/components/layers/SliceFillColor.tsx +0 -60
  541. package/src/features/pmProgress/components/chart/model/ArcPatternGenerator.ts +0 -48
  542. package/src/features/pmProgress/components/chart/model/PieChartManager.ts +0 -17
  543. package/src/features/pmProgress/components/chart/model/SliceShapeGenerator.ts +0 -90
  544. package/src/features/pmProgress/components/content/PmContent.tsx +0 -44
  545. package/src/features/pmProgress/components/header/NextUp.tsx +0 -109
  546. package/src/features/pmProgress/components/header/PmProgressHeader.tsx +0 -135
  547. package/src/features/pmProgress/components/header/StartButton.tsx +0 -160
  548. package/src/features/pmProgress/components/insights/PmInsights.tsx +0 -65
  549. package/src/features/pmProgress/components/insights/PmTimeframeStats.tsx +0 -88
  550. package/src/features/pmProgress/components/insights/StatsCard.tsx +0 -54
  551. package/src/features/pmProgress/components/list/Fluency.tsx +0 -72
  552. package/src/features/pmProgress/components/list/ListCard.tsx +0 -231
  553. package/src/features/pmProgress/components/list/ListItem.tsx +0 -164
  554. package/src/features/pmProgress/components/list/PmDomainList.tsx +0 -76
  555. package/src/features/pmProgress/components/locked/PmStatusOverlay.tsx +0 -101
  556. package/src/features/pmProgress/components/recs/PmTeacherRecs.tsx +0 -127
  557. package/src/features/pmProgress/components/standard/StandardTag.tsx +0 -181
  558. package/src/features/pmProgress/context/PmProgressContext.tsx +0 -26
  559. package/src/features/pmProgress/index.ts +0 -6
  560. package/src/features/pmProgress/model/PmHighlightModel.ts +0 -11
  561. package/src/features/pmProgress/model/PmInsightsModel.ts +0 -23
  562. package/src/features/pmProgress/model/PmProgressApi.ts +0 -34
  563. package/src/features/pmProgress/model/PmProgressModel.ts +0 -48
  564. package/src/features/pmProgress/model/PmRecommendationsModel.ts +0 -47
  565. package/src/features/pmProgress/model/PmSolvingFlowModel.ts +0 -140
  566. package/src/features/pmProgress/model/PmTreeModel.ts +0 -171
  567. package/src/features/pmProgress/shared/TreeNormalizer.ts +0 -64
  568. package/src/features/pmProgress/shared/pmProgress.constants.ts +0 -100
  569. package/src/features/pmProgress/shared/pmProgress.helpers.ts +0 -307
  570. package/src/features/pmProgress/shared/pmProgress.types.ts +0 -217
  571. package/src/shared/icons/MenuIcon.tsx +0 -15
  572. package/src/shared/icons/PentagonIcon.tsx +0 -14
  573. package/src/shared/icons/SketchArrowRight.tsx +0 -18
  574. package/src/shared/icons/SliceDiamondIcon.tsx +0 -14
  575. package/src/shared/icons/StarIcon.tsx +0 -17
  576. package/src/shared/icons/TimerIcon.tsx +0 -21
@@ -4,17 +4,22 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.VoiceRecordButton = void 0;
7
- var _react = _interopRequireWildcard(require("react"));
7
+ var _react = _interopRequireDefault(require("react"));
8
8
  var _reactNativeUi = require("@magmamath/react-native-ui");
9
9
  var _reactNative = require("react-native");
10
10
  var _effectorReact = require("effector-react");
11
11
  var _constants = require("../../constants.js");
12
12
  var _index = require("../../../../shared/translation/index.js");
13
+ var _types = require("../../types.js");
13
14
  var _jsxRuntime = require("react/jsx-runtime");
14
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
15
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ const defaultButtonStyles = {
17
+ button: {
18
+ width: 50,
19
+ height: 50
20
+ }
21
+ };
16
22
  const VoiceRecordButton = ({
17
- style,
18
23
  model
19
24
  }) => {
20
25
  const t = (0, _index.useText)();
@@ -22,31 +27,30 @@ const VoiceRecordButton = ({
22
27
  const voiceRecordState = (0, _effectorReact.useUnit)(model.recorderModel.$voiceRecordState);
23
28
  const isButtonDisabled = (0, _effectorReact.useUnit)(model.$isButtonDisabled);
24
29
  const isInitializing = (0, _effectorReact.useUnit)(model.initializeRecording.pending);
25
- const combinedStyles = (0, _react.useMemo)(() => {
26
- return {
27
- button: [{
28
- width: 50,
29
- height: 50
30
- }, style?.button],
31
- container: [style?.container],
32
- text: [style?.text]
33
- };
34
- }, [style]);
30
+ const isRecording = voiceRecordState === _constants.VoiceRecorderState.RECORDING;
31
+ const isIdle = voiceRecordState === _constants.VoiceRecorderState.IDLE;
32
+ const hasInputs = availableInputs.length > 0;
35
33
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
36
34
  onPressIn: e => {
37
- if (availableInputs.length) return;
35
+ if (hasInputs) return;
38
36
  e.preventDefault();
39
37
  model.notification.warning(t('voice.noMicrophoneFound'));
40
38
  },
41
- pointerEvents: !availableInputs.length || isInitializing ? 'box-only' : 'auto',
42
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Button, {
43
- disabled: isButtonDisabled || !availableInputs.length,
39
+ pointerEvents: !hasInputs || isInitializing ? 'box-only' : 'auto',
40
+ style: isButtonDisabled ? styles.disabledCursor : undefined,
41
+ children: model.recordButtonVariant === _types.RecordButtonVariant.ADVANCED ? /*#__PURE__*/(0, _jsxRuntime.jsx)(AdvancedButton, {
42
+ isRecording: isRecording,
43
+ isIdle: isIdle,
44
+ disabled: isButtonDisabled,
45
+ onPressIn: () => model.recorderButtonHandler()
46
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Button, {
47
+ disabled: isButtonDisabled,
44
48
  onPressIn: () => model.recorderButtonHandler(),
45
- style: combinedStyles,
49
+ style: defaultButtonStyles,
46
50
  size: _reactNativeUi.ButtonSize.LARGE,
47
51
  variant: _reactNativeUi.ButtonVariant.SECONDARY,
48
52
  colorScheme: _reactNativeUi.ButtonColor.WHITE,
49
- icon: voiceRecordState === _constants.VoiceRecorderState.RECORDING ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.CheckIcon, {
53
+ icon: isRecording ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.CheckIcon, {
50
54
  size: 25
51
55
  }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.MicrophoneIcon, {
52
56
  style: _reactNativeUi.IS_WEB ? {
@@ -60,4 +64,51 @@ const VoiceRecordButton = ({
60
64
  });
61
65
  };
62
66
  exports.VoiceRecordButton = VoiceRecordButton;
67
+ const AdvancedButton = ({
68
+ isRecording,
69
+ isIdle,
70
+ disabled,
71
+ onPressIn
72
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
73
+ style: [styles.advancedButtonContainer, _reactNativeUi.IS_WEB && disabled && styles.disabledCursor],
74
+ onPressIn: onPressIn,
75
+ disabled: disabled,
76
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
77
+ style: [styles.advancedIconContainer, !isIdle && {
78
+ borderRadius: 32,
79
+ backgroundColor: _reactNativeUi.COLORS.PRIMARY_BLUE
80
+ }],
81
+ children: isRecording ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.CheckIcon, {
82
+ size: 18,
83
+ color: _reactNativeUi.COLORS.NEUTRAL_1
84
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.MicrophoneIcon, {
85
+ style: {
86
+ width: 14,
87
+ height: 19
88
+ },
89
+ color: disabled ? _reactNativeUi.COLORS.NEUTRAL_5 : isIdle ? _reactNativeUi.COLORS.NEUTRAL_9 : _reactNativeUi.COLORS.NEUTRAL_1
90
+ })
91
+ })
92
+ });
93
+ const styles = _reactNative.StyleSheet.create({
94
+ advancedButtonContainer: {
95
+ width: 52,
96
+ height: 52,
97
+ backgroundColor: 'white',
98
+ alignItems: 'center',
99
+ justifyContent: 'center',
100
+ borderRadius: _reactNativeUi.BORDER_RADIUS[300],
101
+ boxShadow: '0 0 1px 0 rgba(51, 51, 51, 0.20), 0 3px 10px 0 rgba(51, 51, 51, 0.16)'
102
+ },
103
+ advancedIconContainer: {
104
+ width: 36,
105
+ height: 36,
106
+ borderRadius: _reactNativeUi.BORDER_RADIUS[300],
107
+ justifyContent: 'center',
108
+ alignItems: 'center'
109
+ },
110
+ disabledCursor: {
111
+ cursor: 'not-allowed'
112
+ }
113
+ });
63
114
  //# sourceMappingURL=VoiceRecordButton.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNativeUi","_reactNative","_effectorReact","_constants","_index","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","VoiceRecordButton","style","model","useText","availableInputs","useUnit","recorderModel","$availableInputs","voiceRecordState","$voiceRecordState","isButtonDisabled","$isButtonDisabled","isInitializing","initializeRecording","pending","combinedStyles","useMemo","button","width","height","container","text","jsx","Pressable","onPressIn","length","preventDefault","notification","warning","pointerEvents","children","Button","disabled","recorderButtonHandler","size","ButtonSize","LARGE","variant","ButtonVariant","SECONDARY","colorScheme","ButtonColor","WHITE","icon","VoiceRecorderState","RECORDING","CheckIcon","MicrophoneIcon","IS_WEB","minWidth","minHeight","exports"],"sourceRoot":"../../../../../../src","sources":["features/voice/recording/components/VoiceRecordButton.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeUi","_reactNative","_effectorReact","_constants","_index","_types","_jsxRuntime","e","__esModule","default","defaultButtonStyles","button","width","height","VoiceRecordButton","model","t","useText","availableInputs","useUnit","recorderModel","$availableInputs","voiceRecordState","$voiceRecordState","isButtonDisabled","$isButtonDisabled","isInitializing","initializeRecording","pending","isRecording","VoiceRecorderState","RECORDING","isIdle","IDLE","hasInputs","length","jsx","Pressable","onPressIn","preventDefault","notification","warning","pointerEvents","style","styles","disabledCursor","undefined","children","recordButtonVariant","RecordButtonVariant","ADVANCED","AdvancedButton","disabled","recorderButtonHandler","Button","size","ButtonSize","LARGE","variant","ButtonVariant","SECONDARY","colorScheme","ButtonColor","WHITE","icon","CheckIcon","MicrophoneIcon","IS_WEB","minWidth","minHeight","exports","advancedButtonContainer","View","advancedIconContainer","borderRadius","backgroundColor","COLORS","PRIMARY_BLUE","color","NEUTRAL_1","NEUTRAL_5","NEUTRAL_9","StyleSheet","create","alignItems","justifyContent","BORDER_RADIUS","boxShadow","cursor"],"sourceRoot":"../../../../../../src","sources":["features/voice/recording/components/VoiceRecordButton.tsx"],"mappings":"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","ignoreList":[]}
@@ -26,8 +26,8 @@ const VoiceRecordDeleteButton = ({
26
26
  exports.VoiceRecordDeleteButton = VoiceRecordDeleteButton;
27
27
  const styles = _reactNative.StyleSheet.create({
28
28
  container: {
29
- width: 36,
30
- height: 36,
29
+ width: 32,
30
+ height: 32,
31
31
  alignItems: 'center',
32
32
  justifyContent: 'center'
33
33
  }
@@ -6,10 +6,10 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.useVoiceRecorderAnimation = void 0;
7
7
  var _reactNativeReanimated = require("react-native-reanimated");
8
8
  var _constants = require("../../constants.js");
9
- const useVoiceRecorderAnimation = isExpanded => {
9
+ const useVoiceRecorderAnimation = (isExpanded, recordButtonVariant) => {
10
10
  const containerAnimatedStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
11
11
  return {
12
- height: (0, _reactNativeReanimated.withTiming)(isExpanded ? _constants.VOICE_RECORDER_CONTAINER_SIZES.EXPANDED : _constants.VOICE_RECORDER_CONTAINER_SIZES.COLLAPSED, {
12
+ height: (0, _reactNativeReanimated.withTiming)(isExpanded ? _constants.VOICE_RECORDER_CONTAINER_SIZES.EXPANDED[recordButtonVariant] : _constants.VOICE_RECORDER_CONTAINER_SIZES.COLLAPSED[recordButtonVariant], {
13
13
  duration: 280
14
14
  })
15
15
  };
@@ -1 +1 @@
1
- {"version":3,"names":["_reactNativeReanimated","require","_constants","useVoiceRecorderAnimation","isExpanded","containerAnimatedStyle","useAnimatedStyle","height","withTiming","VOICE_RECORDER_CONTAINER_SIZES","EXPANDED","COLLAPSED","duration","exports"],"sourceRoot":"../../../../../../src","sources":["features/voice/recording/hooks/useVoiceRecorderAnimation.ts"],"mappings":";;;;;;AAAA,IAAAA,sBAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAD,OAAA;AAEO,MAAME,yBAAyB,GAAIC,UAAmB,IAAK;EAChE,MAAMC,sBAAsB,GAAG,IAAAC,uCAAgB,EAAC,MAAM;IACpD,OAAO;MACLC,MAAM,EAAE,IAAAC,iCAAU,EAChBJ,UAAU,GACNK,yCAA8B,CAACC,QAAQ,GACvCD,yCAA8B,CAACE,SAAS,EAC5C;QACEC,QAAQ,EAAE;MACZ,CACF;IACF,CAAC;EACH,CAAC,EAAE,CAACR,UAAU,CAAC,CAAC;EAEhB,OAAO;IAAEC;EAAuB,CAAC;AACnC,CAAC;AAAAQ,OAAA,CAAAV,yBAAA,GAAAA,yBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_reactNativeReanimated","require","_constants","useVoiceRecorderAnimation","isExpanded","recordButtonVariant","containerAnimatedStyle","useAnimatedStyle","height","withTiming","VOICE_RECORDER_CONTAINER_SIZES","EXPANDED","COLLAPSED","duration","exports"],"sourceRoot":"../../../../../../src","sources":["features/voice/recording/hooks/useVoiceRecorderAnimation.ts"],"mappings":";;;;;;AAAA,IAAAA,sBAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAD,OAAA;AAGO,MAAME,yBAAyB,GAAGA,CACvCC,UAAmB,EACnBC,mBAAwC,KACrC;EACH,MAAMC,sBAAsB,GAAG,IAAAC,uCAAgB,EAAC,MAAM;IACpD,OAAO;MACLC,MAAM,EAAE,IAAAC,iCAAU,EAChBL,UAAU,GACNM,yCAA8B,CAACC,QAAQ,CAACN,mBAAmB,CAAC,GAC5DK,yCAA8B,CAACE,SAAS,CAACP,mBAAmB,CAAC,EACjE;QACEQ,QAAQ,EAAE;MACZ,CACF;IACF,CAAC;EACH,CAAC,EAAE,CAACT,UAAU,CAAC,CAAC;EAEhB,OAAO;IAAEE;EAAuB,CAAC;AACnC,CAAC;AAAAQ,OAAA,CAAAX,yBAAA,GAAAA,yBAAA","ignoreList":[]}
@@ -9,6 +9,7 @@ var _RecorderModel = require("./Recorder.model.js");
9
9
  var _VoiceRecordCollection = require("./VoiceRecordCollection.js");
10
10
  var _UploaderModel = require("./Uploader.model.js");
11
11
  var _constants = require("../../constants.js");
12
+ var _types = require("../../types.js");
12
13
  var _helpers = require("../../helpers.js");
13
14
  var _index = require("../../../../shared/translation/index.js");
14
15
  class VoiceRecordModel {
@@ -16,6 +17,7 @@ class VoiceRecordModel {
16
17
  collection = new _VoiceRecordCollection.VoiceRecordsCollection();
17
18
  uploader = new _UploaderModel.UploaderModel();
18
19
  shouldDiscardRecording = false;
20
+ recordButtonVariant = _types.RecordButtonVariant.DEFAULT;
19
21
  setCurrentKey = (0, _effector.createEvent)();
20
22
  setCurrentRecord = (0, _effector.createEvent)();
21
23
  reset = (0, _effector.createEvent)();
@@ -31,6 +33,9 @@ class VoiceRecordModel {
31
33
  deleteAudioRecord = (0, _effector.createEffect)(async audioFileId => {
32
34
  await this.api.deleteAudioFile(audioFileId);
33
35
  });
36
+ setRecordButtonVariant = (0, _effector.createEffect)(variant => {
37
+ this.recordButtonVariant = variant;
38
+ });
34
39
  deleteCurrentRecording = (0, _effector.attach)({
35
40
  source: this.$currentKey,
36
41
  mapParams: (props, currentKey) => ({
@@ -1 +1 @@
1
- {"version":3,"names":["_effector","require","_RecorderModel","_VoiceRecordCollection","_UploaderModel","_constants","_helpers","_index","VoiceRecordModel","recorderModel","RecorderModel","collection","VoiceRecordsCollection","uploader","UploaderModel","shouldDiscardRecording","setCurrentKey","createEvent","setCurrentRecord","reset","setIsButtonDisabled","startAudioUpload","$currentKey","restore","$currentRecord","$isButtonDisabled","$isExpanded","combine","$voiceRecordState","recorderState","currentRecord","VoiceRecorderState","IDLE","deleteAudioRecord","createEffect","audioFileId","api","deleteAudioFile","deleteCurrentRecording","attach","source","mapParams","props","currentKey","notification","effect","recordingItem","get","id","abortUploadIfInProgress","resetRecordingState","success","t","initializeRecording","hasPermissions","ensureRecordingPermissions","error","inputs","getAvailableInputs","recorder","setAvailableInputs","length","start","catch","name","stop","clearStopResolver","cleanup","getStatus","isRecording","recordingStatusUpdate","status","isFinished","url","getRecordingItem","key","RECORDING","stopAndAwaitResult","console","undefined","controller","abortUpload","delete","handleAudioUpload","uri","durationMs","collectionItem","uploadPromise","upload","fileName","add","resolveRecord","then","data","update","setupUploadHandler","sample","clock","$lastKnownDurationMs","filter","fn","target","setupCurrentRecordSync","recorderButtonHandler","isInitializing","pending","lastKnownDurationMs","VOICE_RECORDER_MIN_DURATION_MS","warn","events","undoRecord","constructor","setApi","exports"],"sourceRoot":"../../../../../../src","sources":["features/voice/recording/model/VoiceRecord.model.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_effector","require","_RecorderModel","_VoiceRecordCollection","_UploaderModel","_constants","_types","_helpers","_index","VoiceRecordModel","recorderModel","RecorderModel","collection","VoiceRecordsCollection","uploader","UploaderModel","shouldDiscardRecording","recordButtonVariant","RecordButtonVariant","DEFAULT","setCurrentKey","createEvent","setCurrentRecord","reset","setIsButtonDisabled","startAudioUpload","$currentKey","restore","$currentRecord","$isButtonDisabled","$isExpanded","combine","$voiceRecordState","recorderState","currentRecord","VoiceRecorderState","IDLE","deleteAudioRecord","createEffect","audioFileId","api","deleteAudioFile","setRecordButtonVariant","variant","deleteCurrentRecording","attach","source","mapParams","props","currentKey","notification","effect","recordingItem","get","id","abortUploadIfInProgress","resetRecordingState","success","t","initializeRecording","hasPermissions","ensureRecordingPermissions","error","inputs","getAvailableInputs","recorder","setAvailableInputs","length","start","catch","name","stop","clearStopResolver","cleanup","getStatus","isRecording","recordingStatusUpdate","status","isFinished","url","getRecordingItem","key","RECORDING","stopAndAwaitResult","console","undefined","controller","abortUpload","delete","handleAudioUpload","uri","durationMs","collectionItem","uploadPromise","upload","fileName","add","resolveRecord","then","data","update","setupUploadHandler","sample","clock","$lastKnownDurationMs","filter","fn","target","setupCurrentRecordSync","recorderButtonHandler","isInitializing","pending","lastKnownDurationMs","VOICE_RECORDER_MIN_DURATION_MS","warn","events","undoRecord","constructor","setApi","exports"],"sourceRoot":"../../../../../../src","sources":["features/voice/recording/model/VoiceRecord.model.ts"],"mappings":"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","ignoreList":[]}
@@ -3,4 +3,10 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
+ exports.RecordButtonVariant = void 0;
7
+ let RecordButtonVariant = exports.RecordButtonVariant = /*#__PURE__*/function (RecordButtonVariant) {
8
+ RecordButtonVariant["DEFAULT"] = "default";
9
+ RecordButtonVariant["ADVANCED"] = "advanced";
10
+ return RecordButtonVariant;
11
+ }({});
6
12
  //# sourceMappingURL=types.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["features/voice/types.ts"],"mappings":"","ignoreList":[]}
1
+ {"version":3,"names":["RecordButtonVariant","exports"],"sourceRoot":"../../../../src","sources":["features/voice/types.ts"],"mappings":";;;;;;IAqFYA,mBAAmB,GAAAC,OAAA,CAAAD,mBAAA,0BAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA","ignoreList":[]}
@@ -136,7 +136,7 @@ Object.keys(_index10).forEach(function (key) {
136
136
  }
137
137
  });
138
138
  });
139
- var _index11 = require("./features/pmProgress/index.js");
139
+ var _index11 = require("./features/openEnded/index.js");
140
140
  Object.keys(_index11).forEach(function (key) {
141
141
  if (key === "default" || key === "__esModule") return;
142
142
  if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
@@ -148,7 +148,7 @@ Object.keys(_index11).forEach(function (key) {
148
148
  }
149
149
  });
150
150
  });
151
- var _index12 = require("./features/openEnded/index.js");
151
+ var _index12 = require("./shared/icons/index.js");
152
152
  Object.keys(_index12).forEach(function (key) {
153
153
  if (key === "default" || key === "__esModule") return;
154
154
  if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
@@ -160,7 +160,7 @@ Object.keys(_index12).forEach(function (key) {
160
160
  }
161
161
  });
162
162
  });
163
- var _index13 = require("./shared/icons/index.js");
163
+ var _index13 = require("./features/voice/index.js");
164
164
  Object.keys(_index13).forEach(function (key) {
165
165
  if (key === "default" || key === "__esModule") return;
166
166
  if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
@@ -172,16 +172,4 @@ Object.keys(_index13).forEach(function (key) {
172
172
  }
173
173
  });
174
174
  });
175
- var _index14 = require("./features/voice/index.js");
176
- Object.keys(_index14).forEach(function (key) {
177
- if (key === "default" || key === "__esModule") return;
178
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
179
- if (key in exports && exports[key] === _index14[key]) return;
180
- Object.defineProperty(exports, key, {
181
- enumerable: true,
182
- get: function () {
183
- return _index14[key];
184
- }
185
- });
186
- });
187
175
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_index","require","_helpers","_index2","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_index3","_index4","_index5","_index6","_index7","_index8","_index9","_index10","_index11","_index12","_index13","_index14"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_index","require","_helpers","_index2","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_index3","_index4","_index5","_index6","_index7","_index8","_index9","_index10","_index11","_index12","_index13"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}
@@ -57,29 +57,5 @@
57
57
  "transcriptions": "Transcriptions",
58
58
  "attempt": "Attempt {{number}}",
59
59
  "transcriptNotAvailable": "Transcript not available"
60
- },
61
- "pmProgress": {
62
- "title": "Practice & Progress",
63
- "startButton": "START",
64
- "nextUp": "Next up!",
65
- "teacherRecs": "Teacher recommendations",
66
- "practiceButton": "PRACTICE",
67
- "stars": "Practice stars",
68
- "time": "Practice time",
69
- "thisWeek": "This week",
70
- "lastWeek": "Last week",
71
- "allTime": "All time",
72
- "fluency": "Fluency",
73
- "andMore": "and {{count}} more...",
74
- "skillsLeft": "skills left",
75
- "skillLeft": "skill left",
76
- "grade": "Grade",
77
- "gradeK": "K",
78
- "gradeOther": "Other",
79
- "loading": "Loading...",
80
- "allLockedTitle": "All grades are locked",
81
- "allLockedSubtitle": "Your teacher has locked all grades.\nAsk them to unlock grades so you can start practising.",
82
- "initErrorTitle": "Something went wrong",
83
- "initErrorSubtitle": "We couldn't load your progress.\nPlease try again later."
84
60
  }
85
61
  }
@@ -57,29 +57,5 @@
57
57
  "transcriptions": "Transkriptionen",
58
58
  "attempt": "Versuch {{number}}",
59
59
  "transcriptNotAvailable": "Transkript nicht verfügbar"
60
- },
61
- "pmProgress": {
62
- "title": "Üben & Fortschritt",
63
- "startButton": "START",
64
- "nextUp": "Als Nächstes dran!",
65
- "teacherRecs": "Empfehlungen der Lehrkraft",
66
- "practiceButton": "ÜBEN",
67
- "stars": "Übungssterne",
68
- "time": "Übungszeit",
69
- "thisWeek": "Diese Woche",
70
- "lastWeek": "Letzte Woche",
71
- "allTime": "Gesamte Zeit",
72
- "fluency": "Sicherheit",
73
- "andMore": "und {{count}} weitere...",
74
- "skillsLeft": "Fähigkeiten übrig",
75
- "skillLeft": "Fähigkeit übrig",
76
- "grade": "Jahrgang",
77
- "gradeK": "Kiga",
78
- "gradeOther": "Sonstige",
79
- "loading": "Wird geladen...",
80
- "allLockedTitle": "Alle Jahrgänge sind gesperrt",
81
- "allLockedSubtitle": "Deine Lehrkraft hat alle Jahrgänge gesperrt.\nBitte sie, Jahrgänge freizuschalten, damit du mit dem Üben beginnen kannst.",
82
- "initErrorTitle": "Etwas ist schiefgelaufen",
83
- "initErrorSubtitle": "Wir konnten deinen Fortschritt nicht laden.\nBitte versuche es später erneut."
84
60
  }
85
61
  }
@@ -57,29 +57,5 @@
57
57
  "transcriptions": "Transcriptions",
58
58
  "attempt": "Attempt {{number}}",
59
59
  "transcriptNotAvailable": "Transcript not available"
60
- },
61
- "pmProgress": {
62
- "title": "Practice & Progress",
63
- "startButton": "START",
64
- "nextUp": "Next up!",
65
- "teacherRecs": "Teacher recommendations",
66
- "practiceButton": "PRACTICE",
67
- "stars": "Practice stars",
68
- "time": "Practice time",
69
- "thisWeek": "This week",
70
- "lastWeek": "Last week",
71
- "allTime": "All time",
72
- "fluency": "Fluency",
73
- "andMore": "and {{count}} more...",
74
- "skillsLeft": "skills left",
75
- "skillLeft": "skill left",
76
- "grade": "Grade",
77
- "gradeK": "K",
78
- "gradeOther": "Other",
79
- "loading": "Loading...",
80
- "allLockedTitle": "All grades are locked",
81
- "allLockedSubtitle": "Your teacher has locked all grades.\nAsk them to unlock grades so you can start practicing.",
82
- "initErrorTitle": "Something went wrong",
83
- "initErrorSubtitle": "We couldn't load your progress.\nPlease try again later."
84
60
  }
85
61
  }
@@ -57,29 +57,5 @@
57
57
  "transcriptions": "Transcriptions",
58
58
  "attempt": "Attempt {{number}}",
59
59
  "transcriptNotAvailable": "Transcript not available"
60
- },
61
- "pmProgress": {
62
- "title": "Practice & Progress",
63
- "startButton": "START",
64
- "nextUp": "Next up!",
65
- "teacherRecs": "Teacher recommendations",
66
- "practiceButton": "PRACTICE",
67
- "stars": "Practice stars",
68
- "time": "Practice time",
69
- "thisWeek": "This week",
70
- "lastWeek": "Last week",
71
- "allTime": "All time",
72
- "fluency": "Fluency",
73
- "andMore": "and {{count}} more...",
74
- "skillsLeft": "skills left",
75
- "skillLeft": "skill left",
76
- "grade": "Year",
77
- "gradeK": "R",
78
- "gradeOther": "Other",
79
- "loading": "Loading...",
80
- "allLockedTitle": "All years are locked",
81
- "allLockedSubtitle": "Your teacher has locked all years.\nAsk them to unlock years so you can start practising.",
82
- "initErrorTitle": "Something went wrong",
83
- "initErrorSubtitle": "We couldn't load your progress.\nPlease try again later."
84
60
  }
85
61
  }
@@ -57,29 +57,5 @@
57
57
  "transcriptions": "Transcriptions",
58
58
  "attempt": "Attempt {{number}}",
59
59
  "transcriptNotAvailable": "Transcript not available"
60
- },
61
- "pmProgress": {
62
- "title": "Practice & Progress",
63
- "startButton": "START",
64
- "nextUp": "Next up!",
65
- "teacherRecs": "Teacher recommendations",
66
- "practiceButton": "PRACTICE",
67
- "stars": "Practice stars",
68
- "time": "Practice time",
69
- "thisWeek": "This week",
70
- "lastWeek": "Last week",
71
- "allTime": "All time",
72
- "fluency": "Fluency",
73
- "andMore": "and {{count}} more...",
74
- "skillsLeft": "skills left",
75
- "skillLeft": "skill left",
76
- "grade": "Year",
77
- "gradeK": "R",
78
- "gradeOther": "Other",
79
- "loading": "Loading...",
80
- "allLockedTitle": "All years are locked",
81
- "allLockedSubtitle": "Your teacher has locked all years.\nAsk them to unlock years so you can start practising.",
82
- "initErrorTitle": "Something went wrong",
83
- "initErrorSubtitle": "We couldn't load your progress.\nPlease try again later."
84
60
  }
85
61
  }
@@ -57,29 +57,5 @@
57
57
  "transcriptions": "Transkriptioner",
58
58
  "attempt": "Försök {{number}}",
59
59
  "transcriptNotAvailable": "Transkript inte tillgängligt"
60
- },
61
- "pmProgress": {
62
- "title": "Träna & Framsteg",
63
- "startButton": "STARTA",
64
- "nextUp": "Nästa!",
65
- "teacherRecs": "Lärarens rekommendationer",
66
- "practiceButton": "TRÄNA",
67
- "stars": "Stjärnor",
68
- "time": "Träningstid",
69
- "thisWeek": "Denna vecka",
70
- "lastWeek": "Förra veckan",
71
- "allTime": "Totalt",
72
- "fluency": "Räknefärdighet",
73
- "andMore": "och {{count}} till...",
74
- "skillsLeft": "Förmågor kvar",
75
- "skillLeft": "Förmåga kvar",
76
- "grade": "Årskurs",
77
- "gradeK": "F",
78
- "gradeOther": "Övrigt",
79
- "loading": "Laddar...",
80
- "allLockedTitle": "Alla årskurser är låsta",
81
- "allLockedSubtitle": "Din lärare har låst alla årskurser.\nBe dem att låsa upp så att du kan börja träna.",
82
- "initErrorTitle": "Något gick fel",
83
- "initErrorSubtitle": "Vi kunde inte ladda dina framsteg.\nFörsök igen senare."
84
60
  }
85
61
  }
@@ -8,7 +8,6 @@ import { useChatModel } from "../../context/ChatBotModelContext.js";
8
8
  import { ColorScheme } from "../../types/style.types.js";
9
9
  import { HintButtonVariant, RequestHintButton } from "./RequestHintButton.js";
10
10
  import { FreeTextInputBlock } from "./FreeText/FreeTextInputBlock.js";
11
- import { SPACING } from '@magmamath/react-native-ui';
12
11
  import { jsx as _jsx } from "react/jsx-runtime";
13
12
  export const ChatInput = ({
14
13
  isHintFeedback,
@@ -61,7 +60,7 @@ const styles = StyleSheet.create({
61
60
  width: INPUT_WIDTH,
62
61
  alignItems: 'flex-end',
63
62
  justifyContent: 'center',
64
- marginLeft: SPACING[150]
63
+ marginLeft: 6
65
64
  }
66
65
  });
67
66
  //# sourceMappingURL=ChatInput.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","useCallback","useMemo","StyleSheet","View","INPUT_WIDTH","useStoreMap","useUnit","useChatModel","ColorScheme","HintButtonVariant","RequestHintButton","FreeTextInputBlock","SPACING","jsx","_jsx","ChatInput","isHintFeedback","hasMessages","colorScheme","Blue","model","alternatives","$alternatives","isTranslated","translation","$isTranslated","isTranslationPending","translateAllMessagesFx","pending","isHelpRequestPending","sendHelpRequestFx","lastMessageOptions","$currentChatData","messages","lastMessage","at","options","option","length","shouldShowNextHintOption","hints","default","optionLabel","translatedText","text","sendMessage","message","translatedMessage","shouldDisableInput","style","styles","container","children","isOpenChatEnabled","onOptionPress","disabled","onPress","label","variant","DEFAULT","create","width","alignItems","justifyContent","marginLeft"],"sourceRoot":"../../../../../../src","sources":["features/chatbot/components/ChatInput/ChatInput.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","useCallback","useMemo","StyleSheet","View","INPUT_WIDTH","useStoreMap","useUnit","useChatModel","ColorScheme","HintButtonVariant","RequestHintButton","FreeTextInputBlock","jsx","_jsx","ChatInput","isHintFeedback","hasMessages","colorScheme","Blue","model","alternatives","$alternatives","isTranslated","translation","$isTranslated","isTranslationPending","translateAllMessagesFx","pending","isHelpRequestPending","sendHelpRequestFx","lastMessageOptions","$currentChatData","messages","lastMessage","at","options","option","length","shouldShowNextHintOption","hints","default","optionLabel","translatedText","text","sendMessage","message","translatedMessage","shouldDisableInput","style","styles","container","children","isOpenChatEnabled","onOptionPress","disabled","onPress","label","variant","DEFAULT","create","width","alignItems","justifyContent","marginLeft"],"sourceRoot":"../../../../../../src","sources":["features/chatbot/components/ChatInput/ChatInput.tsx"],"mappings":"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","ignoreList":[]}
@@ -5,7 +5,6 @@ import { Platform, StyleSheet, Text, View } from 'react-native';
5
5
  import { ColorScheme } from "../../types/style.types.js";
6
6
  import { MessageButtonsBlock } from "./MessageButtonsBlock.js";
7
7
  import { getSpacerSize } from "./helpers.js";
8
- import { FONT_FAMILY } from '@magmamath/react-native-ui';
9
8
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
10
9
  const MessageContentWeb = ({
11
10
  message,
@@ -78,7 +77,7 @@ const styles = StyleSheet.create({
78
77
  flex: 1,
79
78
  fontSize: 20,
80
79
  fontWeight: 400,
81
- fontFamily: FONT_FAMILY.buenosAires,
80
+ fontFamily: 'Buenos Aires',
82
81
  color: '#33334D',
83
82
  width: '100%'
84
83
  },