@khanacademy/perseus-core 26.1.1 → 26.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-schema.d.ts +8 -0
- package/dist/es/index.item-splitting.js +1 -1
- package/dist/es/index.item-splitting.js.map +1 -1
- package/dist/es/index.js +3 -3
- package/dist/es/index.js.map +1 -1
- package/dist/index.item-splitting.js +1 -1
- package/dist/index.item-splitting.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/parse-perseus-json/perseus-parsers/interactive-graph-widget.d.ts +4 -0
- package/dist/widgets/interactive-graph/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -116,6 +116,10 @@ export declare const parseInteractiveGraphWidget: import("../parser-types").Pars
|
|
|
116
116
|
yMin: boolean;
|
|
117
117
|
yMax: boolean;
|
|
118
118
|
}>;
|
|
119
|
+
showAxisTicks: import("../general-purpose-parsers/object-types").OptionalizeProperties<{
|
|
120
|
+
x: boolean;
|
|
121
|
+
y: boolean;
|
|
122
|
+
}>;
|
|
119
123
|
graph: import("../general-purpose-parsers/object-types").OptionalizeProperties<{
|
|
120
124
|
type: "angle";
|
|
121
125
|
showAngles: boolean | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PerseusInteractiveGraphWidgetOptions } from "../../data-schema";
|
|
2
2
|
import type { WidgetLogic } from "../logic-export.types";
|
|
3
|
-
export type InteractiveGraphDefaultWidgetOptions = Pick<PerseusInteractiveGraphWidgetOptions, "labels" | "labelLocation" | "lockedFigures" | "range" | "step" | "backgroundImage" | "markings" | "showAxisArrows" | "showTooltips" | "showProtractor" | "graph" | "correct">;
|
|
3
|
+
export type InteractiveGraphDefaultWidgetOptions = Pick<PerseusInteractiveGraphWidgetOptions, "labels" | "labelLocation" | "lockedFigures" | "range" | "step" | "backgroundImage" | "markings" | "showAxisArrows" | "showAxisTicks" | "showTooltips" | "showProtractor" | "graph" | "correct">;
|
|
4
4
|
declare const interactiveGraphWidgetLogic: WidgetLogic;
|
|
5
5
|
export default interactiveGraphWidgetLogic;
|