@khanacademy/math-input 22.2.4 → 22.2.6
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/dist/components/aphrodite-css-transition-group/types.d.ts +0 -9
- package/dist/components/keypad/keypad.d.ts +2 -1
- package/dist/components/keypad/navigation-button.d.ts +2 -1
- package/dist/components/keypad/navigation-pad.d.ts +2 -1
- package/dist/es/index.js +18 -13
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +18 -13
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare enum MathFieldActionType {
|
|
|
10
10
|
KEYSTROKE = "keystroke",
|
|
11
11
|
MQ_END = 0
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
type IconConfig = {
|
|
14
14
|
data: string;
|
|
15
15
|
};
|
|
16
16
|
export type KeyConfig = {
|
|
@@ -49,3 +49,4 @@ export type KeypadContextType = {
|
|
|
49
49
|
setScrollableElement: (scrollableElement?: HTMLElement | null | undefined) => void;
|
|
50
50
|
scrollableElement: HTMLElement | null | undefined;
|
|
51
51
|
};
|
|
52
|
+
export {};
|
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": "22.2.
|
|
6
|
+
"version": "22.2.6",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"prepublishOnly": "../../utils/package-pre-publish-check.sh"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@khanacademy/keypad-context": "^1.0.
|
|
44
|
-
"@khanacademy/perseus-core": "3.
|
|
43
|
+
"@khanacademy/keypad-context": "^1.0.19",
|
|
44
|
+
"@khanacademy/perseus-core": "3.7.0",
|
|
45
45
|
"mathquill": "https://github.com/Khan/mathquill/releases/download/v1.0.0/mathquill-v1.0.0.tgz"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|