@khanacademy/math-input 20.1.2 → 21.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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Khan Academy's new expression editor for the mobile web.",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "20.1.2",
6
+ "version": "21.0.0",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -39,6 +39,7 @@
39
39
  "scripts": {},
40
40
  "dependencies": {
41
41
  "@khanacademy/perseus-core": "1.5.0",
42
+ "@khanacademy/keypad-context": "^1.0.0",
42
43
  "mathquill": "https://github.com/Khan/mathquill/releases/download/v1.0.0/mathquill-v1.0.0.tgz"
43
44
  },
44
45
  "devDependencies": {
@@ -1,15 +0,0 @@
1
- /**
2
- * KeypadContext provides a way to the Keypad and Perseus Renderers to
3
- * communicate.
4
- *
5
- * The StatefulKeypadContextProvider wraps the application
6
- * while KeypadContext.Consumer wraps things that need this state:
7
- * - mobile keypad usages
8
- * - Perseus Renderers (Server/Item/Article)
9
- */
10
- import * as React from "react";
11
- import type { KeypadContextType } from "../types";
12
- export declare const KeypadContext: React.Context<KeypadContextType>;
13
- type Props = React.PropsWithChildren<unknown>;
14
- export declare function StatefulKeypadContextProvider(props: Props): React.JSX.Element;
15
- export {};