@khanacademy/perseus-core
Advanced tools
Comparing version 0.0.0-PR2127-20250117214413 to 0.0.0-PR2128-20250117232005
@@ -692,5 +692,6 @@ /** | ||
export type PerseusNumericInputAnswerForm = { | ||
simplify: "required" | "correct" | "enforced" | "optional" | null | undefined; | ||
simplify: PerseusNumericInputSimplify; | ||
name: MathFormat; | ||
}; | ||
export type PerseusNumericInputSimplify = "required" | "correct" | "enforced" | "optional" | null | undefined; | ||
export type PerseusNumericInputWidgetOptions = { | ||
@@ -712,3 +713,3 @@ answers: ReadonlyArray<PerseusNumericInputAnswer>; | ||
maxError: number | null | undefined; | ||
simplify: string | null | undefined; | ||
simplify: PerseusNumericInputSimplify; | ||
}; | ||
@@ -715,0 +716,0 @@ export type PerseusNumberLineWidgetOptions = { |
export type { PerseusAnalyticsEvent, AnalyticsEventHandlerFn } from "./analytics"; | ||
export type { KEScore, KeypadContextRendererInterface, RendererInterface, MarkerType, InteractiveMarkerType, Relationship, } from "./types"; | ||
export type { KEScore, KeypadContextRendererInterface, RendererInterface, } 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"; | ||
@@ -13,0 +6,0 @@ export { Errors } from "./error/errors"; |
@@ -20,14 +20,2 @@ 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-PR2127-20250117214413", | ||
"version": "0.0.0-PR2128-20250117232005", | ||
"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
663627
15
5408