@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.
@@ -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;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Shared Perseus infrastructure",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "26.1.1",
6
+ "version": "26.2.0",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },