@magmamath/students-features 1.3.3-rc.2 → 1.3.3

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 (430) hide show
  1. package/.claude/settings.local.json +25 -0
  2. package/.editorconfig +15 -0
  3. package/.eslintignore +2 -0
  4. package/.eslintrc +22 -0
  5. package/.gitattributes +3 -0
  6. package/.github/actions/setup/action.yml +37 -0
  7. package/.github/workflows/ci.yml +73 -0
  8. package/.gitignore +84 -0
  9. package/.idea/.gitignore +8 -0
  10. package/.idea/codeStyles/Project.xml +62 -0
  11. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  12. package/.idea/copilot.data.migration.agent.xml +6 -0
  13. package/.idea/copilot.data.migration.ask.xml +6 -0
  14. package/.idea/copilot.data.migration.ask2agent.xml +6 -0
  15. package/.idea/copilot.data.migration.edit.xml +6 -0
  16. package/.idea/inspectionProfiles/Project_Default.xml +8 -0
  17. package/.idea/jsLinters/eslint.xml +6 -0
  18. package/.idea/modules.xml +8 -0
  19. package/.idea/prettier.xml +7 -0
  20. package/.idea/students-features.iml +12 -0
  21. package/.idea/vcs.xml +6 -0
  22. package/.idea/workspace.xml +667 -0
  23. package/.nvmrc +1 -0
  24. package/.prettierrc +11 -0
  25. package/.release-it.json +17 -0
  26. package/.watchmanconfig +1 -0
  27. package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
  28. package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +28 -0
  29. package/.yarn/releases/yarn-3.6.1.cjs +874 -0
  30. package/babel.config.js +5 -0
  31. package/bob.config.js +25 -0
  32. package/dist/commonjs/features/chatbot/helpers.js +5 -1
  33. package/dist/commonjs/features/chatbot/helpers.js.map +1 -1
  34. package/dist/commonjs/features/chatbot/index.js.map +1 -1
  35. package/dist/commonjs/features/chatbot/model/ChatBotModel.js +7 -6
  36. package/dist/commonjs/features/chatbot/model/ChatBotModel.js.map +1 -1
  37. package/dist/commonjs/features/chatbot/model/ChatBoxTextManager.js +2 -1
  38. package/dist/commonjs/features/chatbot/model/ChatBoxTextManager.js.map +1 -1
  39. package/dist/commonjs/features/chatbot/model/DefaultMessageCreator.js +2 -4
  40. package/dist/commonjs/features/chatbot/model/DefaultMessageCreator.js.map +1 -1
  41. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +3 -2
  42. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -1
  43. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js +8 -4
  44. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -1
  45. package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +20 -72
  46. package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
  47. package/dist/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.js +33 -0
  48. package/dist/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.js.map +1 -0
  49. package/dist/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.js +94 -0
  50. package/dist/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.js.map +1 -0
  51. package/dist/commonjs/features/keyboard/components/SwitchableLayout/helpers.js +25 -0
  52. package/dist/commonjs/features/keyboard/components/SwitchableLayout/helpers.js.map +1 -0
  53. package/dist/commonjs/features/keyboard/components/{AlgebraLayout → SwitchableLayout}/types.js +1 -1
  54. package/dist/commonjs/features/keyboard/components/SwitchableLayout/types.js.map +1 -0
  55. package/dist/commonjs/features/keyboard/constants/groups/geometry.constants.js +11 -0
  56. package/dist/commonjs/features/keyboard/constants/groups/geometry.constants.js.map +1 -0
  57. package/dist/commonjs/features/keyboard/constants/groups/index.js +11 -0
  58. package/dist/commonjs/features/keyboard/constants/groups/index.js.map +1 -1
  59. package/dist/commonjs/features/keyboard/constants/keyboard.constants.js +6 -1
  60. package/dist/commonjs/features/keyboard/constants/keyboard.constants.js.map +1 -1
  61. package/dist/commonjs/features/keyboard/constants/keyboard.helpers.js +2 -0
  62. package/dist/commonjs/features/keyboard/constants/keyboard.helpers.js.map +1 -1
  63. package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js +18 -8
  64. package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js.map +1 -1
  65. package/dist/commonjs/features/keyboard/constants/keys/geometry.constants.js +86 -1
  66. package/dist/commonjs/features/keyboard/constants/keys/geometry.constants.js.map +1 -1
  67. package/dist/commonjs/features/keyboard/constants/keys/text.constants.js +9 -9
  68. package/dist/commonjs/features/keyboard/constants/keys/units.constants.js +2 -1
  69. package/dist/commonjs/features/keyboard/constants/keys/units.constants.js.map +1 -1
  70. package/dist/commonjs/features/keyboard/types/types.js +1 -0
  71. package/dist/commonjs/features/keyboard/types/types.js.map +1 -1
  72. package/dist/commonjs/index.js +38 -23
  73. package/dist/commonjs/index.js.map +1 -1
  74. package/dist/commonjs/lib/types/keys.js +2 -0
  75. package/dist/commonjs/lib/types/keys.js.map +1 -0
  76. package/dist/commonjs/shared/icons/GeometryIcon.js +32 -0
  77. package/dist/commonjs/shared/icons/GeometryIcon.js.map +1 -0
  78. package/dist/commonjs/shared/icons/keyboard/AngleIcon.js +4 -3
  79. package/dist/commonjs/shared/icons/keyboard/AngleIcon.js.map +1 -1
  80. package/dist/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.js +12 -8
  81. package/dist/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.js.map +1 -1
  82. package/dist/commonjs/shared/icons/keyboard/ImpliesIcon.js +30 -0
  83. package/dist/commonjs/shared/icons/keyboard/ImpliesIcon.js.map +1 -0
  84. package/dist/commonjs/shared/icons/keyboard/LetterAIcon.js +29 -0
  85. package/dist/commonjs/shared/icons/keyboard/LetterAIcon.js.map +1 -0
  86. package/dist/commonjs/shared/icons/keyboard/LetterBIcon.js +29 -0
  87. package/dist/commonjs/shared/icons/keyboard/LetterBIcon.js.map +1 -0
  88. package/dist/commonjs/shared/icons/keyboard/LetterCIcon.js +29 -0
  89. package/dist/commonjs/shared/icons/keyboard/LetterCIcon.js.map +1 -0
  90. package/dist/commonjs/shared/icons/keyboard/LineSegmentIcon.js +11 -6
  91. package/dist/commonjs/shared/icons/keyboard/LineSegmentIcon.js.map +1 -1
  92. package/dist/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.js +12 -8
  93. package/dist/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.js.map +1 -1
  94. package/dist/commonjs/shared/icons/keyboard/ThereforeIcon.js +42 -0
  95. package/dist/commonjs/shared/icons/keyboard/ThereforeIcon.js.map +1 -0
  96. package/dist/commonjs/shared/icons/keyboard/TriangleIcon.js +32 -0
  97. package/dist/commonjs/shared/icons/keyboard/TriangleIcon.js.map +1 -0
  98. package/dist/commonjs/shared/translation/constants.js +17 -2
  99. package/dist/commonjs/shared/translation/constants.js.map +1 -1
  100. package/dist/commonjs/shared/translation/helpers.js +38 -8
  101. package/dist/commonjs/shared/translation/helpers.js.map +1 -1
  102. package/dist/commonjs/shared/translation/hooks.js +15 -7
  103. package/dist/commonjs/shared/translation/hooks.js.map +1 -1
  104. package/dist/commonjs/shared/translation/index.js +25 -0
  105. package/dist/commonjs/shared/translation/index.js.map +1 -1
  106. package/dist/commonjs/shared/translation/localization/ca.json +61 -0
  107. package/dist/commonjs/shared/translation/localization/de.json +61 -0
  108. package/{src/shared/translation/schema.json → dist/commonjs/shared/translation/localization/en.json} +38 -43
  109. package/dist/commonjs/shared/translation/localization/gb.json +61 -0
  110. package/dist/commonjs/shared/translation/localization/sct.json +61 -0
  111. package/dist/commonjs/shared/translation/localization/sw.json +61 -0
  112. package/dist/commonjs/shared/translation/model.js +15 -0
  113. package/dist/commonjs/shared/translation/model.js.map +1 -0
  114. package/dist/commonjs/shared/translation/validation.types.js +6 -0
  115. package/dist/commonjs/shared/translation/validation.types.js.map +1 -0
  116. package/dist/module/features/chatbot/helpers.js +5 -1
  117. package/dist/module/features/chatbot/helpers.js.map +1 -1
  118. package/dist/module/features/chatbot/index.js.map +1 -1
  119. package/dist/module/features/chatbot/model/ChatBotModel.js +7 -6
  120. package/dist/module/features/chatbot/model/ChatBotModel.js.map +1 -1
  121. package/dist/module/features/chatbot/model/ChatBoxTextManager.js +2 -1
  122. package/dist/module/features/chatbot/model/ChatBoxTextManager.js.map +1 -1
  123. package/dist/module/features/chatbot/model/DefaultMessageCreator.js +2 -3
  124. package/dist/module/features/chatbot/model/DefaultMessageCreator.js.map +1 -1
  125. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +4 -3
  126. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -1
  127. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js +9 -5
  128. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -1
  129. package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +21 -72
  130. package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
  131. package/dist/module/features/keyboard/components/GeometryLayout/GeometryLayout.js +27 -0
  132. package/dist/module/features/keyboard/components/GeometryLayout/GeometryLayout.js.map +1 -0
  133. package/dist/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.js +87 -0
  134. package/dist/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.js.map +1 -0
  135. package/dist/module/features/keyboard/components/SwitchableLayout/helpers.js +21 -0
  136. package/dist/module/features/keyboard/components/SwitchableLayout/helpers.js.map +1 -0
  137. package/dist/module/features/keyboard/components/{AlgebraLayout → SwitchableLayout}/types.js +1 -1
  138. package/dist/module/features/keyboard/components/SwitchableLayout/types.js.map +1 -0
  139. package/dist/module/features/keyboard/constants/groups/geometry.constants.js +7 -0
  140. package/dist/module/features/keyboard/constants/groups/geometry.constants.js.map +1 -0
  141. package/dist/module/features/keyboard/constants/groups/index.js +1 -0
  142. package/dist/module/features/keyboard/constants/groups/index.js.map +1 -1
  143. package/dist/module/features/keyboard/constants/keyboard.constants.js +5 -0
  144. package/dist/module/features/keyboard/constants/keyboard.constants.js.map +1 -1
  145. package/dist/module/features/keyboard/constants/keyboard.helpers.js +3 -1
  146. package/dist/module/features/keyboard/constants/keyboard.helpers.js.map +1 -1
  147. package/dist/module/features/keyboard/constants/keyboardLayouts.js +19 -9
  148. package/dist/module/features/keyboard/constants/keyboardLayouts.js.map +1 -1
  149. package/dist/module/features/keyboard/constants/keys/geometry.constants.js +86 -1
  150. package/dist/module/features/keyboard/constants/keys/geometry.constants.js.map +1 -1
  151. package/dist/module/features/keyboard/constants/keys/text.constants.js +9 -9
  152. package/dist/module/features/keyboard/constants/keys/units.constants.js +2 -1
  153. package/dist/module/features/keyboard/constants/keys/units.constants.js.map +1 -1
  154. package/dist/module/features/keyboard/types/types.js +1 -0
  155. package/dist/module/features/keyboard/types/types.js.map +1 -1
  156. package/dist/module/index.js +1 -0
  157. package/dist/module/index.js.map +1 -1
  158. package/dist/module/lib/types/keys.js +2 -0
  159. package/dist/module/lib/types/keys.js.map +1 -0
  160. package/dist/module/shared/icons/GeometryIcon.js +24 -0
  161. package/dist/module/shared/icons/GeometryIcon.js.map +1 -0
  162. package/dist/module/shared/icons/keyboard/AngleIcon.js +4 -3
  163. package/dist/module/shared/icons/keyboard/AngleIcon.js.map +1 -1
  164. package/dist/module/shared/icons/keyboard/BidirectionalSegmentIcon.js +13 -9
  165. package/dist/module/shared/icons/keyboard/BidirectionalSegmentIcon.js.map +1 -1
  166. package/dist/module/shared/icons/keyboard/ImpliesIcon.js +22 -0
  167. package/dist/module/shared/icons/keyboard/ImpliesIcon.js.map +1 -0
  168. package/dist/module/shared/icons/keyboard/LetterAIcon.js +21 -0
  169. package/dist/module/shared/icons/keyboard/LetterAIcon.js.map +1 -0
  170. package/dist/module/shared/icons/keyboard/LetterBIcon.js +21 -0
  171. package/dist/module/shared/icons/keyboard/LetterBIcon.js.map +1 -0
  172. package/dist/module/shared/icons/keyboard/LetterCIcon.js +21 -0
  173. package/dist/module/shared/icons/keyboard/LetterCIcon.js.map +1 -0
  174. package/dist/module/shared/icons/keyboard/LineSegmentIcon.js +12 -7
  175. package/dist/module/shared/icons/keyboard/LineSegmentIcon.js.map +1 -1
  176. package/dist/module/shared/icons/keyboard/RightDirectedSegmentIcon.js +13 -9
  177. package/dist/module/shared/icons/keyboard/RightDirectedSegmentIcon.js.map +1 -1
  178. package/dist/module/shared/icons/keyboard/ThereforeIcon.js +34 -0
  179. package/dist/module/shared/icons/keyboard/ThereforeIcon.js.map +1 -0
  180. package/dist/module/shared/icons/keyboard/TriangleIcon.js +24 -0
  181. package/dist/module/shared/icons/keyboard/TriangleIcon.js.map +1 -0
  182. package/dist/module/shared/translation/constants.js +15 -1
  183. package/dist/module/shared/translation/constants.js.map +1 -1
  184. package/dist/module/shared/translation/helpers.js +33 -6
  185. package/dist/module/shared/translation/helpers.js.map +1 -1
  186. package/dist/module/shared/translation/hooks.js +14 -7
  187. package/dist/module/shared/translation/hooks.js.map +1 -1
  188. package/dist/module/shared/translation/index.js +3 -2
  189. package/dist/module/shared/translation/index.js.map +1 -1
  190. package/dist/module/shared/translation/localization/ca.json +61 -0
  191. package/dist/module/shared/translation/localization/de.json +61 -0
  192. package/dist/{commonjs/shared/translation/schema.json → module/shared/translation/localization/en.json} +38 -43
  193. package/dist/module/shared/translation/localization/gb.json +61 -0
  194. package/dist/module/shared/translation/localization/sct.json +61 -0
  195. package/dist/module/shared/translation/localization/sw.json +61 -0
  196. package/dist/module/shared/translation/model.js +11 -0
  197. package/dist/module/shared/translation/model.js.map +1 -0
  198. package/dist/module/shared/translation/validation.types.js +4 -0
  199. package/dist/module/shared/translation/validation.types.js.map +1 -0
  200. package/dist/typescript/commonjs/features/chatbot/helpers.d.ts.map +1 -1
  201. package/dist/typescript/commonjs/features/chatbot/index.d.ts +1 -1
  202. package/dist/typescript/commonjs/features/chatbot/index.d.ts.map +1 -1
  203. package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts.map +1 -1
  204. package/dist/typescript/commonjs/features/chatbot/model/ChatBoxTextManager.d.ts +1 -1
  205. package/dist/typescript/commonjs/features/chatbot/model/ChatBoxTextManager.d.ts.map +1 -1
  206. package/dist/typescript/commonjs/features/chatbot/model/DefaultMessageCreator.d.ts +2 -1
  207. package/dist/typescript/commonjs/features/chatbot/model/DefaultMessageCreator.d.ts.map +1 -1
  208. package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts +8 -6
  209. package/dist/typescript/commonjs/features/chatbot/types/api.types.d.ts.map +1 -1
  210. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -1
  211. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -1
  212. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
  213. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
  214. package/dist/typescript/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts +4 -0
  215. package/dist/typescript/commonjs/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts.map +1 -0
  216. package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts +4 -0
  217. package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts.map +1 -0
  218. package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/helpers.d.ts +12 -0
  219. package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/helpers.d.ts.map +1 -0
  220. package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/types.d.ts +21 -0
  221. package/dist/typescript/commonjs/features/keyboard/components/SwitchableLayout/types.d.ts.map +1 -0
  222. package/dist/typescript/commonjs/features/keyboard/constants/groups/geometry.constants.d.ts +3 -0
  223. package/dist/typescript/commonjs/features/keyboard/constants/groups/geometry.constants.d.ts.map +1 -0
  224. package/dist/typescript/commonjs/features/keyboard/constants/groups/index.d.ts +1 -0
  225. package/dist/typescript/commonjs/features/keyboard/constants/groups/index.d.ts.map +1 -1
  226. package/dist/typescript/commonjs/features/keyboard/constants/keyboard.constants.d.ts +5 -0
  227. package/dist/typescript/commonjs/features/keyboard/constants/keyboard.constants.d.ts.map +1 -1
  228. package/dist/typescript/commonjs/features/keyboard/constants/keyboard.helpers.d.ts.map +1 -1
  229. package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts +13 -4
  230. package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts.map +1 -1
  231. package/dist/typescript/commonjs/features/keyboard/constants/keys/geometry.constants.d.ts.map +1 -1
  232. package/dist/typescript/commonjs/features/keyboard/constants/keys/units.constants.d.ts.map +1 -1
  233. package/dist/typescript/commonjs/features/keyboard/types/types.d.ts +1 -0
  234. package/dist/typescript/commonjs/features/keyboard/types/types.d.ts.map +1 -1
  235. package/dist/typescript/commonjs/index.d.ts +1 -0
  236. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  237. package/dist/typescript/commonjs/lib/components/ConditionalWrapper.d.ts +1 -1
  238. package/dist/typescript/commonjs/lib/types/keys.d.ts +8 -0
  239. package/dist/typescript/commonjs/lib/types/keys.d.ts.map +1 -0
  240. package/dist/typescript/commonjs/shared/icons/GeometryIcon.d.ts +4 -0
  241. package/dist/typescript/commonjs/shared/icons/GeometryIcon.d.ts.map +1 -0
  242. package/dist/typescript/commonjs/shared/icons/keyboard/AngleIcon.d.ts.map +1 -1
  243. package/dist/typescript/commonjs/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts.map +1 -1
  244. package/dist/typescript/commonjs/shared/icons/keyboard/ImpliesIcon.d.ts +4 -0
  245. package/dist/typescript/commonjs/shared/icons/keyboard/ImpliesIcon.d.ts.map +1 -0
  246. package/dist/typescript/commonjs/shared/icons/keyboard/LetterAIcon.d.ts +4 -0
  247. package/dist/typescript/commonjs/shared/icons/keyboard/LetterAIcon.d.ts.map +1 -0
  248. package/dist/typescript/commonjs/shared/icons/keyboard/LetterBIcon.d.ts +4 -0
  249. package/dist/typescript/commonjs/shared/icons/keyboard/LetterBIcon.d.ts.map +1 -0
  250. package/dist/typescript/commonjs/shared/icons/keyboard/LetterCIcon.d.ts +4 -0
  251. package/dist/typescript/commonjs/shared/icons/keyboard/LetterCIcon.d.ts.map +1 -0
  252. package/dist/typescript/commonjs/shared/icons/keyboard/LineSegmentIcon.d.ts.map +1 -1
  253. package/dist/typescript/commonjs/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts.map +1 -1
  254. package/dist/typescript/commonjs/shared/icons/keyboard/ThereforeIcon.d.ts +4 -0
  255. package/dist/typescript/commonjs/shared/icons/keyboard/ThereforeIcon.d.ts.map +1 -0
  256. package/dist/typescript/commonjs/shared/icons/keyboard/TriangleIcon.d.ts +4 -0
  257. package/dist/typescript/commonjs/shared/icons/keyboard/TriangleIcon.d.ts.map +1 -0
  258. package/dist/typescript/commonjs/shared/translation/constants.d.ts +368 -1
  259. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  260. package/dist/typescript/commonjs/shared/translation/helpers.d.ts +5 -1
  261. package/dist/typescript/commonjs/shared/translation/helpers.d.ts.map +1 -1
  262. package/dist/typescript/commonjs/shared/translation/hooks.d.ts +3 -1
  263. package/dist/typescript/commonjs/shared/translation/hooks.d.ts.map +1 -1
  264. package/dist/typescript/commonjs/shared/translation/index.d.ts +3 -3
  265. package/dist/typescript/commonjs/shared/translation/index.d.ts.map +1 -1
  266. package/dist/typescript/commonjs/shared/translation/model.d.ts +125 -0
  267. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -0
  268. package/dist/typescript/commonjs/shared/translation/types.d.ts +4 -3
  269. package/dist/typescript/commonjs/shared/translation/types.d.ts.map +1 -1
  270. package/dist/typescript/commonjs/shared/translation/validation.types.d.ts +21 -0
  271. package/dist/typescript/commonjs/shared/translation/validation.types.d.ts.map +1 -0
  272. package/dist/typescript/module/features/chatbot/helpers.d.ts.map +1 -1
  273. package/dist/typescript/module/features/chatbot/index.d.ts +1 -1
  274. package/dist/typescript/module/features/chatbot/index.d.ts.map +1 -1
  275. package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts.map +1 -1
  276. package/dist/typescript/module/features/chatbot/model/ChatBoxTextManager.d.ts +1 -1
  277. package/dist/typescript/module/features/chatbot/model/ChatBoxTextManager.d.ts.map +1 -1
  278. package/dist/typescript/module/features/chatbot/model/DefaultMessageCreator.d.ts +2 -1
  279. package/dist/typescript/module/features/chatbot/model/DefaultMessageCreator.d.ts.map +1 -1
  280. package/dist/typescript/module/features/chatbot/types/api.types.d.ts +8 -6
  281. package/dist/typescript/module/features/chatbot/types/api.types.d.ts.map +1 -1
  282. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -1
  283. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -1
  284. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
  285. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
  286. package/dist/typescript/module/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts +4 -0
  287. package/dist/typescript/module/features/keyboard/components/GeometryLayout/GeometryLayout.d.ts.map +1 -0
  288. package/dist/typescript/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts +4 -0
  289. package/dist/typescript/module/features/keyboard/components/SwitchableLayout/SwitchableLayout.d.ts.map +1 -0
  290. package/dist/typescript/module/features/keyboard/components/SwitchableLayout/helpers.d.ts +12 -0
  291. package/dist/typescript/module/features/keyboard/components/SwitchableLayout/helpers.d.ts.map +1 -0
  292. package/dist/typescript/module/features/keyboard/components/SwitchableLayout/types.d.ts +21 -0
  293. package/dist/typescript/module/features/keyboard/components/SwitchableLayout/types.d.ts.map +1 -0
  294. package/dist/typescript/module/features/keyboard/constants/groups/geometry.constants.d.ts +3 -0
  295. package/dist/typescript/module/features/keyboard/constants/groups/geometry.constants.d.ts.map +1 -0
  296. package/dist/typescript/module/features/keyboard/constants/groups/index.d.ts +1 -0
  297. package/dist/typescript/module/features/keyboard/constants/groups/index.d.ts.map +1 -1
  298. package/dist/typescript/module/features/keyboard/constants/keyboard.constants.d.ts +5 -0
  299. package/dist/typescript/module/features/keyboard/constants/keyboard.constants.d.ts.map +1 -1
  300. package/dist/typescript/module/features/keyboard/constants/keyboard.helpers.d.ts.map +1 -1
  301. package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts +13 -4
  302. package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts.map +1 -1
  303. package/dist/typescript/module/features/keyboard/constants/keys/geometry.constants.d.ts.map +1 -1
  304. package/dist/typescript/module/features/keyboard/constants/keys/units.constants.d.ts.map +1 -1
  305. package/dist/typescript/module/features/keyboard/types/types.d.ts +1 -0
  306. package/dist/typescript/module/features/keyboard/types/types.d.ts.map +1 -1
  307. package/dist/typescript/module/index.d.ts +1 -0
  308. package/dist/typescript/module/index.d.ts.map +1 -1
  309. package/dist/typescript/module/lib/components/ConditionalWrapper.d.ts +1 -1
  310. package/dist/typescript/module/lib/types/keys.d.ts +8 -0
  311. package/dist/typescript/module/lib/types/keys.d.ts.map +1 -0
  312. package/dist/typescript/module/shared/icons/GeometryIcon.d.ts +4 -0
  313. package/dist/typescript/module/shared/icons/GeometryIcon.d.ts.map +1 -0
  314. package/dist/typescript/module/shared/icons/keyboard/AngleIcon.d.ts.map +1 -1
  315. package/dist/typescript/module/shared/icons/keyboard/BidirectionalSegmentIcon.d.ts.map +1 -1
  316. package/dist/typescript/module/shared/icons/keyboard/ImpliesIcon.d.ts +4 -0
  317. package/dist/typescript/module/shared/icons/keyboard/ImpliesIcon.d.ts.map +1 -0
  318. package/dist/typescript/module/shared/icons/keyboard/LetterAIcon.d.ts +4 -0
  319. package/dist/typescript/module/shared/icons/keyboard/LetterAIcon.d.ts.map +1 -0
  320. package/dist/typescript/module/shared/icons/keyboard/LetterBIcon.d.ts +4 -0
  321. package/dist/typescript/module/shared/icons/keyboard/LetterBIcon.d.ts.map +1 -0
  322. package/dist/typescript/module/shared/icons/keyboard/LetterCIcon.d.ts +4 -0
  323. package/dist/typescript/module/shared/icons/keyboard/LetterCIcon.d.ts.map +1 -0
  324. package/dist/typescript/module/shared/icons/keyboard/LineSegmentIcon.d.ts.map +1 -1
  325. package/dist/typescript/module/shared/icons/keyboard/RightDirectedSegmentIcon.d.ts.map +1 -1
  326. package/dist/typescript/module/shared/icons/keyboard/ThereforeIcon.d.ts +4 -0
  327. package/dist/typescript/module/shared/icons/keyboard/ThereforeIcon.d.ts.map +1 -0
  328. package/dist/typescript/module/shared/icons/keyboard/TriangleIcon.d.ts +4 -0
  329. package/dist/typescript/module/shared/icons/keyboard/TriangleIcon.d.ts.map +1 -0
  330. package/dist/typescript/module/shared/translation/constants.d.ts +368 -1
  331. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  332. package/dist/typescript/module/shared/translation/helpers.d.ts +5 -1
  333. package/dist/typescript/module/shared/translation/helpers.d.ts.map +1 -1
  334. package/dist/typescript/module/shared/translation/hooks.d.ts +3 -1
  335. package/dist/typescript/module/shared/translation/hooks.d.ts.map +1 -1
  336. package/dist/typescript/module/shared/translation/index.d.ts +3 -3
  337. package/dist/typescript/module/shared/translation/index.d.ts.map +1 -1
  338. package/dist/typescript/module/shared/translation/model.d.ts +125 -0
  339. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -0
  340. package/dist/typescript/module/shared/translation/types.d.ts +4 -3
  341. package/dist/typescript/module/shared/translation/types.d.ts.map +1 -1
  342. package/dist/typescript/module/shared/translation/validation.types.d.ts +21 -0
  343. package/dist/typescript/module/shared/translation/validation.types.d.ts.map +1 -0
  344. package/example/.expo/README.md +8 -0
  345. package/example/.expo/devices.json +3 -0
  346. package/example/.expo/web/cache/production/images/favicon/favicon-24272cdaeff82cc5facdaccd982a6f05b60c4504704bbf94c19a6388659880bb-contain-transparent/favicon-48.png +0 -0
  347. package/example/app.json +30 -0
  348. package/example/assets/adaptive-icon.png +0 -0
  349. package/example/assets/favicon.png +0 -0
  350. package/example/assets/icon.png +0 -0
  351. package/example/assets/splash-icon.png +0 -0
  352. package/example/babel.config.js +28 -0
  353. package/example/index.js +8 -0
  354. package/example/metro.config.js +18 -0
  355. package/example/package.json +25 -0
  356. package/example/src/App.tsx +8 -0
  357. package/example/tsconfig.json +6 -0
  358. package/package.json +4 -9
  359. package/src/features/chatbot/helpers.ts +2 -0
  360. package/src/features/chatbot/index.ts +9 -1
  361. package/src/features/chatbot/model/ChatBotModel.ts +7 -10
  362. package/src/features/chatbot/model/ChatBoxTextManager.ts +3 -2
  363. package/src/features/chatbot/model/DefaultMessageCreator.ts +3 -3
  364. package/src/features/chatbot/types/api.types.ts +11 -6
  365. package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +4 -3
  366. package/src/features/exampleSolution/model/ExampleSolutionApi.ts +9 -5
  367. package/src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx +17 -73
  368. package/src/features/keyboard/components/GeometryLayout/GeometryLayout.tsx +21 -0
  369. package/src/features/keyboard/components/SwitchableLayout/SwitchableLayout.tsx +100 -0
  370. package/src/features/keyboard/components/SwitchableLayout/helpers.tsx +31 -0
  371. package/src/features/keyboard/components/SwitchableLayout/types.ts +24 -0
  372. package/src/features/keyboard/constants/groups/geometry.constants.ts +25 -0
  373. package/src/features/keyboard/constants/groups/index.ts +1 -0
  374. package/src/features/keyboard/constants/keyboard.constants.ts +6 -0
  375. package/src/features/keyboard/constants/keyboard.helpers.ts +3 -0
  376. package/src/features/keyboard/constants/keyboardLayouts.ts +15 -5
  377. package/src/features/keyboard/constants/keys/geometry.constants.tsx +61 -1
  378. package/src/features/keyboard/constants/keys/text.constants.tsx +9 -9
  379. package/src/features/keyboard/constants/keys/units.constants.tsx +1 -0
  380. package/src/features/keyboard/types/types.ts +1 -0
  381. package/src/index.ts +1 -0
  382. package/src/lib/types/keys.ts +18 -0
  383. package/src/shared/icons/GeometryIcon.tsx +18 -0
  384. package/src/shared/icons/keyboard/AngleIcon.tsx +4 -2
  385. package/src/shared/icons/keyboard/BidirectionalSegmentIcon.tsx +5 -8
  386. package/src/shared/icons/keyboard/ImpliesIcon.tsx +16 -0
  387. package/src/shared/icons/keyboard/LetterAIcon.tsx +14 -0
  388. package/src/shared/icons/keyboard/LetterBIcon.tsx +14 -0
  389. package/src/shared/icons/keyboard/LetterCIcon.tsx +14 -0
  390. package/src/shared/icons/keyboard/LineSegmentIcon.tsx +6 -7
  391. package/src/shared/icons/keyboard/RightDirectedSegmentIcon.tsx +5 -8
  392. package/src/shared/icons/keyboard/ThereforeIcon.tsx +15 -0
  393. package/src/shared/icons/keyboard/TriangleIcon.tsx +18 -0
  394. package/src/shared/translation/constants.ts +16 -1
  395. package/src/shared/translation/helpers.ts +45 -5
  396. package/src/shared/translation/hooks.ts +22 -6
  397. package/src/shared/translation/index.ts +3 -3
  398. package/src/shared/translation/localization/ca.json +61 -0
  399. package/src/shared/translation/localization/de.json +61 -0
  400. package/{dist/module/shared/translation/schema.json → src/shared/translation/localization/en.json} +38 -43
  401. package/src/shared/translation/localization/gb.json +61 -0
  402. package/src/shared/translation/localization/sct.json +61 -0
  403. package/src/shared/translation/localization/sw.json +61 -0
  404. package/src/shared/translation/model.ts +16 -0
  405. package/src/shared/translation/types.ts +19 -3
  406. package/src/shared/translation/validation.types.ts +34 -0
  407. package/tsconfig.build.json +4 -0
  408. package/tsconfig.json +34 -0
  409. package/yarn.lock +10957 -0
  410. package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js +0 -41
  411. package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js.map +0 -1
  412. package/dist/commonjs/features/keyboard/components/AlgebraLayout/types.js.map +0 -1
  413. package/dist/commonjs/shared/translation/react-i18next.d.js +0 -5
  414. package/dist/commonjs/shared/translation/react-i18next.d.js.map +0 -1
  415. package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js +0 -36
  416. package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js.map +0 -1
  417. package/dist/module/features/keyboard/components/AlgebraLayout/types.js.map +0 -1
  418. package/dist/module/shared/translation/react-i18next.d.js +0 -5
  419. package/dist/module/shared/translation/react-i18next.d.js.map +0 -1
  420. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts +0 -15
  421. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +0 -1
  422. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/types.d.ts +0 -5
  423. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/types.d.ts.map +0 -1
  424. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts +0 -15
  425. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +0 -1
  426. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/types.d.ts +0 -5
  427. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/types.d.ts.map +0 -1
  428. package/src/features/keyboard/components/AlgebraLayout/helpers.tsx +0 -52
  429. package/src/features/keyboard/components/AlgebraLayout/types.ts +0 -4
  430. package/src/shared/translation/react-i18next.d.ts +0 -21
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
+ export const GeometryIcon = ({
7
+ size = 16,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsxs(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 16 16",
14
+ fill: "none",
15
+ children: [/*#__PURE__*/_jsx(Path, {
16
+ d: "M15.499 16.0009H14.998L15.499 15.4999V16.0009ZM0.399414 15.9902C0.204051 15.9502 0.0497107 15.7968 0.00976562 15.6015L0 15.5009V0.500901C9.37645e-05 0.0555518 0.538555 -0.167482 0.853516 0.147385L15.8525 15.1474C16.1674 15.4624 15.9444 16.0009 15.499 16.0009V15.4999L14.998 16.0009H0.5L0.399414 15.9902ZM1.59961 14.4003H12.8428L1.59961 3.15715V14.4003Z",
17
+ fill: color
18
+ }), /*#__PURE__*/_jsx(Path, {
19
+ d: "M5.09541 10.7012C5.20587 10.7012 5.29541 10.7907 5.29541 10.9012V13.5055C5.29541 13.616 5.20587 13.7055 5.09541 13.7055H4.20604C4.09558 13.7055 4.00604 13.616 4.00604 13.5055V12.1898C4.00604 12.0793 3.9165 11.9898 3.80604 11.9898H2.49108C2.38062 11.9898 2.29108 11.9002 2.29108 11.7898V10.9012C2.29108 10.7907 2.38062 10.7012 2.49108 10.7012H5.09541Z",
20
+ fill: color
21
+ })]
22
+ });
23
+ };
24
+ //# sourceMappingURL=GeometryIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","GeometryIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../src","sources":["shared/icons/GeometryIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE5C,OAAO,MAAMC,YAAY,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC/D,oBACEH,KAAA,CAACL,GAAG;IAACS,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC7DV,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,kWAAkW;MACpWF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFL,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,gWAAgW;MAClWF,IAAI,EAAEJ;IAAM,CACb,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -3,17 +3,18 @@
3
3
  import React from 'react';
4
4
  import Svg, { Path } from 'react-native-svg';
5
5
  import { jsx as _jsx } from "react/jsx-runtime";
6
+ const ASPECT_RATIO = 20 / 18;
6
7
  export const AngleIcon = ({
7
8
  size = 20,
8
9
  color
9
10
  }) => {
10
11
  return /*#__PURE__*/_jsx(Svg, {
11
12
  width: size,
12
- height: size,
13
- viewBox: "0 0 16 16",
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 20 18",
14
15
  fill: "none",
15
16
  children: /*#__PURE__*/_jsx(Path, {
16
- d: "M8.94912 6.74144C9.20676 6.46187 9.63941 6.41761 9.9501 6.65062C10.2606 6.88377 10.3389 7.31141 10.1425 7.63695L10.0995 7.70043L6.49991 12.5002H10.9999C11.4141 12.5002 11.7499 12.836 11.7499 13.2502C11.7499 13.6644 11.4141 14.0002 10.9999 14.0002H4.99991C4.71583 14.0002 4.45605 13.8393 4.32901 13.5852C4.20219 13.3312 4.22994 13.0272 4.4003 12.8L8.9003 6.80004L8.94912 6.74144Z",
17
+ d: "M11.841 3.87043C12.1077 3.5183 12.6099 3.44943 12.962 3.71614C13.3142 3.98288 13.384 4.48502 13.1173 4.83723L7.17238 12.6866C7.12249 12.7525 7.16947 12.847 7.25209 12.847H14.5587C15.0004 12.8471 15.3584 13.2051 15.3585 13.6468C15.3585 14.0885 15.0004 14.4465 14.5587 14.4466H5.44154C5.13785 14.4466 4.85992 14.2752 4.72474 14.0032C4.58961 13.7314 4.62065 13.4065 4.80384 13.1644L11.841 3.87043Z",
17
18
  fill: color
18
19
  })
19
20
  });
@@ -1 +1 @@
1
- {"version":3,"names":["React","Svg","Path","jsx","_jsx","AngleIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/AngleIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,SAAS,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC5D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,4XAA4X;MAC9XF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","ASPECT_RATIO","AngleIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/AngleIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,SAAS,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC5D,oBACEJ,IAAA,CAACH,GAAG;IAACQ,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC5ET,IAAA,CAACF,IAAI;MACHY,CAAC,EAAC,4YAA4Y;MAC9YF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -1,24 +1,28 @@
1
1
  "use strict";
2
2
 
3
3
  import React from 'react';
4
- import Svg, { Path } from 'react-native-svg';
4
+ import Svg, { Path, Rect } from 'react-native-svg';
5
5
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
- const ASPECT_RATIO = 20 / 21;
6
+ const ASPECT_RATIO = 19 / 20;
7
7
  export const BidirectionalSegmentIcon = ({
8
8
  size = 20,
9
9
  color
10
10
  }) => {
11
11
  return /*#__PURE__*/_jsxs(Svg, {
12
- width: size * ASPECT_RATIO,
13
- height: size,
14
- viewBox: "0 0 20 21",
12
+ width: size,
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 19 20",
15
15
  fill: "none",
16
16
  children: [/*#__PURE__*/_jsx(Path, {
17
- d: "M16.6464 0.146692C16.8173 -0.0241721 17.0813 -0.0459256 17.2754 0.0822385L17.3535 0.146692L19.3535 2.14669L19.4179 2.22482C19.5461 2.4189 19.5243 2.68286 19.3535 2.85372L17.3535 4.85372C17.1582 5.04899 16.8417 5.04899 16.6464 4.85372C16.4512 4.65846 16.4512 4.34195 16.6464 4.14669L17.7929 3.00021H2.20699L3.35348 4.14669L3.41793 4.22482C3.5461 4.4189 3.52434 4.68286 3.35348 4.85372C3.18261 5.02459 2.91865 5.04634 2.72457 4.91818L2.64645 4.85372L0.646447 2.85372C0.451184 2.65846 0.451184 2.34195 0.646447 2.14669L2.64645 0.146692L2.72457 0.0822385C2.91865 -0.0459256 3.18261 -0.0241721 3.35348 0.146692C3.52434 0.317555 3.5461 0.581519 3.41793 0.775598L3.35348 0.853723L2.20699 2.00021H17.7929L16.6464 0.853723L16.582 0.775598C16.4538 0.581519 16.4756 0.317555 16.6464 0.146692Z",
18
- fill: color
19
- }), /*#__PURE__*/_jsx(Path, {
20
- d: "M8.07948 17L7.70148 14.55H3.52948L2.01748 17H0.407484L6.55348 7.2H7.91149L9.52148 17H8.07948ZM4.32748 13.22H7.51948L6.87548 9.09L4.32748 13.22ZM16.4822 7.2C18.0922 7.2 18.8762 8.236 18.8762 9.342C18.8762 10.434 18.1762 11.54 16.8322 11.82C17.9662 12.128 18.4842 12.996 18.4842 13.906C18.4842 15.432 17.1402 17 14.8162 17H11.0502L13.3182 7.2H16.4822ZM12.7582 15.698H14.9842C16.3842 15.698 17.0562 14.788 17.0562 13.906C17.0562 13.164 16.4822 12.506 15.4042 12.506H13.5002L12.7582 15.698ZM13.7522 11.358H15.5722C16.7762 11.358 17.4482 10.49 17.4482 9.692C17.4482 8.95 16.9862 8.502 16.0202 8.502H14.4102L13.7522 11.358Z",
17
+ d: "M16.1464 1.52657C16.3173 1.35571 16.5813 1.33396 16.7754 1.46212L16.8535 1.52657L18.8535 3.52657L18.9179 3.6047C19.0461 3.79878 19.0243 4.06274 18.8535 4.23361L16.8535 6.23361C16.6582 6.42887 16.3417 6.42887 16.1464 6.23361C15.9512 6.03834 15.9512 5.72184 16.1464 5.52657L17.2929 4.38009H1.70699L2.85348 5.52657L2.91793 5.6047C3.0461 5.79878 3.02434 6.06274 2.85348 6.23361C2.68261 6.40447 2.41865 6.42622 2.22457 6.29806L2.14645 6.23361L0.146447 4.23361C-0.0488155 4.03834 -0.0488155 3.72184 0.146447 3.52657L2.14645 1.52657L2.22457 1.46212C2.41865 1.33396 2.68261 1.35571 2.85348 1.52657C3.02434 1.69744 3.0461 1.9614 2.91793 2.15548L2.85348 2.23361L1.70699 3.38009H17.2929L16.1464 2.23361L16.082 2.15548C15.9538 1.9614 15.9756 1.69744 16.1464 1.52657Z",
21
18
  fill: color
19
+ }), /*#__PURE__*/_jsx(Rect, {
20
+ x: "4.8801",
21
+ y: "8.87988",
22
+ width: "9.24",
23
+ height: "9.24",
24
+ rx: "1.548",
25
+ stroke: "#B3B3BC"
22
26
  })]
23
27
  });
24
28
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","BidirectionalSegmentIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/BidirectionalSegmentIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,wBAAwB,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC3E,oBACEJ,KAAA,CAACL,GAAG;IAACU,KAAK,EAAEF,IAAI,GAAGF,YAAa;IAACK,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACF,IAAI;MACHc,CAAC,EAAC,+wBAA+wB;MACjxBF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFN,IAAA,CAACF,IAAI;MACHc,CAAC,EAAC,2mBAA2mB;MAC7mBF,IAAI,EAAEJ;IAAM,CACb,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","Svg","Path","Rect","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","BidirectionalSegmentIcon","size","color","width","height","viewBox","fill","children","d","x","y","rx","stroke"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/BidirectionalSegmentIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,EAAEC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAElD,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,wBAAwB,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC3E,oBACEJ,KAAA,CAACN,GAAG;IAACW,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACH,IAAI;MACHe,CAAC,EAAC,ovBAAovB;MACtvBF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFN,IAAA,CAACF,IAAI;MAACe,CAAC,EAAC,QAAQ;MAACC,CAAC,EAAC,SAAS;MAACP,KAAK,EAAC,MAAM;MAACC,MAAM,EAAC,MAAM;MAACO,EAAE,EAAC,OAAO;MAACC,MAAM,EAAC;IAAS,CAAE,CAAC;EAAA,CACnF,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ const ASPECT_RATIO = 20 / 18;
7
+ export const ImpliesIcon = ({
8
+ size = 20,
9
+ color
10
+ }) => {
11
+ return /*#__PURE__*/_jsx(Svg, {
12
+ width: size,
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 20 18",
15
+ fill: "none",
16
+ children: /*#__PURE__*/_jsx(Path, {
17
+ d: "M11.1808 4.25566C11.4933 3.94351 12.0004 3.94333 12.3127 4.25566L16.4904 8.43438C16.8025 8.74673 16.8025 9.25289 16.4904 9.56524L12.3127 13.7439C12.0004 14.0563 11.4933 14.0561 11.1808 13.7439C10.8684 13.4315 10.8684 12.9245 11.1808 12.6121L11.5441 12.2488H4.07538C3.63366 12.2487 3.27557 11.8908 3.27557 11.449C3.27573 11.0074 3.63376 10.6494 4.07538 10.6492H12.9781C13.0841 10.6492 13.1859 10.6071 13.2609 10.5321L14.7224 9.07052C14.7615 9.03146 14.7615 8.96815 14.7224 8.92909L13.2599 7.46657C13.1849 7.39156 13.0832 7.34941 12.9771 7.34941H4.07538C3.63366 7.34928 3.27557 6.99136 3.27557 6.54961C3.27573 6.108 3.63376 5.74994 4.07538 5.74981H11.5432L11.1808 5.3875C10.8685 5.07514 10.8686 4.5681 11.1808 4.25566Z",
18
+ fill: color
19
+ })
20
+ });
21
+ };
22
+ //# sourceMappingURL=ImpliesIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","ASPECT_RATIO","ImpliesIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/ImpliesIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEJ,IAAA,CAACH,GAAG;IAACQ,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC5ET,IAAA,CAACF,IAAI;MACHY,CAAC,EAAC,8sBAA8sB;MAChtBF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const LetterAIcon = ({
7
+ size = 16,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsx(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 16 16",
14
+ fill: "none",
15
+ children: /*#__PURE__*/_jsx(Path, {
16
+ d: "M10.352 14L9.92 11.2H5.152L3.424 14H1.584L8.608 2.8H10.16L12 14H10.352ZM6.064 9.68H9.712L8.976 4.96L6.064 9.68Z",
17
+ fill: color
18
+ })
19
+ });
20
+ };
21
+ //# sourceMappingURL=LetterAIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","LetterAIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LetterAIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,iHAAiH;MACnHF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const LetterBIcon = ({
7
+ size = 16,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsx(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 16 16",
14
+ fill: "none",
15
+ children: /*#__PURE__*/_jsx(Path, {
16
+ d: "M9.752 2.8C11.592 2.8 12.488 3.984 12.488 5.248C12.488 6.496 11.688 7.76 10.152 8.08C11.448 8.432 12.04 9.424 12.04 10.464C12.04 12.208 10.504 14 7.848 14H3.544L6.136 2.8H9.752ZM5.496 12.512H8.04C9.64 12.512 10.408 11.472 10.408 10.464C10.408 9.616 9.752 8.864 8.52 8.864H6.344L5.496 12.512ZM6.632 7.552H8.712C10.088 7.552 10.856 6.56 10.856 5.648C10.856 4.8 10.328 4.288 9.224 4.288H7.384L6.632 7.552Z",
17
+ fill: color
18
+ })
19
+ });
20
+ };
21
+ //# sourceMappingURL=LetterBIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","LetterBIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LetterBIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,oZAAoZ;MACtZF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ export const LetterCIcon = ({
7
+ size = 16,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsx(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 16 16",
14
+ fill: "none",
15
+ children: /*#__PURE__*/_jsx(Path, {
16
+ d: "M7.98 12.688C9.596 12.688 10.716 11.808 11.516 10.272L12.86 11.024C11.692 13.232 10.012 14.256 7.82 14.256C4.444 14.256 2.732 11.808 2.732 9.024C2.732 5.68 5.148 2.544 8.94 2.544C10.876 2.544 12.348 3.376 13.324 4.88L11.996 5.856C11.356 4.752 10.316 4.096 8.796 4.096C5.948 4.096 4.38 6.464 4.38 8.816C4.38 10.896 5.612 12.688 7.98 12.688Z",
17
+ fill: color
18
+ })
19
+ });
20
+ };
21
+ //# sourceMappingURL=LetterCIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","LetterCIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LetterCIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC9D,oBACEH,IAAA,CAACH,GAAG;IAACO,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC7DR,IAAA,CAACF,IAAI;MACHW,CAAC,EAAC,qVAAqV;MACvVF,IAAI,EAAEJ;IAAM,CACb;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -1,23 +1,28 @@
1
1
  "use strict";
2
2
 
3
3
  import React from 'react';
4
- import Svg, { Path } from 'react-native-svg';
4
+ import Svg, { Path, Rect } from 'react-native-svg';
5
5
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
+ const ASPECT_RATIO = 19 / 20;
6
7
  export const LineSegmentIcon = ({
7
8
  size = 20,
8
9
  color
9
10
  }) => {
10
11
  return /*#__PURE__*/_jsxs(Svg, {
11
12
  width: size,
12
- height: size,
13
- viewBox: "0 0 20 20",
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 19 20",
14
15
  fill: "none",
15
16
  children: [/*#__PURE__*/_jsx(Path, {
16
- d: "M19 1C19.2761 1 19.5 1.22386 19.5 1.5C19.5 1.77614 19.2761 2 19 2H1C0.723858 2 0.5 1.77614 0.5 1.5C0.5 1.22386 0.723858 1 1 1H19Z",
17
- fill: color
18
- }), /*#__PURE__*/_jsx(Path, {
19
- d: "M8.07948 16L7.70148 13.55H3.52948L2.01748 16H0.407484L6.55348 6.2H7.91149L9.52148 16H8.07948ZM4.32748 12.22H7.51948L6.87548 8.09L4.32748 12.22ZM16.4822 6.2C18.0922 6.2 18.8762 7.236 18.8762 8.342C18.8762 9.434 18.1762 10.54 16.8322 10.82C17.9662 11.128 18.4842 11.996 18.4842 12.906C18.4842 14.432 17.1402 16 14.8162 16H11.0502L13.3182 6.2H16.4822ZM12.7582 14.698H14.9842C16.3842 14.698 17.0562 13.788 17.0562 12.906C17.0562 12.164 16.4822 11.506 15.4042 11.506H13.5002L12.7582 14.698ZM13.7522 10.358H15.5722C16.7762 10.358 17.4482 9.49 17.4482 8.692C17.4482 7.95 16.9862 7.502 16.0202 7.502H14.4102L13.7522 10.358Z",
17
+ d: "M18.5 3.37988C18.7761 3.37988 19 3.60374 19 3.87988C19 4.15603 18.7761 4.37988 18.5 4.37988H0.5C0.223858 4.37988 0 4.15603 0 3.87988C0 3.60374 0.223858 3.37988 0.5 3.37988H18.5Z",
20
18
  fill: color
19
+ }), /*#__PURE__*/_jsx(Rect, {
20
+ x: "4.88",
21
+ y: "8.87988",
22
+ width: "9.24",
23
+ height: "9.24",
24
+ rx: "1.548",
25
+ stroke: "#B3B3BC"
21
26
  })]
22
27
  });
23
28
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","LineSegmentIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LineSegmentIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE5C,OAAO,MAAMC,eAAe,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAClE,oBACEH,KAAA,CAACL,GAAG;IAACS,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC7DV,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,mIAAmI;MACrIF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFL,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,ymBAAymB;MAC3mBF,IAAI,EAAEJ;IAAM,CACb,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","Svg","Path","Rect","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","LineSegmentIcon","size","color","width","height","viewBox","fill","children","d","x","y","rx","stroke"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/LineSegmentIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,EAAEC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAElD,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,eAAe,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAClE,oBACEJ,KAAA,CAACN,GAAG;IAACW,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACH,IAAI;MACHe,CAAC,EAAC,mLAAmL;MACrLF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFN,IAAA,CAACF,IAAI;MAACe,CAAC,EAAC,MAAM;MAACC,CAAC,EAAC,SAAS;MAACP,KAAK,EAAC,MAAM;MAACC,MAAM,EAAC,MAAM;MAACO,EAAE,EAAC,OAAO;MAACC,MAAM,EAAC;IAAS,CAAE,CAAC;EAAA,CACjF,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -1,24 +1,28 @@
1
1
  "use strict";
2
2
 
3
3
  import React from 'react';
4
- import Svg, { Path } from 'react-native-svg';
4
+ import Svg, { Path, Rect } from 'react-native-svg';
5
5
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
- const ASPECT_RATIO = 20 / 21;
6
+ const ASPECT_RATIO = 19 / 20;
7
7
  export const RightDirectedSegmentIcon = ({
8
8
  size = 20,
9
9
  color
10
10
  }) => {
11
11
  return /*#__PURE__*/_jsxs(Svg, {
12
- width: size * ASPECT_RATIO,
13
- height: size,
14
- viewBox: "0 0 20 21",
12
+ width: size,
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 19 20",
15
15
  fill: "none",
16
16
  children: [/*#__PURE__*/_jsx(Path, {
17
- d: "M16.6465 0.146692C16.8173 -0.0241721 17.0813 -0.0459256 17.2754 0.0822385L17.3535 0.146692L19.3535 2.14669L19.418 2.22482C19.5461 2.4189 19.5244 2.68286 19.3535 2.85372L17.3535 4.85372C17.1583 5.04899 16.8417 5.04899 16.6465 4.85372C16.4512 4.65846 16.4512 4.34195 16.6465 4.14669L17.793 3.00021H1C0.723858 3.00021 0.5 2.77635 0.5 2.50021C0.5 2.22406 0.723858 2.00021 1 2.00021H17.793L16.6465 0.853723L16.582 0.775598C16.4539 0.581519 16.4756 0.317555 16.6465 0.146692Z",
18
- fill: color
19
- }), /*#__PURE__*/_jsx(Path, {
20
- d: "M8.07948 17L7.70148 14.55H3.52948L2.01748 17H0.407484L6.55348 7.2H7.91149L9.52148 17H8.07948ZM4.32748 13.22H7.51948L6.87548 9.09L4.32748 13.22ZM16.4822 7.2C18.0922 7.2 18.8762 8.236 18.8762 9.342C18.8762 10.434 18.1762 11.54 16.8322 11.82C17.9662 12.128 18.4842 12.996 18.4842 13.906C18.4842 15.432 17.1402 17 14.8162 17H11.0502L13.3182 7.2H16.4822ZM12.7582 15.698H14.9842C16.3842 15.698 17.0562 14.788 17.0562 13.906C17.0562 13.164 16.4822 12.506 15.4042 12.506H13.5002L12.7582 15.698ZM13.7522 11.358H15.5722C16.7762 11.358 17.4482 10.49 17.4482 9.692C17.4482 8.95 16.9862 8.502 16.0202 8.502H14.4102L13.7522 11.358Z",
17
+ d: "M16.1465 1.52657C16.3173 1.35571 16.5813 1.33396 16.7754 1.46212L16.8535 1.52657L18.8535 3.52657L18.918 3.6047C19.0461 3.79878 19.0244 4.06274 18.8535 4.23361L16.8535 6.23361C16.6583 6.42887 16.3417 6.42887 16.1465 6.23361C15.9512 6.03834 15.9512 5.72184 16.1465 5.52657L17.293 4.38009H0.5C0.223858 4.38009 0 4.15623 0 3.88009C0 3.60395 0.223858 3.38009 0.5 3.38009H17.293L16.1465 2.23361L16.082 2.15548C15.9539 1.9614 15.9756 1.69744 16.1465 1.52657Z",
21
18
  fill: color
19
+ }), /*#__PURE__*/_jsx(Rect, {
20
+ x: "4.8801",
21
+ y: "8.87988",
22
+ width: "9.24",
23
+ height: "9.24",
24
+ rx: "1.548",
25
+ stroke: "#B3B3BC"
22
26
  })]
23
27
  });
24
28
  };
@@ -1 +1 @@
1
- {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","RightDirectedSegmentIcon","size","color","width","height","viewBox","fill","children","d"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/RightDirectedSegmentIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,wBAAwB,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC3E,oBACEJ,KAAA,CAACL,GAAG;IAACU,KAAK,EAAEF,IAAI,GAAGF,YAAa;IAACK,MAAM,EAAEH,IAAK;IAACI,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACF,IAAI;MACHc,CAAC,EAAC,udAAud;MACzdF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFN,IAAA,CAACF,IAAI;MACHc,CAAC,EAAC,2mBAA2mB;MAC7mBF,IAAI,EAAEJ;IAAM,CACb,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","Svg","Path","Rect","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","RightDirectedSegmentIcon","size","color","width","height","viewBox","fill","children","d","x","y","rx","stroke"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/RightDirectedSegmentIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,EAAEC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAElD,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,wBAAwB,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC3E,oBACEJ,KAAA,CAACN,GAAG;IAACW,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACH,IAAI;MACHe,CAAC,EAAC,qcAAqc;MACvcF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFN,IAAA,CAACF,IAAI;MAACe,CAAC,EAAC,QAAQ;MAACC,CAAC,EAAC,SAAS;MAACP,KAAK,EAAC,MAAM;MAACC,MAAM,EAAC,MAAM;MAACO,EAAE,EAAC,OAAO;MAACC,MAAM,EAAC;IAAS,CAAE,CAAC;EAAA,CACnF,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Circle } from 'react-native-svg';
5
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
+ const ASPECT_RATIO = 20 / 18;
7
+ export const ThereforeIcon = ({
8
+ size = 20,
9
+ color
10
+ }) => {
11
+ return /*#__PURE__*/_jsxs(Svg, {
12
+ width: size,
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 20 18",
15
+ fill: "none",
16
+ children: [/*#__PURE__*/_jsx(Circle, {
17
+ cx: "7.07972",
18
+ cy: "11.6398",
19
+ r: "1.8",
20
+ fill: color
21
+ }), /*#__PURE__*/_jsx(Circle, {
22
+ cx: "12.9203",
23
+ cy: "11.6398",
24
+ r: "1.8",
25
+ fill: color
26
+ }), /*#__PURE__*/_jsx(Circle, {
27
+ cx: "10",
28
+ cy: "6.36006",
29
+ r: "1.8",
30
+ fill: color
31
+ })]
32
+ });
33
+ };
34
+ //# sourceMappingURL=ThereforeIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Circle","jsx","_jsx","jsxs","_jsxs","ASPECT_RATIO","ThereforeIcon","size","color","width","height","viewBox","fill","children","cx","cy","r"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/ThereforeIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,MAAM,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE9C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,aAAa,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAChE,oBACEJ,KAAA,CAACL,GAAG;IAACU,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,gBAC5EX,IAAA,CAACF,MAAM;MAACc,EAAE,EAAC,SAAS;MAACC,EAAE,EAAC,SAAS;MAACC,CAAC,EAAC,KAAK;MAACJ,IAAI,EAAEJ;IAAM,CAAE,CAAC,eACzDN,IAAA,CAACF,MAAM;MAACc,EAAE,EAAC,SAAS;MAACC,EAAE,EAAC,SAAS;MAACC,CAAC,EAAC,KAAK;MAACJ,IAAI,EAAEJ;IAAM,CAAE,CAAC,eACzDN,IAAA,CAACF,MAAM;MAACc,EAAE,EAAC,IAAI;MAACC,EAAE,EAAC,SAAS;MAACC,CAAC,EAAC,KAAK;MAACJ,IAAI,EAAEJ;IAAM,CAAE,CAAC;EAAA,CACjD,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import Svg, { Path } from 'react-native-svg';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ const ASPECT_RATIO = 20 / 18;
7
+ export const TriangleIcon = ({
8
+ size = 20,
9
+ color
10
+ }) => {
11
+ return /*#__PURE__*/_jsx(Svg, {
12
+ width: size,
13
+ height: size / ASPECT_RATIO,
14
+ viewBox: "0 0 20 18",
15
+ fill: "none",
16
+ children: /*#__PURE__*/_jsx(Path, {
17
+ d: "M9.82983 3.56494C9.9081 3.43933 10.0913 3.43941 10.1697 3.56494L16.2488 13.3228C16.3317 13.4559 16.2366 13.6281 16.0798 13.6284H3.92065C3.76376 13.6284 3.66791 13.456 3.75073 13.3228L9.82983 3.56494Z",
18
+ stroke: color,
19
+ strokeWidth: "1.6",
20
+ strokeLinejoin: "round"
21
+ })
22
+ });
23
+ };
24
+ //# sourceMappingURL=TriangleIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","ASPECT_RATIO","TriangleIcon","size","color","width","height","viewBox","fill","children","d","stroke","strokeWidth","strokeLinejoin"],"sourceRoot":"../../../../../src","sources":["shared/icons/keyboard/TriangleIcon.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAOC,GAAG,IAAIC,IAAI,QAAQ,kBAAkB;AAAA,SAAAC,GAAA,IAAAC,IAAA;AAE5C,MAAMC,YAAY,GAAG,EAAE,GAAG,EAAE;AAE5B,OAAO,MAAMC,YAAY,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EAC/D,oBACEJ,IAAA,CAACH,GAAG;IAACQ,KAAK,EAAEF,IAAK;IAACG,MAAM,EAAEH,IAAI,GAAGF,YAAa;IAACM,OAAO,EAAC,WAAW;IAACC,IAAI,EAAC,MAAM;IAAAC,QAAA,eAC5ET,IAAA,CAACF,IAAI;MACHY,CAAC,EAAC,yMAAyM;MAC3MC,MAAM,EAAEP,KAAM;MACdQ,WAAW,EAAC,KAAK;MACjBC,cAAc,EAAC;IAAO,CACvB;EAAC,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -1,4 +1,18 @@
1
1
  "use strict";
2
2
 
3
- export const NAMESPACE = 'students-features';
3
+ import { Locale } from '@magmamath/frontend-config';
4
+ import EN from './localization/en.json';
5
+ import GB from './localization/gb.json';
6
+ import SW from './localization/sw.json';
7
+ import CA from './localization/ca.json';
8
+ import SCT from './localization/sct.json';
9
+ import DE from './localization/de.json';
10
+ export const LOCALIZATION_CONFIGS = {
11
+ [Locale.US]: EN,
12
+ [Locale.GB]: GB,
13
+ [Locale.SE]: SW,
14
+ [Locale.CA]: CA,
15
+ [Locale.SCT]: SCT,
16
+ [Locale.DE]: DE
17
+ };
4
18
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["NAMESPACE"],"sourceRoot":"../../../../src","sources":["shared/translation/constants.ts"],"mappings":";;AAAA,OAAO,MAAMA,SAAS,GAAG,mBAAmB","ignoreList":[]}
1
+ {"version":3,"names":["Locale","EN","GB","SW","CA","SCT","DE","LOCALIZATION_CONFIGS","US","SE"],"sourceRoot":"../../../../src","sources":["shared/translation/constants.ts"],"mappings":";;AAAA,SAASA,MAAM,QAAQ,4BAA4B;AACnD,OAAOC,EAAE,MAAM,wBAAwB;AACvC,OAAOC,EAAE,MAAM,wBAAwB;AACvC,OAAOC,EAAE,MAAM,wBAAwB;AACvC,OAAOC,EAAE,MAAM,wBAAwB;AACvC,OAAOC,GAAG,MAAM,yBAAyB;AACzC,OAAOC,EAAE,MAAM,wBAAwB;AAEvC,OAAO,MAAMC,oBAAoB,GAAG;EAClC,CAACP,MAAM,CAACQ,EAAE,GAAGP,EAAE;EACf,CAACD,MAAM,CAACE,EAAE,GAAGA,EAAE;EACf,CAACF,MAAM,CAACS,EAAE,GAAGN,EAAE;EACf,CAACH,MAAM,CAACI,EAAE,GAAGA,EAAE;EACf,CAACJ,MAAM,CAACK,GAAG,GAAGA,GAAG;EACjB,CAACL,MAAM,CAACM,EAAE,GAAGA;AACf,CAAC","ignoreList":[]}
@@ -1,11 +1,38 @@
1
1
  "use strict";
2
2
 
3
- import i18next from 'i18next';
4
- import { NAMESPACE } from "./constants.js";
5
- export const getText = (key, args = null) => {
6
- return i18next.t(key, {
7
- ns: NAMESPACE,
8
- ...(args || {})
3
+ import { $localization, setLocalization } from "./model.js";
4
+ export function getTranslation(config, key) {
5
+ const rawTranslation = config?.[key];
6
+ if (typeof rawTranslation === 'string' || !key.includes('.')) {
7
+ return rawTranslation;
8
+ }
9
+ const keys = key.split('.');
10
+ let translation = config;
11
+ for (const k of keys) {
12
+ if (translation[k] === undefined) return key;
13
+ translation = translation[k];
14
+ }
15
+ if (typeof translation === 'string') {
16
+ return translation;
17
+ }
18
+ return key;
19
+ }
20
+ export const getSubstitutedString = (str, substitutions = {}) => {
21
+ const substitutionsArray = Object.entries(substitutions);
22
+ let result = str;
23
+ if (!substitutionsArray.length) return result;
24
+ substitutionsArray.forEach(([key, value]) => {
25
+ result = result.replace(`{{${key}}}`, value);
9
26
  });
27
+ return result;
28
+ };
29
+ export const getText = (key, args = null) => {
30
+ const config = $localization.getState();
31
+ const translation = getTranslation(config, key);
32
+ if (args) return getSubstitutedString(translation, args);
33
+ return translation;
34
+ };
35
+ export const setFeaturesLocalization = generator => {
36
+ setLocalization(generator);
10
37
  };
11
38
  //# sourceMappingURL=helpers.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["i18next","NAMESPACE","getText","key","args","t","ns"],"sourceRoot":"../../../../src","sources":["shared/translation/helpers.ts"],"mappings":";;AAAA,OAAOA,OAAO,MAAM,SAAS;AAC7B,SAASC,SAAS,QAAQ,gBAAa;AAGvC,OAAO,MAAMC,OAAgB,GAAGA,CAACC,GAAG,EAAEC,IAAI,GAAG,IAAI,KAAK;EACpD,OAAOJ,OAAO,CAACK,CAAC,CAACF,GAAG,EAAE;IAAEG,EAAE,EAAEL,SAAS;IAAE,IAAIG,IAAI,IAAI,CAAC,CAAC;EAAE,CAAC,CAAC;AAC3D,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["$localization","setLocalization","getTranslation","config","key","rawTranslation","includes","keys","split","translation","k","undefined","getSubstitutedString","str","substitutions","substitutionsArray","Object","entries","result","length","forEach","value","replace","getText","args","getState","setFeaturesLocalization","generator"],"sourceRoot":"../../../../src","sources":["shared/translation/helpers.ts"],"mappings":";;AACA,SAASA,aAAa,EAAEC,eAAe,QAAQ,YAAS;AAGxD,OAAO,SAASC,cAAcA,CAACC,MAAoB,EAAEC,GAAoB,EAAE;EACzE,MAAMC,cAAc,GAAGF,MAAM,GAAGC,GAAG,CAAuB;EAC1D,IAAI,OAAOC,cAAc,KAAK,QAAQ,IAAI,CAACD,GAAG,CAACE,QAAQ,CAAC,GAAG,CAAC,EAAE;IAC5D,OAAOD,cAAc;EACvB;EACA,MAAME,IAAI,GAAGH,GAAG,CAACI,KAAK,CAAC,GAAG,CAAC;EAC3B,IAAIC,WAAW,GAAGN,MAAM;EACxB,KAAK,MAAMO,CAAC,IAAIH,IAAI,EAAE;IACpB,IAAIE,WAAW,CAACC,CAAC,CAAuB,KAAKC,SAAS,EAAE,OAAOP,GAAG;IAClEK,WAAW,GAAGA,WAAW,CAACC,CAAC,CAA8B;EAC3D;EACA,IAAI,OAAOD,WAAW,KAAK,QAAQ,EAAE;IACnC,OAAOA,WAAW;EACpB;EACA,OAAOL,GAAG;AACZ;AAEA,OAAO,MAAMQ,oBAAoB,GAAGA,CAACC,GAAW,EAAEC,aAAqC,GAAG,CAAC,CAAC,KAAK;EAC/F,MAAMC,kBAAkB,GAAGC,MAAM,CAACC,OAAO,CAACH,aAAa,CAAC;EACxD,IAAII,MAAM,GAAGL,GAAG;EAEhB,IAAI,CAACE,kBAAkB,CAACI,MAAM,EAAE,OAAOD,MAAM;EAE7CH,kBAAkB,CAACK,OAAO,CAAC,CAAC,CAAChB,GAAG,EAAEiB,KAAK,CAAC,KAAK;IAC3CH,MAAM,GAAGA,MAAM,CAACI,OAAO,CAAC,KAAKlB,GAAG,IAAI,EAAEiB,KAAK,CAAC;EAC9C,CAAC,CAAC;EAEF,OAAOH,MAAM;AACf,CAAC;AAED,OAAO,MAAMK,OAAgB,GAAGA,CAACnB,GAAoB,EAAEoB,IAAI,GAAG,IAAI,KAAK;EACrE,MAAMrB,MAAM,GAAGH,aAAa,CAACyB,QAAQ,CAAC,CAAC;EAEvC,MAAMhB,WAAW,GAAGP,cAAc,CAACC,MAAM,EAAEC,GAAG,CAAC;EAC/C,IAAIoB,IAAI,EAAE,OAAOZ,oBAAoB,CAACH,WAAW,EAAEe,IAAI,CAAC;EACxD,OAAOf,WAAW;AACpB,CAAC;AAED,OAAO,MAAMiB,uBAAuB,GAClCC,SAAiF,IAC9E;EACH1B,eAAe,CAAC0B,SAAS,CAAC;AAC5B,CAAC","ignoreList":[]}
@@ -1,12 +1,19 @@
1
1
  "use strict";
2
2
 
3
- import { useCallback } from 'react';
4
- import { useTranslation } from 'react-i18next';
5
- import { NAMESPACE } from "./constants.js";
3
+ import { useUnit } from 'effector-react';
4
+ import { $localization, setLocalization } from "./model.js";
5
+ import { useCallback, useEffect } from 'react';
6
+ import { getSubstitutedString, getTranslation } from "./helpers.js";
6
7
  export const useText = () => {
7
- const {
8
- t
9
- } = useTranslation(NAMESPACE);
10
- return useCallback((key, args = null) => t(key, args ?? undefined), [t]);
8
+ const config = useUnit($localization);
9
+ return useCallback((key, args = null) => {
10
+ const translation = getTranslation(config, key);
11
+ return args ? getSubstitutedString(translation, args) : translation;
12
+ }, [config]);
13
+ };
14
+ export const useFeaturesLocalization = generator => {
15
+ useEffect(() => {
16
+ setLocalization(generator);
17
+ }, [generator]);
11
18
  };
12
19
  //# sourceMappingURL=hooks.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useCallback","useTranslation","NAMESPACE","useText","t","key","args","undefined"],"sourceRoot":"../../../../src","sources":["shared/translation/hooks.ts"],"mappings":";;AAAA,SAASA,WAAW,QAAQ,OAAO;AACnC,SAASC,cAAc,QAAQ,eAAe;AAC9C,SAASC,SAAS,QAAQ,gBAAa;AAGvC,OAAO,MAAMC,OAAO,GAAGA,CAAA,KAAe;EACpC,MAAM;IAAEC;EAAE,CAAC,GAAGH,cAAc,CAACC,SAAS,CAAC;EACvC,OAAOF,WAAW,CAAU,CAACK,GAAG,EAAEC,IAAI,GAAG,IAAI,KAAKF,CAAC,CAACC,GAAG,EAAEC,IAAI,IAAIC,SAAS,CAAW,EAAE,CAACH,CAAC,CAAC,CAAC;AAC7F,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["useUnit","$localization","setLocalization","useCallback","useEffect","getSubstitutedString","getTranslation","useText","config","key","args","translation","useFeaturesLocalization","generator"],"sourceRoot":"../../../../src","sources":["shared/translation/hooks.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,gBAAgB;AACxC,SAASC,aAAa,EAAEC,eAAe,QAAQ,YAAS;AAExD,SAASC,WAAW,EAAEC,SAAS,QAAQ,OAAO;AAE9C,SAASC,oBAAoB,EAAEC,cAAc,QAAQ,cAAW;AAEhE,OAAO,MAAMC,OAAO,GAAGA,CAAA,KAAe;EACpC,MAAMC,MAAM,GAAGR,OAAO,CAACC,aAAa,CAAC;EACrC,OAAOE,WAAW,CAChB,CAACM,GAAG,EAAEC,IAAI,GAAG,IAAI,KAAK;IACpB,MAAMC,WAAW,GAAGL,cAAc,CAACE,MAAM,EAAEC,GAAG,CAAC;IAC/C,OAAOC,IAAI,GAAGL,oBAAoB,CAACM,WAAW,EAAED,IAAI,CAAC,GAAGC,WAAW;EACrE,CAAC,EACD,CAACH,MAAM,CACT,CAAC;AACH,CAAC;AAED,OAAO,MAAMI,uBAAuB,GAClCC,SAAiF,IAC9E;EACHT,SAAS,CAAC,MAAM;IACdF,eAAe,CAACW,SAAS,CAAC;EAC5B,CAAC,EAAE,CAACA,SAAS,CAAC,CAAC;AACjB,CAAC","ignoreList":[]}
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
 
3
- export { useText } from "./hooks.js";
4
- export { getText as t } from "./helpers.js";
3
+ export { useFeaturesLocalization, useText } from "./hooks.js";
4
+ export { setFeaturesLocalization, getText as t } from "./helpers.js";
5
+ export { $localization, setLocalization } from "./model.js";
5
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useText","getText","t"],"sourceRoot":"../../../../src","sources":["shared/translation/index.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,YAAS;AACjC,SAASC,OAAO,IAAIC,CAAC,QAAQ,cAAW","ignoreList":[]}
1
+ {"version":3,"names":["useFeaturesLocalization","useText","setFeaturesLocalization","getText","t","$localization","setLocalization"],"sourceRoot":"../../../../src","sources":["shared/translation/index.ts"],"mappings":";;AAAA,SAASA,uBAAuB,EAAEC,OAAO,QAAQ,YAAS;AAC1D,SAASC,uBAAuB,EAAEC,OAAO,IAAIC,CAAC,QAAQ,cAAW;AACjE,SAASC,aAAa,EAAEC,eAAe,QAAQ,YAAS","ignoreList":[]}
@@ -0,0 +1,61 @@
1
+ {
2
+ "locale": "en-CA",
3
+ "teacherFeedback.noComments": "No comments yet",
4
+ "time.justNow": "just now",
5
+ "time.minuteAgo": "minute ago",
6
+ "time.minutesAgo": "{{count}} minutes ago",
7
+ "time.hourAgo": "hour ago",
8
+ "time.hoursAgo": "{{count}} hours ago",
9
+ "time.dayAgo": "day ago",
10
+ "time.daysAgo": "{{count}} days ago",
11
+ "time.monthAgo": "month ago",
12
+ "time.monthsAgo": "{{count}} months ago",
13
+ "time.yearAgo": "year ago",
14
+ "time.yearsAgo": "{{count}} years ago",
15
+ "chat": {
16
+ "anotherHint": "Give me another hint",
17
+ "getHint": "Get a hint",
18
+ "needHint": "I need a hint",
19
+ "giveHintOpenChat": "I need a hint",
20
+ "answerAgain": "Answer again to get another hint!",
21
+ "errorMessage": "Something went wrong! Try again",
22
+ "howCanIHelp": "Hi! Do you want help?",
23
+ "showError": "Show error",
24
+ "inputPlaceholder": "Type..."
25
+ },
26
+ "gifCelebrations": {
27
+ "greatStart": "Great start!",
28
+ "onTheWay": "On the way!",
29
+ "almostThere": "Almost there"
30
+ },
31
+ "exampleSolution": {
32
+ "exampleSolution": "Example solution",
33
+ "letMeThink": "Let me think...",
34
+ "aha": "Aha!",
35
+ "errorMessage": "Something went wrong with generating an example solution"
36
+ },
37
+ "keyboard": {
38
+ "length": "Length",
39
+ "area": "Area",
40
+ "volume": "Volume",
41
+ "weight": "Weight",
42
+ "time": "Time"
43
+ },
44
+ "voice": {
45
+ "deleteRecording": "Delete recording?",
46
+ "youWontBeAbleToRecover": "You won't be able to recover this file once it's gone.",
47
+ "recordingDeleted": "Recording successfully deleted.",
48
+ "delete": "Delete",
49
+ "cancel": "Cancel",
50
+ "noMicrophoneAccess": "No microphone access.",
51
+ "noMicrophoneAccessBySystem": "Microphone access denied by system settings.",
52
+ "noMicrophoneFound": "No microphone found.",
53
+ "uploadFailed": "Upload failed. Please try again.",
54
+ "redoRecording": "Redo recording?",
55
+ "redo": "Redo",
56
+ "thisWillRemoveRecording": "This will remove your previous recording.",
57
+ "transcriptions": "Transcriptions",
58
+ "attempt": "Attempt {{number}}",
59
+ "transcriptNotAvailable": "Transcript not available"
60
+ }
61
+ }