@magmamath/students-features 1.8.4 → 1.8.6-rc.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 (260) hide show
  1. package/dist/commonjs/features/chatbot/components/ChatInput/FreeText/ChatTextInput.js.map +1 -1
  2. package/dist/commonjs/features/profile/Profile.js +90 -0
  3. package/dist/commonjs/features/profile/Profile.js.map +1 -0
  4. package/dist/commonjs/features/profile/components/actions/ProfileActions.js +70 -0
  5. package/dist/commonjs/features/profile/components/actions/ProfileActions.js.map +1 -0
  6. package/dist/commonjs/features/profile/components/cards/ProfileCard.js +57 -0
  7. package/dist/commonjs/features/profile/components/cards/ProfileCard.js.map +1 -0
  8. package/dist/commonjs/features/profile/components/info/AccountInfoCard.js +91 -0
  9. package/dist/commonjs/features/profile/components/info/AccountInfoCard.js.map +1 -0
  10. package/dist/commonjs/features/profile/components/modals/JoinClassModal.js +190 -0
  11. package/dist/commonjs/features/profile/components/modals/JoinClassModal.js.map +1 -0
  12. package/dist/commonjs/features/profile/components/modals/LogoutConfirmModal.js +61 -0
  13. package/dist/commonjs/features/profile/components/modals/LogoutConfirmModal.js.map +1 -0
  14. package/dist/commonjs/features/profile/components/modals/TranslationLanguageModal.js +128 -0
  15. package/dist/commonjs/features/profile/components/modals/TranslationLanguageModal.js.map +1 -0
  16. package/dist/commonjs/features/profile/components/settings/LanguageSettingsCard.js +22 -0
  17. package/dist/commonjs/features/profile/components/settings/LanguageSettingsCard.js.map +1 -0
  18. package/dist/commonjs/features/profile/components/settings/PreferencesCard.js +69 -0
  19. package/dist/commonjs/features/profile/components/settings/PreferencesCard.js.map +1 -0
  20. package/dist/commonjs/features/profile/components/settings/SettingRow.js +48 -0
  21. package/dist/commonjs/features/profile/components/settings/SettingRow.js.map +1 -0
  22. package/dist/commonjs/features/profile/components/settings/TextSettingsCard.js +77 -0
  23. package/dist/commonjs/features/profile/components/settings/TextSettingsCard.js.map +1 -0
  24. package/dist/commonjs/features/profile/components/settings/TextSizeSlider.js +119 -0
  25. package/dist/commonjs/features/profile/components/settings/TextSizeSlider.js.map +1 -0
  26. package/dist/commonjs/features/profile/components/settings/TextToSpeechRow.js +37 -0
  27. package/dist/commonjs/features/profile/components/settings/TextToSpeechRow.js.map +1 -0
  28. package/dist/commonjs/features/profile/components/settings/TranslationLanguageRow.js +62 -0
  29. package/dist/commonjs/features/profile/components/settings/TranslationLanguageRow.js.map +1 -0
  30. package/dist/commonjs/features/profile/context/ProfileContext.js +18 -0
  31. package/dist/commonjs/features/profile/context/ProfileContext.js.map +1 -0
  32. package/dist/commonjs/features/profile/index.js +80 -0
  33. package/dist/commonjs/features/profile/index.js.map +1 -0
  34. package/dist/commonjs/features/profile/model/ProfileApi.js +15 -0
  35. package/dist/commonjs/features/profile/model/ProfileApi.js.map +1 -0
  36. package/dist/commonjs/features/profile/model/ProfileJoinClassModel.js +60 -0
  37. package/dist/commonjs/features/profile/model/ProfileJoinClassModel.js.map +1 -0
  38. package/dist/commonjs/features/profile/model/ProfileLanguageModel.js +30 -0
  39. package/dist/commonjs/features/profile/model/ProfileLanguageModel.js.map +1 -0
  40. package/dist/commonjs/features/profile/model/ProfileModel.js +53 -0
  41. package/dist/commonjs/features/profile/model/ProfileModel.js.map +1 -0
  42. package/dist/commonjs/features/profile/model/profileModal.types.js +6 -0
  43. package/dist/commonjs/features/profile/model/profileModal.types.js.map +1 -0
  44. package/dist/commonjs/features/profile/shared/JoinClassError.js +16 -0
  45. package/dist/commonjs/features/profile/shared/JoinClassError.js.map +1 -0
  46. package/dist/commonjs/features/profile/shared/profile.constants.js +29 -0
  47. package/dist/commonjs/features/profile/shared/profile.constants.js.map +1 -0
  48. package/dist/commonjs/features/profile/shared/profile.helpers.js +40 -0
  49. package/dist/commonjs/features/profile/shared/profile.helpers.js.map +1 -0
  50. package/dist/commonjs/features/profile/shared/profile.types.js +6 -0
  51. package/dist/commonjs/features/profile/shared/profile.types.js.map +1 -0
  52. package/dist/commonjs/index.js +12 -0
  53. package/dist/commonjs/index.js.map +1 -1
  54. package/dist/commonjs/shared/hooks/useKeyboardOffset.js +54 -0
  55. package/dist/commonjs/shared/hooks/useKeyboardOffset.js.map +1 -0
  56. package/dist/module/features/chatbot/components/ChatInput/FreeText/ChatTextInput.js.map +1 -1
  57. package/dist/module/features/profile/Profile.js +84 -0
  58. package/dist/module/features/profile/Profile.js.map +1 -0
  59. package/dist/module/features/profile/components/actions/ProfileActions.js +64 -0
  60. package/dist/module/features/profile/components/actions/ProfileActions.js.map +1 -0
  61. package/dist/module/features/profile/components/cards/ProfileCard.js +51 -0
  62. package/dist/module/features/profile/components/cards/ProfileCard.js.map +1 -0
  63. package/dist/module/features/profile/components/info/AccountInfoCard.js +85 -0
  64. package/dist/module/features/profile/components/info/AccountInfoCard.js.map +1 -0
  65. package/dist/module/features/profile/components/modals/JoinClassModal.js +183 -0
  66. package/dist/module/features/profile/components/modals/JoinClassModal.js.map +1 -0
  67. package/dist/module/features/profile/components/modals/LogoutConfirmModal.js +55 -0
  68. package/dist/module/features/profile/components/modals/LogoutConfirmModal.js.map +1 -0
  69. package/dist/module/features/profile/components/modals/TranslationLanguageModal.js +122 -0
  70. package/dist/module/features/profile/components/modals/TranslationLanguageModal.js.map +1 -0
  71. package/dist/module/features/profile/components/settings/LanguageSettingsCard.js +16 -0
  72. package/dist/module/features/profile/components/settings/LanguageSettingsCard.js.map +1 -0
  73. package/dist/module/features/profile/components/settings/PreferencesCard.js +63 -0
  74. package/dist/module/features/profile/components/settings/PreferencesCard.js.map +1 -0
  75. package/dist/module/features/profile/components/settings/SettingRow.js +42 -0
  76. package/dist/module/features/profile/components/settings/SettingRow.js.map +1 -0
  77. package/dist/module/features/profile/components/settings/TextSettingsCard.js +71 -0
  78. package/dist/module/features/profile/components/settings/TextSettingsCard.js.map +1 -0
  79. package/dist/module/features/profile/components/settings/TextSizeSlider.js +112 -0
  80. package/dist/module/features/profile/components/settings/TextSizeSlider.js.map +1 -0
  81. package/dist/module/features/profile/components/settings/TextToSpeechRow.js +31 -0
  82. package/dist/module/features/profile/components/settings/TextToSpeechRow.js.map +1 -0
  83. package/dist/module/features/profile/components/settings/TranslationLanguageRow.js +56 -0
  84. package/dist/module/features/profile/components/settings/TranslationLanguageRow.js.map +1 -0
  85. package/dist/module/features/profile/context/ProfileContext.js +13 -0
  86. package/dist/module/features/profile/context/ProfileContext.js.map +1 -0
  87. package/dist/module/features/profile/index.js +11 -0
  88. package/dist/module/features/profile/index.js.map +1 -0
  89. package/dist/module/features/profile/model/ProfileApi.js +10 -0
  90. package/dist/module/features/profile/model/ProfileApi.js.map +1 -0
  91. package/dist/module/features/profile/model/ProfileJoinClassModel.js +55 -0
  92. package/dist/module/features/profile/model/ProfileJoinClassModel.js.map +1 -0
  93. package/dist/module/features/profile/model/ProfileLanguageModel.js +25 -0
  94. package/dist/module/features/profile/model/ProfileLanguageModel.js.map +1 -0
  95. package/dist/module/features/profile/model/ProfileModel.js +48 -0
  96. package/dist/module/features/profile/model/ProfileModel.js.map +1 -0
  97. package/dist/module/features/profile/model/profileModal.types.js +4 -0
  98. package/dist/module/features/profile/model/profileModal.types.js.map +1 -0
  99. package/dist/module/features/profile/shared/JoinClassError.js +11 -0
  100. package/dist/module/features/profile/shared/JoinClassError.js.map +1 -0
  101. package/dist/module/features/profile/shared/profile.constants.js +25 -0
  102. package/dist/module/features/profile/shared/profile.constants.js.map +1 -0
  103. package/dist/module/features/profile/shared/profile.helpers.js +32 -0
  104. package/dist/module/features/profile/shared/profile.helpers.js.map +1 -0
  105. package/dist/module/features/profile/shared/profile.types.js +4 -0
  106. package/dist/module/features/profile/shared/profile.types.js.map +1 -0
  107. package/dist/module/index.js +1 -0
  108. package/dist/module/index.js.map +1 -1
  109. package/dist/module/shared/hooks/useKeyboardOffset.js +49 -0
  110. package/dist/module/shared/hooks/useKeyboardOffset.js.map +1 -0
  111. package/dist/typescript/commonjs/features/chatbot/components/ChatInput/FreeText/ChatTextInput.d.ts.map +1 -1
  112. package/dist/typescript/commonjs/features/profile/Profile.d.ts +6 -0
  113. package/dist/typescript/commonjs/features/profile/Profile.d.ts.map +1 -0
  114. package/dist/typescript/commonjs/features/profile/__tests__/ProfileModel.test.d.ts +2 -0
  115. package/dist/typescript/commonjs/features/profile/__tests__/ProfileModel.test.d.ts.map +1 -0
  116. package/dist/typescript/commonjs/features/profile/__tests__/profile.helpers.test.d.ts +2 -0
  117. package/dist/typescript/commonjs/features/profile/__tests__/profile.helpers.test.d.ts.map +1 -0
  118. package/dist/typescript/commonjs/features/profile/components/actions/ProfileActions.d.ts +3 -0
  119. package/dist/typescript/commonjs/features/profile/components/actions/ProfileActions.d.ts.map +1 -0
  120. package/dist/typescript/commonjs/features/profile/components/cards/ProfileCard.d.ts +10 -0
  121. package/dist/typescript/commonjs/features/profile/components/cards/ProfileCard.d.ts.map +1 -0
  122. package/dist/typescript/commonjs/features/profile/components/info/AccountInfoCard.d.ts +3 -0
  123. package/dist/typescript/commonjs/features/profile/components/info/AccountInfoCard.d.ts.map +1 -0
  124. package/dist/typescript/commonjs/features/profile/components/modals/JoinClassModal.d.ts +4 -0
  125. package/dist/typescript/commonjs/features/profile/components/modals/JoinClassModal.d.ts.map +1 -0
  126. package/dist/typescript/commonjs/features/profile/components/modals/LogoutConfirmModal.d.ts +4 -0
  127. package/dist/typescript/commonjs/features/profile/components/modals/LogoutConfirmModal.d.ts.map +1 -0
  128. package/dist/typescript/commonjs/features/profile/components/modals/TranslationLanguageModal.d.ts +4 -0
  129. package/dist/typescript/commonjs/features/profile/components/modals/TranslationLanguageModal.d.ts.map +1 -0
  130. package/dist/typescript/commonjs/features/profile/components/settings/LanguageSettingsCard.d.ts +3 -0
  131. package/dist/typescript/commonjs/features/profile/components/settings/LanguageSettingsCard.d.ts.map +1 -0
  132. package/dist/typescript/commonjs/features/profile/components/settings/PreferencesCard.d.ts +3 -0
  133. package/dist/typescript/commonjs/features/profile/components/settings/PreferencesCard.d.ts.map +1 -0
  134. package/dist/typescript/commonjs/features/profile/components/settings/SettingRow.d.ts +11 -0
  135. package/dist/typescript/commonjs/features/profile/components/settings/SettingRow.d.ts.map +1 -0
  136. package/dist/typescript/commonjs/features/profile/components/settings/TextSettingsCard.d.ts +3 -0
  137. package/dist/typescript/commonjs/features/profile/components/settings/TextSettingsCard.d.ts.map +1 -0
  138. package/dist/typescript/commonjs/features/profile/components/settings/TextSizeSlider.d.ts +8 -0
  139. package/dist/typescript/commonjs/features/profile/components/settings/TextSizeSlider.d.ts.map +1 -0
  140. package/dist/typescript/commonjs/features/profile/components/settings/TextToSpeechRow.d.ts +3 -0
  141. package/dist/typescript/commonjs/features/profile/components/settings/TextToSpeechRow.d.ts.map +1 -0
  142. package/dist/typescript/commonjs/features/profile/components/settings/TranslationLanguageRow.d.ts +3 -0
  143. package/dist/typescript/commonjs/features/profile/components/settings/TranslationLanguageRow.d.ts.map +1 -0
  144. package/dist/typescript/commonjs/features/profile/context/ProfileContext.d.ts +13 -0
  145. package/dist/typescript/commonjs/features/profile/context/ProfileContext.d.ts.map +1 -0
  146. package/dist/typescript/commonjs/features/profile/index.d.ts +12 -0
  147. package/dist/typescript/commonjs/features/profile/index.d.ts.map +1 -0
  148. package/dist/typescript/commonjs/features/profile/model/ProfileApi.d.ts +11 -0
  149. package/dist/typescript/commonjs/features/profile/model/ProfileApi.d.ts.map +1 -0
  150. package/dist/typescript/commonjs/features/profile/model/ProfileJoinClassModel.d.ts +14 -0
  151. package/dist/typescript/commonjs/features/profile/model/ProfileJoinClassModel.d.ts.map +1 -0
  152. package/dist/typescript/commonjs/features/profile/model/ProfileLanguageModel.d.ts +13 -0
  153. package/dist/typescript/commonjs/features/profile/model/ProfileLanguageModel.d.ts.map +1 -0
  154. package/dist/typescript/commonjs/features/profile/model/ProfileModel.d.ts +26 -0
  155. package/dist/typescript/commonjs/features/profile/model/ProfileModel.d.ts.map +1 -0
  156. package/dist/typescript/commonjs/features/profile/model/profileModal.types.d.ts +14 -0
  157. package/dist/typescript/commonjs/features/profile/model/profileModal.types.d.ts.map +1 -0
  158. package/dist/typescript/commonjs/features/profile/shared/JoinClassError.d.ts +5 -0
  159. package/dist/typescript/commonjs/features/profile/shared/JoinClassError.d.ts.map +1 -0
  160. package/dist/typescript/commonjs/features/profile/shared/profile.constants.d.ts +20 -0
  161. package/dist/typescript/commonjs/features/profile/shared/profile.constants.d.ts.map +1 -0
  162. package/dist/typescript/commonjs/features/profile/shared/profile.helpers.d.ts +6 -0
  163. package/dist/typescript/commonjs/features/profile/shared/profile.helpers.d.ts.map +1 -0
  164. package/dist/typescript/commonjs/features/profile/shared/profile.types.d.ts +27 -0
  165. package/dist/typescript/commonjs/features/profile/shared/profile.types.d.ts.map +1 -0
  166. package/dist/typescript/commonjs/index.d.ts +1 -0
  167. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  168. package/dist/typescript/commonjs/shared/hooks/useKeyboardOffset.d.ts +11 -0
  169. package/dist/typescript/commonjs/shared/hooks/useKeyboardOffset.d.ts.map +1 -0
  170. package/dist/typescript/module/features/chatbot/components/ChatInput/FreeText/ChatTextInput.d.ts.map +1 -1
  171. package/dist/typescript/module/features/profile/Profile.d.ts +6 -0
  172. package/dist/typescript/module/features/profile/Profile.d.ts.map +1 -0
  173. package/dist/typescript/module/features/profile/__tests__/ProfileModel.test.d.ts +2 -0
  174. package/dist/typescript/module/features/profile/__tests__/ProfileModel.test.d.ts.map +1 -0
  175. package/dist/typescript/module/features/profile/__tests__/profile.helpers.test.d.ts +2 -0
  176. package/dist/typescript/module/features/profile/__tests__/profile.helpers.test.d.ts.map +1 -0
  177. package/dist/typescript/module/features/profile/components/actions/ProfileActions.d.ts +3 -0
  178. package/dist/typescript/module/features/profile/components/actions/ProfileActions.d.ts.map +1 -0
  179. package/dist/typescript/module/features/profile/components/cards/ProfileCard.d.ts +10 -0
  180. package/dist/typescript/module/features/profile/components/cards/ProfileCard.d.ts.map +1 -0
  181. package/dist/typescript/module/features/profile/components/info/AccountInfoCard.d.ts +3 -0
  182. package/dist/typescript/module/features/profile/components/info/AccountInfoCard.d.ts.map +1 -0
  183. package/dist/typescript/module/features/profile/components/modals/JoinClassModal.d.ts +4 -0
  184. package/dist/typescript/module/features/profile/components/modals/JoinClassModal.d.ts.map +1 -0
  185. package/dist/typescript/module/features/profile/components/modals/LogoutConfirmModal.d.ts +4 -0
  186. package/dist/typescript/module/features/profile/components/modals/LogoutConfirmModal.d.ts.map +1 -0
  187. package/dist/typescript/module/features/profile/components/modals/TranslationLanguageModal.d.ts +4 -0
  188. package/dist/typescript/module/features/profile/components/modals/TranslationLanguageModal.d.ts.map +1 -0
  189. package/dist/typescript/module/features/profile/components/settings/LanguageSettingsCard.d.ts +3 -0
  190. package/dist/typescript/module/features/profile/components/settings/LanguageSettingsCard.d.ts.map +1 -0
  191. package/dist/typescript/module/features/profile/components/settings/PreferencesCard.d.ts +3 -0
  192. package/dist/typescript/module/features/profile/components/settings/PreferencesCard.d.ts.map +1 -0
  193. package/dist/typescript/module/features/profile/components/settings/SettingRow.d.ts +11 -0
  194. package/dist/typescript/module/features/profile/components/settings/SettingRow.d.ts.map +1 -0
  195. package/dist/typescript/module/features/profile/components/settings/TextSettingsCard.d.ts +3 -0
  196. package/dist/typescript/module/features/profile/components/settings/TextSettingsCard.d.ts.map +1 -0
  197. package/dist/typescript/module/features/profile/components/settings/TextSizeSlider.d.ts +8 -0
  198. package/dist/typescript/module/features/profile/components/settings/TextSizeSlider.d.ts.map +1 -0
  199. package/dist/typescript/module/features/profile/components/settings/TextToSpeechRow.d.ts +3 -0
  200. package/dist/typescript/module/features/profile/components/settings/TextToSpeechRow.d.ts.map +1 -0
  201. package/dist/typescript/module/features/profile/components/settings/TranslationLanguageRow.d.ts +3 -0
  202. package/dist/typescript/module/features/profile/components/settings/TranslationLanguageRow.d.ts.map +1 -0
  203. package/dist/typescript/module/features/profile/context/ProfileContext.d.ts +13 -0
  204. package/dist/typescript/module/features/profile/context/ProfileContext.d.ts.map +1 -0
  205. package/dist/typescript/module/features/profile/index.d.ts +12 -0
  206. package/dist/typescript/module/features/profile/index.d.ts.map +1 -0
  207. package/dist/typescript/module/features/profile/model/ProfileApi.d.ts +11 -0
  208. package/dist/typescript/module/features/profile/model/ProfileApi.d.ts.map +1 -0
  209. package/dist/typescript/module/features/profile/model/ProfileJoinClassModel.d.ts +14 -0
  210. package/dist/typescript/module/features/profile/model/ProfileJoinClassModel.d.ts.map +1 -0
  211. package/dist/typescript/module/features/profile/model/ProfileLanguageModel.d.ts +13 -0
  212. package/dist/typescript/module/features/profile/model/ProfileLanguageModel.d.ts.map +1 -0
  213. package/dist/typescript/module/features/profile/model/ProfileModel.d.ts +26 -0
  214. package/dist/typescript/module/features/profile/model/ProfileModel.d.ts.map +1 -0
  215. package/dist/typescript/module/features/profile/model/profileModal.types.d.ts +14 -0
  216. package/dist/typescript/module/features/profile/model/profileModal.types.d.ts.map +1 -0
  217. package/dist/typescript/module/features/profile/shared/JoinClassError.d.ts +5 -0
  218. package/dist/typescript/module/features/profile/shared/JoinClassError.d.ts.map +1 -0
  219. package/dist/typescript/module/features/profile/shared/profile.constants.d.ts +20 -0
  220. package/dist/typescript/module/features/profile/shared/profile.constants.d.ts.map +1 -0
  221. package/dist/typescript/module/features/profile/shared/profile.helpers.d.ts +6 -0
  222. package/dist/typescript/module/features/profile/shared/profile.helpers.d.ts.map +1 -0
  223. package/dist/typescript/module/features/profile/shared/profile.types.d.ts +27 -0
  224. package/dist/typescript/module/features/profile/shared/profile.types.d.ts.map +1 -0
  225. package/dist/typescript/module/index.d.ts +1 -0
  226. package/dist/typescript/module/index.d.ts.map +1 -1
  227. package/dist/typescript/module/shared/hooks/useKeyboardOffset.d.ts +11 -0
  228. package/dist/typescript/module/shared/hooks/useKeyboardOffset.d.ts.map +1 -0
  229. package/package.json +4 -2
  230. package/src/features/chatbot/components/ChatInput/FreeText/ChatTextInput.tsx +0 -1
  231. package/src/features/profile/Profile.tsx +83 -0
  232. package/src/features/profile/__tests__/ProfileModel.test.ts +99 -0
  233. package/src/features/profile/__tests__/profile.helpers.test.ts +57 -0
  234. package/src/features/profile/components/actions/ProfileActions.tsx +68 -0
  235. package/src/features/profile/components/cards/ProfileCard.tsx +53 -0
  236. package/src/features/profile/components/info/AccountInfoCard.tsx +74 -0
  237. package/src/features/profile/components/modals/JoinClassModal.tsx +180 -0
  238. package/src/features/profile/components/modals/LogoutConfirmModal.tsx +64 -0
  239. package/src/features/profile/components/modals/TranslationLanguageModal.tsx +126 -0
  240. package/src/features/profile/components/settings/LanguageSettingsCard.tsx +16 -0
  241. package/src/features/profile/components/settings/PreferencesCard.tsx +67 -0
  242. package/src/features/profile/components/settings/SettingRow.tsx +42 -0
  243. package/src/features/profile/components/settings/TextSettingsCard.tsx +64 -0
  244. package/src/features/profile/components/settings/TextSizeSlider.tsx +117 -0
  245. package/src/features/profile/components/settings/TextToSpeechRow.tsx +29 -0
  246. package/src/features/profile/components/settings/TranslationLanguageRow.tsx +60 -0
  247. package/src/features/profile/context/ProfileContext.tsx +24 -0
  248. package/src/features/profile/index.ts +11 -0
  249. package/src/features/profile/model/ProfileApi.ts +23 -0
  250. package/src/features/profile/model/ProfileJoinClassModel.ts +58 -0
  251. package/src/features/profile/model/ProfileLanguageModel.ts +26 -0
  252. package/src/features/profile/model/ProfileModel.ts +57 -0
  253. package/src/features/profile/model/profileModal.types.ts +16 -0
  254. package/src/features/profile/shared/JoinClassError.ts +7 -0
  255. package/src/features/profile/shared/profile.constants.ts +23 -0
  256. package/src/features/profile/shared/profile.helpers.ts +36 -0
  257. package/src/features/profile/shared/profile.types.ts +34 -0
  258. package/src/i18n/.generated/schema.json +9 -1
  259. package/src/index.ts +1 -0
  260. package/src/shared/hooks/useKeyboardOffset.ts +57 -0
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNativeReanimated","_reactNative","_reactNativeUi","_studentsFeatures","_useKeyboard","_constants","_SendMessageButton","_studentsQa","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","MAX_AVAILABLE_MESSAGE_LENGTH","COMPACT_WIDTH","FULL_WIDTH","IS_WEB","ANIMATION_DURATION","ChatTextInput","value","submitDisabled","onSubmit","onChangeText","onBlur","onFocus","colorScheme","ColorScheme","Blue","placeholder","inputRef","useRef","isFocused","setIsFocused","useState","widthSv","useSharedValue","animatedStyle","useAnimatedStyle","width","handleInputChange","text","length","hasText","trim","isExpanded","shouldCollapseInput","shouldExpandInput","withTiming","duration","handleSendMessage","current","focus","handleOnFocus","handleOnBlur","useKeyBoard","enabled","callback","event","key","KeyboardKeys","ENTER","jsxs","View","style","styles","inputWrapper","children","jsx","TextInput","ref","placeholderTextColor","COLORS","NEUTRAL_5","input","testID","TEST_IDS","OPEN_CHAT_TEXT_INPUT","SendMessageButton","onPress","disabled","exports","StyleSheet","create","container","position","alignItems","justifyContent","height","zIndex","left","flexDirection","borderWidth","borderColor","borderRadius","backgroundColor","NEUTRAL_1","paddingHorizontal","SPACING","paddingVertical","elevation","shadowColor","shadowOffset","shadowOpacity","shadowRadius","flex","fontSize","minWidth","minHeight","fontWeight","fontFamily","FONT_FAMILY","buenosAires","Platform","OS","outlineStyle","arrowWrapper","marginLeft"],"sourceRoot":"../../../../../../../src","sources":["features/chatbot/components/ChatInput/FreeText/ChatTextInput.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNativeReanimated","_reactNative","_reactNativeUi","_studentsFeatures","_useKeyboard","_constants","_SendMessageButton","_studentsQa","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","MAX_AVAILABLE_MESSAGE_LENGTH","COMPACT_WIDTH","FULL_WIDTH","IS_WEB","ANIMATION_DURATION","ChatTextInput","value","submitDisabled","onSubmit","onChangeText","onBlur","onFocus","colorScheme","ColorScheme","Blue","placeholder","inputRef","useRef","isFocused","setIsFocused","useState","widthSv","useSharedValue","animatedStyle","useAnimatedStyle","width","handleInputChange","text","length","hasText","trim","isExpanded","shouldCollapseInput","shouldExpandInput","withTiming","duration","handleSendMessage","current","focus","handleOnFocus","handleOnBlur","useKeyBoard","enabled","callback","event","key","KeyboardKeys","ENTER","jsxs","View","style","styles","inputWrapper","children","jsx","TextInput","ref","placeholderTextColor","COLORS","NEUTRAL_5","input","testID","TEST_IDS","OPEN_CHAT_TEXT_INPUT","SendMessageButton","onPress","disabled","exports","StyleSheet","create","container","position","alignItems","justifyContent","height","zIndex","left","flexDirection","borderWidth","borderColor","borderRadius","backgroundColor","NEUTRAL_1","paddingHorizontal","SPACING","paddingVertical","elevation","shadowColor","shadowOffset","shadowOpacity","shadowRadius","flex","fontSize","minWidth","minHeight","fontWeight","fontFamily","FONT_FAMILY","buenosAires","Platform","OS","outlineStyle","arrowWrapper","marginLeft"],"sourceRoot":"../../../../../../../src","sources":["features/chatbot/components/ChatInput/FreeText/ChatTextInput.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Profile = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeUi = require("@magmamath/react-native-ui");
10
+ var _commonConstants = require("../../shared/common.constants.js");
11
+ var _ProfileActions = require("./components/actions/ProfileActions.js");
12
+ var _AccountInfoCard = require("./components/info/AccountInfoCard.js");
13
+ var _LanguageSettingsCard = require("./components/settings/LanguageSettingsCard.js");
14
+ var _PreferencesCard = require("./components/settings/PreferencesCard.js");
15
+ var _TextSettingsCard = require("./components/settings/TextSettingsCard.js");
16
+ var _ProfileContext = require("./context/ProfileContext.js");
17
+ var _jsxRuntime = require("react/jsx-runtime");
18
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
19
+ const TWO_COLUMN_BREAKPOINT = 768;
20
+ const COLUMN_MAX_WIDTH = 560;
21
+ const Profile = props => {
22
+ const {
23
+ showSolveMode,
24
+ versionInfo
25
+ } = props;
26
+ const {
27
+ width
28
+ } = (0, _reactNative.useWindowDimensions)();
29
+ const isTwoColumn = width >= TWO_COLUMN_BREAKPOINT;
30
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ProfileContext.ProfileProvider, {
31
+ value: props,
32
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
33
+ style: styles.container,
34
+ contentContainerStyle: styles.scroll,
35
+ scrollEnabled: _commonConstants.isWeb,
36
+ showsVerticalScrollIndicator: _commonConstants.isWeb,
37
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
38
+ style: [styles.columns, !isTwoColumn && styles.columnsStacked],
39
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
40
+ style: [styles.column, isTwoColumn ? styles.columnWide : styles.columnStacked],
41
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_LanguageSettingsCard.LanguageSettingsCard, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TextSettingsCard.TextSettingsCard, {})]
42
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
43
+ style: [styles.column, isTwoColumn ? styles.columnWide : styles.columnStacked],
44
+ children: [showSolveMode && /*#__PURE__*/(0, _jsxRuntime.jsx)(_PreferencesCard.PreferencesCard, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_AccountInfoCard.AccountInfoCard, {})]
45
+ })]
46
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ProfileActions.ProfileActions, {}), versionInfo ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
47
+ style: styles.version,
48
+ children: versionInfo
49
+ }) : null]
50
+ })
51
+ });
52
+ };
53
+ exports.Profile = Profile;
54
+ const styles = _reactNative.StyleSheet.create({
55
+ container: {
56
+ backgroundColor: _reactNativeUi.COLORS.NEUTRAL_3,
57
+ flex: 1
58
+ },
59
+ scroll: {
60
+ flexGrow: 1,
61
+ gap: _reactNativeUi.SPACING['800'],
62
+ paddingHorizontal: _reactNativeUi.SPACING['800'],
63
+ paddingVertical: _reactNativeUi.SPACING['600']
64
+ },
65
+ columns: {
66
+ flexDirection: 'row',
67
+ gap: _reactNativeUi.SPACING['600'],
68
+ justifyContent: 'center',
69
+ width: '100%'
70
+ },
71
+ columnsStacked: {
72
+ alignItems: 'center',
73
+ flexDirection: 'column'
74
+ },
75
+ column: {
76
+ gap: _reactNativeUi.SPACING['600'],
77
+ maxWidth: COLUMN_MAX_WIDTH
78
+ },
79
+ columnWide: {
80
+ flex: 1
81
+ },
82
+ columnStacked: {
83
+ width: '100%'
84
+ },
85
+ version: {
86
+ alignSelf: 'flex-end',
87
+ marginTop: 'auto'
88
+ }
89
+ });
90
+ //# sourceMappingURL=Profile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeUi","_commonConstants","_ProfileActions","_AccountInfoCard","_LanguageSettingsCard","_PreferencesCard","_TextSettingsCard","_ProfileContext","_jsxRuntime","e","__esModule","default","TWO_COLUMN_BREAKPOINT","COLUMN_MAX_WIDTH","Profile","props","showSolveMode","versionInfo","width","useWindowDimensions","isTwoColumn","jsx","ProfileProvider","value","children","jsxs","ScrollView","style","styles","container","contentContainerStyle","scroll","scrollEnabled","isWeb","showsVerticalScrollIndicator","View","columns","columnsStacked","column","columnWide","columnStacked","LanguageSettingsCard","TextSettingsCard","PreferencesCard","AccountInfoCard","ProfileActions","version","exports","StyleSheet","create","backgroundColor","COLORS","NEUTRAL_3","flex","flexGrow","gap","SPACING","paddingHorizontal","paddingVertical","flexDirection","justifyContent","alignItems","maxWidth","alignSelf","marginTop"],"sourceRoot":"../../../../src","sources":["features/profile/Profile.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,cAAA,GAAAF,OAAA;AAEA,IAAAG,gBAAA,GAAAH,OAAA;AACA,IAAAI,eAAA,GAAAJ,OAAA;AACA,IAAAK,gBAAA,GAAAL,OAAA;AACA,IAAAM,qBAAA,GAAAN,OAAA;AACA,IAAAO,gBAAA,GAAAP,OAAA;AACA,IAAAQ,iBAAA,GAAAR,OAAA;AACA,IAAAS,eAAA,GAAAT,OAAA;AAAoF,IAAAU,WAAA,GAAAV,OAAA;AAAA,SAAAD,uBAAAY,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAIpF,MAAMG,qBAAqB,GAAG,GAAG;AACjC,MAAMC,gBAAgB,GAAG,GAAG;AAErB,MAAMC,OAAO,GAAIC,KAAmB,IAAK;EAC9C,MAAM;IAAEC,aAAa;IAAEC;EAAY,CAAC,GAAGF,KAAK;EAC5C,MAAM;IAAEG;EAAM,CAAC,GAAG,IAAAC,gCAAmB,EAAC,CAAC;EACvC,MAAMC,WAAW,GAAGF,KAAK,IAAIN,qBAAqB;EAElD,oBACE,IAAAJ,WAAA,CAAAa,GAAA,EAACd,eAAA,CAAAe,eAAe;IAACC,KAAK,EAAER,KAAM;IAAAS,QAAA,eAC5B,IAAAhB,WAAA,CAAAiB,IAAA,EAAC1B,YAAA,CAAA2B,UAAU;MACTC,KAAK,EAAEC,MAAM,CAACC,SAAU;MACxBC,qBAAqB,EAAEF,MAAM,CAACG,MAAO;MACrCC,aAAa,EAAEC,sBAAM;MACrBC,4BAA4B,EAAED,sBAAM;MAAAT,QAAA,gBAEpC,IAAAhB,WAAA,CAAAiB,IAAA,EAAC1B,YAAA,CAAAoC,IAAI;QAACR,KAAK,EAAE,CAACC,MAAM,CAACQ,OAAO,EAAE,CAAChB,WAAW,IAAIQ,MAAM,CAACS,cAAc,CAAE;QAAAb,QAAA,gBACnE,IAAAhB,WAAA,CAAAiB,IAAA,EAAC1B,YAAA,CAAAoC,IAAI;UAACR,KAAK,EAAE,CAACC,MAAM,CAACU,MAAM,EAAElB,WAAW,GAAGQ,MAAM,CAACW,UAAU,GAAGX,MAAM,CAACY,aAAa,CAAE;UAAAhB,QAAA,gBACnF,IAAAhB,WAAA,CAAAa,GAAA,EAACjB,qBAAA,CAAAqC,oBAAoB,IAAE,CAAC,eACxB,IAAAjC,WAAA,CAAAa,GAAA,EAACf,iBAAA,CAAAoC,gBAAgB,IAAE,CAAC;QAAA,CAChB,CAAC,eACP,IAAAlC,WAAA,CAAAiB,IAAA,EAAC1B,YAAA,CAAAoC,IAAI;UAACR,KAAK,EAAE,CAACC,MAAM,CAACU,MAAM,EAAElB,WAAW,GAAGQ,MAAM,CAACW,UAAU,GAAGX,MAAM,CAACY,aAAa,CAAE;UAAAhB,QAAA,GAClFR,aAAa,iBAAI,IAAAR,WAAA,CAAAa,GAAA,EAAChB,gBAAA,CAAAsC,eAAe,IAAE,CAAC,eACrC,IAAAnC,WAAA,CAAAa,GAAA,EAAClB,gBAAA,CAAAyC,eAAe,IAAE,CAAC;QAAA,CACf,CAAC;MAAA,CACH,CAAC,eACP,IAAApC,WAAA,CAAAa,GAAA,EAACnB,eAAA,CAAA2C,cAAc,IAAE,CAAC,EACjB5B,WAAW,gBAAG,IAAAT,WAAA,CAAAa,GAAA,EAACtB,YAAA,CAAAoC,IAAI;QAACR,KAAK,EAAEC,MAAM,CAACkB,OAAQ;QAAAtB,QAAA,EAAEP;MAAW,CAAO,CAAC,GAAG,IAAI;IAAA,CAC7D;EAAC,CACE,CAAC;AAEtB,CAAC;AAAA8B,OAAA,CAAAjC,OAAA,GAAAA,OAAA;AAED,MAAMc,MAAM,GAAGoB,uBAAU,CAACC,MAAM,CAAC;EAC/BpB,SAAS,EAAE;IACTqB,eAAe,EAAEC,qBAAM,CAACC,SAAS;IACjCC,IAAI,EAAE;EACR,CAAC;EACDtB,MAAM,EAAE;IACNuB,QAAQ,EAAE,CAAC;IACXC,GAAG,EAAEC,sBAAO,CAAC,KAAK,CAAC;IACnBC,iBAAiB,EAAED,sBAAO,CAAC,KAAK,CAAC;IACjCE,eAAe,EAAEF,sBAAO,CAAC,KAAK;EAChC,CAAC;EACDpB,OAAO,EAAE;IACPuB,aAAa,EAAE,KAAK;IACpBJ,GAAG,EAAEC,sBAAO,CAAC,KAAK,CAAC;IACnBI,cAAc,EAAE,QAAQ;IACxB1C,KAAK,EAAE;EACT,CAAC;EACDmB,cAAc,EAAE;IACdwB,UAAU,EAAE,QAAQ;IACpBF,aAAa,EAAE;EACjB,CAAC;EACDrB,MAAM,EAAE;IACNiB,GAAG,EAAEC,sBAAO,CAAC,KAAK,CAAC;IACnBM,QAAQ,EAAEjD;EACZ,CAAC;EACD0B,UAAU,EAAE;IACVc,IAAI,EAAE;EACR,CAAC;EACDb,aAAa,EAAE;IACbtB,KAAK,EAAE;EACT,CAAC;EACD4B,OAAO,EAAE;IACPiB,SAAS,EAAE,UAAU;IACrBC,SAAS,EAAE;EACb;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ProfileActions = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeUi = require("@magmamath/react-native-ui");
10
+ var _studentsQa = require("@magmamath/students-qa");
11
+ var _i18n = require("../../../../i18n/i18n.js");
12
+ var _ProfileContext = require("../../context/ProfileContext.js");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ const ProfileActions = () => {
16
+ const t = (0, _i18n.useText)();
17
+ const {
18
+ onLogout,
19
+ onOpenJoinClass
20
+ } = (0, _ProfileContext.useProfile)();
21
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
22
+ style: styles.container,
23
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
24
+ style: styles.leftHalf,
25
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.ReanimatedButton, {
26
+ variant: _reactNativeUi.ButtonVariant.SECONDARY,
27
+ colorScheme: _reactNativeUi.ButtonColor.WHITE,
28
+ size: _reactNativeUi.ButtonSize.LARGE,
29
+ onPress: onOpenJoinClass,
30
+ testID: _studentsQa.TEST_IDS.JOIN_NEW_CLASS_BUTTON,
31
+ style: buttonStyle,
32
+ children: t('profile.joinNewClass')
33
+ })
34
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
35
+ style: styles.rightHalf,
36
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.ReanimatedButton, {
37
+ variant: _reactNativeUi.ButtonVariant.PRIMARY,
38
+ colorScheme: _reactNativeUi.ButtonColor.ORANGE,
39
+ size: _reactNativeUi.ButtonSize.LARGE,
40
+ onPress: onLogout,
41
+ testID: _studentsQa.TEST_IDS.LOGOUT_BUTTON,
42
+ style: buttonStyle,
43
+ children: t('profile.logOut')
44
+ })
45
+ })]
46
+ });
47
+ };
48
+ exports.ProfileActions = ProfileActions;
49
+ const styles = _reactNative.StyleSheet.create({
50
+ container: {
51
+ flexDirection: 'row',
52
+ gap: _reactNativeUi.SPACING['600'],
53
+ width: '100%'
54
+ },
55
+ leftHalf: {
56
+ alignItems: 'flex-end',
57
+ flex: 1
58
+ },
59
+ rightHalf: {
60
+ alignItems: 'flex-start',
61
+ flex: 1
62
+ },
63
+ text: {
64
+ textTransform: 'uppercase'
65
+ }
66
+ });
67
+ const buttonStyle = {
68
+ text: styles.text
69
+ };
70
+ //# sourceMappingURL=ProfileActions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeUi","_studentsQa","_i18n","_ProfileContext","_jsxRuntime","e","__esModule","default","ProfileActions","t","useText","onLogout","onOpenJoinClass","useProfile","jsxs","View","style","styles","container","children","jsx","leftHalf","ReanimatedButton","variant","ButtonVariant","SECONDARY","colorScheme","ButtonColor","WHITE","size","ButtonSize","LARGE","onPress","testID","TEST_IDS","JOIN_NEW_CLASS_BUTTON","buttonStyle","rightHalf","PRIMARY","ORANGE","LOGOUT_BUTTON","exports","StyleSheet","create","flexDirection","gap","SPACING","width","alignItems","flex","text","textTransform"],"sourceRoot":"../../../../../../src","sources":["features/profile/components/actions/ProfileActions.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,cAAA,GAAAF,OAAA;AAOA,IAAAG,WAAA,GAAAH,OAAA;AAEA,IAAAI,KAAA,GAAAJ,OAAA;AACA,IAAAK,eAAA,GAAAL,OAAA;AAAyD,IAAAM,WAAA,GAAAN,OAAA;AAAA,SAAAD,uBAAAQ,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAElD,MAAMG,cAAc,GAAGA,CAAA,KAAM;EAClC,MAAMC,CAAC,GAAG,IAAAC,aAAO,EAAC,CAAC;EACnB,MAAM;IAAEC,QAAQ;IAAEC;EAAgB,CAAC,GAAG,IAAAC,0BAAU,EAAC,CAAC;EAElD,oBACE,IAAAT,WAAA,CAAAU,IAAA,EAACf,YAAA,CAAAgB,IAAI;IAACC,KAAK,EAAEC,MAAM,CAACC,SAAU;IAAAC,QAAA,gBAC5B,IAAAf,WAAA,CAAAgB,GAAA,EAACrB,YAAA,CAAAgB,IAAI;MAACC,KAAK,EAAEC,MAAM,CAACI,QAAS;MAAAF,QAAA,eAC3B,IAAAf,WAAA,CAAAgB,GAAA,EAACpB,cAAA,CAAAsB,gBAAgB;QACfC,OAAO,EAAEC,4BAAa,CAACC,SAAU;QACjCC,WAAW,EAAEC,0BAAW,CAACC,KAAM;QAC/BC,IAAI,EAAEC,yBAAU,CAACC,KAAM;QACvBC,OAAO,EAAEpB,eAAgB;QACzBqB,MAAM,EAAEC,oBAAQ,CAACC,qBAAsB;QACvCnB,KAAK,EAAEoB,WAAY;QAAAjB,QAAA,EAElBV,CAAC,CAAC,sBAAsB;MAAC,CACV;IAAC,CACf,CAAC,eACP,IAAAL,WAAA,CAAAgB,GAAA,EAACrB,YAAA,CAAAgB,IAAI;MAACC,KAAK,EAAEC,MAAM,CAACoB,SAAU;MAAAlB,QAAA,eAC5B,IAAAf,WAAA,CAAAgB,GAAA,EAACpB,cAAA,CAAAsB,gBAAgB;QACfC,OAAO,EAAEC,4BAAa,CAACc,OAAQ;QAC/BZ,WAAW,EAAEC,0BAAW,CAACY,MAAO;QAChCV,IAAI,EAAEC,yBAAU,CAACC,KAAM;QACvBC,OAAO,EAAErB,QAAS;QAClBsB,MAAM,EAAEC,oBAAQ,CAACM,aAAc;QAC/BxB,KAAK,EAAEoB,WAAY;QAAAjB,QAAA,EAElBV,CAAC,CAAC,gBAAgB;MAAC,CACJ;IAAC,CACf,CAAC;EAAA,CACH,CAAC;AAEX,CAAC;AAAAgC,OAAA,CAAAjC,cAAA,GAAAA,cAAA;AAED,MAAMS,MAAM,GAAGyB,uBAAU,CAACC,MAAM,CAAC;EAC/BzB,SAAS,EAAE;IACT0B,aAAa,EAAE,KAAK;IACpBC,GAAG,EAAEC,sBAAO,CAAC,KAAK,CAAC;IACnBC,KAAK,EAAE;EACT,CAAC;EACD1B,QAAQ,EAAE;IACR2B,UAAU,EAAE,UAAU;IACtBC,IAAI,EAAE;EACR,CAAC;EACDZ,SAAS,EAAE;IACTW,UAAU,EAAE,YAAY;IACxBC,IAAI,EAAE;EACR,CAAC;EACDC,IAAI,EAAE;IACJC,aAAa,EAAE;EACjB;AACF,CAAC,CAAC;AAEF,MAAMf,WAAW,GAAG;EAAEc,IAAI,EAAEjC,MAAM,CAACiC;AAAK,CAAC","ignoreList":[]}
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ProfileCard = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeUi = require("@magmamath/react-native-ui");
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
+ const ProfileCard = ({
13
+ title,
14
+ children,
15
+ style
16
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
17
+ style: [styles.card, style],
18
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
19
+ style: styles.header,
20
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Typography, {
21
+ variant: _reactNativeUi.HeadingVariants.H9,
22
+ style: styles.title,
23
+ children: title
24
+ })
25
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
26
+ style: styles.divider
27
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
28
+ style: styles.body,
29
+ children: children
30
+ })]
31
+ });
32
+ exports.ProfileCard = ProfileCard;
33
+ const styles = _reactNative.StyleSheet.create({
34
+ card: {
35
+ backgroundColor: _reactNativeUi.COLORS.NEUTRAL_1,
36
+ borderRadius: _reactNativeUi.BORDER_RADIUS['400'],
37
+ padding: _reactNativeUi.SPACING['400'],
38
+ ..._reactNativeUi.SHADOWS['1']
39
+ },
40
+ header: {
41
+ paddingLeft: _reactNativeUi.SPACING['200']
42
+ },
43
+ title: {
44
+ color: _reactNativeUi.COLORS.NEUTRAL_7
45
+ },
46
+ divider: {
47
+ backgroundColor: _reactNativeUi.COLORS.NEUTRAL_3,
48
+ height: 1,
49
+ marginHorizontal: _reactNativeUi.SPACING['100'],
50
+ marginVertical: _reactNativeUi.SPACING['200']
51
+ },
52
+ body: {
53
+ gap: _reactNativeUi.SPACING['400'],
54
+ justifyContent: 'center'
55
+ }
56
+ });
57
+ //# sourceMappingURL=ProfileCard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_reactNativeUi","_jsxRuntime","e","__esModule","default","ProfileCard","title","children","style","jsxs","View","styles","card","jsx","header","Typography","variant","HeadingVariants","H9","divider","body","exports","StyleSheet","create","backgroundColor","COLORS","NEUTRAL_1","borderRadius","BORDER_RADIUS","padding","SPACING","SHADOWS","paddingLeft","color","NEUTRAL_7","NEUTRAL_3","height","marginHorizontal","marginVertical","gap","justifyContent"],"sourceRoot":"../../../../../../src","sources":["features/profile/components/cards/ProfileCard.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,cAAA,GAAAF,OAAA;AAOmC,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAQ5B,MAAMG,WAAW,GAAGA,CAAC;EAAEC,KAAK;EAAEC,QAAQ;EAAEC;AAAwB,CAAC,kBACtE,IAAAP,WAAA,CAAAQ,IAAA,EAACV,YAAA,CAAAW,IAAI;EAACF,KAAK,EAAE,CAACG,MAAM,CAACC,IAAI,EAAEJ,KAAK,CAAE;EAAAD,QAAA,gBAChC,IAAAN,WAAA,CAAAY,GAAA,EAACd,YAAA,CAAAW,IAAI;IAACF,KAAK,EAAEG,MAAM,CAACG,MAAO;IAAAP,QAAA,eACzB,IAAAN,WAAA,CAAAY,GAAA,EAACb,cAAA,CAAAe,UAAU;MAACC,OAAO,EAAEC,8BAAe,CAACC,EAAG;MAACV,KAAK,EAAEG,MAAM,CAACL,KAAM;MAAAC,QAAA,EAC1DD;IAAK,CACI;EAAC,CACT,CAAC,eACP,IAAAL,WAAA,CAAAY,GAAA,EAACd,YAAA,CAAAW,IAAI;IAACF,KAAK,EAAEG,MAAM,CAACQ;EAAQ,CAAE,CAAC,eAC/B,IAAAlB,WAAA,CAAAY,GAAA,EAACd,YAAA,CAAAW,IAAI;IAACF,KAAK,EAAEG,MAAM,CAACS,IAAK;IAAAb,QAAA,EAAEA;EAAQ,CAAO,CAAC;AAAA,CACvC,CACP;AAAAc,OAAA,CAAAhB,WAAA,GAAAA,WAAA;AAED,MAAMM,MAAM,GAAGW,uBAAU,CAACC,MAAM,CAAC;EAC/BX,IAAI,EAAE;IACJY,eAAe,EAAEC,qBAAM,CAACC,SAAS;IACjCC,YAAY,EAAEC,4BAAa,CAAC,KAAK,CAAC;IAClCC,OAAO,EAAEC,sBAAO,CAAC,KAAK,CAAC;IACvB,GAAGC,sBAAO,CAAC,GAAG;EAChB,CAAC;EACDjB,MAAM,EAAE;IACNkB,WAAW,EAAEF,sBAAO,CAAC,KAAK;EAC5B,CAAC;EACDxB,KAAK,EAAE;IACL2B,KAAK,EAAER,qBAAM,CAACS;EAChB,CAAC;EACDf,OAAO,EAAE;IACPK,eAAe,EAAEC,qBAAM,CAACU,SAAS;IACjCC,MAAM,EAAE,CAAC;IACTC,gBAAgB,EAAEP,sBAAO,CAAC,KAAK,CAAC;IAChCQ,cAAc,EAAER,sBAAO,CAAC,KAAK;EAC/B,CAAC;EACDV,IAAI,EAAE;IACJmB,GAAG,EAAET,sBAAO,CAAC,KAAK,CAAC;IACnBU,cAAc,EAAE;EAClB;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.AccountInfoCard = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _effectorReact = require("effector-react");
9
+ var _reactNative = require("react-native");
10
+ var _reactNativeUi = require("@magmamath/react-native-ui");
11
+ var _i18n = require("../../../../i18n/i18n.js");
12
+ var _ProfileContext = require("../../context/ProfileContext.js");
13
+ var _ProfileCard = require("../cards/ProfileCard.js");
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ const NOTE_ICON_SIZE = 20;
17
+ const InfoField = ({
18
+ label,
19
+ value
20
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
21
+ style: styles.field,
22
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Typography, {
23
+ variant: _reactNativeUi.HeadingVariants.H8,
24
+ style: styles.label,
25
+ children: label
26
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Typography, {
27
+ variant: _reactNativeUi.HeadingVariants.H6,
28
+ style: styles.value,
29
+ children: value
30
+ })]
31
+ });
32
+ const AccountInfoCard = () => {
33
+ const t = (0, _i18n.useText)();
34
+ const {
35
+ model
36
+ } = (0, _ProfileContext.useProfile)();
37
+ const user = (0, _effectorReact.useUnit)(model.$user);
38
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_ProfileCard.ProfileCard, {
39
+ title: t('profile.accountInfo'),
40
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(InfoField, {
41
+ label: t('profile.fullName'),
42
+ value: user?.fullName ?? ''
43
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(InfoField, {
44
+ label: t('profile.username'),
45
+ value: user?.username ?? ''
46
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(InfoField, {
47
+ label: t('profile.school'),
48
+ value: user?.schoolName ?? ''
49
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
50
+ style: styles.noteDivider
51
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
52
+ style: styles.note,
53
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.InfoIcon, {
54
+ size: NOTE_ICON_SIZE,
55
+ color: _reactNativeUi.COLORS.NEUTRAL_7
56
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Typography, {
57
+ variant: _reactNativeUi.HeadingVariants.H8,
58
+ style: styles.noteText,
59
+ children: t('profile.changePasswordNote')
60
+ })]
61
+ })]
62
+ });
63
+ };
64
+ exports.AccountInfoCard = AccountInfoCard;
65
+ const styles = _reactNative.StyleSheet.create({
66
+ field: {
67
+ gap: _reactNativeUi.SPACING['100'],
68
+ paddingHorizontal: _reactNativeUi.SPACING['100']
69
+ },
70
+ label: {
71
+ color: _reactNativeUi.COLORS.NEUTRAL_7
72
+ },
73
+ value: {
74
+ color: _reactNativeUi.COLORS.NEUTRAL_9
75
+ },
76
+ noteDivider: {
77
+ backgroundColor: _reactNativeUi.COLORS.NEUTRAL_3,
78
+ height: 1,
79
+ marginHorizontal: _reactNativeUi.SPACING['100']
80
+ },
81
+ note: {
82
+ alignItems: 'center',
83
+ flexDirection: 'row',
84
+ gap: _reactNativeUi.SPACING['200']
85
+ },
86
+ noteText: {
87
+ color: _reactNativeUi.COLORS.NEUTRAL_7,
88
+ flexShrink: 1
89
+ }
90
+ });
91
+ //# sourceMappingURL=AccountInfoCard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_effectorReact","_reactNative","_reactNativeUi","_i18n","_ProfileContext","_ProfileCard","_jsxRuntime","e","__esModule","default","NOTE_ICON_SIZE","InfoField","label","value","jsxs","View","style","styles","field","children","jsx","Typography","variant","HeadingVariants","H8","H6","AccountInfoCard","t","useText","model","useProfile","user","useUnit","$user","ProfileCard","title","fullName","username","schoolName","noteDivider","note","InfoIcon","size","color","COLORS","NEUTRAL_7","noteText","exports","StyleSheet","create","gap","SPACING","paddingHorizontal","NEUTRAL_9","backgroundColor","NEUTRAL_3","height","marginHorizontal","alignItems","flexDirection","flexShrink"],"sourceRoot":"../../../../../../src","sources":["features/profile/components/info/AccountInfoCard.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,190 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.JoinClassModal = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _effectorReact = require("effector-react");
10
+ var _reactNativeConfirmationCodeField = require("react-native-confirmation-code-field");
11
+ var _reactNativeUi = require("@magmamath/react-native-ui");
12
+ var _studentsQa = require("@magmamath/students-qa");
13
+ var _i18n = require("../../../../i18n/i18n.js");
14
+ var _useKeyboardOffset = require("../../../../shared/hooks/useKeyboardOffset.js");
15
+ var _commonConstants = require("../../../../shared/common.constants.js");
16
+ var _profileConstants = require("../../shared/profile.constants.js");
17
+ var _jsxRuntime = require("react/jsx-runtime");
18
+ 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); }
19
+ 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; }
20
+ const CODE_PLACEHOLDER = '0';
21
+ const MAX_MODAL_WIDTH = 1044;
22
+ const SCREEN_MARGIN = 48;
23
+ const CELL_GAP = _reactNativeUi.SPACING['400'];
24
+ const MODAL_H_PADDING = _reactNativeUi.SPACING['800'];
25
+ const CELL_ASPECT = 0.95;
26
+ const CELL_RADIUS_RATIO = 0.24; // 36 / 150 in the design
27
+ const CELL_FONT_RATIO = 0.42; // 64 / 150 in the design
28
+ const MAX_CELL_RADIUS = 36;
29
+ const CLOSE_ICON_SIZE = 18;
30
+ const KEYBOARD_LIFT_RATIO = 2;
31
+ const JoinClassModal = ({
32
+ modal: {
33
+ closeModal,
34
+ params
35
+ }
36
+ }) => {
37
+ const t = (0, _i18n.useText)();
38
+ const {
39
+ model
40
+ } = params;
41
+ const {
42
+ width
43
+ } = (0, _reactNative.useWindowDimensions)();
44
+ const {
45
+ code,
46
+ isComplete,
47
+ isPending
48
+ } = (0, _effectorReact.useUnit)({
49
+ code: model.joinClass.$code,
50
+ isComplete: model.joinClass.$isComplete,
51
+ isPending: model.api.joinClassFx.pending
52
+ });
53
+ const modalWidth = Math.min(MAX_MODAL_WIDTH, width - SCREEN_MARGIN);
54
+ const cellSize = (modalWidth - MODAL_H_PADDING * 2 - CELL_GAP * (_profileConstants.CLASS_CODE_LENGTH - 1)) / _profileConstants.CLASS_CODE_LENGTH;
55
+ const cellRadius = Math.min(MAX_CELL_RADIUS, cellSize * CELL_RADIUS_RATIO);
56
+ const cellFontSize = cellSize * CELL_FONT_RATIO;
57
+ const setCode = value => model.joinClass.setCode(value.toUpperCase());
58
+ const [cellProps, getCellOnLayoutHandler] = (0, _reactNativeConfirmationCodeField.useClearByFocusCell)({
59
+ value: code,
60
+ setValue: setCode
61
+ });
62
+ (0, _react.useEffect)(() => {
63
+ const subscription = model.api.joinClassFx.finally.watch(() => {
64
+ model.joinClass.reset();
65
+ closeModal();
66
+ });
67
+ return () => subscription.unsubscribe();
68
+ }, [model, closeModal]);
69
+ const closeAndReset = () => {
70
+ model.joinClass.reset();
71
+ closeModal();
72
+ };
73
+ const submit = () => model.joinClass.submit();
74
+ const keyboardHeight = (0, _useKeyboardOffset.useKeyboardOffset)();
75
+ const liftStyle = (0, _react.useMemo)(() => ({
76
+ transform: [{
77
+ translateY: _reactNative.Animated.multiply(keyboardHeight, -1 / KEYBOARD_LIFT_RATIO)
78
+ }]
79
+ }), [keyboardHeight]);
80
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
81
+ style: liftStyle,
82
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.BaseModal, {
83
+ onClose: closeAndReset,
84
+ closeButton: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.Button, {
85
+ variant: _reactNativeUi.ButtonVariant.TERTIARY,
86
+ icon: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.CrossIcon, {
87
+ size: CLOSE_ICON_SIZE,
88
+ color: _reactNativeUi.COLORS.NEUTRAL_7
89
+ }),
90
+ onPress: closeAndReset,
91
+ testID: _studentsQa.TEST_IDS.JOIN_CLASS_CLOSE_BUTTON
92
+ }),
93
+ style: {
94
+ container: [styles.modal, {
95
+ width: modalWidth
96
+ }]
97
+ },
98
+ header: t('profile.joinClassTitle'),
99
+ content: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeConfirmationCodeField.CodeField, {
100
+ ...cellProps,
101
+ nativeID: "join-class-code",
102
+ value: code,
103
+ onChangeText: setCode,
104
+ cellCount: _profileConstants.CLASS_CODE_LENGTH,
105
+ rootStyle: styles.codeRoot,
106
+ textInputStyle: styles.codeInput,
107
+ autoFocus: true,
108
+ autoComplete: "off",
109
+ textContentType: "oneTimeCode",
110
+ keyboardType: "default",
111
+ returnKeyType: "go",
112
+ onSubmitEditing: submit,
113
+ testID: _studentsQa.TEST_IDS.JOIN_CLASS_INPUT(0),
114
+ renderCell: ({
115
+ index,
116
+ symbol,
117
+ isFocused
118
+ }) => {
119
+ const isPlaceholder = !symbol && !isFocused;
120
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
121
+ style: [styles.cell, {
122
+ borderRadius: cellRadius,
123
+ width: cellSize
124
+ }],
125
+ onLayout: getCellOnLayoutHandler(index),
126
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
127
+ style: [styles.cellText, {
128
+ fontSize: cellFontSize
129
+ }, isPlaceholder && styles.cellPlaceholder],
130
+ children: symbol || (isFocused ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeConfirmationCodeField.Cursor, {}) : CODE_PLACEHOLDER)
131
+ })
132
+ }, index);
133
+ }
134
+ }),
135
+ footer: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeUi.ReanimatedButton, {
136
+ variant: _reactNativeUi.ButtonVariant.PRIMARY,
137
+ colorScheme: _reactNativeUi.ButtonColor.ORANGE,
138
+ size: _reactNativeUi.ButtonSize.LARGE,
139
+ onPress: submit,
140
+ disabled: !isComplete || isPending,
141
+ isLoading: isPending,
142
+ testID: _studentsQa.TEST_IDS.JOIN_CLASS_SUBMIT_BUTTON,
143
+ style: buttonStyle,
144
+ children: t('profile.joinClassButton')
145
+ })
146
+ })
147
+ });
148
+ };
149
+ exports.JoinClassModal = JoinClassModal;
150
+ const styles = _reactNative.StyleSheet.create({
151
+ modal: {
152
+ gap: _reactNativeUi.SPACING['800'],
153
+ paddingHorizontal: MODAL_H_PADDING
154
+ },
155
+ codeRoot: {
156
+ flexDirection: 'row',
157
+ gap: CELL_GAP,
158
+ justifyContent: 'center'
159
+ },
160
+ codeInput: {
161
+ borderWidth: 0,
162
+ // kill the WebKit/iPad focus ring on the hidden input — focus is shown by the cells
163
+ ...(_commonConstants.isWeb && {
164
+ outlineStyle: 'none'
165
+ })
166
+ },
167
+ cell: {
168
+ alignItems: 'center',
169
+ aspectRatio: CELL_ASPECT,
170
+ backgroundColor: _reactNativeUi.COLORS.NEUTRAL_1,
171
+ borderColor: _reactNativeUi.COLORS.NEUTRAL_5,
172
+ borderWidth: 3,
173
+ justifyContent: 'center'
174
+ },
175
+ cellText: {
176
+ color: _reactNativeUi.COLORS.NEUTRAL_9,
177
+ fontFamily: _reactNativeUi.FONT_FAMILY.buenosAiresSemiBold,
178
+ textAlign: 'center'
179
+ },
180
+ cellPlaceholder: {
181
+ color: _reactNativeUi.COLORS.NEUTRAL_5
182
+ },
183
+ text: {
184
+ textTransform: 'uppercase'
185
+ }
186
+ });
187
+ const buttonStyle = {
188
+ text: styles.text
189
+ };
190
+ //# sourceMappingURL=JoinClassModal.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_effectorReact","_reactNativeConfirmationCodeField","_reactNativeUi","_studentsQa","_i18n","_useKeyboardOffset","_commonConstants","_profileConstants","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","CODE_PLACEHOLDER","MAX_MODAL_WIDTH","SCREEN_MARGIN","CELL_GAP","SPACING","MODAL_H_PADDING","CELL_ASPECT","CELL_RADIUS_RATIO","CELL_FONT_RATIO","MAX_CELL_RADIUS","CLOSE_ICON_SIZE","KEYBOARD_LIFT_RATIO","JoinClassModal","modal","closeModal","params","useText","model","width","useWindowDimensions","code","isComplete","isPending","useUnit","joinClass","$code","$isComplete","api","joinClassFx","pending","modalWidth","Math","min","cellSize","CLASS_CODE_LENGTH","cellRadius","cellFontSize","setCode","value","toUpperCase","cellProps","getCellOnLayoutHandler","useClearByFocusCell","setValue","useEffect","subscription","finally","watch","reset","unsubscribe","closeAndReset","submit","keyboardHeight","useKeyboardOffset","liftStyle","useMemo","transform","translateY","Animated","multiply","jsx","View","style","children","BaseModal","onClose","closeButton","Button","variant","ButtonVariant","TERTIARY","icon","CrossIcon","size","color","COLORS","NEUTRAL_7","onPress","testID","TEST_IDS","JOIN_CLASS_CLOSE_BUTTON","container","styles","header","content","CodeField","nativeID","onChangeText","cellCount","rootStyle","codeRoot","textInputStyle","codeInput","autoFocus","autoComplete","textContentType","keyboardType","returnKeyType","onSubmitEditing","JOIN_CLASS_INPUT","renderCell","index","symbol","isFocused","isPlaceholder","cell","borderRadius","onLayout","Text","cellText","fontSize","cellPlaceholder","Cursor","footer","ReanimatedButton","PRIMARY","colorScheme","ButtonColor","ORANGE","ButtonSize","LARGE","disabled","isLoading","JOIN_CLASS_SUBMIT_BUTTON","buttonStyle","exports","StyleSheet","create","gap","paddingHorizontal","flexDirection","justifyContent","borderWidth","isWeb","outlineStyle","alignItems","aspectRatio","backgroundColor","NEUTRAL_1","borderColor","NEUTRAL_5","NEUTRAL_9","fontFamily","FONT_FAMILY","buenosAiresSemiBold","textAlign","text","textTransform"],"sourceRoot":"../../../../../../src","sources":["features/profile/components/modals/JoinClassModal.tsx"],"mappings":"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","ignoreList":[]}