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 @@
1
+ {"version":3,"file":"SchoolHelper.js","sourceRoot":"","sources":["../../../../../src/components/Molecules/TermsAndPrivacy/helpers/SchoolHelper.js"],"names":[],"mappings":"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"}
@@ -0,0 +1,44 @@
1
+ export namespace studentPrivacyInfo {
2
+ const info: string[];
3
+ const sections: ({
4
+ title: string;
5
+ content: string[];
6
+ isList?: undefined;
7
+ } | {
8
+ title: string;
9
+ isList: boolean;
10
+ content: string[];
11
+ })[];
12
+ }
13
+ export namespace contactCardInfo {
14
+ export const grievanceOfficer: string;
15
+ export const email: string;
16
+ export const phone: string;
17
+ export const address: string;
18
+ const info_1: string;
19
+ export { info_1 as info };
20
+ }
21
+ export namespace studentTermsInfo {
22
+ const info_2: string[];
23
+ export { info_2 as info };
24
+ const sections_1: ({
25
+ title: string;
26
+ isList: boolean;
27
+ content: (string | {
28
+ children: {
29
+ title: string;
30
+ data: string[];
31
+ };
32
+ })[];
33
+ } | {
34
+ title: string;
35
+ content: (string | {
36
+ children: {
37
+ title: string;
38
+ data: string[];
39
+ };
40
+ })[];
41
+ isList?: undefined;
42
+ })[];
43
+ export { sections_1 as sections };
44
+ }
@@ -0,0 +1,472 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.studentTermsInfo = exports.contactCardInfo = exports.studentPrivacyInfo = void 0;
4
+ const STUDENT_TERMS = 'https://parent.coschool.ai/student-terms';
5
+ exports.studentPrivacyInfo = {
6
+ info: [
7
+ `<span style="font-weight:700;">THIS STUDENT PRIVACY POLICY DOCUMENT IS AN ELECTRONIC RECORD IN TERMS OF THE INFORMATION TECHNOLOGY ACT, 2000 AND RULES MADE THEREUNDER. THIS ELECTRONIC RECORD IS GENERATED BY A COMPUTER SYSTEM AND DOES NOT REQUIRE ANY PHYSICAL OR DIGITAL SIGNATURES.</span>`,
8
+ `<span style="font-weight:700;">THIS DOCUMENT IS PUBLISHED IN ACCORDANCE WITH THE PROVISIONS OF INFORMATION TECHNOLOGY ACT, 2000 AND RULES MADE THEREUNDER THAT REQUIRES PUBLISHING THE RULES AND REGULATIONS, PRIVACY POLICY AND TERMS OF USE FOR ACCESS OR USAGE OF THIS WEBSITE.</span>`,
9
+ `We, People Combine Basics Private Limited, are a company incorporated under the laws of the
10
+ Republic of India and/or its affiliates with its registered office located at Plot No.99, Road No.72,
11
+ Jubilee Hills Co-operative Society, Jubilee Hills, Shaikpet, 500033, Hyderabad, Telangana, India,
12
+ (“<b>Company</b>” / “<b>we</b>” / “<b>our</b>” / “<b>us</b>”). `,
13
+ `This Student Privacy Policy ("<b>Policy</b>") explains how we collect, process, use, and protect the personal data of students ("<b>you</b>" / "<b>your</b>" / "<b>yourself</b>" / "<b>Student</b>") who receive educational services from a school or educational institution ("School") that has subscribed to our services and granted access to our website, <a href="https://coschool.ai/" target="_blank" rel="noopener noreferrer">coschool.ai</a> ("<b>Website</b>"). The School, as our direct customer, manages Student accounts on the Website through its administrator dashboard. As a Student, your access to our services is facilitated through your School's subscription.`,
14
+ `We are committed to safeguarding your privacy and providing a secure learning environment where you can engage with educational content and activities safely. This Policy details how we collect, use, and protect your data to ensure a transparent and trustworthy learning experience`,
15
+ `This Policy shall be deemed to be incorporated into the terms of <a href="${STUDENT_TERMS}" target="_blank" rel="noopener noreferrer">Student Terms of Use</a> and shall be read in addition to the <a href="${STUDENT_TERMS}" target="_blank" rel="noopener noreferrer">Student Terms of Use</a>. In the event of any conflict between this Policy and the <a href="${STUDENT_TERMS}" target="_blank" rel="noopener noreferrer">Student Terms of Use</a> , the interpretation placed by the Company shall be final and binding on you.`,
16
+ `This Policy is being framed in view of the Information Technology Act, 2000 read with Regulation 4 of the Information Technology (Reasonable Security Practices and Procedures and Sensitive Personal Data or Information) Rules, 2011 and Regulation 3(1) of the Information Technology (Intermediaries Guidelines and Digital Media Ethics Code) Rules, 2021 and the Digital Personal Data Protection Act, 2023.`,
17
+ `By accessing or using the Website, you acknowledge and agree that your School has subscribed to our services and provided you with access. This Policy applies to all students using the Website through their School. If you are a minor, you may only use the Website with the consent of your parent or legal guardian (“<b>Parent(s)</b>”) and under the supervision of your School. It is the responsibility of the School to obtain and manage the necessary parental consent before sharing your information with us.`,
18
+ `Your Parent’s explicit consent (as indicated and recorded on the Website) is required for the collection, use, sharing, and processing of your data as described in this Policy. If such consent has not been provided, you should not use the Website.`
19
+ ],
20
+ sections: [
21
+ {
22
+ title: "INTRODUCTION",
23
+ content: [
24
+ `This Policy governs the use of data collected by us to provide services through our Website.`,
25
+ `The aim of this Policy is to ensure that you understand what Information (as defined below) we collect about you, the reasons for collection and use, and the entities we may share it with. By providing your consent to this Policy, you agree to the collection, use and transfer of your Information as set out in this Policy. If you do not agree, please refrain from using the Website. You can contact us anytime with queries about this Policy at <a href="mailto:support@coschool.ai">support@coschool.ai</a>.`,
26
+ `We ensure compliance with all applicable laws, including the Digital Personal Data Protection Act, 2023.`
27
+ ]
28
+ },
29
+ {
30
+ title: "DEFINITIONS",
31
+ content: [
32
+ `<b>“Large Language Models”</b> or <b>“LLMs”</b> refer to advanced artificial intelligence models designed to process and analyse natural language data on a vast scale. These models possess significant computational power and have been trained on extensive datasets to understand and generate human-like language patterns, responses, and context.`,
33
+ `<b>“Messages”</b> means the messages sent to you from Coschool via SMS and WhatsApp or any other medium.`
34
+ ]
35
+ },
36
+ {
37
+ title: "SCOPE OF THE POLICY",
38
+ content: [
39
+ `By accessing or using the Website or otherwise giving Us your information, you undertake that you have the capacity to enter into a legally binding contract vide this Policy, which constitutes a legally binding document between you and the Company under the applicable laws, in particular, the Indian Contract Act, 1872 and Digital Personal Data Protection Act, 2023. The Company will collect and process your personal and third party data carefully, only for the purposes described in this Policy and only to the extent necessary as defined herein and within the scope of the applicable legal regulations. This Policy seeks to ensure that any personal information or third party information handled by the Company is managed in a way that is ethical, compliant and adheres to best industry practices.`,
40
+ `Please read the terms and conditions of this Policy carefully, before accessing or using this Website. By accessing or using the Website including its intermediary services, you agree to the terms of this Policy. If you are accepting this Policy on behalf of another person or company or other legal entity, you represent and warrant that you have full authority to bind such person, company or legal entity to these terms.`,
41
+ `This Policy describes the types of information the Company collects, why and how the Company uses the information, with whom the Company shares it, and the choices you can make about the Company's use of the information. This Policy also describes the measures the Company takes to protect the security of the information and how you can contact the Company about its privacy practices.`,
42
+ `This Policy describes the Company's current data protection policies and practices and may be amended/updated from time to time. Any changes to this Policy will become effective upon posting of the revised Policy on the Website. It is recommended that you regularly check this Policy to apprise yourself of any updates. Your continued use of Website or provision of data or information thereafter will imply your unconditional acceptance of such updates to this Policy.`,
43
+ `If you are under the 18 year age and do not have the required consent from your Parent, you are not eligible to use the Website. The Company is not responsible for any consequences arising from unauthorized use. Parents remain responsible for ensuring compliance with this Policy.`
44
+ ]
45
+ },
46
+ {
47
+ title: "COMPLIANCE",
48
+ content: [
49
+ `We collect minimal information from you and only use the Information collected for the purposes explicitly called out in the below Clause 7 of this Policy.`,
50
+ `The data collected is stored securely in a third-party cloud storage service provider, i.e., Amazon Web Services (AWS) servers in India as per industry standards. All details with regard to the nature of the data collected and the purpose for collecting it can be found in this Policy.`
51
+ ]
52
+ },
53
+ {
54
+ title: "CONSENT",
55
+ content: [
56
+ `By mere use of the Website, you expressly consent to the Company's collection, use, access, processing and disclosure of your Information and third-party information in accordance with this Policy. If you do not agree with the terms of this Policy, please do not use this Website.`,
57
+ `If you are a minor, you may only use the Website with the consent of your Parent and under the supervision of your School. It is the sole responsibility of the School to obtain and manage the necessary parental consent before providing you access to the Website and sharing your Information with the Company. By using the Website, your Parent, on your behalf, expressly consents to the Company's collection, use, processing, and disclosure of your Information as described in this Policy. The Company is not responsible for verifying or obtaining such consent. If parental consent has not been provided, you should not use the Website.`,
58
+ `To access and use the services on the Website, Students will log in using the credentials provided by their School, which may include a School-issued username and password, mobile number or email ID and password/OTP <b>("Login Credentials")</b>.`,
59
+ `By accessing and using the Website, you (or, if you are a minor, your Parent on your behalf) explicitly agree that your use of the Login Credentials and access to the Website shall be governed by the <a href="${STUDENT_TERMS}" target="_blank" rel="noopener noreferrer">Student Terms of Use</a>, this Policy, and any applicable agreement between your School and the Company. You should not share your Login Credentials, OTP, or other security information with anyone. Any actions taken using your Login Credentials will be considered as authorised by you. Company shall not be liable for any unauthorised use of the Login Credentials.`,
60
+ `Your acceptance of this Policy signifies your consent (or, in the case of a minor, the consent provided by your Parent) to the processing of your Information by the Company and forms a valid and binding agreement between you and the Website/Company for the processing of Information, as per Section 6(1) of the Digital Personal Data Protection Act, 2023.`
61
+ ]
62
+ },
63
+ {
64
+ title: "TYPES OF INFORMATION COLLECTED BY THE COMPANY",
65
+ content: [
66
+ `<b>Personal Information:</b> Personal Information refers to any data that can be used to identify you, such as your first name, last name, Student ID, school-provided email address, your parent's or legal guardian's full name, mobile number, email address, and other necessary identifiers required for account creation and login. This Personal Information is provided to us by your School through its administration dashboard when mapping Student accounts. The Company may also allow the Students to create an AI-generated profile icon and add a brief bio or description about themselves. The Company only collects Personal Information that is essential for providing the services in accordance with this Policy.`,
67
+ `<b>Assessment Information:</b> Assessment Information includes details about your educational progress, such as test scores, assignments, assessments, and feedback provided to enhance your learning experience. This may also include data on your progress within courses, subjects, and other educational activities, learning analytics, including anonymised and aggregated insights, records of interactions with the Website, such as time spent on activities, resources accessed, participation in discussions, and communication with instructors, teachers, or peers, or custom learning recommendations based on your performance and engagement patterns.`,
68
+ `<b>Non-Personal Information:</b> Non-personal information means information that does not specifically identify an individual or business, but includes information from you, such as your browser type, your internet service provider (ISP), operating system & version and your internet protocol (IP) address, device location, information about your mobile device including hardware model, preferred language, unique device identifier, your profession, field of work, information you provide us when you contact us for help; information you enter into our system when using the Website, such as while asking doubts, participating in discussions and taking tests and any other information you may give on and through the Website. The Company may gather any non-personal information regarding how many people visit the Website, the pages you visit, how long you visited our Website, and the date and time you used the Website. The Company may also collect Non-Personal Information that you voluntarily provide, such as information included in response to a questionnaire, or a survey conducted by the Company.`,
69
+ `<b>Usage Information:</b> Usage Information includes without limitation all data and information collected automatically through the Website (or through the third party analytics service providers), by use and access of the Website in the nature of system administrative data, statistical and demographical data, and operational information and data generated by or characterizing use of the Website including without limitation, Non-Personal Information, cookies, your search queries, comments, search results selected, number of clicks, pages viewed and the order of those pages, error logs, Website traffic, time spent on the Website, number of visits to the Website and other similar information and behaviour indicating the mode and manner of use of the Website.`,
70
+ `Personal Information, Assessment Information, Non-Personal Information, and Usage Information (collectively referred to as "<b>Information</b>") is collected only to the extent necessary for the intended purpose of providing and improving the services.`,
71
+ `The Company endeavors to minimise data collection and only gathers what is strictly necessary to facilitate your learning experience. Personal Information is collected only from Students who create an account and access the services on the Website.`,
72
+ `You confirm that any Information you provide is accurate, current, and updated. You also acknowledge that you have the necessary rights, permissions, and consents to share such Information. The Company's collection, storage, and processing of your Information shall comply with applicable laws and shall not violate any third-party agreements, laws, or legal orders.`,
73
+ `Providing Personal Information is not mandatory for those who only browse the Website without availing any services. However, if you choose to create an account, you must provide the required Personal Information. You are advised to exercise caution while sharing any Information about yourself or your family members.`
74
+ ]
75
+ },
76
+ {
77
+ title: "WHY DO WE COLLECT THIS INFORMATION?",
78
+ content: [
79
+ `We collect and use the Information to provide educational services, enhance learning experiences, and ensure a safe and secure environment for Students. The data collected is used for the following purposes:
80
+ <ol type="a">
81
+ <li>Enabling students to access learning materials, participate in activities, engage with lesson plans, question banks, and other educational tools.</li>
82
+ <li>Customizing content based on student progress, interests, and engagement patterns to enhance learning experiences.</li>
83
+ <li>Sending relevant updates, reminders, and notifications regarding assignments, progress tracking, and other educational activities.</li>
84
+ <li>Detecting, investigating, and preventing unauthorized or unlawful activities, ensuring compliance with applicable laws, and maintaining a safe learning environment.</li>
85
+ <li>Analyzing usage trends to improve existing features, develop new tools, and enhance Website functionality for better learning outcomes.</li>
86
+ <li>Assisting students with queries, troubleshooting technical issues, and providing necessary support related to the Website's educational services.</li>
87
+ <li>Responding to valid legal requests, complying with applicable laws and regulations, and taking necessary steps to ensure student safety and data security.</li>
88
+ </ol>`,
89
+ `At all times, we strive to use only the data necessary to fulfill these purposes while maintaining strict privacy and security protocols.`
90
+ ]
91
+ },
92
+ {
93
+ title: "WHAT IS THE DATA NOT COLLECTED FOR?",
94
+ content: [
95
+ `We do not use or share Information for advertising purposes on the Website.`,
96
+ `We do not display advertisements, share data for targeted advertising, or permit data collection by advertisers or data brokers.`,
97
+ `We do not sell Student's Information to any third party for any reason.`,
98
+ `We do not allow profiling of Students for targeted online advertising or any other commercial purposes.`
99
+ ]
100
+ },
101
+ {
102
+ title: "DUTIES OF STUDENTS",
103
+ content: [
104
+ `Students using the Website have certain obligations while sharing their Information, in accordance with the provisions of the Digital Personal Data Protection Act, 2023 and such obligations include (apart from the obligations prescribed under the Student Terms of Use of the Website):
105
+ <ol type="a">
106
+ <li>comply with the provisions of all applicable laws for the time being in force while exercising rights under the provisions of the Digital Personal Data Protection Act, 2023;</li>
107
+ <li>to ensure not to impersonate another person while providing their own personal data/Information for a specified purpose;</li>
108
+ <li>to ensure not to suppress any material information while providing their personal data/Information for any document, unique identifier, proof of identity or proof of address issued by the State or any of its instrumentalities;</li>
109
+ <li>to ensure not to register a false or frivolous grievance or complaint with the Company or the Data Protection Board of India; and</li>
110
+ <li>to furnish only such information as is verifiably authentic, while exercising the right to correction or erasure under the provisions of Digital Personal Data Protection Act, 2023.</li>
111
+ </ol>`
112
+ ]
113
+ },
114
+ {
115
+ title: "DATA RETENTION",
116
+ isList: false,
117
+ content: [
118
+ `We will store your data only for as long as it is required to provide the service or to the maximum extent permitted by law.`
119
+ ]
120
+ },
121
+ {
122
+ title: "THIRD PARTIES AND SHARING OF DATA",
123
+ content: [
124
+ `The Company may engage third party vendors and/or contractors to perform certain support services for the Company, including, without limitation, fulfilment of your requests, software maintenance services, advertising and marketing services, web hosting services and such other related services which are required by the Company to provide its services efficiently. These third parties may have limited access to Information. If they do, this limited access is provided so that they may perform these tasks for the Company and they are not authorized by the Company to otherwise use or disclose Information, except to the extent required by law. The Company does not make any representations concerning the privacy practices or policies or terms of use/service of such websites/third parties, nor does it control or guarantee the accuracy, integrity, or quality of the information, data, text, software, music, sound, photographs, graphics, videos, messages or other materials available on and with such websites/third parties.`,
125
+ `The Website may contain links and interactive functionality interacting with the websites of third parties or third parties including without limitation the payment gateways, advertisements, social media Websites. The Company is not responsible for and has no liability for the functionality, actions, inactions, privacy settings, privacy policies, terms, or content of any such websites or third parties. Before enabling any sharing functions to communicate with any such websites or otherwise visiting any such websites, the Company strongly recommends that you review and understand the terms and conditions, privacy policies, settings, and information-sharing functions of each such third-party website.`
126
+ ]
127
+ },
128
+ {
129
+ title: "THIRD PARTY ANALYTICS",
130
+ content: [
131
+ `In order to improve your experience on our Website, we collect and use aggregate data about usage patterns of how you use our Website. For example, how a Student interacts with various features on a page, the options selected by the Student, the amount of time that the Student spends on a specific page, etc. This is done to streamline the existing Student experience and to provide Students with a better experience of using the Service.`,
132
+ `We use a small number of third party services to collect and analyse this data. These services are contractually obligated only to use data about your usage of Services to provide analytics-related services to us and are prohibited from sharing it or using it for other purposes.`
133
+ ]
134
+ },
135
+ {
136
+ title: "DATA SECURITY",
137
+ content: [
138
+ `We implement industry-standard security measures to protect the confidentiality and integrity of the data we collect and process. Access to the LLMs is restricted to authorized personnel only and we follow the principle of least privilege.`,
139
+ `We securely store your Personal Information only as long as required for lawful purposes or as mandated by law.`
140
+ ]
141
+ },
142
+ {
143
+ title: "COSCHOOL'S USE OF ARTIFICIAL INTELLIGENCE",
144
+ isList: false,
145
+ content: [
146
+ `Our use of AI in our Service does not showcase any kind of bias or discrimination in generating its results.`
147
+ ]
148
+ },
149
+ {
150
+ title: "COOKIE POLICY",
151
+ content: [
152
+ `When you visit the Website, it may store or retrieve information on your browser, mostly in the form of cookies. The information that is stored might be about you, your preferences or your device and is mostly used to make the Website work as you expect it to. While the information does not directly identify you, it can provide you with a more personalized web experience. As we respect your right to privacy, you can choose not to allow some types of cookies through your browser settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.`,
153
+ `All browsers are different, so visit the "help" section of your browser to learn about cookie preferences and other privacy settings that may be available. Please note that if you choose to remove or reject cookies or clear local storage this could affect the features, availability, and functionality of our Service.`
154
+ ]
155
+ },
156
+ {
157
+ title: "HOW TO REVIEW AND DELETE PERSONAL INFORMATION",
158
+ isList: false,
159
+ content: [
160
+ `Your School may review, modify, or delete a Student's Personal Information in accordance with applicable law through its administrator dashboard. If you are a Parent or Student and wish to access, modify, or request the deletion of Personal Information, or restrict a Student's access to features on the Website, please contact your School. The School retains full control over Student accounts and may take steps to prevent a Student from accessing educational services through the Website in the future, such as by deleting the Student's profile from the School's account or restricting access to the Website.`
161
+ ]
162
+ },
163
+ {
164
+ title: "DATA PROTECTION PRACTICES",
165
+ content: [
166
+ `We follow the latest, industry standards to protect your data. Some measures that are in place include the use of highly secure, access-controlled data centres, data encryption in transit, and encryption data at rest etc. Despite these measures, in the event of a security breach, we will notify the affected Students within the amount of time as required by the applicable law.`,
167
+ `Please be advised that, while the Company strives to protect Information and privacy, the Company cannot guarantee or warranty its absolute security when Information is transmitted over the internet into the Website. The Company will annually evaluate this necessity considering your privacy and our relation while keeping the applicable legislation in mind.`,
168
+ `Access to your online account on the Website is via. your Login Credentials which is password protected and this helps to secure your account information. You are solely responsible for maintaining the confidentiality of your Login Credentials. To ensure safety of your Information, you are advised against sharing your Login Credentials with anyone. If you suspect any unauthorized use of your account, you must immediately notify the Company by sending an email to <a href="mailto:helpdesk@coschool.ai">helpdesk@coschool.ai</a>. You shall be liable to indemnify the Company for any loss suffered by the Company due to such unauthorized use of your account.`,
169
+ `For any loss or theft of Information, due to unauthorized access to your device through which you use the Website or other reasons solely attributable to you, the Company shall not be held liable or responsible under any circumstance whatsoever. Further, the Company shall not be responsible for any breach of security or for any actions of any third parties/vendors or events that are beyond the Company's reasonable control including but not limited to acts of government, computer hacking, unauthorised access to computer data and storage device, computer crashes, breach of security and encryption, poor quality of internet service or telephone service of the user, etc.`
170
+ ]
171
+ },
172
+ {
173
+ title: "CHANGES TO THE PRIVACY POLICY",
174
+ isList: false,
175
+ content: [
176
+ `A School or other educational institution may review, modify, or delete a Student's information in accordance with applicable law through its administrator dashboard. If you are a Parent or Student and wish to access, modify, or request the deletion of personal information, or restrict a Student's access to features on the Website, please contact your School. The School retains full control over Student accounts and may take steps to prevent a Student from accessing educational services through the Website in the future, such as by deleting the Student's profile from the School's account or restricting access to the Website.`
177
+ ]
178
+ },
179
+ {
180
+ title: "LIMITATION OF LIABILITY",
181
+ content: [
182
+ `The Company shall not be liable to you for any loss of profit, anticipated savings, goodwill, reputation or business opportunities or any type of direct or indirect, incidental, economic, compensatory, punitive, exemplary or consequential losses arising out of performance or non-performance of its obligations under this Policy.`,
183
+ `The Company is not responsible for any actions or inactions of any third parties, that receives`,
184
+ `Notwithstanding anything contained in this Policy or elsewhere, the Company shall not be held responsible for any loss, damage or misuse of your Personal Information, if such loss, damage or misuse is attributable to a Force Majeure Event and/or any third party. The term "Force Majeure Event" shall mean any event that is beyond the reasonable control of the Company and shall include, without limitation, sabotage, fire, flood, explosion, acts of God, civil commotion, strikes, lockouts or industrial action of any kind, riots, insurrection, war, acts of government, computer hacking, civil disturbances, unauthorised access to computer data and storage device, computer crashes, breach of security and encryption, epidemic, pandemic or national/state lockdown due to any reason and any other similar events not within the control of the Company and which the Company is not able to overcome.`
185
+ ]
186
+ },
187
+ {
188
+ title: "GOVERNING LAW",
189
+ isList: false,
190
+ content: [
191
+ `Without reference to any conflict of laws principles this Policy shall be governed by and interpreted and construed in accordance with the laws of India. The place of jurisdiction shall exclusively be in Hyderabad, Telangana, India. In the event of any dispute arising out of this Policy, the same shall be settled by binding arbitration conducted by a sole arbitrator, appointed jointly by both parties and governed by the Arbitration and Conciliation Act, 1996. The seat and venue of arbitration shall be Hyderabad, Telangana, India.`
192
+ ]
193
+ },
194
+ {
195
+ title: "GRIEVANCE REDRESSAL MECHANISM",
196
+ content: [
197
+ `In accordance with the Information Technology Act, 2000 and Rules made thereunder along with Section 13 of the Digital Personal Data Protection Act, 2023, you have the right to readily available means of grievance redressal in relation to your Information collected by the Website. Therefore, the Website/Company respects your rights and is hereby furnishing the name and contact details of the Grievance Officer, as provided below:
198
+ <table style="margin-top:8px">
199
+ <tr>
200
+ <td style="width: 64px">Name</td>
201
+ <td style="width:calc(100% - 64px)">Vishwa Talati</td>
202
+ </tr>
203
+ <tr>
204
+ <td style="width: 64px">Address</td>
205
+ <td style="width:calc(100% - 64px)">Corporate Office: Villa 10, Urban Sanctuary, Shankarpalle, Shankarpalli, K.V. Rangareddy, Rangareddy, Telangana, India – 501203 </td>
206
+ </tr>
207
+ <tr>
208
+ <td style="width: 64px">Email</td>
209
+ <td style="width:calc(100% - 64px)">helpdesk@coschool.ai</td>
210
+ </tr>
211
+ </table>
212
+ `,
213
+ `In case your grievance was not handled in compliance of the applicable laws by the Company, you have the right to file appropriate complaints (as per the prescribed rules) with the Data Protection Board of India under the provisions of the Digital Personal Data Protection Act, 2023.`
214
+ ]
215
+ },
216
+ {
217
+ title: "CONTACT INFORMATION",
218
+ isList: false,
219
+ content: [
220
+ `If you have any questions about this Policy, please feel free to write to us at: <a href="mailto:helpdesk@coschool.ai">helpdesk@coschool.ai</a> and we will reach out to you as soon as possible.`
221
+ ]
222
+ }
223
+ ]
224
+ };
225
+ exports.contactCardInfo = {
226
+ grievanceOfficer: `Vishwa Talati`,
227
+ email: `helpdesk@coschool.ai`,
228
+ phone: `+91-7075780899`,
229
+ address: `Corporate Office: Villa 10, Urban Sanctuary, Shankarpalle, Shankarpalli, K.V. Rangareddy, Rangareddy, Telangana, India – 501203`,
230
+ info: `In case your grievance was not handled in compliance of the applicable laws by the Company, you have the right to file appropriate complaints (as per the prescribed rules) with the Data Protection Board of India under the provisions of the Digital Personal Data Protection Act, 2023.`
231
+ };
232
+ exports.studentTermsInfo = {
233
+ info: [
234
+ `<span style="font-weight:700;">THIS DOCUMENT IS AN ELECTRONIC RECORD IN TERMS OF THE INFORMATION TECHNOLOGY ACT, 2000 AND RULES MADE THEREUNDER. THIS ELECTRONIC RECORD IS GENERATED BY A COMPUTER SYSTEM AND DOES NOT REQUIRE ANY PHYSICAL OR DIGITAL SIGNATURES.`,
235
+ `<span style="font-weight:700;">THIS DOCUMENT IS PUBLISHED IN ACCORDANCE WITH THE PROVISIONS OF RULE 3(1) OF THE INFORMATION TECHNOLOGY (INTERMEDIARY GUIDELINES AND DIGITAL MEDIA ETHICS CODE) RULES, 2021 AND CONSUMER PROTECTION (E-COMMERCE) RULES, 2020 THAT REQUIRES PUBLISHING THE RULES AND REGULATIONS, PRIVACY POLICY AND TERMS AND CONDITIONS FOR ACCESS OR USAGE OF THIS WEBSITE.`,
236
+ `We are happy to have you here at Coschool.ai (hereinafter referred to as the "<b>Website</b>" or "<b>Coschool</b>"), owned by <b>People Combine Basics Private Limited</b>, a company incorporated under the Companies Act, 2013 (bearing company identification number U80904TS2020PTC179943) (hereinafter referred to as the "<b>Company</b>" "<b>we</b>" "<b>us</b>" and "<b>our</b>"), having its registered office at Plot No.99, Road No.72, Jubilee Hills Co-operative Society, Jubilee Hills, Shaikpet, Telangana, India - 500033. This Website provides an interactive and user-friendly environment where Students can access study materials, ask questions, engage with teachers, and track their academic progress in seamless and paperless manner.`,
237
+ `Please read these Student Terms of Use ("<b>Terms</b>") carefully as access to and use of the Website, including any other websites or applications of the Company that link to these Terms, and/or any services and contents such as information, reports, journals, data, study and reading materials, graphics, audio, and videos ("<b>Material</b>") provided through the Website (collectively, "Service(s)"), is made available to you (hereinafter referred to as "<b>you</b>", "<b>Student</b>", "<b>your</b>", "<b>yourself</b>" and shall include your legal guardians, as may be applicable) through your School's registration with the Company. For the purpose of these Terms the term "School" refers to the educational institution, academy, or organisation that has registered with the Company to provide Students, teachers, and legal guardians/parents access to the Website, and its Services. By using the Website, you acknowledge that your access is subject to your School's agreement with the Company and that you will comply with these Terms and any applicable School policies.`,
238
+ `You should read these Terms and access and read all further linked information, if any, referred to in these Terms, as such information contains further terms and conditions that apply to you as a Student. Such linked information including but not limited to the Company's privacy policy ("<b>Privacy Policy</b>") is hereby incorporated by reference into these Terms.`,
239
+ `The Company reserves the right, at its sole discretion, to change, modify, add, or remove portions of these Terms at any time without prior notice. In case of any revisions to these Terms, the Company may notify the School, post a conspicuous notice on the Website, or communicate through other appropriate channels. Continued use of the Website by Students after such changes shall be deemed acceptance of the revised Terms by the School and its Students. As long as you comply with these Terms and the applicable policies of your School, the Company grants you a personal, non-exclusive, non-transferable, revocable, non-assignable, limited right to access and use the Website.`,
240
+ `Students should review these Terms along with any other applicable policies referenced herein, including but not limited to the Company's Privacy Policy, which is incorporated by reference into these Terms.`,
241
+ `These Terms, read together with any agreement the School may have with the Company, define the relationship and mutual expectations while Students use the Website. In case of any conflict between these Terms and the agreement entered into between the School and the Company, the interpretation placed by the Company shall be final and binding. If you do not agree with these Terms, please discontinue use of the Website and notify your School.`
242
+ ],
243
+ sections: [
244
+ {
245
+ title: "MEMBERSHIP ELIGIBILITY",
246
+ isList: true,
247
+ content: [
248
+ `As you are a minor, you are not legally allowed to enter into contracts under the Indian Contract Act, 1872. Therefore, your use of the Website is permitted only under the supervision of your School/legal guardian/parent, who are responsible for ensuring compliance with these Terms.`,
249
+ `Your School is responsible for obtaining consent from your parent or legal guardian before granting you access to the Website. The Company does not verify or collect this consent directly. If your School has not secured the necessary approval, you are not eligible to use the Website.`,
250
+ `If you access or use the Website without proper consent from your parent or legal guardian, or if your School fails to meet its obligations, the Company is not responsible for any consequences. It is your School's and your legal guardian's responsibility to ensure that you meet the eligibility criteria.`,
251
+ `The Company may disable or restrict your access to the Website if it becomes aware that you are using it without the necessary consent or in violation of these Terms.`
252
+ ]
253
+ },
254
+ {
255
+ title: "ACCEPTANCE OF TERMS",
256
+ isList: true,
257
+ content: [
258
+ `By logging into the Website using credentials provided by the School, the Student (or their parent/legal guardian, in the case of a minor) acknowledges and agrees to comply with these Terms. Before accessing the Website, the Student (or their parent/legal guardian, if the Student is a minor) will be required to check a tick-box confirming that they have read, understood, and accepted these Terms.`,
259
+ `If the Student is a minor, their parent or legal guardian, by granting consent for the Student's use of the Website, also agrees to these Terms on the Student's behalf. If the Student or their parent/legal guardian does not agree to these Terms, the Student should not use the Website. However, continued use of the Website will be deemed as acceptance of these Terms and an agreement to comply with them.`
260
+ ]
261
+ },
262
+ {
263
+ title: "STUDENT ACCOUNT AND ACCESS",
264
+ isList: true,
265
+ content: [
266
+ `To use the Website, you must have an account <b>(“Student Account”)</b>, which will be created based on the login credentials provided by your School’s administrator. Your login credentials shall consist of your Student ID, as assigned by the School, and a password to be set by you in accordance with the Company’s onboarding process. You may receive an invitation or welcome link at your school-provided email address to initiate the login process. Upon first login, you will be required to set a new password to activate your Student Account. If you are under the age of 18, you may only register for and use the Services under the supervision of a parent or legal guardian. In such cases, the supervising adult shall be deemed the Student for the purposes of these Terms and shall be responsible for all activities carried out under the Student Account.`,
267
+ `Your School will provide the necessary details for your enrollment on the Website. You may not create an account independently; access is granted only through the registration process initiated by your School.`,
268
+ {
269
+ children: {
270
+ title: '<b>Your Responsibilities</b><br/>As a registered Student, you must adhere to the following responsibilities to ensure the security and proper use of your account:',
271
+ data: [
272
+ `You are responsible for keeping your login details, including your username and password, confidential. Do not share your credentials with anyone, including classmates, to prevent unauthorized access to your Student Account.`,
273
+ `If you suspect any unauthorised access or misuse of your Student Account, you must inform your School or teacher immediately so that appropriate action can be taken to secure your account.`,
274
+ `Each Student is allowed only one Student Account, which must be linked to their School. Creating multiple accounts or using another Student's credentials is not permitted.`,
275
+ `Your access to the Website is tied to your enrollment with your School. If you leave or transfer to a different institution, your access may be revoked, and your account may be deactivated.`
276
+ ]
277
+ }
278
+ }
279
+ ]
280
+ },
281
+ {
282
+ title: "STUDENT CODE OF CONDUCT",
283
+ content: [
284
+ {
285
+ children: {
286
+ title: 'By using the Website, the Services and/or the Materials, you shall not host, display, upload, modify, publish, transmit, store, update or share any information that:',
287
+ data: [
288
+ `belongs to another person or entity and to which you do not have any right;`,
289
+ `is grossly harmful, harassing, blasphemous, defamatory, obscene, pornographic, sexually-explicit (including nudity, implied nudity, excessive visible skin or cleavage, even if not explicitly sexual in nature, and any images focused on individual body parts, even if not explicitly sexual in nature), paedophilic, libellous, invasive of another person's privacy, insulting or harassing on the basis of gender, hateful or racially or ethnically objectionable, sensational, gory, depicting violence or threats of violence, relating or encouraging money laundering or gambling, or otherwise inconsistent or contrary to the laws in force in any manner whatsoever;`,
290
+ `could be construed as divisive/stereotyping should be avoided if it could be interpreted as 'hateful' (Gender exclusive content is excluded from this, provided it is positive);`,
291
+ `is harmful to children;`,
292
+ `is misleading in any way;`,
293
+ ` involves the transmission of "junk mail", "chain letters", or unsolicited mass mailing or "spamming";`,
294
+ `infringes upon or violates any third party's rights including, but not limited to, any patent, trademark, copyright or other proprietary rights or intellectual property rights, rights of privacy (including without limitation unauthorized disclosure of a person's name, e-mail address, physical address or phone number) or rights of publicity;`,
295
+ `contains assertions or implications about a person's race, ethnic origin, religion, beliefs, age, sexual orientation or practices, gender identity, disability, medical condition (including physical or mental health), financial status. However, pro-equality content, particularly for gender and sexuality shall be permissible;`,
296
+ `impersonates another person or provides instructional information about illegal activities such as violating someone's privacy, or providing or creating computer viruses;`,
297
+ `provides information about any products, services, or content that are inappropriate, illegal, or unsafe, or that exploit, mislead, or exert undue pressure on the age groups targeted. This could include promotion of tobacco or tobacco-related products, recreational or medical marijuana, bongs and rolling papers`,
298
+ `tries to gain unauthorized access or exceeds the scope of authorized access to the Website or to profiles, blogs, communities, account information, bulletins, or other areas of the Website or solicits passwords or personally identifying information for commercial or unlawful purposes from other users of the Website;`,
299
+ `engages in commercial activities without the Coschool's prior written consent such as engages in contests, sweepstakes, barter, advertising etc.;`,
300
+ `exploits controversial political or social issues for commercial purposes;`,
301
+ `interferes with another Student's use of the Website;`,
302
+ ` refers to any website or URL that, in the Company's sole discretion, contains material that is inappropriate for the Website or any other website, contains content that would be prohibited or violates the letter or spirit of these Terms;`,
303
+ ` deceives or misleads the addressee/users about the origin of the messages or knowingly and intentionally communicates any information which is patently false or misleading or grossly offensive or menacing in nature but may reasonably be perceived as a fact;`,
304
+ `serves to communicate fake, inaccurate or misleading information including fake inaccurate or misleading news or facts;`,
305
+ `contains software viruses or any other computer codes, files or programs designed to interrupt, destroy or limit the functionality of any computer resource;`,
306
+ ` threatens the unity, integrity, defence, security or sovereignty of India, friendly relations with foreign states, or public order, or causes incitement to the commission of any cognisable offense or prevents investigation of any offense or is insulting other nation;`,
307
+ `is patently false and untrue, and is written or published in any form, with the intent to mislead or harass a person, entity or agency for financial gain or to cause any injury to any person;`,
308
+ `contains any trojan horses, worms or other computer programming routines that may damage, detrimentally interfere with, diminish value of, covertly intercept or steal any system, data or personal information; and/or`,
309
+ `violates any law for the time being in force.`
310
+ ]
311
+ }
312
+ },
313
+ `The Student agrees and acknowledges that(a) they shall not use the Website for any illegal or unauthorized purpose; and(b) the use of any information or materials on the Website is entirely at their own risk, for which the Company shall not be liable.The Student agrees to comply with all laws, rules, and regulations applicable to the use of the Website.`,
314
+ `The Student shall not use another person's Student Account at any time. Any unauthorized or improper use of another individual's account is strictly prohibited.The Company shall not be responsible for any claims, losses, or damages resulting from the authorized or unauthorized use of an account by any third party.`,
315
+ `The Company reserves the right, but is not obligated, to monitor the Student's access to and use of the Website to ensure compliance with these Terms, applicable laws, and other legal requirements. The Company may take appropriate action in its sole discretion if any violations are detected.`,
316
+ `The Student shall not transfer, assign, mortgage, charge, or delegate any of their rights or obligations under these Terms to another person or entity, except with the prior written consent of the Company.`
317
+ ]
318
+ },
319
+ {
320
+ title: "STUDENT DATA AND PRIVACY",
321
+ isList: true,
322
+ content: [
323
+ `<b>"Student Data"</b> refers to any information that personally identifies a minor Student, including but not limited to their full name, email ID, Student ID, password, and personal information of Student's legal guardian/parent. The Company collects and uses Student Data only as necessary to fulfill its obligations, provide Services, and enhance user experience.`,
324
+ `Company collects and processes Student Data in accordance with its Privacy Policy. By using the Website, you acknowledge that your School is responsible for obtaining necessary consents for the disclosure of your data to the Company.`
325
+ ]
326
+ },
327
+ {
328
+ title: "RIGHT TO ACCESS WEBSITE",
329
+ content: [
330
+ `Subject to your compliance with these Terms and/or payment of applicable Services fees, if any, Company grants you a limited right to access and make personal use of this Website, but not to download (other than page caching) or modify it, or any portion of it, except with express written consent of Company, as may be applicable. This right does not include any resale or commercial use of this Website or its contents; any collection and use of any Service listings, descriptions, or prices; any derivative use of this Website or its contents; any downloading or copying of Account information for the benefit of another Student; or any use of data mining, robots, or similar data gathering and extraction tools.`,
331
+ `This Website or any portion of this Website (including but not limited to any copyrighted material, trademarks, or other proprietary information) shall not be reproduced, duplicated, copied, sold, resold, visited, distributed or otherwise exploited for any commercial purpose without express written consent of Company, as may be applicable.`,
332
+ `You shall not frame or use framing techniques to enclose any trademark, logo, or other proprietary information (including images, text, page layout, or form) of Company without express written consent. You shall not use any meta tags or any other "hidden text" utilising Company's names or trademarks without the express written consent of Company, as applicable. Any unauthorised use terminates the permission or right granted by the Company to you.`,
333
+ `You are granted a limited, revocable, and non-exclusive right to create a hyperlink to the welcome page of the Website as long as the link does not portray Company, or its services in a false, misleading, derogatory, or otherwise offensive matter. You shall not use any Company logo or other proprietary graphic or trademark as part of the link without express written consent of Company.`
334
+ ]
335
+ },
336
+ {
337
+ title: "CONTENT AND INTELLECTUAL PROPERTY RIGHTS",
338
+ content: [
339
+ `The Student hereby agrees and understands that the intellectual property and proprietary rights in the Website, the Services including the Material provided and made available through and on the Website shall vest with the Company solely and exclusively. The Company owns all proprietary rights, title, interest in the Website, Material and all the Services provided on and through the Website including but not limited to copyrights, trademarks, text, graphics, audio clip, video clip, digital downloads, service marks, logos, trade names, and other intellectual and proprietary rights associated with the Website or the Company's Services provided on the Website and contents and is protected under Indian law and international author' rights laws and the Student is hereby granted a limited license to access and use the Materials (as may be applicable to a Student) for the purpose of utilizing the Services for personal use only.`,
340
+ `The Company reserves the right to change or modify the Services and/or the Materials (as the case may be) on the Website from time to time at its sole discretion.`,
341
+ `You hereby acknowledges and agrees that the Website and/or the Services constitutes original works and have been developed, compiled, prepared, revised, selected, and arranged by the Company and others through the application of methods and standards of judgment developed and applied through the expenditure of substantial time, effort, and money and constitute valuable intellectual property of the Company and such others. The Student thereby agrees to protect the proprietary rights of the Company during and after the tenure of these Terms. The Student shall not selectively download portions of the Website and/or the Materials without retaining the copyright notices.`,
342
+ `You shall not display, print or download extracts from the Website, whether for your personal or non-personal use, and you shall not commercialise any intellectual property belonging to the Company in any manner.`,
343
+ `You shall not (whether directly or indirectly including through the use of any program) create a database in an electronic or other form by downloading and storing all or any part of the pages from the Website.`,
344
+ `Without obtaining our prior written permission, no part of the Website shall be reproduced or transmitted to or stored in any other website or mobile application, nor shall any of its pages or part thereof be disseminated in any electronic or non-electronic form.`,
345
+ `Nothing on the Website or your use of the Services shall be construed as conferring on you or any party, any licence or other rights under the intellectual property or other proprietary rights of the Company, its affiliates or any third party, whether implied or otherwise.`,
346
+ `The Company bears no responsibility for claims relating to infringement of any intellectual property rights in relation to the Services and/or their content.`,
347
+ `As between you and Company, you own the information you provide to us, and you may request its deletion at any time. Any information you submit to Us is at your own risk. By providing information to Us, you represent and warrant that you are entitled to submit such information and the same is not confidential and not in violation of any law, contractual restrictions or other third-party rights (including any intellectual property rights).`,
348
+ `Any infringement shall lead to appropriate legal proceedings against the Student at appropriate forum for seeking all available remedies under applicable laws of the country.`
349
+ ]
350
+ },
351
+ {
352
+ title: "INTELLECTUAL PROPERTY CLAIMS",
353
+ content: [
354
+ `Company respects the intellectual property of others. If you believe that your intellectual property rights have been used in any way that gives rise to concerns of infringement, please write to us at <a href="mailto:helpdesk@coschool.ai">helpdesk@coschool.ai</a>.`
355
+ ]
356
+ },
357
+ {
358
+ title: "TERMINATION OF ACCESS TO SERVICES",
359
+ content: [
360
+ {
361
+ children: {
362
+ title: 'The Student Account in the Website can be terminated at any time by:',
363
+ data: [
364
+ `the Student, by ceasing to access or use the Website; or by`,
365
+ `School administrator disabling Student Account;`,
366
+ `the Company, at its sole discretion, with or without cause, including but not limited to (a) violation of these Terms; (b) prolonged inactivity or non-use of the Services; (c) termination of the Company's agreement with the Student's School; or (d) the Student leaving the School or ceasing to be enrolled at the School.`
367
+ ]
368
+ }
369
+ },
370
+ `The Student acknowledges that the termination of Services may come into effect without any prior notice, and the Company shall thereafter, immediately deactivate or delete the Student's account and all related information and/or bar any further access to the Student's account or the Services, subject to applicable law.`,
371
+ `The disclaimer of warranties, the limitation of liability, Clauses in the Terms that by their nature should survive termination of your usage of the Website, and the governing law provisions shall survive any termination of these Terms.`
372
+ ]
373
+ },
374
+ {
375
+ title: "FORCE MAJEURE EVENTS",
376
+ content: [
377
+ `For the purpose of these Terms, the term "<b>Force Majeure Event</b>" shall mean any event that is beyond the reasonable control of the Company and shall include, without limitation, sabotage, fire, flood, explosion, acts of God, civil commotion, strikes, lockouts or industrial action of any kind, riots, insurrection, war, acts of government, foreign or governmental order including orders of lock-down, quarantine, an outbreak of an epidemic, pandemic or other communicable diseases, computer hacking, civil disturbances, unauthorised access to computer data and storage device, computer crashes, breach of security and encryption, and any other similar events not within the control of the Company and which the Company and is not able to overcome. The Company shall solely determine what would constitute as a Force Majeure Event and the same shall be final and binding upon the Student.`,
378
+ `The Company shall not be liable to the Student for Website's failure to perform or for delay in the performance of the Website including any unavailability, non-availability or partial availability of the Website, downtime, maintenance of the Website, slow-down of the Website, any disruption, defects, deficiency or delay in the Services arising from the acts/omissions of the Student, non-responsiveness of the Student, to the extent such failure or delay results from causes beyond Company's reasonable control including Force Majeure Events.`
379
+ ]
380
+ },
381
+ {
382
+ title: "LINKS TO THIRD PARTY",
383
+ isList: false,
384
+ content: [
385
+ `The Website may contain links and interactive functionality interacting with the websites, services, tools or features of third parties. The Company shall not be responsible for and has no liability for the functionality, actions, inactions, privacy settings, privacy policies, terms, or content of any such third party links and integrations. Before enabling any sharing functions to communicate with any such third parties or otherwise visiting any such third parties, the Company strongly recommends that the Student reviews and understands the terms and conditions, privacy policies, settings, and information-sharing functions of each such third-party links and integrations.`
386
+ ]
387
+ },
388
+ {
389
+ title: "REPRESENTATIONS",
390
+ isList: false,
391
+ content: [
392
+ `The Student acknowledges that their access to and use of the Website is subject to the consent and authorisation of their School and, where required, their parent or legal guardian. The Student represents and warrants that they will use the Website in compliance with these Terms. The School, and where applicable, the Student's parent or legal guardian, shall be responsible for ensuring the Student's adherence to these Terms.`
393
+ ]
394
+ },
395
+ {
396
+ title: "LIMITATION OF LIABILITY",
397
+ content: [
398
+ `The Student hereby agrees and acknowledges that the Company shall not be held liable to the Student for any direct, indirect, special, consequential, incidental, exemplary or punitive damages, or loss of profit, business, data or revenues. The Company shall also not be liable under any circumstance for damages arising out or related in any way to the Student's inability to access, or the Student's difficulty in accessing the Website, any bugs, viruses, trojan horses, or the like, which may be transmitted to or through the Website by any third party, any loss of the Student's data or content from the Website, the Student's failure to keep the Student login credentials secure and confidential.`,
399
+ `The Company shall not be liable under any circumstances for damages arising out of or in any way related to content and Services provided via the Website and/or any information or the integrated services offered or provided by any third-party through the Website.`,
400
+ `To the fullest extent permitted by law, the aggregate liability of Company to you for all claims arising out of or relating to the use or any inability to use any portion of the Website or otherwise under these Terms, whether in contract, tort, or otherwise, is limited to INR 100 (Indian Rupees One Hundred Only).`
401
+ ]
402
+ },
403
+ {
404
+ title: "DISCLAIMER OF WARRANTIES",
405
+ isList: false,
406
+ content: [
407
+ `THE WEBSITE AND ALL INFORMATION, CONTENT, MATERIALS AND SERVICES INCLUDED ON OR OTHERWISE MADE AVAILABLE TO THE STUDENT THROUGH THE WEBSITE ARE PROVIDED BY THE COMPANY ON AN "AS IS," "AS AVAILABLE" BASIS, WITHOUT REPRESENTATIONS OR WARRANTIES OF ANY KIND. THE COMPANY MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, AS TO THE OPERATION OF THE WEBSITE, THE ACCURACY OR COMPLETENESS OF THE CONTENTS OR THE INFORMATION OR THE SERVICES PROVIDED ON THE WEBSITE AND/OR THAT THE PERFORMANCE OF THE WEBSITE AND/OR THE SERVICES WILL BE UNINTERRUPTED, TIMELY, SECURE, ACCURATE OR ERROR FREE AND/OR THAT THE RESULTS THAT MAY BE OBTAINED OR EXPECTED TO BE OBTAINED FROM THE USE OF WEBSITE WILL BE ACCURATE OR RELIABLE. THE COMPANY SHALL HAVE NO RESPONSIBILITY FOR ANY DAMAGE TO THE STUDENT'S COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF ANY CONTENT, MATERIALS, DOCUMENT OR INFORMATION THROUGH THE WEBSITE. THE STUDENT EXPRESSLY AGREES THAT THE USE OF THE WEBSITE IS AT THE STUDENT'S SOLE RISK. THE COMPANY WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND ARISING FROM THE USE OF THE WEBSITE OR THE CONTENTS INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE, AND CONSEQUENTIAL LOSS AND/OR DAMAGES. TO THE FULL EXTENT PERMITTED BY LAW, THE COMPANY DISCLAIMS ANY AND ALL REPRESENTATIONS AND WARRANTIES WITH RESPECT TO THE WEBSITE AND ITS CONTENTS, WHETHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE OR USE.`,
408
+ `THE STUDENT FURTHER ACKNOWLEDGES AND AGREES THAT COMPANY DOES NOT WARRANT THAT THE ACCESS TO THE SERVICES THROUGH THE WEBSITE OR VARIOUS NETWORK CHANNELS OF THIRD-PARTY SERVICE PROVIDERS INCLUDING THE INFRASTRUCTURE MAINTAINED BY THE STUDENT, ALL OF WHICH ARE BEYOND THE COMPANY'S CONTROL, WILL BE UNINTERRUPTED, TIMELY, ERROR-FREE. THE SERVICES WILL ACCORDINGLY NOT BE CONSIDERED UNAVAILABLE FOR ANY OUTAGES DUE TO: (I) ACTS OR OMISSIONS OF THE STUDENTS; (II) FAILURES OF EQUIPMENT OF THE STUDENT, NETWORK UNAVAILABILITY OR BANDWIDTH LIMITATIONS ON HOSTING SERVERS SUBSCRIBED TO BY THE COMPANY AND/OR THE STUDENT; OR (III) ISSUES ARISING FROM BUGS OR OTHER PROBLEMS IN THE WEBSITE, SOFTWARE, FIRMWARE OR HARDWARE OF THE COMPANY, STUDENT AND/OR ANY THIRD-PARTY SERVICE PROVIDER. PLEASE NOTE THAT INFORMATION PROVIDED ON THE WEBSITE HAS NOT BEEN EVALUATED AND/OR APPROVED BY ANY STATUTORY BODY OR AUTHORITY IN INDIA.`,
409
+ `THE STUDENT AGREES AND ACKNOWLEDGES THAT BY PROVIDING THE SERVICES, THE COMPANY IS MERELY EXTENDING A FACILITY TO ASSIST THE STUDENT IN IMPROVING ACADEMIC AND OPERATIONAL PERFORMANCE OF STUDENTS AND THE COMPANY MAKES NO REPRESENTATIONS OR GUARANTEES THAT AS A RESULT OF THE SERVICES TO BE PROVIDED BY THE COMPANY, (A) STUDENTS' ACADEMIC PERFORMANCE WILL INCREASE; AND/OR (B) STUDENTS' OPERATIONAL PERFORMANCE WILL INCREASE. IT IS AGREED BY THE STUDENT THAT THE COMPANY GIVES NO ASSURANCE ABOUT THE ACCURACY, RESULTS OF USE, COMPLETENESS OR ADEQUACY OF THE SERVICES WHICH THE STUDENT RECEIVES FROM THE COMPANY AND THE STUDENT WILL RELY EXCLUSIVELY ON THE RESULTS OF ITS OWN INVESTIGATIONS CARRIED OUT WITH RESPECT TO THE USE AND UTILIZATION OF THE SERVICES BY THE STUDENT. THE COMPANY SHALL NOT BE LIABLE FOR ANY DAMAGES OF ANY NATURE WHATSOEVER RESULTING FROM THE USE OF THE SERVICES BY THE STUDENT.`,
410
+ `THE STUDENT FURTHER AGREES THAT THE SERVICES HEREIN IS MERE SUPPLEMENTAL AND NOT A SUBSTITUTION TO THE REAL AND TRADITIONAL EDUCATION SYSTEM. THE COMPANY MAKES NO GUARANTEES WITH RESPECT TO THE AVAILABILITY OR UPTIME OF ANY OF THE SERVICES. IN THE EVENT OF DEGRADATION OR INSTABILITY OF COMPANY'S SYSTEM OR AN EMERGENCY, THE COMPANY MAY, IN ITS SOLE DISCRETION, TEMPORARILY SUSPEND STUDENT'S ACCESS TO THE SERVICES UNDER THIS AGREEMENT PROVIDED HOWEVER AS SOON AS REASONABLY PRACTICABLE, THE COMPANY SHALL PROVIDE REASON FOR THE SUSPENSION TO ENABLE THE STUDENT TO TAKE REMEDIAL MEASURES IN ORDER TO ENABLE THE COMPANY TO RESTORE THE SERVICES.`,
411
+ `THE SERVICES PROVIDED ON THIS WEBSITE, INCLUDING AI ASSISTANT, AI TUTOR, SCHOOL AI AND VIN, OR SUCH OTHER TOOLS/FEATURES, UTILIZE ADVANCED ARTIFICIAL INTELLIGENCE ("AI") TECHNOLOGY TO ENHANCE THE LEARNING EXPERIENCE. HOWEVER, THE COMPANY MAKES NO REPRESENTATIONS OR GUARANTEES REGARDING THE ACCURACY, COMPLETENESS, OR RELIABILITY OF THE RESPONSES AND INFORMATION GENERATED BY THESE AI DRIVEN SERVICES. STUDENTS SHOULD BE AWARE THAT NOT ALL QUERIES ASKED TO AI ASSISTANT, AI TUTOR, SCHOOL AI, VIN OR SUCH OTHER TOOLS/FEATURE AVAILABLE ON THE PLATFORM WEBSITE WILL RECEIVE ACCURATE OR COMPLETE ANSWERS. THE COMPANY RECOMMENDS THAT STUDENTS INDEPENDENTLY VERIFY ANY INFORMATION OR ADVICE OBTAINED FROM THESE SERVICES BEFORE RELYING ON IT FOR EDUCATIONAL OR DECISION-MAKING PURPOSES. THE COMPANY SHALL NOT BE LIABLE FOR ANY ERRORS, OMISSIONS, OR INACCURACIES IN THE INFORMATION PROVIDED BY THESE AI SERVICES OR FOR ANY RELIANCE PLACED ON SUCH INFORMATION BY THE STUDENT.`
412
+ ]
413
+ },
414
+ {
415
+ title: "INDEMNIFICATION",
416
+ isList: false,
417
+ content: [
418
+ `The Student shall indemnify and hold harmless the Company, affiliates, subsidiaries, group companies (as applicable) and their respective officers, directors, agents, and employees, from any and all claims or demands, or actions including reasonable attorneys' fees, made by any third party or penalty imposed due to or arising out of the Student's breach of these Terms, Privacy Policy and other policies, or the Student's violation of any law, rules or regulations or the rights (including infringement of any intellectual property rights) of a third party.`
419
+ ]
420
+ },
421
+ {
422
+ title: "PRIVACY POLICY",
423
+ content: [
424
+ `As elaborated under the Privacy Policy, the Company will keep all confidential information confidential and shall not disclose it to anyone except as required by law, and shall ensure that such confidential information is protected with security measures and a degree of care that it would apply to its own confidential information.`,
425
+ `The Company acknowledges that its employees, directors, agents and contractors shall use the confidential information only for the intended purpose for which it is provided. The Company shall use all reasonable endeavours to ensure that its employees, directors, agents and contractors acknowledge and comply with the provisions of these terms of confidentiality as if such person was subject to these terms of confidentiality. If the Student objects to the Student's information being transferred or used, the Student is advised not to use the Website.`
426
+ ]
427
+ },
428
+ {
429
+ title: "ASSIGNMENT",
430
+ isList: false,
431
+ content: [
432
+ `It is expressly agreed by the Student that the Company may assign all or part of its rights or duties under these Terms without such assignment being considered a change to these Terms and without notice to the Student, except to the extent provided by law.`
433
+ ]
434
+ },
435
+ {
436
+ title: "GOVERNING LAW",
437
+ isList: false,
438
+ content: [
439
+ `These Terms shall be governed by and interpreted and construed in accordance with the laws of India. The place of jurisdiction shall exclusively be in Hyderabad, Telangana, India. In the event of any dispute arising out of these Terms the same shall be settled by a binding arbitration conducted by a sole arbitrator, appointed jointly by both the Company and the Student and such arbitration shall be governed by the Arbitration and Conciliation Act, 1996. The seat and venue of arbitration shall be Hyderabad, Telangana, India. The award of the arbitrator shall be valid and binding on both the Student and the Company.`
440
+ ]
441
+ },
442
+ {
443
+ title: "GRIEVANCE REDRESSAL MECHANISM",
444
+ isList: false,
445
+ content: [
446
+ `In accordance with the Information Technology Act, 2000, the Digital Data Protection Act, 2023 and Rules made thereunder, the name and contact details of the Grievance Officer are provided below:
447
+ <table style="margin-top:8px">
448
+ <tr>
449
+ <td style="width: 64px">Name</td>
450
+ <td style="width:calc(100% - 64px)">Vishwa Talati</td>
451
+ </tr>
452
+ <tr>
453
+ <td style="width: 64px">Address</td>
454
+ <td style="width:calc(100% - 64px)">Corporate Office: Villa 10, Urban Sanctuary, Shankarpalle, Shankarpalli, K.V. Rangareddy, Rangareddy, Telangana, India – 501203 </td>
455
+ </tr>
456
+ <tr>
457
+ <td style="width: 64px">Email</td>
458
+ <td style="width:calc(100% - 64px)">helpdesk@coschool.ai</td>
459
+ </tr>
460
+ </table>`
461
+ ]
462
+ },
463
+ {
464
+ title: "CONTACT INFORMATION",
465
+ isList: false,
466
+ content: [
467
+ `If you have any questions about these Terms, please feel free to write to us at: <a href="mailto:helpdesk@coschool.ai">helpdesk@coschool.ai</a> and we will reach out to you as soon as possible.`
468
+ ]
469
+ }
470
+ ]
471
+ };
472
+ //# sourceMappingURL=StudentHelper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StudentHelper.js","sourceRoot":"","sources":["../../../../../src/components/Molecules/TermsAndPrivacy/helpers/StudentHelper.js"],"names":[],"mappings":"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"}