@khanacademy/perseus-editor 28.8.14 → 28.9.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/all-editors.d.ts +1 -4
- package/dist/components/widget-editor.d.ts +1 -1
- package/dist/es/index.js +37 -43
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +36 -42
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
- package/dist/widgets/passage-editor.d.ts +0 -18
- package/dist/widgets/passage-ref-editor.d.ts +0 -12
- package/dist/widgets/passage-ref-target-editor.d.ts +0 -16
package/dist/all-editors.d.ts
CHANGED
|
@@ -23,9 +23,6 @@ import MoleculeEditor from "./widgets/molecule-editor";
|
|
|
23
23
|
import NumberLineEditor from "./widgets/number-line-editor";
|
|
24
24
|
import NumericInputEditor from "./widgets/numeric-input-editor";
|
|
25
25
|
import OrdererEditor from "./widgets/orderer-editor";
|
|
26
|
-
import PassageEditor from "./widgets/passage-editor";
|
|
27
|
-
import PassageRefEditor from "./widgets/passage-ref-editor";
|
|
28
|
-
import PassageRefTargetEditor from "./widgets/passage-ref-target-editor";
|
|
29
26
|
import PhetSimulationEditor from "./widgets/phet-simulation-editor";
|
|
30
27
|
import PlotterEditor from "./widgets/plotter-editor";
|
|
31
28
|
import PythonProgramEditor from "./widgets/python-program-editor";
|
|
@@ -33,5 +30,5 @@ import RadioEditor from "./widgets/radio/editor";
|
|
|
33
30
|
import SorterEditor from "./widgets/sorter-editor";
|
|
34
31
|
import TableEditor from "./widgets/table-editor";
|
|
35
32
|
import VideoEditor from "./widgets/video-editor/video-editor";
|
|
36
|
-
declare const _default: (typeof CategorizerEditor | typeof CSProgramEditor | typeof DefinitionEditor | typeof DeprecatedStandinEditor | typeof DropdownEditor | typeof ExplanationEditor | typeof ExpressionEditor | typeof FreeResponseEditor | typeof GradedGroupEditor | typeof GradedGroupSetEditor | typeof GrapherEditor | typeof GroupEditor | typeof IframeEditor | typeof ImageEditor | typeof InputNumberEditor | typeof InteractionEditor | typeof InteractiveGraphEditor | typeof LabelImageEditor | typeof MatcherEditor | typeof MatrixEditor | typeof MeasurerEditor | typeof MoleculeEditor | typeof NumberLineEditor | typeof NumericInputEditor | typeof OrdererEditor | typeof
|
|
33
|
+
declare const _default: (typeof CategorizerEditor | typeof CSProgramEditor | typeof DefinitionEditor | typeof DeprecatedStandinEditor | typeof DropdownEditor | typeof ExplanationEditor | typeof ExpressionEditor | typeof FreeResponseEditor | typeof GradedGroupEditor | typeof GradedGroupSetEditor | typeof GrapherEditor | typeof GroupEditor | typeof IframeEditor | typeof ImageEditor | typeof InputNumberEditor | typeof InteractionEditor | typeof InteractiveGraphEditor | typeof LabelImageEditor | typeof MatcherEditor | typeof MatrixEditor | typeof MeasurerEditor | typeof MoleculeEditor | typeof NumberLineEditor | typeof NumericInputEditor | typeof OrdererEditor | typeof PhetSimulationEditor | typeof PlotterEditor | typeof PythonProgramEditor | typeof RadioEditor | typeof SorterEditor | typeof TableEditor | typeof VideoEditor)[];
|
|
37
34
|
export default _default;
|
|
@@ -23,7 +23,7 @@ declare class WidgetEditor extends React.Component<WidgetEditorProps, WidgetEdit
|
|
|
23
23
|
_handleAlignmentChange: (e: React.SyntheticEvent<HTMLSelectElement>) => void;
|
|
24
24
|
getSaveWarnings: () => any;
|
|
25
25
|
serialize: () => {
|
|
26
|
-
type: "categorizer" | "iframe" | "table" | "video" | "image" | "radio" | "cs-program" | "definition" | "group" | "dropdown" | "explanation" | "expression" | "free-response" | "grapher" | "graded-group-set" | "graded-group" | "input-number" | "interaction" | "interactive-graph" | "label-image" | "matcher" | "matrix" | "measurer" | "molecule-renderer" | "number-line" | "numeric-input" | "orderer" | "
|
|
26
|
+
type: "categorizer" | "iframe" | "table" | "video" | "image" | "radio" | "cs-program" | "definition" | "group" | "dropdown" | "explanation" | "expression" | "free-response" | "grapher" | "graded-group-set" | "graded-group" | "input-number" | "interaction" | "interactive-graph" | "label-image" | "matcher" | "matrix" | "measurer" | "molecule-renderer" | "number-line" | "numeric-input" | "orderer" | "phet-simulation" | "python-program" | "plotter" | "sorter" | "mock-widget" | "deprecated-standin";
|
|
27
27
|
alignment: string | undefined;
|
|
28
28
|
static: boolean | undefined;
|
|
29
29
|
graded: boolean | undefined;
|