@khanacademy/math-input 2.0.0 → 4.0.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 (264) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/dist/components/input/__tests__/test-math-wrapper.d.ts +1 -1
  3. package/dist/components/input/__tests__/test-math-wrapper.js.flow +1 -1
  4. package/dist/components/input/key-handlers/handle-arrow.d.ts +3 -0
  5. package/dist/components/input/key-handlers/handle-arrow.js.flow +12 -0
  6. package/dist/components/input/key-handlers/handle-backspace.d.ts +7 -0
  7. package/dist/components/input/key-handlers/handle-backspace.js.flow +14 -0
  8. package/dist/components/input/key-handlers/handle-exponent.d.ts +3 -0
  9. package/dist/components/input/key-handlers/handle-exponent.js.flow +12 -0
  10. package/dist/components/input/key-handlers/handle-jump-out.d.ts +7 -0
  11. package/dist/components/input/key-handlers/handle-jump-out.js.flow +14 -0
  12. package/dist/components/input/math-input.d.ts +1 -1
  13. package/dist/components/input/math-input.js.flow +1 -1
  14. package/dist/components/input/math-wrapper.d.ts +7 -78
  15. package/dist/components/input/math-wrapper.js.flow +16 -78
  16. package/dist/components/input/mathquill-helpers.d.ts +46 -0
  17. package/dist/components/input/mathquill-helpers.js.flow +56 -0
  18. package/dist/components/input/mathquill-instance.d.ts +3 -0
  19. package/dist/components/input/mathquill-instance.js.flow +9 -0
  20. package/dist/components/input/mathquill-types.d.ts +25 -0
  21. package/dist/components/input/mathquill-types.js.flow +34 -0
  22. package/dist/components/key-translator.d.ts +4 -0
  23. package/dist/components/key-translator.js.flow +10 -0
  24. package/dist/components/keypad/button-assets.d.ts +2 -2
  25. package/dist/components/keypad/button-assets.js.flow +2 -2
  26. package/dist/components/keypad/button.d.ts +1 -2
  27. package/dist/components/keypad/button.js.flow +1 -1
  28. package/dist/components/keypad/{pre-algebra-page.d.ts → geometry-page/index.d.ts} +1 -1
  29. package/dist/components/keypad/{pre-algebra-page.js.flow → geometry-page/index.js.flow} +1 -1
  30. package/dist/components/keypad/index.d.ts +5 -4
  31. package/dist/components/keypad/index.js.flow +9 -4
  32. package/dist/components/keypad/keypad-page-items.d.ts +9 -3
  33. package/dist/components/keypad/keypad-page-items.js.flow +9 -3
  34. package/dist/components/keypad/{numeric-input-page.d.ts → numbers-page/index.d.ts} +3 -2
  35. package/dist/components/keypad/numbers-page/index.js.flow +17 -0
  36. package/dist/components/keypad/numbers-page/types.d.ts +4 -0
  37. package/dist/components/keypad/numbers-page/types.js.flow +10 -0
  38. package/dist/components/keypad/operators-page/advanced-relations-buttons.d.ts +7 -0
  39. package/dist/components/keypad/{numeric-input-page.js.flow → operators-page/advanced-relations-buttons.js.flow} +3 -4
  40. package/dist/components/keypad/operators-page/basic-relations-buttons.d.ts +7 -0
  41. package/dist/components/keypad/{trigonometry-page.js.flow → operators-page/basic-relations-buttons.js.flow} +3 -6
  42. package/dist/components/keypad/operators-page/index.d.ts +9 -0
  43. package/dist/components/keypad/operators-page/index.js.flow +17 -0
  44. package/dist/components/keypad/operators-page/logarithms-buttons.d.ts +7 -0
  45. package/dist/components/keypad/operators-page/logarithms-buttons.js.flow +12 -0
  46. package/dist/components/keypad/operators-page/pre-algebra-buttons.d.ts +7 -0
  47. package/dist/components/keypad/operators-page/pre-algebra-buttons.js.flow +12 -0
  48. package/dist/components/keypad/operators-page/types.d.ts +6 -0
  49. package/dist/components/keypad/operators-page/types.js.flow +12 -0
  50. package/dist/components/{compute-layout-parameters.d.ts → keypad-legacy/compute-layout-parameters.d.ts} +1 -1
  51. package/dist/components/{compute-layout-parameters.js.flow → keypad-legacy/compute-layout-parameters.js.flow} +1 -1
  52. package/dist/components/{echo-manager.d.ts → keypad-legacy/echo-manager.d.ts} +2 -11
  53. package/dist/components/{echo-manager.js.flow → keypad-legacy/echo-manager.js.flow} +2 -11
  54. package/dist/components/{expression-keypad.d.ts → keypad-legacy/expression-keypad.d.ts} +3 -4
  55. package/dist/components/{expression-keypad.js.flow → keypad-legacy/expression-keypad.js.flow} +3 -4
  56. package/dist/components/{fraction-keypad.d.ts → keypad-legacy/fraction-keypad.d.ts} +2 -2
  57. package/dist/components/{fraction-keypad.js.flow → keypad-legacy/fraction-keypad.js.flow} +2 -2
  58. package/dist/components/{gesture-manager.d.ts → keypad-legacy/gesture-manager.d.ts} +22 -10
  59. package/dist/components/{gesture-manager.js.flow → keypad-legacy/gesture-manager.js.flow} +28 -13
  60. package/dist/components/{gesture-state-machine.d.ts → keypad-legacy/gesture-state-machine.d.ts} +9 -9
  61. package/dist/components/{gesture-state-machine.js.flow → keypad-legacy/gesture-state-machine.js.flow} +10 -10
  62. package/dist/components/{icon.d.ts → keypad-legacy/icon.d.ts} +1 -1
  63. package/dist/components/{icon.js.flow → keypad-legacy/icon.js.flow} +1 -1
  64. package/dist/components/{keypad-button.d.ts → keypad-legacy/keypad-button.d.ts} +6 -6
  65. package/dist/components/{keypad-button.js.flow → keypad-legacy/keypad-button.js.flow} +7 -7
  66. package/dist/components/{keypad-container.d.ts → keypad-legacy/keypad-container.d.ts} +2 -2
  67. package/dist/components/{keypad-container.js.flow → keypad-legacy/keypad-container.js.flow} +3 -3
  68. package/dist/components/{keypad.d.ts → keypad-legacy/keypad.d.ts} +3 -3
  69. package/dist/components/{keypad.js.flow → keypad-legacy/keypad.js.flow} +3 -3
  70. package/dist/components/{multi-symbol-grid.d.ts → keypad-legacy/multi-symbol-grid.d.ts} +1 -1
  71. package/dist/components/{multi-symbol-grid.js.flow → keypad-legacy/multi-symbol-grid.js.flow} +1 -1
  72. package/dist/components/{multi-symbol-popover.d.ts → keypad-legacy/multi-symbol-popover.d.ts} +1 -1
  73. package/dist/components/{multi-symbol-popover.js.flow → keypad-legacy/multi-symbol-popover.js.flow} +1 -1
  74. package/dist/components/{node-manager.d.ts → keypad-legacy/node-manager.d.ts} +3 -4
  75. package/dist/components/{node-manager.js.flow → keypad-legacy/node-manager.js.flow} +3 -5
  76. package/dist/components/{popover-manager.d.ts → keypad-legacy/popover-manager.d.ts} +1 -1
  77. package/dist/components/{popover-manager.js.flow → keypad-legacy/popover-manager.js.flow} +1 -1
  78. package/dist/components/{popover-state-machine.d.ts → keypad-legacy/popover-state-machine.d.ts} +1 -1
  79. package/dist/components/{popover-state-machine.js.flow → keypad-legacy/popover-state-machine.js.flow} +1 -1
  80. package/dist/components/{provided-keypad.d.ts → keypad-legacy/provided-keypad.d.ts} +1 -1
  81. package/dist/components/{provided-keypad.js.flow → keypad-legacy/provided-keypad.js.flow} +1 -1
  82. package/dist/{store → components/keypad-legacy/store}/actions.d.ts +6 -17
  83. package/dist/{store → components/keypad-legacy/store}/actions.js.flow +7 -22
  84. package/dist/{store → components/keypad-legacy/store}/index.d.ts +0 -1
  85. package/dist/{store → components/keypad-legacy/store}/index.js.flow +0 -1
  86. package/dist/components/keypad-legacy/store/shared.d.ts +7 -0
  87. package/dist/components/keypad-legacy/store/shared.js.flow +14 -0
  88. package/dist/{store → components/keypad-legacy/store}/types.d.ts +5 -15
  89. package/dist/{store → components/keypad-legacy/store}/types.js.flow +5 -15
  90. package/dist/components/keypad-legacy/touchable-keypad-button.d.ts +37 -0
  91. package/dist/components/keypad-legacy/touchable-keypad-button.js.flow +59 -0
  92. package/dist/components/{two-page-keypad.d.ts → keypad-legacy/two-page-keypad.d.ts} +0 -1
  93. package/dist/components/{two-page-keypad.js.flow → keypad-legacy/two-page-keypad.js.flow} +0 -1
  94. package/dist/data/key-configs.d.ts +4 -5
  95. package/dist/data/key-configs.js.flow +3 -6
  96. package/dist/data/keys.d.ts +2 -56
  97. package/dist/data/keys.js.flow +116 -57
  98. package/dist/enums.d.ts +2 -9
  99. package/dist/enums.js.flow +2 -11
  100. package/dist/es/index.js +6393 -5116
  101. package/dist/es/index.js.map +1 -1
  102. package/dist/index.d.ts +5 -3
  103. package/dist/index.js +6868 -5330
  104. package/dist/index.js.flow +6 -3
  105. package/dist/index.js.map +1 -1
  106. package/dist/strings.js +26 -10
  107. package/dist/types.d.ts +19 -17
  108. package/dist/types.js.flow +28 -23
  109. package/package.json +1 -1
  110. package/src/components/input/__tests__/context-tracking.test.ts +43 -44
  111. package/src/components/input/__tests__/mathquill.test.ts +133 -135
  112. package/src/components/input/key-handlers/handle-arrow.ts +70 -0
  113. package/src/components/input/key-handlers/handle-backspace.ts +275 -0
  114. package/src/components/input/key-handlers/handle-exponent.ts +52 -0
  115. package/src/components/input/key-handlers/handle-jump-out.ts +103 -0
  116. package/src/components/input/math-input.tsx +12 -13
  117. package/src/components/input/math-wrapper.ts +88 -837
  118. package/src/components/input/mathquill-helpers.ts +268 -0
  119. package/src/components/input/mathquill-instance.ts +5 -0
  120. package/src/components/input/mathquill-types.ts +55 -0
  121. package/src/components/key-translator.ts +209 -0
  122. package/src/components/keypad/button-assets.tsx +452 -116
  123. package/src/components/keypad/button.stories.tsx +61 -13
  124. package/src/components/keypad/button.tsx +1 -1
  125. package/src/components/keypad/{trigonometry-page.tsx → geometry-page/index.tsx} +4 -5
  126. package/src/components/keypad/index.tsx +19 -14
  127. package/src/components/keypad/keypad-mathquill.stories.tsx +69 -0
  128. package/src/components/keypad/keypad-page-items.tsx +36 -22
  129. package/src/components/keypad/keypad-pages.stories.tsx +5 -5
  130. package/src/components/keypad/keypad.stories.tsx +75 -17
  131. package/src/components/keypad/{numeric-input-page.tsx → numbers-page/index.tsx} +47 -11
  132. package/src/components/keypad/numbers-page/types.ts +4 -0
  133. package/src/components/keypad/operators-page/advanced-relations-buttons.tsx +32 -0
  134. package/src/components/keypad/operators-page/basic-relations-buttons.tsx +32 -0
  135. package/src/components/keypad/{pre-algebra-page.tsx → operators-page/index.tsx} +26 -30
  136. package/src/components/keypad/operators-page/logarithms-buttons.tsx +32 -0
  137. package/src/components/keypad/operators-page/pre-algebra-buttons.tsx +36 -0
  138. package/src/components/keypad/operators-page/types.ts +6 -0
  139. package/src/components/{__tests__ → keypad-legacy/__tests__}/two-page-keypad.test.tsx +0 -2
  140. package/src/components/{compute-layout-parameters.ts → keypad-legacy/compute-layout-parameters.ts} +2 -3
  141. package/src/components/{corner-decal.tsx → keypad-legacy/corner-decal.tsx} +2 -3
  142. package/src/components/{echo-manager.tsx → keypad-legacy/echo-manager.tsx} +8 -21
  143. package/src/components/{empty-keypad-button.tsx → keypad-legacy/empty-keypad-button.tsx} +8 -6
  144. package/src/components/{expression-keypad.tsx → keypad-legacy/expression-keypad.tsx} +8 -17
  145. package/src/components/{fraction-keypad.tsx → keypad-legacy/fraction-keypad.tsx} +6 -6
  146. package/src/components/{gesture-manager.ts → keypad-legacy/gesture-manager.ts} +34 -11
  147. package/src/components/{gesture-state-machine.ts → keypad-legacy/gesture-state-machine.ts} +14 -14
  148. package/src/components/{icon.tsx → keypad-legacy/icon.tsx} +3 -3
  149. package/src/components/{keypad-button.tsx → keypad-legacy/keypad-button.tsx} +26 -26
  150. package/src/components/{keypad-container.tsx → keypad-legacy/keypad-container.tsx} +6 -6
  151. package/src/components/{keypad.tsx → keypad-legacy/keypad.tsx} +5 -5
  152. package/src/components/{many-keypad-button.tsx → keypad-legacy/many-keypad-button.tsx} +13 -6
  153. package/src/components/{math-icon.tsx → keypad-legacy/math-icon.tsx} +2 -2
  154. package/src/components/{multi-symbol-grid.tsx → keypad-legacy/multi-symbol-grid.tsx} +4 -4
  155. package/src/components/{multi-symbol-popover.tsx → keypad-legacy/multi-symbol-popover.tsx} +3 -4
  156. package/src/components/{navigation-pad.tsx → keypad-legacy/navigation-pad.tsx} +5 -5
  157. package/src/components/{node-manager.ts → keypad-legacy/node-manager.ts} +2 -10
  158. package/src/components/{popover-manager.tsx → keypad-legacy/popover-manager.tsx} +2 -2
  159. package/src/components/{popover-state-machine.ts → keypad-legacy/popover-state-machine.ts} +1 -1
  160. package/src/components/{provided-keypad.tsx → keypad-legacy/provided-keypad.tsx} +4 -5
  161. package/src/{store → components/keypad-legacy/store}/actions.ts +7 -36
  162. package/src/{store → components/keypad-legacy/store}/echo-reducer.ts +3 -7
  163. package/src/{store → components/keypad-legacy/store}/index.ts +7 -20
  164. package/src/{store → components/keypad-legacy/store}/input-reducer.ts +4 -5
  165. package/src/{store → components/keypad-legacy/store}/keypad-reducer.ts +3 -4
  166. package/src/{store → components/keypad-legacy/store}/layout-reducer.ts +3 -3
  167. package/src/{store → components/keypad-legacy/store}/shared.ts +3 -3
  168. package/src/{store → components/keypad-legacy/store}/types.ts +15 -19
  169. package/src/components/{styles.ts → keypad-legacy/styles.ts} +1 -1
  170. package/src/components/{text-icon.tsx → keypad-legacy/text-icon.tsx} +2 -2
  171. package/src/components/{touchable-keypad-button.tsx → keypad-legacy/touchable-keypad-button.tsx} +35 -21
  172. package/src/components/{two-page-keypad.tsx → keypad-legacy/two-page-keypad.tsx} +5 -6
  173. package/src/components/tabbar/icons.tsx +0 -2
  174. package/src/data/key-configs.ts +751 -309
  175. package/src/data/keys.ts +118 -70
  176. package/src/enums.ts +10 -9
  177. package/src/index.ts +6 -3
  178. package/src/math-input.stories.tsx +3 -3
  179. package/src/types.ts +21 -16
  180. package/tsconfig-build.tsbuildinfo +1 -1
  181. package/dist/components/keypad/trigonometry-page.d.ts +0 -8
  182. package/dist/components/touchable-keypad-button.d.ts +0 -30
  183. package/dist/components/touchable-keypad-button.js.flow +0 -35
  184. package/dist/components/velocity-tracker.d.ts +0 -48
  185. package/dist/components/velocity-tracker.js.flow +0 -54
  186. package/dist/store/pager-reducer.d.ts +0 -4
  187. package/dist/store/pager-reducer.js.flow +0 -13
  188. package/dist/store/shared.d.ts +0 -7
  189. package/dist/store/shared.js.flow +0 -14
  190. package/src/components/velocity-tracker.ts +0 -86
  191. package/src/store/pager-reducer.ts +0 -125
  192. /package/dist/components/{corner-decal.d.ts → keypad-legacy/corner-decal.d.ts} +0 -0
  193. /package/dist/components/{corner-decal.js.flow → keypad-legacy/corner-decal.js.flow} +0 -0
  194. /package/dist/components/{empty-keypad-button.d.ts → keypad-legacy/empty-keypad-button.d.ts} +0 -0
  195. /package/dist/components/{empty-keypad-button.js.flow → keypad-legacy/empty-keypad-button.js.flow} +0 -0
  196. /package/dist/components/{many-keypad-button.d.ts → keypad-legacy/many-keypad-button.d.ts} +0 -0
  197. /package/dist/components/{many-keypad-button.js.flow → keypad-legacy/many-keypad-button.js.flow} +0 -0
  198. /package/dist/components/{math-icon.d.ts → keypad-legacy/math-icon.d.ts} +0 -0
  199. /package/dist/components/{math-icon.js.flow → keypad-legacy/math-icon.js.flow} +0 -0
  200. /package/dist/components/{navigation-pad.d.ts → keypad-legacy/navigation-pad.d.ts} +0 -0
  201. /package/dist/components/{navigation-pad.js.flow → keypad-legacy/navigation-pad.js.flow} +0 -0
  202. /package/dist/{store → components/keypad-legacy/store}/echo-reducer.d.ts +0 -0
  203. /package/dist/{store → components/keypad-legacy/store}/echo-reducer.js.flow +0 -0
  204. /package/dist/{store → components/keypad-legacy/store}/input-reducer.d.ts +0 -0
  205. /package/dist/{store → components/keypad-legacy/store}/input-reducer.js.flow +0 -0
  206. /package/dist/{store → components/keypad-legacy/store}/keypad-reducer.d.ts +0 -0
  207. /package/dist/{store → components/keypad-legacy/store}/keypad-reducer.js.flow +0 -0
  208. /package/dist/{store → components/keypad-legacy/store}/layout-reducer.d.ts +0 -0
  209. /package/dist/{store → components/keypad-legacy/store}/layout-reducer.js.flow +0 -0
  210. /package/dist/components/{styles.d.ts → keypad-legacy/styles.d.ts} +0 -0
  211. /package/dist/components/{styles.js.flow → keypad-legacy/styles.js.flow} +0 -0
  212. /package/dist/components/{svg-icon.d.ts → keypad-legacy/svg-icon.d.ts} +0 -0
  213. /package/dist/components/{svg-icon.js.flow → keypad-legacy/svg-icon.js.flow} +0 -0
  214. /package/dist/components/{text-icon.d.ts → keypad-legacy/text-icon.d.ts} +0 -0
  215. /package/dist/components/{text-icon.js.flow → keypad-legacy/text-icon.js.flow} +0 -0
  216. /package/dist/components/{z-indexes.d.ts → keypad-legacy/z-indexes.d.ts} +0 -0
  217. /package/dist/components/{z-indexes.js.flow → keypad-legacy/z-indexes.js.flow} +0 -0
  218. /package/src/components/{__tests__ → keypad-legacy/__tests__}/gesture-state-machine.test.ts +0 -0
  219. /package/src/components/{__tests__ → keypad-legacy/__tests__}/node-manager.test.ts +0 -0
  220. /package/src/components/{iconography → keypad-legacy/iconography}/arrow.js +0 -0
  221. /package/src/components/{iconography → keypad-legacy/iconography}/backspace.js +0 -0
  222. /package/src/components/{iconography → keypad-legacy/iconography}/cdot.js +0 -0
  223. /package/src/components/{iconography → keypad-legacy/iconography}/cos.js +0 -0
  224. /package/src/components/{iconography → keypad-legacy/iconography}/cube-root.js +0 -0
  225. /package/src/components/{iconography → keypad-legacy/iconography}/dismiss.js +0 -0
  226. /package/src/components/{iconography → keypad-legacy/iconography}/divide.js +0 -0
  227. /package/src/components/{iconography → keypad-legacy/iconography}/down.js +0 -0
  228. /package/src/components/{iconography → keypad-legacy/iconography}/equal.js +0 -0
  229. /package/src/components/{iconography → keypad-legacy/iconography}/exp-2.js +0 -0
  230. /package/src/components/{iconography → keypad-legacy/iconography}/exp-3.js +0 -0
  231. /package/src/components/{iconography → keypad-legacy/iconography}/exp.js +0 -0
  232. /package/src/components/{iconography → keypad-legacy/iconography}/frac.js +0 -0
  233. /package/src/components/{iconography → keypad-legacy/iconography}/geq.js +0 -0
  234. /package/src/components/{iconography → keypad-legacy/iconography}/gt.js +0 -0
  235. /package/src/components/{iconography → keypad-legacy/iconography}/index.js +0 -0
  236. /package/src/components/{iconography → keypad-legacy/iconography}/jump-into-numerator.js +0 -0
  237. /package/src/components/{iconography → keypad-legacy/iconography}/jump-out-base.js +0 -0
  238. /package/src/components/{iconography → keypad-legacy/iconography}/jump-out-denominator.js +0 -0
  239. /package/src/components/{iconography → keypad-legacy/iconography}/jump-out-exponent.js +0 -0
  240. /package/src/components/{iconography → keypad-legacy/iconography}/jump-out-numerator.js +0 -0
  241. /package/src/components/{iconography → keypad-legacy/iconography}/jump-out-parentheses.js +0 -0
  242. /package/src/components/{iconography → keypad-legacy/iconography}/left-paren.js +0 -0
  243. /package/src/components/{iconography → keypad-legacy/iconography}/left.js +0 -0
  244. /package/src/components/{iconography → keypad-legacy/iconography}/leq.js +0 -0
  245. /package/src/components/{iconography → keypad-legacy/iconography}/ln.js +0 -0
  246. /package/src/components/{iconography → keypad-legacy/iconography}/log-n.js +0 -0
  247. /package/src/components/{iconography → keypad-legacy/iconography}/log.js +0 -0
  248. /package/src/components/{iconography → keypad-legacy/iconography}/lt.js +0 -0
  249. /package/src/components/{iconography → keypad-legacy/iconography}/minus.js +0 -0
  250. /package/src/components/{iconography → keypad-legacy/iconography}/neq.js +0 -0
  251. /package/src/components/{iconography → keypad-legacy/iconography}/parens.js +0 -0
  252. /package/src/components/{iconography → keypad-legacy/iconography}/percent.js +0 -0
  253. /package/src/components/{iconography → keypad-legacy/iconography}/period.js +0 -0
  254. /package/src/components/{iconography → keypad-legacy/iconography}/plus.js +0 -0
  255. /package/src/components/{iconography → keypad-legacy/iconography}/radical.js +0 -0
  256. /package/src/components/{iconography → keypad-legacy/iconography}/right-paren.js +0 -0
  257. /package/src/components/{iconography → keypad-legacy/iconography}/right.js +0 -0
  258. /package/src/components/{iconography → keypad-legacy/iconography}/sin.js +0 -0
  259. /package/src/components/{iconography → keypad-legacy/iconography}/sqrt.js +0 -0
  260. /package/src/components/{iconography → keypad-legacy/iconography}/tan.js +0 -0
  261. /package/src/components/{iconography → keypad-legacy/iconography}/times.js +0 -0
  262. /package/src/components/{iconography → keypad-legacy/iconography}/up.js +0 -0
  263. /package/src/components/{svg-icon.tsx → keypad-legacy/svg-icon.tsx} +0 -0
  264. /package/src/components/{z-indexes.ts → keypad-legacy/z-indexes.ts} +0 -0
@@ -2,7 +2,7 @@ import * as React from "react";
2
2
  type Props = {
3
3
  onClickKey: (keyConfig: string) => void;
4
4
  };
5
- export default class PreAlgebraPage extends React.Component<Props> {
5
+ export default class GeometryPage extends React.Component<Props> {
6
6
  render(): React.ReactNode;
7
7
  }
8
8
  export {};
@@ -8,6 +8,6 @@ import * as React from "react";
8
8
  declare type Props = {|
9
9
  onClickKey: (keyConfig: string) => void,
10
10
  |};
11
- declare export default class PreAlgebraPage extends React.Component<Props> {
11
+ declare export default class GeometryPage extends React.Component<Props> {
12
12
  render(): React.Node;
13
13
  }
@@ -1,10 +1,11 @@
1
1
  import * as React from "react";
2
+ import { NumbersPageOptions } from "./numbers-page/types";
3
+ import { OperatorsButtonSets } from "./operators-page/types";
2
4
  import type { TabbarItemType } from "../tabbar/types";
3
- type Props = {
5
+ export type Props = {
4
6
  onClickKey: (keyConfig: string) => void;
5
- preAlgebra: boolean;
6
- trigonometry: boolean;
7
- };
7
+ trigonometry?: boolean;
8
+ } & OperatorsButtonSets & NumbersPageOptions;
8
9
  type State = {
9
10
  selectedPage: TabbarItemType;
10
11
  };
@@ -5,11 +5,16 @@
5
5
  * @flow
6
6
  */
7
7
  import * as React from "react";
8
+ import { NumbersPageOptions } from "./numbers-page/types";
9
+ import { OperatorsButtonSets } from "./operators-page/types";
8
10
  import type { TabbarItemType } from "../tabbar/types";
9
- declare type Props = {|
10
- onClickKey: (keyConfig: string) => void,
11
- preAlgebra: boolean,
12
- trigonometry: boolean,
11
+ export type Props = {|
12
+ ...{|
13
+ onClickKey: (keyConfig: string) => void,
14
+ trigonometry?: boolean,
15
+ |},
16
+ ...OperatorsButtonSets,
17
+ ...NumbersPageOptions,
13
18
  |};
14
19
  declare type State = {|
15
20
  selectedPage: TabbarItemType,
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import type { KeyConfig } from "../../data/key-configs";
2
+ import { KeyConfig } from "../../types";
3
3
  import type { StyleType } from "@khanacademy/wonder-blocks-core";
4
4
  type KeypadPageContainerProps = {
5
5
  children: React.ReactNode;
6
6
  };
7
7
  export declare const KeypadPageContainer: ({ children, }: KeypadPageContainerProps) => React.ReactElement;
8
- type KeypadButtonProps = {
8
+ export type KeypadButtonProps = {
9
9
  keyConfig: KeyConfig;
10
10
  tintColor?: string;
11
11
  style?: StyleType;
@@ -24,5 +24,11 @@ type KeypadActionButtonProps = {
24
24
  onClickKey: (keyConfig: string) => void;
25
25
  };
26
26
  export declare const KeypadActionButton: ({ keyConfig, onClickKey, style, }: KeypadActionButtonProps) => React.ReactElement;
27
- export declare const PlaceHolderButton: () => React.ReactElement;
27
+ /**
28
+ * A placeholder button for the keypad. Optional count prop to render multiple
29
+ * buttons. Defaults to 1.
30
+ */
31
+ export declare const PlaceHolderButtons: ({ count, }: {
32
+ count?: number | undefined;
33
+ }) => React.ReactElement;
28
34
  export {};
@@ -5,7 +5,7 @@
5
5
  * @flow
6
6
  */
7
7
  import * as React from "react";
8
- import type { KeyConfig } from "../../data/key-configs";
8
+ import { KeyConfig } from "../../types";
9
9
  import type { StyleType } from "@khanacademy/wonder-blocks-core";
10
10
  declare type KeypadPageContainerProps = {|
11
11
  children: React.Node,
@@ -13,7 +13,7 @@ declare type KeypadPageContainerProps = {|
13
13
  declare export var KeypadPageContainer: (
14
14
  x: KeypadPageContainerProps
15
15
  ) => React.Element<any>;
16
- declare type KeypadButtonProps = {|
16
+ export type KeypadButtonProps = {|
17
17
  keyConfig: KeyConfig,
18
18
  tintColor?: string,
19
19
  style?: StyleType,
@@ -36,4 +36,10 @@ declare type KeypadActionButtonProps = {|
36
36
  declare export var KeypadActionButton: (
37
37
  x: KeypadActionButtonProps
38
38
  ) => React.Element<any>;
39
- declare export var PlaceHolderButton: () => React.Element<any>;
39
+ /**
40
+ * A placeholder button for the keypad. Optional count prop to render multiple
41
+ * buttons. Defaults to 1.
42
+ */
43
+ declare export var PlaceHolderButtons: (x: {|
44
+ count?: number | void,
45
+ |}) => React.Element<any>;
@@ -1,8 +1,9 @@
1
1
  import * as React from "react";
2
+ import { NumbersPageOptions } from "./types";
2
3
  type Props = {
3
4
  onClickKey: (keyConfig: string) => void;
4
- };
5
- export default class NumericInputPage extends React.Component<Props> {
5
+ } & NumbersPageOptions;
6
+ export default class NumbersPage extends React.Component<Props> {
6
7
  render(): React.ReactNode;
7
8
  }
8
9
  export {};
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Flowtype definitions for data
3
+ * Generated by Flowgen from a Typescript Definition
4
+ * Flowgen v1.21.0
5
+ * @flow
6
+ */
7
+ import * as React from "react";
8
+ import { NumbersPageOptions } from "./types";
9
+ declare type Props = {|
10
+ ...{|
11
+ onClickKey: (keyConfig: string) => void,
12
+ |},
13
+ ...NumbersPageOptions,
14
+ |};
15
+ declare export default class NumbersPage extends React.Component<Props> {
16
+ render(): React.Node;
17
+ }
@@ -0,0 +1,4 @@
1
+ export type NumbersPageOptions = {
2
+ multiplicationDot?: boolean;
3
+ divisionKey?: boolean;
4
+ };
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Flowtype definitions for data
3
+ * Generated by Flowgen from a Typescript Definition
4
+ * Flowgen v1.21.0
5
+ * @flow
6
+ */
7
+ export type NumbersPageOptions = {|
8
+ multiplicationDot?: boolean,
9
+ divisionKey?: boolean,
10
+ |};
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type Props = {
3
+ onClickKey: (keyConfig: string) => void;
4
+ placeholder?: boolean;
5
+ };
6
+ export declare const AdvancedRelations: ({ onClickKey, placeholder, }: Props) => React.ReactElement;
7
+ export {};
@@ -4,10 +4,9 @@
4
4
  * Flowgen v1.21.0
5
5
  * @flow
6
6
  */
7
- import * as React from "react";
7
+ import React from "react";
8
8
  declare type Props = {|
9
9
  onClickKey: (keyConfig: string) => void,
10
+ placeholder?: boolean,
10
11
  |};
11
- declare export default class NumericInputPage extends React.Component<Props> {
12
- render(): React.Node;
13
- }
12
+ declare export var AdvancedRelations: (x: Props) => React.ReactElement;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type Props = {
3
+ onClickKey: (keyConfig: string) => void;
4
+ placeholder?: boolean;
5
+ };
6
+ export declare const BasicRelations: ({ onClickKey, placeholder, }: Props) => React.ReactElement;
7
+ export {};
@@ -4,12 +4,9 @@
4
4
  * Flowgen v1.21.0
5
5
  * @flow
6
6
  */
7
- import * as React from "react";
7
+ import React from "react";
8
8
  declare type Props = {|
9
9
  onClickKey: (keyConfig: string) => void,
10
+ placeholder?: boolean,
10
11
  |};
11
- declare export default class TrigonometryInputPage
12
- extends React.Component<Props>
13
- {
14
- render(): React.Node;
15
- }
12
+ declare export var BasicRelations: (x: Props) => React.ReactElement;
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ import { OperatorsButtonSets } from "./types";
3
+ type Props = {
4
+ onClickKey: (keyConfig: string) => void;
5
+ } & OperatorsButtonSets;
6
+ export default class OperatorsPage extends React.Component<Props> {
7
+ render(): React.ReactNode;
8
+ }
9
+ export {};
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Flowtype definitions for data
3
+ * Generated by Flowgen from a Typescript Definition
4
+ * Flowgen v1.21.0
5
+ * @flow
6
+ */
7
+ import * as React from "react";
8
+ import { OperatorsButtonSets } from "./types";
9
+ declare type Props = {|
10
+ ...{|
11
+ onClickKey: (keyConfig: string) => void,
12
+ |},
13
+ ...OperatorsButtonSets,
14
+ |};
15
+ declare export default class OperatorsPage extends React.Component<Props> {
16
+ render(): React.Node;
17
+ }
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type Props = {
3
+ onClickKey: (keyConfig: string) => void;
4
+ placeholder?: boolean;
5
+ };
6
+ export declare const Logarithms: ({ onClickKey, placeholder, }: Props) => React.ReactElement;
7
+ export {};
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Flowtype definitions for data
3
+ * Generated by Flowgen from a Typescript Definition
4
+ * Flowgen v1.21.0
5
+ * @flow
6
+ */
7
+ import React from "react";
8
+ declare type Props = {|
9
+ onClickKey: (keyConfig: string) => void,
10
+ placeholder?: boolean,
11
+ |};
12
+ declare export var Logarithms: (x: Props) => React.ReactElement;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type Props = {
3
+ onClickKey: (keyConfig: string) => void;
4
+ placeholder?: boolean;
5
+ };
6
+ export declare const PreAlgebra: ({ onClickKey, placeholder, }: Props) => React.ReactElement;
7
+ export {};
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Flowtype definitions for data
3
+ * Generated by Flowgen from a Typescript Definition
4
+ * Flowgen v1.21.0
5
+ * @flow
6
+ */
7
+ import React from "react";
8
+ declare type Props = {|
9
+ onClickKey: (keyConfig: string) => void,
10
+ placeholder?: boolean,
11
+ |};
12
+ declare export var PreAlgebra: (x: Props) => React.ReactElement;
@@ -0,0 +1,6 @@
1
+ export type OperatorsButtonSets = {
2
+ preAlgebra?: boolean;
3
+ logarithms?: boolean;
4
+ basicRelations?: boolean;
5
+ advancedRelations?: boolean;
6
+ };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Flowtype definitions for data
3
+ * Generated by Flowgen from a Typescript Definition
4
+ * Flowgen v1.21.0
5
+ * @flow
6
+ */
7
+ export type OperatorsButtonSets = {|
8
+ preAlgebra?: boolean,
9
+ logarithms?: boolean,
10
+ basicRelations?: boolean,
11
+ advancedRelations?: boolean,
12
+ |};
@@ -18,7 +18,7 @@
18
18
  * to be conservative in our measurements and make things smaller than they
19
19
  * might need to be.
20
20
  */
21
- import { LayoutMode } from "../enums";
21
+ import { LayoutMode } from "../../enums";
22
22
  export declare const computeLayoutParameters: ({ numColumns, numMaxVisibleRows, numPages }: {
23
23
  numColumns: any;
24
24
  numMaxVisibleRows: any;
@@ -4,7 +4,7 @@
4
4
  * Flowgen v1.21.0
5
5
  * @flow
6
6
  */
7
- import { LayoutMode } from "../enums";
7
+ import { LayoutMode } from "../../enums";
8
8
  declare export var computeLayoutParameters: (
9
9
  x: {|
10
10
  numColumns: any,
@@ -2,18 +2,9 @@
2
2
  * A component that renders and animates the selection state effect effect.
3
3
  */
4
4
  import * as React from "react";
5
- import Keys from "../data/keys";
6
- import { EchoAnimationType } from "../enums";
7
- import type { Border, Bound } from "../types";
8
- type EchoPropType = {
9
- animationId: string;
10
- animationType: EchoAnimationType;
11
- borders: Border;
12
- id: Keys;
13
- initialBounds: Bound;
14
- };
5
+ import type { Echo as EchoType } from "../../types";
15
6
  type EchoManagerProps = {
16
- echoes: ReadonlyArray<EchoPropType>;
7
+ echoes: ReadonlyArray<EchoType>;
17
8
  onAnimationFinish?: (animationId: string) => void;
18
9
  };
19
10
  declare class EchoManager extends React.Component<EchoManagerProps> {
@@ -5,18 +5,9 @@
5
5
  * @flow
6
6
  */
7
7
  import * as React from "react";
8
- import Keys from "../data/keys";
9
- import { EchoAnimationType } from "../enums";
10
- import type { Border, Bound } from "../types";
11
- declare type EchoPropType = {|
12
- animationId: string,
13
- animationType: EchoAnimationType,
14
- borders: Border,
15
- id: Keys,
16
- initialBounds: Bound,
17
- |};
8
+ import type { Echo as EchoType } from "../../types";
18
9
  declare type EchoManagerProps = {|
19
- echoes: $ReadOnlyArray<EchoPropType>,
10
+ echoes: $ReadOnlyArray<EchoType>,
20
11
  onAnimationFinish?: (animationId: string) => void,
21
12
  |};
22
13
  declare class EchoManager extends React.Component<EchoManagerProps> {
@@ -2,10 +2,9 @@
2
2
  * A keypad that includes all of the expression symbols.
3
3
  */
4
4
  import * as React from "react";
5
- import { CursorContext } from "./input/cursor-contexts";
6
- import type { KeypadLayout } from "../types";
5
+ import { CursorContext } from "../input/cursor-contexts";
6
+ import type { KeypadLayout } from "../../types";
7
7
  interface ReduxProps {
8
- currentPage: number;
9
8
  cursorContext?: CursorContext;
10
9
  dynamicJumpOut: boolean;
11
10
  }
@@ -18,5 +17,5 @@ export declare const expressionKeypadLayout: KeypadLayout;
18
17
  declare class ExpressionKeypad extends React.Component<Props> {
19
18
  render(): JSX.Element;
20
19
  }
21
- declare const _default: import("react-redux").ConnectedComponent<typeof ExpressionKeypad, import("react-redux").Omit<React.ClassAttributes<ExpressionKeypad> & Props, "currentPage" | "cursorContext" | "dynamicJumpOut">>;
20
+ declare const _default: import("react-redux").ConnectedComponent<typeof ExpressionKeypad, import("react-redux").Omit<React.ClassAttributes<ExpressionKeypad> & Props, "cursorContext" | "dynamicJumpOut">>;
22
21
  export default _default;
@@ -6,10 +6,9 @@
6
6
  */
7
7
  import * as $Flowgen$Import$react_2d_redux from "react-redux";
8
8
  import * as React from "react";
9
- import { CursorContext } from "./input/cursor-contexts";
10
- import type { KeypadLayout } from "../types";
9
+ import { CursorContext } from "../input/cursor-contexts";
10
+ import type { KeypadLayout } from "../../types";
11
11
  declare interface ReduxProps {
12
- currentPage: number;
13
12
  cursorContext?: CursorContext;
14
13
  dynamicJumpOut: boolean;
15
14
  }
@@ -26,7 +25,7 @@ declare var _default: $Flowgen$Import$react_2d_redux.ConnectedComponent<
26
25
  typeof ExpressionKeypad,
27
26
  $Flowgen$Import$react_2d_redux.Omit<
28
27
  {| ...React.ClassAttributes<ExpressionKeypad>, ...Props |},
29
- "currentPage" | "cursorContext" | "dynamicJumpOut"
28
+ "cursorContext" | "dynamicJumpOut"
30
29
  >
31
30
  >;
32
31
  declare export default typeof _default;
@@ -3,8 +3,8 @@
3
3
  * with fractions, decimals, and percents.
4
4
  */
5
5
  import * as React from "react";
6
- import { CursorContext } from "./input/cursor-contexts";
7
- import type { KeypadLayout } from "../types";
6
+ import { CursorContext } from "../input/cursor-contexts";
7
+ import type { KeypadLayout } from "../../types";
8
8
  interface ReduxProps {
9
9
  cursorContext?: CursorContext;
10
10
  dynamicJumpOut: boolean;
@@ -6,8 +6,8 @@
6
6
  */
7
7
  import * as $Flowgen$Import$react_2d_redux from "react-redux";
8
8
  import * as React from "react";
9
- import { CursorContext } from "./input/cursor-contexts";
10
- import type { KeypadLayout } from "../types";
9
+ import { CursorContext } from "../input/cursor-contexts";
10
+ import type { KeypadLayout } from "../../types";
11
11
  declare interface ReduxProps {
12
12
  cursorContext?: CursorContext;
13
13
  dynamicJumpOut: boolean;
@@ -3,46 +3,58 @@
3
3
  * connects our various bits of logic for managing gestures and interactions,
4
4
  * and links them together.
5
5
  */
6
+ import * as React from "react";
7
+ import Key from "../../data/keys";
8
+ import { ActiveNodesObj, LayoutProps } from "../../types";
6
9
  import GestureStateMachine from "./gesture-state-machine";
7
10
  import NodeManager from "./node-manager";
8
11
  import PopoverStateMachine from "./popover-state-machine";
12
+ type Options = {
13
+ swipeEnabled: boolean;
14
+ };
15
+ type Handlers = {
16
+ onSwipeChange?: (dx: number) => void;
17
+ onSwipeEnd?: (dx: number) => void;
18
+ onActiveNodesChanged: (activeNodes: ActiveNodesObj) => void;
19
+ onClick: (key: Key, layoutProps: LayoutProps, inPopover: boolean) => void;
20
+ };
9
21
  declare class GestureManager {
10
22
  swipeEnabled: boolean;
11
23
  trackEvents: boolean;
12
24
  nodeManager: NodeManager;
13
25
  popoverStateMachine: PopoverStateMachine;
14
26
  gestureStateMachine: GestureStateMachine;
15
- constructor(options: any, handlers: any, disabledSwipeKeys: any, multiPressableKeys: any);
27
+ constructor(options: Options, handlers: Handlers, disabledSwipeKeys: ReadonlyArray<Key>, multiPressableKeys: ReadonlyArray<Key>);
16
28
  /**
17
29
  * Handle a touch-start event that originated in a node registered with the
18
30
  * gesture system.
19
31
  *
20
- * @param {TouchEvent} evt - the raw touch event from the browser
32
+ * @param {React.TouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
21
33
  * @param {string} id - the identifier of the DOM node in which the touch
22
34
  * occurred
23
35
  */
24
- onTouchStart(evt: TouchEvent, id?: any): void;
36
+ onTouchStart(evt: React.TouchEvent<HTMLDivElement>, id?: string | undefined): void;
25
37
  /**
26
38
  * Handle a touch-move event that originated in a node registered with the
27
39
  * gesture system.
28
40
  *
29
- * @param {TouchEvent} evt - the raw touch event from the browser
41
+ * @param {React.TouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
30
42
  */
31
- onTouchMove(evt: TouchEvent): void;
43
+ onTouchMove(evt: React.TouchEvent<HTMLDivElement>): void;
32
44
  /**
33
45
  * Handle a touch-end event that originated in a node registered with the
34
46
  * gesture system.
35
47
  *
36
- * @param {TouchEvent} evt - the raw touch event from the browser
48
+ * @param {React.TouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
37
49
  */
38
- onTouchEnd(evt: TouchEvent): void;
50
+ onTouchEnd(evt: React.TouchEvent<HTMLDivElement>): void;
39
51
  /**
40
52
  * Handle a touch-cancel event that originated in a node registered with the
41
53
  * gesture system.
42
54
  *
43
- * @param {TouchEvent} evt - the raw touch event from the browser
55
+ * @param {React.TouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
44
56
  */
45
- onTouchCancel(evt: TouchEvent): void;
57
+ onTouchCancel(evt: React.TouchEvent<HTMLDivElement>): void;
46
58
  /**
47
59
  * Register a DOM node with a given identifier.
48
60
  *
@@ -54,7 +66,7 @@ declare class GestureManager {
54
66
  * intercepting touch events
55
67
  * @param {object} borders - an opaque object describing the node's borders
56
68
  */
57
- registerDOMNode(id: any, domNode: any, childIds: any, borders: any): void;
69
+ registerDOMNode(id: any, domNode: any, childIds: any): void;
58
70
  /**
59
71
  * Unregister the DOM node with the given identifier.
60
72
  *
@@ -4,9 +4,21 @@
4
4
  * Flowgen v1.21.0
5
5
  * @flow
6
6
  */
7
+ import * as React from "react";
8
+ import Key from "../../data/keys";
9
+ import { ActiveNodesObj, LayoutProps } from "../../types";
7
10
  import GestureStateMachine from "./gesture-state-machine";
8
11
  import NodeManager from "./node-manager";
9
12
  import PopoverStateMachine from "./popover-state-machine";
13
+ declare type Options = {|
14
+ swipeEnabled: boolean,
15
+ |};
16
+ declare type Handlers = {|
17
+ onSwipeChange?: (dx: number) => void,
18
+ onSwipeEnd?: (dx: number) => void,
19
+ onActiveNodesChanged: (activeNodes: ActiveNodesObj) => void,
20
+ onClick: (key: Key, layoutProps: LayoutProps, inPopover: boolean) => void,
21
+ |};
10
22
  declare class GestureManager {
11
23
  swipeEnabled: boolean;
12
24
  trackEvents: boolean;
@@ -14,41 +26,44 @@ declare class GestureManager {
14
26
  popoverStateMachine: PopoverStateMachine;
15
27
  gestureStateMachine: GestureStateMachine;
16
28
  constructor(
17
- options: any,
18
- handlers: any,
19
- disabledSwipeKeys: any,
20
- multiPressableKeys: any
29
+ options: Options,
30
+ handlers: Handlers,
31
+ disabledSwipeKeys: $ReadOnlyArray<Key>,
32
+ multiPressableKeys: $ReadOnlyArray<Key>
21
33
  ): this;
22
34
 
23
35
  /**
24
36
  * Handle a touch-start event that originated in a node registered with the
25
37
  * gesture system.
26
- * @param {TouchEvent} evt - the raw touch event from the browser
38
+ * @param {SyntheticTouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
27
39
  * @param {string} id - the identifier of the DOM node in which the touch
28
40
  * occurred
29
41
  */
30
- onTouchStart(evt: TouchEvent, id?: any): void;
42
+ onTouchStart(
43
+ evt: SyntheticTouchEvent<HTMLDivElement>,
44
+ id?: string | void
45
+ ): void;
31
46
 
32
47
  /**
33
48
  * Handle a touch-move event that originated in a node registered with the
34
49
  * gesture system.
35
- * @param {TouchEvent} evt - the raw touch event from the browser
50
+ * @param {SyntheticTouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
36
51
  */
37
- onTouchMove(evt: TouchEvent): void;
52
+ onTouchMove(evt: SyntheticTouchEvent<HTMLDivElement>): void;
38
53
 
39
54
  /**
40
55
  * Handle a touch-end event that originated in a node registered with the
41
56
  * gesture system.
42
- * @param {TouchEvent} evt - the raw touch event from the browser
57
+ * @param {SyntheticTouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
43
58
  */
44
- onTouchEnd(evt: TouchEvent): void;
59
+ onTouchEnd(evt: SyntheticTouchEvent<HTMLDivElement>): void;
45
60
 
46
61
  /**
47
62
  * Handle a touch-cancel event that originated in a node registered with the
48
63
  * gesture system.
49
- * @param {TouchEvent} evt - the raw touch event from the browser
64
+ * @param {SyntheticTouchEvent<HTMLDivElement>} evt - the raw touch event from the browser
50
65
  */
51
- onTouchCancel(evt: TouchEvent): void;
66
+ onTouchCancel(evt: SyntheticTouchEvent<HTMLDivElement>): void;
52
67
 
53
68
  /**
54
69
  * Register a DOM node with a given identifier.
@@ -60,7 +75,7 @@ declare class GestureManager {
60
75
  * intercepting touch events
61
76
  * @param {{...}} borders - an opaque object describing the node's borders
62
77
  */
63
- registerDOMNode(id: any, domNode: any, childIds: any, borders: any): void;
78
+ registerDOMNode(id: any, domNode: any, childIds: any): void;
64
79
 
65
80
  /**
66
81
  * Unregister the DOM node with the given identifier.