@khanacademy/perseus-editor 28.8.13 → 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/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +64 -64
- 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
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { type PassageRefTargetDefaultWidgetOptions } from "@khanacademy/perseus-core";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
type Props = any;
|
|
4
|
-
declare class PassageRefTargetEditor extends React.Component<Props> {
|
|
5
|
-
static propTypes: {
|
|
6
|
-
content: any;
|
|
7
|
-
onChange: any;
|
|
8
|
-
};
|
|
9
|
-
static widgetName: "passage-ref-target";
|
|
10
|
-
static defaultProps: PassageRefTargetDefaultWidgetOptions;
|
|
11
|
-
change: (arg1: any, arg2: any, arg3: any) => any;
|
|
12
|
-
handleContentChange: (arg1: React.ChangeEvent<HTMLInputElement>) => void;
|
|
13
|
-
serialize: () => any;
|
|
14
|
-
render(): React.ReactNode;
|
|
15
|
-
}
|
|
16
|
-
export default PassageRefTargetEditor;
|