performanceresultscreens 0.0.1

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 (918) hide show
  1. package/README.md +46 -0
  2. package/dist/chatpers_list.json +962 -0
  3. package/dist/components/Atoms/AssistantImageModal/ImageModal.d.ts +6 -0
  4. package/dist/components/Atoms/AssistantImageModal/ImageModal.js +39 -0
  5. package/dist/components/Atoms/AssistantImageModal/ImageModal.js.map +1 -0
  6. package/dist/components/Atoms/BottomInput/BottomInput.d.ts +2 -0
  7. package/dist/components/Atoms/BottomInput/BottomInput.js +105 -0
  8. package/dist/components/Atoms/BottomInput/BottomInput.js.map +1 -0
  9. package/dist/components/Atoms/BottomInput/BottomInput.stories.d.ts +3 -0
  10. package/dist/components/Atoms/BottomInput/BottomInput.stories.js +41 -0
  11. package/dist/components/Atoms/BottomInput/BottomInput.stories.js.map +1 -0
  12. package/dist/components/Atoms/BottomNavButton/BottomNavButton.d.ts +2 -0
  13. package/dist/components/Atoms/BottomNavButton/BottomNavButton.js +35 -0
  14. package/dist/components/Atoms/BottomNavButton/BottomNavButton.js.map +1 -0
  15. package/dist/components/Atoms/BottomNavButton/BottomNavButton.stories.d.ts +4 -0
  16. package/dist/components/Atoms/BottomNavButton/BottomNavButton.stories.js +49 -0
  17. package/dist/components/Atoms/BottomNavButton/BottomNavButton.stories.js.map +1 -0
  18. package/dist/components/Atoms/BottomNavMenu/BottomNavMenu.d.ts +2 -0
  19. package/dist/components/Atoms/BottomNavMenu/BottomNavMenu.js +23 -0
  20. package/dist/components/Atoms/BottomNavMenu/BottomNavMenu.js.map +1 -0
  21. package/dist/components/Atoms/BottomNavMenu/BottomNavMenu.stories.d.ts +4 -0
  22. package/dist/components/Atoms/BottomNavMenu/BottomNavMenu.stories.js +78 -0
  23. package/dist/components/Atoms/BottomNavMenu/BottomNavMenu.stories.js.map +1 -0
  24. package/dist/components/Atoms/BottomNavMenu/MobileBottomNavMenu.d.ts +2 -0
  25. package/dist/components/Atoms/BottomNavMenu/MobileBottomNavMenu.js +11 -0
  26. package/dist/components/Atoms/BottomNavMenu/MobileBottomNavMenu.js.map +1 -0
  27. package/dist/components/Atoms/BottomNavToast/BottomNavToast.d.ts +2 -0
  28. package/dist/components/Atoms/BottomNavToast/BottomNavToast.js +30 -0
  29. package/dist/components/Atoms/BottomNavToast/BottomNavToast.js.map +1 -0
  30. package/dist/components/Atoms/BottomNavToast/BottomNavToast.stories.d.ts +3 -0
  31. package/dist/components/Atoms/BottomNavToast/BottomNavToast.stories.js +24 -0
  32. package/dist/components/Atoms/BottomNavToast/BottomNavToast.stories.js.map +1 -0
  33. package/dist/components/Atoms/BottomTopicChapter/BottomTopicChapter.d.ts +1 -0
  34. package/dist/components/Atoms/BottomTopicChapter/BottomTopicChapter.js +16 -0
  35. package/dist/components/Atoms/BottomTopicChapter/BottomTopicChapter.js.map +1 -0
  36. package/dist/components/Atoms/BottomTopicChapter/BottomTopicChapter.stories.d.ts +3 -0
  37. package/dist/components/Atoms/BottomTopicChapter/BottomTopicChapter.stories.js +26 -0
  38. package/dist/components/Atoms/BottomTopicChapter/BottomTopicChapter.stories.js.map +1 -0
  39. package/dist/components/Atoms/Button/Button.d.ts +8 -0
  40. package/dist/components/Atoms/Button/Button.js +13 -0
  41. package/dist/components/Atoms/Button/Button.js.map +1 -0
  42. package/dist/components/Atoms/Button/ButtonConstants.d.ts +44 -0
  43. package/dist/components/Atoms/Button/ButtonConstants.js +37 -0
  44. package/dist/components/Atoms/Button/ButtonConstants.js.map +1 -0
  45. package/dist/components/Atoms/Button/Buttons.d.ts +44 -0
  46. package/dist/components/Atoms/Button/Buttons.js +33 -0
  47. package/dist/components/Atoms/Button/Buttons.js.map +1 -0
  48. package/dist/components/Atoms/Checkbox/Checkbox.d.ts +7 -0
  49. package/dist/components/Atoms/Checkbox/Checkbox.js +9 -0
  50. package/dist/components/Atoms/Checkbox/Checkbox.js.map +1 -0
  51. package/dist/components/Atoms/CustmBtn/CustmBtn.d.ts +10 -0
  52. package/dist/components/Atoms/CustmBtn/CustmBtn.js +25 -0
  53. package/dist/components/Atoms/CustmBtn/CustmBtn.js.map +1 -0
  54. package/dist/components/Atoms/CustmBtn/GradientButton.style.d.ts +59 -0
  55. package/dist/components/Atoms/CustmBtn/GradientButton.style.js +68 -0
  56. package/dist/components/Atoms/CustmBtn/GradientButton.style.js.map +1 -0
  57. package/dist/components/Atoms/CustomButton/ButtonTheme.d.ts +2 -0
  58. package/dist/components/Atoms/CustomButton/ButtonTheme.js +62 -0
  59. package/dist/components/Atoms/CustomButton/ButtonTheme.js.map +1 -0
  60. package/dist/components/Atoms/CustomButton/CustomButton.d.ts +2 -0
  61. package/dist/components/Atoms/CustomButton/CustomButton.js +16 -0
  62. package/dist/components/Atoms/CustomButton/CustomButton.js.map +1 -0
  63. package/dist/components/Atoms/CustomButton/CustomButton.stories.d.ts +3 -0
  64. package/dist/components/Atoms/CustomButton/CustomButton.stories.js +20 -0
  65. package/dist/components/Atoms/CustomButton/CustomButton.stories.js.map +1 -0
  66. package/dist/components/Atoms/Dropdown/Dropdown.d.ts +2 -0
  67. package/dist/components/Atoms/Dropdown/Dropdown.js +45 -0
  68. package/dist/components/Atoms/Dropdown/Dropdown.js.map +1 -0
  69. package/dist/components/Atoms/Dropdown/Dropdown.stories.d.ts +3 -0
  70. package/dist/components/Atoms/Dropdown/Dropdown.stories.js +24 -0
  71. package/dist/components/Atoms/Dropdown/Dropdown.stories.js.map +1 -0
  72. package/dist/components/Atoms/ExtractedDiagramView/ExtractedDiagramView.d.ts +7 -0
  73. package/dist/components/Atoms/ExtractedDiagramView/ExtractedDiagramView.js +104 -0
  74. package/dist/components/Atoms/ExtractedDiagramView/ExtractedDiagramView.js.map +1 -0
  75. package/dist/components/Atoms/ExtractedDiagramView/ExtractedDiagramView.stories.d.ts +4 -0
  76. package/dist/components/Atoms/ExtractedDiagramView/ExtractedDiagramView.stories.js +53 -0
  77. package/dist/components/Atoms/ExtractedDiagramView/ExtractedDiagramView.stories.js.map +1 -0
  78. package/dist/components/Atoms/GlobalButton/ButtonUtils.d.ts +89 -0
  79. package/dist/components/Atoms/GlobalButton/ButtonUtils.js +169 -0
  80. package/dist/components/Atoms/GlobalButton/ButtonUtils.js.map +1 -0
  81. package/dist/components/Atoms/GlobalButton/GlobalButton.d.ts +14 -0
  82. package/dist/components/Atoms/GlobalButton/GlobalButton.js +131 -0
  83. package/dist/components/Atoms/GlobalButton/GlobalButton.js.map +1 -0
  84. package/dist/components/Atoms/GlobalButton/GlobalButton.stories.d.ts +7 -0
  85. package/dist/components/Atoms/GlobalButton/GlobalButton.stories.js +51 -0
  86. package/dist/components/Atoms/GlobalButton/GlobalButton.stories.js.map +1 -0
  87. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.d.ts +17 -0
  88. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.js +25 -0
  89. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.js.map +1 -0
  90. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.stories.d.ts +4 -0
  91. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.stories.js +27 -0
  92. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.stories.js.map +1 -0
  93. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.styles.d.ts +118 -0
  94. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.styles.js +127 -0
  95. package/dist/components/Atoms/GlobalButtonV2/GlobalButtonV2.styles.js.map +1 -0
  96. package/dist/components/Atoms/GlobalButtonV2/getButtonStyles.d.ts +15 -0
  97. package/dist/components/Atoms/GlobalButtonV2/getButtonStyles.js +42 -0
  98. package/dist/components/Atoms/GlobalButtonV2/getButtonStyles.js.map +1 -0
  99. package/dist/components/Atoms/Input/Input.d.ts +6 -0
  100. package/dist/components/Atoms/Input/Input.js +9 -0
  101. package/dist/components/Atoms/Input/Input.js.map +1 -0
  102. package/dist/components/Atoms/LatexRenderView/LatexRenderView.d.ts +1 -0
  103. package/dist/components/Atoms/LatexRenderView/LatexRenderView.js +10 -0
  104. package/dist/components/Atoms/LatexRenderView/LatexRenderView.js.map +1 -0
  105. package/dist/components/Atoms/LatexRenderView/LatexRenderView.stories.d.ts +3 -0
  106. package/dist/components/Atoms/LatexRenderView/LatexRenderView.stories.js +21 -0
  107. package/dist/components/Atoms/LatexRenderView/LatexRenderView.stories.js.map +1 -0
  108. package/dist/components/Atoms/MenuNavbar/MenuNavbar.d.ts +2 -0
  109. package/dist/components/Atoms/MenuNavbar/MenuNavbar.js +13 -0
  110. package/dist/components/Atoms/MenuNavbar/MenuNavbar.js.map +1 -0
  111. package/dist/components/Atoms/MenuNavbar/MenuNavbar.stories.d.ts +3 -0
  112. package/dist/components/Atoms/MenuNavbar/MenuNavbar.stories.js +22 -0
  113. package/dist/components/Atoms/MenuNavbar/MenuNavbar.stories.js.map +1 -0
  114. package/dist/components/Atoms/Modal/Modal.d.ts +11 -0
  115. package/dist/components/Atoms/Modal/Modal.js +9 -0
  116. package/dist/components/Atoms/Modal/Modal.js.map +1 -0
  117. package/dist/components/Atoms/Pagination/Pagination.d.ts +2 -0
  118. package/dist/components/Atoms/Pagination/Pagination.js +87 -0
  119. package/dist/components/Atoms/Pagination/Pagination.js.map +1 -0
  120. package/dist/components/Atoms/Pagination/TablePagination.d.ts +2 -0
  121. package/dist/components/Atoms/Pagination/TablePagination.js +21 -0
  122. package/dist/components/Atoms/Pagination/TablePagination.js.map +1 -0
  123. package/dist/components/Atoms/Pagination/TablePagination.stories.d.ts +3 -0
  124. package/dist/components/Atoms/Pagination/TablePagination.stories.js +26 -0
  125. package/dist/components/Atoms/Pagination/TablePagination.stories.js.map +1 -0
  126. package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.d.ts +1 -0
  127. package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.js +77 -0
  128. package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.js.map +1 -0
  129. package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.stories.d.ts +40 -0
  130. package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.stories.js +77 -0
  131. package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.stories.js.map +1 -0
  132. package/dist/components/Atoms/Radio/Radio.d.ts +7 -0
  133. package/dist/components/Atoms/Radio/Radio.js +27 -0
  134. package/dist/components/Atoms/Radio/Radio.js.map +1 -0
  135. package/dist/components/Atoms/Select/Select.d.ts +8 -0
  136. package/dist/components/Atoms/Select/Select.js +9 -0
  137. package/dist/components/Atoms/Select/Select.js.map +1 -0
  138. package/dist/components/Atoms/Spinner/Spinner.d.ts +7 -0
  139. package/dist/components/Atoms/Spinner/Spinner.js +9 -0
  140. package/dist/components/Atoms/Spinner/Spinner.js.map +1 -0
  141. package/dist/components/Atoms/SummaryLine.d.ts +3 -0
  142. package/dist/components/Atoms/SummaryLine.js +19 -0
  143. package/dist/components/Atoms/SummaryLine.js.map +1 -0
  144. package/dist/components/Atoms/Switch/Switch.d.ts +7 -0
  145. package/dist/components/Atoms/Switch/Switch.js +26 -0
  146. package/dist/components/Atoms/Switch/Switch.js.map +1 -0
  147. package/dist/components/Atoms/TextArea/TextArea.d.ts +6 -0
  148. package/dist/components/Atoms/TextArea/TextArea.js +9 -0
  149. package/dist/components/Atoms/TextArea/TextArea.js.map +1 -0
  150. package/dist/components/Atoms/Toast/Toast.d.ts +6 -0
  151. package/dist/components/Atoms/Toast/Toast.js +23 -0
  152. package/dist/components/Atoms/Toast/Toast.js.map +1 -0
  153. package/dist/components/Atoms/TranscriptionImagePreview/ImageTranscriptionStyles.d.ts +75 -0
  154. package/dist/components/Atoms/TranscriptionImagePreview/ImageTranscriptionStyles.js +76 -0
  155. package/dist/components/Atoms/TranscriptionImagePreview/ImageTranscriptionStyles.js.map +1 -0
  156. package/dist/components/Atoms/TranscriptionImagePreview/TranscriptionImagePreview.d.ts +1 -0
  157. package/dist/components/Atoms/TranscriptionImagePreview/TranscriptionImagePreview.js +31 -0
  158. package/dist/components/Atoms/TranscriptionImagePreview/TranscriptionImagePreview.js.map +1 -0
  159. package/dist/components/Atoms/TranscriptionImagePreview/TranscriptionImagePreview.stories.d.ts +3 -0
  160. package/dist/components/Atoms/TranscriptionImagePreview/TranscriptionImagePreview.stories.js +21 -0
  161. package/dist/components/Atoms/TranscriptionImagePreview/TranscriptionImagePreview.stories.js.map +1 -0
  162. package/dist/components/Atoms/Typography/Typography.d.ts +7 -0
  163. package/dist/components/Atoms/Typography/Typography.js +16 -0
  164. package/dist/components/Atoms/Typography/Typography.js.map +1 -0
  165. package/dist/components/Atoms/Typography/TypographyConstants.d.ts +53 -0
  166. package/dist/components/Atoms/Typography/TypographyConstants.js +38 -0
  167. package/dist/components/Atoms/Typography/TypographyConstants.js.map +1 -0
  168. package/dist/components/Atoms/imageModal.d.ts +2 -0
  169. package/dist/components/Atoms/imageModal.js +40 -0
  170. package/dist/components/Atoms/imageModal.js.map +1 -0
  171. package/dist/components/Atoms/useCustomToast.d.ts +6 -0
  172. package/dist/components/Atoms/useCustomToast.js +19 -0
  173. package/dist/components/Atoms/useCustomToast.js.map +1 -0
  174. package/dist/components/Molecules/AccordianPay4/Accordian.d.ts +15 -0
  175. package/dist/components/Molecules/AccordianPay4/Accordian.js +45 -0
  176. package/dist/components/Molecules/AccordianPay4/Accordian.js.map +1 -0
  177. package/dist/components/Molecules/AccordianPay4/Accordian.stories.d.ts +9 -0
  178. package/dist/components/Molecules/AccordianPay4/Accordian.stories.js +62 -0
  179. package/dist/components/Molecules/AccordianPay4/Accordian.stories.js.map +1 -0
  180. package/dist/components/Molecules/AccordianPay4/Accordian.styles.d.ts +117 -0
  181. package/dist/components/Molecules/AccordianPay4/Accordian.styles.js +112 -0
  182. package/dist/components/Molecules/AccordianPay4/Accordian.styles.js.map +1 -0
  183. package/dist/components/Molecules/ActivityBanner/ActivityBanner.d.ts +1 -0
  184. package/dist/components/Molecules/ActivityBanner/ActivityBanner.js +151 -0
  185. package/dist/components/Molecules/ActivityBanner/ActivityBanner.js.map +1 -0
  186. package/dist/components/Molecules/ActivityBanner/ActivityBanner.stories.d.ts +4 -0
  187. package/dist/components/Molecules/ActivityBanner/ActivityBanner.stories.js +97 -0
  188. package/dist/components/Molecules/ActivityBanner/ActivityBanner.stories.js.map +1 -0
  189. package/dist/components/Molecules/ActivityBanner/activityBannerStyles.d.ts +75 -0
  190. package/dist/components/Molecules/ActivityBanner/activityBannerStyles.js +79 -0
  191. package/dist/components/Molecules/ActivityBanner/activityBannerStyles.js.map +1 -0
  192. package/dist/components/Molecules/AddPostCard/AddPostCard.d.ts +2 -0
  193. package/dist/components/Molecules/AddPostCard/AddPostCard.js +52 -0
  194. package/dist/components/Molecules/AddPostCard/AddPostCard.js.map +1 -0
  195. package/dist/components/Molecules/AddPostCard/AddPostCard.stories.d.ts +5 -0
  196. package/dist/components/Molecules/AddPostCard/AddPostCard.stories.js +56 -0
  197. package/dist/components/Molecules/AddPostCard/AddPostCard.stories.js.map +1 -0
  198. package/dist/components/Molecules/AddPostCard/addPostStyles.d.ts +86 -0
  199. package/dist/components/Molecules/AddPostCard/addPostStyles.js +90 -0
  200. package/dist/components/Molecules/AddPostCard/addPostStyles.js.map +1 -0
  201. package/dist/components/Molecules/BottomNav/BottomNav.d.ts +2 -0
  202. package/dist/components/Molecules/BottomNav/BottomNav.js +24 -0
  203. package/dist/components/Molecules/BottomNav/BottomNav.js.map +1 -0
  204. package/dist/components/Molecules/BottomNav/BottomNav.stories.d.ts +3 -0
  205. package/dist/components/Molecules/BottomNav/BottomNav.stories.js +120 -0
  206. package/dist/components/Molecules/BottomNav/BottomNav.stories.js.map +1 -0
  207. package/dist/components/Molecules/BottomNav/BottomNavStyles.d.ts +52 -0
  208. package/dist/components/Molecules/BottomNav/BottomNavStyles.js +56 -0
  209. package/dist/components/Molecules/BottomNav/BottomNavStyles.js.map +1 -0
  210. package/dist/components/Molecules/DashPlayer/DashPlayer.d.ts +3 -0
  211. package/dist/components/Molecules/DashPlayer/DashPlayer.js +149 -0
  212. package/dist/components/Molecules/DashPlayer/DashPlayer.js.map +1 -0
  213. package/dist/components/Molecules/DashPlayer/DashPlayer.stories.d.ts +5 -0
  214. package/dist/components/Molecules/DashPlayer/DashPlayer.stories.js +32 -0
  215. package/dist/components/Molecules/DashPlayer/DashPlayer.stories.js.map +1 -0
  216. package/dist/components/Molecules/DashPlayer/ShakaPlayer.d.ts +3 -0
  217. package/dist/components/Molecules/DashPlayer/ShakaPlayer.js +397 -0
  218. package/dist/components/Molecules/DashPlayer/ShakaPlayer.js.map +1 -0
  219. package/dist/components/Molecules/Descriptive/DescriptiveLabel.d.ts +5 -0
  220. package/dist/components/Molecules/Descriptive/DescriptiveLabel.js +25 -0
  221. package/dist/components/Molecules/Descriptive/DescriptiveLabel.js.map +1 -0
  222. package/dist/components/Molecules/Descriptive/descriptiveStyles.d.ts +60 -0
  223. package/dist/components/Molecules/Descriptive/descriptiveStyles.js +48 -0
  224. package/dist/components/Molecules/Descriptive/descriptiveStyles.js.map +1 -0
  225. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswer.stories.d.ts +17 -0
  226. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswer.stories.js +568 -0
  227. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswer.stories.js.map +1 -0
  228. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswerV1.d.ts +2 -0
  229. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswerV1.js +128 -0
  230. package/dist/components/Molecules/DescriptiveAnswer/DescriptiveAnswerV1.js.map +1 -0
  231. package/dist/components/Molecules/FactualCard/FactualCard.d.ts +44 -0
  232. package/dist/components/Molecules/FactualCard/FactualCard.js +118 -0
  233. package/dist/components/Molecules/FactualCard/FactualCard.js.map +1 -0
  234. package/dist/components/Molecules/FactualCard/FactualCard.style.d.ts +64 -0
  235. package/dist/components/Molecules/FactualCard/FactualCard.style.js +69 -0
  236. package/dist/components/Molecules/FactualCard/FactualCard.style.js.map +1 -0
  237. package/dist/components/Molecules/FloatingButton/FloatingButton.d.ts +10 -0
  238. package/dist/components/Molecules/FloatingButton/FloatingButton.js +16 -0
  239. package/dist/components/Molecules/FloatingButton/FloatingButton.js.map +1 -0
  240. package/dist/components/Molecules/FloatingButton/FloatingButton.styles.d.ts +21 -0
  241. package/dist/components/Molecules/FloatingButton/FloatingButton.styles.js +140 -0
  242. package/dist/components/Molecules/FloatingButton/FloatingButton.styles.js.map +1 -0
  243. package/dist/components/Molecules/HighChart/HighChart.d.ts +2 -0
  244. package/dist/components/Molecules/HighChart/HighChart.js +30 -0
  245. package/dist/components/Molecules/HighChart/HighChart.js.map +1 -0
  246. package/dist/components/Molecules/HighChart/HighChartPie.d.ts +2 -0
  247. package/dist/components/Molecules/HighChart/HighChartPie.js +99 -0
  248. package/dist/components/Molecules/HighChart/HighChartPie.js.map +1 -0
  249. package/dist/components/Molecules/HighChart/HighCharts.stories.d.ts +3 -0
  250. package/dist/components/Molecules/HighChart/HighCharts.stories.js +208 -0
  251. package/dist/components/Molecules/HighChart/HighCharts.stories.js.map +1 -0
  252. package/dist/components/Molecules/ImageView/ImageModal.d.ts +2 -0
  253. package/dist/components/Molecules/ImageView/ImageModal.js +17 -0
  254. package/dist/components/Molecules/ImageView/ImageModal.js.map +1 -0
  255. package/dist/components/Molecules/ImageView/ImageModal.stories.d.ts +3 -0
  256. package/dist/components/Molecules/ImageView/ImageModal.stories.js +19 -0
  257. package/dist/components/Molecules/ImageView/ImageModal.stories.js.map +1 -0
  258. package/dist/components/Molecules/InvalidSession/InvalidSession.d.ts +6 -0
  259. package/dist/components/Molecules/InvalidSession/InvalidSession.js +16 -0
  260. package/dist/components/Molecules/InvalidSession/InvalidSession.js.map +1 -0
  261. package/dist/components/Molecules/InvalidSession/InvalidSession.stories.d.ts +6 -0
  262. package/dist/components/Molecules/InvalidSession/InvalidSession.stories.js +17 -0
  263. package/dist/components/Molecules/InvalidSession/InvalidSession.stories.js.map +1 -0
  264. package/dist/components/Molecules/InvalidSession/InvalidSession.styles.d.ts +14 -0
  265. package/dist/components/Molecules/InvalidSession/InvalidSession.styles.js +75 -0
  266. package/dist/components/Molecules/InvalidSession/InvalidSession.styles.js.map +1 -0
  267. package/dist/components/Molecules/LatexRender/DefaultRender.d.ts +4 -0
  268. package/dist/components/Molecules/LatexRender/DefaultRender.js +13 -0
  269. package/dist/components/Molecules/LatexRender/DefaultRender.js.map +1 -0
  270. package/dist/components/Molecules/LatexRender/LatexRender.d.ts +2 -0
  271. package/dist/components/Molecules/LatexRender/LatexRender.js +14 -0
  272. package/dist/components/Molecules/LatexRender/LatexRender.js.map +1 -0
  273. package/dist/components/Molecules/LatexRender/LatexRender.stories.d.ts +3 -0
  274. package/dist/components/Molecules/LatexRender/LatexRender.stories.js +22 -0
  275. package/dist/components/Molecules/LatexRender/LatexRender.stories.js.map +1 -0
  276. package/dist/components/Molecules/LatexRender/MarkdownRender.d.ts +4 -0
  277. package/dist/components/Molecules/LatexRender/MarkdownRender.js +142 -0
  278. package/dist/components/Molecules/LatexRender/MarkdownRender.js.map +1 -0
  279. package/dist/components/Molecules/MediaModal/MediaModal.d.ts +15 -0
  280. package/dist/components/Molecules/MediaModal/MediaModal.js +212 -0
  281. package/dist/components/Molecules/MediaModal/MediaModal.js.map +1 -0
  282. package/dist/components/Molecules/MediaModal/MediaModal.style.d.ts +8 -0
  283. package/dist/components/Molecules/MediaModal/MediaModal.style.js +12 -0
  284. package/dist/components/Molecules/MediaModal/MediaModal.style.js.map +1 -0
  285. package/dist/components/Molecules/Pay4Use/ExecutionModal.d.ts +17 -0
  286. package/dist/components/Molecules/Pay4Use/ExecutionModal.js +35 -0
  287. package/dist/components/Molecules/Pay4Use/ExecutionModal.js.map +1 -0
  288. package/dist/components/Molecules/Pay4Use/ExecutionModal.stories.d.ts +9 -0
  289. package/dist/components/Molecules/Pay4Use/ExecutionModal.stories.js +92 -0
  290. package/dist/components/Molecules/Pay4Use/ExecutionModal.stories.js.map +1 -0
  291. package/dist/components/Molecules/Pay4Use/ExecutionModalStyles.d.ts +344 -0
  292. package/dist/components/Molecules/Pay4Use/ExecutionModalStyles.js +351 -0
  293. package/dist/components/Molecules/Pay4Use/ExecutionModalStyles.js.map +1 -0
  294. package/dist/components/Molecules/Pay4Use/PayToUsePrompt.d.ts +2 -0
  295. package/dist/components/Molecules/Pay4Use/PayToUsePrompt.js +15 -0
  296. package/dist/components/Molecules/Pay4Use/PayToUsePrompt.js.map +1 -0
  297. package/dist/components/Molecules/Pay4Use/PayToUsePrompt.stories.d.ts +3 -0
  298. package/dist/components/Molecules/Pay4Use/PayToUsePrompt.stories.js +22 -0
  299. package/dist/components/Molecules/Pay4Use/PayToUsePrompt.stories.js.map +1 -0
  300. package/dist/components/Molecules/Pay4Use/PayToUsePromptStyles.d.ts +108 -0
  301. package/dist/components/Molecules/Pay4Use/PayToUsePromptStyles.js +82 -0
  302. package/dist/components/Molecules/Pay4Use/PayToUsePromptStyles.js.map +1 -0
  303. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.d.ts +15 -0
  304. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js +45 -0
  305. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js.map +1 -0
  306. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.stories.d.ts +8 -0
  307. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.stories.js +69 -0
  308. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.stories.js.map +1 -0
  309. package/dist/components/Molecules/PerformanceScreen/QuizResult.styles.d.ts +28 -0
  310. package/dist/components/Molecules/PerformanceScreen/QuizResult.styles.js +146 -0
  311. package/dist/components/Molecules/PerformanceScreen/QuizResult.styles.js.map +1 -0
  312. package/dist/components/Molecules/PostCard/PostCard.d.ts +2 -0
  313. package/dist/components/Molecules/PostCard/PostCard.js +110 -0
  314. package/dist/components/Molecules/PostCard/PostCard.js.map +1 -0
  315. package/dist/components/Molecules/PostCard/PostCard.stories.d.ts +7 -0
  316. package/dist/components/Molecules/PostCard/PostCard.stories.js +180 -0
  317. package/dist/components/Molecules/PostCard/PostCard.stories.js.map +1 -0
  318. package/dist/components/Molecules/PostCard/PostImageGallary.d.ts +1 -0
  319. package/dist/components/Molecules/PostCard/PostImageGallary.js +68 -0
  320. package/dist/components/Molecules/PostCard/PostImageGallary.js.map +1 -0
  321. package/dist/components/Molecules/PostCard/postCardStyles.d.ts +152 -0
  322. package/dist/components/Molecules/PostCard/postCardStyles.js +156 -0
  323. package/dist/components/Molecules/PostCard/postCardStyles.js.map +1 -0
  324. package/dist/components/Molecules/RequestSent/RequestSent.d.ts +9 -0
  325. package/dist/components/Molecules/RequestSent/RequestSent.js +17 -0
  326. package/dist/components/Molecules/RequestSent/RequestSent.js.map +1 -0
  327. package/dist/components/Molecules/RequestSent/RequestSent.stories.d.ts +7 -0
  328. package/dist/components/Molecules/RequestSent/RequestSent.stories.js +46 -0
  329. package/dist/components/Molecules/RequestSent/RequestSent.stories.js.map +1 -0
  330. package/dist/components/Molecules/RequestSent/RequestSent.styles.d.ts +2 -0
  331. package/dist/components/Molecules/RequestSent/RequestSent.styles.js +176 -0
  332. package/dist/components/Molecules/RequestSent/RequestSent.styles.js.map +1 -0
  333. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.d.ts +15 -0
  334. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.js +39 -0
  335. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.js.map +1 -0
  336. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.stories.d.ts +7 -0
  337. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.stories.js +53 -0
  338. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.stories.js.map +1 -0
  339. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.styles.d.ts +22 -0
  340. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.styles.js +187 -0
  341. package/dist/components/Molecules/RevisionCompleteCard/RevisionCompleteCard.styles.js.map +1 -0
  342. package/dist/components/Molecules/RevisionIntroCard/RevisionCard.stories.d.ts +6 -0
  343. package/dist/components/Molecules/RevisionIntroCard/RevisionCard.stories.js +23 -0
  344. package/dist/components/Molecules/RevisionIntroCard/RevisionCard.stories.js.map +1 -0
  345. package/dist/components/Molecules/RevisionIntroCard/RevisionCard.styles.d.ts +10 -0
  346. package/dist/components/Molecules/RevisionIntroCard/RevisionCard.styles.js +134 -0
  347. package/dist/components/Molecules/RevisionIntroCard/RevisionCard.styles.js.map +1 -0
  348. package/dist/components/Molecules/RevisionIntroCard/RevisionIntro.d.ts +12 -0
  349. package/dist/components/Molecules/RevisionIntroCard/RevisionIntro.js +40 -0
  350. package/dist/components/Molecules/RevisionIntroCard/RevisionIntro.js.map +1 -0
  351. package/dist/components/Molecules/SmartLearn/SmartLearn.d.ts +4 -0
  352. package/dist/components/Molecules/SmartLearn/SmartLearn.js +40 -0
  353. package/dist/components/Molecules/SmartLearn/SmartLearn.js.map +1 -0
  354. package/dist/components/Molecules/SmartLearn/SmartLearn.stories.d.ts +9 -0
  355. package/dist/components/Molecules/SmartLearn/SmartLearn.stories.js +72 -0
  356. package/dist/components/Molecules/SmartLearn/SmartLearn.stories.js.map +1 -0
  357. package/dist/components/Molecules/SmartLearn/SmartLearn.styles.d.ts +349 -0
  358. package/dist/components/Molecules/SmartLearn/SmartLearn.styles.js +350 -0
  359. package/dist/components/Molecules/SmartLearn/SmartLearn.styles.js.map +1 -0
  360. package/dist/components/Molecules/SmartLearn/types.d.ts +9 -0
  361. package/dist/components/Molecules/SmartLearn/types.js +3 -0
  362. package/dist/components/Molecules/SmartLearn/types.js.map +1 -0
  363. package/dist/components/Molecules/SortMenu/SortMenu.d.ts +2 -0
  364. package/dist/components/Molecules/SortMenu/SortMenu.js +68 -0
  365. package/dist/components/Molecules/SortMenu/SortMenu.js.map +1 -0
  366. package/dist/components/Molecules/SortMenu/SortMenu.stories.d.ts +4 -0
  367. package/dist/components/Molecules/SortMenu/SortMenu.stories.js +56 -0
  368. package/dist/components/Molecules/SortMenu/SortMenu.stories.js.map +1 -0
  369. package/dist/components/Molecules/SortMenu/sortMenuStyles.d.ts +32 -0
  370. package/dist/components/Molecules/SortMenu/sortMenuStyles.js +36 -0
  371. package/dist/components/Molecules/SortMenu/sortMenuStyles.js.map +1 -0
  372. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.d.ts +19 -0
  373. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.js +21 -0
  374. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.js.map +1 -0
  375. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.stories.d.ts +12 -0
  376. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.stories.js +178 -0
  377. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.stories.js.map +1 -0
  378. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.styles.d.ts +238 -0
  379. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.styles.js +242 -0
  380. package/dist/components/Molecules/StaticscreensLearnmore/Staticback.styles.js.map +1 -0
  381. package/dist/components/Molecules/TableCustomizer/CellEditor.d.ts +12 -0
  382. package/dist/components/Molecules/TableCustomizer/CellEditor.js +60 -0
  383. package/dist/components/Molecules/TableCustomizer/CellEditor.js.map +1 -0
  384. package/dist/components/Molecules/TableCustomizer/HTMLImporter.d.ts +4 -0
  385. package/dist/components/Molecules/TableCustomizer/HTMLImporter.js +69 -0
  386. package/dist/components/Molecules/TableCustomizer/HTMLImporter.js.map +1 -0
  387. package/dist/components/Molecules/TableCustomizer/MarkdownImporter.d.ts +4 -0
  388. package/dist/components/Molecules/TableCustomizer/MarkdownImporter.js +84 -0
  389. package/dist/components/Molecules/TableCustomizer/MarkdownImporter.js.map +1 -0
  390. package/dist/components/Molecules/TableCustomizer/TableHeader.d.ts +11 -0
  391. package/dist/components/Molecules/TableCustomizer/TableHeader.js +15 -0
  392. package/dist/components/Molecules/TableCustomizer/TableHeader.js.map +1 -0
  393. package/dist/components/Molecules/TableCustomizer/TablePreview.d.ts +8 -0
  394. package/dist/components/Molecules/TableCustomizer/TablePreview.js +160 -0
  395. package/dist/components/Molecules/TableCustomizer/TablePreview.js.map +1 -0
  396. package/dist/components/Molecules/TableCustomizer/TableStructureControls.d.ts +5 -0
  397. package/dist/components/Molecules/TableCustomizer/TableStructureControls.js +26 -0
  398. package/dist/components/Molecules/TableCustomizer/TableStructureControls.js.map +1 -0
  399. package/dist/components/Molecules/TableCustomizer/hooks/useTableGenerator.d.ts +8 -0
  400. package/dist/components/Molecules/TableCustomizer/hooks/useTableGenerator.js +466 -0
  401. package/dist/components/Molecules/TableCustomizer/hooks/useTableGenerator.js.map +1 -0
  402. package/dist/components/Molecules/TableCustomizer/hooks/useTableState.d.ts +27 -0
  403. package/dist/components/Molecules/TableCustomizer/hooks/useTableState.js +379 -0
  404. package/dist/components/Molecules/TableCustomizer/hooks/useTableState.js.map +1 -0
  405. package/dist/components/Molecules/TableCustomizer/index.d.ts +3 -0
  406. package/dist/components/Molecules/TableCustomizer/index.js +103 -0
  407. package/dist/components/Molecules/TableCustomizer/index.js.map +1 -0
  408. package/dist/components/Molecules/TableCustomizer/utils/htmlTableParser.d.ts +9 -0
  409. package/dist/components/Molecules/TableCustomizer/utils/htmlTableParser.js +308 -0
  410. package/dist/components/Molecules/TableCustomizer/utils/htmlTableParser.js.map +1 -0
  411. package/dist/components/Molecules/TableCustomizer/utils/markdownTableParser.d.ts +9 -0
  412. package/dist/components/Molecules/TableCustomizer/utils/markdownTableParser.js +42 -0
  413. package/dist/components/Molecules/TableCustomizer/utils/markdownTableParser.js.map +1 -0
  414. package/dist/components/Molecules/TermsAndPrivacy/Privacy.stories.d.ts +7 -0
  415. package/dist/components/Molecules/TermsAndPrivacy/Privacy.stories.js +54 -0
  416. package/dist/components/Molecules/TermsAndPrivacy/Privacy.stories.js.map +1 -0
  417. package/dist/components/Molecules/TermsAndPrivacy/PrivacyPolicy.d.ts +2 -0
  418. package/dist/components/Molecules/TermsAndPrivacy/PrivacyPolicy.js +85 -0
  419. package/dist/components/Molecules/TermsAndPrivacy/PrivacyPolicy.js.map +1 -0
  420. package/dist/components/Molecules/TermsAndPrivacy/TermsAndConditions.d.ts +2 -0
  421. package/dist/components/Molecules/TermsAndPrivacy/TermsAndConditions.js +82 -0
  422. package/dist/components/Molecules/TermsAndPrivacy/TermsAndConditions.js.map +1 -0
  423. package/dist/components/Molecules/TermsAndPrivacy/TermsAndConditions.stories.d.ts +6 -0
  424. package/dist/components/Molecules/TermsAndPrivacy/TermsAndConditions.stories.js +46 -0
  425. package/dist/components/Molecules/TermsAndPrivacy/TermsAndConditions.stories.js.map +1 -0
  426. package/dist/components/Molecules/TermsAndPrivacy/components/ContactCard.d.ts +7 -0
  427. package/dist/components/Molecules/TermsAndPrivacy/components/ContactCard.js +18 -0
  428. package/dist/components/Molecules/TermsAndPrivacy/components/ContactCard.js.map +1 -0
  429. package/dist/components/Molecules/TermsAndPrivacy/components/NestedList.d.ts +7 -0
  430. package/dist/components/Molecules/TermsAndPrivacy/components/NestedList.js +18 -0
  431. package/dist/components/Molecules/TermsAndPrivacy/components/NestedList.js.map +1 -0
  432. package/dist/components/Molecules/TermsAndPrivacy/helpers/ParentHelper.d.ts +40 -0
  433. package/dist/components/Molecules/TermsAndPrivacy/helpers/ParentHelper.js +569 -0
  434. package/dist/components/Molecules/TermsAndPrivacy/helpers/ParentHelper.js.map +1 -0
  435. package/dist/components/Molecules/TermsAndPrivacy/helpers/RefundAndCancellationHelper.d.ts +12 -0
  436. package/dist/components/Molecules/TermsAndPrivacy/helpers/RefundAndCancellationHelper.js +111 -0
  437. package/dist/components/Molecules/TermsAndPrivacy/helpers/RefundAndCancellationHelper.js.map +1 -0
  438. package/dist/components/Molecules/TermsAndPrivacy/helpers/SchoolHelper.d.ts +31 -0
  439. package/dist/components/Molecules/TermsAndPrivacy/helpers/SchoolHelper.js +568 -0
  440. package/dist/components/Molecules/TermsAndPrivacy/helpers/SchoolHelper.js.map +1 -0
  441. package/dist/components/Molecules/TermsAndPrivacy/helpers/StudentHelper.d.ts +44 -0
  442. package/dist/components/Molecules/TermsAndPrivacy/helpers/StudentHelper.js +472 -0
  443. package/dist/components/Molecules/TermsAndPrivacy/helpers/StudentHelper.js.map +1 -0
  444. package/dist/components/Molecules/TermsAndPrivacy/helpers/TeacherHelper.d.ts +40 -0
  445. package/dist/components/Molecules/TermsAndPrivacy/helpers/TeacherHelper.js +490 -0
  446. package/dist/components/Molecules/TermsAndPrivacy/helpers/TeacherHelper.js.map +1 -0
  447. package/dist/components/Molecules/TimerClock/TimerClock.d.ts +11 -0
  448. package/dist/components/Molecules/TimerClock/TimerClock.js +127 -0
  449. package/dist/components/Molecules/TimerClock/TimerClock.js.map +1 -0
  450. package/dist/components/Molecules/TimerClock/TimerClock.stories.d.ts +4 -0
  451. package/dist/components/Molecules/TimerClock/TimerClock.stories.js +30 -0
  452. package/dist/components/Molecules/TimerClock/TimerClock.stories.js.map +1 -0
  453. package/dist/components/Molecules/Tutor/Assistant/Assistant.d.ts +2 -0
  454. package/dist/components/Molecules/Tutor/Assistant/Assistant.js +171 -0
  455. package/dist/components/Molecules/Tutor/Assistant/Assistant.js.map +1 -0
  456. package/dist/components/Molecules/Tutor/Assistant/Assistant.stories.d.ts +7 -0
  457. package/dist/components/Molecules/Tutor/Assistant/Assistant.stories.js +102 -0
  458. package/dist/components/Molecules/Tutor/Assistant/Assistant.stories.js.map +1 -0
  459. package/dist/components/Molecules/Tutor/Assistant/Assistant.styles.d.ts +445 -0
  460. package/dist/components/Molecules/Tutor/Assistant/Assistant.styles.js +456 -0
  461. package/dist/components/Molecules/Tutor/Assistant/Assistant.styles.js.map +1 -0
  462. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.d.ts +11 -0
  463. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.js +25 -0
  464. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.js.map +1 -0
  465. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.stories.d.ts +4 -0
  466. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.stories.js +30 -0
  467. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.stories.js.map +1 -0
  468. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.styles.d.ts +61 -0
  469. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.styles.js +64 -0
  470. package/dist/components/Molecules/Tutor/Assistant/AssistantV2.styles.js.map +1 -0
  471. package/dist/components/Molecules/Tutor/Assistant/TutorAssistant.d.ts +2 -0
  472. package/dist/components/Molecules/Tutor/Assistant/TutorAssistant.js +78 -0
  473. package/dist/components/Molecules/Tutor/Assistant/TutorAssistant.js.map +1 -0
  474. package/dist/components/Molecules/Tutor/BubbleLoader.d.ts +1 -0
  475. package/dist/components/Molecules/Tutor/BubbleLoader.js +21 -0
  476. package/dist/components/Molecules/Tutor/BubbleLoader.js.map +1 -0
  477. package/dist/components/Molecules/Tutor/TutorSummary/TutorSummary.d.ts +1 -0
  478. package/dist/components/Molecules/Tutor/TutorSummary/TutorSummary.js +53 -0
  479. package/dist/components/Molecules/Tutor/TutorSummary/TutorSummary.js.map +1 -0
  480. package/dist/components/Molecules/Tutor/TutorSummary/TutorSummary.stories.d.ts +7 -0
  481. package/dist/components/Molecules/Tutor/TutorSummary/TutorSummary.stories.js +165 -0
  482. package/dist/components/Molecules/Tutor/TutorSummary/TutorSummary.stories.js.map +1 -0
  483. package/dist/components/Molecules/Tutor/User/User.d.ts +1 -0
  484. package/dist/components/Molecules/Tutor/User/User.js +14 -0
  485. package/dist/components/Molecules/Tutor/User/User.js.map +1 -0
  486. package/dist/components/Molecules/Tutor/User/User.stories.d.ts +4 -0
  487. package/dist/components/Molecules/Tutor/User/User.stories.js +22 -0
  488. package/dist/components/Molecules/Tutor/User/User.stories.js.map +1 -0
  489. package/dist/components/Molecules/VideoView/VideoModal.d.ts +2 -0
  490. package/dist/components/Molecules/VideoView/VideoModal.js +56 -0
  491. package/dist/components/Molecules/VideoView/VideoModal.js.map +1 -0
  492. package/dist/components/Molecules/VideoView/VideoModal.stories.d.ts +3 -0
  493. package/dist/components/Molecules/VideoView/VideoModal.stories.js +23 -0
  494. package/dist/components/Molecules/VideoView/VideoModal.stories.js.map +1 -0
  495. package/dist/components/Molecules/WallBanner/WallBanner.d.ts +2 -0
  496. package/dist/components/Molecules/WallBanner/WallBanner.js +25 -0
  497. package/dist/components/Molecules/WallBanner/WallBanner.js.map +1 -0
  498. package/dist/components/Molecules/WallBanner/WallBanner.stories.d.ts +6 -0
  499. package/dist/components/Molecules/WallBanner/WallBanner.stories.js +45 -0
  500. package/dist/components/Molecules/WallBanner/WallBanner.stories.js.map +1 -0
  501. package/dist/components/Molecules/WallBanner/wallBannerStyles.d.ts +1 -0
  502. package/dist/components/Molecules/WallBanner/wallBannerStyles.js +65 -0
  503. package/dist/components/Molecules/WallBanner/wallBannerStyles.js.map +1 -0
  504. package/dist/components/Molecules/WallCard/WallCard.d.ts +1 -0
  505. package/dist/components/Molecules/WallCard/WallCard.js +53 -0
  506. package/dist/components/Molecules/WallCard/WallCard.js.map +1 -0
  507. package/dist/components/Molecules/WallCard/WallCard.stories.d.ts +5 -0
  508. package/dist/components/Molecules/WallCard/WallCard.stories.js +67 -0
  509. package/dist/components/Molecules/WallCard/WallCard.stories.js.map +1 -0
  510. package/dist/components/Molecules/comprehension/ComprehensionLayout.d.ts +27 -0
  511. package/dist/components/Molecules/comprehension/ComprehensionLayout.js +75 -0
  512. package/dist/components/Molecules/comprehension/ComprehensionLayout.js.map +1 -0
  513. package/dist/components/Molecules/comprehension/ComprehensionStyles.d.ts +21 -0
  514. package/dist/components/Molecules/comprehension/ComprehensionStyles.js +26 -0
  515. package/dist/components/Molecules/comprehension/ComprehensionStyles.js.map +1 -0
  516. package/dist/components/Molecules/comprehension/SubQuestionLayout.d.ts +45 -0
  517. package/dist/components/Molecules/comprehension/SubQuestionLayout.js +101 -0
  518. package/dist/components/Molecules/comprehension/SubQuestionLayout.js.map +1 -0
  519. package/dist/components/Molecules/optionLayouts/Scqnew.d.ts +2 -0
  520. package/dist/components/Molecules/optionLayouts/Scqnew.js +491 -0
  521. package/dist/components/Molecules/optionLayouts/Scqnew.js.map +1 -0
  522. package/dist/components/Molecules/optionLayouts/fibtemp.d.ts +2 -0
  523. package/dist/components/Molecules/optionLayouts/fibtemp.js +59 -0
  524. package/dist/components/Molecules/optionLayouts/fibtemp.js.map +1 -0
  525. package/dist/components/Molecules/optionLayouts/mcqtemp.d.ts +2 -0
  526. package/dist/components/Molecules/optionLayouts/mcqtemp.js +158 -0
  527. package/dist/components/Molecules/optionLayouts/mcqtemp.js.map +1 -0
  528. package/dist/components/Molecules/optionLayouts/scqStudent.d.ts +2 -0
  529. package/dist/components/Molecules/optionLayouts/scqStudent.js +323 -0
  530. package/dist/components/Molecules/optionLayouts/scqStudent.js.map +1 -0
  531. package/dist/components/Molecules/optionLayouts/scqtemp.d.ts +2 -0
  532. package/dist/components/Molecules/optionLayouts/scqtemp.js +191 -0
  533. package/dist/components/Molecules/optionLayouts/scqtemp.js.map +1 -0
  534. package/dist/components/Molecules/questionLayouts/AnswerLayoutnew.d.ts +1 -0
  535. package/dist/components/Molecules/questionLayouts/AnswerLayoutnew.js +61 -0
  536. package/dist/components/Molecules/questionLayouts/AnswerLayoutnew.js.map +1 -0
  537. package/dist/components/Molecules/questionLayouts/AnswerLayouts.d.ts +1 -0
  538. package/dist/components/Molecules/questionLayouts/AnswerLayouts.js +37 -0
  539. package/dist/components/Molecules/questionLayouts/AnswerLayouts.js.map +1 -0
  540. package/dist/components/Molecules/questionLayouts/Question.styles.d.ts +70 -0
  541. package/dist/components/Molecules/questionLayouts/Question.styles.js +77 -0
  542. package/dist/components/Molecules/questionLayouts/Question.styles.js.map +1 -0
  543. package/dist/components/Molecules/questionLayouts/QuestionLayoutnew.d.ts +2 -0
  544. package/dist/components/Molecules/questionLayouts/QuestionLayoutnew.js +290 -0
  545. package/dist/components/Molecules/questionLayouts/QuestionLayoutnew.js.map +1 -0
  546. package/dist/components/Molecules/questionLayouts/QuestionsLayout.d.ts +1 -0
  547. package/dist/components/Molecules/questionLayouts/QuestionsLayout.js +141 -0
  548. package/dist/components/Molecules/questionLayouts/QuestionsLayout.js.map +1 -0
  549. package/dist/components/Organisms/ActivityList/ActivityList.d.ts +2 -0
  550. package/dist/components/Organisms/ActivityList/ActivityList.js +22 -0
  551. package/dist/components/Organisms/ActivityList/ActivityList.js.map +1 -0
  552. package/dist/components/Organisms/ActivityList/ActivityList.stories.d.ts +3 -0
  553. package/dist/components/Organisms/ActivityList/ActivityList.stories.js +76 -0
  554. package/dist/components/Organisms/ActivityList/ActivityList.stories.js.map +1 -0
  555. package/dist/components/Organisms/ChatView/ChatView.d.ts +1 -0
  556. package/dist/components/Organisms/ChatView/ChatView.js +33 -0
  557. package/dist/components/Organisms/ChatView/ChatView.js.map +1 -0
  558. package/dist/components/Organisms/ChatView/ChatView.stories.d.ts +3 -0
  559. package/dist/components/Organisms/ChatView/ChatView.stories.js +73 -0
  560. package/dist/components/Organisms/ChatView/ChatView.stories.js.map +1 -0
  561. package/dist/components/Organisms/ISEditor-V2/EditableDiv.d.ts +3 -0
  562. package/dist/components/Organisms/ISEditor-V2/EditableDiv.js +161 -0
  563. package/dist/components/Organisms/ISEditor-V2/EditableDiv.js.map +1 -0
  564. package/dist/components/Organisms/ISEditor-V2/Editor.d.ts +2 -0
  565. package/dist/components/Organisms/ISEditor-V2/Editor.js +444 -0
  566. package/dist/components/Organisms/ISEditor-V2/Editor.js.map +1 -0
  567. package/dist/components/Organisms/ISEditor-V2/EditorConstants.d.ts +13 -0
  568. package/dist/components/Organisms/ISEditor-V2/EditorConstants.js +369 -0
  569. package/dist/components/Organisms/ISEditor-V2/EditorConstants.js.map +1 -0
  570. package/dist/components/Organisms/ISEditor-V2/EditorContext.d.ts +7 -0
  571. package/dist/components/Organisms/ISEditor-V2/EditorContext.js +33 -0
  572. package/dist/components/Organisms/ISEditor-V2/EditorContext.js.map +1 -0
  573. package/dist/components/Organisms/ISEditor-V2/ISEditor.d.ts +2 -0
  574. package/dist/components/Organisms/ISEditor-V2/ISEditor.js +15 -0
  575. package/dist/components/Organisms/ISEditor-V2/ISEditor.js.map +1 -0
  576. package/dist/components/Organisms/ISEditor-V2/ISEditor.stories.d.ts +5 -0
  577. package/dist/components/Organisms/ISEditor-V2/ISEditor.stories.js +309 -0
  578. package/dist/components/Organisms/ISEditor-V2/ISEditor.stories.js.map +1 -0
  579. package/dist/components/Organisms/ISEditor-V2/LatexBlock.d.ts +2 -0
  580. package/dist/components/Organisms/ISEditor-V2/LatexBlock.js +20 -0
  581. package/dist/components/Organisms/ISEditor-V2/LatexBlock.js.map +1 -0
  582. package/dist/components/Organisms/ISEditor-V2/LatexCopyModal.d.ts +6 -0
  583. package/dist/components/Organisms/ISEditor-V2/LatexCopyModal.js +59 -0
  584. package/dist/components/Organisms/ISEditor-V2/LatexCopyModal.js.map +1 -0
  585. package/dist/components/Organisms/ISEditor-V2/LatexModal.d.ts +2 -0
  586. package/dist/components/Organisms/ISEditor-V2/LatexModal.js +80 -0
  587. package/dist/components/Organisms/ISEditor-V2/LatexModal.js.map +1 -0
  588. package/dist/components/Organisms/ISEditor-V2/LatexView.d.ts +5 -0
  589. package/dist/components/Organisms/ISEditor-V2/LatexView.js +10 -0
  590. package/dist/components/Organisms/ISEditor-V2/LatexView.js.map +1 -0
  591. package/dist/components/Organisms/ISEditor-V2/MathSymbolButton.d.ts +1 -0
  592. package/dist/components/Organisms/ISEditor-V2/MathSymbolButton.js +12 -0
  593. package/dist/components/Organisms/ISEditor-V2/MathSymbolButton.js.map +1 -0
  594. package/dist/components/Organisms/ISEditor-V2/MathToolBar.d.ts +2 -0
  595. package/dist/components/Organisms/ISEditor-V2/MathToolBar.js +39 -0
  596. package/dist/components/Organisms/ISEditor-V2/MathToolBar.js.map +1 -0
  597. package/dist/components/Organisms/ISEditor-V2/NewTableCustomisation.d.ts +1 -0
  598. package/dist/components/Organisms/ISEditor-V2/NewTableCustomisation.js +21 -0
  599. package/dist/components/Organisms/ISEditor-V2/NewTableCustomisation.js.map +1 -0
  600. package/dist/components/Organisms/ISEditor-V2/RawMathModal.d.ts +6 -0
  601. package/dist/components/Organisms/ISEditor-V2/RawMathModal.js +17 -0
  602. package/dist/components/Organisms/ISEditor-V2/RawMathModal.js.map +1 -0
  603. package/dist/components/Organisms/ISEditor-V2/RowColumnModal.d.ts +2 -0
  604. package/dist/components/Organisms/ISEditor-V2/RowColumnModal.js +16 -0
  605. package/dist/components/Organisms/ISEditor-V2/RowColumnModal.js.map +1 -0
  606. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockEight.d.ts +1 -0
  607. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockEight.js +14 -0
  608. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockEight.js.map +1 -0
  609. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockEleven.d.ts +1 -0
  610. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockEleven.js +194 -0
  611. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockEleven.js.map +1 -0
  612. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockFive.d.ts +1 -0
  613. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockFive.js +16 -0
  614. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockFive.js.map +1 -0
  615. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockFour.d.ts +1 -0
  616. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockFour.js +159 -0
  617. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockFour.js.map +1 -0
  618. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockNine.d.ts +1 -0
  619. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockNine.js +14 -0
  620. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockNine.js.map +1 -0
  621. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockOne.d.ts +1 -0
  622. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockOne.js +132 -0
  623. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockOne.js.map +1 -0
  624. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockSeven.d.ts +1 -0
  625. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockSeven.js +14 -0
  626. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockSeven.js.map +1 -0
  627. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockSix.d.ts +1 -0
  628. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockSix.js +16 -0
  629. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockSix.js.map +1 -0
  630. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTen.d.ts +1 -0
  631. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTen.js +14 -0
  632. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTen.js.map +1 -0
  633. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockThree.d.ts +1 -0
  634. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockThree.js +188 -0
  635. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockThree.js.map +1 -0
  636. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTwelve.d.ts +1 -0
  637. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTwelve.js +150 -0
  638. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTwelve.js.map +1 -0
  639. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTwo.d.ts +1 -0
  640. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTwo.js +13 -0
  641. package/dist/components/Organisms/ISEditor-V2/Symbols/MathFormulasBlockTwo.js.map +1 -0
  642. package/dist/components/Organisms/ISEditor-V2/TableBlock.d.ts +12 -0
  643. package/dist/components/Organisms/ISEditor-V2/TableBlock.js +30 -0
  644. package/dist/components/Organisms/ISEditor-V2/TableBlock.js.map +1 -0
  645. package/dist/components/Organisms/ISEditor-V2/TableModal.d.ts +4 -0
  646. package/dist/components/Organisms/ISEditor-V2/TableModal.js +743 -0
  647. package/dist/components/Organisms/ISEditor-V2/TableModal.js.map +1 -0
  648. package/dist/components/Organisms/ISEditor-V2/ToolBar.d.ts +2 -0
  649. package/dist/components/Organisms/ISEditor-V2/ToolBar.js +27 -0
  650. package/dist/components/Organisms/ISEditor-V2/ToolBar.js.map +1 -0
  651. package/dist/components/Organisms/ISEditor-V2/editor.types.d.ts +24 -0
  652. package/dist/components/Organisms/ISEditor-V2/editor.types.js +3 -0
  653. package/dist/components/Organisms/ISEditor-V2/editor.types.js.map +1 -0
  654. package/dist/components/Organisms/ISEditor-V2/tableBlockStyles.d.ts +48 -0
  655. package/dist/components/Organisms/ISEditor-V2/tableBlockStyles.js +62 -0
  656. package/dist/components/Organisms/ISEditor-V2/tableBlockStyles.js.map +1 -0
  657. package/dist/components/Organisms/LiveStreaming/LiveStreaming.d.ts +1 -0
  658. package/dist/components/Organisms/LiveStreaming/LiveStreaming.js +16 -0
  659. package/dist/components/Organisms/LiveStreaming/LiveStreaming.js.map +1 -0
  660. package/dist/components/Organisms/LiveStreaming/LiveStreaming.stories.d.ts +4 -0
  661. package/dist/components/Organisms/LiveStreaming/LiveStreaming.stories.js +29 -0
  662. package/dist/components/Organisms/LiveStreaming/LiveStreaming.stories.js.map +1 -0
  663. package/dist/components/Organisms/PostDetails/ImageGallery.d.ts +1 -0
  664. package/dist/components/Organisms/PostDetails/ImageGallery.js +95 -0
  665. package/dist/components/Organisms/PostDetails/ImageGallery.js.map +1 -0
  666. package/dist/components/Organisms/PostDetails/PostDetails.d.ts +2 -0
  667. package/dist/components/Organisms/PostDetails/PostDetails.js +19 -0
  668. package/dist/components/Organisms/PostDetails/PostDetails.js.map +1 -0
  669. package/dist/components/Organisms/PostDetails/PostDetails.stories.d.ts +4 -0
  670. package/dist/components/Organisms/PostDetails/PostDetails.stories.js +376 -0
  671. package/dist/components/Organisms/PostDetails/PostDetails.stories.js.map +1 -0
  672. package/dist/components/Organisms/PostDetails/PostInfo.d.ts +1 -0
  673. package/dist/components/Organisms/PostDetails/PostInfo.js +103 -0
  674. package/dist/components/Organisms/PostDetails/PostInfo.js.map +1 -0
  675. package/dist/components/Organisms/PostDetails/postDetailStyles.d.ts +35 -0
  676. package/dist/components/Organisms/PostDetails/postDetailStyles.js +39 -0
  677. package/dist/components/Organisms/PostDetails/postDetailStyles.js.map +1 -0
  678. package/dist/components/Organisms/PostsList/PostList.d.ts +2 -0
  679. package/dist/components/Organisms/PostsList/PostList.js +62 -0
  680. package/dist/components/Organisms/PostsList/PostList.js.map +1 -0
  681. package/dist/components/Organisms/PostsList/PostList.stories.d.ts +6 -0
  682. package/dist/components/Organisms/PostsList/PostList.stories.js +130 -0
  683. package/dist/components/Organisms/PostsList/PostList.stories.js.map +1 -0
  684. package/dist/components/Organisms/ProgressView/ProgressView.d.ts +2 -0
  685. package/dist/components/Organisms/ProgressView/ProgressView.js +428 -0
  686. package/dist/components/Organisms/ProgressView/ProgressView.js.map +1 -0
  687. package/dist/components/Organisms/ProgressView/ProgressView.stories.d.ts +685 -0
  688. package/dist/components/Organisms/ProgressView/ProgressView.stories.js +939 -0
  689. package/dist/components/Organisms/ProgressView/ProgressView.stories.js.map +1 -0
  690. package/dist/components/Organisms/ProgressView/ProgressViewPresenter.d.ts +9 -0
  691. package/dist/components/Organisms/ProgressView/ProgressViewPresenter.js +13 -0
  692. package/dist/components/Organisms/ProgressView/ProgressViewPresenter.js.map +1 -0
  693. package/dist/components/Organisms/ProgressView/ProgressViewStyles.d.ts +174 -0
  694. package/dist/components/Organisms/ProgressView/ProgressViewStyles.js +166 -0
  695. package/dist/components/Organisms/ProgressView/ProgressViewStyles.js.map +1 -0
  696. package/dist/components/Organisms/ReviewComponent/ChatPresenter.d.ts +1 -0
  697. package/dist/components/Organisms/ReviewComponent/ChatPresenter.js +22 -0
  698. package/dist/components/Organisms/ReviewComponent/ChatPresenter.js.map +1 -0
  699. package/dist/components/Organisms/ReviewComponent/KeyTakeAway.d.ts +4 -0
  700. package/dist/components/Organisms/ReviewComponent/KeyTakeAway.js +114 -0
  701. package/dist/components/Organisms/ReviewComponent/KeyTakeAway.js.map +1 -0
  702. package/dist/components/Organisms/ReviewComponent/MoreQuestions.d.ts +2 -0
  703. package/dist/components/Organisms/ReviewComponent/MoreQuestions.js +26 -0
  704. package/dist/components/Organisms/ReviewComponent/MoreQuestions.js.map +1 -0
  705. package/dist/components/Organisms/ReviewComponent/MoreQuestions.stories.d.ts +13 -0
  706. package/dist/components/Organisms/ReviewComponent/MoreQuestions.stories.js +23 -0
  707. package/dist/components/Organisms/ReviewComponent/MoreQuestions.stories.js.map +1 -0
  708. package/dist/components/Organisms/ReviewComponent/MoreQuestionsStyles.d.ts +31 -0
  709. package/dist/components/Organisms/ReviewComponent/MoreQuestionsStyles.js +33 -0
  710. package/dist/components/Organisms/ReviewComponent/MoreQuestionsStyles.js.map +1 -0
  711. package/dist/components/Organisms/ReviewComponent/Review.d.ts +39 -0
  712. package/dist/components/Organisms/ReviewComponent/Review.js +262 -0
  713. package/dist/components/Organisms/ReviewComponent/Review.js.map +1 -0
  714. package/dist/components/Organisms/ReviewComponent/ReviewPresenter.d.ts +35 -0
  715. package/dist/components/Organisms/ReviewComponent/ReviewPresenter.js +126 -0
  716. package/dist/components/Organisms/ReviewComponent/ReviewPresenter.js.map +1 -0
  717. package/dist/components/Organisms/ReviewComponent/ReviewPresenter.stories.d.ts +122 -0
  718. package/dist/components/Organisms/ReviewComponent/ReviewPresenter.stories.js +116 -0
  719. package/dist/components/Organisms/ReviewComponent/ReviewPresenter.stories.js.map +1 -0
  720. package/dist/components/Organisms/ReviewComponent/ReviewStyles.d.ts +77 -0
  721. package/dist/components/Organisms/ReviewComponent/ReviewStyles.js +64 -0
  722. package/dist/components/Organisms/ReviewComponent/ReviewStyles.js.map +1 -0
  723. package/dist/components/Organisms/ReviewComponent/reviewUtils.d.ts +1556 -0
  724. package/dist/components/Organisms/ReviewComponent/reviewUtils.js +3017 -0
  725. package/dist/components/Organisms/ReviewComponent/reviewUtils.js.map +1 -0
  726. package/dist/components/Organisms/ReviewComponent/selectionUtils.d.ts +1287 -0
  727. package/dist/components/Organisms/ReviewComponent/selectionUtils.js +2427 -0
  728. package/dist/components/Organisms/ReviewComponent/selectionUtils.js.map +1 -0
  729. package/dist/components/Organisms/StudentEditor/StudentEditor.stories.d.ts +8 -0
  730. package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js +196 -0
  731. package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js.map +1 -0
  732. package/dist/components/Organisms/StudentEditor/components/EditorStyles.d.ts +41 -0
  733. package/dist/components/Organisms/StudentEditor/components/EditorStyles.js +44 -0
  734. package/dist/components/Organisms/StudentEditor/components/EditorStyles.js.map +1 -0
  735. package/dist/components/Organisms/StudentEditor/components/MathElement.d.ts +7 -0
  736. package/dist/components/Organisms/StudentEditor/components/MathElement.js +53 -0
  737. package/dist/components/Organisms/StudentEditor/components/MathElement.js.map +1 -0
  738. package/dist/components/Organisms/StudentEditor/components/MathKeyboard.d.ts +8 -0
  739. package/dist/components/Organisms/StudentEditor/components/MathKeyboard.js +78 -0
  740. package/dist/components/Organisms/StudentEditor/components/MathKeyboard.js.map +1 -0
  741. package/dist/components/Organisms/StudentEditor/components/MathModal.d.ts +8 -0
  742. package/dist/components/Organisms/StudentEditor/components/MathModal.js +353 -0
  743. package/dist/components/Organisms/StudentEditor/components/MathModal.js.map +1 -0
  744. package/dist/components/Organisms/StudentEditor/components/Shortcuts.d.ts +4 -0
  745. package/dist/components/Organisms/StudentEditor/components/Shortcuts.js +90 -0
  746. package/dist/components/Organisms/StudentEditor/components/Shortcuts.js.map +1 -0
  747. package/dist/components/Organisms/StudentEditor/components/TextEditor.d.ts +2 -0
  748. package/dist/components/Organisms/StudentEditor/components/TextEditor.js +552 -0
  749. package/dist/components/Organisms/StudentEditor/components/TextEditor.js.map +1 -0
  750. package/dist/components/Organisms/StudentEditor/components/mathModalStyles.d.ts +138 -0
  751. package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js +280 -0
  752. package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js.map +1 -0
  753. package/dist/components/Organisms/StudentEditor/utils/keyboard-config.d.ts +164 -0
  754. package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js +485 -0
  755. package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js.map +1 -0
  756. package/dist/components/Organisms/StudentEditor/utils/slate-conversions.d.ts +19 -0
  757. package/dist/components/Organisms/StudentEditor/utils/slate-conversions.js +326 -0
  758. package/dist/components/Organisms/StudentEditor/utils/slate-conversions.js.map +1 -0
  759. package/dist/components/Organisms/StudentEditor/utils/slate-plugins.d.ts +1 -0
  760. package/dist/components/Organisms/StudentEditor/utils/slate-plugins.js +17 -0
  761. package/dist/components/Organisms/StudentEditor/utils/slate-plugins.js.map +1 -0
  762. package/dist/components/Organisms/StudentInsights/GaugeChart.d.ts +9 -0
  763. package/dist/components/Organisms/StudentInsights/GaugeChart.js +193 -0
  764. package/dist/components/Organisms/StudentInsights/GaugeChart.js.map +1 -0
  765. package/dist/components/Organisms/StudentInsights/InsightsComponent.d.ts +14 -0
  766. package/dist/components/Organisms/StudentInsights/InsightsComponent.js +39 -0
  767. package/dist/components/Organisms/StudentInsights/InsightsComponent.js.map +1 -0
  768. package/dist/components/Organisms/StudentInsights/InsightsComponent.stories.d.ts +334 -0
  769. package/dist/components/Organisms/StudentInsights/InsightsComponent.stories.js +397 -0
  770. package/dist/components/Organisms/StudentInsights/InsightsComponent.stories.js.map +1 -0
  771. package/dist/components/Organisms/StudentInsights/PieChart.d.ts +8 -0
  772. package/dist/components/Organisms/StudentInsights/PieChart.js +124 -0
  773. package/dist/components/Organisms/StudentInsights/PieChart.js.map +1 -0
  774. package/dist/components/Organisms/StudentInsights/insights.styles.d.ts +177 -0
  775. package/dist/components/Organisms/StudentInsights/insights.styles.js +128 -0
  776. package/dist/components/Organisms/StudentInsights/insights.styles.js.map +1 -0
  777. package/dist/components/Organisms/StudentInsights/text.d.ts +7 -0
  778. package/dist/components/Organisms/StudentInsights/text.js +36 -0
  779. package/dist/components/Organisms/StudentInsights/text.js.map +1 -0
  780. package/dist/components/Organisms/TableComponent/TableComponent.d.ts +2 -0
  781. package/dist/components/Organisms/TableComponent/TableComponent.js +59 -0
  782. package/dist/components/Organisms/TableComponent/TableComponent.js.map +1 -0
  783. package/dist/components/Organisms/TableComponent/TableComponent.stories.d.ts +3 -0
  784. package/dist/components/Organisms/TableComponent/TableComponent.stories.js +189 -0
  785. package/dist/components/Organisms/TableComponent/TableComponent.stories.js.map +1 -0
  786. package/dist/components/Organisms/TutorFeedback/TutorFeedback.d.ts +2 -0
  787. package/dist/components/Organisms/TutorFeedback/TutorFeedback.js +85 -0
  788. package/dist/components/Organisms/TutorFeedback/TutorFeedback.js.map +1 -0
  789. package/dist/components/Organisms/TutorFeedback/TutorFeedback.stories.d.ts +4 -0
  790. package/dist/components/Organisms/TutorFeedback/TutorFeedback.stories.js +103 -0
  791. package/dist/components/Organisms/TutorFeedback/TutorFeedback.stories.js.map +1 -0
  792. package/dist/components/themes/Theme.d.ts +61 -0
  793. package/dist/components/themes/Theme.js +63 -0
  794. package/dist/components/themes/Theme.js.map +1 -0
  795. package/dist/index.d.ts +62 -0
  796. package/dist/index.js +133 -0
  797. package/dist/index.js.map +1 -0
  798. package/dist/stories/Button.stories.d.ts +6 -0
  799. package/dist/stories/Button.stories.js +45 -0
  800. package/dist/stories/Button.stories.js.map +1 -0
  801. package/dist/stories/Checkbox.stories.d.ts +4 -0
  802. package/dist/stories/Checkbox.stories.js +35 -0
  803. package/dist/stories/Checkbox.stories.js.map +1 -0
  804. package/dist/stories/FloatingButton.stories.d.ts +11 -0
  805. package/dist/stories/FloatingButton.stories.js +52 -0
  806. package/dist/stories/FloatingButton.stories.js.map +1 -0
  807. package/dist/stories/Input.stories.d.ts +4 -0
  808. package/dist/stories/Input.stories.js +35 -0
  809. package/dist/stories/Input.stories.js.map +1 -0
  810. package/dist/stories/Modal.stories.d.ts +4 -0
  811. package/dist/stories/Modal.stories.js +39 -0
  812. package/dist/stories/Modal.stories.js.map +1 -0
  813. package/dist/stories/Radio.stories.d.ts +4 -0
  814. package/dist/stories/Radio.stories.js +33 -0
  815. package/dist/stories/Radio.stories.js.map +1 -0
  816. package/dist/stories/Select.stories.d.ts +4 -0
  817. package/dist/stories/Select.stories.js +36 -0
  818. package/dist/stories/Select.stories.js.map +1 -0
  819. package/dist/stories/Spinner.stories.d.ts +4 -0
  820. package/dist/stories/Spinner.stories.js +32 -0
  821. package/dist/stories/Spinner.stories.js.map +1 -0
  822. package/dist/stories/Switch.stories.d.ts +4 -0
  823. package/dist/stories/Switch.stories.js +33 -0
  824. package/dist/stories/Switch.stories.js.map +1 -0
  825. package/dist/stories/Textarea.stories.d.ts +4 -0
  826. package/dist/stories/Textarea.stories.js +32 -0
  827. package/dist/stories/Textarea.stories.js.map +1 -0
  828. package/dist/stories/Toast.stories.d.ts +4 -0
  829. package/dist/stories/Toast.stories.js +32 -0
  830. package/dist/stories/Toast.stories.js.map +1 -0
  831. package/dist/stories/Typography.stories.d.ts +4 -0
  832. package/dist/stories/Typography.stories.js +35 -0
  833. package/dist/stories/Typography.stories.js.map +1 -0
  834. package/dist/utils/Helper.d.ts +23 -0
  835. package/dist/utils/Helper.js +191 -0
  836. package/dist/utils/Helper.js.map +1 -0
  837. package/dist/utils/LearningPathUtils.d.ts +59 -0
  838. package/dist/utils/LearningPathUtils.js +60 -0
  839. package/dist/utils/LearningPathUtils.js.map +1 -0
  840. package/dist/utils/ReviewPresenterUtils.d.ts +9 -0
  841. package/dist/utils/ReviewPresenterUtils.js +13 -0
  842. package/dist/utils/ReviewPresenterUtils.js.map +1 -0
  843. package/dist/utils/TutorConstants.d.ts +78 -0
  844. package/dist/utils/TutorConstants.js +308 -0
  845. package/dist/utils/TutorConstants.js.map +1 -0
  846. package/dist/utils/accordion/accordionHelper.d.ts +7 -0
  847. package/dist/utils/accordion/accordionHelper.js +95 -0
  848. package/dist/utils/accordion/accordionHelper.js.map +1 -0
  849. package/dist/utils/accordion/accordion_images.d.ts +31 -0
  850. package/dist/utils/accordion/accordion_images.js +32 -0
  851. package/dist/utils/accordion/accordion_images.js.map +1 -0
  852. package/dist/utils/battery-customisation.d.ts +36 -0
  853. package/dist/utils/battery-customisation.js +35 -0
  854. package/dist/utils/battery-customisation.js.map +1 -0
  855. package/dist/utils/common-utils.d.ts +54 -0
  856. package/dist/utils/common-utils.js +393 -0
  857. package/dist/utils/common-utils.js.map +1 -0
  858. package/dist/utils/constants.d.ts +762 -0
  859. package/dist/utils/constants.js +3351 -0
  860. package/dist/utils/constants.js.map +1 -0
  861. package/dist/utils/crypto.d.ts +2 -0
  862. package/dist/utils/crypto.js +19 -0
  863. package/dist/utils/crypto.js.map +1 -0
  864. package/dist/utils/customTheme.d.ts +1 -0
  865. package/dist/utils/customTheme.js +21 -0
  866. package/dist/utils/customTheme.js.map +1 -0
  867. package/dist/utils/dateUtils.d.ts +1 -0
  868. package/dist/utils/dateUtils.js +55 -0
  869. package/dist/utils/dateUtils.js.map +1 -0
  870. package/dist/utils/emotionalLottieConstants.d.ts +6 -0
  871. package/dist/utils/emotionalLottieConstants.js +9 -0
  872. package/dist/utils/emotionalLottieConstants.js.map +1 -0
  873. package/dist/utils/emotionalScriptConstants.d.ts +15 -0
  874. package/dist/utils/emotionalScriptConstants.js +92 -0
  875. package/dist/utils/emotionalScriptConstants.js.map +1 -0
  876. package/dist/utils/emotions.d.ts +4 -0
  877. package/dist/utils/emotions.js +7 -0
  878. package/dist/utils/emotions.js.map +1 -0
  879. package/dist/utils/excludeSubject.d.ts +2 -0
  880. package/dist/utils/excludeSubject.js +5 -0
  881. package/dist/utils/excludeSubject.js.map +1 -0
  882. package/dist/utils/math-images.d.ts +6 -0
  883. package/dist/utils/math-images.js +9 -0
  884. package/dist/utils/math-images.js.map +1 -0
  885. package/dist/utils/pagination/Pagination.d.ts +11 -0
  886. package/dist/utils/pagination/Pagination.js +76 -0
  887. package/dist/utils/pagination/Pagination.js.map +1 -0
  888. package/dist/utils/presentationModes.d.ts +58 -0
  889. package/dist/utils/presentationModes.js +62 -0
  890. package/dist/utils/presentationModes.js.map +1 -0
  891. package/dist/utils/subject-icons.d.ts +9 -0
  892. package/dist/utils/subject-icons.js +10 -0
  893. package/dist/utils/subject-icons.js.map +1 -0
  894. package/dist/utils/taskUtils.d.ts +1 -0
  895. package/dist/utils/taskUtils.js +20 -0
  896. package/dist/utils/taskUtils.js.map +1 -0
  897. package/dist/utils/testingutils.d.ts +3110 -0
  898. package/dist/utils/testingutils.js +15640 -0
  899. package/dist/utils/testingutils.js.map +1 -0
  900. package/dist/utils/tutor-utils.d.ts +1 -0
  901. package/dist/utils/tutor-utils.js +27 -0
  902. package/dist/utils/tutor-utils.js.map +1 -0
  903. package/dist/utils/wall/wall-constants.d.ts +43 -0
  904. package/dist/utils/wall/wall-constants.js +231 -0
  905. package/dist/utils/wall/wall-constants.js.map +1 -0
  906. package/dist/utils/wall/wall-imges.d.ts +64 -0
  907. package/dist/utils/wall/wall-imges.js +64 -0
  908. package/dist/utils/wall/wall-imges.js.map +1 -0
  909. package/dist/utils/wall/wall-message-bank.d.ts +28 -0
  910. package/dist/utils/wall/wall-message-bank.js +248 -0
  911. package/dist/utils/wall/wall-message-bank.js.map +1 -0
  912. package/dist/utils/wall-constants.d.ts +136 -0
  913. package/dist/utils/wall-constants.js +260 -0
  914. package/dist/utils/wall-constants.js.map +1 -0
  915. package/dist/utils/wall-images.d.ts +64 -0
  916. package/dist/utils/wall-images.js +67 -0
  917. package/dist/utils/wall-images.js.map +1 -0
  918. package/package.json +132 -0
@@ -0,0 +1,2427 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.questionSelectionData = void 0;
4
+ exports.questionSelectionData = [
5
+ {
6
+ "questionObject": {
7
+ "question_type": "2",
8
+ "solution": "<P><p>Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity.</p></P>",
9
+ "uuid": "67b25a53-f206-47e3-91b8-286a7c732a17",
10
+ "question_layout": "\\(p(x) = (x^3 - x + 5)(x^4 + 1)\\)  \\(=x^3(x^4+1)+(-x)(x^4+1)+5(x^4+1)\\)  \\(=\\left(x^3\\times x^4)+\\left(x^3\\times1\\right)+(-x\\times x^4\\right)+(-x\\times1)+(5\\times x^4)+(5\\times1)\\)   \\(=x^7+x^3-x^5-x+5x^4+5\\)",
11
+ "options_layout": [
12
+ "\\(p(x) = (x^3 - x + 5)(x^4 + 1)\\)  \\(=x^3(x^4+1)+(-x)(x^4+1)+5(x^4+1)\\)  \\(=\\left(x^3\\times x^4)+\\left(x^3\\times1\\right)+(-x\\times x^4\\right)+(-x\\times1)+(5\\times x^4)+(5\\times1)\\)   \\(=x^7+x^3-x^5-x+5x^4+5\\)",
13
+ "Adolescence is the period before human reproduction, and puberty is the beginning of adolescence.",
14
+ "<p>Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity.</p>",
15
+ "Adolescence is the period of human reproduction, and puberty marks the end of reproductive maturity."
16
+ ],
17
+ "answers_layout": [
18
+ "<p>Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity.</p>"
19
+ ],
20
+ "version_uuid": "342eeff8-446b-4caa-9aea-52ed46074a81",
21
+ "images_details": [],
22
+ "option_image_details": [],
23
+ "solution_layout": [
24
+ {
25
+ "layout_type": "Normal",
26
+ "data": [
27
+ {
28
+ "text_layout": "<p>Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity.</p>",
29
+ "text": "<p>Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity.</p>",
30
+ "media_type": "",
31
+ "media": ""
32
+ }
33
+ ]
34
+ }
35
+ ],
36
+ "rubric": {},
37
+ "hintandexplanations": [
38
+ {
39
+ "_id": "6769134291d8c8fd2c79f128",
40
+ "hint": [],
41
+ "explanation": [
42
+ {
43
+ "layout_type": "Normal",
44
+ "data": [
45
+ {
46
+ "text_layout": "The correct answer is \"Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity\" because it accurately describes adolescence as a developmental transition and puberty as achieving reproductive capability. The other options are incorrect. \"Adolescence is the period of human reproduction, and puberty is the end of adolescence\" is wrong since adolescence is not a reproductive period. \"Adolescence is the period before human reproduction, and puberty is the beginning of adolescence\" is false since puberty occurs during adolescence, not at the start. \"Adolescence is the period of human reproduction, and puberty marks the end of reproductive maturity\" is incorrect as adolescence does not define a reproductive period, and maturity does not end with puberty.",
47
+ "text": "The correct answer is \"Adolescence is the period of transition from childhood to adulthood, and puberty marks attainment of reproductive maturity\" because it accurately describes adolescence as a developmental transition and puberty as achieving reproductive capability. The other options are incorrect. \"Adolescence is the period of human reproduction, and puberty is the end of adolescence\" is wrong since adolescence is not a reproductive period. \"Adolescence is the period before human reproduction, and puberty is the beginning of adolescence\" is false since puberty occurs during adolescence, not at the start. \"Adolescence is the period of human reproduction, and puberty marks the end of reproductive maturity\" is incorrect as adolescence does not define a reproductive period, and maturity does not end with puberty.",
48
+ "media_type": "image",
49
+ "media": "",
50
+ "_id": "6769134291d8c8fd2c79f12a"
51
+ }
52
+ ],
53
+ "_id": "6769134291d8c8fd2c79f129"
54
+ }
55
+ ],
56
+ "question_id": "67b25a53-f206-47e3-91b8-286a7c732a17",
57
+ "createdAt": "2024-12-23T07:37:38.085Z",
58
+ "updatedAt": "2024-12-23T07:37:38.085Z",
59
+ "__v": 0
60
+ }
61
+ ],
62
+ "syllabusMapping": [
63
+ {
64
+ "curriculum": {
65
+ "id": "38416",
66
+ "title": "CBSE"
67
+ },
68
+ "grade": {
69
+ "id": "43141",
70
+ "title": "Grade 8"
71
+ },
72
+ "subject": {
73
+ "id": "91967",
74
+ "title": "Biology"
75
+ },
76
+ "chapter": {
77
+ "id": "92421",
78
+ "title": "Reaching The Age of Adolescence"
79
+ },
80
+ "topic": {
81
+ "id": "9451874",
82
+ "title": "Adolescence and Puberty"
83
+ },
84
+ "difficulty": {
85
+ "id": "47128"
86
+ },
87
+ "assessmentType": "Formative",
88
+ "cognitivLevel": "UnderStanding"
89
+ }
90
+ ],
91
+ "answer_schema": "1",
92
+ "showGreen": true
93
+ },
94
+ "taskType": "",
95
+ "userAnswer": {
96
+ "answerResult": [
97
+ {}
98
+ ],
99
+ "overAllResult": true
100
+ }
101
+ },
102
+ {
103
+ questionObject: {
104
+ question_type: "2",
105
+ question: "What is the cube of the number 5?",
106
+ solution: "<p>The cube of 5 is 5 × 5 × 5 = 125. </p>",
107
+ uuid: "aab397a1-9c11-47c5-bd59-08089544ce72",
108
+ question_layout: "<p>What is the cube of the number 5?</p>",
109
+ question_student_layout: ["<p>What is the cube of the number 5?</p>"],
110
+ options: ["25", "50", "125", "150"],
111
+ options_layout: ["25", "50", "125", "150"],
112
+ answers: ["125"],
113
+ answers_layout: ["125"],
114
+ duration: "",
115
+ images: [],
116
+ sub_question: [],
117
+ grades: [{ grade: "43141", difficulty: "47081" }],
118
+ curriculum: ["38416"],
119
+ subjects: ["43150"],
120
+ chapters: ["91916"],
121
+ topics: ["9453045"],
122
+ sub_topic: [],
123
+ assessmentType: ["Formative"],
124
+ cognitivLevel: ["Application"],
125
+ status: "0",
126
+ version: "1.2",
127
+ is_subquestion: false,
128
+ created_by: "Vandana",
129
+ modified_by: "CMMA Maths",
130
+ is_teacher: true,
131
+ is_student: true,
132
+ created_by_id: "127",
133
+ modified_by_id: "94",
134
+ createdAt: "2024-02-26T10:57:24.813Z",
135
+ version_uuid: "af2d846f-f274-4028-a61b-420626dff6af",
136
+ approved_by_id: "94",
137
+ approved_by: "CMMA Maths",
138
+ is_archive: false,
139
+ layout_type: null,
140
+ images_details: [
141
+ {
142
+ "url": "https://student-app-dev-themes.s3.ap-south-1.amazonaws.com/5e42e348458f4f3ba3b4f95eeb47119c8ba7b29c811c4f3187416494f15a8891image.png",
143
+ "aspect_ratio_type": 1
144
+ }
145
+ ],
146
+ knowledge_cell: ["65b92021b08b23325238251a"],
147
+ source: "Source G",
148
+ option_image_details: [],
149
+ labels: {
150
+ normal: {
151
+ prompt_id: "65d35a9a48a34e9470928cd9",
152
+ source_coteacher_uuid: "adbec745-a134-48c4-8047-446962fc2c5b",
153
+ },
154
+ syllabus: [
155
+ {
156
+ curriculum: "38416",
157
+ grade: "43141",
158
+ subject: "43150",
159
+ chapter: "91916",
160
+ topic: "9453045",
161
+ difficulty: "47081",
162
+ },
163
+ ],
164
+ explanation: { prompt_id: "65d38f8f48a34e947092b190" },
165
+ isAdvanced: false,
166
+ basket: true,
167
+ },
168
+ updatedAt: "2024-09-09T06:04:13.667Z",
169
+ __v: 0,
170
+ approvedAt: "2024-07-16T05:52:06.674Z",
171
+ hintandexplanations: [
172
+ {
173
+ _id: "65dc6e94672c9c7702c25742",
174
+ hint: [],
175
+ explanation: [
176
+ {
177
+ layout_type: "Normal",
178
+ data: [
179
+ {
180
+ text_layout: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
181
+ text: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
182
+ media_type: "image",
183
+ media: "",
184
+ _id: "65d38f8fe04ce2b731a62d6d",
185
+ },
186
+ ],
187
+ _id: "65dc6e94672c9c7702c25743",
188
+ },
189
+ ],
190
+ question_id: "aab397a1-9c11-47c5-bd59-08089544ce72",
191
+ createdAt: "2024-02-26T10:57:24.828Z",
192
+ updatedAt: "2024-02-26T10:57:24.828Z",
193
+ __v: 0,
194
+ },
195
+ ],
196
+ syllabusMapping: [
197
+ {
198
+ curriculum: { id: "38416", title: "CBSE" },
199
+ grade: { id: "43141", title: "Grade 8" },
200
+ subject: { id: "43150", title: "Mathematics" },
201
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
202
+ topic: { id: "9453045", title: "Cubes" },
203
+ difficulty: { id: "47081" },
204
+ assessmentType: "Formative",
205
+ cognitivLevel: "Application",
206
+ },
207
+ ],
208
+ showGreen: true,
209
+ },
210
+ userAnswer: {
211
+ answerResult: [
212
+ { actualAnswer: "125", givenAnswer: "150", isCorrect: false },
213
+ ],
214
+ overAllResult: false,
215
+ chatId: "5d98d17a-9f8b-4091-b236-6b295e5f3420",
216
+ },
217
+ dispalyedQues: [
218
+ {
219
+ basket_id: "66dec4f247114c21928ac344",
220
+ learning_mode: "assessment",
221
+ non_basket_id: "",
222
+ mode: "normal",
223
+ eval_state: "advanced",
224
+ current_status: "",
225
+ current_rule: "",
226
+ current_step_id: "assessment",
227
+ prev_step_id: "",
228
+ prev_basket_id: "",
229
+ visited_question_indices: { m_index: 3, s_index: 0 },
230
+ contents: [],
231
+ questions: [
232
+ {
233
+ question: "af2d846f-f274-4028-a61b-420626dff6af",
234
+ user_answer: '{"answerResult":[{"actualAnswer":"125","givenAnswer":"150","isCorrect":false}],"overAllResult":false,"chatId":"5d98d17a-9f8b-4091-b236-6b295e5f3420"}',
235
+ difficulty_level: "",
236
+ result: false,
237
+ question_sequence: "main_question",
238
+ created_at: "2024-09-09T09:51:05.038Z",
239
+ question_details: {
240
+ question_type: "2",
241
+ question: "What is the cube of the number 5?",
242
+ solution: "<p>The cube of 5 is 5 × 5 × 5 = 125. </p>",
243
+ uuid: "aab397a1-9c11-47c5-bd59-08089544ce72",
244
+ question_layout: "<p>What is the cube of the number 5?</p>",
245
+ question_student_layout: [
246
+ "<p>What is the cube of the number 5?</p>",
247
+ ],
248
+ options: ["25", "50", "125", "150"],
249
+ options_layout: ["25", "50", "125", "150"],
250
+ answers: ["125"],
251
+ answers_layout: ["125"],
252
+ duration: "",
253
+ images: [],
254
+ sub_question: [],
255
+ grades: [{ grade: "43141", difficulty: "47081" }],
256
+ curriculum: ["38416"],
257
+ subjects: ["43150"],
258
+ chapters: ["91916"],
259
+ topics: ["9453045"],
260
+ sub_topic: [],
261
+ assessmentType: ["Formative"],
262
+ cognitivLevel: ["Application"],
263
+ status: "0",
264
+ version: "1.2",
265
+ is_subquestion: false,
266
+ created_by: "Vandana",
267
+ modified_by: "CMMA Maths",
268
+ is_teacher: true,
269
+ is_student: true,
270
+ created_by_id: "127",
271
+ modified_by_id: "94",
272
+ createdAt: "2024-02-26T10:57:24.813Z",
273
+ version_uuid: "af2d846f-f274-4028-a61b-420626dff6af",
274
+ approved_by_id: "94",
275
+ approved_by: "CMMA Maths",
276
+ is_archive: false,
277
+ layout_type: null,
278
+ images_details: [],
279
+ knowledge_cell: ["65b92021b08b23325238251a"],
280
+ source: "Source G",
281
+ option_image_details: [],
282
+ labels: {
283
+ normal: {
284
+ prompt_id: "65d35a9a48a34e9470928cd9",
285
+ source_coteacher_uuid: "adbec745-a134-48c4-8047-446962fc2c5b",
286
+ },
287
+ syllabus: [
288
+ {
289
+ curriculum: "38416",
290
+ grade: "43141",
291
+ subject: "43150",
292
+ chapter: "91916",
293
+ topic: "9453045",
294
+ difficulty: "47081",
295
+ },
296
+ ],
297
+ explanation: { prompt_id: "65d38f8f48a34e947092b190" },
298
+ isAdvanced: false,
299
+ basket: true,
300
+ },
301
+ updatedAt: "2024-09-09T06:04:13.667Z",
302
+ __v: 0,
303
+ approvedAt: "2024-07-16T05:52:06.674Z",
304
+ hintandexplanations: [
305
+ {
306
+ _id: "65dc6e94672c9c7702c25742",
307
+ hint: [],
308
+ explanation: [
309
+ {
310
+ layout_type: "Normal",
311
+ data: [
312
+ {
313
+ text_layout: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
314
+ text: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
315
+ media_type: "image",
316
+ media: "",
317
+ _id: "65d38f8fe04ce2b731a62d6d",
318
+ },
319
+ ],
320
+ _id: "65dc6e94672c9c7702c25743",
321
+ },
322
+ ],
323
+ question_id: "aab397a1-9c11-47c5-bd59-08089544ce72",
324
+ createdAt: "2024-02-26T10:57:24.828Z",
325
+ updatedAt: "2024-02-26T10:57:24.828Z",
326
+ __v: 0,
327
+ },
328
+ ],
329
+ syllabusMapping: [
330
+ {
331
+ curriculum: { id: "38416", title: "CBSE" },
332
+ grade: { id: "43141", title: "Grade 8" },
333
+ subject: { id: "43150", title: "Mathematics" },
334
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
335
+ topic: { id: "9453045", title: "Cubes" },
336
+ difficulty: { id: "47081" },
337
+ assessmentType: "Formative",
338
+ cognitivLevel: "Application",
339
+ },
340
+ ],
341
+ },
342
+ main_question_count: "1",
343
+ },
344
+ {
345
+ question: "baf2dcad-7a45-462b-94df-63bebe775bc1",
346
+ user_answer: '{"answerResult":[{"actualAnswer":"941192","givenAnswer":"8000","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc96ecc"}',
347
+ difficulty_level: "",
348
+ result: true,
349
+ question_sequence: "main_question",
350
+ created_at: "2024-09-09T09:51:09.354Z",
351
+ question_details: {
352
+ question_type: "2",
353
+ question: "What is the cube of the largest two-digit even number?",
354
+ solution: "<p>The largest two-digit even number is 98. The cube of 98 is 98 × 98 × 98 = 941192.</p>",
355
+ uuid: "db1fd729-8d57-4364-8358-213eea0320fe",
356
+ question_layout: "<p>What is the cube of the largest two-digit even number?</p>",
357
+ question_student_layout: [
358
+ "<p>What is the cube of the largest two-digit even number?</p>",
359
+ ],
360
+ options: ["64000", "6859", "8000", "941192"],
361
+ options_layout: ["64000", "6859", "8000", "<p>941192</p>"],
362
+ answers: ["941192"],
363
+ answers_layout: ["<p>941192</p>"],
364
+ duration: "",
365
+ images: [],
366
+ sub_question: [],
367
+ grades: [{ grade: "43141", difficulty: "47081" }],
368
+ curriculum: ["38416"],
369
+ subjects: ["43150"],
370
+ chapters: ["91916"],
371
+ topics: ["9453045"],
372
+ sub_topic: [],
373
+ assessmentType: ["Formative"],
374
+ cognitivLevel: ["Application"],
375
+ status: "0",
376
+ version: "1.3",
377
+ is_subquestion: false,
378
+ created_by: "Vandana",
379
+ modified_by: "CMMA Maths",
380
+ is_teacher: true,
381
+ is_student: true,
382
+ created_by_id: "127",
383
+ modified_by_id: "94",
384
+ createdAt: "2024-02-26T12:05:39.013Z",
385
+ version_uuid: "baf2dcad-7a45-462b-94df-63bebe775bc1",
386
+ approved_by_id: "94",
387
+ approved_by: "CMMA Maths",
388
+ is_archive: false,
389
+ layout_type: null,
390
+ images_details: [],
391
+ knowledge_cell: ["65b92021b08b23325238251a"],
392
+ source: "Source G",
393
+ option_image_details: [],
394
+ labels: {
395
+ normal: {
396
+ prompt_id: "65d35b0048a34e9470928d1e",
397
+ source_coteacher_uuid: "5420b263-7f2c-4091-b7e9-b257292cd40c",
398
+ },
399
+ syllabus: [
400
+ {
401
+ curriculum: "38416",
402
+ grade: "43141",
403
+ subject: "43150",
404
+ chapter: "91916",
405
+ topic: "9453045",
406
+ difficulty: "47120",
407
+ },
408
+ ],
409
+ explanation: { prompt_id: "65d38ea148a34e947092b0df" },
410
+ isAdvanced: false,
411
+ basket: true,
412
+ },
413
+ updatedAt: "2024-09-09T06:04:13.667Z",
414
+ __v: 0,
415
+ approvedAt: "2024-07-16T05:52:06.674Z",
416
+ hintandexplanations: [
417
+ {
418
+ _id: "65dc7e934fba1266d2d1a0bc",
419
+ hint: [],
420
+ explanation: [
421
+ {
422
+ layout_type: "Normal",
423
+ data: [
424
+ {
425
+ text_layout: "<p> Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100. </p>",
426
+ text: "Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100.",
427
+ media_type: "image",
428
+ media: "",
429
+ _id: "65d6e124a96478be69ebf2be",
430
+ },
431
+ ],
432
+ _id: "65dc7e934fba1266d2d1a0bd",
433
+ },
434
+ ],
435
+ question_id: "db1fd729-8d57-4364-8358-213eea0320fe",
436
+ createdAt: "2024-02-26T12:05:39.027Z",
437
+ updatedAt: "2024-02-26T12:05:39.027Z",
438
+ __v: 0,
439
+ },
440
+ ],
441
+ syllabusMapping: [
442
+ {
443
+ curriculum: { id: "38416", title: "CBSE" },
444
+ grade: { id: "43141", title: "Grade 8" },
445
+ subject: { id: "43150", title: "Mathematics" },
446
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
447
+ topic: { id: "9453045", title: "Cubes" },
448
+ difficulty: { id: "47081" },
449
+ assessmentType: "Formative",
450
+ cognitivLevel: "Application",
451
+ },
452
+ ],
453
+ },
454
+ main_question_count: "2",
455
+ },
456
+ {
457
+ question: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
458
+ user_answer: '{"answerResult":[{"actualAnswer":"64","givenAnswer":"64","isCorrect":true}],"overAllResult":true,"chatId":"284ec739-a6e8-41d6-8d46-f8d9a85fe061"}',
459
+ difficulty_level: "",
460
+ result: false,
461
+ question_sequence: "main_question",
462
+ created_at: "2024-09-09T09:51:11.962Z",
463
+ question_details: {
464
+ question_type: "2",
465
+ question: "Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?",
466
+ solution: "<p>64 is the smallest multiple of 4 that is also a perfect cube because it is equal to \\(4^{3}\\)</p>",
467
+ uuid: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
468
+ question_layout: "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
469
+ question_student_layout: [
470
+ "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
471
+ ],
472
+ options: ["64", "128", "256", "512"],
473
+ options_layout: ["64", "128", "256", "512"],
474
+ answers: ["64"],
475
+ answers_layout: ["64"],
476
+ duration: "",
477
+ images: [],
478
+ sub_question: [],
479
+ grades: [{ grade: "43141", difficulty: "47081" }],
480
+ curriculum: ["38416"],
481
+ subjects: ["43150"],
482
+ chapters: ["91916"],
483
+ topics: ["9453045"],
484
+ sub_topic: [],
485
+ assessmentType: ["Formative"],
486
+ cognitivLevel: ["Application"],
487
+ status: "0",
488
+ version: "1.4",
489
+ is_subquestion: false,
490
+ created_by: "Vandana",
491
+ modified_by: "CMMA Maths",
492
+ is_teacher: true,
493
+ is_student: true,
494
+ created_by_id: "127",
495
+ modified_by_id: "94",
496
+ createdAt: "2024-02-26T11:54:32.015Z",
497
+ version_uuid: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
498
+ approved_by_id: "94",
499
+ approved_by: "CMMA Maths",
500
+ is_archive: false,
501
+ layout_type: null,
502
+ images_details: [],
503
+ knowledge_cell: ["65b9211fb08b2332523835ea"],
504
+ source: "Source G",
505
+ option_image_details: [],
506
+ labels: {
507
+ normal: {
508
+ prompt_id: "65d35e2948a34e9470928f44",
509
+ source_coteacher_uuid: "21f7ee77-9fcd-446d-bc24-53e89b8fd573",
510
+ },
511
+ syllabus: [
512
+ {
513
+ curriculum: "38416",
514
+ grade: "43141",
515
+ subject: "43150",
516
+ chapter: "91916",
517
+ topic: "9453045",
518
+ difficulty: "47081",
519
+ },
520
+ ],
521
+ explanation: { prompt_id: "65d3889248a34e947092ac6a" },
522
+ isAdvanced: false,
523
+ basket: true,
524
+ },
525
+ updatedAt: "2024-09-09T06:04:13.667Z",
526
+ __v: 0,
527
+ approvedAt: "2024-07-16T05:52:06.674Z",
528
+ hintandexplanations: [
529
+ {
530
+ _id: "65dc7bf8672c9c7702c2674e",
531
+ hint: [],
532
+ explanation: [
533
+ {
534
+ layout_type: "Normal",
535
+ data: [
536
+ {
537
+ text_layout: "<p>Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube. </p>",
538
+ text: "Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube.",
539
+ media_type: "image",
540
+ media: "",
541
+ _id: "65d72f75a96478be69ecbf8e",
542
+ },
543
+ ],
544
+ _id: "65dc7bf8672c9c7702c2674f",
545
+ },
546
+ ],
547
+ question_id: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
548
+ createdAt: "2024-02-26T11:54:32.030Z",
549
+ updatedAt: "2024-02-26T11:54:32.030Z",
550
+ __v: 0,
551
+ },
552
+ ],
553
+ syllabusMapping: [
554
+ {
555
+ curriculum: { id: "38416", title: "CBSE" },
556
+ grade: { id: "43141", title: "Grade 8" },
557
+ subject: { id: "43150", title: "Mathematics" },
558
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
559
+ topic: { id: "9453045", title: "Cubes" },
560
+ difficulty: { id: "47081" },
561
+ assessmentType: "Formative",
562
+ cognitivLevel: "Application",
563
+ },
564
+ ],
565
+ },
566
+ main_question_count: "3",
567
+ },
568
+ {
569
+ question: "912435da-1927-45a7-96f5-d1b3dec00adf",
570
+ user_answer: '{"answerResult":[{"actualAnswer":"4","givenAnswer":"8","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc1c96ec2c8"}',
571
+ difficulty_level: "",
572
+ result: false,
573
+ question_sequence: "main_question",
574
+ created_at: "2024-09-09T09:51:14.307Z",
575
+ question_details: {
576
+ question_type: "2",
577
+ question: "A number is multiplied by itself three times to get 64. What is the number?",
578
+ solution: "<p>The number is 4 because 4 × 4 × 4 = 64. </p>",
579
+ uuid: "5aa77892-f8b9-4482-a6fe-876212413d4a",
580
+ question_layout: "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
581
+ question_student_layout: [
582
+ "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
583
+ ],
584
+ options: ["2", "4", "6", "8"],
585
+ options_layout: ["2", "4", "6", "8"],
586
+ answers: ["4"],
587
+ answers_layout: ["4"],
588
+ duration: "",
589
+ images: [],
590
+ sub_question: [],
591
+ grades: [{ grade: "43141", difficulty: "47081" }],
592
+ curriculum: ["38416"],
593
+ subjects: ["43150"],
594
+ chapters: ["91916"],
595
+ topics: ["9453045"],
596
+ sub_topic: [],
597
+ assessmentType: ["Formative"],
598
+ cognitivLevel: ["Application"],
599
+ status: "0",
600
+ version: "1.2",
601
+ is_subquestion: false,
602
+ created_by: "Vandana",
603
+ modified_by: "CMMA Maths",
604
+ is_teacher: true,
605
+ is_student: true,
606
+ created_by_id: "127",
607
+ modified_by_id: "94",
608
+ createdAt: "2024-02-26T11:05:32.911Z",
609
+ version_uuid: "912435da-1927-45a7-96f5-d1b3dec00adf",
610
+ approved_by_id: "94",
611
+ approved_by: "CMMA Maths",
612
+ is_archive: false,
613
+ layout_type: null,
614
+ images_details: [],
615
+ knowledge_cell: ["65b92175b08b233252383b6a"],
616
+ source: "Source G",
617
+ option_image_details: [],
618
+ labels: {
619
+ normal: {
620
+ prompt_id: "65d3598f48a34e9470928bee",
621
+ source_coteacher_uuid: "067fbd2d-2621-4f01-acec-55fe428506cd",
622
+ },
623
+ syllabus: [
624
+ {
625
+ curriculum: "38416",
626
+ grade: "43141",
627
+ subject: "43150",
628
+ chapter: "91916",
629
+ topic: [],
630
+ difficulty: "47081",
631
+ },
632
+ ],
633
+ explanation: { prompt_id: "65d3912b48a34e947092b30b" },
634
+ isAdvanced: false,
635
+ basket: true,
636
+ },
637
+ updatedAt: "2024-09-09T06:04:13.667Z",
638
+ __v: 0,
639
+ approvedAt: "2024-07-16T05:52:06.674Z",
640
+ hintandexplanations: [
641
+ {
642
+ _id: "65dc707c4fba1266d2d18e22",
643
+ hint: [],
644
+ explanation: [
645
+ {
646
+ layout_type: "Normal",
647
+ data: [
648
+ {
649
+ text_layout: "<p>Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4. </p>",
650
+ text: "Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4.",
651
+ media_type: "image",
652
+ media: "",
653
+ _id: "65d5e3a06d01968ae918ae67",
654
+ },
655
+ ],
656
+ _id: "65dc707c4fba1266d2d18e23",
657
+ },
658
+ ],
659
+ question_id: "5aa77892-f8b9-4482-a6fe-876212413d4a",
660
+ createdAt: "2024-02-26T11:05:32.932Z",
661
+ updatedAt: "2024-02-26T11:05:32.932Z",
662
+ __v: 0,
663
+ },
664
+ ],
665
+ syllabusMapping: [
666
+ {
667
+ curriculum: { id: "38416", title: "CBSE" },
668
+ grade: { id: "43141", title: "Grade 8" },
669
+ subject: { id: "43150", title: "Mathematics" },
670
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
671
+ topic: { id: "9453045", title: "Cubes" },
672
+ difficulty: { id: "47081" },
673
+ assessmentType: "Formative",
674
+ cognitivLevel: "Application",
675
+ },
676
+ ],
677
+ },
678
+ main_question_count: "4",
679
+ },
680
+ ],
681
+ total_questions: 4,
682
+ },
683
+ ],
684
+ history: [],
685
+ },
686
+ {
687
+ questionObject: {
688
+ question_type: "2",
689
+ question: "What is the cube of the largest two-digit even number?",
690
+ solution: "<p>The largest two-digit even number is 98. The cube of 98 is 98 × 98 × 98 = 941192.</p>",
691
+ uuid: "db1fd729-8d57-4364-8358-213eea0320fe",
692
+ question_layout: "<p>What is the cube of the largest two-digit even number?</p>",
693
+ question_student_layout: [
694
+ "<p>What is the cube of the largest two-digit even number?</p>",
695
+ ],
696
+ options: ["64000", "6859", "8000", "941192"],
697
+ options_layout: ["64000", "6859", "8000", "<p>941192</p>"],
698
+ answers: ["941192"],
699
+ answers_layout: ["<p>941192</p>"],
700
+ duration: "",
701
+ images: [],
702
+ sub_question: [],
703
+ grades: [{ grade: "43141", difficulty: "47081" }],
704
+ curriculum: ["38416"],
705
+ subjects: ["43150"],
706
+ chapters: ["91916"],
707
+ topics: ["9453045"],
708
+ sub_topic: [],
709
+ assessmentType: ["Formative"],
710
+ cognitivLevel: ["Application"],
711
+ status: "0",
712
+ version: "1.3",
713
+ is_subquestion: false,
714
+ created_by: "Vandana",
715
+ modified_by: "CMMA Maths",
716
+ is_teacher: true,
717
+ is_student: true,
718
+ created_by_id: "127",
719
+ modified_by_id: "94",
720
+ createdAt: "2024-02-26T12:05:39.013Z",
721
+ version_uuid: "baf2dcad-7a45-462b-94df-63bebe775bc1",
722
+ approved_by_id: "94",
723
+ approved_by: "CMMA Maths",
724
+ is_archive: false,
725
+ layout_type: null,
726
+ images_details: [],
727
+ knowledge_cell: ["65b92021b08b23325238251a"],
728
+ source: "Source G",
729
+ option_image_details: [],
730
+ labels: {
731
+ normal: {
732
+ prompt_id: "65d35b0048a34e9470928d1e",
733
+ source_coteacher_uuid: "5420b263-7f2c-4091-b7e9-b257292cd40c",
734
+ },
735
+ syllabus: [
736
+ {
737
+ curriculum: "38416",
738
+ grade: "43141",
739
+ subject: "43150",
740
+ chapter: "91916",
741
+ topic: "9453045",
742
+ difficulty: "47120",
743
+ },
744
+ ],
745
+ explanation: { prompt_id: "65d38ea148a34e947092b0df" },
746
+ isAdvanced: false,
747
+ basket: true,
748
+ },
749
+ updatedAt: "2024-09-09T06:04:13.667Z",
750
+ __v: 0,
751
+ approvedAt: "2024-07-16T05:52:06.674Z",
752
+ hintandexplanations: [
753
+ {
754
+ _id: "65dc7e934fba1266d2d1a0bc",
755
+ hint: [],
756
+ explanation: [
757
+ {
758
+ layout_type: "Normal",
759
+ data: [
760
+ {
761
+ text_layout: "<p> Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100. </p>",
762
+ text: "Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100.",
763
+ media_type: "image",
764
+ media: "",
765
+ _id: "65d6e124a96478be69ebf2be",
766
+ },
767
+ ],
768
+ _id: "65dc7e934fba1266d2d1a0bd",
769
+ },
770
+ ],
771
+ question_id: "db1fd729-8d57-4364-8358-213eea0320fe",
772
+ createdAt: "2024-02-26T12:05:39.027Z",
773
+ updatedAt: "2024-02-26T12:05:39.027Z",
774
+ __v: 0,
775
+ },
776
+ ],
777
+ syllabusMapping: [
778
+ {
779
+ curriculum: { id: "38416", title: "CBSE" },
780
+ grade: { id: "43141", title: "Grade 8" },
781
+ subject: { id: "43150", title: "Mathematics" },
782
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
783
+ topic: { id: "9453045", title: "Cubes" },
784
+ difficulty: { id: "47081" },
785
+ assessmentType: "Formative",
786
+ cognitivLevel: "Application",
787
+ },
788
+ ],
789
+ showGreen: true,
790
+ },
791
+ userAnswer: {
792
+ answerResult: [
793
+ { actualAnswer: "941192", givenAnswer: "8000", isCorrect: false },
794
+ ],
795
+ overAllResult: false,
796
+ chatId: "29edd990-a25a-438d-b34e-fc96ecc",
797
+ },
798
+ dispalyedQues: [
799
+ {
800
+ basket_id: "66dec4f247114c21928ac344",
801
+ learning_mode: "assessment",
802
+ non_basket_id: "",
803
+ mode: "normal",
804
+ eval_state: "advanced",
805
+ current_status: "",
806
+ current_rule: "",
807
+ current_step_id: "assessment",
808
+ prev_step_id: "",
809
+ prev_basket_id: "",
810
+ visited_question_indices: { m_index: 3, s_index: 0 },
811
+ contents: [],
812
+ questions: [
813
+ {
814
+ question: "af2d846f-f274-4028-a61b-420626dff6af",
815
+ user_answer: '{"answerResult":[{"actualAnswer":"125","givenAnswer":"150","isCorrect":false}],"overAllResult":false,"chatId":"5d98d17a-9f8b-4091-b236-6b295e5f3420"}',
816
+ difficulty_level: "",
817
+ result: false,
818
+ question_sequence: "main_question",
819
+ created_at: "2024-09-09T09:51:05.038Z",
820
+ question_details: {
821
+ question_type: "2",
822
+ question: "What is the cube of the number 5?",
823
+ solution: "<p>The cube of 5 is 5 × 5 × 5 = 125. </p>",
824
+ uuid: "aab397a1-9c11-47c5-bd59-08089544ce72",
825
+ question_layout: "<p>What is the cube of the number 5?</p>",
826
+ question_student_layout: [
827
+ "<p>What is the cube of the number 5?</p>",
828
+ ],
829
+ options: ["25", "50", "125", "150"],
830
+ options_layout: ["25", "50", "125", "150"],
831
+ answers: ["125"],
832
+ answers_layout: ["125"],
833
+ duration: "",
834
+ images: [],
835
+ sub_question: [],
836
+ grades: [{ grade: "43141", difficulty: "47081" }],
837
+ curriculum: ["38416"],
838
+ subjects: ["43150"],
839
+ chapters: ["91916"],
840
+ topics: ["9453045"],
841
+ sub_topic: [],
842
+ assessmentType: ["Formative"],
843
+ cognitivLevel: ["Application"],
844
+ status: "0",
845
+ version: "1.2",
846
+ is_subquestion: false,
847
+ created_by: "Vandana",
848
+ modified_by: "CMMA Maths",
849
+ is_teacher: true,
850
+ is_student: true,
851
+ created_by_id: "127",
852
+ modified_by_id: "94",
853
+ createdAt: "2024-02-26T10:57:24.813Z",
854
+ version_uuid: "af2d846f-f274-4028-a61b-420626dff6af",
855
+ approved_by_id: "94",
856
+ approved_by: "CMMA Maths",
857
+ is_archive: false,
858
+ layout_type: null,
859
+ images_details: [],
860
+ knowledge_cell: ["65b92021b08b23325238251a"],
861
+ source: "Source G",
862
+ option_image_details: [],
863
+ labels: {
864
+ normal: {
865
+ prompt_id: "65d35a9a48a34e9470928cd9",
866
+ source_coteacher_uuid: "adbec745-a134-48c4-8047-446962fc2c5b",
867
+ },
868
+ syllabus: [
869
+ {
870
+ curriculum: "38416",
871
+ grade: "43141",
872
+ subject: "43150",
873
+ chapter: "91916",
874
+ topic: "9453045",
875
+ difficulty: "47081",
876
+ },
877
+ ],
878
+ explanation: { prompt_id: "65d38f8f48a34e947092b190" },
879
+ isAdvanced: false,
880
+ basket: true,
881
+ },
882
+ updatedAt: "2024-09-09T06:04:13.667Z",
883
+ __v: 0,
884
+ approvedAt: "2024-07-16T05:52:06.674Z",
885
+ hintandexplanations: [
886
+ {
887
+ _id: "65dc6e94672c9c7702c25742",
888
+ hint: [],
889
+ explanation: [
890
+ {
891
+ layout_type: "Normal",
892
+ data: [
893
+ {
894
+ text_layout: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
895
+ text: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
896
+ media_type: "image",
897
+ media: "",
898
+ _id: "65d38f8fe04ce2b731a62d6d",
899
+ },
900
+ ],
901
+ _id: "65dc6e94672c9c7702c25743",
902
+ },
903
+ ],
904
+ question_id: "aab397a1-9c11-47c5-bd59-08089544ce72",
905
+ createdAt: "2024-02-26T10:57:24.828Z",
906
+ updatedAt: "2024-02-26T10:57:24.828Z",
907
+ __v: 0,
908
+ },
909
+ ],
910
+ syllabusMapping: [
911
+ {
912
+ curriculum: { id: "38416", title: "CBSE" },
913
+ grade: { id: "43141", title: "Grade 8" },
914
+ subject: { id: "43150", title: "Mathematics" },
915
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
916
+ topic: { id: "9453045", title: "Cubes" },
917
+ difficulty: { id: "47081" },
918
+ assessmentType: "Formative",
919
+ cognitivLevel: "Application",
920
+ },
921
+ ],
922
+ },
923
+ main_question_count: "1",
924
+ },
925
+ {
926
+ question: "baf2dcad-7a45-462b-94df-63bebe775bc1",
927
+ user_answer: '{"answerResult":[{"actualAnswer":"941192","givenAnswer":"8000","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc96ecc"}',
928
+ difficulty_level: "",
929
+ result: true,
930
+ question_sequence: "main_question",
931
+ created_at: "2024-09-09T09:51:09.354Z",
932
+ question_details: {
933
+ question_type: "2",
934
+ question: "What is the cube of the largest two-digit even number?",
935
+ solution: "<p>The largest two-digit even number is 98. The cube of 98 is 98 × 98 × 98 = 941192.</p>",
936
+ uuid: "db1fd729-8d57-4364-8358-213eea0320fe",
937
+ question_layout: "<p>What is the cube of the largest two-digit even number?</p>",
938
+ question_student_layout: [
939
+ "<p>What is the cube of the largest two-digit even number?</p>",
940
+ ],
941
+ options: ["64000", "6859", "8000", "941192"],
942
+ options_layout: ["64000", "6859", "8000", "<p>941192</p>"],
943
+ answers: ["941192"],
944
+ answers_layout: ["<p>941192</p>"],
945
+ duration: "",
946
+ images: [],
947
+ sub_question: [],
948
+ grades: [{ grade: "43141", difficulty: "47081" }],
949
+ curriculum: ["38416"],
950
+ subjects: ["43150"],
951
+ chapters: ["91916"],
952
+ topics: ["9453045"],
953
+ sub_topic: [],
954
+ assessmentType: ["Formative"],
955
+ cognitivLevel: ["Application"],
956
+ status: "0",
957
+ version: "1.3",
958
+ is_subquestion: false,
959
+ created_by: "Vandana",
960
+ modified_by: "CMMA Maths",
961
+ is_teacher: true,
962
+ is_student: true,
963
+ created_by_id: "127",
964
+ modified_by_id: "94",
965
+ createdAt: "2024-02-26T12:05:39.013Z",
966
+ version_uuid: "baf2dcad-7a45-462b-94df-63bebe775bc1",
967
+ approved_by_id: "94",
968
+ approved_by: "CMMA Maths",
969
+ is_archive: false,
970
+ layout_type: null,
971
+ images_details: [],
972
+ knowledge_cell: ["65b92021b08b23325238251a"],
973
+ source: "Source G",
974
+ option_image_details: [],
975
+ labels: {
976
+ normal: {
977
+ prompt_id: "65d35b0048a34e9470928d1e",
978
+ source_coteacher_uuid: "5420b263-7f2c-4091-b7e9-b257292cd40c",
979
+ },
980
+ syllabus: [
981
+ {
982
+ curriculum: "38416",
983
+ grade: "43141",
984
+ subject: "43150",
985
+ chapter: "91916",
986
+ topic: "9453045",
987
+ difficulty: "47120",
988
+ },
989
+ ],
990
+ explanation: { prompt_id: "65d38ea148a34e947092b0df" },
991
+ isAdvanced: false,
992
+ basket: true,
993
+ },
994
+ updatedAt: "2024-09-09T06:04:13.667Z",
995
+ __v: 0,
996
+ approvedAt: "2024-07-16T05:52:06.674Z",
997
+ hintandexplanations: [
998
+ {
999
+ _id: "65dc7e934fba1266d2d1a0bc",
1000
+ hint: [],
1001
+ explanation: [
1002
+ {
1003
+ layout_type: "Normal",
1004
+ data: [
1005
+ {
1006
+ text_layout: "<p> Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100. </p>",
1007
+ text: "Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100.",
1008
+ media_type: "image",
1009
+ media: "",
1010
+ _id: "65d6e124a96478be69ebf2be",
1011
+ },
1012
+ ],
1013
+ _id: "65dc7e934fba1266d2d1a0bd",
1014
+ },
1015
+ ],
1016
+ question_id: "db1fd729-8d57-4364-8358-213eea0320fe",
1017
+ createdAt: "2024-02-26T12:05:39.027Z",
1018
+ updatedAt: "2024-02-26T12:05:39.027Z",
1019
+ __v: 0,
1020
+ },
1021
+ ],
1022
+ syllabusMapping: [
1023
+ {
1024
+ curriculum: { id: "38416", title: "CBSE" },
1025
+ grade: { id: "43141", title: "Grade 8" },
1026
+ subject: { id: "43150", title: "Mathematics" },
1027
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1028
+ topic: { id: "9453045", title: "Cubes" },
1029
+ difficulty: { id: "47081" },
1030
+ assessmentType: "Formative",
1031
+ cognitivLevel: "Application",
1032
+ },
1033
+ ],
1034
+ },
1035
+ main_question_count: "2",
1036
+ },
1037
+ {
1038
+ question: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
1039
+ user_answer: '{"answerResult":[{"actualAnswer":"64","givenAnswer":"64","isCorrect":true}],"overAllResult":true,"chatId":"284ec739-a6e8-41d6-8d46-f8d9a85fe061"}',
1040
+ difficulty_level: "",
1041
+ result: false,
1042
+ question_sequence: "main_question",
1043
+ created_at: "2024-09-09T09:51:11.962Z",
1044
+ question_details: {
1045
+ question_type: "2",
1046
+ question: "Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?",
1047
+ solution: "<p>64 is the smallest multiple of 4 that is also a perfect cube because it is equal to \\(4^{3}\\)</p>",
1048
+ uuid: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
1049
+ question_layout: "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
1050
+ question_student_layout: [
1051
+ "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
1052
+ ],
1053
+ options: ["64", "128", "256", "512"],
1054
+ options_layout: ["64", "128", "256", "512"],
1055
+ answers: ["64"],
1056
+ answers_layout: ["64"],
1057
+ duration: "",
1058
+ images: [],
1059
+ sub_question: [],
1060
+ grades: [{ grade: "43141", difficulty: "47081" }],
1061
+ curriculum: ["38416"],
1062
+ subjects: ["43150"],
1063
+ chapters: ["91916"],
1064
+ topics: ["9453045"],
1065
+ sub_topic: [],
1066
+ assessmentType: ["Formative"],
1067
+ cognitivLevel: ["Application"],
1068
+ status: "0",
1069
+ version: "1.4",
1070
+ is_subquestion: false,
1071
+ created_by: "Vandana",
1072
+ modified_by: "CMMA Maths",
1073
+ is_teacher: true,
1074
+ is_student: true,
1075
+ created_by_id: "127",
1076
+ modified_by_id: "94",
1077
+ createdAt: "2024-02-26T11:54:32.015Z",
1078
+ version_uuid: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
1079
+ approved_by_id: "94",
1080
+ approved_by: "CMMA Maths",
1081
+ is_archive: false,
1082
+ layout_type: null,
1083
+ images_details: [],
1084
+ knowledge_cell: ["65b9211fb08b2332523835ea"],
1085
+ source: "Source G",
1086
+ option_image_details: [],
1087
+ labels: {
1088
+ normal: {
1089
+ prompt_id: "65d35e2948a34e9470928f44",
1090
+ source_coteacher_uuid: "21f7ee77-9fcd-446d-bc24-53e89b8fd573",
1091
+ },
1092
+ syllabus: [
1093
+ {
1094
+ curriculum: "38416",
1095
+ grade: "43141",
1096
+ subject: "43150",
1097
+ chapter: "91916",
1098
+ topic: "9453045",
1099
+ difficulty: "47081",
1100
+ },
1101
+ ],
1102
+ explanation: { prompt_id: "65d3889248a34e947092ac6a" },
1103
+ isAdvanced: false,
1104
+ basket: true,
1105
+ },
1106
+ updatedAt: "2024-09-09T06:04:13.667Z",
1107
+ __v: 0,
1108
+ approvedAt: "2024-07-16T05:52:06.674Z",
1109
+ hintandexplanations: [
1110
+ {
1111
+ _id: "65dc7bf8672c9c7702c2674e",
1112
+ hint: [],
1113
+ explanation: [
1114
+ {
1115
+ layout_type: "Normal",
1116
+ data: [
1117
+ {
1118
+ text_layout: "<p>Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube. </p>",
1119
+ text: "Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube.",
1120
+ media_type: "image",
1121
+ media: "",
1122
+ _id: "65d72f75a96478be69ecbf8e",
1123
+ },
1124
+ ],
1125
+ _id: "65dc7bf8672c9c7702c2674f",
1126
+ },
1127
+ ],
1128
+ question_id: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
1129
+ createdAt: "2024-02-26T11:54:32.030Z",
1130
+ updatedAt: "2024-02-26T11:54:32.030Z",
1131
+ __v: 0,
1132
+ },
1133
+ ],
1134
+ syllabusMapping: [
1135
+ {
1136
+ curriculum: { id: "38416", title: "CBSE" },
1137
+ grade: { id: "43141", title: "Grade 8" },
1138
+ subject: { id: "43150", title: "Mathematics" },
1139
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1140
+ topic: { id: "9453045", title: "Cubes" },
1141
+ difficulty: { id: "47081" },
1142
+ assessmentType: "Formative",
1143
+ cognitivLevel: "Application",
1144
+ },
1145
+ ],
1146
+ },
1147
+ main_question_count: "3",
1148
+ },
1149
+ {
1150
+ question: "912435da-1927-45a7-96f5-d1b3dec00adf",
1151
+ user_answer: '{"answerResult":[{"actualAnswer":"4","givenAnswer":"8","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc1c96ec2c8"}',
1152
+ difficulty_level: "",
1153
+ result: false,
1154
+ question_sequence: "main_question",
1155
+ created_at: "2024-09-09T09:51:14.307Z",
1156
+ question_details: {
1157
+ question_type: "2",
1158
+ question: "A number is multiplied by itself three times to get 64. What is the number?",
1159
+ solution: "<p>The number is 4 because 4 × 4 × 4 = 64. </p>",
1160
+ uuid: "5aa77892-f8b9-4482-a6fe-876212413d4a",
1161
+ question_layout: "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
1162
+ question_student_layout: [
1163
+ "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
1164
+ ],
1165
+ options: ["2", "4", "6", "8"],
1166
+ options_layout: ["2", "4", "6", "8"],
1167
+ answers: ["4"],
1168
+ answers_layout: ["4"],
1169
+ duration: "",
1170
+ images: [],
1171
+ sub_question: [],
1172
+ grades: [{ grade: "43141", difficulty: "47081" }],
1173
+ curriculum: ["38416"],
1174
+ subjects: ["43150"],
1175
+ chapters: ["91916"],
1176
+ topics: ["9453045"],
1177
+ sub_topic: [],
1178
+ assessmentType: ["Formative"],
1179
+ cognitivLevel: ["Application"],
1180
+ status: "0",
1181
+ version: "1.2",
1182
+ is_subquestion: false,
1183
+ created_by: "Vandana",
1184
+ modified_by: "CMMA Maths",
1185
+ is_teacher: true,
1186
+ is_student: true,
1187
+ created_by_id: "127",
1188
+ modified_by_id: "94",
1189
+ createdAt: "2024-02-26T11:05:32.911Z",
1190
+ version_uuid: "912435da-1927-45a7-96f5-d1b3dec00adf",
1191
+ approved_by_id: "94",
1192
+ approved_by: "CMMA Maths",
1193
+ is_archive: false,
1194
+ layout_type: null,
1195
+ images_details: [],
1196
+ knowledge_cell: ["65b92175b08b233252383b6a"],
1197
+ source: "Source G",
1198
+ option_image_details: [],
1199
+ labels: {
1200
+ normal: {
1201
+ prompt_id: "65d3598f48a34e9470928bee",
1202
+ source_coteacher_uuid: "067fbd2d-2621-4f01-acec-55fe428506cd",
1203
+ },
1204
+ syllabus: [
1205
+ {
1206
+ curriculum: "38416",
1207
+ grade: "43141",
1208
+ subject: "43150",
1209
+ chapter: "91916",
1210
+ topic: [],
1211
+ difficulty: "47081",
1212
+ },
1213
+ ],
1214
+ explanation: { prompt_id: "65d3912b48a34e947092b30b" },
1215
+ isAdvanced: false,
1216
+ basket: true,
1217
+ },
1218
+ updatedAt: "2024-09-09T06:04:13.667Z",
1219
+ __v: 0,
1220
+ approvedAt: "2024-07-16T05:52:06.674Z",
1221
+ hintandexplanations: [
1222
+ {
1223
+ _id: "65dc707c4fba1266d2d18e22",
1224
+ hint: [],
1225
+ explanation: [
1226
+ {
1227
+ layout_type: "Normal",
1228
+ data: [
1229
+ {
1230
+ text_layout: "<p>Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4. </p>",
1231
+ text: "Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4.",
1232
+ media_type: "image",
1233
+ media: "",
1234
+ _id: "65d5e3a06d01968ae918ae67",
1235
+ },
1236
+ ],
1237
+ _id: "65dc707c4fba1266d2d18e23",
1238
+ },
1239
+ ],
1240
+ question_id: "5aa77892-f8b9-4482-a6fe-876212413d4a",
1241
+ createdAt: "2024-02-26T11:05:32.932Z",
1242
+ updatedAt: "2024-02-26T11:05:32.932Z",
1243
+ __v: 0,
1244
+ },
1245
+ ],
1246
+ syllabusMapping: [
1247
+ {
1248
+ curriculum: { id: "38416", title: "CBSE" },
1249
+ grade: { id: "43141", title: "Grade 8" },
1250
+ subject: { id: "43150", title: "Mathematics" },
1251
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1252
+ topic: { id: "9453045", title: "Cubes" },
1253
+ difficulty: { id: "47081" },
1254
+ assessmentType: "Formative",
1255
+ cognitivLevel: "Application",
1256
+ },
1257
+ ],
1258
+ },
1259
+ main_question_count: "4",
1260
+ },
1261
+ ],
1262
+ total_questions: 4,
1263
+ },
1264
+ ],
1265
+ },
1266
+ {
1267
+ questionObject: {
1268
+ question_type: "2",
1269
+ question: "Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?",
1270
+ solution: "<p>64 is the smallest multiple of 4 that is also a perfect cube because it is equal to \\(4^{3}\\)</p>",
1271
+ uuid: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
1272
+ question_layout: "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
1273
+ question_student_layout: [
1274
+ "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
1275
+ ],
1276
+ options: ["64", "128", "256", "512"],
1277
+ options_layout: ["64", "128", "256", "512"],
1278
+ answers: ["64"],
1279
+ answers_layout: ["64"],
1280
+ duration: "",
1281
+ images: [],
1282
+ sub_question: [],
1283
+ grades: [{ grade: "43141", difficulty: "47081" }],
1284
+ curriculum: ["38416"],
1285
+ subjects: ["43150"],
1286
+ chapters: ["91916"],
1287
+ topics: ["9453045"],
1288
+ sub_topic: [],
1289
+ assessmentType: ["Formative"],
1290
+ cognitivLevel: ["Application"],
1291
+ status: "0",
1292
+ version: "1.4",
1293
+ is_subquestion: false,
1294
+ created_by: "Vandana",
1295
+ modified_by: "CMMA Maths",
1296
+ is_teacher: true,
1297
+ is_student: true,
1298
+ created_by_id: "127",
1299
+ modified_by_id: "94",
1300
+ createdAt: "2024-02-26T11:54:32.015Z",
1301
+ version_uuid: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
1302
+ approved_by_id: "94",
1303
+ approved_by: "CMMA Maths",
1304
+ is_archive: false,
1305
+ layout_type: null,
1306
+ images_details: [],
1307
+ knowledge_cell: ["65b9211fb08b2332523835ea"],
1308
+ source: "Source G",
1309
+ option_image_details: [],
1310
+ labels: {
1311
+ normal: {
1312
+ prompt_id: "65d35e2948a34e9470928f44",
1313
+ source_coteacher_uuid: "21f7ee77-9fcd-446d-bc24-53e89b8fd573",
1314
+ },
1315
+ syllabus: [
1316
+ {
1317
+ curriculum: "38416",
1318
+ grade: "43141",
1319
+ subject: "43150",
1320
+ chapter: "91916",
1321
+ topic: "9453045",
1322
+ difficulty: "47081",
1323
+ },
1324
+ ],
1325
+ explanation: { prompt_id: "65d3889248a34e947092ac6a" },
1326
+ isAdvanced: false,
1327
+ basket: true,
1328
+ },
1329
+ updatedAt: "2024-09-09T06:04:13.667Z",
1330
+ __v: 0,
1331
+ approvedAt: "2024-07-16T05:52:06.674Z",
1332
+ hintandexplanations: [
1333
+ {
1334
+ _id: "65dc7bf8672c9c7702c2674e",
1335
+ hint: [],
1336
+ explanation: [
1337
+ {
1338
+ layout_type: "Normal",
1339
+ data: [
1340
+ {
1341
+ text_layout: "<p>Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube. </p>",
1342
+ text: "Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube.",
1343
+ media_type: "image",
1344
+ media: "",
1345
+ _id: "65d72f75a96478be69ecbf8e",
1346
+ },
1347
+ ],
1348
+ _id: "65dc7bf8672c9c7702c2674f",
1349
+ },
1350
+ ],
1351
+ question_id: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
1352
+ createdAt: "2024-02-26T11:54:32.030Z",
1353
+ updatedAt: "2024-02-26T11:54:32.030Z",
1354
+ __v: 0,
1355
+ },
1356
+ ],
1357
+ syllabusMapping: [
1358
+ {
1359
+ curriculum: { id: "38416", title: "CBSE" },
1360
+ grade: { id: "43141", title: "Grade 8" },
1361
+ subject: { id: "43150", title: "Mathematics" },
1362
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1363
+ topic: { id: "9453045", title: "Cubes" },
1364
+ difficulty: { id: "47081" },
1365
+ assessmentType: "Formative",
1366
+ cognitivLevel: "Application",
1367
+ },
1368
+ ],
1369
+ showGreen: true,
1370
+ },
1371
+ userAnswer: {
1372
+ answerResult: [
1373
+ { actualAnswer: "64", givenAnswer: "64", isCorrect: true },
1374
+ ],
1375
+ overAllResult: true,
1376
+ chatId: "284ec739-a6e8-41d6-8d46-f8d9a85fe061",
1377
+ },
1378
+ dispalyedQues: [
1379
+ {
1380
+ basket_id: "66dec4f247114c21928ac344",
1381
+ learning_mode: "assessment",
1382
+ non_basket_id: "",
1383
+ mode: "normal",
1384
+ eval_state: "advanced",
1385
+ current_status: "",
1386
+ current_rule: "",
1387
+ current_step_id: "assessment",
1388
+ prev_step_id: "",
1389
+ prev_basket_id: "",
1390
+ visited_question_indices: { m_index: 3, s_index: 0 },
1391
+ contents: [],
1392
+ questions: [
1393
+ {
1394
+ question: "af2d846f-f274-4028-a61b-420626dff6af",
1395
+ user_answer: '{"answerResult":[{"actualAnswer":"125","givenAnswer":"150","isCorrect":false}],"overAllResult":false,"chatId":"5d98d17a-9f8b-4091-b236-6b295e5f3420"}',
1396
+ difficulty_level: "",
1397
+ result: false,
1398
+ question_sequence: "main_question",
1399
+ created_at: "2024-09-09T09:51:05.038Z",
1400
+ question_details: {
1401
+ question_type: "2",
1402
+ question: "What is the cube of the number 5?",
1403
+ solution: "<p>The cube of 5 is 5 × 5 × 5 = 125. </p>",
1404
+ uuid: "aab397a1-9c11-47c5-bd59-08089544ce72",
1405
+ question_layout: "<p>What is the cube of the number 5?</p>",
1406
+ question_student_layout: [
1407
+ "<p>What is the cube of the number 5?</p>",
1408
+ ],
1409
+ options: ["25", "50", "125", "150"],
1410
+ options_layout: ["25", "50", "125", "150"],
1411
+ answers: ["125"],
1412
+ answers_layout: ["125"],
1413
+ duration: "",
1414
+ images: [],
1415
+ sub_question: [],
1416
+ grades: [{ grade: "43141", difficulty: "47081" }],
1417
+ curriculum: ["38416"],
1418
+ subjects: ["43150"],
1419
+ chapters: ["91916"],
1420
+ topics: ["9453045"],
1421
+ sub_topic: [],
1422
+ assessmentType: ["Formative"],
1423
+ cognitivLevel: ["Application"],
1424
+ status: "0",
1425
+ version: "1.2",
1426
+ is_subquestion: false,
1427
+ created_by: "Vandana",
1428
+ modified_by: "CMMA Maths",
1429
+ is_teacher: true,
1430
+ is_student: true,
1431
+ created_by_id: "127",
1432
+ modified_by_id: "94",
1433
+ createdAt: "2024-02-26T10:57:24.813Z",
1434
+ version_uuid: "af2d846f-f274-4028-a61b-420626dff6af",
1435
+ approved_by_id: "94",
1436
+ approved_by: "CMMA Maths",
1437
+ is_archive: false,
1438
+ layout_type: null,
1439
+ images_details: [],
1440
+ knowledge_cell: ["65b92021b08b23325238251a"],
1441
+ source: "Source G",
1442
+ option_image_details: [],
1443
+ labels: {
1444
+ normal: {
1445
+ prompt_id: "65d35a9a48a34e9470928cd9",
1446
+ source_coteacher_uuid: "adbec745-a134-48c4-8047-446962fc2c5b",
1447
+ },
1448
+ syllabus: [
1449
+ {
1450
+ curriculum: "38416",
1451
+ grade: "43141",
1452
+ subject: "43150",
1453
+ chapter: "91916",
1454
+ topic: "9453045",
1455
+ difficulty: "47081",
1456
+ },
1457
+ ],
1458
+ explanation: { prompt_id: "65d38f8f48a34e947092b190" },
1459
+ isAdvanced: false,
1460
+ basket: true,
1461
+ },
1462
+ updatedAt: "2024-09-09T06:04:13.667Z",
1463
+ __v: 0,
1464
+ approvedAt: "2024-07-16T05:52:06.674Z",
1465
+ hintandexplanations: [
1466
+ {
1467
+ _id: "65dc6e94672c9c7702c25742",
1468
+ hint: [],
1469
+ explanation: [
1470
+ {
1471
+ layout_type: "Normal",
1472
+ data: [
1473
+ {
1474
+ text_layout: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
1475
+ text: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
1476
+ media_type: "image",
1477
+ media: "",
1478
+ _id: "65d38f8fe04ce2b731a62d6d",
1479
+ },
1480
+ ],
1481
+ _id: "65dc6e94672c9c7702c25743",
1482
+ },
1483
+ ],
1484
+ question_id: "aab397a1-9c11-47c5-bd59-08089544ce72",
1485
+ createdAt: "2024-02-26T10:57:24.828Z",
1486
+ updatedAt: "2024-02-26T10:57:24.828Z",
1487
+ __v: 0,
1488
+ },
1489
+ ],
1490
+ syllabusMapping: [
1491
+ {
1492
+ curriculum: { id: "38416", title: "CBSE" },
1493
+ grade: { id: "43141", title: "Grade 8" },
1494
+ subject: { id: "43150", title: "Mathematics" },
1495
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1496
+ topic: { id: "9453045", title: "Cubes" },
1497
+ difficulty: { id: "47081" },
1498
+ assessmentType: "Formative",
1499
+ cognitivLevel: "Application",
1500
+ },
1501
+ ],
1502
+ },
1503
+ main_question_count: "1",
1504
+ },
1505
+ {
1506
+ question: "baf2dcad-7a45-462b-94df-63bebe775bc1",
1507
+ user_answer: '{"answerResult":[{"actualAnswer":"941192","givenAnswer":"8000","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc96ecc"}',
1508
+ difficulty_level: "",
1509
+ result: true,
1510
+ question_sequence: "main_question",
1511
+ created_at: "2024-09-09T09:51:09.354Z",
1512
+ question_details: {
1513
+ question_type: "2",
1514
+ question: "What is the cube of the largest two-digit even number?",
1515
+ solution: "<p>The largest two-digit even number is 98. The cube of 98 is 98 × 98 × 98 = 941192.</p>",
1516
+ uuid: "db1fd729-8d57-4364-8358-213eea0320fe",
1517
+ question_layout: "<p>What is the cube of the largest two-digit even number?</p>",
1518
+ question_student_layout: [
1519
+ "<p>What is the cube of the largest two-digit even number?</p>",
1520
+ ],
1521
+ options: ["64000", "6859", "8000", "941192"],
1522
+ options_layout: ["64000", "6859", "8000", "<p>941192</p>"],
1523
+ answers: ["941192"],
1524
+ answers_layout: ["<p>941192</p>"],
1525
+ duration: "",
1526
+ images: [],
1527
+ sub_question: [],
1528
+ grades: [{ grade: "43141", difficulty: "47081" }],
1529
+ curriculum: ["38416"],
1530
+ subjects: ["43150"],
1531
+ chapters: ["91916"],
1532
+ topics: ["9453045"],
1533
+ sub_topic: [],
1534
+ assessmentType: ["Formative"],
1535
+ cognitivLevel: ["Application"],
1536
+ status: "0",
1537
+ version: "1.3",
1538
+ is_subquestion: false,
1539
+ created_by: "Vandana",
1540
+ modified_by: "CMMA Maths",
1541
+ is_teacher: true,
1542
+ is_student: true,
1543
+ created_by_id: "127",
1544
+ modified_by_id: "94",
1545
+ createdAt: "2024-02-26T12:05:39.013Z",
1546
+ version_uuid: "baf2dcad-7a45-462b-94df-63bebe775bc1",
1547
+ approved_by_id: "94",
1548
+ approved_by: "CMMA Maths",
1549
+ is_archive: false,
1550
+ layout_type: null,
1551
+ images_details: [],
1552
+ knowledge_cell: ["65b92021b08b23325238251a"],
1553
+ source: "Source G",
1554
+ option_image_details: [],
1555
+ labels: {
1556
+ normal: {
1557
+ prompt_id: "65d35b0048a34e9470928d1e",
1558
+ source_coteacher_uuid: "5420b263-7f2c-4091-b7e9-b257292cd40c",
1559
+ },
1560
+ syllabus: [
1561
+ {
1562
+ curriculum: "38416",
1563
+ grade: "43141",
1564
+ subject: "43150",
1565
+ chapter: "91916",
1566
+ topic: "9453045",
1567
+ difficulty: "47120",
1568
+ },
1569
+ ],
1570
+ explanation: { prompt_id: "65d38ea148a34e947092b0df" },
1571
+ isAdvanced: false,
1572
+ basket: true,
1573
+ },
1574
+ updatedAt: "2024-09-09T06:04:13.667Z",
1575
+ __v: 0,
1576
+ approvedAt: "2024-07-16T05:52:06.674Z",
1577
+ hintandexplanations: [
1578
+ {
1579
+ _id: "65dc7e934fba1266d2d1a0bc",
1580
+ hint: [],
1581
+ explanation: [
1582
+ {
1583
+ layout_type: "Normal",
1584
+ data: [
1585
+ {
1586
+ text_layout: "<p> Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100. </p>",
1587
+ text: "Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100.",
1588
+ media_type: "image",
1589
+ media: "",
1590
+ _id: "65d6e124a96478be69ebf2be",
1591
+ },
1592
+ ],
1593
+ _id: "65dc7e934fba1266d2d1a0bd",
1594
+ },
1595
+ ],
1596
+ question_id: "db1fd729-8d57-4364-8358-213eea0320fe",
1597
+ createdAt: "2024-02-26T12:05:39.027Z",
1598
+ updatedAt: "2024-02-26T12:05:39.027Z",
1599
+ __v: 0,
1600
+ },
1601
+ ],
1602
+ syllabusMapping: [
1603
+ {
1604
+ curriculum: { id: "38416", title: "CBSE" },
1605
+ grade: { id: "43141", title: "Grade 8" },
1606
+ subject: { id: "43150", title: "Mathematics" },
1607
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1608
+ topic: { id: "9453045", title: "Cubes" },
1609
+ difficulty: { id: "47081" },
1610
+ assessmentType: "Formative",
1611
+ cognitivLevel: "Application",
1612
+ },
1613
+ ],
1614
+ },
1615
+ main_question_count: "2",
1616
+ },
1617
+ {
1618
+ question: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
1619
+ user_answer: '{"answerResult":[{"actualAnswer":"64","givenAnswer":"64","isCorrect":true}],"overAllResult":true,"chatId":"284ec739-a6e8-41d6-8d46-f8d9a85fe061"}',
1620
+ difficulty_level: "",
1621
+ result: false,
1622
+ question_sequence: "main_question",
1623
+ created_at: "2024-09-09T09:51:11.962Z",
1624
+ question_details: {
1625
+ question_type: "2",
1626
+ question: "Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?",
1627
+ solution: "<p>64 is the smallest multiple of 4 that is also a perfect cube because it is equal to \\(4^{3}\\)</p>",
1628
+ uuid: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
1629
+ question_layout: "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
1630
+ question_student_layout: [
1631
+ "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
1632
+ ],
1633
+ options: ["64", "128", "256", "512"],
1634
+ options_layout: ["64", "128", "256", "512"],
1635
+ answers: ["64"],
1636
+ answers_layout: ["64"],
1637
+ duration: "",
1638
+ images: [],
1639
+ sub_question: [],
1640
+ grades: [{ grade: "43141", difficulty: "47081" }],
1641
+ curriculum: ["38416"],
1642
+ subjects: ["43150"],
1643
+ chapters: ["91916"],
1644
+ topics: ["9453045"],
1645
+ sub_topic: [],
1646
+ assessmentType: ["Formative"],
1647
+ cognitivLevel: ["Application"],
1648
+ status: "0",
1649
+ version: "1.4",
1650
+ is_subquestion: false,
1651
+ created_by: "Vandana",
1652
+ modified_by: "CMMA Maths",
1653
+ is_teacher: true,
1654
+ is_student: true,
1655
+ created_by_id: "127",
1656
+ modified_by_id: "94",
1657
+ createdAt: "2024-02-26T11:54:32.015Z",
1658
+ version_uuid: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
1659
+ approved_by_id: "94",
1660
+ approved_by: "CMMA Maths",
1661
+ is_archive: false,
1662
+ layout_type: null,
1663
+ images_details: [],
1664
+ knowledge_cell: ["65b9211fb08b2332523835ea"],
1665
+ source: "Source G",
1666
+ option_image_details: [],
1667
+ labels: {
1668
+ normal: {
1669
+ prompt_id: "65d35e2948a34e9470928f44",
1670
+ source_coteacher_uuid: "21f7ee77-9fcd-446d-bc24-53e89b8fd573",
1671
+ },
1672
+ syllabus: [
1673
+ {
1674
+ curriculum: "38416",
1675
+ grade: "43141",
1676
+ subject: "43150",
1677
+ chapter: "91916",
1678
+ topic: "9453045",
1679
+ difficulty: "47081",
1680
+ },
1681
+ ],
1682
+ explanation: { prompt_id: "65d3889248a34e947092ac6a" },
1683
+ isAdvanced: false,
1684
+ basket: true,
1685
+ },
1686
+ updatedAt: "2024-09-09T06:04:13.667Z",
1687
+ __v: 0,
1688
+ approvedAt: "2024-07-16T05:52:06.674Z",
1689
+ hintandexplanations: [
1690
+ {
1691
+ _id: "65dc7bf8672c9c7702c2674e",
1692
+ hint: [],
1693
+ explanation: [
1694
+ {
1695
+ layout_type: "Normal",
1696
+ data: [
1697
+ {
1698
+ text_layout: "<p>Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube. </p>",
1699
+ text: "Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube.",
1700
+ media_type: "image",
1701
+ media: "",
1702
+ _id: "65d72f75a96478be69ecbf8e",
1703
+ },
1704
+ ],
1705
+ _id: "65dc7bf8672c9c7702c2674f",
1706
+ },
1707
+ ],
1708
+ question_id: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
1709
+ createdAt: "2024-02-26T11:54:32.030Z",
1710
+ updatedAt: "2024-02-26T11:54:32.030Z",
1711
+ __v: 0,
1712
+ },
1713
+ ],
1714
+ syllabusMapping: [
1715
+ {
1716
+ curriculum: { id: "38416", title: "CBSE" },
1717
+ grade: { id: "43141", title: "Grade 8" },
1718
+ subject: { id: "43150", title: "Mathematics" },
1719
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1720
+ topic: { id: "9453045", title: "Cubes" },
1721
+ difficulty: { id: "47081" },
1722
+ assessmentType: "Formative",
1723
+ cognitivLevel: "Application",
1724
+ },
1725
+ ],
1726
+ },
1727
+ main_question_count: "3",
1728
+ },
1729
+ {
1730
+ question: "912435da-1927-45a7-96f5-d1b3dec00adf",
1731
+ user_answer: '{"answerResult":[{"actualAnswer":"4","givenAnswer":"8","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc1c96ec2c8"}',
1732
+ difficulty_level: "",
1733
+ result: false,
1734
+ question_sequence: "main_question",
1735
+ created_at: "2024-09-09T09:51:14.307Z",
1736
+ question_details: {
1737
+ question_type: "2",
1738
+ question: "A number is multiplied by itself three times to get 64. What is the number?",
1739
+ solution: "<p>The number is 4 because 4 × 4 × 4 = 64. </p>",
1740
+ uuid: "5aa77892-f8b9-4482-a6fe-876212413d4a",
1741
+ question_layout: "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
1742
+ question_student_layout: [
1743
+ "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
1744
+ ],
1745
+ options: ["2", "4", "6", "8"],
1746
+ options_layout: ["2", "4", "6", "8"],
1747
+ answers: ["4"],
1748
+ answers_layout: ["4"],
1749
+ duration: "",
1750
+ images: [],
1751
+ sub_question: [],
1752
+ grades: [{ grade: "43141", difficulty: "47081" }],
1753
+ curriculum: ["38416"],
1754
+ subjects: ["43150"],
1755
+ chapters: ["91916"],
1756
+ topics: ["9453045"],
1757
+ sub_topic: [],
1758
+ assessmentType: ["Formative"],
1759
+ cognitivLevel: ["Application"],
1760
+ status: "0",
1761
+ version: "1.2",
1762
+ is_subquestion: false,
1763
+ created_by: "Vandana",
1764
+ modified_by: "CMMA Maths",
1765
+ is_teacher: true,
1766
+ is_student: true,
1767
+ created_by_id: "127",
1768
+ modified_by_id: "94",
1769
+ createdAt: "2024-02-26T11:05:32.911Z",
1770
+ version_uuid: "912435da-1927-45a7-96f5-d1b3dec00adf",
1771
+ approved_by_id: "94",
1772
+ approved_by: "CMMA Maths",
1773
+ is_archive: false,
1774
+ layout_type: null,
1775
+ images_details: [],
1776
+ knowledge_cell: ["65b92175b08b233252383b6a"],
1777
+ source: "Source G",
1778
+ option_image_details: [],
1779
+ labels: {
1780
+ normal: {
1781
+ prompt_id: "65d3598f48a34e9470928bee",
1782
+ source_coteacher_uuid: "067fbd2d-2621-4f01-acec-55fe428506cd",
1783
+ },
1784
+ syllabus: [
1785
+ {
1786
+ curriculum: "38416",
1787
+ grade: "43141",
1788
+ subject: "43150",
1789
+ chapter: "91916",
1790
+ topic: [],
1791
+ difficulty: "47081",
1792
+ },
1793
+ ],
1794
+ explanation: { prompt_id: "65d3912b48a34e947092b30b" },
1795
+ isAdvanced: false,
1796
+ basket: true,
1797
+ },
1798
+ updatedAt: "2024-09-09T06:04:13.667Z",
1799
+ __v: 0,
1800
+ approvedAt: "2024-07-16T05:52:06.674Z",
1801
+ hintandexplanations: [
1802
+ {
1803
+ _id: "65dc707c4fba1266d2d18e22",
1804
+ hint: [],
1805
+ explanation: [
1806
+ {
1807
+ layout_type: "Normal",
1808
+ data: [
1809
+ {
1810
+ text_layout: "<p>Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4. </p>",
1811
+ text: "Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4.",
1812
+ media_type: "image",
1813
+ media: "",
1814
+ _id: "65d5e3a06d01968ae918ae67",
1815
+ },
1816
+ ],
1817
+ _id: "65dc707c4fba1266d2d18e23",
1818
+ },
1819
+ ],
1820
+ question_id: "5aa77892-f8b9-4482-a6fe-876212413d4a",
1821
+ createdAt: "2024-02-26T11:05:32.932Z",
1822
+ updatedAt: "2024-02-26T11:05:32.932Z",
1823
+ __v: 0,
1824
+ },
1825
+ ],
1826
+ syllabusMapping: [
1827
+ {
1828
+ curriculum: { id: "38416", title: "CBSE" },
1829
+ grade: { id: "43141", title: "Grade 8" },
1830
+ subject: { id: "43150", title: "Mathematics" },
1831
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1832
+ topic: { id: "9453045", title: "Cubes" },
1833
+ difficulty: { id: "47081" },
1834
+ assessmentType: "Formative",
1835
+ cognitivLevel: "Application",
1836
+ },
1837
+ ],
1838
+ },
1839
+ main_question_count: "4",
1840
+ },
1841
+ ],
1842
+ total_questions: 4,
1843
+ },
1844
+ ],
1845
+ history: [],
1846
+ },
1847
+ {
1848
+ questionObject: {
1849
+ question_type: "2",
1850
+ question: "A number is multiplied by itself three times to get 64. What is the number?",
1851
+ solution: "<p>The number is 4 because 4 × 4 × 4 = 64. </p>",
1852
+ uuid: "5aa77892-f8b9-4482-a6fe-876212413d4a",
1853
+ question_layout: "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
1854
+ question_student_layout: [
1855
+ "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
1856
+ ],
1857
+ options: ["2", "4", "6", "8"],
1858
+ options_layout: ["2", "4", "6", "8"],
1859
+ answers: ["4"],
1860
+ answers_layout: ["4"],
1861
+ duration: "",
1862
+ images: [],
1863
+ sub_question: [],
1864
+ grades: [{ grade: "43141", difficulty: "47081" }],
1865
+ curriculum: ["38416"],
1866
+ subjects: ["43150"],
1867
+ chapters: ["91916"],
1868
+ topics: ["9453045"],
1869
+ sub_topic: [],
1870
+ assessmentType: ["Formative"],
1871
+ cognitivLevel: ["Application"],
1872
+ status: "0",
1873
+ version: "1.2",
1874
+ is_subquestion: false,
1875
+ created_by: "Vandana",
1876
+ modified_by: "CMMA Maths",
1877
+ is_teacher: true,
1878
+ is_student: true,
1879
+ created_by_id: "127",
1880
+ modified_by_id: "94",
1881
+ createdAt: "2024-02-26T11:05:32.911Z",
1882
+ version_uuid: "912435da-1927-45a7-96f5-d1b3dec00adf",
1883
+ approved_by_id: "94",
1884
+ approved_by: "CMMA Maths",
1885
+ is_archive: false,
1886
+ layout_type: null,
1887
+ images_details: [],
1888
+ knowledge_cell: ["65b92175b08b233252383b6a"],
1889
+ source: "Source G",
1890
+ option_image_details: [],
1891
+ labels: {
1892
+ normal: {
1893
+ prompt_id: "65d3598f48a34e9470928bee",
1894
+ source_coteacher_uuid: "067fbd2d-2621-4f01-acec-55fe428506cd",
1895
+ },
1896
+ syllabus: [
1897
+ {
1898
+ curriculum: "38416",
1899
+ grade: "43141",
1900
+ subject: "43150",
1901
+ chapter: "91916",
1902
+ topic: [],
1903
+ difficulty: "47081",
1904
+ },
1905
+ ],
1906
+ explanation: { prompt_id: "65d3912b48a34e947092b30b" },
1907
+ isAdvanced: false,
1908
+ basket: true,
1909
+ },
1910
+ updatedAt: "2024-09-09T06:04:13.667Z",
1911
+ __v: 0,
1912
+ approvedAt: "2024-07-16T05:52:06.674Z",
1913
+ hintandexplanations: [
1914
+ {
1915
+ _id: "65dc707c4fba1266d2d18e22",
1916
+ hint: [],
1917
+ explanation: [
1918
+ {
1919
+ layout_type: "Normal",
1920
+ data: [
1921
+ {
1922
+ text_layout: "<p>Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4. </p>",
1923
+ text: "Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4.",
1924
+ media_type: "image",
1925
+ media: "",
1926
+ _id: "65d5e3a06d01968ae918ae67",
1927
+ },
1928
+ ],
1929
+ _id: "65dc707c4fba1266d2d18e23",
1930
+ },
1931
+ ],
1932
+ question_id: "5aa77892-f8b9-4482-a6fe-876212413d4a",
1933
+ createdAt: "2024-02-26T11:05:32.932Z",
1934
+ updatedAt: "2024-02-26T11:05:32.932Z",
1935
+ __v: 0,
1936
+ },
1937
+ ],
1938
+ syllabusMapping: [
1939
+ {
1940
+ curriculum: { id: "38416", title: "CBSE" },
1941
+ grade: { id: "43141", title: "Grade 8" },
1942
+ subject: { id: "43150", title: "Mathematics" },
1943
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
1944
+ topic: { id: "9453045", title: "Cubes" },
1945
+ difficulty: { id: "47081" },
1946
+ assessmentType: "Formative",
1947
+ cognitivLevel: "Application",
1948
+ },
1949
+ ],
1950
+ showGreen: true,
1951
+ },
1952
+ userAnswer: {
1953
+ answerResult: [{ actualAnswer: "4", givenAnswer: "8", isCorrect: false }],
1954
+ overAllResult: false,
1955
+ chatId: "29edd990-a25a-438d-b34e-fc1c96ec2c8",
1956
+ },
1957
+ dispalyedQues: [
1958
+ {
1959
+ basket_id: "66dec4f247114c21928ac344",
1960
+ learning_mode: "assessment",
1961
+ non_basket_id: "",
1962
+ mode: "normal",
1963
+ eval_state: "advanced",
1964
+ current_status: "",
1965
+ current_rule: "",
1966
+ current_step_id: "assessment",
1967
+ prev_step_id: "",
1968
+ prev_basket_id: "",
1969
+ visited_question_indices: { m_index: 3, s_index: 0 },
1970
+ contents: [],
1971
+ questions: [
1972
+ {
1973
+ question: "af2d846f-f274-4028-a61b-420626dff6af",
1974
+ user_answer: '{"answerResult":[{"actualAnswer":"125","givenAnswer":"150","isCorrect":false}],"overAllResult":false,"chatId":"5d98d17a-9f8b-4091-b236-6b295e5f3420"}',
1975
+ difficulty_level: "",
1976
+ result: false,
1977
+ question_sequence: "main_question",
1978
+ created_at: "2024-09-09T09:51:05.038Z",
1979
+ question_details: {
1980
+ question_type: "2",
1981
+ question: "What is the cube of the number 5?",
1982
+ solution: "<p>The cube of 5 is 5 × 5 × 5 = 125. </p>",
1983
+ uuid: "aab397a1-9c11-47c5-bd59-08089544ce72",
1984
+ question_layout: "<p>What is the cube of the number 5?</p>",
1985
+ question_student_layout: [
1986
+ "<p>What is the cube of the number 5?</p>",
1987
+ ],
1988
+ options: ["25", "50", "125", "150"],
1989
+ options_layout: ["25", "50", "125", "150"],
1990
+ answers: ["125"],
1991
+ answers_layout: ["125"],
1992
+ duration: "",
1993
+ images: [],
1994
+ sub_question: [],
1995
+ grades: [{ grade: "43141", difficulty: "47081" }],
1996
+ curriculum: ["38416"],
1997
+ subjects: ["43150"],
1998
+ chapters: ["91916"],
1999
+ topics: ["9453045"],
2000
+ sub_topic: [],
2001
+ assessmentType: ["Formative"],
2002
+ cognitivLevel: ["Application"],
2003
+ status: "0",
2004
+ version: "1.2",
2005
+ is_subquestion: false,
2006
+ created_by: "Vandana",
2007
+ modified_by: "CMMA Maths",
2008
+ is_teacher: true,
2009
+ is_student: true,
2010
+ created_by_id: "127",
2011
+ modified_by_id: "94",
2012
+ createdAt: "2024-02-26T10:57:24.813Z",
2013
+ version_uuid: "af2d846f-f274-4028-a61b-420626dff6af",
2014
+ approved_by_id: "94",
2015
+ approved_by: "CMMA Maths",
2016
+ is_archive: false,
2017
+ layout_type: null,
2018
+ images_details: [],
2019
+ knowledge_cell: ["65b92021b08b23325238251a"],
2020
+ source: "Source G",
2021
+ option_image_details: [],
2022
+ labels: {
2023
+ normal: {
2024
+ prompt_id: "65d35a9a48a34e9470928cd9",
2025
+ source_coteacher_uuid: "adbec745-a134-48c4-8047-446962fc2c5b",
2026
+ },
2027
+ syllabus: [
2028
+ {
2029
+ curriculum: "38416",
2030
+ grade: "43141",
2031
+ subject: "43150",
2032
+ chapter: "91916",
2033
+ topic: "9453045",
2034
+ difficulty: "47081",
2035
+ },
2036
+ ],
2037
+ explanation: { prompt_id: "65d38f8f48a34e947092b190" },
2038
+ isAdvanced: false,
2039
+ basket: true,
2040
+ },
2041
+ updatedAt: "2024-09-09T06:04:13.667Z",
2042
+ __v: 0,
2043
+ approvedAt: "2024-07-16T05:52:06.674Z",
2044
+ hintandexplanations: [
2045
+ {
2046
+ _id: "65dc6e94672c9c7702c25742",
2047
+ hint: [],
2048
+ explanation: [
2049
+ {
2050
+ layout_type: "Normal",
2051
+ data: [
2052
+ {
2053
+ text_layout: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
2054
+ text: "To find the cube of the number 5, you simply multiply 5 by itself three times: 5 × 5 × 5. Imagine you have a cube-shaped box, and each side is 5 units long. To fill it completely, you'd need 125 of 1-unit cubes. That's why 5 cubed equals 125.",
2055
+ media_type: "image",
2056
+ media: "",
2057
+ _id: "65d38f8fe04ce2b731a62d6d",
2058
+ },
2059
+ ],
2060
+ _id: "65dc6e94672c9c7702c25743",
2061
+ },
2062
+ ],
2063
+ question_id: "aab397a1-9c11-47c5-bd59-08089544ce72",
2064
+ createdAt: "2024-02-26T10:57:24.828Z",
2065
+ updatedAt: "2024-02-26T10:57:24.828Z",
2066
+ __v: 0,
2067
+ },
2068
+ ],
2069
+ syllabusMapping: [
2070
+ {
2071
+ curriculum: { id: "38416", title: "CBSE" },
2072
+ grade: { id: "43141", title: "Grade 8" },
2073
+ subject: { id: "43150", title: "Mathematics" },
2074
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
2075
+ topic: { id: "9453045", title: "Cubes" },
2076
+ difficulty: { id: "47081" },
2077
+ assessmentType: "Formative",
2078
+ cognitivLevel: "Application",
2079
+ },
2080
+ ],
2081
+ },
2082
+ main_question_count: "1",
2083
+ },
2084
+ {
2085
+ question: "baf2dcad-7a45-462b-94df-63bebe775bc1",
2086
+ user_answer: '{"answerResult":[{"actualAnswer":"941192","givenAnswer":"8000","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc96ecc"}',
2087
+ difficulty_level: "",
2088
+ result: true,
2089
+ question_sequence: "main_question",
2090
+ created_at: "2024-09-09T09:51:09.354Z",
2091
+ question_details: {
2092
+ question_type: "2",
2093
+ question: "What is the cube of the largest two-digit even number?",
2094
+ solution: "<p>The largest two-digit even number is 98. The cube of 98 is 98 × 98 × 98 = 941192.</p>",
2095
+ uuid: "db1fd729-8d57-4364-8358-213eea0320fe",
2096
+ question_layout: "<p>What is the cube of the largest two-digit even number?</p>",
2097
+ question_student_layout: [
2098
+ "<p>What is the cube of the largest two-digit even number?</p>",
2099
+ ],
2100
+ options: ["64000", "6859", "8000", "941192"],
2101
+ options_layout: ["64000", "6859", "8000", "<p>941192</p>"],
2102
+ answers: ["941192"],
2103
+ answers_layout: ["<p>941192</p>"],
2104
+ duration: "",
2105
+ images: [],
2106
+ sub_question: [],
2107
+ grades: [{ grade: "43141", difficulty: "47081" }],
2108
+ curriculum: ["38416"],
2109
+ subjects: ["43150"],
2110
+ chapters: ["91916"],
2111
+ topics: ["9453045"],
2112
+ sub_topic: [],
2113
+ assessmentType: ["Formative"],
2114
+ cognitivLevel: ["Application"],
2115
+ status: "0",
2116
+ version: "1.3",
2117
+ is_subquestion: false,
2118
+ created_by: "Vandana",
2119
+ modified_by: "CMMA Maths",
2120
+ is_teacher: true,
2121
+ is_student: true,
2122
+ created_by_id: "127",
2123
+ modified_by_id: "94",
2124
+ createdAt: "2024-02-26T12:05:39.013Z",
2125
+ version_uuid: "baf2dcad-7a45-462b-94df-63bebe775bc1",
2126
+ approved_by_id: "94",
2127
+ approved_by: "CMMA Maths",
2128
+ is_archive: false,
2129
+ layout_type: null,
2130
+ images_details: [],
2131
+ knowledge_cell: ["65b92021b08b23325238251a"],
2132
+ source: "Source G",
2133
+ option_image_details: [],
2134
+ labels: {
2135
+ normal: {
2136
+ prompt_id: "65d35b0048a34e9470928d1e",
2137
+ source_coteacher_uuid: "5420b263-7f2c-4091-b7e9-b257292cd40c",
2138
+ },
2139
+ syllabus: [
2140
+ {
2141
+ curriculum: "38416",
2142
+ grade: "43141",
2143
+ subject: "43150",
2144
+ chapter: "91916",
2145
+ topic: "9453045",
2146
+ difficulty: "47120",
2147
+ },
2148
+ ],
2149
+ explanation: { prompt_id: "65d38ea148a34e947092b0df" },
2150
+ isAdvanced: false,
2151
+ basket: true,
2152
+ },
2153
+ updatedAt: "2024-09-09T06:04:13.667Z",
2154
+ __v: 0,
2155
+ approvedAt: "2024-07-16T05:52:06.674Z",
2156
+ hintandexplanations: [
2157
+ {
2158
+ _id: "65dc7e934fba1266d2d1a0bc",
2159
+ hint: [],
2160
+ explanation: [
2161
+ {
2162
+ layout_type: "Normal",
2163
+ data: [
2164
+ {
2165
+ text_layout: "<p> Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100. </p>",
2166
+ text: "Let's explore the cube of a number using the largest two-digit even number, which is 98. Imagine you have 98 apples, and you arrange them to form a perfect cube. You'd stack 98 layers of apples, with each layer containing 98 rows of 98 apples. When you multiply 98 by itself three times (98 × 98 × 98), you get 941192. That's a lot of apples! This is the cube of 98, and no other two-digit even number will give a larger cube because 98 is the biggest even number before you hit 100.",
2167
+ media_type: "image",
2168
+ media: "",
2169
+ _id: "65d6e124a96478be69ebf2be",
2170
+ },
2171
+ ],
2172
+ _id: "65dc7e934fba1266d2d1a0bd",
2173
+ },
2174
+ ],
2175
+ question_id: "db1fd729-8d57-4364-8358-213eea0320fe",
2176
+ createdAt: "2024-02-26T12:05:39.027Z",
2177
+ updatedAt: "2024-02-26T12:05:39.027Z",
2178
+ __v: 0,
2179
+ },
2180
+ ],
2181
+ syllabusMapping: [
2182
+ {
2183
+ curriculum: { id: "38416", title: "CBSE" },
2184
+ grade: { id: "43141", title: "Grade 8" },
2185
+ subject: { id: "43150", title: "Mathematics" },
2186
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
2187
+ topic: { id: "9453045", title: "Cubes" },
2188
+ difficulty: { id: "47081" },
2189
+ assessmentType: "Formative",
2190
+ cognitivLevel: "Application",
2191
+ },
2192
+ ],
2193
+ },
2194
+ main_question_count: "2",
2195
+ },
2196
+ {
2197
+ question: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
2198
+ user_answer: '{"answerResult":[{"actualAnswer":"64","givenAnswer":"64","isCorrect":true}],"overAllResult":true,"chatId":"284ec739-a6e8-41d6-8d46-f8d9a85fe061"}',
2199
+ difficulty_level: "",
2200
+ result: false,
2201
+ question_sequence: "main_question",
2202
+ created_at: "2024-09-09T09:51:11.962Z",
2203
+ question_details: {
2204
+ question_type: "2",
2205
+ question: "Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?",
2206
+ solution: "<p>64 is the smallest multiple of 4 that is also a perfect cube because it is equal to \\(4^{3}\\)</p>",
2207
+ uuid: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
2208
+ question_layout: "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
2209
+ question_student_layout: [
2210
+ "<p>Which of the following numbers is the smallest multiple of 4 that is also a perfect cube?</p>",
2211
+ ],
2212
+ options: ["64", "128", "256", "512"],
2213
+ options_layout: ["64", "128", "256", "512"],
2214
+ answers: ["64"],
2215
+ answers_layout: ["64"],
2216
+ duration: "",
2217
+ images: [],
2218
+ sub_question: [],
2219
+ grades: [{ grade: "43141", difficulty: "47081" }],
2220
+ curriculum: ["38416"],
2221
+ subjects: ["43150"],
2222
+ chapters: ["91916"],
2223
+ topics: ["9453045"],
2224
+ sub_topic: [],
2225
+ assessmentType: ["Formative"],
2226
+ cognitivLevel: ["Application"],
2227
+ status: "0",
2228
+ version: "1.4",
2229
+ is_subquestion: false,
2230
+ created_by: "Vandana",
2231
+ modified_by: "CMMA Maths",
2232
+ is_teacher: true,
2233
+ is_student: true,
2234
+ created_by_id: "127",
2235
+ modified_by_id: "94",
2236
+ createdAt: "2024-02-26T11:54:32.015Z",
2237
+ version_uuid: "238e0bea-9366-443d-ac87-0f5ad0ca4fe0",
2238
+ approved_by_id: "94",
2239
+ approved_by: "CMMA Maths",
2240
+ is_archive: false,
2241
+ layout_type: null,
2242
+ images_details: [],
2243
+ knowledge_cell: ["65b9211fb08b2332523835ea"],
2244
+ source: "Source G",
2245
+ option_image_details: [],
2246
+ labels: {
2247
+ normal: {
2248
+ prompt_id: "65d35e2948a34e9470928f44",
2249
+ source_coteacher_uuid: "21f7ee77-9fcd-446d-bc24-53e89b8fd573",
2250
+ },
2251
+ syllabus: [
2252
+ {
2253
+ curriculum: "38416",
2254
+ grade: "43141",
2255
+ subject: "43150",
2256
+ chapter: "91916",
2257
+ topic: "9453045",
2258
+ difficulty: "47081",
2259
+ },
2260
+ ],
2261
+ explanation: { prompt_id: "65d3889248a34e947092ac6a" },
2262
+ isAdvanced: false,
2263
+ basket: true,
2264
+ },
2265
+ updatedAt: "2024-09-09T06:04:13.667Z",
2266
+ __v: 0,
2267
+ approvedAt: "2024-07-16T05:52:06.674Z",
2268
+ hintandexplanations: [
2269
+ {
2270
+ _id: "65dc7bf8672c9c7702c2674e",
2271
+ hint: [],
2272
+ explanation: [
2273
+ {
2274
+ layout_type: "Normal",
2275
+ data: [
2276
+ {
2277
+ text_layout: "<p>Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube. </p>",
2278
+ text: "Let's talk about a neat math puzzle involving multiples and cubes. First, remember that a multiple of 4 is any number that you can get by multiplying 4 with another number. A perfect cube is a number you can make by multiplying the same number three times. So, we're on a treasure hunt to find the smallest number that is both a multiple of 4 and a perfect cube. Imagine you have a bunch of small cubes that you want to build into a larger cube, and you also want to make sure that you can divide your big cube into groups of 4 without any leftovers. After some digging, we find that 64 is our treasure! It's the smallest number that fits both clues. It's a multiple of 4 because 4 multiplied by 16 gives us 64. It's also a perfect cube because if we multiply 4 by itself three times (4 x 4 x 4), we get 64 as well. So, 64 is the smallest number that is a team player for both team multiple and team cube.",
2279
+ media_type: "image",
2280
+ media: "",
2281
+ _id: "65d72f75a96478be69ecbf8e",
2282
+ },
2283
+ ],
2284
+ _id: "65dc7bf8672c9c7702c2674f",
2285
+ },
2286
+ ],
2287
+ question_id: "c3d38f8f-7c46-4046-86cb-e92fbd620b0d",
2288
+ createdAt: "2024-02-26T11:54:32.030Z",
2289
+ updatedAt: "2024-02-26T11:54:32.030Z",
2290
+ __v: 0,
2291
+ },
2292
+ ],
2293
+ syllabusMapping: [
2294
+ {
2295
+ curriculum: { id: "38416", title: "CBSE" },
2296
+ grade: { id: "43141", title: "Grade 8" },
2297
+ subject: { id: "43150", title: "Mathematics" },
2298
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
2299
+ topic: { id: "9453045", title: "Cubes" },
2300
+ difficulty: { id: "47081" },
2301
+ assessmentType: "Formative",
2302
+ cognitivLevel: "Application",
2303
+ },
2304
+ ],
2305
+ },
2306
+ main_question_count: "3",
2307
+ },
2308
+ {
2309
+ question: "912435da-1927-45a7-96f5-d1b3dec00adf",
2310
+ user_answer: '{"answerResult":[{"actualAnswer":"4","givenAnswer":"8","isCorrect":false}],"overAllResult":false,"chatId":"29edd990-a25a-438d-b34e-fc1c96ec2c8"}',
2311
+ difficulty_level: "",
2312
+ result: false,
2313
+ question_sequence: "main_question",
2314
+ created_at: "2024-09-09T09:51:14.307Z",
2315
+ question_details: {
2316
+ question_type: "2",
2317
+ question: "A number is multiplied by itself three times to get 64. What is the number?",
2318
+ solution: "<p>The number is 4 because 4 × 4 × 4 = 64. </p>",
2319
+ uuid: "5aa77892-f8b9-4482-a6fe-876212413d4a",
2320
+ question_layout: "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
2321
+ question_student_layout: [
2322
+ "<p>A number is multiplied by itself three times to get 64. What is the number?</p>",
2323
+ ],
2324
+ options: ["2", "4", "6", "8"],
2325
+ options_layout: ["2", "4", "6", "8"],
2326
+ answers: ["4"],
2327
+ answers_layout: ["4"],
2328
+ duration: "",
2329
+ images: [],
2330
+ sub_question: [],
2331
+ grades: [{ grade: "43141", difficulty: "47081" }],
2332
+ curriculum: ["38416"],
2333
+ subjects: ["43150"],
2334
+ chapters: ["91916"],
2335
+ topics: ["9453045"],
2336
+ sub_topic: [],
2337
+ assessmentType: ["Formative"],
2338
+ cognitivLevel: ["Application"],
2339
+ status: "0",
2340
+ version: "1.2",
2341
+ is_subquestion: false,
2342
+ created_by: "Vandana",
2343
+ modified_by: "CMMA Maths",
2344
+ is_teacher: true,
2345
+ is_student: true,
2346
+ created_by_id: "127",
2347
+ modified_by_id: "94",
2348
+ createdAt: "2024-02-26T11:05:32.911Z",
2349
+ version_uuid: "912435da-1927-45a7-96f5-d1b3dec00adf",
2350
+ approved_by_id: "94",
2351
+ approved_by: "CMMA Maths",
2352
+ is_archive: false,
2353
+ layout_type: null,
2354
+ images_details: [],
2355
+ knowledge_cell: ["65b92175b08b233252383b6a"],
2356
+ source: "Source G",
2357
+ option_image_details: [],
2358
+ labels: {
2359
+ normal: {
2360
+ prompt_id: "65d3598f48a34e9470928bee",
2361
+ source_coteacher_uuid: "067fbd2d-2621-4f01-acec-55fe428506cd",
2362
+ },
2363
+ syllabus: [
2364
+ {
2365
+ curriculum: "38416",
2366
+ grade: "43141",
2367
+ subject: "43150",
2368
+ chapter: "91916",
2369
+ topic: [],
2370
+ difficulty: "47081",
2371
+ },
2372
+ ],
2373
+ explanation: { prompt_id: "65d3912b48a34e947092b30b" },
2374
+ isAdvanced: false,
2375
+ basket: true,
2376
+ },
2377
+ updatedAt: "2024-09-09T06:04:13.667Z",
2378
+ __v: 0,
2379
+ approvedAt: "2024-07-16T05:52:06.674Z",
2380
+ hintandexplanations: [
2381
+ {
2382
+ _id: "65dc707c4fba1266d2d18e22",
2383
+ hint: [],
2384
+ explanation: [
2385
+ {
2386
+ layout_type: "Normal",
2387
+ data: [
2388
+ {
2389
+ text_layout: "<p>Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4. </p>",
2390
+ text: "Imagine you have four apples. Now, if you get four more sets of four apples, you'd have 16 apples in total. If you did this three times, you'd end up with 64 apples. Similarly, when you multiply the number 4 by itself three times (4 × 4 × 4), you get 64. This is why the number we're looking for is 4.",
2391
+ media_type: "image",
2392
+ media: "",
2393
+ _id: "65d5e3a06d01968ae918ae67",
2394
+ },
2395
+ ],
2396
+ _id: "65dc707c4fba1266d2d18e23",
2397
+ },
2398
+ ],
2399
+ question_id: "5aa77892-f8b9-4482-a6fe-876212413d4a",
2400
+ createdAt: "2024-02-26T11:05:32.932Z",
2401
+ updatedAt: "2024-02-26T11:05:32.932Z",
2402
+ __v: 0,
2403
+ },
2404
+ ],
2405
+ syllabusMapping: [
2406
+ {
2407
+ curriculum: { id: "38416", title: "CBSE" },
2408
+ grade: { id: "43141", title: "Grade 8" },
2409
+ subject: { id: "43150", title: "Mathematics" },
2410
+ chapter: { id: "91916", title: "Cubes and Cube Roots" },
2411
+ topic: { id: "9453045", title: "Cubes" },
2412
+ difficulty: { id: "47081" },
2413
+ assessmentType: "Formative",
2414
+ cognitivLevel: "Application",
2415
+ },
2416
+ ],
2417
+ },
2418
+ main_question_count: "4",
2419
+ },
2420
+ ],
2421
+ total_questions: 4,
2422
+ },
2423
+ ],
2424
+ history: [],
2425
+ },
2426
+ ];
2427
+ //# sourceMappingURL=selectionUtils.js.map