@khanacademy/perseus-core
Advanced tools
Comparing version 1.4.0 to 1.4.1
# @khanacademy/perseus-core | ||
## 1.4.1 | ||
### Patch Changes | ||
- [#860](https://github.com/Khan/perseus/pull/860) [`1f4e17ba`](https://github.com/Khan/perseus/commit/1f4e17ba77e1491523813655af18a70285a25989) Thanks [@nixterrimus](https://github.com/nixterrimus)! - Add hover states in label-image widget | ||
* [#848](https://github.com/Khan/perseus/pull/848) [`8857950b`](https://github.com/Khan/perseus/commit/8857950bdeeb6e13bc3766b1c6545289b21cbe2a) Thanks [@nixterrimus](https://github.com/nixterrimus)! - Add analytics for label image | ||
## 1.4.0 | ||
@@ -4,0 +12,0 @@ |
@@ -22,2 +22,11 @@ export type VirtualKeypadVersion = "MATH_INPUT_KEYPAD_V2" | "REACT_NATIVE_KEYPAD"; | ||
} | { | ||
type: "perseus:label-image:toggle-answers-hidden"; | ||
payload: null; | ||
} | { | ||
type: "perseus:label-image:marker-interacted-with"; | ||
payload: null; | ||
} | { | ||
type: "perseus:label-image:choiced-interacted-with"; | ||
payload: null; | ||
} | { | ||
type: "math-input:keypad-closed"; | ||
@@ -24,0 +33,0 @@ payload: { |
@@ -45,3 +45,3 @@ /** | ||
const libName = "@khanacademy/perseus-core"; | ||
const libVersion = "1.4.0"; | ||
const libVersion = "1.4.1"; | ||
addLibraryVersionToPerseusDebug(libName, libVersion); | ||
@@ -48,0 +48,0 @@ |
@@ -48,3 +48,3 @@ 'use strict'; | ||
const libName = "@khanacademy/perseus-core"; | ||
const libVersion = "1.4.0"; | ||
const libVersion = "1.4.1"; | ||
addLibraryVersionToPerseusDebug(libName, libVersion); | ||
@@ -51,0 +51,0 @@ |
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"publishConfig": { | ||
@@ -9,0 +9,0 @@ "access": "public" |
@@ -29,2 +29,14 @@ export type VirtualKeypadVersion = | ||
| { | ||
type: "perseus:label-image:toggle-answers-hidden"; | ||
payload: null; | ||
} | ||
| { | ||
type: "perseus:label-image:marker-interacted-with"; | ||
payload: null; | ||
} | ||
| { | ||
type: "perseus:label-image:choiced-interacted-with"; | ||
payload: null; | ||
} | ||
| { | ||
type: "math-input:keypad-closed"; | ||
@@ -41,2 +53,3 @@ payload: { | ||
}; | ||
// Add more events here as needed. Note that each event should have a `type` | ||
@@ -43,0 +56,0 @@ // key and a payload that varies by type. |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74373
450