@magmamath/students-features 0.9.2 → 0.9.4-rc.0

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 (187) hide show
  1. package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +9 -2
  2. package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
  3. package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js +13 -3
  4. package/dist/commonjs/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -1
  5. package/dist/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js +7 -1
  6. package/dist/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js.map +1 -1
  7. package/dist/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.js +2 -4
  8. package/dist/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.js.map +1 -1
  9. package/dist/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js +2 -2
  10. package/dist/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js.map +1 -1
  11. package/dist/commonjs/features/keyboard/components/Keyboard.js +2 -4
  12. package/dist/commonjs/features/keyboard/components/Keyboard.js.map +1 -1
  13. package/dist/commonjs/features/keyboard/components/KeysList/KeysList.js +3 -2
  14. package/dist/commonjs/features/keyboard/components/KeysList/KeysList.js.map +1 -1
  15. package/dist/commonjs/features/keyboard/components/KeysList/helpers.js +3 -2
  16. package/dist/commonjs/features/keyboard/components/KeysList/helpers.js.map +1 -1
  17. package/dist/commonjs/features/keyboard/components/MainLayout.js +75 -0
  18. package/dist/commonjs/features/keyboard/components/MainLayout.js.map +1 -0
  19. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js +24 -0
  20. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js.map +1 -0
  21. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.js +13 -0
  22. package/dist/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.js.map +1 -0
  23. package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.js +6 -2
  24. package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.js.map +1 -1
  25. package/dist/commonjs/features/keyboard/components/UnitsLayout/helpers.js +10 -3
  26. package/dist/commonjs/features/keyboard/components/UnitsLayout/helpers.js.map +1 -1
  27. package/dist/commonjs/features/keyboard/components/constants.js +1 -8
  28. package/dist/commonjs/features/keyboard/components/constants.js.map +1 -1
  29. package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js +3 -1
  30. package/dist/commonjs/features/keyboard/constants/keyboardGroupsByLocale.js.map +1 -1
  31. package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js +2 -2
  32. package/dist/commonjs/features/keyboard/constants/keyboardLayouts.js.map +1 -1
  33. package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js +27 -0
  34. package/dist/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.js.map +1 -1
  35. package/dist/commonjs/features/keyboard/types/keyboardGroupIds.js +1 -0
  36. package/dist/commonjs/features/keyboard/types/keyboardGroupIds.js.map +1 -1
  37. package/dist/commonjs/features/keyboard/types/types.js +1 -0
  38. package/dist/commonjs/features/keyboard/types/types.js.map +1 -1
  39. package/dist/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js +34 -0
  40. package/dist/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js.map +1 -0
  41. package/dist/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js +34 -0
  42. package/dist/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js.map +1 -0
  43. package/dist/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js +34 -0
  44. package/dist/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js.map +1 -0
  45. package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +9 -2
  46. package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
  47. package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js +13 -3
  48. package/dist/module/features/keyboard/components/AlgebraLayout/helpers.js.map +1 -1
  49. package/dist/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js +8 -2
  50. package/dist/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.js.map +1 -1
  51. package/dist/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.js +2 -4
  52. package/dist/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.js.map +1 -1
  53. package/dist/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js +2 -2
  54. package/dist/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.js.map +1 -1
  55. package/dist/module/features/keyboard/components/Keyboard.js +2 -4
  56. package/dist/module/features/keyboard/components/Keyboard.js.map +1 -1
  57. package/dist/module/features/keyboard/components/KeysList/KeysList.js +3 -2
  58. package/dist/module/features/keyboard/components/KeysList/KeysList.js.map +1 -1
  59. package/dist/module/features/keyboard/components/KeysList/helpers.js +3 -2
  60. package/dist/module/features/keyboard/components/KeysList/helpers.js.map +1 -1
  61. package/dist/module/features/keyboard/components/MainLayout.js +68 -0
  62. package/dist/module/features/keyboard/components/MainLayout.js.map +1 -0
  63. package/dist/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js +18 -0
  64. package/dist/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.js.map +1 -0
  65. package/dist/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.js +9 -0
  66. package/dist/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.js.map +1 -0
  67. package/dist/module/features/keyboard/components/UnitsLayout/UnitsLayout.js +6 -2
  68. package/dist/module/features/keyboard/components/UnitsLayout/UnitsLayout.js.map +1 -1
  69. package/dist/module/features/keyboard/components/UnitsLayout/helpers.js +10 -3
  70. package/dist/module/features/keyboard/components/UnitsLayout/helpers.js.map +1 -1
  71. package/dist/module/features/keyboard/components/constants.js +1 -8
  72. package/dist/module/features/keyboard/components/constants.js.map +1 -1
  73. package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js +3 -1
  74. package/dist/module/features/keyboard/constants/keyboardGroupsByLocale.js.map +1 -1
  75. package/dist/module/features/keyboard/constants/keyboardLayouts.js +2 -2
  76. package/dist/module/features/keyboard/constants/keyboardLayouts.js.map +1 -1
  77. package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js +27 -0
  78. package/dist/module/features/keyboard/types/MathKeysGroups/basicOperators.js.map +1 -1
  79. package/dist/module/features/keyboard/types/keyboardGroupIds.js +1 -0
  80. package/dist/module/features/keyboard/types/keyboardGroupIds.js.map +1 -1
  81. package/dist/module/features/keyboard/types/types.js +1 -0
  82. package/dist/module/features/keyboard/types/types.js.map +1 -1
  83. package/dist/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js +26 -0
  84. package/dist/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.js.map +1 -0
  85. package/dist/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js +26 -0
  86. package/dist/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.js.map +1 -0
  87. package/dist/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js +26 -0
  88. package/dist/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.js.map +1 -0
  89. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
  90. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
  91. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts +6 -1
  92. package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +1 -1
  93. package/dist/typescript/commonjs/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.d.ts.map +1 -1
  94. package/dist/typescript/commonjs/features/keyboard/components/BasicPlusLayout/keyboardGroups.d.ts.map +1 -1
  95. package/dist/typescript/commonjs/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.d.ts.map +1 -1
  96. package/dist/typescript/commonjs/features/keyboard/components/Keyboard.d.ts +1 -0
  97. package/dist/typescript/commonjs/features/keyboard/components/Keyboard.d.ts.map +1 -1
  98. package/dist/typescript/commonjs/features/keyboard/components/KeysList/KeysList.d.ts.map +1 -1
  99. package/dist/typescript/commonjs/features/keyboard/components/KeysList/helpers.d.ts +2 -1
  100. package/dist/typescript/commonjs/features/keyboard/components/KeysList/helpers.d.ts.map +1 -1
  101. package/dist/typescript/commonjs/features/keyboard/components/MainLayout.d.ts +17 -0
  102. package/dist/typescript/commonjs/features/keyboard/components/MainLayout.d.ts.map +1 -0
  103. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts +4 -0
  104. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts.map +1 -0
  105. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts +3 -0
  106. package/dist/typescript/commonjs/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts.map +1 -0
  107. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts +1 -1
  108. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts.map +1 -1
  109. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/helpers.d.ts +2 -1
  110. package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/helpers.d.ts.map +1 -1
  111. package/dist/typescript/commonjs/features/keyboard/components/constants.d.ts +0 -7
  112. package/dist/typescript/commonjs/features/keyboard/components/constants.d.ts.map +1 -1
  113. package/dist/typescript/commonjs/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +1 -1
  114. package/dist/typescript/commonjs/features/keyboard/constants/keyboardLayouts.d.ts +2 -2
  115. package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.d.ts +18 -0
  116. package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/basicOperators.d.ts.map +1 -1
  117. package/dist/typescript/commonjs/features/keyboard/types/keyboardGroupIds.d.ts +2 -1
  118. package/dist/typescript/commonjs/features/keyboard/types/keyboardGroupIds.d.ts.map +1 -1
  119. package/dist/typescript/commonjs/features/keyboard/types/types.d.ts +3 -1
  120. package/dist/typescript/commonjs/features/keyboard/types/types.d.ts.map +1 -1
  121. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts +4 -0
  122. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts.map +1 -0
  123. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts +4 -0
  124. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts.map +1 -0
  125. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts +4 -0
  126. package/dist/typescript/commonjs/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts.map +1 -0
  127. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts +1 -1
  128. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
  129. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts +6 -1
  130. package/dist/typescript/module/features/keyboard/components/AlgebraLayout/helpers.d.ts.map +1 -1
  131. package/dist/typescript/module/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.d.ts.map +1 -1
  132. package/dist/typescript/module/features/keyboard/components/BasicPlusLayout/keyboardGroups.d.ts.map +1 -1
  133. package/dist/typescript/module/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.d.ts.map +1 -1
  134. package/dist/typescript/module/features/keyboard/components/Keyboard.d.ts +1 -0
  135. package/dist/typescript/module/features/keyboard/components/Keyboard.d.ts.map +1 -1
  136. package/dist/typescript/module/features/keyboard/components/KeysList/KeysList.d.ts.map +1 -1
  137. package/dist/typescript/module/features/keyboard/components/KeysList/helpers.d.ts +2 -1
  138. package/dist/typescript/module/features/keyboard/components/KeysList/helpers.d.ts.map +1 -1
  139. package/dist/typescript/module/features/keyboard/components/MainLayout.d.ts +17 -0
  140. package/dist/typescript/module/features/keyboard/components/MainLayout.d.ts.map +1 -0
  141. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts +4 -0
  142. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.d.ts.map +1 -0
  143. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts +3 -0
  144. package/dist/typescript/module/features/keyboard/components/UnderlinedLayout/keyboardGroups.d.ts.map +1 -0
  145. package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts +1 -1
  146. package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitsLayout.d.ts.map +1 -1
  147. package/dist/typescript/module/features/keyboard/components/UnitsLayout/helpers.d.ts +2 -1
  148. package/dist/typescript/module/features/keyboard/components/UnitsLayout/helpers.d.ts.map +1 -1
  149. package/dist/typescript/module/features/keyboard/components/constants.d.ts +0 -7
  150. package/dist/typescript/module/features/keyboard/components/constants.d.ts.map +1 -1
  151. package/dist/typescript/module/features/keyboard/constants/keyboardGroupsByLocale.d.ts.map +1 -1
  152. package/dist/typescript/module/features/keyboard/constants/keyboardLayouts.d.ts +2 -2
  153. package/dist/typescript/module/features/keyboard/types/MathKeysGroups/basicOperators.d.ts +18 -0
  154. package/dist/typescript/module/features/keyboard/types/MathKeysGroups/basicOperators.d.ts.map +1 -1
  155. package/dist/typescript/module/features/keyboard/types/keyboardGroupIds.d.ts +2 -1
  156. package/dist/typescript/module/features/keyboard/types/keyboardGroupIds.d.ts.map +1 -1
  157. package/dist/typescript/module/features/keyboard/types/types.d.ts +3 -1
  158. package/dist/typescript/module/features/keyboard/types/types.d.ts.map +1 -1
  159. package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts +4 -0
  160. package/dist/typescript/module/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.d.ts.map +1 -0
  161. package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts +4 -0
  162. package/dist/typescript/module/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.d.ts.map +1 -0
  163. package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts +4 -0
  164. package/dist/typescript/module/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.d.ts.map +1 -0
  165. package/package.json +1 -1
  166. package/src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx +2 -2
  167. package/src/features/keyboard/components/AlgebraLayout/helpers.tsx +19 -6
  168. package/src/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.tsx +9 -2
  169. package/src/features/keyboard/components/BasicPlusLayout/keyboardGroups.ts +7 -21
  170. package/src/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.ts +0 -4
  171. package/src/features/keyboard/components/Keyboard.tsx +4 -5
  172. package/src/features/keyboard/components/KeysList/KeysList.tsx +2 -1
  173. package/src/features/keyboard/components/KeysList/helpers.ts +3 -1
  174. package/src/features/keyboard/components/MainLayout.tsx +72 -0
  175. package/src/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.tsx +12 -0
  176. package/src/features/keyboard/components/UnderlinedLayout/keyboardGroups.ts +12 -0
  177. package/src/features/keyboard/components/UnitsLayout/UnitsLayout.tsx +2 -1
  178. package/src/features/keyboard/components/UnitsLayout/helpers.tsx +10 -2
  179. package/src/features/keyboard/components/constants.ts +1 -5
  180. package/src/features/keyboard/constants/keyboardGroupsByLocale.ts +2 -0
  181. package/src/features/keyboard/constants/keyboardLayouts.ts +1 -1
  182. package/src/features/keyboard/types/MathKeysGroups/basicOperators.tsx +21 -0
  183. package/src/features/keyboard/types/keyboardGroupIds.ts +1 -0
  184. package/src/features/keyboard/types/types.ts +2 -0
  185. package/src/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.tsx +17 -0
  186. package/src/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.tsx +20 -0
  187. package/src/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.tsx +20 -0
@@ -9,19 +9,15 @@ export const LAYOUT_STYLES_CONFIG = {
9
9
  paddingLeft: SPACING[800],
10
10
  },
11
11
  BASIC: { borderColor: 'transparent', paddingLeft: SPACING[800] },
12
- ALGEBRA: { borderColor: COLORS.NEUTRAL_3, paddingLeft: SPACING[200] },
13
12
  } as const
14
13
 
15
14
  export const getLayoutConfigStyles = (characterType?: number, isMobile?: boolean) => {
16
15
  if (!characterType || !isMobile) return LAYOUT_STYLES_CONFIG.DEFAULT
17
16
 
18
- const { Basic, AlgebraAdvanced, BasicPlus } = KEYBOARD_LAYOUTS
17
+ const { Basic } = KEYBOARD_LAYOUTS
19
18
 
20
19
  if (Basic.characterTypes.includes(characterType)) return LAYOUT_STYLES_CONFIG.BASIC
21
20
 
22
- if ([...AlgebraAdvanced.characterTypes, ...BasicPlus.characterTypes].includes(characterType))
23
- return LAYOUT_STYLES_CONFIG.ALGEBRA
24
-
25
21
  return LAYOUT_STYLES_CONFIG.DEFAULT
26
22
  }
27
23
 
@@ -39,6 +39,7 @@ import {
39
39
  import { Locale } from '../../../shared/translation'
40
40
  import { MATH_ENTRY_ALGEBRA_KEYBOARD_GROUP } from '../components/AlgebraLayout/keyboardGroups'
41
41
  import { KeyboardUnitsGroupType, UnitKeyboardGroups } from '../components/UnitsLayout/types'
42
+ import { MATH_ENTRY_UNDERLINED_KEYBOARD_GROUP } from '../components/UnderlinedLayout/keyboardGroups'
42
43
 
43
44
  function createKeyboardLocale(overrides: Partial<Record<KeyboardType, KeyboardGroup>>) {
44
45
  const base: Record<KeyboardType, KeyboardGroup> = {
@@ -55,6 +56,7 @@ function createKeyboardLocale(overrides: Partial<Record<KeyboardType, KeyboardGr
55
56
  [KeyboardType.BasicTime]: MATH_TIME_US_KEYBOARD_GROUP,
56
57
  [KeyboardType.AlgebraAdvanced]: MATH_ENTRY_ALGEBRA_KEYBOARD_GROUP,
57
58
  [KeyboardType.Numpad]: MATH_ENTRY_NUMBERS_US_KEYBOARD_GROUP,
59
+ [KeyboardType.Underlined]: MATH_ENTRY_UNDERLINED_KEYBOARD_GROUP,
58
60
  }
59
61
  return { ...base, ...overrides }
60
62
  }
@@ -30,7 +30,6 @@ export const KEYBOARD_LAYOUTS = {
30
30
  MyScriptMathCharacterTypes.NUMBERS,
31
31
  MyScriptMathCharacterTypes.NUMBERS_AND_X,
32
32
  MyScriptMathCharacterTypes.NUMBERS_AND_MULTIPLICATION,
33
- MyScriptMathCharacterTypes.NUMBERS_RATIONAL,
34
33
  MyScriptMathCharacterTypes.OPERATORS,
35
34
  MyScriptMathCharacterTypes.PERCENT,
36
35
  ],
@@ -55,6 +54,7 @@ export const KEYBOARD_LAYOUTS = {
55
54
  characterTypes: [
56
55
  MyScriptMathCharacterTypes.GEOM_ANGLES,
57
56
  MyScriptMathCharacterTypes.GEOM_COORDINATE,
57
+ MyScriptMathCharacterTypes.NUMBERS_RATIONAL,
58
58
  ],
59
59
  },
60
60
  }
@@ -42,6 +42,9 @@ import { EqualsIcon } from '../../../../shared/icons/keyboard/EqualsIcon/EqualsI
42
42
  import { AbsoluteValueIcon } from '../../../../shared/icons/keyboard/AbsoluteValueIcon/AbsoluteValueIcon'
43
43
  import { IntervalIcon } from '../../../../shared/icons/keyboard/IntervalIcon/IntervalIcon'
44
44
  import { createMathKeysGroup } from './helpers'
45
+ import { UnderlinedTenIcon } from '../../../../shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon'
46
+ import { UnderlinedOneIcon } from '../../../../shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon'
47
+ import { UnderlinedUIcon } from '../../../../shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon'
45
48
 
46
49
  export const MATH_BASIC_OPERATORS = createMathKeysGroup({
47
50
  ADDITION: {
@@ -266,4 +269,22 @@ export const MATH_BASIC_OPERATORS = createMathKeysGroup({
266
269
  mathliveValue: '$\\left[, \\right]$',
267
270
  katexValue: '[ , ]',
268
271
  },
272
+ UNDERLINED_TEN: {
273
+ icon: <UnderlinedTenIcon {...DEFAULT_KEY_ICON_PROPS} />,
274
+ mathliveValue: '\\underline{10}',
275
+ katexValue: '10̲',
276
+ spreadsheetValue: 'TEN',
277
+ },
278
+ UNDERLINED_ONE: {
279
+ icon: <UnderlinedOneIcon {...DEFAULT_KEY_ICON_PROPS} />,
280
+ mathliveValue: '\\underline{1}',
281
+ katexValue: '1̲',
282
+ spreadsheetValue: 'ONE_FOOT_NOTE',
283
+ },
284
+ UNDERLINED_U: {
285
+ icon: <UnderlinedUIcon {...DEFAULT_KEY_ICON_PROPS} />,
286
+ mathliveValue: '\\underline{u}',
287
+ katexValue: 'U̲',
288
+ spreadsheetValue: 'FRACTION',
289
+ },
269
290
  })
@@ -27,4 +27,5 @@ export enum MathEntryKeyboardGroupId {
27
27
  CURRENCY_SW = 'math-entry-currency-sw',
28
28
  CURRENCY_UK = 'math-entry-currency-uk',
29
29
  CURRENCY_US = 'math-entry-currency-us',
30
+ UNDERLINED = 'math-entry-underlined',
30
31
  }
@@ -13,6 +13,7 @@ export const enum KeyboardType {
13
13
  BasicPlusPlus = 'BasicPlusPlus',
14
14
  BasicPlusPlusMobile = 'BasicPlusPlusMobile',
15
15
  Numpad = 'Numpad',
16
+ Underlined = 'Underlined',
16
17
  }
17
18
 
18
19
  export type KeyboardKey = {
@@ -44,6 +45,7 @@ export type KeyboardGroup = {
44
45
 
45
46
  export type KeyboardLayoutProps = {
46
47
  onKeyPress: (key: KeyboardKeyValue) => void
48
+ onLayoutChange?: (isSecondaryLayout: boolean) => void
47
49
  color?: SelectOptionColor
48
50
  isDisabled?: boolean
49
51
  disabledKeys?: KeyboardKey[]
@@ -0,0 +1,17 @@
1
+ import React from 'react'
2
+ import { IconProps } from '../../icon.types'
3
+ import Svg, { Path } from 'react-native-svg'
4
+
5
+ export const UnderlinedOneIcon = ({ size = 20, color }: IconProps) => {
6
+ return (
7
+ <Svg width={size} height={size} viewBox="0 0 17 17" fill="none">
8
+ <Path d="M7.93176 12.1924V3.83738H6.46176V1.84238H10.0918V12.1924H7.93176Z" fill={color} />
9
+ <Path
10
+ d="M2.15088 15.1924H15.1509"
11
+ stroke={color}
12
+ stroke-width="1.2"
13
+ stroke-linecap="square"
14
+ />
15
+ </Svg>
16
+ )
17
+ }
@@ -0,0 +1,20 @@
1
+ import React from 'react'
2
+ import { IconProps } from '../../icon.types'
3
+ import Svg, { Path } from 'react-native-svg'
4
+
5
+ export const UnderlinedTenIcon = ({ size = 20, color }: IconProps) => {
6
+ return (
7
+ <Svg width={size} height={size} viewBox="0 0 17 17" fill="none">
8
+ <Path
9
+ d="M3.25158 12.1924V3.83738H1.78158V1.84238H5.41158V12.1924H3.25158ZM11.4998 1.69238C14.0348 1.69238 15.5198 3.52238 15.5198 6.80738V7.16738C15.5198 10.4524 14.0348 12.2824 11.4998 12.2824C8.96482 12.2824 7.47982 10.4524 7.47982 7.16738V6.80738C7.47982 3.52238 8.96482 1.69238 11.4998 1.69238ZM9.65482 7.16738C9.65482 9.38738 10.2698 10.3024 11.4998 10.3024C12.7298 10.3024 13.3448 9.38738 13.3448 7.16738V6.80738C13.3448 4.58738 12.7298 3.67238 11.4998 3.67238C10.2698 3.67238 9.65482 4.58738 9.65482 6.80738V7.16738Z"
10
+ fill={color}
11
+ />
12
+ <path
13
+ d="M2.15088 15.1924H15.1509"
14
+ stroke={color}
15
+ stroke-width="1.2"
16
+ stroke-linecap="square"
17
+ />
18
+ </Svg>
19
+ )
20
+ }
@@ -0,0 +1,20 @@
1
+ import React from 'react'
2
+ import { IconProps } from '../../icon.types'
3
+ import Svg, { Path } from 'react-native-svg'
4
+
5
+ export const UnderlinedUIcon = ({ size = 20, color }: IconProps) => {
6
+ return (
7
+ <Svg width={size} height={size} viewBox="0 0 17 17" fill="none">
8
+ <Path
9
+ d="M10.6573 1.69238H12.8473V8.42738C12.8473 10.7824 11.4523 12.4174 8.6473 12.4174C5.8273 12.4174 4.4473 10.7824 4.4473 8.42738V1.69238H6.6223V8.26238C6.6223 9.56738 7.4023 10.3474 8.6473 10.3474C9.8923 10.3474 10.6573 9.56738 10.6573 8.26238V1.69238Z"
10
+ fill={color}
11
+ />
12
+ <Path
13
+ d="M2.15088 15.1924H15.1509"
14
+ stroke={color}
15
+ stroke-width="1.2"
16
+ stroke-linecap="square"
17
+ />
18
+ </Svg>
19
+ )
20
+ }