Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@khanacademy/perseus-core

Package Overview
Dependencies
Maintainers
1
Versions
282
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@khanacademy/perseus-core - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

6

CHANGELOG.md
# @khanacademy/perseus-core
## 0.2.0
### Minor Changes
- dd800c22: Rename analytics prop from onEvent to onAnalyticsEvent
## 0.1.1

@@ -4,0 +10,0 @@

11

dist/analytics.d.ts

@@ -0,5 +1,6 @@

export type VirtualKeypadVersion = "PERSEUS_MATH_INPUT" | "MATH_INPUT_KEYPAD_V1" | "MATH_INPUT_KEYPAD_V2" | "REACT_NATIVE_KEYPAD";
export type PerseusAnalyticsEvent = {
type: "perseus:expression-evaluated";
payload: {
virtualKeypadVersion?: string;
virtualKeypadVersion: VirtualKeypadVersion;
result: "correct" | "incorrect" | "invalid";

@@ -10,3 +11,3 @@ };

payload: {
virtualKeypadVersion: string;
virtualKeypadVersion: VirtualKeypadVersion;
};

@@ -16,6 +17,6 @@ } | {

payload: {
virtualKeypadVersion: string;
virtualKeypadVersion: VirtualKeypadVersion;
};
};
/** A function to send analytics events. */
export type SendEventFn = (event: PerseusAnalyticsEvent) => Promise<void>;
/** A function that is called when Perseus emits an analytics event. */
export type AnalyticsEventHandlerFn = (event: PerseusAnalyticsEvent) => Promise<void>;

@@ -1,2 +0,2 @@

export type { PerseusAnalyticsEvent, SendEventFn } from "./analytics";
export type { PerseusAnalyticsEvent, AnalyticsEventHandlerFn } from "./analytics";
export type { KEScore, RendererInterface } from "./types";

@@ -6,3 +6,3 @@ {

"license": "MIT",
"version": "0.1.1",
"version": "0.2.0",
"publishConfig": {

@@ -9,0 +9,0 @@ "access": "public"

@@ -0,1 +1,7 @@

export type VirtualKeypadVersion =
| "PERSEUS_MATH_INPUT"
| "MATH_INPUT_KEYPAD_V1"
| "MATH_INPUT_KEYPAD_V2"
| "REACT_NATIVE_KEYPAD";
// A type union of all the events that any package in the Perseus ecosystem can

@@ -7,5 +13,3 @@ // send.

payload: {
// Keypad version can be supplied by Perseus sometimes, but not always.
// The host application will need to fill this in if it's not present.
virtualKeypadVersion?: string;
virtualKeypadVersion: VirtualKeypadVersion;
result: "correct" | "incorrect" | "invalid";

@@ -17,3 +21,3 @@ };

payload: {
virtualKeypadVersion: string;
virtualKeypadVersion: VirtualKeypadVersion;
};

@@ -24,3 +28,3 @@ }

payload: {
virtualKeypadVersion: string;
virtualKeypadVersion: VirtualKeypadVersion;
};

@@ -32,3 +36,5 @@ };

/** A function to send analytics events. */
export type SendEventFn = (event: PerseusAnalyticsEvent) => Promise<void>;
/** A function that is called when Perseus emits an analytics event. */
export type AnalyticsEventHandlerFn = (
event: PerseusAnalyticsEvent,
) => Promise<void>;

@@ -1,2 +0,2 @@

export type {PerseusAnalyticsEvent, SendEventFn} from "./analytics";
export type {PerseusAnalyticsEvent, AnalyticsEventHandlerFn} from "./analytics";
export type {KEScore, RendererInterface} from "./types";

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc