@khanacademy/perseus-editor 28.12.1 → 28.13.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/components/issue-details.d.ts +1 -3
- package/dist/components/issues-panel.d.ts +0 -2
- package/dist/es/index.js +36 -36
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +35 -35
- package/dist/index.js.map +1 -1
- package/dist/testing/feature-flags-util.d.ts +2 -2
- package/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +64 -64
- package/package.json +8 -8
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import type { Issue } from "./issues-panel";
|
|
3
|
-
import type { APIOptions } from "@khanacademy/perseus";
|
|
4
3
|
type IssueProps = {
|
|
5
|
-
apiOptions?: APIOptions;
|
|
6
4
|
issue: Issue;
|
|
7
5
|
};
|
|
8
|
-
declare const IssueDetails: ({
|
|
6
|
+
declare const IssueDetails: ({ issue }: IssueProps) => React.JSX.Element;
|
|
9
7
|
export default IssueDetails;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import type { APIOptions } from "@khanacademy/perseus";
|
|
3
2
|
export type IssueImpact = "low" | "medium" | "high";
|
|
4
3
|
export type Issue = {
|
|
5
4
|
id: string;
|
|
@@ -11,7 +10,6 @@ export type Issue = {
|
|
|
11
10
|
message: string;
|
|
12
11
|
};
|
|
13
12
|
type IssuesPanelProps = {
|
|
14
|
-
apiOptions?: APIOptions;
|
|
15
13
|
issues?: Issue[];
|
|
16
14
|
a11yCheck?: {
|
|
17
15
|
callback: () => void;
|