@khanacademy/perseus-editor 39.0.0 → 40.0.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/article-editor.d.ts +1 -1
- package/dist/components/util.d.ts +0 -1
- package/dist/es/index.js +107 -112
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +106 -111
- package/dist/index.js.map +1 -1
- package/dist/styles/global-colors.d.ts +0 -5
- package/dist/testing/feature-flags-util.d.ts +1 -0
- package/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +32 -22
- package/dist/widgets/label-image-editor/marker.d.ts +5 -19
- package/package.json +13 -11
- package/dist/components/dropdown-option.d.ts +0 -31
package/dist/article-editor.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ export default class ArticleEditor extends React.Component<Props, State> {
|
|
|
67
67
|
isMobile?: boolean;
|
|
68
68
|
isMobileApp?: boolean;
|
|
69
69
|
hintProgressColor?: string;
|
|
70
|
-
flags?: Record<"perseus-renderer-upgrade" | "desmos-calculator" | "article-extras", boolean>;
|
|
70
|
+
flags?: Record<"perseus-renderer-upgrade" | "desmos-calculator" | "article-extras" | "dnd-widget-fitb", boolean>;
|
|
71
71
|
}>;
|
|
72
72
|
linterContext: {
|
|
73
73
|
contentType: string;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { Alignment } from "@khanacademy/perseus-core";
|
|
2
|
-
export declare function focusWithChromeStickyFocusBugWorkaround(element: Element): void;
|
|
3
2
|
/**
|
|
4
3
|
* Map of alignment values to their corresponding human-readable descriptions.
|
|
5
4
|
* Only includes alignments that show up in the widget select (i.e. occur
|