@khanacademy/perseus-core
Advanced tools
Comparing version 3.1.0 to 3.2.0
export type { PerseusAnalyticsEvent, AnalyticsEventHandlerFn } from "./analytics"; | ||
export type { KEScore, KeypadContextRendererInterface, RendererInterface, } from "./types"; | ||
export type { KEScore, KeypadContextRendererInterface, RendererInterface, MarkerType, InteractiveMarkerType, Relationship, } from "./types"; | ||
export type { ErrorKind } from "./error/errors"; | ||
export type { FunctionTypeMappingKeys } from "./utils/grapher-util"; | ||
export type { Coords } from "./utils/grapher-types"; | ||
export { addLibraryVersionToPerseusDebug } from "./utils/add-library-version-to-perseus-debug"; | ||
export { default as getMatrixSize } from "./utils/get-matrix-size"; | ||
export { default as getDecimalSeparator } from "./utils/get-decimal-separator"; | ||
export { approximateEqual, approximateDeepEqual } from "./utils/equality"; | ||
export { default as deepClone } from "./utils/deep-clone"; | ||
export * as GrapherUtil from "./utils/grapher-util"; | ||
export { libVersion } from "./version"; | ||
@@ -6,0 +13,0 @@ export { Errors } from "./error/errors"; |
@@ -20,2 +20,14 @@ export interface KeypadContextRendererInterface { | ||
}; | ||
export type MarkerType = { | ||
answers: ReadonlyArray<string>; | ||
label: string; | ||
x: number; | ||
y: number; | ||
}; | ||
export type InteractiveMarkerType = MarkerType & { | ||
selected?: ReadonlyArray<string>; | ||
showCorrectness?: "correct" | "incorrect"; | ||
focused?: boolean; | ||
}; | ||
export type Relationship = "lt" | "gt" | "le" | "ge"; | ||
export {}; |
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "3.1.0", | ||
"version": "3.2.0", | ||
"publishConfig": { | ||
@@ -9,0 +9,0 @@ "access": "public" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
793015
21
6520
0