@khanacademy/perseus-core 3.3.0 → 3.5.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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export type { PerseusAnalyticsEvent, AnalyticsEventHandlerFn } from "./analytics";
2
- export type { KEScore, KeypadContextRendererInterface, RendererInterface, MarkerType, InteractiveMarkerType, Relationship, } from "./types";
2
+ export type { KEScore, KeypadContextRendererInterface, RendererInterface, MarkerType, InteractiveMarkerType, Relationship, Alignment, } from "./types";
3
3
  export type { ErrorKind } from "./error/errors";
4
4
  export type { FunctionTypeMappingKeys } from "./utils/grapher-util";
5
5
  export type { Coords } from "./utils/grapher-types";
@@ -33,6 +33,8 @@ export { default as gradedGroupLogic } from "./widgets/graded-group";
33
33
  export type { GradedGroupDefaultWidgetOptions } from "./widgets/graded-group";
34
34
  export { default as gradedGroupSetLogic } from "./widgets/graded-group-set";
35
35
  export type { GradedGroupSetDefaultWidgetOptions } from "./widgets/graded-group-set";
36
+ export { default as grapherLogic } from "./widgets/grapher";
37
+ export type { GrapherDefaultWidgetOptions } from "./widgets/grapher";
36
38
  export { default as groupLogic } from "./widgets/group";
37
39
  export type { GroupDefaultWidgetOptions } from "./widgets/group";
38
40
  export { default as iframeLogic } from "./widgets/iframe";
@@ -79,7 +81,22 @@ export { default as tableLogic } from "./widgets/table";
79
81
  export type { TableDefaultWidgetOptions } from "./widgets/table";
80
82
  export { default as videoLogic } from "./widgets/video";
81
83
  export type { VideoDefaultWidgetOptions } from "./widgets/video";
84
+ export { getUpgradedWidgetOptions, upgradeWidgetInfoToLatestVersion, } from "./widgets/upgrade";
82
85
  export type * from "./widgets/logic-export.types";
86
+ export * as CoreWidgetRegistry from "./widgets/core-widget-registry";
83
87
  export { default as getOrdererPublicWidgetOptions } from "./widgets/orderer/orderer-util";
84
88
  export { default as getCategorizerPublicWidgetOptions } from "./widgets/categorizer/categorizer-util";
89
+ export { default as getCSProgramPublicWidgetOptions } from "./widgets/cs-program/cs-program-util";
85
90
  export { default as getExpressionPublicWidgetOptions } from "./widgets/expression/expression-util";
91
+ export { default as getGrapherPublicWidgetOptions } from "./widgets/grapher/grapher-util";
92
+ export { default as getInteractiveGraphPublicWidgetOptions } from "./widgets/interactive-graph/interactive-graph-util";
93
+ export { default as getLabelImagePublicWidgetOptions } from "./widgets/label-image/label-image-util";
94
+ export { default as getSorterPublicWidgetOptions } from "./widgets/sorter/sorter-util";
95
+ export { default as getDropdownPublicWidgetOptions } from "./widgets/dropdown/dropdown-util";
96
+ export { default as getNumericInputPublicWidgetOptions } from "./widgets/numeric-input/numeric-input-util";
97
+ export { default as getNumberLinePublicWidgetOptions } from "./widgets/number-line/number-line-util";
98
+ export { default as getRadioPublicWidgetOptions } from "./widgets/radio/radio-util";
99
+ export { default as getTablePublicWidgetOptions } from "./widgets/table/table-util";
100
+ export { default as getIFramePublicWidgetOptions } from "./widgets/iframe/iframe-util";
101
+ export { default as getMatrixPublicWidgetOptions } from "./widgets/matrix/matrix-util";
102
+ export { default as getPlotterPublicWidgetOptions } from "./widgets/plotter/plotter-util";