@khanacademy/math-input 17.0.7 → 17.1.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/dist/components/input/mathquill-helpers.d.ts +1 -1
- package/dist/components/keypad/keypad-pages/fractions-page.d.ts +1 -1
- package/dist/components/keypad/keypad.d.ts +1 -1
- package/dist/components/keypad/shared-keys.d.ts +1 -1
- package/dist/components/keypad/utils.d.ts +1 -1
- package/dist/data/keys.d.ts +1 -1
- package/dist/enums.d.ts +1 -1
- package/dist/es/index.js +3 -3
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export type KeypadConfiguration = {
|
|
|
25
25
|
};
|
|
26
26
|
export type KeyHandler = (key: Key) => Cursor;
|
|
27
27
|
export type Cursor = {
|
|
28
|
-
context: typeof CursorContext[keyof typeof CursorContext];
|
|
28
|
+
context: (typeof CursorContext)[keyof typeof CursorContext];
|
|
29
29
|
};
|
|
30
30
|
export type ClickKeyCallback = (key: Key, event?: React.SyntheticEvent) => void;
|
|
31
31
|
export type KeypadPageType = "Geometry" | "Operators" | "Numbers" | "Fractions" | "Extras" | "Dismiss";
|