@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
@@ -1 +1 @@
1
- {"version":3,"names":["MathEntryKeyboardGroupId"],"sourceRoot":"../../../../../src","sources":["features/keyboard/types/keyboardGroupIds.ts"],"mappings":";;AAAA,WAAYA,wBAAwB,0BAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA","ignoreList":[]}
1
+ {"version":3,"names":["MathEntryKeyboardGroupId"],"sourceRoot":"../../../../../src","sources":["features/keyboard/types/keyboardGroupIds.ts"],"mappings":";;AAAA,WAAYA,wBAAwB,0BAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA","ignoreList":[]}
@@ -11,6 +11,7 @@ export let KeyboardType = /*#__PURE__*/function (KeyboardType) {
11
11
  KeyboardType["BasicPlusPlus"] = "BasicPlusPlus";
12
12
  KeyboardType["BasicPlusPlusMobile"] = "BasicPlusPlusMobile";
13
13
  KeyboardType["Numpad"] = "Numpad";
14
+ KeyboardType["Underlined"] = "Underlined";
14
15
  return KeyboardType;
15
16
  }({});
16
17
  //# sourceMappingURL=types.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["KeyboardType"],"sourceRoot":"../../../../../src","sources":["features/keyboard/types/types.ts"],"mappings":";;AAIA,WAAkBA,YAAY,0BAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAA,OAAZA,YAAY;AAAA","ignoreList":[]}
1
+ {"version":3,"names":["KeyboardType"],"sourceRoot":"../../../../../src","sources":["features/keyboard/types/types.ts"],"mappings":";;AAIA,WAAkBA,YAAY,0BAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAA,OAAZA,YAAY;AAAA","ignoreList":[]}
@@ -0,0 +1,26 @@
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 UnderlinedOneIcon = ({
7
+ size = 20,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsxs(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 17 17",
14
+ fill: "none",
15
+ children: [/*#__PURE__*/_jsx(Path, {
16
+ d: "M7.93176 12.1924V3.83738H6.46176V1.84238H10.0918V12.1924H7.93176Z",
17
+ fill: color
18
+ }), /*#__PURE__*/_jsx(Path, {
19
+ d: "M2.15088 15.1924H15.1509",
20
+ stroke: color,
21
+ "stroke-width": "1.2",
22
+ "stroke-linecap": "square"
23
+ })]
24
+ });
25
+ };
26
+ //# sourceMappingURL=UnderlinedOneIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","UnderlinedOneIcon","size","color","width","height","viewBox","fill","children","d","stroke"],"sourceRoot":"../../../../../../src","sources":["shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.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,iBAAiB,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EACpE,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;MAACa,CAAC,EAAC,mEAAmE;MAACF,IAAI,EAAEJ;IAAM,CAAE,CAAC,eAC3FL,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,0BAA0B;MAC5BC,MAAM,EAAEP,KAAM;MACd,gBAAa,KAAK;MAClB,kBAAe;IAAQ,CACxB,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,26 @@
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 UnderlinedTenIcon = ({
7
+ size = 20,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsxs(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 17 17",
14
+ fill: "none",
15
+ children: [/*#__PURE__*/_jsx(Path, {
16
+ 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",
17
+ fill: color
18
+ }), /*#__PURE__*/_jsx("path", {
19
+ d: "M2.15088 15.1924H15.1509",
20
+ stroke: color,
21
+ "stroke-width": "1.2",
22
+ "stroke-linecap": "square"
23
+ })]
24
+ });
25
+ };
26
+ //# sourceMappingURL=UnderlinedTenIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","UnderlinedTenIcon","size","color","width","height","viewBox","fill","children","d","stroke"],"sourceRoot":"../../../../../../src","sources":["shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.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,iBAAiB,GAAGA,CAAC;EAAEC,IAAI,GAAG,EAAE;EAAEC;AAAiB,CAAC,KAAK;EACpE,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,qgBAAqgB;MACvgBF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFL,IAAA;MACEW,CAAC,EAAC,0BAA0B;MAC5BC,MAAM,EAAEP,KAAM;MACd,gBAAa,KAAK;MAClB,kBAAe;IAAQ,CACxB,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -0,0 +1,26 @@
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 UnderlinedUIcon = ({
7
+ size = 20,
8
+ color
9
+ }) => {
10
+ return /*#__PURE__*/_jsxs(Svg, {
11
+ width: size,
12
+ height: size,
13
+ viewBox: "0 0 17 17",
14
+ fill: "none",
15
+ children: [/*#__PURE__*/_jsx(Path, {
16
+ 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",
17
+ fill: color
18
+ }), /*#__PURE__*/_jsx(Path, {
19
+ d: "M2.15088 15.1924H15.1509",
20
+ stroke: color,
21
+ "stroke-width": "1.2",
22
+ "stroke-linecap": "square"
23
+ })]
24
+ });
25
+ };
26
+ //# sourceMappingURL=UnderlinedUIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","Svg","Path","jsx","_jsx","jsxs","_jsxs","UnderlinedUIcon","size","color","width","height","viewBox","fill","children","d","stroke"],"sourceRoot":"../../../../../../src","sources":["shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.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,0PAA0P;MAC5PF,IAAI,EAAEJ;IAAM,CACb,CAAC,eACFL,IAAA,CAACF,IAAI;MACHa,CAAC,EAAC,0BAA0B;MAC5BC,MAAM,EAAEP,KAAM;MACd,gBAAa,KAAK;MAClB,kBAAe;IAAQ,CACxB,CAAC;EAAA,CACC,CAAC;AAEV,CAAC","ignoreList":[]}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { KeyboardLayoutProps } from '../../types/types';
3
- export declare const AlgebraLayout: (props: KeyboardLayoutProps) => React.JSX.Element;
3
+ export declare const AlgebraLayout: ({ onLayoutChange, ...props }: KeyboardLayoutProps) => React.JSX.Element;
4
4
  //# sourceMappingURL=AlgebraLayout.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AlgebraLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAKhD,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAMrE,eAAO,MAAM,aAAa,UAAW,mBAAmB,sBA2CvD,CAAA"}
1
+ {"version":3,"file":"AlgebraLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAKhD,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAMrE,eAAO,MAAM,aAAa,iCAAkC,mBAAmB,sBA2C9E,CAAA"}
@@ -5,6 +5,11 @@ type LayoutOption = {
5
5
  title: ReactNode;
6
6
  onPressIn: () => void;
7
7
  };
8
- export declare function getSelectOptions(selectedLayout: SelectedLayout, setSelectedLayout: (layout: SelectedLayout) => void): LayoutOption[];
8
+ type GetSelectOptionsProps = {
9
+ selectedLayout: SelectedLayout;
10
+ setSelectedLayout: (layout: SelectedLayout) => void;
11
+ onLayoutChange?: (isSecondaryLayout: boolean) => void;
12
+ };
13
+ export declare function getSelectOptions({ selectedLayout, setSelectedLayout, onLayoutChange, }: GetSelectOptionsProps): LayoutOption[];
9
14
  export {};
10
15
  //# sourceMappingURL=helpers.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/helpers.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAIxC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAExC,KAAK,YAAY,GAAG;IAClB,GAAG,EAAE,cAAc,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,EAAE,MAAM,IAAI,CAAA;CACtB,CAAA;AAED,wBAAgB,gBAAgB,CAC9B,cAAc,EAAE,cAAc,EAC9B,iBAAiB,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,GAClD,YAAY,EAAE,CAuBhB"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/helpers.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAIxC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAExC,KAAK,YAAY,GAAG;IAClB,GAAG,EAAE,cAAc,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,EAAE,MAAM,IAAI,CAAA;CACtB,CAAA;AAED,KAAK,qBAAqB,GAAG;IAC3B,cAAc,EAAE,cAAc,CAAA;IAC9B,iBAAiB,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAA;IACnD,cAAc,CAAC,EAAE,CAAC,iBAAiB,EAAE,OAAO,KAAK,IAAI,CAAA;CACtD,CAAA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,cAAc,EACd,iBAAiB,EACjB,cAAc,GACf,EAAE,qBAAqB,GAAG,YAAY,EAAE,CA6BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"BasicPlusLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAIrE,eAAO,MAAM,eAAe,UAAW,mBAAmB,sBAUzD,CAAA"}
1
+ {"version":3,"file":"BasicPlusLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAMrE,eAAO,MAAM,eAAe,UAAW,mBAAmB,sBAezD,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAKjD,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,+BAA+B,EAAE,aAwB7C,CAAA;AAED,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,4BAA4B,EAAE,aAwB1C,CAAA"}
1
+ {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAGjD,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,+BAA+B,EAAE,aAkB7C,CAAA;AAED,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,4BAA4B,EAAE,aAkB1C,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAOjD,eAAO,MAAM,0BAA0B,EAAE,aA8BxC,CAAA;AAED,eAAO,MAAM,iCAAiC,EAAE,aAwB/C,CAAA;AAED,eAAO,MAAM,6BAA6B,EAAE,aA8B3C,CAAA;AAED,eAAO,MAAM,oCAAoC,EAAE,aAwBlD,CAAA"}
1
+ {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAOjD,eAAO,MAAM,0BAA0B,EAAE,aA8BxC,CAAA;AAED,eAAO,MAAM,iCAAiC,EAAE,aAsB/C,CAAA;AAED,eAAO,MAAM,6BAA6B,EAAE,aA8B3C,CAAA;AAED,eAAO,MAAM,oCAAoC,EAAE,aAsBlD,CAAA"}
@@ -9,6 +9,7 @@ type KeyboardProps = {
9
9
  color?: SelectOptionColor;
10
10
  isVisible?: boolean;
11
11
  isDisabled?: boolean;
12
+ showUnderlinedKeys?: boolean;
12
13
  disabledKeys?: KeyboardKey[];
13
14
  };
14
15
  export declare const Keyboard: ({ style, characterType, isVisible, ...props }: KeyboardProps) => React.JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"Keyboard.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/Keyboard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAA;AACzD,OAAO,EAAY,SAAS,EAAmC,SAAS,EAAE,MAAM,cAAc,CAAA;AAC9F,OAAO,EAAqB,iBAAiB,EAAW,MAAM,4BAA4B,CAAA;AAE1F,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAU9D,KAAK,aAAa,GAAG;IACnB,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,eAAO,MAAM,QAAQ,kDAA0D,aAAa,sBAuC3F,CAAA"}
1
+ {"version":3,"file":"Keyboard.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/Keyboard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAA;AACzD,OAAO,EAAY,SAAS,EAAmC,SAAS,EAAE,MAAM,cAAc,CAAA;AAC9F,OAAO,EAAqB,iBAAiB,EAAW,MAAM,4BAA4B,CAAA;AAC1F,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAW9D,KAAK,aAAa,GAAG;IACnB,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,eAAO,MAAM,QAAQ,kDAA0D,aAAa,sBAsC3F,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"KeysList.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/KeysList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,SAAS,EAAc,SAAS,EAAE,MAAM,cAAc,CAAA;AAC/D,OAAO,EACL,WAAW,EAEX,iBAAiB,EAElB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAIpE,KAAK,aAAa,GAAG;IACnB,IAAI,EAAE,WAAW,EAAE,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,KAAK,CAAC,EAAE;QACN,SAAS,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;QAChC,MAAM,CAAC,EAAE,WAAW,CAAA;KACrB,CAAA;CACF,GAAG,mBAAmB,CAAA;AAEvB,eAAO,MAAM,QAAQ,sEAOlB,aAAa,sBA2Bf,CAAA;AAED,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;CAoBjB,CAAA"}
1
+ {"version":3,"file":"KeysList.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/KeysList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,SAAS,EAAc,SAAS,EAAE,MAAM,cAAc,CAAA;AAC/D,OAAO,EACL,WAAW,EAEX,iBAAiB,EAElB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAIpE,KAAK,aAAa,GAAG;IACnB,IAAI,EAAE,WAAW,EAAE,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,KAAK,CAAC,EAAE;QACN,SAAS,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;QAChC,MAAM,CAAC,EAAE,WAAW,CAAA;KACrB,CAAA;CACF,GAAG,mBAAmB,CAAA;AAEvB,eAAO,MAAM,QAAQ,sEAOlB,aAAa,sBA4Bf,CAAA;AAED,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;CAoBjB,CAAA"}
@@ -6,9 +6,10 @@ type MapKeyToOptionProps = {
6
6
  onKeyPress?: (key: KeyboardKeyValue) => void;
7
7
  disabledKeys?: KeyboardKey[];
8
8
  optionStyle?: ButtonStyle;
9
+ isDisabled?: boolean;
9
10
  };
10
11
  export declare const IS_IOS_WEB: boolean;
11
- export declare const mapKeyToOption: ({ key, onKeyPress, disabledKeys, optionStyle, }: MapKeyToOptionProps) => {
12
+ export declare const mapKeyToOption: ({ key, onKeyPress, disabledKeys, optionStyle, isDisabled, }: MapKeyToOptionProps) => {
12
13
  disabled: boolean | undefined;
13
14
  onPress: (e: GestureResponderEvent) => void;
14
15
  key: string;
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAIxD,KAAK,mBAAmB,GAAG;IACzB,GAAG,EAAE,WAAW,CAAA;IAChB,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC5C,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,WAAW,CAAC,EAAE,WAAW,CAAA;CAC1B,CAAA;AAED,eAAO,MAAM,UAAU,SAA4B,CAAA;AAWnD,eAAO,MAAM,cAAc,oDAKxB,mBAAmB;;iBACK,qBAAqB;;;;;;;;;;;;;;;;;;;;mBAArB,qBAAqB;;;;;;;;;;;;;;;;;;CAmB/C,CAAA"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAIxD,KAAK,mBAAmB,GAAG;IACzB,GAAG,EAAE,WAAW,CAAA;IAChB,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC5C,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,WAAW,CAAC,EAAE,WAAW,CAAA;IACzB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,UAAU,SAA4B,CAAA;AAWnD,eAAO,MAAM,cAAc,gEAMxB,mBAAmB;;iBACK,qBAAqB;;;;;;;;;;;;;;;;;;;;mBAArB,qBAAqB;;;;;;;;;;;;;;;;;;CAmB/C,CAAA"}
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { StyleProp, ViewStyle } from 'react-native';
3
+ import { SelectOptionColor } from '@magmamath/react-native-ui';
4
+ import { KeyboardKey, KeyboardKeyValue } from '../types/types';
5
+ type LayoutProps = {
6
+ onKeyPress: (key: KeyboardKeyValue) => void;
7
+ characterType?: number;
8
+ style?: StyleProp<ViewStyle>;
9
+ color?: SelectOptionColor;
10
+ isVisible?: boolean;
11
+ isDisabled?: boolean;
12
+ showUnderlinedKeys?: boolean;
13
+ disabledKeys?: KeyboardKey[];
14
+ };
15
+ export declare const MainLayout: ({ style, characterType, showUnderlinedKeys, ...props }: LayoutProps) => React.JSX.Element;
16
+ export {};
17
+ //# sourceMappingURL=MainLayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MainLayout.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/MainLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+C,MAAM,OAAO,CAAA;AACnE,OAAO,EAAY,SAAS,EAAyC,SAAS,EAAE,MAAM,cAAc,CAAA;AACpG,OAAO,EAAE,iBAAiB,EAAa,MAAM,4BAA4B,CAAA;AAEzE,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAI9D,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,eAAO,MAAM,UAAU,2DAA4D,WAAW,sBA4C7F,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { KeyboardLayoutProps } from '../../types/types';
3
+ export declare const UnderlinedLayout: (props: KeyboardLayoutProps) => React.JSX.Element;
4
+ //# sourceMappingURL=UnderlinedLayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnderlinedLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAIrE,eAAO,MAAM,gBAAgB,UAAW,mBAAmB,sBAK1D,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { KeyboardGroup } from '../../types/types';
2
+ export declare const MATH_ENTRY_UNDERLINED_KEYBOARD_GROUP: KeyboardGroup;
3
+ //# sourceMappingURL=keyboardGroups.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnderlinedLayout/keyboardGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAIjD,eAAO,MAAM,oCAAoC,EAAE,aAOlD,CAAA"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { KeyboardLayoutProps } from '../../types/types';
3
- export declare const UnitsLayout: (props: KeyboardLayoutProps) => React.JSX.Element;
3
+ export declare const UnitsLayout: ({ onLayoutChange, ...props }: KeyboardLayoutProps) => React.JSX.Element;
4
4
  //# sourceMappingURL=UnitsLayout.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"UnitsLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnitsLayout/UnitsLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAA;AAMvC,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAQrE,eAAO,MAAM,WAAW,UAAW,mBAAmB,sBAwCrD,CAAA"}
1
+ {"version":3,"file":"UnitsLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnitsLayout/UnitsLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAA;AAMvC,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAQrE,eAAO,MAAM,WAAW,iCAAkC,mBAAmB,sBAyC5E,CAAA"}
@@ -4,8 +4,9 @@ type UseLayoutSelectOptionsProps = {
4
4
  activeTabKey: KeyboardUnitsGroupType;
5
5
  selectedLayout: SelectedLayout;
6
6
  setSelectedLayout: (layout: SelectedLayout) => void;
7
+ onLayoutChange?: (isSecondaryLayout: boolean) => void;
7
8
  };
8
- export declare const getSelectOptions: ({ activeTabKey, selectedLayout, setSelectedLayout, }: UseLayoutSelectOptionsProps) => {
9
+ export declare const getSelectOptions: ({ activeTabKey, selectedLayout, setSelectedLayout, onLayoutChange, }: UseLayoutSelectOptionsProps) => {
9
10
  key: SelectedLayout;
10
11
  title: React.JSX.Element;
11
12
  onPressIn: () => void;
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnitsLayout/helpers.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,sBAAsB,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAGhE,KAAK,2BAA2B,GAAG;IACjC,YAAY,EAAE,sBAAsB,CAAA;IACpC,cAAc,EAAE,cAAc,CAAA;IAC9B,iBAAiB,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAA;CACpD,CAAA;AAED,eAAO,MAAM,gBAAgB,yDAI1B,2BAA2B;;;;GA2B7B,CAAA"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnitsLayout/helpers.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,sBAAsB,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAGhE,KAAK,2BAA2B,GAAG;IACjC,YAAY,EAAE,sBAAsB,CAAA;IACpC,cAAc,EAAE,cAAc,CAAA;IAC9B,iBAAiB,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAA;IACnD,cAAc,CAAC,EAAE,CAAC,iBAAiB,EAAE,OAAO,KAAK,IAAI,CAAA;CACtD,CAAA;AAED,eAAO,MAAM,gBAAgB,yEAK1B,2BAA2B;;;;GAiC7B,CAAA"}
@@ -8,10 +8,6 @@ export declare const LAYOUT_STYLES_CONFIG: {
8
8
  readonly borderColor: "transparent";
9
9
  readonly paddingLeft: 32;
10
10
  };
11
- readonly ALGEBRA: {
12
- readonly borderColor: "#f2f2f4";
13
- readonly paddingLeft: 8;
14
- };
15
11
  };
16
12
  export declare const getLayoutConfigStyles: (characterType?: number, isMobile?: boolean) => {
17
13
  readonly borderColor: "#f2f2f4";
@@ -19,9 +15,6 @@ export declare const getLayoutConfigStyles: (characterType?: number, isMobile?:
19
15
  } | {
20
16
  readonly borderColor: "transparent";
21
17
  readonly paddingLeft: 32;
22
- } | {
23
- readonly borderColor: "#f2f2f4";
24
- readonly paddingLeft: 8;
25
18
  };
26
19
  export declare const slideInAnimationSettings: {
27
20
  toValue: number;
@@ -1 +1 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,uBAAuB,MAAM,CAAA;AAE1C,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;CAOvB,CAAA;AAEV,eAAO,MAAM,qBAAqB,mBAAoB,MAAM,aAAa,OAAO;;;;;;;;;CAW/E,CAAA;AAED,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAA;AAED,eAAO,MAAM,yBAAyB;;;;CAIrC,CAAA"}
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,uBAAuB,MAAM,CAAA;AAE1C,eAAO,MAAM,oBAAoB;;;;;;;;;CAMvB,CAAA;AAEV,eAAO,MAAM,qBAAqB,mBAAoB,MAAM,aAAa,OAAO;;;;;;CAQ/E,CAAA;AAED,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAA;AAED,eAAO,MAAM,yBAAyB;;;;CAIrC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardGroupsByLocale.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/constants/keyboardGroupsByLocale.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAsC5D,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAA;AAEpD,OAAO,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAiC5F,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,YAAY,EAAE,aAAa,CAAC,CAyBzF,CAAA;AACD,eAAO,MAAM,+BAA+B,EAAE,MAAM,CAClD,MAAM,EACN,MAAM,CAAC,sBAAsB,EAAE,kBAAkB,CAAC,CAkBnD,CAAA"}
1
+ {"version":3,"file":"keyboardGroupsByLocale.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/constants/keyboardGroupsByLocale.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAsC5D,OAAO,EAAE,MAAM,EAAE,MAAM,6BAA6B,CAAA;AAEpD,OAAO,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAmC5F,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,YAAY,EAAE,aAAa,CAAC,CAyBzF,CAAA;AACD,eAAO,MAAM,+BAA+B,EAAE,MAAM,CAClD,MAAM,EACN,MAAM,CAAC,sBAAsB,EAAE,kBAAkB,CAAC,CAkBnD,CAAA"}
@@ -1,7 +1,7 @@
1
1
  import { MyScriptMathCharacterTypes } from '../../../types/characterTypes';
2
2
  export declare const KEYBOARD_LAYOUTS: {
3
3
  AlgebraAdvanced: {
4
- Component: (props: import("../types/types").KeyboardLayoutProps) => import("react").JSX.Element;
4
+ Component: ({ onLayoutChange, ...props }: import("../types/types").KeyboardLayoutProps) => import("react").JSX.Element;
5
5
  characterTypes: MyScriptMathCharacterTypes[];
6
6
  };
7
7
  Basic: {
@@ -21,7 +21,7 @@ export declare const KEYBOARD_LAYOUTS: {
21
21
  characterTypes: MyScriptMathCharacterTypes[];
22
22
  };
23
23
  BasicUnits: {
24
- Component: (props: import("../types/types").KeyboardLayoutProps) => import("react").JSX.Element;
24
+ Component: ({ onLayoutChange, ...props }: import("../types/types").KeyboardLayoutProps) => import("react").JSX.Element;
25
25
  characterTypes: MyScriptMathCharacterTypes[];
26
26
  };
27
27
  BasicPlusPlus: {
@@ -222,5 +222,23 @@ export declare const MATH_BASIC_OPERATORS: {
222
222
  mathliveValue: string;
223
223
  katexValue: string;
224
224
  };
225
+ UNDERLINED_TEN: {
226
+ icon: React.JSX.Element;
227
+ mathliveValue: string;
228
+ katexValue: string;
229
+ spreadsheetValue: string;
230
+ };
231
+ UNDERLINED_ONE: {
232
+ icon: React.JSX.Element;
233
+ mathliveValue: string;
234
+ katexValue: string;
235
+ spreadsheetValue: string;
236
+ };
237
+ UNDERLINED_U: {
238
+ icon: React.JSX.Element;
239
+ mathliveValue: string;
240
+ katexValue: string;
241
+ spreadsheetValue: string;
242
+ };
225
243
  };
226
244
  //# sourceMappingURL=basicOperators.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"basicOperators.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/types/MathKeysGroups/basicOperators.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AA6CzB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+N/B,CAAA"}
1
+ {"version":3,"file":"basicOperators.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/types/MathKeysGroups/basicOperators.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAgDzB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiP/B,CAAA"}
@@ -26,6 +26,7 @@ export declare enum MathEntryKeyboardGroupId {
26
26
  TIME_US = "math-entry-time-us",
27
27
  CURRENCY_SW = "math-entry-currency-sw",
28
28
  CURRENCY_UK = "math-entry-currency-uk",
29
- CURRENCY_US = "math-entry-currency-us"
29
+ CURRENCY_US = "math-entry-currency-us",
30
+ UNDERLINED = "math-entry-underlined"
30
31
  }
31
32
  //# sourceMappingURL=keyboardGroupIds.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardGroupIds.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/types/keyboardGroupIds.ts"],"names":[],"mappings":"AAAA,oBAAY,wBAAwB;IAClC,eAAe,+BAA+B;IAC9C,sBAAsB,sCAAsC;IAC5D,kBAAkB,kCAAkC;IACpD,yBAAyB,yCAAyC;IAClE,aAAa,6BAA6B;IAC1C,oBAAoB,oCAAoC;IACxD,aAAa,6BAA6B;IAC1C,iBAAiB,iCAAiC;IAClD,OAAO,uBAAuB;IAC9B,UAAU,0BAA0B;IACpC,UAAU,0BAA0B;IACpC,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,aAAa,6BAA6B;IAC1C,aAAa,6BAA6B;IAC1C,aAAa,6BAA6B;IAC1C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,KAAK,qBAAqB;IAC1B,QAAQ,wBAAwB;IAChC,OAAO,uBAAuB;IAC9B,OAAO,uBAAuB;IAC9B,WAAW,2BAA2B;IACtC,WAAW,2BAA2B;IACtC,WAAW,2BAA2B;CACvC"}
1
+ {"version":3,"file":"keyboardGroupIds.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/types/keyboardGroupIds.ts"],"names":[],"mappings":"AAAA,oBAAY,wBAAwB;IAClC,eAAe,+BAA+B;IAC9C,sBAAsB,sCAAsC;IAC5D,kBAAkB,kCAAkC;IACpD,yBAAyB,yCAAyC;IAClE,aAAa,6BAA6B;IAC1C,oBAAoB,oCAAoC;IACxD,aAAa,6BAA6B;IAC1C,iBAAiB,iCAAiC;IAClD,OAAO,uBAAuB;IAC9B,UAAU,0BAA0B;IACpC,UAAU,0BAA0B;IACpC,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,aAAa,6BAA6B;IAC1C,aAAa,6BAA6B;IAC1C,aAAa,6BAA6B;IAC1C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,eAAe,+BAA+B;IAC9C,KAAK,qBAAqB;IAC1B,QAAQ,wBAAwB;IAChC,OAAO,uBAAuB;IAC9B,OAAO,uBAAuB;IAC9B,WAAW,2BAA2B;IACtC,WAAW,2BAA2B;IACtC,WAAW,2BAA2B;IACtC,UAAU,0BAA0B;CACrC"}
@@ -11,7 +11,8 @@ export declare const enum KeyboardType {
11
11
  BasicUnits = "BasicUnits",
12
12
  BasicPlusPlus = "BasicPlusPlus",
13
13
  BasicPlusPlusMobile = "BasicPlusPlusMobile",
14
- Numpad = "Numpad"
14
+ Numpad = "Numpad",
15
+ Underlined = "Underlined"
15
16
  }
16
17
  export type KeyboardKey = {
17
18
  katexValue: string;
@@ -39,6 +40,7 @@ export type KeyboardGroup = {
39
40
  };
40
41
  export type KeyboardLayoutProps = {
41
42
  onKeyPress: (key: KeyboardKeyValue) => void;
43
+ onLayoutChange?: (isSecondaryLayout: boolean) => void;
42
44
  color?: SelectOptionColor;
43
45
  isDisabled?: boolean;
44
46
  disabledKeys?: KeyboardKey[];
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/types/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAA;AAEpD,0BAAkB,YAAY;IAC5B,eAAe,oBAAoB;IACnC,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,eAAe,oBAAoB;IACnC,SAAS,cAAc;IACvB,aAAa,kBAAkB;IAC/B,UAAU,eAAe;IACzB,aAAa,kBAAkB;IAC/B,mBAAmB,wBAAwB;IAC3C,MAAM,WAAW;CAClB;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,UAAU,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,WAAW,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,qBAAqB,CAAA;IAC5B,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAA;IACV,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,WAAW,EAAE,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG;IAChC,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,IAAI;KAC3D,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,WAAW;CACpC,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/types/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AACjC,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAA;AAEpD,0BAAkB,YAAY;IAC5B,eAAe,oBAAoB;IACnC,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,eAAe,oBAAoB;IACnC,SAAS,cAAc;IACvB,aAAa,kBAAkB;IAC/B,UAAU,eAAe;IACzB,aAAa,kBAAkB;IAC/B,mBAAmB,wBAAwB;IAC3C,MAAM,WAAW;IACjB,UAAU,eAAe;CAC1B;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,UAAU,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,WAAW,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,qBAAqB,CAAA;IAC5B,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAA;IACV,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,WAAW,EAAE,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG;IAChC,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,cAAc,CAAC,EAAE,CAAC,iBAAiB,EAAE,OAAO,KAAK,IAAI,CAAA;IACrD,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,IAAI;KAC3D,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,WAAW;CACpC,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '../../icon.types';
3
+ export declare const UnderlinedOneIcon: ({ size, color }: IconProps) => React.JSX.Element;
4
+ //# sourceMappingURL=UnderlinedOneIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnderlinedOneIcon.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/icons/keyboard/UnderlinedOneIcon/UnderlinedOneIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAG5C,eAAO,MAAM,iBAAiB,oBAA0B,SAAS,sBAYhE,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '../../icon.types';
3
+ export declare const UnderlinedTenIcon: ({ size, color }: IconProps) => React.JSX.Element;
4
+ //# sourceMappingURL=UnderlinedTenIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnderlinedTenIcon.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/icons/keyboard/UnderlinedTenIcon/UnderlinedTenIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAG5C,eAAO,MAAM,iBAAiB,oBAA0B,SAAS,sBAehE,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '../../icon.types';
3
+ export declare const UnderlinedUIcon: ({ size, color }: IconProps) => React.JSX.Element;
4
+ //# sourceMappingURL=UnderlinedUIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnderlinedUIcon.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/icons/keyboard/UnderlinedUIcon/UnderlinedUIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAG5C,eAAO,MAAM,eAAe,oBAA0B,SAAS,sBAe9D,CAAA"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { KeyboardLayoutProps } from '../../types/types';
3
- export declare const AlgebraLayout: (props: KeyboardLayoutProps) => React.JSX.Element;
3
+ export declare const AlgebraLayout: ({ onLayoutChange, ...props }: KeyboardLayoutProps) => React.JSX.Element;
4
4
  //# sourceMappingURL=AlgebraLayout.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AlgebraLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAKhD,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAMrE,eAAO,MAAM,aAAa,UAAW,mBAAmB,sBA2CvD,CAAA"}
1
+ {"version":3,"file":"AlgebraLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAA;AAKhD,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAMrE,eAAO,MAAM,aAAa,iCAAkC,mBAAmB,sBA2C9E,CAAA"}
@@ -5,6 +5,11 @@ type LayoutOption = {
5
5
  title: ReactNode;
6
6
  onPressIn: () => void;
7
7
  };
8
- export declare function getSelectOptions(selectedLayout: SelectedLayout, setSelectedLayout: (layout: SelectedLayout) => void): LayoutOption[];
8
+ type GetSelectOptionsProps = {
9
+ selectedLayout: SelectedLayout;
10
+ setSelectedLayout: (layout: SelectedLayout) => void;
11
+ onLayoutChange?: (isSecondaryLayout: boolean) => void;
12
+ };
13
+ export declare function getSelectOptions({ selectedLayout, setSelectedLayout, onLayoutChange, }: GetSelectOptionsProps): LayoutOption[];
9
14
  export {};
10
15
  //# sourceMappingURL=helpers.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/helpers.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAIxC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAExC,KAAK,YAAY,GAAG;IAClB,GAAG,EAAE,cAAc,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,EAAE,MAAM,IAAI,CAAA;CACtB,CAAA;AAED,wBAAgB,gBAAgB,CAC9B,cAAc,EAAE,cAAc,EAC9B,iBAAiB,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,GAClD,YAAY,EAAE,CAuBhB"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/AlgebraLayout/helpers.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAIxC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAExC,KAAK,YAAY,GAAG;IAClB,GAAG,EAAE,cAAc,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,SAAS,EAAE,MAAM,IAAI,CAAA;CACtB,CAAA;AAED,KAAK,qBAAqB,GAAG;IAC3B,cAAc,EAAE,cAAc,CAAA;IAC9B,iBAAiB,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAA;IACnD,cAAc,CAAC,EAAE,CAAC,iBAAiB,EAAE,OAAO,KAAK,IAAI,CAAA;CACtD,CAAA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,cAAc,EACd,iBAAiB,EACjB,cAAc,GACf,EAAE,qBAAqB,GAAG,YAAY,EAAE,CA6BxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"BasicPlusLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAIrE,eAAO,MAAM,eAAe,UAAW,mBAAmB,sBAUzD,CAAA"}
1
+ {"version":3,"file":"BasicPlusLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/BasicPlusLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAMrE,eAAO,MAAM,eAAe,UAAW,mBAAmB,sBAezD,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAKjD,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,+BAA+B,EAAE,aAwB7C,CAAA;AAED,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,4BAA4B,EAAE,aAwB1C,CAAA"}
1
+ {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAGjD,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,+BAA+B,EAAE,aAkB7C,CAAA;AAED,eAAO,MAAM,wBAAwB,EAAE,aAoBtC,CAAA;AAED,eAAO,MAAM,4BAA4B,EAAE,aAkB1C,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAOjD,eAAO,MAAM,0BAA0B,EAAE,aA8BxC,CAAA;AAED,eAAO,MAAM,iCAAiC,EAAE,aAwB/C,CAAA;AAED,eAAO,MAAM,6BAA6B,EAAE,aA8B3C,CAAA;AAED,eAAO,MAAM,oCAAoC,EAAE,aAwBlD,CAAA"}
1
+ {"version":3,"file":"keyboardGroups.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/BasicPlusPlusLayout/keyboardGroups.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAOjD,eAAO,MAAM,0BAA0B,EAAE,aA8BxC,CAAA;AAED,eAAO,MAAM,iCAAiC,EAAE,aAsB/C,CAAA;AAED,eAAO,MAAM,6BAA6B,EAAE,aA8B3C,CAAA;AAED,eAAO,MAAM,oCAAoC,EAAE,aAsBlD,CAAA"}
@@ -9,6 +9,7 @@ type KeyboardProps = {
9
9
  color?: SelectOptionColor;
10
10
  isVisible?: boolean;
11
11
  isDisabled?: boolean;
12
+ showUnderlinedKeys?: boolean;
12
13
  disabledKeys?: KeyboardKey[];
13
14
  };
14
15
  export declare const Keyboard: ({ style, characterType, isVisible, ...props }: KeyboardProps) => React.JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"Keyboard.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/Keyboard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAA;AACzD,OAAO,EAAY,SAAS,EAAmC,SAAS,EAAE,MAAM,cAAc,CAAA;AAC9F,OAAO,EAAqB,iBAAiB,EAAW,MAAM,4BAA4B,CAAA;AAE1F,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAU9D,KAAK,aAAa,GAAG;IACnB,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,eAAO,MAAM,QAAQ,kDAA0D,aAAa,sBAuC3F,CAAA"}
1
+ {"version":3,"file":"Keyboard.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/Keyboard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAA;AACzD,OAAO,EAAY,SAAS,EAAmC,SAAS,EAAE,MAAM,cAAc,CAAA;AAC9F,OAAO,EAAqB,iBAAiB,EAAW,MAAM,4BAA4B,CAAA;AAC1F,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAW9D,KAAK,aAAa,GAAG;IACnB,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,eAAO,MAAM,QAAQ,kDAA0D,aAAa,sBAsC3F,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"KeysList.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/KeysList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,SAAS,EAAc,SAAS,EAAE,MAAM,cAAc,CAAA;AAC/D,OAAO,EACL,WAAW,EAEX,iBAAiB,EAElB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAIpE,KAAK,aAAa,GAAG;IACnB,IAAI,EAAE,WAAW,EAAE,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,KAAK,CAAC,EAAE;QACN,SAAS,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;QAChC,MAAM,CAAC,EAAE,WAAW,CAAA;KACrB,CAAA;CACF,GAAG,mBAAmB,CAAA;AAEvB,eAAO,MAAM,QAAQ,sEAOlB,aAAa,sBA2Bf,CAAA;AAED,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;CAoBjB,CAAA"}
1
+ {"version":3,"file":"KeysList.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/KeysList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,SAAS,EAAc,SAAS,EAAE,MAAM,cAAc,CAAA;AAC/D,OAAO,EACL,WAAW,EAEX,iBAAiB,EAElB,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAA;AAIpE,KAAK,aAAa,GAAG;IACnB,IAAI,EAAE,WAAW,EAAE,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,KAAK,CAAC,EAAE;QACN,SAAS,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;QAChC,MAAM,CAAC,EAAE,WAAW,CAAA;KACrB,CAAA;CACF,GAAG,mBAAmB,CAAA;AAEvB,eAAO,MAAM,QAAQ,sEAOlB,aAAa,sBA4Bf,CAAA;AAED,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;CAoBjB,CAAA"}
@@ -6,9 +6,10 @@ type MapKeyToOptionProps = {
6
6
  onKeyPress?: (key: KeyboardKeyValue) => void;
7
7
  disabledKeys?: KeyboardKey[];
8
8
  optionStyle?: ButtonStyle;
9
+ isDisabled?: boolean;
9
10
  };
10
11
  export declare const IS_IOS_WEB: boolean;
11
- export declare const mapKeyToOption: ({ key, onKeyPress, disabledKeys, optionStyle, }: MapKeyToOptionProps) => {
12
+ export declare const mapKeyToOption: ({ key, onKeyPress, disabledKeys, optionStyle, isDisabled, }: MapKeyToOptionProps) => {
12
13
  disabled: boolean | undefined;
13
14
  onPress: (e: GestureResponderEvent) => void;
14
15
  key: string;
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAIxD,KAAK,mBAAmB,GAAG;IACzB,GAAG,EAAE,WAAW,CAAA;IAChB,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC5C,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,WAAW,CAAC,EAAE,WAAW,CAAA;CAC1B,CAAA;AAED,eAAO,MAAM,UAAU,SAA4B,CAAA;AAWnD,eAAO,MAAM,cAAc,oDAKxB,mBAAmB;;iBACK,qBAAqB;;;;;;;;;;;;;;;;;;;;mBAArB,qBAAqB;;;;;;;;;;;;;;;;;;CAmB/C,CAAA"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/KeysList/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAIxD,KAAK,mBAAmB,GAAG;IACzB,GAAG,EAAE,WAAW,CAAA;IAChB,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC5C,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;IAC5B,WAAW,CAAC,EAAE,WAAW,CAAA;IACzB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,UAAU,SAA4B,CAAA;AAWnD,eAAO,MAAM,cAAc,gEAMxB,mBAAmB;;iBACK,qBAAqB;;;;;;;;;;;;;;;;;;;;mBAArB,qBAAqB;;;;;;;;;;;;;;;;;;CAmB/C,CAAA"}
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { StyleProp, ViewStyle } from 'react-native';
3
+ import { SelectOptionColor } from '@magmamath/react-native-ui';
4
+ import { KeyboardKey, KeyboardKeyValue } from '../types/types';
5
+ type LayoutProps = {
6
+ onKeyPress: (key: KeyboardKeyValue) => void;
7
+ characterType?: number;
8
+ style?: StyleProp<ViewStyle>;
9
+ color?: SelectOptionColor;
10
+ isVisible?: boolean;
11
+ isDisabled?: boolean;
12
+ showUnderlinedKeys?: boolean;
13
+ disabledKeys?: KeyboardKey[];
14
+ };
15
+ export declare const MainLayout: ({ style, characterType, showUnderlinedKeys, ...props }: LayoutProps) => React.JSX.Element;
16
+ export {};
17
+ //# sourceMappingURL=MainLayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MainLayout.d.ts","sourceRoot":"","sources":["../../../../../../src/features/keyboard/components/MainLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+C,MAAM,OAAO,CAAA;AACnE,OAAO,EAAY,SAAS,EAAyC,SAAS,EAAE,MAAM,cAAc,CAAA;AACpG,OAAO,EAAE,iBAAiB,EAAa,MAAM,4BAA4B,CAAA;AAEzE,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAI9D,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAC5B,KAAK,CAAC,EAAE,iBAAiB,CAAA;IACzB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,YAAY,CAAC,EAAE,WAAW,EAAE,CAAA;CAC7B,CAAA;AAED,eAAO,MAAM,UAAU,2DAA4D,WAAW,sBA4C7F,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { KeyboardLayoutProps } from '../../types/types';
3
+ export declare const UnderlinedLayout: (props: KeyboardLayoutProps) => React.JSX.Element;
4
+ //# sourceMappingURL=UnderlinedLayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnderlinedLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/keyboard/components/UnderlinedLayout/UnderlinedLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,EAAE,mBAAmB,EAAgB,MAAM,mBAAmB,CAAA;AAIrE,eAAO,MAAM,gBAAgB,UAAW,mBAAmB,sBAK1D,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { KeyboardGroup } from '../../types/types';
2
+ export declare const MATH_ENTRY_UNDERLINED_KEYBOARD_GROUP: KeyboardGroup;
3
+ //# sourceMappingURL=keyboardGroups.d.ts.map