@khanacademy/perseus-core
Advanced tools
Comparing version 0.0.0-PR2010-20241216155958 to 0.0.0-PR2015-20250118013213
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"; | ||
export { Errors } from "./error/errors"; | ||
export { PerseusError } from "./error/perseus-error"; | ||
export * from "./data-schema"; | ||
export { pluck, mapObject } from "./utils/objective_"; |
@@ -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": "0.0.0-PR2010-20241216155958", | ||
"version": "0.0.0-PR2015-20250118013213", | ||
"publishConfig": { | ||
@@ -26,2 +26,3 @@ "access": "public" | ||
"scripts": { | ||
"prepublishOnly": "../../utils/package-pre-publish-check.sh", | ||
"test": "bash -c 'yarn --silent --cwd \"../..\" test ${@:0} $($([[ ${@: -1} = -* ]] || [[ ${@: -1} = bash ]]) && echo $PWD)'" | ||
@@ -35,2 +36,2 @@ }, | ||
"keywords": [] | ||
} | ||
} |
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
793037
21
6520
1