@magmamath/students-features 0.6.14-rc.2 → 0.6.14-rc.21

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 (274) hide show
  1. package/dist/commonjs/features/chatbot/components/{ChatMessages/ChatbotMessages.js → Chat/Chat.js} +8 -15
  2. package/dist/commonjs/features/chatbot/components/Chat/Chat.js.map +1 -0
  3. package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js +74 -0
  4. package/dist/commonjs/features/chatbot/components/ChatInput/ChatInput.js.map +1 -0
  5. package/dist/commonjs/features/chatbot/components/ChatInput/RequestHintButton.js +144 -0
  6. package/dist/commonjs/features/chatbot/components/ChatInput/RequestHintButton.js.map +1 -0
  7. package/dist/commonjs/features/chatbot/components/ChatInput/freeText/ChatTextInput.js +135 -0
  8. package/dist/commonjs/features/chatbot/components/ChatInput/freeText/ChatTextInput.js.map +1 -0
  9. package/dist/commonjs/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.js +77 -0
  10. package/dist/commonjs/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.js.map +1 -0
  11. package/dist/commonjs/features/chatbot/components/{Alternatives/InputButton.js → ChatInput/freeText/SendMessageButton.js} +26 -17
  12. package/dist/commonjs/features/chatbot/components/ChatInput/freeText/SendMessageButton.js.map +1 -0
  13. package/dist/commonjs/features/chatbot/components/Chatbot.js +2 -2
  14. package/dist/commonjs/features/chatbot/components/Chatbot.js.map +1 -1
  15. package/dist/commonjs/features/chatbot/constants.js +2 -1
  16. package/dist/commonjs/features/chatbot/constants.js.map +1 -1
  17. package/dist/commonjs/features/chatbot/index.js +7 -0
  18. package/dist/commonjs/features/chatbot/index.js.map +1 -1
  19. package/dist/commonjs/features/chatbot/model/ChatBotModel.js +44 -8
  20. package/dist/commonjs/features/chatbot/model/ChatBotModel.js.map +1 -1
  21. package/dist/commonjs/features/chatbot/model/ChatBotTextInput.js +16 -0
  22. package/dist/commonjs/features/chatbot/model/ChatBotTextInput.js.map +1 -0
  23. package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js +44 -11
  24. package/dist/commonjs/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
  25. package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -1
  26. package/dist/commonjs/features/chatbot/types/types.js +2 -0
  27. package/dist/commonjs/features/chatbot/types/types.js.map +1 -0
  28. package/dist/commonjs/features/chatbot/types/units.types.js +10 -0
  29. package/dist/commonjs/features/chatbot/types/units.types.js.map +1 -1
  30. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js +1 -3
  31. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js.map +1 -1
  32. package/dist/commonjs/features/exampleSolution/assets/grid.webp +0 -0
  33. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +18 -11
  34. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -1
  35. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js +7 -7
  36. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js.map +1 -1
  37. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js +55 -29
  38. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js.map +1 -1
  39. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js +3 -1
  40. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js.map +1 -1
  41. package/dist/commonjs/features/formulaSheet/components/FormulaSheet.js +5 -4
  42. package/dist/commonjs/features/formulaSheet/components/FormulaSheet.js.map +1 -1
  43. package/dist/commonjs/shared/hooks/useKeyDownListener.js +3 -2
  44. package/dist/commonjs/shared/hooks/useKeyDownListener.js.map +1 -1
  45. package/dist/commonjs/shared/translation/localization/ca.json +2 -1
  46. package/dist/commonjs/shared/translation/localization/en.json +3 -2
  47. package/dist/commonjs/shared/translation/localization/gb.json +2 -1
  48. package/dist/commonjs/shared/translation/localization/sct.json +2 -1
  49. package/dist/commonjs/shared/translation/localization/sw.json +3 -2
  50. package/dist/module/features/chatbot/components/{ChatMessages/ChatbotMessages.js → Chat/Chat.js} +6 -13
  51. package/dist/module/features/chatbot/components/Chat/Chat.js.map +1 -0
  52. package/dist/module/features/chatbot/components/ChatInput/ChatInput.js +67 -0
  53. package/dist/module/features/chatbot/components/ChatInput/ChatInput.js.map +1 -0
  54. package/dist/module/features/chatbot/components/ChatInput/RequestHintButton.js +138 -0
  55. package/dist/module/features/chatbot/components/ChatInput/RequestHintButton.js.map +1 -0
  56. package/dist/module/features/chatbot/components/ChatInput/freeText/ChatTextInput.js +128 -0
  57. package/dist/module/features/chatbot/components/ChatInput/freeText/ChatTextInput.js.map +1 -0
  58. package/dist/module/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.js +71 -0
  59. package/dist/module/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.js.map +1 -0
  60. package/dist/module/features/chatbot/components/{Alternatives/InputButton.js → ChatInput/freeText/SendMessageButton.js} +25 -16
  61. package/dist/module/features/chatbot/components/ChatInput/freeText/SendMessageButton.js.map +1 -0
  62. package/dist/module/features/chatbot/components/Chatbot.js +2 -2
  63. package/dist/module/features/chatbot/components/Chatbot.js.map +1 -1
  64. package/dist/module/features/chatbot/constants.js +1 -0
  65. package/dist/module/features/chatbot/constants.js.map +1 -1
  66. package/dist/module/features/chatbot/index.js +1 -0
  67. package/dist/module/features/chatbot/index.js.map +1 -1
  68. package/dist/module/features/chatbot/model/ChatBotModel.js +44 -8
  69. package/dist/module/features/chatbot/model/ChatBotModel.js.map +1 -1
  70. package/dist/module/features/chatbot/model/ChatBotTextInput.js +11 -0
  71. package/dist/module/features/chatbot/model/ChatBotTextInput.js.map +1 -0
  72. package/dist/module/features/chatbot/model/ChatBotThreadManager.js +44 -11
  73. package/dist/module/features/chatbot/model/ChatBotThreadManager.js.map +1 -1
  74. package/dist/module/features/chatbot/types/model.types.js.map +1 -1
  75. package/dist/module/features/chatbot/types/types.js +2 -0
  76. package/dist/module/features/chatbot/types/types.js.map +1 -0
  77. package/dist/module/features/chatbot/types/units.types.js +6 -0
  78. package/dist/module/features/chatbot/types/units.types.js.map +1 -1
  79. package/dist/module/features/exampleSolution/ExampleSolutionModal.js +1 -3
  80. package/dist/module/features/exampleSolution/ExampleSolutionModal.js.map +1 -1
  81. package/dist/module/features/exampleSolution/assets/grid.webp +0 -0
  82. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +19 -12
  83. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -1
  84. package/dist/module/features/exampleSolution/components/QuestionSection.js +9 -9
  85. package/dist/module/features/exampleSolution/components/QuestionSection.js.map +1 -1
  86. package/dist/module/features/exampleSolution/components/SolutionSection.js +57 -31
  87. package/dist/module/features/exampleSolution/components/SolutionSection.js.map +1 -1
  88. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js +3 -1
  89. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js.map +1 -1
  90. package/dist/module/features/formulaSheet/components/FormulaSheet.js +5 -4
  91. package/dist/module/features/formulaSheet/components/FormulaSheet.js.map +1 -1
  92. package/dist/module/shared/hooks/useKeyDownListener.js +3 -2
  93. package/dist/module/shared/hooks/useKeyDownListener.js.map +1 -1
  94. package/dist/module/shared/translation/localization/ca.json +2 -1
  95. package/dist/module/shared/translation/localization/en.json +3 -2
  96. package/dist/module/shared/translation/localization/gb.json +2 -1
  97. package/dist/module/shared/translation/localization/sct.json +2 -1
  98. package/dist/module/shared/translation/localization/sw.json +3 -2
  99. package/dist/typescript/commonjs/features/chatbot/components/{ChatMessages/ChatbotMessages.d.ts → Chat/Chat.d.ts} +3 -3
  100. package/dist/typescript/commonjs/features/chatbot/components/Chat/Chat.d.ts.map +1 -0
  101. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/ChatInput.d.ts +9 -0
  102. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -0
  103. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/RequestHintButton.d.ts +16 -0
  104. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/RequestHintButton.d.ts.map +1 -0
  105. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/freeText/ChatTextInput.d.ts +16 -0
  106. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/freeText/ChatTextInput.d.ts.map +1 -0
  107. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.d.ts +11 -0
  108. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.d.ts.map +1 -0
  109. package/dist/typescript/{module/features/chatbot/components/Alternatives/InputButton.d.ts → commonjs/features/chatbot/components/ChatInput/freeText/SendMessageButton.d.ts} +2 -2
  110. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/freeText/SendMessageButton.d.ts.map +1 -0
  111. package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts +2 -0
  112. package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts.map +1 -1
  113. package/dist/typescript/commonjs/features/chatbot/constants.d.ts +1 -0
  114. package/dist/typescript/commonjs/features/chatbot/constants.d.ts.map +1 -1
  115. package/dist/typescript/commonjs/features/chatbot/index.d.ts +1 -0
  116. package/dist/typescript/commonjs/features/chatbot/index.d.ts.map +1 -1
  117. package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts +5 -6
  118. package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts.map +1 -1
  119. package/dist/typescript/commonjs/features/chatbot/model/ChatBotTextInput.d.ts +8 -0
  120. package/dist/typescript/commonjs/features/chatbot/model/ChatBotTextInput.d.ts.map +1 -0
  121. package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts +3 -2
  122. package/dist/typescript/commonjs/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
  123. package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts +1 -1
  124. package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts.map +1 -1
  125. package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts +23 -1
  126. package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts.map +1 -1
  127. package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +11 -2
  128. package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -1
  129. package/dist/typescript/commonjs/features/chatbot/types/types.d.ts +1 -0
  130. package/dist/typescript/commonjs/features/chatbot/types/types.d.ts.map +1 -0
  131. package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts +5 -0
  132. package/dist/typescript/commonjs/features/chatbot/types/units.types.d.ts.map +1 -1
  133. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -1
  134. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +5 -1
  135. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -1
  136. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts +2 -1
  137. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts.map +1 -1
  138. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts.map +1 -1
  139. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts +3 -2
  140. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -1
  141. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts +2 -1
  142. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts.map +1 -1
  143. package/dist/typescript/commonjs/features/formulaSheet/components/FormulaSheet.d.ts.map +1 -1
  144. package/dist/typescript/commonjs/shared/hooks/useKeyDownListener.d.ts +1 -1
  145. package/dist/typescript/commonjs/shared/hooks/useKeyDownListener.d.ts.map +1 -1
  146. package/dist/typescript/commonjs/shared/hooks/useKeyboard.d.ts +1 -1
  147. package/dist/typescript/commonjs/shared/hooks/useKeyboard.d.ts.map +1 -1
  148. package/dist/typescript/commonjs/shared/translation/constants.d.ts +5 -0
  149. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  150. package/dist/typescript/commonjs/shared/translation/model.d.ts +2 -0
  151. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
  152. package/dist/typescript/module/features/chatbot/components/{ChatMessages/ChatbotMessages.d.ts → Chat/Chat.d.ts} +3 -3
  153. package/dist/typescript/module/features/chatbot/components/Chat/Chat.d.ts.map +1 -0
  154. package/dist/typescript/module/features/chatbot/components/ChatInput/ChatInput.d.ts +9 -0
  155. package/dist/typescript/module/features/chatbot/components/ChatInput/ChatInput.d.ts.map +1 -0
  156. package/dist/typescript/module/features/chatbot/components/ChatInput/RequestHintButton.d.ts +16 -0
  157. package/dist/typescript/module/features/chatbot/components/ChatInput/RequestHintButton.d.ts.map +1 -0
  158. package/dist/typescript/module/features/chatbot/components/ChatInput/freeText/ChatTextInput.d.ts +16 -0
  159. package/dist/typescript/module/features/chatbot/components/ChatInput/freeText/ChatTextInput.d.ts.map +1 -0
  160. package/dist/typescript/module/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.d.ts +11 -0
  161. package/dist/typescript/module/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.d.ts.map +1 -0
  162. package/dist/typescript/{commonjs/features/chatbot/components/Alternatives/InputButton.d.ts → module/features/chatbot/components/ChatInput/freeText/SendMessageButton.d.ts} +2 -2
  163. package/dist/typescript/module/features/chatbot/components/ChatInput/freeText/SendMessageButton.d.ts.map +1 -0
  164. package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts +2 -0
  165. package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts.map +1 -1
  166. package/dist/typescript/module/features/chatbot/constants.d.ts +1 -0
  167. package/dist/typescript/module/features/chatbot/constants.d.ts.map +1 -1
  168. package/dist/typescript/module/features/chatbot/index.d.ts +1 -0
  169. package/dist/typescript/module/features/chatbot/index.d.ts.map +1 -1
  170. package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts +5 -6
  171. package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts.map +1 -1
  172. package/dist/typescript/module/features/chatbot/model/ChatBotTextInput.d.ts +8 -0
  173. package/dist/typescript/module/features/chatbot/model/ChatBotTextInput.d.ts.map +1 -0
  174. package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts +3 -2
  175. package/dist/typescript/module/features/chatbot/model/ChatBotThreadManager.d.ts.map +1 -1
  176. package/dist/typescript/module/features/chatbot/model/translation.d.ts +1 -1
  177. package/dist/typescript/module/features/chatbot/model/translation.d.ts.map +1 -1
  178. package/dist/typescript/module/features/chatbot/types/api.types.d.ts +23 -1
  179. package/dist/typescript/module/features/chatbot/types/api.types.d.ts.map +1 -1
  180. package/dist/typescript/module/features/chatbot/types/model.types.d.ts +11 -2
  181. package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -1
  182. package/dist/typescript/module/features/chatbot/types/types.d.ts +1 -0
  183. package/dist/typescript/module/features/chatbot/types/types.d.ts.map +1 -0
  184. package/dist/typescript/module/features/chatbot/types/units.types.d.ts +5 -0
  185. package/dist/typescript/module/features/chatbot/types/units.types.d.ts.map +1 -1
  186. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -1
  187. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +5 -1
  188. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -1
  189. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts +2 -1
  190. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts.map +1 -1
  191. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts.map +1 -1
  192. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts +3 -2
  193. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -1
  194. package/dist/typescript/module/features/exampleSolution/types.d.ts +2 -1
  195. package/dist/typescript/module/features/exampleSolution/types.d.ts.map +1 -1
  196. package/dist/typescript/module/features/formulaSheet/components/FormulaSheet.d.ts.map +1 -1
  197. package/dist/typescript/module/shared/hooks/useKeyDownListener.d.ts +1 -1
  198. package/dist/typescript/module/shared/hooks/useKeyDownListener.d.ts.map +1 -1
  199. package/dist/typescript/module/shared/hooks/useKeyboard.d.ts +1 -1
  200. package/dist/typescript/module/shared/hooks/useKeyboard.d.ts.map +1 -1
  201. package/dist/typescript/module/shared/translation/constants.d.ts +5 -0
  202. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  203. package/dist/typescript/module/shared/translation/model.d.ts +2 -0
  204. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
  205. package/package.json +2 -2
  206. package/src/features/chatbot/components/{ChatMessages/ChatbotMessages.tsx → Chat/Chat.tsx} +12 -17
  207. package/src/features/chatbot/components/ChatInput/ChatInput.tsx +83 -0
  208. package/src/features/chatbot/components/ChatInput/RequestHintButton.tsx +156 -0
  209. package/src/features/chatbot/components/ChatInput/freeText/ChatTextInput.tsx +153 -0
  210. package/src/features/chatbot/components/ChatInput/freeText/FreeTextInputBlock.tsx +83 -0
  211. package/src/features/chatbot/components/{Alternatives/InputButton.tsx → ChatInput/freeText/SendMessageButton.tsx} +37 -16
  212. package/src/features/chatbot/components/Chatbot.tsx +4 -2
  213. package/src/features/chatbot/constants.ts +3 -0
  214. package/src/features/chatbot/index.ts +2 -0
  215. package/src/features/chatbot/model/ChatBotModel.ts +67 -33
  216. package/src/features/chatbot/model/ChatBotTextInput.ts +10 -0
  217. package/src/features/chatbot/model/ChatBotThreadManager.ts +35 -9
  218. package/src/features/chatbot/model/translation.ts +1 -1
  219. package/src/features/chatbot/types/api.types.ts +25 -1
  220. package/src/features/chatbot/types/model.types.ts +16 -1
  221. package/src/features/chatbot/types/types.ts +0 -0
  222. package/src/features/chatbot/types/units.types.ts +6 -0
  223. package/src/features/exampleSolution/ExampleSolutionModal.tsx +1 -7
  224. package/src/features/exampleSolution/assets/grid.webp +0 -0
  225. package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +24 -12
  226. package/src/features/exampleSolution/components/QuestionSection.tsx +11 -7
  227. package/src/features/exampleSolution/components/SolutionSection.tsx +72 -29
  228. package/src/features/exampleSolution/model/ExampleSolution.model.ts +5 -2
  229. package/src/features/exampleSolution/types.ts +2 -1
  230. package/src/features/formulaSheet/components/FormulaSheet.tsx +6 -4
  231. package/src/shared/hooks/useKeyDownListener.ts +3 -1
  232. package/src/shared/translation/localization/ca.json +2 -1
  233. package/src/shared/translation/localization/en.json +3 -2
  234. package/src/shared/translation/localization/gb.json +2 -1
  235. package/src/shared/translation/localization/sct.json +2 -1
  236. package/src/shared/translation/localization/sw.json +3 -2
  237. package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js +0 -111
  238. package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js.map +0 -1
  239. package/dist/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.js +0 -208
  240. package/dist/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.js.map +0 -1
  241. package/dist/commonjs/features/chatbot/components/Alternatives/InputButton.js.map +0 -1
  242. package/dist/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.js +0 -157
  243. package/dist/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.js.map +0 -1
  244. package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +0 -1
  245. package/dist/commonjs/features/exampleSolution/assets/grid.png +0 -0
  246. package/dist/module/features/chatbot/components/Alternatives/Alternatives.js +0 -105
  247. package/dist/module/features/chatbot/components/Alternatives/Alternatives.js.map +0 -1
  248. package/dist/module/features/chatbot/components/Alternatives/HelpRequestOption.js +0 -200
  249. package/dist/module/features/chatbot/components/Alternatives/HelpRequestOption.js.map +0 -1
  250. package/dist/module/features/chatbot/components/Alternatives/InputButton.js.map +0 -1
  251. package/dist/module/features/chatbot/components/Alternatives/InputWithHintRow.js +0 -150
  252. package/dist/module/features/chatbot/components/Alternatives/InputWithHintRow.js.map +0 -1
  253. package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +0 -1
  254. package/dist/module/features/exampleSolution/assets/grid.png +0 -0
  255. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts +0 -11
  256. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts.map +0 -1
  257. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.d.ts +0 -13
  258. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/HelpRequestOption.d.ts.map +0 -1
  259. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputButton.d.ts.map +0 -1
  260. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.d.ts +0 -11
  261. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/InputWithHintRow.d.ts.map +0 -1
  262. package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +0 -1
  263. package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts +0 -11
  264. package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts.map +0 -1
  265. package/dist/typescript/module/features/chatbot/components/Alternatives/HelpRequestOption.d.ts +0 -13
  266. package/dist/typescript/module/features/chatbot/components/Alternatives/HelpRequestOption.d.ts.map +0 -1
  267. package/dist/typescript/module/features/chatbot/components/Alternatives/InputButton.d.ts.map +0 -1
  268. package/dist/typescript/module/features/chatbot/components/Alternatives/InputWithHintRow.d.ts +0 -11
  269. package/dist/typescript/module/features/chatbot/components/Alternatives/InputWithHintRow.d.ts.map +0 -1
  270. package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +0 -1
  271. package/src/features/chatbot/components/Alternatives/Alternatives.tsx +0 -135
  272. package/src/features/chatbot/components/Alternatives/HelpRequestOption.tsx +0 -214
  273. package/src/features/chatbot/components/Alternatives/InputWithHintRow.tsx +0 -160
  274. package/src/features/exampleSolution/assets/grid.png +0 -0
@@ -1,4 +1,4 @@
1
- import { GifCelebrationsModelProps } from '../types'
1
+ import { ExampleSolutionModelProps } from '../types'
2
2
  import { ExampleSolutionsApi } from './ExampleSolutionApi'
3
3
  import { ExampleSolutionCache } from './ExampleSolutionCache'
4
4
 
@@ -6,7 +6,10 @@ export class ExampleSolutionModel {
6
6
  public readonly api
7
7
  public readonly cache = new ExampleSolutionCache()
8
8
 
9
- constructor({ api, errorHandler }: GifCelebrationsModelProps) {
9
+ public readonly renderKatexComponent: (katexString: string) => React.ReactNode
10
+
11
+ constructor({ api, errorHandler, renderKatexComponent }: ExampleSolutionModelProps) {
10
12
  this.api = new ExampleSolutionsApi({ api, errorHandler })
13
+ this.renderKatexComponent = renderKatexComponent
11
14
  }
12
15
  }
@@ -15,9 +15,10 @@ export type ExampleSolutionApiRequests = {
15
15
  generateExampleSolution: (body: ExampleSolutionPayload) => Promise<ExampleSolutionResponse>
16
16
  }
17
17
  export type ExampleSolutionErrorHandler = (errorMessage: string) => void
18
- export type GifCelebrationsModelProps = {
18
+ export type ExampleSolutionModelProps = {
19
19
  api: ExampleSolutionApiRequests
20
20
  errorHandler?: ExampleSolutionErrorHandler
21
+ renderKatexComponent: (katexString: string) => React.ReactNode
21
22
  }
22
23
  export type ExampleSolutionModalParams = {
23
24
  cacheKey: string
@@ -43,6 +43,11 @@ export const FormulaSheet = forwardRef<ButtonRef | null, FormulaSheetProps>(
43
43
  const sheetFileBlob = useUnit(model.file.$blob)
44
44
  const isRequestPending = useUnit(model.api.getPDFFileBlobFx.pending)
45
45
 
46
+ const onPressHandler = () => {
47
+ model.modal.toggle()
48
+ onPress?.()
49
+ }
50
+
46
51
  useEffect(() => {
47
52
  model.file.setId(fileId ?? null)
48
53
  }, [fileId])
@@ -55,10 +60,7 @@ export const FormulaSheet = forwardRef<ButtonRef | null, FormulaSheetProps>(
55
60
  variant={ButtonVariant.SECONDARY}
56
61
  colorScheme={buttonColor}
57
62
  isActive={isOpen}
58
- onPress={() => {
59
- model.modal.toggle()
60
- onPress?.()
61
- }}
63
+ onPress={() => onPressHandler()}
62
64
  icon={<TheoryIcon color={isOpen ? COLORS.NEUTRAL_1 : undefined} size={20} />}
63
65
  style={style}
64
66
  />
@@ -4,12 +4,14 @@ import { KeyboardKeys } from '../../lib/constants'
4
4
 
5
5
  export const useKeyDownListener = (
6
6
  callback: (event: KeyboardEvent) => void,
7
+ enabled = true,
7
8
  overrideKeys = [KeyboardKeys.ENTER],
8
9
  ) => {
9
10
  const callbackRef = useRef(callback)
10
11
  callbackRef.current = callback
11
12
 
12
13
  useEffect(() => {
14
+ if (!enabled) return
13
15
  const eventHandler = (event: KeyboardEvent) => {
14
16
  if (overrideKeys.includes(event.key as KeyboardKeys)) {
15
17
  event.preventDefault()
@@ -23,5 +25,5 @@ export const useKeyDownListener = (
23
25
  return () => {
24
26
  document.removeEventListener('keydown', eventHandler, true)
25
27
  }
26
- }, [])
28
+ }, [enabled])
27
29
  }
@@ -17,7 +17,8 @@
17
17
  "answerAgain": "Answer again to get another hint!",
18
18
  "errorMessage": "Something went wrong! Try again",
19
19
  "howCanIHelp": "Hi! Do you want help?",
20
- "showError": "Show error"
20
+ "showError": "Show error",
21
+ "inputPlaceholder": "Type..."
21
22
  },
22
23
  "gifCelebrations": {
23
24
  "greatStart": "Great start!",
@@ -12,12 +12,13 @@
12
12
  "time.yearAgo": "year ago",
13
13
  "time.yearsAgo": "years ago",
14
14
  "chat": {
15
- "anotherHint": "I need a hint",
15
+ "anotherHint": "Give me another hint",
16
16
  "giveHint": "I need a hint",
17
17
  "answerAgain": "Answer again to get another hint!",
18
18
  "errorMessage": "Something went wrong! Try again",
19
19
  "howCanIHelp": "Hi! Do you want help?",
20
- "showError": "Show error"
20
+ "showError": "Show error",
21
+ "inputPlaceholder": "Type..."
21
22
  },
22
23
  "gifCelebrations": {
23
24
  "greatStart": "Great start!",
@@ -17,7 +17,8 @@
17
17
  "answerAgain": "Answer again to get another hint!",
18
18
  "errorMessage": "Something went wrong! Try again",
19
19
  "howCanIHelp": "Hi! Do you want help?",
20
- "showError": "Show error"
20
+ "showError": "Show error",
21
+ "inputPlaceholder": "Type..."
21
22
  },
22
23
  "gifCelebrations": {
23
24
  "greatStart": "Great start!",
@@ -17,7 +17,8 @@
17
17
  "answerAgain": "Answer again to get another hint!",
18
18
  "errorMessage": "Something went wrong! Try again",
19
19
  "howCanIHelp": "Hi! Do you want help?",
20
- "showError": "Show error"
20
+ "showError": "Show error",
21
+ "inputPlaceholder": "Type..."
21
22
  },
22
23
  "gifCelebrations": {
23
24
  "greatStart": "Great start!",
@@ -17,7 +17,8 @@
17
17
  "answerAgain": "Svara igen för att få en till ledtråd!",
18
18
  "errorMessage": "Något gick snett! Försök igen",
19
19
  "howCanIHelp": "Hej! Hur kan jag hjälpa dig?",
20
- "showError": "Visa fel"
20
+ "showError": "Visa fel",
21
+ "inputPlaceholder": "Skriv..."
21
22
  },
22
23
  "gifCelebrations": {
23
24
  "greatStart": "Bra start!",
@@ -25,7 +26,7 @@
25
26
  "almostThere": "Nästan där"
26
27
  },
27
28
  "exampleSolution": {
28
- "exampleSolution": "Lösnings exempel",
29
+ "exampleSolution": "Lösningsexempel",
29
30
  "letMeThink": "Låt mig tänka...",
30
31
  "aha": "Aha!",
31
32
  "errorMessage": "Något gick snett med att generera en exempellösning"
@@ -1,111 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.Alternatives = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _effectorReact = require("effector-react");
10
- var _ChatBotModelContext = require("../../context/ChatBotModelContext.js");
11
- var _styleTypes = require("../../types/style.types.js");
12
- var _InputWithHintRow = require("./InputWithHintRow.js");
13
- var _HelpRequestOption = require("./HelpRequestOption.js");
14
- var _jsxRuntime = require("react/jsx-runtime");
15
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
- var ChatMode = /*#__PURE__*/function (ChatMode) {
17
- ChatMode[ChatMode["FREE_TEXT"] = 1] = "FREE_TEXT";
18
- ChatMode[ChatMode["CHOICE"] = 2] = "CHOICE";
19
- return ChatMode;
20
- }(ChatMode || {});
21
- const FreeTextChatInput = ({
22
- options,
23
- alternatives,
24
- isTranslated,
25
- disabled,
26
- onPressAlternative,
27
- colorScheme
28
- }) => {
29
- const isDisabled = options.length === 0;
30
- const choices = (isDisabled ? alternatives?.options.default : options) ?? [];
31
- const option = choices[0];
32
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
33
- style: styles.container,
34
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_InputWithHintRow.InputWithHintRow, {
35
- onPress: () => onPressAlternative(option.text, option.translatedText),
36
- message: isTranslated ? option.translatedText : option.text,
37
- disabled: isDisabled || disabled,
38
- colorScheme: colorScheme
39
- })
40
- });
41
- };
42
- const OptionTextChatInput = ({
43
- options,
44
- alternatives,
45
- onPressAlternative,
46
- isTranslated,
47
- colorScheme,
48
- disabled
49
- }) => {
50
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
51
- style: styles.container,
52
- children: options.map(({
53
- text,
54
- translatedText
55
- }, index) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_HelpRequestOption.HelpRequestOption, {
56
- onPress: () => onPressAlternative(text, translatedText),
57
- message: isTranslated ? translatedText : text,
58
- disabled: disabled,
59
- colorScheme: colorScheme
60
- }, index))
61
- });
62
- };
63
- const alternativesVariant = {
64
- [ChatMode.FREE_TEXT]: FreeTextChatInput,
65
- [ChatMode.CHOICE]: OptionTextChatInput
66
- };
67
- const Alternatives = ({
68
- onPressAlternative,
69
- hasMessages,
70
- isHintFeedback,
71
- colorScheme = _styleTypes.ColorScheme.Blue
72
- }) => {
73
- const model = (0, _ChatBotModelContext.useChatModel)();
74
- const isTranslated = (0, _effectorReact.useUnit)(model.translation.$isTranslated);
75
- const alternatives = (0, _effectorReact.useUnit)(model.$alternatives);
76
- const isTranslationPending = (0, _effectorReact.useUnit)(model.translation.translateAllMessagesFx.pending);
77
- const isHelpRequestPending = (0, _effectorReact.useUnit)(model.sendHelpRequestFx.pending);
78
- const lastMessageOptions = (0, _effectorReact.useStoreMap)(model.$currentChatData, ({
79
- messages
80
- }) => {
81
- const lastMessage = messages.at(-1);
82
- return lastMessage?.options ?? [];
83
- });
84
- const options = (() => {
85
- if (hasMessages) return lastMessageOptions;
86
- if (isHintFeedback) return alternatives?.options.hints ?? [];
87
- return alternatives?.options.default ?? [];
88
- })();
89
- const variant = ChatMode.FREE_TEXT; // props or even to model
90
- const Component = alternativesVariant[variant];
91
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(Component, {
92
- options: options,
93
- alternatives: alternatives,
94
- disabled: isHelpRequestPending,
95
- isTranslated: isTranslated,
96
- isTranslationPending: isTranslationPending,
97
- onPressAlternative: onPressAlternative,
98
- colorScheme: colorScheme
99
- });
100
- };
101
- exports.Alternatives = Alternatives;
102
- const styles = _reactNative.StyleSheet.create({
103
- container: {
104
- flex: 1,
105
- width: 305,
106
- alignItems: 'center',
107
- justifyContent: 'center',
108
- marginVertical: 8
109
- }
110
- });
111
- //# sourceMappingURL=Alternatives.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_effectorReact","_ChatBotModelContext","_styleTypes","_InputWithHintRow","_HelpRequestOption","_jsxRuntime","e","__esModule","default","ChatMode","FreeTextChatInput","options","alternatives","isTranslated","disabled","onPressAlternative","colorScheme","isDisabled","length","choices","option","jsx","View","style","styles","container","children","InputWithHintRow","onPress","text","translatedText","message","OptionTextChatInput","map","index","HelpRequestOption","alternativesVariant","FREE_TEXT","CHOICE","Alternatives","hasMessages","isHintFeedback","ColorScheme","Blue","model","useChatModel","useUnit","translation","$isTranslated","$alternatives","isTranslationPending","translateAllMessagesFx","pending","isHelpRequestPending","sendHelpRequestFx","lastMessageOptions","useStoreMap","$currentChatData","messages","lastMessage","at","hints","variant","Component","exports","StyleSheet","create","flex","width","alignItems","justifyContent","marginVertical"],"sourceRoot":"../../../../../../src","sources":["features/chatbot/components/Alternatives/Alternatives.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,208 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.HelpRequestOption = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
10
- var _reactNativeUi = require("@magmamath/react-native-ui");
11
- var _studentsFeatures = require("@magmamath/students-features");
12
- var _constants = require("../../constants.js");
13
- var _jsxRuntime = require("react/jsx-runtime");
14
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
15
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
16
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
17
- // import React, { useEffect, useRef, useState } from 'react'
18
- // import { Animated, Pressable, StyleSheet } from 'react-native'
19
- // import { ArrowUpIcon, COLORS, FONT_FAMILY, SPACING } from '@magmamath/react-native-ui'
20
- //
21
- // type HelpRequestOptionProps = {
22
- // onPress: () => void
23
- // message: string
24
- // disabled: boolean
25
- // hoverColor?: string
26
- // }
27
- //
28
- // export const HelpRequestOption = ({
29
- // onPress,
30
- // message,
31
- // disabled = false,
32
- // hoverColor = COLORS.PRIMARY_BLUE,
33
- // }: HelpRequestOptionProps) => {
34
- // const [isHovered, setIsHovered] = useState(false)
35
- // const hoverAnim = useRef(new Animated.Value(0)).current
36
- //
37
- // const backgroundColor = hoverAnim.interpolate({
38
- // inputRange: [0, 1],
39
- // outputRange: [COLORS.NEUTRAL_1, hoverColor],
40
- // })
41
- // const textColor = hoverAnim.interpolate({
42
- // inputRange: [0, 1],
43
- // outputRange: [COLORS.NEUTRAL_10, COLORS.NEUTRAL_1],
44
- // })
45
- //
46
- // useEffect(() => {
47
- // Animated.timing(hoverAnim, {
48
- // toValue: isHovered ? 1 : 0,
49
- // duration: 200,
50
- // useNativeDriver: false,
51
- // }).start()
52
- // }, [isHovered, hoverAnim])
53
- //
54
- // return (
55
- // <Pressable
56
- // onHoverIn={() => setIsHovered(true)}
57
- // onHoverOut={() => setIsHovered(false)}
58
- // onPress={onPress}
59
- // style={styles.button}
60
- // disabled={disabled}
61
- // accessibilityState={{ disabled }}
62
- // accessibilityRole="button"
63
- // >
64
- // <Animated.View
65
- // style={[styles.textWrapper, { backgroundColor, borderColor: isHovered ? backgroundColor: COLORS.PRIMARY_BLUE }]}
66
- // >
67
- // <Animated.Text numberOfLines={1} style={[styles.text, { color: textColor }]}>
68
- // I need a hint
69
- // </Animated.Text>
70
- // <ArrowUpIcon color={isHovered ? COLORS.NEUTRAL_1 : COLORS.NEUTRAL_10} />
71
- // </Animated.View>
72
- // </Pressable>
73
- // )
74
- // }
75
- //
76
- // const styles = StyleSheet.create({
77
- // button: {
78
- // flexDirection: 'row',
79
- // alignItems: 'flex-end',
80
- // justifyContent: 'space-between',
81
- // width: '100%',
82
- // },
83
- // text: {
84
- // fontSize: 18,
85
- // fontWeight: 400,
86
- // fontFamily: FONT_FAMILY.buenosAires,
87
- // color: COLORS.NEUTRAL_10,
88
- // },
89
- // textWrapper: {
90
- // flex: 1,
91
- // flexDirection: 'row',
92
- // alignItems: 'center',
93
- // justifyContent: 'space-between',
94
- // maxWidth: 163,
95
- // paddingHorizontal: SPACING[400],
96
- // paddingVertical: SPACING[200],
97
- // borderWidth: 1,
98
- // borderRadius: 48,
99
- // elevation: 3,
100
- // shadowColor: '#333',
101
- // shadowOffset: { width: 0, height: 1 },
102
- // shadowOpacity: 0.25,
103
- // shadowRadius: 3,
104
- // backgroundColor: COLORS.NEUTRAL_1,
105
- // borderColor: COLORS.PRIMARY_BLUE,
106
- // },
107
- // })
108
-
109
- const HelpRequestOption = ({
110
- onPress,
111
- message,
112
- disabled = false,
113
- colorScheme = _studentsFeatures.ColorScheme.Blue,
114
- visibleSv
115
- }) => {
116
- const hoverSv = (0, _reactNativeReanimated.useSharedValue)(0);
117
- const onHoverIn = () => {
118
- if (!disabled) hoverSv.value = (0, _reactNativeReanimated.withTiming)(1, {
119
- duration: 200
120
- });
121
- };
122
- const onHoverOut = () => {
123
- if (!disabled) hoverSv.value = (0, _reactNativeReanimated.withTiming)(0, {
124
- duration: 200
125
- });
126
- };
127
- const animatedWrapperStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
128
- const backgroundColor = (0, _reactNativeReanimated.interpolateColor)(hoverSv.value, [0, 1], [_reactNativeUi.COLORS.NEUTRAL_1, _constants.MESSAGE_COLORS_MAP[colorScheme].sent.background]);
129
- const borderColor = (0, _reactNativeReanimated.interpolateColor)(hoverSv.value, [0, 1], [_constants.MESSAGE_COLORS_MAP[colorScheme].sent.border, _constants.MESSAGE_COLORS_MAP[colorScheme].sent.border]);
130
- return {
131
- backgroundColor: disabled ? _reactNativeUi.COLORS.NEUTRAL_2 : backgroundColor,
132
- borderColor: disabled ? _reactNativeUi.COLORS.NEUTRAL_5 : borderColor
133
- };
134
- }, [hoverSv, disabled, colorScheme]);
135
- const animatedTextStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
136
- const color = (0, _reactNativeReanimated.interpolateColor)(hoverSv.value, [0, 1], [_reactNativeUi.COLORS.NEUTRAL_10, _reactNativeUi.COLORS.NEUTRAL_1]);
137
- return {
138
- color: disabled ? _reactNativeUi.COLORS.NEUTRAL_5 : color
139
- };
140
- }, [hoverSv, disabled]);
141
- const animatedVisibilityStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
142
- return {
143
- opacity: visibleSv ? visibleSv.value : 1
144
- };
145
- }, [visibleSv]);
146
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
147
- onHoverIn: onHoverIn,
148
- onHoverOut: onHoverOut,
149
- onPress: onPress,
150
- style: [styles.button, {
151
- cursor: disabled ? 'auto' : 'pointer'
152
- }],
153
- disabled: disabled,
154
- accessibilityState: {
155
- disabled
156
- },
157
- accessibilityRole: "button",
158
- children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeReanimated.default.View, {
159
- style: [styles.textWrapper, animatedWrapperStyle, animatedVisibilityStyle],
160
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.Text, {
161
- numberOfLines: 1,
162
- style: [styles.text, animatedTextStyle],
163
- children: message
164
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.Text, {
165
- style: animatedTextStyle,
166
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.ArrowUpIcon, {
167
- color: 'currentColor',
168
- size: 16
169
- })
170
- })]
171
- })
172
- });
173
- };
174
- exports.HelpRequestOption = HelpRequestOption;
175
- const styles = _reactNative.StyleSheet.create({
176
- button: {
177
- flexDirection: 'row',
178
- justifyContent: 'flex-end'
179
- },
180
- text: {
181
- fontSize: 18,
182
- fontWeight: '400',
183
- fontFamily: _reactNativeUi.FONT_FAMILY.buenosAires,
184
- color: _reactNativeUi.COLORS.NEUTRAL_10
185
- },
186
- textWrapper: {
187
- flex: 1,
188
- flexDirection: 'row',
189
- alignItems: 'center',
190
- justifyContent: 'space-between',
191
- width: 163,
192
- paddingHorizontal: _reactNativeUi.SPACING[400],
193
- paddingVertical: _reactNativeUi.SPACING[200],
194
- borderWidth: 1,
195
- borderRadius: 48,
196
- elevation: 3,
197
- shadowColor: '#333',
198
- shadowOffset: {
199
- width: 0,
200
- height: 1
201
- },
202
- shadowOpacity: 0.25,
203
- shadowRadius: 3,
204
- backgroundColor: _reactNativeUi.COLORS.NEUTRAL_1,
205
- borderColor: _reactNativeUi.COLORS.PRIMARY_BLUE
206
- }
207
- });
208
- //# sourceMappingURL=HelpRequestOption.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeReanimated","_interopRequireWildcard","_reactNativeUi","_studentsFeatures","_constants","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","HelpRequestOption","onPress","message","disabled","colorScheme","ColorScheme","Blue","visibleSv","hoverSv","useSharedValue","onHoverIn","value","withTiming","duration","onHoverOut","animatedWrapperStyle","useAnimatedStyle","backgroundColor","interpolateColor","COLORS","NEUTRAL_1","MESSAGE_COLORS_MAP","sent","background","borderColor","border","NEUTRAL_2","NEUTRAL_5","animatedTextStyle","color","NEUTRAL_10","animatedVisibilityStyle","opacity","jsx","Pressable","style","styles","button","cursor","accessibilityState","accessibilityRole","children","jsxs","View","textWrapper","Text","numberOfLines","text","ArrowUpIcon","size","exports","StyleSheet","create","flexDirection","justifyContent","fontSize","fontWeight","fontFamily","FONT_FAMILY","buenosAires","flex","alignItems","width","paddingHorizontal","SPACING","paddingVertical","borderWidth","borderRadius","elevation","shadowColor","shadowOffset","height","shadowOpacity","shadowRadius","PRIMARY_BLUE"],"sourceRoot":"../../../../../../src","sources":["features/chatbot/components/Alternatives/HelpRequestOption.tsx"],"mappings":";;;;;;AA4FA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,sBAAA,GAAAC,uBAAA,CAAAH,OAAA;AAOA,IAAAI,cAAA,GAAAJ,OAAA;AACA,IAAAK,iBAAA,GAAAL,OAAA;AACA,IAAAM,UAAA,GAAAN,OAAA;AAAoD,IAAAO,WAAA,GAAAP,OAAA;AAAA,SAAAQ,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAN,wBAAAM,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAlB,uBAAAU,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAI,UAAA,GAAAJ,CAAA,KAAAK,OAAA,EAAAL,CAAA;AAvGpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAuBO,MAAMmB,iBAAiB,GAAGA,CAAC;EAChCC,OAAO;EACPC,OAAO;EACPC,QAAQ,GAAG,KAAK;EAChBC,WAAW,GAAGC,6BAAW,CAACC,IAAI;EAC9BC;AACsB,CAAC,KAAK;EAC5B,MAAMC,OAAO,GAAG,IAAAC,qCAAc,EAAC,CAAC,CAAC;EAEjC,MAAMC,SAAS,GAAGA,CAAA,KAAM;IACtB,IAAI,CAACP,QAAQ,EAAEK,OAAO,CAACG,KAAK,GAAG,IAAAC,iCAAU,EAAC,CAAC,EAAE;MAAEC,QAAQ,EAAE;IAAI,CAAC,CAAC;EACjE,CAAC;EACD,MAAMC,UAAU,GAAGA,CAAA,KAAM;IACvB,IAAI,CAACX,QAAQ,EAAEK,OAAO,CAACG,KAAK,GAAG,IAAAC,iCAAU,EAAC,CAAC,EAAE;MAAEC,QAAQ,EAAE;IAAI,CAAC,CAAC;EACjE,CAAC;EAED,MAAME,oBAAoB,GAAG,IAAAC,uCAAgB,EAAC,MAAM;IAClD,MAAMC,eAAe,GAAG,IAAAC,uCAAgB,EACtCV,OAAO,CAACG,KAAK,EACb,CAAC,CAAC,EAAE,CAAC,CAAC,EACN,CAACQ,qBAAM,CAACC,SAAS,EAAEC,6BAAkB,CAACjB,WAAW,CAAC,CAACkB,IAAI,CAACC,UAAU,CACpE,CAAC;IACD,MAAMC,WAAW,GAAG,IAAAN,uCAAg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","ignoreList":[]}
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeReanimated","_interopRequireWildcard","_reactNativeUi","_studentsFeatures","_constants","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","InputButton","onPress","disabled","colorScheme","ColorScheme","Blue","hoverSv","useSharedValue","onHoverIn","value","withTiming","duration","onHoverOut","animatedWrapperStyle","useAnimatedStyle","backgroundColor","interpolateColor","COLORS","NEUTRAL_1","MESSAGE_COLORS_MAP","sent","border","color","NEUTRAL_10","NEUTRAL_2","borderColor","NEUTRAL_5","jsx","Pressable","style","styles","button","cursor","accessibilityState","accessibilityRole","children","Text","textWrapper","ArrowUpIcon","size","exports","StyleSheet","create","flexDirection","justifyContent","text","fontSize","fontWeight","fontFamily","FONT_FAMILY","buenosAires","flex","alignItems","paddingHorizontal","paddingVertical","borderWidth","borderRadius","elevation","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","PRIMARY_BLUE"],"sourceRoot":"../../../../../../src","sources":["features/chatbot/components/Alternatives/InputButton.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,sBAAA,GAAAC,uBAAA,CAAAH,OAAA;AAMA,IAAAI,cAAA,GAAAJ,OAAA;AACA,IAAAK,iBAAA,GAAAL,OAAA;AACA,IAAAM,UAAA,GAAAN,OAAA;AAAoD,IAAAO,WAAA,GAAAP,OAAA;AAAA,SAAAQ,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAN,wBAAAM,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAe,GAAA,CAAAlB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAlB,uBAAAU,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAI,UAAA,GAAAJ,CAAA,KAAAK,OAAA,EAAAL,CAAA;AAQ7C,MAAMmB,WAAW,GAAGA,CAAC;EAC1BC,OAAO;EACPC,QAAQ,GAAG,KAAK;EAChBC,WAAW,GAAGC,6BAAW,CAACC;AACJ,CAAC,KAAK;EAC5B,MAAMC,OAAO,GAAG,IAAAC,qCAAc,EAAC,CAAC,CAAC;EAEjC,MAAMC,SAAS,GAAGA,CAAA,KAAM;IACtB,IAAI,CAACN,QAAQ,EAAEI,OAAO,CAACG,KAAK,GAAG,IAAAC,iCAAU,EAAC,CAAC,EAAE;MAAEC,QAAQ,EAAE;IAAI,CAAC,CAAC;EACjE,CAAC;EACD,MAAMC,UAAU,GAAGA,CAAA,KAAM;IACvB,IAAI,CAACV,QAAQ,EAAEI,OAAO,CAACG,KAAK,GAAG,IAAAC,iCAAU,EAAC,CAAC,EAAE;MAAEC,QAAQ,EAAE;IAAI,CAAC,CAAC;EACjE,CAAC;EAED,MAAME,oBAAoB,GAAG,IAAAC,uCAAgB,EAAC,MAAM;IAClD,MAAMC,eAAe,GAAG,IAAAC,uCAAgB,EAACV,OAAO,CAACG,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAACQ,qBAAM,CAACC,SAAS,EAAEC,6BAAkB,CAAChB,WAAW,CAAC,CAACiB,IAAI,CAACC,MAAM,CAAC,CAAC;IAChI,MAAMC,KAAK,GAAG,IAAAN,uCAAgB,EAACV,OAAO,CAACG,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAACQ,qBAAM,CAACM,UAAU,EAAEN,qBAAM,CAACC,SAAS,CAAC,CAAC;IAE5F,OAAO;MACLH,eAAe,EAAEb,QAAQ,GAAGe,qBAAM,CAACO,SAAS,GAAGT,eAAe;MAC9DU,WAAW,EAAEvB,QAAQ,GAAGe,qBAAM,CAACS,SAAS,GAAGP,6BAAkB,CAAChB,WAAW,CAAC,CAACiB,IAAI,CAACC,MAAM;MACtFC,KAAK,EAAEpB,QAAQ,GAAGe,qBAAM,CAACS,SAAS,GAAGJ;IACvC,CAAC;EACH,CAAC,EAAE,CAAChB,OAAO,EAAEJ,QAAQ,CAAC,CAAC;EAEvB,oBACE,IAAAvB,WAAA,CAAAgD,GAAA,EAACtD,YAAA,CAAAuD,SAAS;IACRpB,SAAS,EAAEA,SAAU;IACrBI,UAAU,EAAEA,UAAW;IACvBX,OAAO,EAAEA,OAAQ;IACjB4B,KAAK,EAAE,CAACC,MAAM,CAACC,MAAM,EAAE7B,QAAQ,IAAI;MAAE8B,MAAM,EAAE;IAAO,CAAC,CAAE;IACvD9B,QAAQ,EAAEA,QAAS;IACnB+B,kBAAkB,EAAE;MAAE/B;IAAS,CAAE;IACjCgC,iBAAiB,EAAC,QAAQ;IAAAC,QAAA,eAE1B,IAAAxD,WAAA,CAAAgD,GAAA,EAACrD,sBAAA,CAAAY,OAAQ,CAACkD,IAAI;MAACP,KAAK,EAAE,CAACC,MAAM,CAACO,WAAW,EAAExB,oBAAoB,CAAE;MAAAsB,QAAA,eAC/D,IAAAxD,WAAA,CAAAgD,GAAA,EAACnD,cAAA,CAAA8D,WAAW;QAAChB,KAAK,EAAE,cAAe;QAACiB,IAAI,EAAE;MAAG,CAAE;IAAC,CACnC;EAAC,CACP,CAAC;AAEhB,CAAC;AAAAC,OAAA,CAAAxC,WAAA,GAAAA,WAAA;AAED,MAAM8B,MAAM,GAAGW,uBAAU,CAACC,MAAM,CAAC;EAC/BX,MAAM,EAAE;IACNY,aAAa,EAAE,KAAK;IACpBC,cAAc,EAAE;EAClB,CAAC;EACDC,IAAI,EAAE;IACJC,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE,KAAK;IACjBC,UAAU,EAAEC,0BAAW,CAACC,WAAW;IACnC5B,KAAK,EAAEL,qBAAM,CAACM,UAAU;IACxBR,eAAe,EAAE;EACnB,CAAC;EACDsB,WAAW,EAAE;IACXc,IAAI,EAAE,CAAC;IACPR,aAAa,EAAE,KAAK;IACpBS,UAAU,EAAE,QAAQ;IACpBR,cAAc,EAAE,eAAe;IAC/BS,iBAAiB,EAAE,EAAE;IACrBC,eAAe,EAAE,EAAE;IACnBC,WAAW,EAAE,CAAC;IACdC,YAAY,EAAE,EAAE;IAChBC,SAAS,EAAE,CAAC;IACZC,WAAW,EAAE,MAAM;IACnBC,YAAY,EAAE;MAAEC,KAAK,EAAE,CAAC;MAAEC,MAAM,EAAE;IAAE,CAAC;IACrCC,aAAa,EAAE,IAAI;IACnBC,YAAY,EAAE,CAAC;IACfhD,eAAe,EAAEE,qBAAM,CAACC,SAAS;IACjCO,WAAW,EAAER,qBAAM,CAAC+C;EACtB;AACF,CAAC,CAAC","ignoreList":[]}